1
0

common.scss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. .main {
  2. padding: 15px;
  3. .form {
  4. border-radius: 6px;
  5. background-color: white;
  6. overflow: hidden;
  7. }
  8. }
  9. .tab {
  10. padding: 0px 5px 5px 5px;
  11. /* #ifdef H5 */
  12. margin-top: -1px;
  13. /* #endif */
  14. overflow: hidden;
  15. }
  16. .omit {
  17. white-space: nowrap;
  18. text-overflow: ellipsis;
  19. overflow: hidden;
  20. }
  21. .ellip {
  22. -webkit-line-clamp: 3;
  23. text-overflow: ellipsis;
  24. display: -webkit-box;
  25. -webkit-box-orient: vertical;
  26. overflow: hidden;
  27. margin-top: 7px;
  28. color: #666666;
  29. }
  30. .mt10 {
  31. margin-top: 10px !important;
  32. }
  33. .mt20 {
  34. margin-top: 20px !important;
  35. }
  36. .pdt0 {
  37. padding-top: 0px;
  38. }
  39. .pl5 {
  40. padding-left: 5px;
  41. }
  42. .flex {
  43. display: flex;
  44. text-align: center;
  45. .f {
  46. flex: 1;
  47. overflow: hidden;
  48. }
  49. }
  50. .btn {
  51. color: white;
  52. background-color: $main-color;
  53. border-radius: 30px;
  54. font-size: 15px;
  55. text-align: center;
  56. padding: 5px;
  57. margin-top: 20px;
  58. }
  59. .search {
  60. padding: 5px 15px 5px 15px;
  61. }
  62. .msilde {
  63. .top {
  64. padding: 10px;
  65. text-align: center;
  66. font-size: 15px;
  67. color: #535353;
  68. .icon {
  69. padding-left: 5px;
  70. }
  71. }
  72. .left {
  73. position: fixed;
  74. width: 33%;
  75. overflow-y: auto;
  76. z-index: 2;
  77. height: 95%;
  78. .item {
  79. padding: 13px 8px 13px 8px;
  80. font-size: 14px;
  81. text-align: center;
  82. &.active {
  83. background-color: white;
  84. color: $main-color;
  85. }
  86. }
  87. }
  88. .right {
  89. position: fixed;
  90. height: 100%;
  91. width: 67%;
  92. overflow-y: auto;
  93. left: 33%;
  94. z-index: 1;
  95. background-color: white;
  96. .contents {
  97. padding: 10px 10px 50px 10px;
  98. font-size: 14px;
  99. }
  100. .list {
  101. padding: 10px 10px 85px 10px;
  102. .item {
  103. padding: 15px 5px 15px 0px;
  104. overflow: hidden;
  105. border-bottom: 1px solid $line;
  106. &:first-child {
  107. padding-top: 0px;
  108. }
  109. .avatar {
  110. width: 70px;
  111. height: 100px;
  112. border-radius: 5px;
  113. float: left;
  114. }
  115. .con {
  116. float: left;
  117. width: 60%;
  118. padding-left: 12px;
  119. .name {
  120. font-weight: bold;
  121. }
  122. .brief {
  123. font-size: 13px;
  124. color: $font-c;
  125. line-height: 20px;
  126. }
  127. }
  128. }
  129. }
  130. }
  131. }
  132. /*****设置**********/
  133. .cmd {
  134. margin-top: 15px;
  135. border-radius: 5px;
  136. overflow: hidden;
  137. .s_item {
  138. padding: 10px;
  139. background-color: white;
  140. color: $font-c;
  141. overflow: hidden;
  142. border-bottom: 1px solid #f0f2f7;
  143. font-size: 15px;
  144. position: relative;
  145. .ic {
  146. display: block;
  147. float: left;
  148. width: 27px;
  149. height: 27px;
  150. font-size: 25px;
  151. text-align: center;
  152. padding: 7px;
  153. border-radius: 50%;
  154. margin-right: 5px;
  155. line-height: 29px;
  156. }
  157. .title {
  158. color: #545555;
  159. padding-top: 11px;
  160. float: left;
  161. }
  162. .bage {
  163. position: absolute;
  164. padding: 0px 5px;
  165. border-radius: 20px;
  166. background-color: red;
  167. color: white;
  168. top: 22px;
  169. right: 35px;
  170. font-size: 13px;
  171. }
  172. .arrow {
  173. font-size: 20px;
  174. float: right;
  175. color: #9a9a9a;
  176. margin-top: 10px;
  177. }
  178. }
  179. }
  180. .xy {
  181. color: $font-c;
  182. padding-top: 15px;
  183. font-size: 14px;
  184. .checkbox {
  185. float: left;
  186. font-size: 14px;
  187. margin-top: 1px;
  188. }
  189. .a {
  190. color: blue;
  191. }
  192. }
  193. /**底部按钮操作******/
  194. .mfooter {
  195. position: fixed;
  196. width: 100%;
  197. bottom: 30px;
  198. text-align: center;
  199. .btn {
  200. border-radius: 35px;
  201. width: 40%;
  202. .icon {
  203. padding-right: 5px;
  204. }
  205. }
  206. }
  207. .form_group {
  208. padding: 9px 15px 9px 15px;
  209. overflow: hidden;
  210. position: relative;
  211. background-color: white;
  212. border-bottom: 1px solid $line;
  213. font-size: 15px;
  214. &.form_group:last-child {
  215. border-bottom: 0px;
  216. }
  217. .lable {
  218. font-size: 15px;
  219. text-align: left;
  220. position: relative;
  221. float: left;
  222. color: $font-c;
  223. margin-top: 2px;
  224. .limit {
  225. padding-left: 8px;
  226. font-size: 13px;
  227. font-weight: normal;
  228. color: darkgray;
  229. }
  230. }
  231. .re {
  232. &::before {
  233. content: '*';
  234. width: 0px;
  235. height: 0px;
  236. color: red;
  237. position: absolute;
  238. top: -7px;
  239. left: -8px;
  240. font-weight: bold;
  241. }
  242. }
  243. .bgm {
  244. color: white;
  245. border-radius: 5px;
  246. margin-top: 12px;
  247. position: relative;
  248. .input {
  249. border: 0px;
  250. width: 75%;
  251. margin-top: 0px;
  252. }
  253. .msg {
  254. position: absolute;
  255. right: 10px;
  256. top: 9px;
  257. }
  258. }
  259. .avatar {
  260. position: absolute;
  261. top: 0px;
  262. right: 0px;
  263. width: 55px;
  264. height: 55px;
  265. border-radius: 50%;
  266. }
  267. .desc {
  268. float: right;
  269. padding-top: 2px;
  270. width: 72%;
  271. text-align: right;
  272. color: #9e9e9e;
  273. }
  274. input {
  275. font-size: 15px;
  276. border-radius: 5px;
  277. padding: 4px 10px 0px 3px;
  278. width: 72%;
  279. float: right;
  280. text-align: right;
  281. }
  282. picker {
  283. position: relative;
  284. text-align: right;
  285. width: 72%;
  286. float: right;
  287. line-height: 0px;
  288. }
  289. textarea {
  290. font-size: 15px;
  291. border-radius: 5px;
  292. padding: 10px;
  293. margin-top: 40px;
  294. height: 120px;
  295. width: 93%;
  296. background-color: #f1f1f1;
  297. }
  298. .more {
  299. position: absolute;
  300. right: -13px;
  301. top: 14px;
  302. font-weight: normal;
  303. color: $font-c;
  304. }
  305. }
  306. .detail {
  307. padding: 15px;
  308. background-color: white;
  309. border-radius: 8px;
  310. .top {
  311. text-align: center;
  312. .avatar {
  313. width: 55%;
  314. border-radius: 5px;
  315. }
  316. .title {
  317. font-size: 18px;
  318. padding-top: 3px;
  319. }
  320. }
  321. .desc {
  322. padding-top: 15px;
  323. font-size: 13px;
  324. color: #7c8388;
  325. .time {
  326. padding-right: 25px;
  327. }
  328. .fx {
  329. background-color: white;
  330. float: right;
  331. font-size: 15px;
  332. margin-right: -14px;
  333. margin-top: -13px;
  334. color: $main-color;
  335. .icon {
  336. padding-right: 3px;
  337. }
  338. }
  339. }
  340. .con {
  341. font-size: 14px;
  342. line-height: 23px;
  343. image {
  344. border-radius: 5px !important;
  345. }
  346. }
  347. }
  348. .bz {
  349. font-size: 12px;
  350. color: $font-c;
  351. margin-top: 7px;
  352. .icon {
  353. padding-right: 3px;
  354. }
  355. .contact {
  356. background-color: #f1f1f1;
  357. float: right;
  358. font-size: 13px;
  359. color: $main-color;
  360. margin-top: -5px;
  361. }
  362. }
  363. .message-bubble-received {
  364. background: white;
  365. border-radius: 10px;
  366. padding: 13px;
  367. width: 85%;
  368. word-wrap: break-word;
  369. position: relative;
  370. margin-left: 10px;
  371. float: left;
  372. clear: both;
  373. font-size: 14px;
  374. color: #262626;
  375. margin-bottom: 15px;
  376. &::before {
  377. content: '';
  378. position: absolute;
  379. width: 0;
  380. height: 0;
  381. border-style: solid;
  382. border-width: 0 10px 10px 10px;
  383. border-color: transparent transparent white transparent;
  384. left: -10px;
  385. }
  386. }
  387. .ql-editor.ql-blank:before {
  388. font-style: normal !important;
  389. }
  390. .listv {
  391. padding: 5px 12px 5px 10px;
  392. background-color: white;
  393. margin: 10px;
  394. border-radius: 10px;
  395. .item {
  396. border-radius: 5px;
  397. padding: 13px 8px 13px 8px;
  398. margin-bottom: 10px;
  399. overflow: hidden;
  400. border-bottom: 1px solid $line;
  401. &:last-child {
  402. border: 0px;
  403. }
  404. .title {
  405. font-size: 15px;
  406. font-weight: bold;
  407. .icon {
  408. color: orangered;
  409. padding-right: 3px;
  410. }
  411. }
  412. .desc {
  413. font-size: 14px;
  414. padding-top: 10px;
  415. color: $font-c;
  416. text {
  417. padding-right: 15px;
  418. }
  419. .state {
  420. float: right;
  421. }
  422. .edit {
  423. float: right;
  424. color: $main-color;
  425. }
  426. .del {
  427. color: red;
  428. float: right;
  429. padding-right: 0px;
  430. }
  431. }
  432. }
  433. }
  434. .popup {
  435. padding: 15px;
  436. background-color: white;
  437. border-radius: 10px;
  438. .mtt {
  439. text-align: center;
  440. font-size: 18px;
  441. padding-top: 15px;
  442. padding-bottom: 20px;
  443. }
  444. .item {
  445. overflow: hidden;
  446. border-bottom: 1px solid $line;
  447. padding: 10px;
  448. &:first-child {
  449. margin-top: 10px;
  450. }
  451. &:last-child {
  452. border: 0px;
  453. }
  454. .tt {
  455. float: left;
  456. }
  457. .la {
  458. float: right;
  459. width: 70%;
  460. text-align: right;
  461. image {
  462. width: 50px;
  463. height: 50px;
  464. border-radius: 5px;
  465. }
  466. }
  467. }
  468. }