common.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. margin-top: 5px;
  128. float: right;
  129. padding-left: 20px;
  130. }
  131. input {
  132. margin-left: 20px;
  133. float: left;
  134. font-size: 15px;
  135. border-radius: 5px;
  136. padding: 10px;
  137. width: 80%;
  138. margin-top: -9px;
  139. }
  140. textarea {
  141. display: block;
  142. font-size: 14px;
  143. padding: 10px;
  144. height: 120px;
  145. border-radius: 5px;
  146. margin-top: 35px;
  147. background-color: white;
  148. }
  149. .u-switch {
  150. margin-left: 20px;
  151. }
  152. }
  153. .vtitle {
  154. padding: 12px 10px 12px 10px;
  155. font-weight: bold;
  156. font-size: 17px;
  157. color: $font-c;
  158. }
  159. .footer {
  160. width: 100%;
  161. position: fixed;
  162. bottom: 0%;
  163. padding: 10px;
  164. background-color: #f2f3f5;
  165. .flex {
  166. padding: 5px;
  167. .btn {
  168. width: 70%;
  169. }
  170. }
  171. }
  172. .ws {
  173. width: 30%;
  174. border-radius: 25px;
  175. }
  176. .search {
  177. background-color: white;
  178. padding: 5px 15px;
  179. .input {
  180. margin-bottom: 10px;
  181. }
  182. .f {
  183. padding: 5px;
  184. background-color: white;
  185. }
  186. .c {
  187. background-color: #f44336;
  188. }
  189. }