goods.wxss 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017
  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 .price b {
  527. font-size: 30rpx;
  528. line-height: 46rpx;
  529. margin-top: 14rpx;
  530. }
  531. .tech-pBox .item .num {
  532. font-size: 28rpx;
  533. font-weight: normal;
  534. color: #999;
  535. width: 200rpx;
  536. text-align: right;
  537. }
  538. .tech-pBox .item .name {
  539. max-width: 60%;
  540. margin-right: 10rpx;
  541. font-size: 28rpx;
  542. font-weight: normal;
  543. color: #333;
  544. text-align: left;
  545. overflow: hidden;
  546. white-space: nowrap;
  547. text-overflow: ellipsis;
  548. }
  549. .tech-pBox .item image {
  550. width: 100rpx;
  551. height: 100rpx;
  552. border-radius: 50%;
  553. margin-right: 30rpx;
  554. }
  555. .tech-pBox .item .tech-right {
  556. flex: 1;
  557. }
  558. .tech-pBox .item .tech-right-bottom {
  559. color: #898E91;
  560. font-size: 24rpx;
  561. }
  562. .tech-pBox .item .tech-right-top {
  563. display: flex;
  564. align-items: flex-end;
  565. margin-bottom: 10rpx;
  566. }
  567. .tech-pBox .item .tech-right-top .title-1 {
  568. font-size: 32rpx;
  569. color: #222426;
  570. margin-right: 14rpx;
  571. }
  572. .tech-pBox .item .tech-right-top .title-2 {
  573. font-weight: 400;
  574. font-size: 24rpx;
  575. color: #222426;
  576. }
  577. .tech-pBox .hover {
  578. border: 1rpx solid #008FD3;
  579. background: #F0FAFF;
  580. }
  581. .tech-pBox .shop-morebtn {
  582. margin-top: 14rpx;
  583. box-sizing: border-box;
  584. padding: 12rpx 30rpx;
  585. font-size: 28rpx;
  586. font-weight: 500;
  587. color: #111111;
  588. background: #F7F7F7;
  589. border-radius: 32rpx;
  590. text-align: center;
  591. }
  592. .tech-pBox .shop-morebtn text {
  593. color: #999;
  594. }
  595. .shop-pBox {
  596. box-sizing: border-box;
  597. padding: 0rpx 0rpx;
  598. background: #FFFFFF;
  599. font-size: 28rpx;
  600. font-family: PingFang SC;
  601. font-weight: 500;
  602. color: #666666;
  603. }
  604. .shop-pBox .item {
  605. border: 1px solid #fff;
  606. border-radius: 12rpx;
  607. padding: 18rpx 20rpx 24rpx;
  608. }
  609. .shop-pBox .item .price {
  610. font-size: 42rpx;
  611. font-weight: bold;
  612. color: #FF6633;
  613. display: flex;
  614. flex: 1;
  615. }
  616. .shop-pBox .item .price .strong {
  617. font-size: 30rpx;
  618. line-height: 46rpx;
  619. margin-top: 14rpx;
  620. }
  621. .shop-pBox .item .num {
  622. font-size: 28rpx;
  623. font-weight: normal;
  624. color: #999;
  625. width: 200rpx;
  626. text-align: right;
  627. }
  628. .shop-pBox .item .name {
  629. max-width: 60%;
  630. margin-right: 10rpx;
  631. font-size: 28rpx;
  632. font-weight: normal;
  633. color: #333;
  634. text-align: left;
  635. overflow: hidden;
  636. white-space: nowrap;
  637. text-overflow: ellipsis;
  638. }
  639. .shop-pBox .hover {
  640. border: 1rpx solid #FF6633;
  641. }
  642. .shop-pBox .shop-morebtn {
  643. margin-top: 14rpx;
  644. box-sizing: border-box;
  645. padding: 12rpx 30rpx;
  646. font-size: 28rpx;
  647. font-weight: 500;
  648. color: #111111;
  649. background: #F7F7F7;
  650. border-radius: 32rpx;
  651. text-align: center;
  652. }
  653. .shop-pBox .shop-morebtn text {
  654. color: #999;
  655. }
  656. .shop-pBox-name {
  657. display: flex;
  658. align-items: center;
  659. justify-content: flex-start;
  660. }
  661. .storepopup {
  662. padding: 40rpx 20rpx 20rpx 20rpx;
  663. }
  664. .storepopup .storepopup-title {
  665. text-align: center;
  666. margin-bottom: 30rpx;
  667. position: relative;
  668. }
  669. .storepopup .storepopup-title .close-icon {
  670. width: 40rpx;
  671. height: 40rpx;
  672. position: absolute;
  673. right: 0;
  674. top: 50%;
  675. transform: translate(0, -50%);
  676. }
  677. .storepopup .storepopup-box {
  678. height: 60vh;
  679. }
  680. .det-box {
  681. margin-top: 10rpx;
  682. background-color: #FFFFFF;
  683. padding: 24rpx;
  684. margin: 24rpx 24rpx 175rpx 24rpx;
  685. border-radius: 16rpx;
  686. }
  687. .det-box .title {
  688. font-size: 32rpx;
  689. font-weight: bold;
  690. color: #333333;
  691. line-height: 60rpx;
  692. margin-bottom: 30rpx;
  693. padding-bottom: 24rpx;
  694. border-bottom: 1px solid #ECECEC;
  695. }
  696. .det-box .det-title {
  697. display: flex;
  698. align-items: center;
  699. justify-content: space-between;
  700. }
  701. .det-box .det-title .tt {
  702. font-size: 28rpx;
  703. font-weight: bold;
  704. color: #222426;
  705. }
  706. .det-box .det-right {
  707. display: flex;
  708. font-size: 24rpx;
  709. color: #898E91;
  710. align-items: center;
  711. }
  712. .det-box .det-table {
  713. width: 100%;
  714. margin: 24rpx 0;
  715. background: #FFFFFF;
  716. border-radius: 16rpx 16rpx 16rpx 16rpx;
  717. border: 1rpx solid #ECECEC;
  718. overflow: hidden;
  719. font-size: 24rpx;
  720. }
  721. .det-box .det-table .row {
  722. display: table-row;
  723. }
  724. .det-box .det-table .row:last-child .cell-1,
  725. .det-box .det-table .row:last-child .cell-2 {
  726. border-bottom: 0;
  727. }
  728. .det-box .det-table .cell {
  729. display: table-cell;
  730. padding: 24rpx;
  731. }
  732. .det-box .det-table .cell.cell-1 {
  733. width: 30%;
  734. text-align: center;
  735. color: #626468;
  736. background: #F5F7FA;
  737. border-right: 1rpx solid #ECECEC;
  738. border-bottom: 1rpx solid #ECECEC;
  739. }
  740. .det-box .det-table .cell.cell-2 {
  741. color: #222426;
  742. text-align: center;
  743. border-bottom: 1rpx solid #ECECEC;
  744. }
  745. .btn-foot {
  746. box-sizing: border-box;
  747. width: 100%;
  748. height: 151rpx;
  749. background: #FFFFFF;
  750. padding: 0 24rpx;
  751. display: flex;
  752. align-items: center;
  753. justify-content: space-between;
  754. position: fixed;
  755. left: 0;
  756. bottom: 0;
  757. z-index: 99;
  758. }
  759. .btn-foot .menu-box {
  760. display: flex;
  761. align-items: center;
  762. }
  763. .btn-foot .menu-box .item {
  764. display: flex;
  765. align-items: center;
  766. flex-direction: column;
  767. margin-right: 48rpx;
  768. }
  769. .btn-foot .menu-box .item:last-child {
  770. margin-right: 0;
  771. }
  772. .btn-foot .menu-box .item image {
  773. width: 40rpx;
  774. height: 40rpx;
  775. margin-bottom: 10rpx;
  776. }
  777. .btn-foot .menu-box .item .label {
  778. font-size: 20rpx;
  779. font-weight: 500;
  780. color: #626468;
  781. text-align: center;
  782. }
  783. .btn-foot .btn-box {
  784. display: flex;
  785. align-items: center;
  786. }
  787. .btn-foot .btn-box .btn {
  788. width: 200rpx;
  789. height: 88rpx;
  790. line-height: 88rpx;
  791. text-align: center;
  792. border-radius: 44rpx;
  793. margin-left: 20rpx;
  794. font-size: 28rpx;
  795. font-weight: bold;
  796. color: #FFFFFF;
  797. }
  798. .btn-foot .btn-box .btn:first-child {
  799. margin-left: 0;
  800. }
  801. .btn-foot .btn-box .btn.cart {
  802. background: #FF5030;
  803. }
  804. .btn-foot .btn-box .btn.buy {
  805. background: #008FD3;
  806. }
  807. .product-spec {
  808. padding-bottom: 30rpx;
  809. }
  810. .product-spec .pro-info {
  811. display: flex;
  812. align-items: center;
  813. }
  814. .product-spec .pro-info .img-box {
  815. width: 200rpx;
  816. height: 200rpx;
  817. background: #FFFFFF;
  818. border-radius: 16rpx;
  819. overflow: hidden;
  820. margin-right: 30rpx;
  821. }
  822. .product-spec .pro-info .img-box image {
  823. width: 100%;
  824. height: 100%;
  825. }
  826. .product-spec .pro-info .info-text {
  827. height: 200rpx;
  828. display: flex;
  829. flex-direction: column;
  830. justify-content: space-between;
  831. }
  832. .product-spec .pro-info .info-text .info-title {
  833. font-family: PingFang SC;
  834. font-weight: 600;
  835. font-size: 28rpx;
  836. color: #222426;
  837. text-align: left;
  838. }
  839. .product-spec .pro-info .info-text .price {
  840. display: flex;
  841. align-items: flex-end;
  842. }
  843. .product-spec .pro-info .info-text .price .label {
  844. font-weight: 500;
  845. font-size: 24rpx;
  846. color: #FF5030;
  847. line-height: 1.3;
  848. margin-right: 10rpx;
  849. }
  850. .product-spec .pro-info .info-text .price .unit {
  851. font-size: 32rpx;
  852. font-weight: bold;
  853. color: #FF6633;
  854. line-height: 1.2;
  855. margin-right: 10rpx;
  856. }
  857. .product-spec .pro-info .info-text .price .num {
  858. font-size: 50rpx;
  859. font-weight: bold;
  860. color: #FF6633;
  861. line-height: 1;
  862. }
  863. .product-spec .pro-info .info-text .desc-box {
  864. display: flex;
  865. flex-direction: column;
  866. padding-bottom: 9rpx;
  867. }
  868. .product-spec .pro-info .info-text .desc-box .text {
  869. font-size: 26rpx;
  870. font-weight: 500;
  871. color: #999999;
  872. margin-top: 27rpx;
  873. line-height: 1;
  874. }
  875. .product-spec .pro-info .info-text .desc-box .text:first-child {
  876. margin-top: 0;
  877. }
  878. .product-spec .spec-box {
  879. padding-top: 50rpx;
  880. }
  881. .product-spec .spec-box .title {
  882. font-size: 26rpx;
  883. font-weight: bold;
  884. color: #111111;
  885. line-height: 1;
  886. }
  887. .product-spec .spec-box .spec-list {
  888. display: flex;
  889. flex-wrap: wrap;
  890. margin-top: 30rpx;
  891. }
  892. .product-spec .spec-box .spec-list .item {
  893. box-sizing: border-box;
  894. height: 64rpx;
  895. padding: 0 30rpx;
  896. line-height: 64rpx;
  897. font-size: 24rpx;
  898. font-weight: 500;
  899. color: #111111;
  900. background: #F7F7F7;
  901. border: 1px solid #F7F7F7;
  902. border-radius: 32rpx;
  903. margin-right: 20rpx;
  904. margin-bottom: 30rpx;
  905. }
  906. .product-spec .spec-box .spec-list .item.active {
  907. background: #F1FFFE;
  908. border: 1px solid #008FD3;
  909. color: #008FD3;
  910. }
  911. .product-spec .price-num {
  912. display: flex;
  913. align-items: center;
  914. justify-content: space-between;
  915. margin-top: 14rpx;
  916. }
  917. .product-spec .price-num .label {
  918. font-size: 26rpx;
  919. font-weight: bold;
  920. color: #111111;
  921. }
  922. .product-spec .sub-btn {
  923. width: 100%;
  924. height: 88rpx;
  925. line-height: 88rpx;
  926. text-align: center;
  927. font-size: 32rpx;
  928. font-weight: bold;
  929. color: #FFFFFF;
  930. background: #008FD3;
  931. border-radius: 44rpx;
  932. margin-top: 30rpx;
  933. }
  934. .contact-btn {
  935. display: inline-block;
  936. position: absolute;
  937. top: 0;
  938. left: 0;
  939. width: 100%;
  940. height: 100%;
  941. opacity: 0;
  942. z-index: 9999;
  943. }
  944. .loadding {
  945. background-color: #fff;
  946. display: flex;
  947. flex-direction: column;
  948. align-items: center;
  949. justify-content: center;
  950. position: absolute;
  951. top: 0;
  952. left: 0;
  953. width: 100%;
  954. height: 100%;
  955. z-index: 9999;
  956. }
  957. .loadding image {
  958. border-radius: 50%;
  959. animation: load linear 1s infinite;
  960. width: 120rpx;
  961. height: 120rpx;
  962. }
  963. .loadding .text {
  964. font-size: 28rpx;
  965. margin-top: 20rpx;
  966. }
  967. .form-item {
  968. padding: 30rpx 0;
  969. display: flex;
  970. align-items: flex-start;
  971. border-bottom: 1px solid #F1F1F1;
  972. }
  973. .form-item:last-child {
  974. border-bottom: none;
  975. }
  976. .form-item .label {
  977. width: 180rpx;
  978. text-align: left;
  979. font-size: 30rpx;
  980. line-height: 44rpx;
  981. font-weight: 500;
  982. color: #222222;
  983. flex-shrink: 0;
  984. }
  985. .form-item input {
  986. text-align: left;
  987. }
  988. .form-item .form-input {
  989. font-size: 30rpx;
  990. font-weight: 500;
  991. color: #999999;
  992. text-align: left;
  993. }
  994. .form-item .form-textarea {
  995. font-size: 30rpx;
  996. color: #999999;
  997. height: 100rpx;
  998. padding: 4rpx 0;
  999. }
  1000. .form-item .birth-picker {
  1001. flex: 1;
  1002. display: flex;
  1003. align-items: center;
  1004. }
  1005. .form-item .birth-picker .right-box {
  1006. width: 100%;
  1007. display: flex;
  1008. align-items: center;
  1009. }
  1010. .form-item .birth-picker .right-box .input-box {
  1011. width: 470rpx;
  1012. }
  1013. .form-item .birth-picker .right-box .arrow {
  1014. width: 13rpx;
  1015. height: 23rpx;
  1016. margin-left: 20rpx;
  1017. }