a.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. @charset "utf-8";
  2. //font
  3. $table:98px*0.5;
  4. $a :0.5;
  5. $z1 :10;
  6. $z2 :50;
  7. $z3 :100;
  8. body {
  9. padding-bottom: $table;
  10. font-size : 1.5rem;
  11. height : 100%;
  12. position : relative;
  13. max-width : 500px;
  14. margin : auto;
  15. div {
  16. height: 100%;
  17. }
  18. //区域
  19. .regions {
  20. position: fixed;
  21. z-index: 100050;
  22. }
  23. //底部导航
  24. .table {
  25. position : fixed;
  26. bottom : 0;
  27. width : 100%;
  28. height : $table;
  29. margin : 0;
  30. background-color: #fff;
  31. padding : 5px 0;
  32. z-index : 10000;
  33. max-width : 500px;
  34. ul {
  35. width : 100%;
  36. height: 100%;
  37. a:nth-child(1) li {
  38. background-image: url(../static/img/ztb.png);
  39. }
  40. a:nth-child(2) li {
  41. background-image: url(../static/img/gc.png);
  42. }
  43. a:nth-child(3) li {
  44. background-image: url(../static/img/xm.png);
  45. }
  46. a:nth-child(4) li {
  47. background-image: url(../static/img/me.png);
  48. }
  49. a:nth-child(1) li.selected {
  50. background-image: url(../static/img/ztb1.png);
  51. }
  52. a:nth-child(2) li.selected {
  53. background-image: url(../static/img/gc1.png);
  54. }
  55. a:nth-child(3) li.selected {
  56. background-image: url(../static/img/xm1.png);
  57. }
  58. a:nth-child(4) li.selected {
  59. background-image: url(../static/img/me1.png);
  60. }
  61. li {
  62. width : 24%;
  63. height : 100%;
  64. display : inline-block;
  65. text-align : center;
  66. background-size : 22px !important;
  67. background : no-repeat center top;
  68. background-position: center 2px;
  69. span {
  70. margin-top: 24px;
  71. display : inline-block;
  72. color : rgba(175, 175, 175, 1);
  73. font-size : 10px;
  74. }
  75. }
  76. li.selected {
  77. span {
  78. color: #ff5c5c;
  79. }
  80. }
  81. }
  82. }
  83. .search {
  84. width : 100%;
  85. height : 44px;
  86. padding : 6px 17px;
  87. background: #fff;
  88. text-align: center;
  89. input {
  90. width : 73%;
  91. height : $a*60px;
  92. background-color : rgba(240, 243, 245, 1);
  93. border-radius : $a*30px;
  94. border : none;
  95. background-image : url(../static/img/search.png);
  96. background-repeat : no-repeat;
  97. background-position: 15px center;
  98. background-size : 16px;
  99. padding-left : 40px;
  100. color : rgba(153, 153, 153, 1);
  101. outline : none;
  102. }
  103. span {
  104. font-size : 1.5rem;
  105. font-family: PingFang-SC-Medium;
  106. font-weight: 500;
  107. color : rgba(255, 92, 92, 1);
  108. margin-left: 13px;
  109. }
  110. }
  111. .bidlist {
  112. overflow-y : auto;
  113. padding-bottom : 75px;
  114. background-color: #f8f9fa;
  115. height : 90%;
  116. li {
  117. height : 302px*$a;
  118. margin-bottom : 18px*$a;
  119. background-color: #fff;
  120. padding : 35px*$a;
  121. h2 {
  122. height : 31px*$a;
  123. font-size : 36px*$a;
  124. font-family: PingFang-SC-Bold;
  125. font-weight: bold;
  126. color : rgba(32, 32, 32, 1);
  127. line-height: 31px*$a;
  128. }
  129. .p1 {
  130. margin : 20px*$a 0;
  131. font-size : 28px*$a;
  132. font-family: PingFang-SC-Medium;
  133. font-weight: 500;
  134. color : rgba(122, 122, 122, 1);
  135. }
  136. .time {
  137. float: right;
  138. }
  139. }
  140. }
  141. .label {
  142. background : rgba(242, 242, 250, 1);
  143. border-radius: 4px;
  144. font-size : 24px*$a;
  145. font-family : PingFang-SC-Regular;
  146. font-weight : 400;
  147. color : rgba(108, 116, 122, 1);
  148. padding : 5px;
  149. }
  150. .time {
  151. color: #afafaf;
  152. }
  153. * {
  154. margin : 0;
  155. padding: 0;
  156. }
  157. }
  158. * {
  159. text-decoration: none;
  160. list-style : none;
  161. box-sizing : border-box;
  162. }
  163. table {
  164. table-layout: fixed;
  165. word-break : break-all;
  166. }
  167. $colour :#009688 #5FB878 #393D49 #1E9FFF #F7B824 #FF5722;
  168. // //组件---支付弹窗
  169. .payment {
  170. position : fixed;
  171. width : 100%;
  172. left : 0;
  173. top : 0;
  174. height : 100%;
  175. background-color : rgba(0, 0, 0, .5);
  176. background-position-x: 20px;
  177. background-size : 50%;
  178. div {
  179. height: auto;
  180. }
  181. >div {
  182. position : absolute;
  183. bottom : 0;
  184. left : 0;
  185. background-color: #fff;
  186. padding : 20px 0;
  187. width : 100%;
  188. max-height : 360px;
  189. >p {
  190. margin-bottom: 20px;
  191. font-size : 16px;
  192. font-family : PingFang-SC-Bold;
  193. font-weight : bold;
  194. color : rgba(32, 32, 32, 1);
  195. padding : 0 15px;
  196. }
  197. .auto {
  198. overflow-x : scroll;
  199. border-top : .5px solid #f0f0f0;
  200. border-bottom: .5px solid #f0f0f0;
  201. ul {
  202. text-align : center;
  203. padding : 20px 0;
  204. overflow-x : auto;
  205. width : 390px;
  206. // border-top: .5px solid #afafaf;
  207. li {
  208. width : 107px;
  209. text-align : center;
  210. display : inline-block;
  211. margin-right: 10px;
  212. p {
  213. line-height : 58px;
  214. width : 100%;
  215. height : 64px;
  216. text-align : center;
  217. display : inline-block;
  218. background : rgba(255, 255, 255, 1);
  219. border : 2px solid #f0f0f0;
  220. border-radius: 16px;
  221. color : red;
  222. span {
  223. font-size : 18px;
  224. font-family: PingFang-SC-Bold;
  225. font-weight: bold;
  226. i {
  227. font-size : 14px;
  228. font-style: normal;
  229. }
  230. }
  231. }
  232. >span {
  233. font-size : 22px*0.5;
  234. font-family: PingFang-SC-Medium;
  235. font-weight: 500;
  236. color : rgba(175, 175, 175, 1);
  237. }
  238. }
  239. .discount {
  240. p {
  241. line-height: normal;
  242. padding-top: 8px;
  243. }
  244. .del {
  245. display : block;
  246. font-size : 26px*0.5;
  247. font-family : PingFang-SC-Medium;
  248. font-weight : 500;
  249. text-decoration: line-through;
  250. color : rgba(204, 204, 204, 1);
  251. }
  252. }
  253. }
  254. }
  255. .confirm {
  256. padding: 20px 15px 0 15px;
  257. width : 100%;
  258. button {
  259. width : 90%;
  260. height : 40px;
  261. background : rgba(255, 92, 92, 1);
  262. border-radius: 8px;
  263. border : none;
  264. margin : auto;
  265. display : block;
  266. color : #fff;
  267. font-size : 16px;
  268. font-family : PingFang-SC-Medium;
  269. font-weight : 500;
  270. }
  271. p {
  272. font-size : 29px*0.5;
  273. font-family: PingFang-SC-Medium;
  274. font-weight: 500;
  275. color : rgba(175, 175, 175, 1);
  276. text-align : center;
  277. margin-top : 10px;
  278. span {
  279. color: red;
  280. }
  281. }
  282. }
  283. }
  284. }
  285. //组件---标题
  286. .head {
  287. padding : 10px 10px;
  288. text-align: center;
  289. img {
  290. height: 20px;
  291. }
  292. img:last-child {
  293. margin-left: 10px;
  294. }
  295. span {
  296. display : inline-block;
  297. width : calc(100% - 80px);
  298. padding-left: 40px;
  299. font-size : 18px;
  300. font-family : PingFang-SC-Bold;
  301. font-weight : bold;
  302. color : rgba(32, 32, 32, 1);
  303. }
  304. }
  305. .sub {
  306. .add {
  307. padding-left: 15px;
  308. border-top : 1px solid #f0f0f0;
  309. li {
  310. padding : 35px*0.5 0;
  311. position: relative;
  312. &::after {
  313. position : absolute;
  314. content : '';
  315. display : block;
  316. width : 100%;
  317. height : 1px;
  318. left : 0;
  319. bottom : 0;
  320. right : 0;
  321. // margin-left : -1.5rem;
  322. // margin-right : -1.5rem;
  323. padding-right : 1.5rem;
  324. background-color: #f0f0f0;
  325. }
  326. .title {
  327. font-size : 16px;
  328. font-family: PingFang-SC-Medium;
  329. font-weight: 500;
  330. color : rgba(32, 32, 32, 1);
  331. }
  332. .name {
  333. font-size : 28px*0.5;
  334. font-family : PingFang-SC-Medium;
  335. font-weight : 500;
  336. color : rgba(175, 175, 175, 1);
  337. float : right;
  338. padding-right: 15px;
  339. img {
  340. width : 8px;
  341. vertical-align: sub;
  342. margin-left : 5px;
  343. }
  344. }
  345. }
  346. }
  347. button {
  348. width : 100%;
  349. height : 50px;
  350. position : absolute;
  351. bottom : 0;
  352. left : 0;
  353. border : none;
  354. background : rgba(255, 92, 92, 1);
  355. font-size : 18px;
  356. font-family: PingFang-SC-Medium;
  357. font-weight: 500;
  358. color : rgba(255, 255, 255, 1);
  359. }
  360. }