common.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. textarea {
  131. margin-left: 17px;
  132. font-size: 14px;
  133. flex: 0.7;
  134. padding: 5px 10px 5px 5px;
  135. width: 90%;
  136. height: 70px;
  137. border: 1px solid #f1f1f1;
  138. border-radius: 5px;
  139. }
  140. .u-upload{
  141. margin-left: 20px;
  142. }
  143. .u-numberbox {
  144. position: absolute;
  145. }
  146. }
  147. .r {
  148. width: 100%;
  149. }
  150. .r10 {
  151. width: 10%;
  152. float: left;
  153. }
  154. .r20 {
  155. width: 20%;
  156. float: left;
  157. }
  158. .r30 {
  159. width: 30%;
  160. float: left;
  161. }
  162. .r35 {
  163. width: 35%;
  164. float: left;
  165. }
  166. .r40 {
  167. width: 40%;
  168. float: left;
  169. }
  170. .r50 {
  171. width: 50%;
  172. float: left;
  173. }
  174. .r60 {
  175. width: 60%;
  176. float: left;
  177. }
  178. .r65 {
  179. width: 65%;
  180. float: left;
  181. }
  182. .r70 {
  183. width: 70%;
  184. float: left;
  185. }
  186. .r80 {
  187. width: 80%;
  188. float: left;
  189. }
  190. .r90 {
  191. width: 90%;
  192. float: left;
  193. }
  194. .arrow {
  195. float: right !important;
  196. color: $dar;
  197. margin-top: 3px;
  198. }
  199. .btn {
  200. color: white;
  201. background-color: $theme-color;
  202. border-radius: 3px;
  203. font-size: 14px;
  204. text-align: center;
  205. padding: 5px;
  206. }
  207. .copyright {
  208. position: absolute;
  209. bottom: 15px;
  210. width: 95%;
  211. text-align: center;
  212. color: $dar2;
  213. font-size: 11px;
  214. }