style.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. html, body {
  2. min-height: 100%;
  3. font-family: "黑体";
  4. color: #000;
  5. font-size: 0.32rem;
  6. }
  7. .fn-left {
  8. float: left;
  9. }
  10. .fn-right {
  11. float: right;
  12. }
  13. .fn-clear:after {
  14. content: ' ';
  15. display: block;
  16. clear: both;
  17. visibility: hidden;
  18. line-height: 0;
  19. height: 0;
  20. }
  21. .fn-hide {
  22. display: none !important;
  23. }
  24. .center-self {
  25. position: absolute;
  26. top: 50%;
  27. left: 50%;
  28. transform: translate(-50%, -50%)
  29. }
  30. .center-self-x {
  31. position: absolute;
  32. left: 50%;
  33. transform: translateX(-50%);
  34. }
  35. .center-self-y {
  36. position: absolute;
  37. top: 50%;
  38. transform: translateY(-50%);
  39. }
  40. .flex-wrap {
  41. display: -webkit-box;
  42. display: -webkit-flex;
  43. display: flex;
  44. }
  45. .flex-con {
  46. -webkit-box-flex: 1;
  47. -webkit-flex: 1;
  48. flex: 1;
  49. }
  50. .flex-vertical {
  51. -webkit-box-orient: vertical;
  52. -webkit-flex-flow: column;
  53. flex-flow: column;
  54. }
  55. .one-text-cut {
  56. text-overflow: ellipsis;
  57. overflow: hidden;
  58. white-space: nowrap;
  59. }
  60. .two-text-cut {
  61. overflow: hidden;
  62. display: -webkit-box;
  63. -webkit-line-clamp: 2;
  64. -webkit-box-orient: vertical;
  65. }
  66. .three-text-cut {
  67. overflow: hidden;
  68. display: -webkit-box;
  69. -webkit-line-clamp: 3;
  70. -webkit-box-orient: vertical;
  71. }
  72. .font_54 {
  73. font-size: 0.54rem;
  74. }
  75. .font_48 {
  76. font-size: 0.48rem;
  77. }
  78. .font_36 {
  79. font-size: 0.36rem;
  80. }
  81. .font_34 {
  82. font-size: 0.34rem;
  83. }
  84. .font_32 {
  85. font-size: 0.32rem;
  86. }
  87. .font_30 {
  88. font-size: 0.30rem;
  89. }
  90. .font_28 {
  91. font-size: 0.28rem;
  92. }
  93. .font_24 {
  94. font-size: 0.24rem;
  95. }
  96. .color_long {
  97. color: #999999 !important;
  98. }
  99. .color_secondary {
  100. color: #4a4a4a !important;
  101. }
  102. .color_important {
  103. color: #000000 !important;
  104. }
  105. .color_blue {
  106. color: #28a0ff;
  107. }
  108. .color_white {
  109. color: #ffffff;
  110. }
  111. .color_danger {
  112. color: #f74c31;
  113. }
  114. .color_orange{
  115. color:#f36d00
  116. }
  117. .color_deep_blue {
  118. color: #0073e6;
  119. }
  120. .bg_blue {
  121. background-color: #28a0ff;
  122. }
  123. .bg_danger {
  124. background-color: #f74c30;
  125. }
  126. .bg_orange {
  127. background-color: #f36d00;
  128. }
  129. .bg_yellow {
  130. background-color: #fec05d;
  131. }
  132. .text-left{
  133. text-align: left;
  134. }
  135. .text-center{
  136. text-align: center;
  137. }
  138. .text-right{
  139. text-align: right;
  140. }
  141. .disabled {
  142. color: #c8c8c8 !important;
  143. }
  144. .small_btn_blue {
  145. width: 2.7rem;
  146. padding: 0.25rem 0;
  147. background-color: #28a0f2;
  148. border-radius: 0.08rem;
  149. text-align: center;
  150. color: #fff;
  151. font-size: 0.36rem;
  152. line-height: 0.5rem;
  153. cursor: pointer;
  154. }
  155. .small_btn_blue_240 {
  156. width: 2.4rem;
  157. padding: 0.25rem 0;
  158. background-color: #28a0f2;
  159. border-radius: 0.08rem;
  160. text-align: center;
  161. color: #fff;
  162. font-size: 0.36rem;
  163. line-height: 0.5rem;
  164. cursor: pointer;
  165. }
  166. .small_btn_gray_240 {
  167. width: 2.4rem;
  168. padding: 0.25rem 0;
  169. background-color: #cccccc;
  170. border-radius: 0.08rem;
  171. text-align: center;
  172. color: #fff;
  173. font-size: 0.36rem;
  174. line-height: 0.5rem;
  175. cursor: pointer;
  176. }
  177. input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
  178. -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  179. background-color:transparent;
  180. background-image: none;
  181. transition: background-color 50000s ease-in-out 0s;
  182. }
  183. #point_message {
  184. padding: 0 0.5rem;
  185. height: 0.8rem;
  186. line-height: 0.8rem;
  187. background-color: rgba(0, 0, 0, 0.1);
  188. font-size: 0.36rem;
  189. position: fixed;
  190. bottom: 1.5rem;
  191. left: 50%;
  192. transform: translateX(-50%);
  193. color: #000;
  194. border-radius: 9999px;
  195. z-index: 9999;
  196. }
  197. #point_message.white {
  198. background-color: rgba(255, 255, 255, 0.7);
  199. }
  200. #confirm_modal {
  201. position: fixed;
  202. top: 0;
  203. left: 0;
  204. width: 100%;
  205. height: 100%;
  206. background-color: rgba(0, 0, 0, 0.7);
  207. z-index: 999;
  208. }
  209. #confirm_box {
  210. width: 11.18rem;
  211. height: 6.63rem;
  212. background: #fff url('../image/check/select-icon.png') no-repeat 1.24rem 1.54rem;
  213. background-size: 1.2rem 1.5rem;
  214. border-radius: 0.2rem;
  215. position: absolute;
  216. top: 50%;
  217. left: 50%;
  218. transform: translate(-50%,-50%);
  219. }
  220. #confirm_box #confirm_btn,#confirm_box #close_btn {
  221. position: absolute;
  222. bottom: 1.2rem;
  223. width: 2.7rem;
  224. height: 1.1rem;
  225. border-radius: 0.08rem;
  226. color: #fff;
  227. line-height: 1.1rem;
  228. text-align: center;
  229. cursor: pointer;
  230. }
  231. #confirm_box #confirm_btn {
  232. background-color: #28a0f2;
  233. right: 1.5rem;
  234. }
  235. #confirm_box #close_btn {
  236. background-color: #cccccc;
  237. left: 1.5rem;
  238. }
  239. #confirm_box #confirm_text {
  240. position: absolute;
  241. left: 3.14rem;
  242. top: 1.66rem;
  243. width: 6.81rem;
  244. color: #000000;
  245. font-size: 0.36rem;
  246. }