1
0

common.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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. .pl5 {
  43. padding-left: 5px;
  44. }
  45. .flex {
  46. display: flex;
  47. text-align: center;
  48. .f {
  49. flex: 1;
  50. overflow: hidden;
  51. }
  52. }
  53. .btn {
  54. color: white;
  55. background-color: $main-color;
  56. border-radius: 30px;
  57. font-size: 15px;
  58. text-align: center;
  59. padding: 5px;
  60. margin-top: 15px;
  61. }
  62. .search {
  63. padding: 5px 15px 5px 15px;
  64. }
  65. .msilde {
  66. .top {
  67. padding: 10px;
  68. text-align: center;
  69. font-size: 15px;
  70. color: #535353;
  71. .icon {
  72. padding-left: 5px;
  73. }
  74. }
  75. .left {
  76. position: fixed;
  77. width: 33%;
  78. overflow-y: auto;
  79. z-index: 2;
  80. height: 95%;
  81. .item {
  82. padding: 13px 8px 13px 8px;
  83. font-size: 14px;
  84. text-align: center;
  85. &.active {
  86. background-color: white;
  87. color: $main-color;
  88. }
  89. }
  90. }
  91. .right {
  92. position: fixed;
  93. height: 100%;
  94. width: 67%;
  95. overflow-y: auto;
  96. left: 33%;
  97. z-index: 1;
  98. background-color: white;
  99. .contents {
  100. padding: 10px 10px 50px 10px;
  101. font-size: 14px;
  102. }
  103. .list {
  104. padding: 10px 10px 85px 10px;
  105. .item {
  106. padding: 15px 5px 15px 0px;
  107. overflow: hidden;
  108. border-bottom: 1px solid $line;
  109. &:first-child {
  110. padding-top: 0px;
  111. }
  112. .avatar {
  113. width: 70px;
  114. height: 100px;
  115. border-radius: 5px;
  116. float: left;
  117. }
  118. .con {
  119. float: left;
  120. width: 60%;
  121. padding-left: 12px;
  122. .name {
  123. font-weight: bold;
  124. }
  125. .brief {
  126. font-size: 13px;
  127. color: $font-c;
  128. line-height: 20px;
  129. }
  130. }
  131. }
  132. }
  133. }
  134. }
  135. /*****设置**********/
  136. .cmd {
  137. margin-top: 15px;
  138. border-radius: 5px;
  139. overflow: hidden;
  140. .s_item {
  141. padding: 10px;
  142. background-color: white;
  143. color: $font-c;
  144. overflow: hidden;
  145. border-bottom: 1px solid #f0f2f7;
  146. .ic {
  147. display: block;
  148. float: left;
  149. width: 27px;
  150. height: 27px;
  151. font-size: 25px;
  152. text-align: center;
  153. padding: 7px;
  154. border-radius: 50%;
  155. margin-right: 5px;
  156. line-height: 29px;
  157. }
  158. .title {
  159. color: #545555;
  160. padding-top: 11px;
  161. float: left;
  162. }
  163. .arrow {
  164. font-size: 20px;
  165. float: right;
  166. color: #9a9a9a;
  167. margin-top: 10px;
  168. }
  169. }
  170. }
  171. .xy {
  172. color: $font-c;
  173. padding-top: 15px;
  174. font-size: 14px;
  175. .checkbox {
  176. float: left;
  177. font-size: 14px;
  178. margin-top: 1px;
  179. }
  180. .a {
  181. color: blue;
  182. }
  183. }
  184. /**底部按钮操作******/
  185. .mfooter {
  186. position: fixed;
  187. width: 100%;
  188. bottom: 30px;
  189. text-align: center;
  190. .btn {
  191. border-radius: 35px;
  192. width: 40%;
  193. .icon {
  194. padding-right: 5px;
  195. }
  196. }
  197. }
  198. .form_group {
  199. padding: 9px 0px 9px 0px;
  200. overflow: hidden;
  201. position: relative;
  202. &.form_group:last-child {
  203. border-bottom: 0px;
  204. }
  205. .lable {
  206. font-size: 17px;
  207. text-align: left;
  208. position: relative;
  209. font-weight: bold;
  210. }
  211. .re {
  212. &::before {
  213. content: '*';
  214. width: 0px;
  215. height: 0px;
  216. color: red;
  217. position: absolute;
  218. top: -11px;
  219. font-weight: bold;
  220. }
  221. }
  222. .bgm {
  223. border: 1px solid $line;
  224. border-radius: 5px;
  225. margin-top: 12px;
  226. position: relative;
  227. background-color: white;
  228. .input {
  229. border: 0px;
  230. width: 75%;
  231. margin-top: 0px;
  232. }
  233. .msg {
  234. position: absolute;
  235. right: 10px;
  236. top: 9px;
  237. color: $main-color;
  238. }
  239. }
  240. .avatar {
  241. position: absolute;
  242. top: 0px;
  243. right: 0px;
  244. width: 55px;
  245. height: 55px;
  246. border-radius: 50%;
  247. }
  248. picker {
  249. position: relative;
  250. .more {
  251. position: absolute;
  252. right: 7px;
  253. top: 13px;
  254. font-weight: normal;
  255. }
  256. }
  257. input {
  258. font-size: 15px;
  259. border-radius: 5px;
  260. padding: 10px;
  261. margin-top: 12px;
  262. border: 1px solid $line;
  263. background-color: white;
  264. }
  265. textarea {
  266. font-size: 15px;
  267. border-radius: 5px;
  268. padding: 10px;
  269. margin-top: 12px;
  270. height: 120px;
  271. width: 93%;
  272. border: 1px solid $line;
  273. background-color: white;
  274. }
  275. .start {
  276. flex: 1;
  277. margin-top: -17px;
  278. text-align: left;
  279. }
  280. .hor {
  281. flex: 0.7;
  282. text-align: center;
  283. padding-top: 5px;
  284. }
  285. }