a.scss 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. @charset "utf-8";
  2. //font
  3. $table:150px*0.5;
  4. $a :0.5;
  5. $z1 :10;
  6. $z2 :50;
  7. $z3 :100;
  8. body {
  9. // background : yellow;
  10. padding-bottom : $table;
  11. font-size : 1.5rem;
  12. height : 100%;
  13. .table {
  14. position : fixed;
  15. bottom : 0;
  16. left : 0;
  17. width : 100%;
  18. height : $table;
  19. margin : 0;
  20. background-color: #fff;
  21. padding-top : 15px;
  22. z-index : 10000;
  23. ul {
  24. width : 100%;
  25. height: 100%;
  26. a:nth-child(1) li {
  27. background-image: url(../static/img/ztb.png);
  28. }
  29. a:nth-child(2) li {
  30. background-image: url(../static/img/gc.png);
  31. }
  32. a:nth-child(3) li {
  33. background-image: url(../static/img/xm.png);
  34. }
  35. a:nth-child(4) li {
  36. background-image: url(../static/img/me.png);
  37. }
  38. a:nth-child(1) li.selected {
  39. background-image: url(../static/img/ztb1.png);
  40. }
  41. a:nth-child(2) li.selected {
  42. background-image: url(../static/img/gc1.png);
  43. }
  44. a:nth-child(3) li.selected {
  45. background-image: url(../static/img/xm1.png);
  46. }
  47. a:nth-child(4) li.selected {
  48. background-image: url(../static/img/me1.png);
  49. }
  50. li {
  51. width : 24%;
  52. height : 100%;
  53. display : inline-block;
  54. text-align : center;
  55. background-size: 30px !important;
  56. background : no-repeat center top;
  57. span {
  58. margin-top: 33px;
  59. display : inline-block;
  60. color : rgba(175, 175, 175, 1);
  61. }
  62. }
  63. li.selected {
  64. span {
  65. color: #ff5c5c;
  66. }
  67. }
  68. }
  69. }
  70. .search {
  71. width : 100%;
  72. height : 44px;
  73. padding : 7px 17px;
  74. background: #fff;
  75. input {
  76. width : 73%;
  77. height : $a*60px;
  78. background-color : rgba(240, 243, 245, 1);
  79. border-radius : $a*30px;
  80. border : none;
  81. background-image : url(../static/img/search.png);
  82. background-repeat : no-repeat;
  83. background-position: 15px center;
  84. background-size : 20px;
  85. padding-left : 40px;
  86. color : rgba(153, 153, 153, 1);
  87. outline : none;
  88. }
  89. span {
  90. font-size : 1.5rem;
  91. font-family: PingFang-SC-Medium;
  92. font-weight: 500;
  93. color : rgba(255, 92, 92, 1);
  94. margin-left: 13px;
  95. }
  96. }
  97. .bidlist {
  98. overflow-y : auto;
  99. padding-bottom : 75px;
  100. background-color: #f8f9fa;
  101. height : 90%;
  102. li {
  103. height : 302px*$a;
  104. margin-bottom : 18px*$a;
  105. background-color: #fff;
  106. padding : 35px*$a;
  107. h2 {
  108. height : 31px*$a;
  109. font-size : 32px*$a;
  110. font-family: PingFang-SC-Bold;
  111. font-weight: bold;
  112. color : rgba(32, 32, 32, 1);
  113. line-height: 31px*$a;
  114. }
  115. .p1 {
  116. margin : 20px*$a 0;
  117. font-size : 26px*$a;
  118. font-family: PingFang-SC-Medium;
  119. font-weight: 500;
  120. color : rgba(122, 122, 122, 1);
  121. }
  122. .time {
  123. float: right;
  124. }
  125. }
  126. }
  127. .label {
  128. background : rgba(242, 242, 250, 1);
  129. border-radius: 4px;
  130. font-size : 22px*$a;
  131. font-family : PingFang-SC-Regular;
  132. font-weight : 400;
  133. color : rgba(108, 116, 122, 1);
  134. padding : 5px;
  135. }
  136. .time {
  137. color: rgba(122, 122, 122, 1);
  138. }
  139. * {
  140. margin : 0;
  141. padding: 0;
  142. }
  143. }
  144. * {
  145. text-decoration: none;
  146. list-style : none;
  147. box-sizing : border-box;
  148. }
  149. table {
  150. table-layout: fixed;
  151. word-break : break-all;
  152. }
  153. $colour :#009688 #5FB878 #393D49 #1E9FFF #F7B824 #FF5722;
  154. // 支付弹窗
  155. .payment {
  156. position : fixed;
  157. width : 100%;
  158. left : 0;
  159. top : 0;
  160. height : 100%;
  161. background-color : rgba(0, 0, 0, .5);
  162. background-position-x: 20px;
  163. background-size : 50%;
  164. div {
  165. height: auto;
  166. }
  167. >div {
  168. position : absolute;
  169. bottom : 0;
  170. left : 0;
  171. background-color: #fff;
  172. padding : 20px 0;
  173. width : 100%;
  174. max-height : 311px;
  175. >p {
  176. margin-bottom: 20px;
  177. font-size : 16px;
  178. font-family : PingFang-SC-Bold;
  179. font-weight : bold;
  180. color : rgba(32, 32, 32, 1);
  181. padding : 0 15px;
  182. }
  183. .auto {
  184. overflow-x: scroll;
  185. ul {
  186. padding : 15px;
  187. overflow-x: auto;
  188. width : 390px;
  189. border-top: .5px solid #afafaf;
  190. li {
  191. width : 107px;
  192. text-align : center;
  193. display : inline-block;
  194. margin-right: 10px;
  195. p {
  196. line-height : 58px;
  197. width : 100%;
  198. height : 64px;
  199. text-align : center;
  200. display : inline-block;
  201. background : rgba(255, 255, 255, 1);
  202. border : 2px solid rgba(255, 92, 86, 1);
  203. border-radius: 16px;
  204. color : red;
  205. span {
  206. font-size : 18px;
  207. font-family: PingFang-SC-Bold;
  208. font-weight: bold;
  209. i {
  210. font-size : 14px;
  211. font-style: normal;
  212. }
  213. }
  214. }
  215. >span {
  216. font-size : 22px*0.5;
  217. font-family: PingFang-SC-Medium;
  218. font-weight: 500;
  219. color : rgba(175, 175, 175, 1);
  220. }
  221. }
  222. .discount {
  223. p {
  224. line-height: normal;
  225. padding-top: 8px;
  226. }
  227. .del {
  228. display : block;
  229. font-size : 26px*0.5;
  230. font-family : PingFang-SC-Medium;
  231. font-weight : 500;
  232. text-decoration: line-through;
  233. color : rgba(204, 204, 204, 1);
  234. }
  235. }
  236. }
  237. }
  238. .confirm {
  239. border-top: .5px solid rgba(175, 175, 175, 1);
  240. ;
  241. padding: 15px 15px 0 15px;
  242. width : 100%;
  243. button {
  244. width : 90%;
  245. height : 40px;
  246. background : rgba(255, 92, 92, 1);
  247. border-radius: 8px;
  248. border : none;
  249. margin : auto;
  250. display : block;
  251. color : #fff;
  252. font-size : 16px;
  253. font-family : PingFang-SC-Medium;
  254. font-weight : 500;
  255. }
  256. p {
  257. font-size : 29px*0.5;
  258. font-family: PingFang-SC-Medium;
  259. font-weight: 500;
  260. color : rgba(175, 175, 175, 1);
  261. text-align : center;
  262. margin-top : 10px;
  263. span {
  264. color: red;
  265. }
  266. }
  267. }
  268. }
  269. }