index.wxss 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .vheigh {
  12. height: 25px;
  13. }
  14. .container,
  15. page {
  16. height: auto;
  17. min-height: 100%;
  18. background: #f6f6f6;
  19. }
  20. .top-box {
  21. display: flex;
  22. justify-content: start;
  23. padding: 50rpx 50rpx 20rpx;
  24. }
  25. .top {
  26. width: 500rpx;
  27. height: 58rpx;
  28. background: #ededed;
  29. border-radius: 29rpx;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. }
  34. .top .top-icon {
  35. width: 32rpx;
  36. height: 32rpx;
  37. }
  38. .top .top-icon image {
  39. width: 100%;
  40. height: 100%;
  41. }
  42. .top .top-main {
  43. margin-left: 20rpx;
  44. font-size: 28rpx;
  45. font-family: PingFang SC;
  46. font-weight: 500;
  47. color: #cbcbcb;
  48. }
  49. .banner {
  50. margin-top: -2rpx;
  51. width: 750rpx;
  52. height: 916rpx;
  53. }
  54. .banner .banner-item {
  55. width: 750rpx;
  56. height: 916rpx;
  57. }
  58. .banner .banner-item image {
  59. width: 100%;
  60. height: 100%;
  61. }
  62. .hot-title {
  63. align-items: center;
  64. justify-content: center;
  65. display: flex;
  66. }
  67. .hot-title .hot-title-icon {
  68. width: 20rpx;
  69. height: 12rpx;
  70. }
  71. .hot-title .hot-title-icon image {
  72. width: 100%;
  73. height: 100%;
  74. }
  75. .hot-title .hot-title-font {
  76. margin: 0 28rpx;
  77. font-size: 32rpx;
  78. font-family: PingFang SC;
  79. font-weight: bold;
  80. color: #000000;
  81. }
  82. .hot-tip {
  83. text-align: center;
  84. margin-top: 12rpx;
  85. font-size: 24rpx;
  86. font-family: PingFang SC;
  87. font-weight: 500;
  88. color: #000000;
  89. }
  90. .hot-box {
  91. margin-top: 47rpx;
  92. }
  93. .hot-box .hot-main {
  94. padding-top: 5rpx;
  95. }
  96. .hot-box .hot-main .hot-main-item {
  97. margin: 24rpx auto 0;
  98. width: 704rpx;
  99. background: #ffffff;
  100. border-radius: 20rpx;
  101. padding-bottom: 26rpx;
  102. position: relative;
  103. }
  104. .hot-box .hot-main .hot-main-item .time {
  105. position: absolute;
  106. z-index: 2;
  107. top: 0;
  108. left: 0;
  109. background: rgba(0, 0, 0, 0.3);
  110. border-radius: 16rpx 24rpx 24rpx 0px;
  111. display: flex;
  112. align-items: center;
  113. }
  114. .hot-box .hot-main .hot-main-item .time .sq {
  115. height: 74rpx;
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. padding: 12rpx 20rpx;
  120. background: #000000;
  121. font-size: 24rpx;
  122. font-family: PingFang SC;
  123. font-weight: bold;
  124. color: #ffffff;
  125. border-radius: 16rpx 0px 0px 0px;
  126. }
  127. .hot-box .hot-main .hot-main-item .time .time-main {
  128. display: flex;
  129. align-items: center;
  130. padding: 12rpx 20rpx;
  131. font-size: 22rpx;
  132. font-family: PingFang SC;
  133. font-weight: 500;
  134. color: #ffffff;
  135. }
  136. .hot-box .hot-main .hot-main-item .hot-main-image {
  137. width: 704rpx;
  138. height: 452rpx;
  139. background: #ffffff;
  140. border-radius: 20rpx 20rpx 0px 0px;
  141. }
  142. .hot-box .hot-main .hot-main-item .hot-main-image image {
  143. width: 100%;
  144. height: 100%;
  145. border-radius: 20rpx 20rpx 0px 0px;
  146. }
  147. .hot-box .hot-main .hot-main-item .hot-name {
  148. padding: 18rpx 20rpx 0;
  149. font-size: 30rpx;
  150. font-family: PingFang SC;
  151. font-weight: bold;
  152. color: #000000;
  153. }
  154. .hot-box .hot-main .hot-main-item .hot-tipBox {
  155. padding: 18rpx 20rpx 0;
  156. line-height: 1;
  157. }
  158. .hot-box .hot-main .hot-main-item .hot-tipBox .hot-tip {
  159. width: 85%;
  160. font-size: 26rpx;
  161. font-family: PingFang SC;
  162. font-weight: 500;
  163. color: #666666;
  164. }
  165. .hot-box .hot-main .hot-main-item .hot-tipBox .sale {
  166. font-size: 24rpx;
  167. font-family: PingFang SC;
  168. font-weight: 500;
  169. color: #999999;
  170. }
  171. .hot-box .hot-main .hot-main-item .hot-price-box {
  172. padding: 18rpx 20rpx 0;
  173. }
  174. .hot-box .hot-main .hot-main-item .hot-price-box .hot-price {
  175. padding: 0 12rpx;
  176. font-size: 32rpx;
  177. font-family: PingFang SC;
  178. font-weight: 800;
  179. color: #ff4c4c;
  180. }
  181. .hot-box .hot-main .hot-main-item .hot-price-box .hot-price .yuan-price {
  182. display: inline-block;
  183. margin-left: 10rpx;
  184. font-size: 24rpx;
  185. font-family: PingFang SC;
  186. font-weight: 500;
  187. text-decoration: line-through;
  188. color: #969696;
  189. }
  190. .hot-box .hot-main .hot-main-item .hot-price-box .btn {
  191. width: 172rpx;
  192. height: 60rpx;
  193. background: #000000;
  194. border-radius: 10rpx;
  195. display: flex;
  196. justify-content: center;
  197. align-items: center;
  198. font-size: 26rpx;
  199. font-family: PingFang SC;
  200. font-weight: 500;
  201. color: #ffffff;
  202. }
  203. .hot-box .hot-main .hot-main-item .hot-price-box .btn1 {
  204. width: 172rpx;
  205. height: 60rpx;
  206. background: #ffffff;
  207. border: 1px solid #000000;
  208. border-radius: 10rpx;
  209. display: flex;
  210. justify-content: center;
  211. align-items: center;
  212. font-size: 26rpx;
  213. font-family: PingFang SC;
  214. font-weight: 500;
  215. color: #000000;
  216. }
  217. .guess-section-box {
  218. margin-top: 20rpx;
  219. width: 750rpx;
  220. background: #fff;
  221. padding-top: 30rpx;
  222. }
  223. .guess-section-box .guess-section-title {
  224. display: flex;
  225. justify-content: center;
  226. align-items: center;
  227. }
  228. .guess-section-box .guess-section-title .guess-section-xian {
  229. width: 120rpx;
  230. height: 1px;
  231. background: #999999;
  232. }
  233. .guess-section-box .guess-section-title .guess-section-title-font {
  234. margin: 0 70rpx;
  235. font-size: 30rpx;
  236. font-family: PingFang SC;
  237. font-weight: 500;
  238. color: #363636;
  239. }
  240. .guess-section {
  241. margin-top: 40rpx;
  242. display: flex;
  243. flex-wrap: wrap;
  244. padding: 0 30rpx;
  245. }
  246. .guess-section .guess-item {
  247. padding-bottom: 35rpx;
  248. overflow: hidden;
  249. display: flex;
  250. flex-direction: column;
  251. width: 48%;
  252. margin-bottom: 4%;
  253. border-radius: 15rpx;
  254. background-color: white;
  255. box-shadow: 0rpx 0rpx 10rpx 10rpx #f3f3f3;
  256. }
  257. .guess-section .guess-item:nth-child(2n + 1) {
  258. margin-right: 4%;
  259. }
  260. .guess-section .image-wrapper {
  261. width: 330rpx;
  262. height: 330rpx;
  263. border-radius: 3px;
  264. overflow: hidden;
  265. }
  266. .guess-section .image-wrapper image {
  267. width: 100%;
  268. height: 100%;
  269. opacity: 1;
  270. }
  271. .guess-section .title {
  272. margin-top: 28rpx;
  273. font-size: 28rpx;
  274. color: #303133;
  275. font-weight: bold;
  276. }
  277. .guess-section .price {
  278. margin-top: 34rpx;
  279. font-size: 32rpx;
  280. font-family: PingFang SC;
  281. font-weight: 800;
  282. color: #ff4c4c;
  283. line-height: 1;
  284. }
  285. .guess-section .price .font-size-sm {
  286. flex-shrink: 0;
  287. font-size: 24rpx;
  288. font-family: PingFang SC;
  289. font-weight: 500;
  290. color: #999999;
  291. }
  292. .guess-section .price .yuan-price {
  293. display: inline-block;
  294. margin-left: 10rpx;
  295. font-size: 24rpx;
  296. font-family: PingFang SC;
  297. font-weight: 500;
  298. text-decoration: line-through;
  299. color: #969696;
  300. }
  301. .guess-section .detail {
  302. line-height: 1;
  303. }
  304. .guess-section .tip {
  305. color: white;
  306. background-color: #fd5b23;
  307. line-height: 1.5;
  308. font-size: 24rpx;
  309. padding-left: 20rpx;
  310. }
  311. /*公用边框样式*/
  312. .guess-section .icon {
  313. margin-right: 10rpx;
  314. display: inline-block;
  315. padding: 2rpx 10rpx;
  316. border: 1rpx solid #fd5b23;
  317. color: #fd5b23;
  318. line-height: 1;
  319. font-size: 28rpx;
  320. border-radius: 10rpx;
  321. }
  322. .swiper-dot {
  323. margin-top: -18rpx;
  324. display: flex;
  325. justify-content: center;
  326. position: relative;
  327. z-index: 2;
  328. }
  329. .swiper-dot .swiper-dots-item {
  330. width: 25rpx;
  331. height: 8rpx;
  332. border-radius: 4rpx 4rpx;
  333. background-color: #9fab9e;
  334. margin: 0 16rpx;
  335. }
  336. .swiper-dot .action {
  337. background-color: #ffffff;
  338. }
  339. .gg {
  340. margin-top: 10rpx;
  341. width: 750rpx;
  342. height: 60rpx;
  343. background: #ff3342;
  344. padding: 15rpx 30rpx;
  345. display: flex;
  346. align-items: center;
  347. }
  348. .gg .gg-icon {
  349. width: 28rpx;
  350. height: 28rpx;
  351. }
  352. .gg .gg-icon image {
  353. width: 100%;
  354. height: 100%;
  355. }
  356. .gg .tongz-left {
  357. width: 100%;
  358. margin-left: 10rpx;
  359. }
  360. .gg .tongz-left .tongz-font {
  361. font-size: 26rpx;
  362. font-family: PingFang SC;
  363. font-weight: bold;
  364. color: #ffffff;
  365. }
  366. .navbar-box {
  367. width: 750rpx;
  368. background: #10101e;
  369. padding: 34rpx 24rpx 36rpx;
  370. }
  371. .navbar-box image {
  372. width: 100%;
  373. height: 100%;
  374. }
  375. .navbar-box .navbar-title {
  376. width: 100%;
  377. height: 70rpx;
  378. }
  379. .navbar-box button {
  380. width: 33%;
  381. height: 100%;
  382. padding: 52rpx 0 58rpx;
  383. background: #ffffff;
  384. line-height: 1;
  385. }
  386. .navbar-box .navbar-main {
  387. margin-top: 28rpx;
  388. display: flex;
  389. justify-content: space-around;
  390. align-items: center;
  391. padding: 52rpx 0 58rpx;
  392. background: #ffffff;
  393. line-height: 1;
  394. }
  395. .navbar-box .navbar-main .navbar-item::after {
  396. border: none;
  397. background: #ffffff;
  398. height: 0;
  399. width: 0;
  400. }
  401. .navbar-box .navbar-main .navbar-item {
  402. width: 33%;
  403. display: flex;
  404. flex-direction: column;
  405. align-items: center;
  406. }
  407. .navbar-box .navbar-main .navbar-item .navbar-icon {
  408. width: 40rpx;
  409. }
  410. .navbar-box .navbar-main .navbar-item .navbar-font-box {
  411. display: flex;
  412. justify-content: center;
  413. align-content: flex-start;
  414. margin-top: 24rpx;
  415. align-items: center;
  416. }
  417. .navbar-box .navbar-main .navbar-item .navbar-font-box .navbar-font {
  418. font-size: 28rpx;
  419. font-family: PingFang SC;
  420. font-weight: 500;
  421. color: #000000;
  422. margin-right: 12rpx;
  423. }
  424. .navbar-box .navbar-main .navbar-item .navbar-font-box .navbar-font-icon {
  425. width: 8rpx;
  426. height: 16rpx;
  427. }
  428. .navbar-box .navbar-main .navbar-item .navbar-font-box .navbar-font-icon image {
  429. width: 100%;
  430. height: 100%;
  431. }
  432. .navbar-box .navbar-main .navbar-item .navbar-tip {
  433. margin-top: 26rpx;
  434. font-size: 20rpx;
  435. font-family: PingFang SC;
  436. font-weight: 500;
  437. color: #737372;
  438. }
  439. .navbar-box .navbar-main .xian {
  440. width: 2rpx;
  441. height: 118rpx;
  442. background: linear-gradient(0deg, #f9e6cd 0%, #fdf6eb 50%, #f9e6cd 100%);
  443. }