common.scss 5.7 KB

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