product.wxss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. /* 弹出层 */
  12. .popup.data-v-2fbdbe34 {
  13. position: fixed;
  14. left: 0;
  15. top: 0;
  16. right: 0;
  17. bottom: 0;
  18. z-index: 99;
  19. }
  20. .popup.show.data-v-2fbdbe34 {
  21. display: block;
  22. }
  23. .popup.show .mask.data-v-2fbdbe34 {
  24. -webkit-animation: showPopup-data-v-2fbdbe34 0.2s linear both;
  25. animation: showPopup-data-v-2fbdbe34 0.2s linear both;
  26. }
  27. .popup.show .layer.data-v-2fbdbe34 {
  28. -webkit-animation: showLayer-data-v-2fbdbe34 0.2s linear both;
  29. animation: showLayer-data-v-2fbdbe34 0.2s linear both;
  30. }
  31. .popup.hide .mask.data-v-2fbdbe34 {
  32. -webkit-animation: hidePopup-data-v-2fbdbe34 0.2s linear both;
  33. animation: hidePopup-data-v-2fbdbe34 0.2s linear both;
  34. }
  35. .popup.hide .layer.data-v-2fbdbe34 {
  36. -webkit-animation: hideLayer-data-v-2fbdbe34 0.2s linear both;
  37. animation: hideLayer-data-v-2fbdbe34 0.2s linear both;
  38. }
  39. .popup.none.data-v-2fbdbe34 {
  40. display: none;
  41. }
  42. .popup .mask.data-v-2fbdbe34 {
  43. position: fixed;
  44. top: 0;
  45. width: 100%;
  46. height: 100%;
  47. z-index: 1;
  48. background-color: rgba(0, 0, 0, 0.4);
  49. }
  50. .popup .layer.data-v-2fbdbe34 {
  51. position: fixed;
  52. z-index: 99;
  53. bottom: 0;
  54. width: 100%;
  55. min-height: 35vh;
  56. border-radius: 10rpx 10rpx 0 0;
  57. background-color: #fff;
  58. }
  59. .popup .layer .btn.data-v-2fbdbe34 {
  60. height: 66rpx;
  61. line-height: 66rpx;
  62. border-radius: 100rpx;
  63. background: #ee2f72;
  64. font-size: 30rpx;
  65. color: #fff;
  66. margin: 30rpx auto 20rpx;
  67. }
  68. @-webkit-keyframes showPopup-data-v-2fbdbe34 {
  69. 0% {
  70. opacity: 0;
  71. }
  72. 100% {
  73. opacity: 1;
  74. }
  75. }
  76. @keyframes showPopup-data-v-2fbdbe34 {
  77. 0% {
  78. opacity: 0;
  79. }
  80. 100% {
  81. opacity: 1;
  82. }
  83. }
  84. @-webkit-keyframes hidePopup-data-v-2fbdbe34 {
  85. 0% {
  86. opacity: 1;
  87. }
  88. 100% {
  89. opacity: 0;
  90. }
  91. }
  92. @keyframes hidePopup-data-v-2fbdbe34 {
  93. 0% {
  94. opacity: 1;
  95. }
  96. 100% {
  97. opacity: 0;
  98. }
  99. }
  100. @-webkit-keyframes showLayer-data-v-2fbdbe34 {
  101. 0% {
  102. -webkit-transform: translateY(120%);
  103. transform: translateY(120%);
  104. }
  105. 100% {
  106. -webkit-transform: translateY(0%);
  107. transform: translateY(0%);
  108. }
  109. }
  110. @keyframes showLayer-data-v-2fbdbe34 {
  111. 0% {
  112. -webkit-transform: translateY(120%);
  113. transform: translateY(120%);
  114. }
  115. 100% {
  116. -webkit-transform: translateY(0%);
  117. transform: translateY(0%);
  118. }
  119. }
  120. @-webkit-keyframes hideLayer-data-v-2fbdbe34 {
  121. 0% {
  122. -webkit-transform: translateY(0);
  123. transform: translateY(0);
  124. }
  125. 100% {
  126. -webkit-transform: translateY(120%);
  127. transform: translateY(120%);
  128. }
  129. }
  130. @keyframes hideLayer-data-v-2fbdbe34 {
  131. 0% {
  132. -webkit-transform: translateY(0);
  133. transform: translateY(0);
  134. }
  135. 100% {
  136. -webkit-transform: translateY(120%);
  137. transform: translateY(120%);
  138. }
  139. }
  140. /* 规格选择弹窗 */
  141. .attr-content.data-v-2fbdbe34 {
  142. padding: 25rpx 30rpx;
  143. }
  144. .attr-content .a-t.data-v-2fbdbe34 {
  145. display: flex;
  146. }
  147. .attr-content .a-t image.data-v-2fbdbe34 {
  148. width: 170rpx;
  149. height: 170rpx;
  150. flex-shrink: 0;
  151. border-radius: 8rpx;
  152. }
  153. .attr-content .a-t .right.data-v-2fbdbe34 {
  154. display: flex;
  155. flex-direction: column;
  156. padding-left: 24rpx;
  157. font-size: 26rpx;
  158. color: #606266;
  159. line-height: 42rpx;
  160. width: 75%;
  161. }
  162. .attr-content .a-t .right .price.data-v-2fbdbe34 {
  163. font-size: 32rpx;
  164. color: #ee2f72;
  165. margin: 10rpx 0rpx;
  166. }
  167. .attr-content .a-t .right .name.data-v-2fbdbe34 {
  168. font-size: 32rpx;
  169. color: #303133;
  170. height: 50rpx;
  171. overflow: hidden;
  172. text-overflow: ellipsis;
  173. white-space: nowrap;
  174. display: block;
  175. }
  176. .attr-content .a-t .right .selected-text.data-v-2fbdbe34 {
  177. margin-right: 10rpx;
  178. }
  179. .attr-content .attr-list.data-v-2fbdbe34 {
  180. display: flex;
  181. flex-direction: column;
  182. font-size: 30rpx;
  183. color: #606266;
  184. padding-top: 30rpx;
  185. padding-left: 10rpx;
  186. }
  187. .attr-content .item-list.data-v-2fbdbe34 {
  188. padding: 20rpx 0 0;
  189. display: flex;
  190. flex-wrap: wrap;
  191. }
  192. .attr-content .item-list text.data-v-2fbdbe34 {
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. background: #eee;
  197. margin-right: 20rpx;
  198. margin-bottom: 20rpx;
  199. border-radius: 100rpx;
  200. min-width: 60rpx;
  201. height: 60rpx;
  202. padding: 0 20rpx;
  203. font-size: 28rpx;
  204. color: #303133;
  205. }
  206. .attr-content .item-list .selected.data-v-2fbdbe34 {
  207. background: #ddffdf;
  208. color: #5dbc7c;
  209. }
  210. .goodsBottom.data-v-2fbdbe34 {
  211. height: 160rpx;
  212. }
  213. page.data-v-2fbdbe34 {
  214. background: #f0f0f0;
  215. }
  216. .contentBottomHeight.data-v-2fbdbe34 {
  217. height: 130rpx;
  218. }
  219. .goodsBottom.data-v-2fbdbe34 {
  220. height: 160rpx;
  221. }
  222. .data-v-2fbdbe34 .iconenter {
  223. font-size: 30rpx;
  224. color: #888;
  225. }
  226. .data-v-2fbdbe34 .con_image {
  227. width: 130rpx;
  228. height: 130rpx;
  229. display: inline-block;
  230. padding: 15rpx;
  231. }
  232. .data-v-2fbdbe34 .con_image image {
  233. width: 100%;
  234. height: 100%;
  235. }
  236. /* 商品详情中限制图片大小 */
  237. .data-v-2fbdbe34 .rich-img {
  238. width: 100% !important;
  239. height: auto;
  240. }
  241. .cho-num.data-v-2fbdbe34 {
  242. margin: 20rpx 0;
  243. width: 750rpx;
  244. height: 83rpx;
  245. background: #ffffff;
  246. padding: 29rpx 24rpx 30rpx 25rpx;
  247. font-size: 26rpx;
  248. font-weight: 500;
  249. color: #606972;
  250. }
  251. .row.data-v-2fbdbe34 {
  252. display: flex;
  253. align-items: center;
  254. position: relative;
  255. padding: 0 30rpx;
  256. height: 110rpx;
  257. background: #fff;
  258. }
  259. .row .refund.data-v-2fbdbe34 {
  260. font-size: 30rpx;
  261. color: #303133;
  262. padding-left: 128rpx;
  263. }
  264. .row .noRefund.data-v-2fbdbe34 {
  265. font-size: 30rpx;
  266. color: #909399;
  267. padding-left: 128rpx;
  268. }
  269. .row .tit.data-v-2fbdbe34 {
  270. flex-shrink: 0;
  271. width: 120rpx;
  272. font-size: 30rpx;
  273. color: #303133;
  274. }
  275. .row .input.data-v-2fbdbe34 {
  276. flex: 1;
  277. font-size: 30rpx;
  278. color: #303133;
  279. padding-left: 128rpx;
  280. }
  281. .row .input.payColor.data-v-2fbdbe34 {
  282. color: #dd524d;
  283. }
  284. .row .iconlocation.data-v-2fbdbe34 {
  285. font-size: 36rpx;
  286. color: #909399;
  287. }
  288. .shop-info.data-v-2fbdbe34 {
  289. width: 750rpx;
  290. height: 140rpx;
  291. margin: 20rpx 0;
  292. padding: 28rpx 24rpx 22rpx 16rpx;
  293. background-color: #fff;
  294. display: flex;
  295. position: relative;
  296. }
  297. .shop-info .shop-logo.data-v-2fbdbe34 {
  298. width: 90rpx;
  299. height: 90rpx;
  300. border-radius: 50%;
  301. }
  302. .shop-info .shop-logo image.data-v-2fbdbe34 {
  303. width: 90rpx;
  304. height: 90rpx;
  305. }
  306. .shop-info .shop-base.data-v-2fbdbe34 {
  307. padding-left: 15rpx;
  308. width: 100%;
  309. font-size: 24rpx;
  310. font-weight: 500;
  311. color: #999999;
  312. line-height: 1;
  313. }
  314. .shop-info .shop-base .base-name.data-v-2fbdbe34 {
  315. padding-top: 14rpx;
  316. font-size: 30rpx;
  317. padding-bottom: 16rpx;
  318. font-weight: 500;
  319. color: #333333;
  320. }
  321. .shop-info .shop-dis.data-v-2fbdbe34 {
  322. padding-top: 31rpx;
  323. position: absolute;
  324. font-size: 24rpx;
  325. font-weight: 500;
  326. color: #901b21;
  327. right: 24rpx;
  328. }
  329. .shop-info .shop-dis image.data-v-2fbdbe34 {
  330. padding-right: 5rpx;
  331. width: 21rpx;
  332. height: 21rpx;
  333. }
  334. .sckill-top.data-v-2fbdbe34 {
  335. width: 750rpx;
  336. height: 165rpx;
  337. position: relative;
  338. top: -40rpx;
  339. margin-bottom: -40rpx;
  340. display: flex;
  341. justify-content: space-between;
  342. }
  343. .sckill-top .bg.data-v-2fbdbe34 {
  344. width: 750rpx;
  345. height: 165rpx;
  346. position: absolute;
  347. left: 0;
  348. top: 0;
  349. }
  350. .sckill-top .bg image.data-v-2fbdbe34 {
  351. width: 100%;
  352. height: 100%;
  353. }
  354. .sckill-top .top-left.data-v-2fbdbe34 {
  355. position: relative;
  356. z-index: 10;
  357. line-height: 1;
  358. }
  359. .sckill-top .top-left .left-top.data-v-2fbdbe34 {
  360. padding: 35rpx 0 23rpx 22rpx;
  361. font-size: 44rpx;
  362. font-weight: 500;
  363. color: #ffffff;
  364. line-height: 1;
  365. }
  366. .sckill-top .top-left .left-btm.data-v-2fbdbe34 {
  367. line-height: 1;
  368. font-size: 30rpx;
  369. font-weight: 500;
  370. padding-left: 25rpx;
  371. color: #ffffff;
  372. }
  373. .sckill-top .top-left .left-btm .now-pri.data-v-2fbdbe34 {
  374. display: inline-block;
  375. padding-right: 8rpx;
  376. font-size: 44rpx;
  377. font-weight: 800;
  378. color: #ffffff;
  379. }
  380. .sckill-top .top-left .left-btm .old-pri.data-v-2fbdbe34 {
  381. text-decoration: line-through;
  382. }
  383. .sckill-top .top-right.data-v-2fbdbe34 {
  384. position: relative;
  385. z-index: 10;
  386. padding: 67rpx 20rpx 18rpx 0;
  387. }
  388. .sckill-top .top-right .right-top.data-v-2fbdbe34 {
  389. font-size: 22rpx;
  390. font-weight: 400;
  391. color: #ffffff;
  392. line-height: 1;
  393. padding-bottom: 8rpx;
  394. }
  395. .good-title.data-v-2fbdbe34 {
  396. background-color: #fff;
  397. padding: 24rpx 19rpx 24rpx 34rpx;
  398. line-height: 1.5;
  399. font-size: 36rpx;
  400. font-weight: 800;
  401. color: #333333;
  402. }
  403. .introduce-section.data-v-2fbdbe34 {
  404. position: relative;
  405. background: #fff;
  406. padding: 35rpx 0rpx;
  407. padding-left: 20rpx;
  408. }
  409. .introduce-section .title.data-v-2fbdbe34 {
  410. font-size: 32rpx;
  411. color: #303133;
  412. padding-right: 34rpx;
  413. }
  414. .introduce-section .title .tip-o.data-v-2fbdbe34 {
  415. color: #ff3334;
  416. padding-left: 15rpx;
  417. }
  418. .introduce-section .shareDate.data-v-2fbdbe34 {
  419. position: absolute;
  420. top: 25rpx;
  421. right: 10rpx;
  422. font-size: 26rpx;
  423. color: #3d3f46;
  424. border-radius: 15rpx;
  425. background-color: #ffffff;
  426. height: 60rpx;
  427. line-height: 60rpx;
  428. }
  429. .introduce-section .shareDate.data-v-2fbdbe34::after {
  430. border: none;
  431. }
  432. .introduce-section .share-img.data-v-2fbdbe34 {
  433. width: 30rpx;
  434. height: 30rpx;
  435. position: relative;
  436. top: 5rpx;
  437. left: 0;
  438. margin-right: 10rpx;
  439. }
  440. .introduce-section .info.data-v-2fbdbe34 {
  441. color: #999999;
  442. font-size: 26rpx;
  443. padding-bottom: 15rpx;
  444. }
  445. .introduce-section .progress-box.data-v-2fbdbe34 {
  446. width: 260rpx;
  447. position: relative;
  448. margin-top: 15rpx;
  449. line-height: 10px;
  450. }
  451. .introduce-section .progress-box .number.data-v-2fbdbe34 {
  452. font-size: 17rpx;
  453. position: absolute;
  454. z-index: 999;
  455. top: 3rpx;
  456. left: 15rpx;
  457. color: #ffffff;
  458. }
  459. .introduce-section .price-box.data-v-2fbdbe34 {
  460. display: flex;
  461. align-items: baseline;
  462. height: 64rpx;
  463. padding: 10rpx 0;
  464. font-size: 27rpx;
  465. color: #ef041f;
  466. }
  467. .introduce-section .price.data-v-2fbdbe34 {
  468. font-size: 38rpx;
  469. }
  470. .introduce-section .price .text.data-v-2fbdbe34 {
  471. padding-left: 5rpx;
  472. color: #b0b0b0;
  473. font-size: 22rpx !important;
  474. }
  475. .introduce-section .price-green.data-v-2fbdbe34 {
  476. color: #2dbd59;
  477. font-size: 28rpx !important;
  478. }
  479. .introduce-section .price-green text.data-v-2fbdbe34 {
  480. background: #2dbd59;
  481. color: #ffffff;
  482. padding: 0rpx 10rpx;
  483. border-radius: 5rpx;
  484. font-size: 22rpx !important;
  485. margin-left: 15rpx;
  486. }
  487. .introduce-section .m-price.data-v-2fbdbe34 {
  488. margin: 0 12rpx;
  489. color: #909399;
  490. text-decoration: line-through;
  491. margin-left: 25rpx;
  492. font-size: 24rpx;
  493. }
  494. .dhsm.data-v-2fbdbe34 {
  495. display: flex;
  496. margin: 20rpx 0;
  497. background-color: #fff;
  498. padding: 34rpx 50rpx 30rpx 24rpx;
  499. }
  500. .dhsm .title.data-v-2fbdbe34 {
  501. font-size: 32rpx;
  502. font-family: PingFang SC;
  503. font-weight: bold;
  504. color: #333333;
  505. margin-right: 32rpx;
  506. flex-shrink: 0;
  507. }
  508. .dhsm .info.data-v-2fbdbe34 {
  509. font-size: 26rpx;
  510. font-family: PingFang SC;
  511. font-weight: 500;
  512. color: #8a8a8a;
  513. line-height: 38rpx;
  514. }
  515. .price-box-jf.data-v-2fbdbe34 {
  516. color: #ef041f;
  517. display: flex;
  518. align-items: baseline;
  519. height: 64rpx;
  520. font-size: 50rpx;
  521. font-family: PingFang SC;
  522. font-weight: 800;
  523. }
  524. .price-box-jf .price.data-v-2fbdbe34 {
  525. font-size: 50rpx;
  526. }
  527. .price-box-jf image.data-v-2fbdbe34 {
  528. height: 30rpx;
  529. width: 30rpx;
  530. }
  531. .price-box-jf .jf.data-v-2fbdbe34 {
  532. font-size: 30rpx;
  533. }
  534. .mask.data-v-2fbdbe34 {
  535. position: fixed;
  536. top: 0;
  537. left: 0;
  538. width: 100%;
  539. height: 100%;
  540. z-index: 999;
  541. background-color: rgba(0, 0, 0, 0.4);
  542. }
  543. .mask image.data-v-2fbdbe34 {
  544. width: 100%;
  545. height: 100%;
  546. opacity: 0.8;
  547. }