common.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. .omit {
  2. white-space: nowrap;
  3. text-overflow: ellipsis;
  4. overflow: hidden;
  5. }
  6. .ellip {
  7. -webkit-line-clamp: 2;
  8. text-overflow: ellipsis;
  9. display: -webkit-box;
  10. -webkit-box-orient: vertical;
  11. overflow: hidden;
  12. }
  13. .m15 {
  14. margin-top: 15px !important;
  15. }
  16. .clear {
  17. clear: both;
  18. }
  19. .flex {
  20. display: flex;
  21. text-align: center;
  22. .f {
  23. flex: 1;
  24. overflow: hidden;
  25. }
  26. }
  27. .popup {
  28. padding: 20px;
  29. }
  30. .btn {
  31. color: white;
  32. background-color: $main-color;
  33. border-radius: 5px;
  34. font-size: 14px;
  35. text-align: center;
  36. padding: 5px;
  37. }
  38. .back {
  39. background-color: #f44336;
  40. }
  41. .bitem {
  42. padding: 13px;
  43. background-color: white;
  44. border-bottom: 1px solid #efecec;
  45. .select {
  46. float: left;
  47. padding-right: 7px;
  48. margin-top: 1px;
  49. font-size: 20px;
  50. }
  51. .check {
  52. color: #4581fb;
  53. }
  54. .more {
  55. float: right;
  56. margin-top: -18px;
  57. color: darkgray;
  58. }
  59. }
  60. .citem {
  61. padding: 10px;
  62. margin-bottom: 17px;
  63. .title {
  64. float: left;
  65. width: 70%;
  66. color: $font-c;
  67. font-size: 14px;
  68. }
  69. .xz {
  70. float: right;
  71. font-size: 14px;
  72. color: #4581fb;
  73. }
  74. }
  75. .form_group {
  76. padding: 10px 15px 8px 15px;
  77. overflow: hidden;
  78. border-bottom: 1px solid $line;
  79. background-color: white;
  80. &.form_group:last-child {
  81. border-bottom: 0px;
  82. }
  83. .lable {
  84. font-size: 15px;
  85. line-height: 30px;
  86. width: 30%;
  87. float: left;
  88. text-align: left;
  89. float: left;
  90. color: #545555;
  91. white-space: nowrap;
  92. text-overflow: ellipsis;
  93. overflow: hidden;
  94. .icon {
  95. font-size: 23px;
  96. font-weight: normal;
  97. }
  98. }
  99. .tag {
  100. float: left;
  101. text-align: right;
  102. width: 70%;
  103. margin-top: 5px;
  104. color: #909090;
  105. position: relative;
  106. text {
  107. font-size: 15px;
  108. }
  109. .span {
  110. float: left;
  111. width: 92%;
  112. text-align: right;
  113. white-space: nowrap;
  114. text-overflow: ellipsis;
  115. overflow: hidden;
  116. }
  117. .code {
  118. font-size: 20px;
  119. }
  120. .more {
  121. position: absolute;
  122. right: -3px;
  123. top: 4px;
  124. }
  125. }
  126. picker {
  127. float: right;
  128. padding-left: 20px;
  129. }
  130. .up{
  131. font-size: 15px;
  132. color: $font-c;
  133. .icon{
  134. padding-right: 5px;
  135. }
  136. }
  137. input {
  138. margin-left: 20px;
  139. float: left;
  140. font-size: 15px;
  141. border-radius: 5px;
  142. padding: 10px;
  143. width: 80%;
  144. margin-top: -9px;
  145. }
  146. textarea {
  147. display: block;
  148. font-size: 14px;
  149. padding: 10px;
  150. height: 120px;
  151. border-radius: 5px;
  152. margin-top: 35px;
  153. background-color: white;
  154. }
  155. .u-switch {
  156. margin-left: 20px;
  157. }
  158. }
  159. .vtitle {
  160. padding: 12px 10px 12px 10px;
  161. font-weight: bold;
  162. font-size: 17px;
  163. color: $font-c;
  164. }
  165. .footer {
  166. width: 100%;
  167. position: fixed;
  168. bottom: 0%;
  169. padding: 10px;
  170. background-color: #f2f3f5;
  171. .flex {
  172. padding: 5px;
  173. .btn {
  174. width: 70%;
  175. }
  176. }
  177. }
  178. .ws {
  179. width: 30%;
  180. border-radius: 25px;
  181. }
  182. .search {
  183. background-color: white;
  184. padding: 5px 15px;
  185. .input {
  186. margin-bottom: 10px;
  187. }
  188. .f {
  189. padding: 5px;
  190. background-color: white;
  191. }
  192. .c {
  193. background-color: #f44336;
  194. }
  195. }
  196. .spitem {
  197. margin-top: 10px;
  198. padding: 10px 5px 15px 5px;
  199. border-bottom: 1px solid #f0f2f7;
  200. background-color: white;
  201. &:last-child {
  202. border: 0px;
  203. }
  204. .title {
  205. color: $font-c;
  206. .icon {
  207. padding-right: 5px;
  208. font-weight: bold;
  209. font-size: 18px;
  210. }
  211. .tit {
  212. font-weight: bold;
  213. padding-right: 3px;
  214. font-size: 18px;
  215. }
  216. .dev {
  217. font-size: 15px;
  218. margin-top: 10px;
  219. }
  220. }
  221. .desc {
  222. font-size: 14px;
  223. color: #848484;
  224. padding-top: 10px;
  225. .name {
  226. float: left;
  227. padding-right: 10px;
  228. }
  229. .bm {
  230. float: left;
  231. width: 40%;
  232. }
  233. .date {
  234. float: right;
  235. }
  236. }
  237. }
  238. .ufiles {
  239. .fil {
  240. padding: 10px 5px 10px 5px;
  241. border-bottom: 1px solid #f0f2f7;
  242. &:last-child{
  243. border: 0px;
  244. }
  245. .icon {
  246. float: left;
  247. background-color: #497bec;
  248. padding: 10px;
  249. font-size: 25px;
  250. color: white;
  251. border-radius: 2px;
  252. margin-right: 10px;
  253. }
  254. .name {
  255. float: left;
  256. width: 70%;
  257. color: $font-c;
  258. .desc {
  259. color: darkgray;
  260. font-size: 13px;
  261. padding-top: 3px;
  262. }
  263. }
  264. .del {
  265. float: right;
  266. color: #f56c6c;
  267. }
  268. }
  269. }