goods.wxss 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. /*自定义主题色 */
  27. .content {
  28. font-family: PingFang SC;
  29. }
  30. .share-box {
  31. position: fixed;
  32. right: 24rpx;
  33. top: 70%;
  34. z-index: 99;
  35. width: 112rpx;
  36. height: 112rpx;
  37. border-radius: 16rpx 16rpx 16rpx 16rpx;
  38. border: 1rpx solid #EFF3F7;
  39. background-color: #FFFFFF;
  40. }
  41. .shop-banner {
  42. height: 756rpx;
  43. background-color: #FFFFFF;
  44. position: relative;
  45. }
  46. .shop-banner .swiper-item {
  47. box-sizing: border-box;
  48. position: relative;
  49. }
  50. .shop-banner .swiper,
  51. .shop-banner .swiper-item,
  52. .shop-banner .swiper-item image {
  53. width: 100%;
  54. height: 100%;
  55. }
  56. .shop-banner .banner-mask {
  57. width: 100%;
  58. height: 44rpx;
  59. position: absolute;
  60. left: 0;
  61. bottom: 0;
  62. z-index: 9;
  63. background-size: 20rpx 44rpx;
  64. background-repeat: repeat-x;
  65. }
  66. .shop-banner .num-box {
  67. width: 80rpx;
  68. height: 40rpx;
  69. line-height: 40rpx;
  70. text-align: center;
  71. font-size: 24rpx;
  72. color: #FFFFFF;
  73. background: rgba(0, 0, 0, 0.7);
  74. border-radius: 20rpx;
  75. position: absolute;
  76. right: 40rpx;
  77. bottom: 34rpx;
  78. z-index: 10;
  79. }
  80. .shop-banner .cf-box {
  81. position: absolute;
  82. z-index: 10;
  83. left: 0;
  84. right: 0;
  85. top: calc(50% - 200rpx);
  86. bottom: calc(50% - 200rpx);
  87. background-color: rgba(0, 0, 0, 0.3);
  88. -webkit-backdrop-filter: blur(2rpx);
  89. backdrop-filter: blur(2rpx);
  90. /* 背景模糊度 */
  91. display: flex;
  92. flex-direction: column;
  93. flex: 1;
  94. justify-content: center;
  95. align-items: center;
  96. color: #EDEEEF;
  97. }
  98. .shop-banner .cf-box .title {
  99. font-size: 40rpx;
  100. font-weight: bold;
  101. }
  102. .shop-banner .cf-box .subTitle {
  103. font-size: 28rpx;
  104. font-weight: bold;
  105. margin-top: 10rpx;
  106. }
  107. .guige {
  108. padding: 24rpx;
  109. border-radius: 16rpx;
  110. background: #fff;
  111. width: auto;
  112. font-size: 24rpx;
  113. color: #222426;
  114. margin: 24rpx;
  115. }
  116. .guige .guige-gg .gg-text {
  117. color: #898E91;
  118. margin-right: 40rpx;
  119. }
  120. .guige .safe-box {
  121. display: flex;
  122. align-items: center;
  123. padding-top: 24rpx;
  124. font-size: 24rpx;
  125. color: #222426;
  126. }
  127. .guige .safe-box .text {
  128. color: #999999;
  129. margin-right: 40rpx;
  130. }
  131. .guige .safe-box .box {
  132. display: flex;
  133. align-items: center;
  134. }
  135. .guige .safe-box .box image {
  136. width: 28rpx;
  137. height: 28rpx;
  138. margin-right: 10rpx;
  139. }
  140. .guige .safe-box .box view {
  141. display: flex;
  142. align-items: center;
  143. margin-right: 40rpx;
  144. }
  145. .guige .safe-box .box view:last-child {
  146. margin-right: 0;
  147. }
  148. .guige .safe-box .box view:last-child image {
  149. margin-right: 0;
  150. }
  151. .guige .popup-box {
  152. position: fixed;
  153. top: 0;
  154. right: 0;
  155. left: 0;
  156. bottom: 0;
  157. z-index: 999;
  158. display: flex;
  159. justify-content: center;
  160. align-items: flex-end;
  161. }
  162. .guige .popup-box .info-mask {
  163. position: fixed;
  164. top: 0;
  165. right: 0;
  166. bottom: 0;
  167. left: 0;
  168. background-color: rgba(0, 0, 0, 0.5);
  169. z-index: 999;
  170. }
  171. .guige .popup-box .info-form {
  172. z-index: 1000;
  173. width: 100%;
  174. display: flex;
  175. flex-direction: column;
  176. justify-content: center;
  177. align-items: center;
  178. padding: 0 30rpx 60rpx;
  179. background: #FFFFFF;
  180. border-radius: 40rpx;
  181. }
  182. .guige .popup-box .info-form .top {
  183. display: flex;
  184. }
  185. .guige .popup-box .info-form .line {
  186. border-top: 1px solid #F1F1F1;
  187. width: 100%;
  188. }
  189. .guige .popup-box .info-form .title {
  190. padding: 30rpx;
  191. display: flex;
  192. justify-content: center;
  193. align-items: center;
  194. font-size: 36rpx;
  195. font-weight: bold;
  196. line-height: 44rpx;
  197. color: #222222;
  198. }
  199. .guige .popup-box .info-form .close {
  200. padding-top: 30rpx;
  201. position: absolute;
  202. right: 30rpx;
  203. }
  204. .guige .popup-box .info-form .form-box {
  205. width: 100%;
  206. padding-top: 30rpx;
  207. }
  208. .guige .popup-box .info-form .form-box .form-item2 {
  209. padding-bottom: 30rpx;
  210. }
  211. .guige .popup-box .info-form .form-box .form-item2 .form-item-box {
  212. display: flex;
  213. align-items: center;
  214. }
  215. .guige .popup-box .info-form .form-box .form-item2 .form-item-box text {
  216. font-size: 28rpx;
  217. color: #222426;
  218. margin-left: 10rpx;
  219. font-weight: bold;
  220. }
  221. .guige .popup-box .info-form .form-box .form-item2 .form-content {
  222. font-size: 24rpx;
  223. text-align: left;
  224. color: #626468;
  225. margin-top: 20rpx;
  226. line-height: 40rpx;
  227. }
  228. .guige .popup-box .info-form .btns {
  229. width: 100%;
  230. height: 120rpx;
  231. padding: 20rpx 30rpx;
  232. display: flex;
  233. align-items: center;
  234. justify-content: center;
  235. }
  236. .guige .popup-box .info-form .btns .sub-btn {
  237. width: 100%;
  238. height: 88rpx;
  239. line-height: 88rpx;
  240. text-align: center;
  241. font-size: 36rpx;
  242. font-weight: bold;
  243. color: #FFFFFF;
  244. background: #008FD3;
  245. border-radius: 44rpx;
  246. }
  247. .det-info {
  248. background: #FFFFFF;
  249. padding: 24rpx;
  250. margin: 24rpx;
  251. border-radius: 16rpx;
  252. }
  253. .det-info .price-box {
  254. display: flex;
  255. align-items: flex-end;
  256. justify-content: space-between;
  257. }
  258. .det-info .price-box .price {
  259. display: flex;
  260. align-items: flex-end;
  261. }
  262. .det-info .price-box .price .label {
  263. font-weight: 500;
  264. font-size: 24rpx;
  265. color: #FF5030;
  266. line-height: 1.3;
  267. margin-right: 10rpx;
  268. }
  269. .det-info .price-box .price .unit {
  270. font-size: 26rpx;
  271. font-weight: bold;
  272. color: #FF6633;
  273. line-height: 1.3;
  274. }
  275. .det-info .price-box .price .num {
  276. font-size: 48rpx;
  277. font-weight: bold;
  278. color: #FF5030;
  279. margin-right: 20rpx;
  280. line-height: 1;
  281. }
  282. .det-info .price-box .price .old {
  283. font-size: 24rpx;
  284. font-family: PingFang SC;
  285. font-weight: 400;
  286. color: #898E91;
  287. margin-left: 10rpx;
  288. }
  289. .det-info .price-box .spec {
  290. font-size: 24rpx;
  291. font-family: PingFang SC;
  292. font-weight: 500;
  293. color: #999999;
  294. line-height: 36rpx;
  295. }
  296. .det-info .intro {
  297. font-size: 26rpx;
  298. font-weight: 500;
  299. color: #999999;
  300. line-height: 36rpx;
  301. padding: 18rpx 0 23rpx;
  302. }
  303. .det-info .intro-box {
  304. display: flex;
  305. justify-content: space-between;
  306. align-items: center;
  307. padding: 20rpx;
  308. border-radius: 16rpx;
  309. background: #F5F7FA;
  310. width: auto;
  311. }
  312. .det-info .intro-box .title-1 {
  313. font-size: 24rpx;
  314. color: #222426;
  315. font-weight: bold;
  316. width: 40%;
  317. text-align: center;
  318. }
  319. .det-info .intro-box .title-2 {
  320. font-size: 24rpx;
  321. color: #222426;
  322. font-weight: bold;
  323. display: block;
  324. }
  325. .det-info .intro-box .intro-text2 {
  326. width: 50%;
  327. }
  328. .det-info .intro-box .intro-content {
  329. color: #898E91;
  330. font-size: 24rpx;
  331. }
  332. .det-info .intro-box .line {
  333. width: 1px;
  334. height: 40rpx;
  335. background: #EDEEEF;
  336. margin: 0 20rpx;
  337. }
  338. .det-info .safe-box {
  339. display: flex;
  340. align-items: center;
  341. padding-top: 24rpx;
  342. }
  343. .det-info .safe-box image {
  344. width: 20rpx;
  345. height: 24rpx;
  346. margin-right: 20rpx;
  347. }
  348. .det-info .safe-box .text {
  349. font-size: 22rpx;
  350. font-weight: 500;
  351. color: #999999;
  352. line-height: 1;
  353. }
  354. .det-info .safe-box .line {
  355. width: 1px;
  356. height: 23rpx;
  357. background: #EDEEEF;
  358. margin: 0 20rpx;
  359. }
  360. .inventor {
  361. height: 88rpx;
  362. padding: 0 39rpx 0 30rpx;
  363. margin-top: 10rpx;
  364. background: #FFFFFF;
  365. display: flex;
  366. align-items: center;
  367. justify-content: space-between;
  368. }
  369. .inventor .left {
  370. display: flex;
  371. align-items: center;
  372. }
  373. .inventor .left .head-box {
  374. margin-right: 27rpx;
  375. display: flex;
  376. align-items: center;
  377. }
  378. .inventor .left .head-box .head {
  379. width: 48rpx;
  380. height: 48rpx;
  381. border-radius: 50%;
  382. overflow: hidden;
  383. box-shadow: 0 0 0 1px #fff;
  384. margin-right: -10rpx;
  385. }
  386. .inventor .left .head-box .head image {
  387. width: 100%;
  388. height: 100%;
  389. }
  390. .inventor .left .num-box {
  391. font-size: 24rpx;
  392. font-weight: 500;
  393. color: #999999;
  394. }
  395. .inventor .left .num-box .text {
  396. font-size: 24rpx;
  397. font-weight: 500;
  398. color: #999999;
  399. }
  400. .inventor .right {
  401. font-size: 24rpx;
  402. font-family: PingFang SC;
  403. font-weight: 500;
  404. color: #999999;
  405. }
  406. .inventor .right .text {
  407. font-size: 24rpx;
  408. font-weight: 500;
  409. color: #666666;
  410. }
  411. .effect {
  412. box-sizing: border-box;
  413. padding: 20rpx 30rpx;
  414. background: #FFFFFF;
  415. font-size: 28rpx;
  416. font-weight: 500;
  417. color: #666666;
  418. line-height: 1.8;
  419. margin-top: 10rpx;
  420. display: flex;
  421. flex-direction: row;
  422. align-items: center;
  423. justify-content: space-between;
  424. }
  425. .effect .label {
  426. font-size: 28rpx;
  427. font-weight: 500;
  428. color: #111111;
  429. line-height: 1.8;
  430. }
  431. .shop-box {
  432. display: flex;
  433. justify-content: space-between;
  434. align-items: center;
  435. background: #FFFFFF;
  436. font-size: 28rpx;
  437. font-weight: 500;
  438. color: #666666;
  439. line-height: 1.8;
  440. padding: 24rpx;
  441. margin: 24rpx;
  442. border-radius: 16rpx;
  443. }
  444. .shop-box .logo {
  445. flex-shrink: 0;
  446. width: 100rpx;
  447. height: 100rpx;
  448. border-radius: 16rpx;
  449. overflow: hidden;
  450. }
  451. .shop-box .logo image {
  452. width: 100%;
  453. height: 100%;
  454. }
  455. .shop-box .txtBox {
  456. flex: 1;
  457. overflow: hidden;
  458. margin: 0 30rpx;
  459. display: flex;
  460. flex-direction: column;
  461. justify-content: space-between;
  462. }
  463. .shop-box .name {
  464. font-size: 32rpx;
  465. font-weight: 600;
  466. color: #333;
  467. text-align: left;
  468. overflow: hidden;
  469. white-space: nowrap;
  470. text-overflow: ellipsis;
  471. }
  472. .shop-box .desc {
  473. font-size: 24rpx;
  474. font-weight: normal;
  475. color: #222426;
  476. text-align: left;
  477. }
  478. .shop-box .goShop {
  479. flex-shrink: 0;
  480. width: 96rpx;
  481. height: 56rpx;
  482. background: #fff;
  483. border-radius: 30rpx;
  484. color: #008FD3;
  485. font-size: 24rpx;
  486. margin: 0;
  487. border: 1px solid #008FD3;
  488. padding: 0;
  489. line-height: 56rpx;
  490. display: flex;
  491. align-items: center;
  492. justify-content: center;
  493. }
  494. .tech-pBox {
  495. box-sizing: border-box;
  496. padding: 0rpx 0rpx;
  497. background: #FFFFFF;
  498. font-size: 28rpx;
  499. font-family: PingFang SC;
  500. font-weight: 500;
  501. color: #666666;
  502. }
  503. .tech-pBox .label {
  504. font-weight: bold;
  505. font-size: 26rpx;
  506. color: #222426;
  507. text-align: left;
  508. padding: 24rpx 0;
  509. }
  510. .tech-pBox .item {
  511. border: 1px solid #fff;
  512. border-radius: 12rpx;
  513. padding: 30rpx;
  514. border: 1px solid #EFF3F7;
  515. display: flex;
  516. align-items: center;
  517. margin-bottom: 20rpx;
  518. }
  519. .tech-pBox .item .price {
  520. font-size: 42rpx;
  521. font-weight: bold;
  522. color: #FF6633;
  523. display: flex;
  524. flex: 1;
  525. }
  526. .tech-pBox .item .num {
  527. font-size: 28rpx;
  528. font-weight: normal;
  529. color: #999;
  530. width: 200rpx;
  531. text-align: right;
  532. }
  533. .tech-pBox .item .name {
  534. max-width: 60%;
  535. margin-right: 10rpx;
  536. font-size: 28rpx;
  537. font-weight: normal;
  538. color: #333;
  539. text-align: left;
  540. overflow: hidden;
  541. white-space: nowrap;
  542. text-overflow: ellipsis;
  543. }
  544. .tech-pBox .item image {
  545. width: 100rpx;
  546. height: 100rpx;
  547. border-radius: 50%;
  548. margin-right: 30rpx;
  549. }
  550. .tech-pBox .item .tech-right {
  551. flex: 1;
  552. }
  553. .tech-pBox .item .tech-right-bottom {
  554. color: #898E91;
  555. font-size: 24rpx;
  556. }
  557. .tech-pBox .item .tech-right-top {
  558. display: flex;
  559. align-items: flex-end;
  560. margin-bottom: 10rpx;
  561. }
  562. .tech-pBox .item .tech-right-top .title-1 {
  563. font-size: 32rpx;
  564. color: #222426;
  565. margin-right: 14rpx;
  566. }
  567. .tech-pBox .item .tech-right-top .title-2 {
  568. font-weight: 400;
  569. font-size: 24rpx;
  570. color: #222426;
  571. }
  572. .tech-pBox .hover {
  573. border: 1rpx solid #008FD3;
  574. background: #F0FAFF;
  575. }
  576. .tech-pBox .shop-morebtn {
  577. margin-top: 14rpx;
  578. box-sizing: border-box;
  579. padding: 12rpx 30rpx;
  580. font-size: 28rpx;
  581. font-weight: 500;
  582. color: #111111;
  583. background: #F7F7F7;
  584. border-radius: 32rpx;
  585. text-align: center;
  586. }
  587. .tech-pBox .shop-morebtn text {
  588. color: #999;
  589. }
  590. .shop-pBox {
  591. box-sizing: border-box;
  592. padding: 0rpx 0rpx;
  593. background: #FFFFFF;
  594. font-size: 28rpx;
  595. font-family: PingFang SC;
  596. font-weight: 500;
  597. color: #666666;
  598. }
  599. .shop-pBox .item {
  600. border: 1px solid #fff;
  601. border-radius: 12rpx;
  602. padding: 18rpx 20rpx 24rpx;
  603. }
  604. .shop-pBox .item .price {
  605. font-size: 42rpx;
  606. font-weight: bold;
  607. color: #FF6633;
  608. display: flex;
  609. flex: 1;
  610. }
  611. .shop-pBox .item .price .strong {
  612. font-size: 30rpx;
  613. line-height: 46rpx;
  614. margin-top: 14rpx;
  615. }
  616. .shop-pBox .item .num {
  617. font-size: 28rpx;
  618. font-weight: normal;
  619. color: #999;
  620. width: 200rpx;
  621. text-align: right;
  622. }
  623. .shop-pBox .item .name {
  624. max-width: 60%;
  625. margin-right: 10rpx;
  626. font-size: 28rpx;
  627. font-weight: normal;
  628. color: #333;
  629. text-align: left;
  630. overflow: hidden;
  631. white-space: nowrap;
  632. text-overflow: ellipsis;
  633. }
  634. .shop-pBox .hover {
  635. border: 1rpx solid #FF6633;
  636. }
  637. .shop-pBox .shop-morebtn {
  638. margin-top: 14rpx;
  639. box-sizing: border-box;
  640. padding: 12rpx 30rpx;
  641. font-size: 28rpx;
  642. font-weight: 500;
  643. color: #111111;
  644. background: #F7F7F7;
  645. border-radius: 32rpx;
  646. text-align: center;
  647. }
  648. .shop-pBox .shop-morebtn text {
  649. color: #999;
  650. }
  651. .shop-pBox-name {
  652. display: flex;
  653. align-items: center;
  654. justify-content: flex-start;
  655. }
  656. .storepopup {
  657. padding: 40rpx 20rpx 20rpx 20rpx;
  658. }
  659. .storepopup .storepopup-title {
  660. text-align: center;
  661. margin-bottom: 30rpx;
  662. position: relative;
  663. }
  664. .storepopup .storepopup-title .close-icon {
  665. width: 40rpx;
  666. height: 40rpx;
  667. position: absolute;
  668. right: 0;
  669. top: 50%;
  670. transform: translate(0, -50%);
  671. }
  672. .storepopup .storepopup-box {
  673. height: 60vh;
  674. }
  675. .det-box {
  676. margin-top: 10rpx;
  677. background-color: #FFFFFF;
  678. padding: 24rpx;
  679. margin: 24rpx 24rpx 175rpx 24rpx;
  680. border-radius: 16rpx;
  681. }
  682. .det-box .title {
  683. font-size: 32rpx;
  684. font-weight: bold;
  685. color: #333333;
  686. line-height: 60rpx;
  687. margin-bottom: 30rpx;
  688. padding-bottom: 24rpx;
  689. border-bottom: 1px solid #ECECEC;
  690. }
  691. .det-box .det-title {
  692. display: flex;
  693. align-items: center;
  694. justify-content: space-between;
  695. }
  696. .det-box .det-title .tt {
  697. font-size: 28rpx;
  698. font-weight: bold;
  699. color: #222426;
  700. }
  701. .det-box .det-right {
  702. display: flex;
  703. font-size: 24rpx;
  704. color: #898E91;
  705. align-items: center;
  706. }
  707. .det-box .det-table {
  708. width: 100%;
  709. margin: 24rpx 0;
  710. background: #FFFFFF;
  711. border-radius: 16rpx 16rpx 16rpx 16rpx;
  712. border: 1rpx solid #ECECEC;
  713. overflow: hidden;
  714. font-size: 24rpx;
  715. }
  716. .det-box .det-table .row {
  717. display: table-row;
  718. }
  719. .det-box .det-table .row:last-child .cell-1,
  720. .det-box .det-table .row:last-child .cell-2 {
  721. border-bottom: 0;
  722. }
  723. .det-box .det-table .cell {
  724. display: table-cell;
  725. padding: 24rpx;
  726. }
  727. .det-box .det-table .cell.cell-1 {
  728. width: 30%;
  729. text-align: center;
  730. color: #626468;
  731. background: #F5F7FA;
  732. border-right: 1rpx solid #ECECEC;
  733. border-bottom: 1rpx solid #ECECEC;
  734. }
  735. .det-box .det-table .cell.cell-2 {
  736. color: #222426;
  737. text-align: center;
  738. border-bottom: 1rpx solid #ECECEC;
  739. }
  740. .btn-foot {
  741. box-sizing: border-box;
  742. width: 100%;
  743. height: 151rpx;
  744. background: #FFFFFF;
  745. padding: 0 24rpx;
  746. display: flex;
  747. align-items: center;
  748. justify-content: space-between;
  749. position: fixed;
  750. left: 0;
  751. bottom: 0;
  752. z-index: 99;
  753. }
  754. .btn-foot .menu-box {
  755. display: flex;
  756. align-items: center;
  757. }
  758. .btn-foot .menu-box .item {
  759. display: flex;
  760. align-items: center;
  761. flex-direction: column;
  762. margin-right: 48rpx;
  763. }
  764. .btn-foot .menu-box .item:last-child {
  765. margin-right: 0;
  766. }
  767. .btn-foot .menu-box .item image {
  768. width: 40rpx;
  769. height: 40rpx;
  770. margin-bottom: 10rpx;
  771. }
  772. .btn-foot .menu-box .item .label {
  773. font-size: 20rpx;
  774. font-weight: 500;
  775. color: #626468;
  776. text-align: center;
  777. }
  778. .btn-foot .btn-box {
  779. display: flex;
  780. align-items: center;
  781. }
  782. .btn-foot .btn-box .btn {
  783. width: 200rpx;
  784. height: 88rpx;
  785. line-height: 88rpx;
  786. text-align: center;
  787. border-radius: 44rpx;
  788. margin-left: 20rpx;
  789. font-size: 28rpx;
  790. font-weight: bold;
  791. color: #FFFFFF;
  792. }
  793. .btn-foot .btn-box .btn:first-child {
  794. margin-left: 0;
  795. }
  796. .btn-foot .btn-box .btn.cart {
  797. background: #FF5030;
  798. }
  799. .btn-foot .btn-box .btn.buy {
  800. background: #008FD3;
  801. }
  802. .product-spec {
  803. padding-bottom: 30rpx;
  804. }
  805. .product-spec .pro-info {
  806. display: flex;
  807. align-items: center;
  808. }
  809. .product-spec .pro-info .img-box {
  810. width: 200rpx;
  811. height: 200rpx;
  812. background: #FFFFFF;
  813. border-radius: 16rpx;
  814. overflow: hidden;
  815. margin-right: 30rpx;
  816. }
  817. .product-spec .pro-info .img-box image {
  818. width: 100%;
  819. height: 100%;
  820. }
  821. .product-spec .pro-info .info-text {
  822. height: 200rpx;
  823. display: flex;
  824. flex-direction: column;
  825. justify-content: space-between;
  826. }
  827. .product-spec .pro-info .info-text .info-title {
  828. font-family: PingFang SC;
  829. font-weight: 600;
  830. font-size: 28rpx;
  831. color: #222426;
  832. text-align: left;
  833. }
  834. .product-spec .pro-info .info-text .price {
  835. display: flex;
  836. align-items: flex-end;
  837. }
  838. .product-spec .pro-info .info-text .price .label {
  839. font-weight: 500;
  840. font-size: 24rpx;
  841. color: #FF5030;
  842. line-height: 1.3;
  843. margin-right: 10rpx;
  844. }
  845. .product-spec .pro-info .info-text .price .unit {
  846. font-size: 32rpx;
  847. font-weight: bold;
  848. color: #FF6633;
  849. line-height: 1.2;
  850. margin-right: 10rpx;
  851. }
  852. .product-spec .pro-info .info-text .price .num {
  853. font-size: 50rpx;
  854. font-weight: bold;
  855. color: #FF6633;
  856. line-height: 1;
  857. }
  858. .product-spec .pro-info .info-text .desc-box {
  859. display: flex;
  860. flex-direction: column;
  861. padding-bottom: 9rpx;
  862. }
  863. .product-spec .pro-info .info-text .desc-box .text {
  864. font-size: 26rpx;
  865. font-weight: 500;
  866. color: #999999;
  867. margin-top: 27rpx;
  868. line-height: 1;
  869. }
  870. .product-spec .pro-info .info-text .desc-box .text:first-child {
  871. margin-top: 0;
  872. }
  873. .product-spec .spec-box {
  874. padding-top: 50rpx;
  875. }
  876. .product-spec .spec-box .title {
  877. font-size: 26rpx;
  878. font-weight: bold;
  879. color: #111111;
  880. line-height: 1;
  881. }
  882. .product-spec .spec-box .spec-list {
  883. display: flex;
  884. flex-wrap: wrap;
  885. margin-top: 30rpx;
  886. }
  887. .product-spec .spec-box .spec-list .item {
  888. box-sizing: border-box;
  889. height: 64rpx;
  890. padding: 0 30rpx;
  891. line-height: 64rpx;
  892. font-size: 24rpx;
  893. font-weight: 500;
  894. color: #111111;
  895. background: #F7F7F7;
  896. border: 1px solid #F7F7F7;
  897. border-radius: 32rpx;
  898. margin-right: 20rpx;
  899. margin-bottom: 30rpx;
  900. }
  901. .product-spec .spec-box .spec-list .item.active {
  902. background: #F1FFFE;
  903. border: 1px solid #008FD3;
  904. color: #008FD3;
  905. }
  906. .product-spec .price-num {
  907. display: flex;
  908. align-items: center;
  909. justify-content: space-between;
  910. margin-top: 14rpx;
  911. }
  912. .product-spec .price-num .label {
  913. font-size: 26rpx;
  914. font-weight: bold;
  915. color: #111111;
  916. }
  917. .product-spec .sub-btn {
  918. width: 100%;
  919. height: 88rpx;
  920. line-height: 88rpx;
  921. text-align: center;
  922. font-size: 32rpx;
  923. font-weight: bold;
  924. color: #FFFFFF;
  925. background: #008FD3;
  926. border-radius: 44rpx;
  927. margin-top: 30rpx;
  928. }
  929. .contact-btn {
  930. display: inline-block;
  931. position: absolute;
  932. top: 0;
  933. left: 0;
  934. width: 100%;
  935. height: 100%;
  936. opacity: 0;
  937. z-index: 9999;
  938. }
  939. .loadding {
  940. background-color: #fff;
  941. display: flex;
  942. flex-direction: column;
  943. align-items: center;
  944. justify-content: center;
  945. position: absolute;
  946. top: 0;
  947. left: 0;
  948. width: 100%;
  949. height: 100%;
  950. z-index: 9999;
  951. }
  952. .loadding image {
  953. border-radius: 50%;
  954. animation: load linear 1s infinite;
  955. width: 120rpx;
  956. height: 120rpx;
  957. }
  958. .loadding .text {
  959. font-size: 28rpx;
  960. margin-top: 20rpx;
  961. }
  962. .form-item {
  963. padding: 30rpx 0;
  964. display: flex;
  965. align-items: flex-start;
  966. border-bottom: 1px solid #F1F1F1;
  967. }
  968. .form-item:last-child {
  969. border-bottom: none;
  970. }
  971. .form-item .label {
  972. width: 180rpx;
  973. text-align: left;
  974. font-size: 30rpx;
  975. line-height: 44rpx;
  976. font-weight: 500;
  977. color: #222222;
  978. flex-shrink: 0;
  979. }
  980. .form-item input {
  981. text-align: left;
  982. }
  983. .form-item .form-input {
  984. font-size: 30rpx;
  985. font-weight: 500;
  986. color: #999999;
  987. text-align: left;
  988. }
  989. .form-item .form-textarea {
  990. font-size: 30rpx;
  991. color: #999999;
  992. height: 100rpx;
  993. padding: 4rpx 0;
  994. }
  995. .form-item .birth-picker {
  996. flex: 1;
  997. display: flex;
  998. align-items: center;
  999. }
  1000. .form-item .birth-picker .right-box {
  1001. width: 100%;
  1002. display: flex;
  1003. align-items: center;
  1004. }
  1005. .form-item .birth-picker .right-box .input-box {
  1006. width: 470rpx;
  1007. }
  1008. .form-item .birth-picker .right-box .arrow {
  1009. width: 13rpx;
  1010. height: 23rpx;
  1011. margin-left: 20rpx;
  1012. }