common.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. .v-top {
  2. height: 200px;
  3. overflow: hidden;
  4. z-index: -1;
  5. }
  6. .theme_bg {
  7. color: $theme-color;
  8. }
  9. .theme_bg_bg {
  10. color: white;
  11. background-color: $theme-color;
  12. text-align: center;
  13. }
  14. .box {
  15. border-radius: 7px;
  16. background-color: white;
  17. padding: 7px;
  18. }
  19. .mt10{
  20. margin-top: 10px;
  21. }
  22. .mt20{
  23. margin-top: 20px;
  24. }
  25. .omit {
  26. white-space: nowrap;
  27. text-overflow: ellipsis;
  28. overflow: hidden;
  29. }
  30. .clear {
  31. clear: both;
  32. }
  33. .loading {
  34. text-align: center;
  35. margin-top: 12px;
  36. }
  37. .flex {
  38. display: flex;
  39. text-align: center;
  40. .f {
  41. flex: 1;
  42. }
  43. }
  44. .hr {
  45. border-bottom: 1px solid #f1f1f1;
  46. }
  47. .noData {
  48. text-align: center;
  49. padding-top: 50px;
  50. color: $dar;
  51. .icon {
  52. font-size: 60px;
  53. }
  54. .title {
  55. font-size: 13px;
  56. }
  57. }
  58. .isLoading {
  59. text-align: center;
  60. }
  61. .noLogin {
  62. text-align: center;
  63. margin-top: 50px;
  64. image {
  65. width: 50%;
  66. margin-bottom: 10px;
  67. }
  68. .dll {
  69. border: 1px solid #cacaca;
  70. color: #888787;
  71. width: 130px;
  72. font-size: 16px;
  73. margin: 0 auto;
  74. border-radius: 25px;
  75. padding: 6px 18px;
  76. }
  77. .mtt {
  78. margin-top: 10px;
  79. font-size: 12px;
  80. color: $dar;
  81. .icon {
  82. padding-right: 3px;
  83. }
  84. }
  85. }
  86. .pt15 {
  87. padding-top: 15px;
  88. }
  89. .pt10 {
  90. padding-top: 10px;
  91. }
  92. .pt5 {
  93. padding-top: 5px;
  94. }
  95. .pl5 {
  96. padding-left: 5px;
  97. }
  98. .pl10 {
  99. padding-left: 10px;
  100. }
  101. .pl15 {
  102. padding-left: 15px;
  103. }
  104. .pr5 {
  105. padding-right: 5px;
  106. }
  107. .lfx {
  108. display: flex;
  109. .f {
  110. flex: 1;
  111. text-align: center;
  112. }
  113. }
  114. .form_group {
  115. width: 100%;
  116. display: flex;
  117. padding: 13px;
  118. overflow: hidden;
  119. position: relative;
  120. .lable {
  121. flex: 0.3;
  122. font-size: 14px;
  123. font-weight: bold;
  124. }
  125. input {
  126. flex: 0.62;
  127. font-size: 14px;
  128. padding-left: 15px;
  129. }
  130. .u-upload{
  131. margin-left: 20px;
  132. }
  133. .u-numberbox {
  134. position: absolute;
  135. }
  136. }
  137. .r {
  138. width: 100%;
  139. }
  140. .r10 {
  141. width: 10%;
  142. float: left;
  143. }
  144. .r20 {
  145. width: 20%;
  146. float: left;
  147. }
  148. .r30 {
  149. width: 30%;
  150. float: left;
  151. }
  152. .r35 {
  153. width: 35%;
  154. float: left;
  155. }
  156. .r40 {
  157. width: 40%;
  158. float: left;
  159. }
  160. .r50 {
  161. width: 50%;
  162. float: left;
  163. }
  164. .r60 {
  165. width: 60%;
  166. float: left;
  167. }
  168. .r65 {
  169. width: 65%;
  170. float: left;
  171. }
  172. .r70 {
  173. width: 70%;
  174. float: left;
  175. }
  176. .r80 {
  177. width: 80%;
  178. float: left;
  179. }
  180. .r90 {
  181. width: 90%;
  182. float: left;
  183. }
  184. .arrow {
  185. float: right !important;
  186. color: $dar;
  187. margin-top: 3px;
  188. }
  189. .btn {
  190. color: white;
  191. background-color: $theme-color;
  192. border-radius: 3px;
  193. font-size: 14px;
  194. text-align: center;
  195. padding: 5px;
  196. }
  197. .copyright {
  198. position: absolute;
  199. bottom: 15px;
  200. width: 95%;
  201. text-align: center;
  202. color: $dar2;
  203. font-size: 11px;
  204. }