orderBy.wxss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005
  1. page {
  2. background-color: #F7F8FA;
  3. }
  4. .tabs-wrap {
  5. z-index: 111;
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. height: 216rpx;
  10. width: 100%;
  11. padding: 20rpx 30rpx;
  12. box-sizing: border-box;
  13. background-color: #fff;
  14. }
  15. .tabs-wrap-not-item {
  16. height: 116rpx;
  17. }
  18. .insada {
  19. width: 100%;
  20. }
  21. .wrap-title {
  22. margin-bottom: 40rpx;
  23. }
  24. .wrap-list {
  25. width: 100%;
  26. white-space: nowrap;
  27. }
  28. .tabs-wrap .item-title {
  29. font-size: 28rpx;
  30. font-family: PingFangSC-Medium, PingFang SC;
  31. font-weight: 500;
  32. color: #999999;
  33. margin-right: 48rpx;
  34. padding-bottom: 20rpx;
  35. }
  36. .tabs-wrap .item-title.active {
  37. min-width: 140rpx;
  38. text-align: center;
  39. font-size: 36rpx;
  40. font-family: PingFangSC-Semibold, PingFang SC;
  41. font-weight: 600;
  42. color: #333333;
  43. position: relative;
  44. }
  45. .tabs-wrap .item-title.active::before {
  46. content: '';
  47. position: absolute;
  48. bottom: 0;
  49. left: 44rpx;
  50. width: 40rpx;
  51. height: 8rpx;
  52. background: linear-gradient(144deg, #FA7D22 0%, #FA4622 100%);
  53. border-radius: 4rpx;
  54. background-color: red;
  55. }
  56. .tabs-wrap .item-list {
  57. height: 66rpx;
  58. padding: 0 48rpx;
  59. background: #F5F5F6;
  60. border-radius: 33rpx;
  61. font-size: 24rpx;
  62. font-family: PingFangSC-Regular, PingFang SC;
  63. font-weight: 400;
  64. color: #666666;
  65. box-sizing: border-box;
  66. flex-shrink: 0;
  67. margin-right: 20rpx;
  68. display: inline-flex;
  69. }
  70. .tabs-wrap .item-list.active {
  71. background: #FFF0E6;
  72. border-radius: 33rpx;
  73. border: 2rpx solid #FA7D22;
  74. color: #FA7D22;
  75. }
  76. .tabs-content {
  77. margin-top: 236rpx;
  78. padding: 0 30rpx 60rpx;
  79. background-color: #fff;
  80. }
  81. .tabs-content .item {
  82. padding: 20rpx 0;
  83. background: #fff;
  84. }
  85. .tabs-content .item-image {
  86. width: 280rpx;
  87. height: 280rpx;
  88. background-color: #efefef;
  89. border-radius: 24rpx;
  90. margin-right: 20rpx;
  91. }
  92. .tabs-content .tags {
  93. flex-wrap: wrap;
  94. }
  95. .tabs-content .tags-item {
  96. margin-bottom: 4px;
  97. height: 38rpx;
  98. line-height: 38rpx;
  99. padding: 2rpx 4rpx;
  100. background: #F7F7F7;
  101. border-radius: 8rpx;
  102. font-size: 24rpx;
  103. font-family: PingFang-SC-Medium, PingFang-SC;
  104. font-weight: 500;
  105. color: #979797;
  106. display: inline;
  107. margin-right: 16rpx;
  108. }
  109. .tabs-content .tags-item:last-child {
  110. /* margin-right: 0; */
  111. }
  112. .tabs-content .vip-price {
  113. background: #CAA470;
  114. border-radius: 8rpx;
  115. border: 2rpx solid #CAA470;
  116. padding-left: 8rpx;
  117. /* display: inline-block; */
  118. height: 28rpx;
  119. /* box-sizing: border-box; */
  120. }
  121. .tabs-content .vip-price text {
  122. height: 28rpx;
  123. line-height: 28rpx;
  124. font-size: 20rpx;
  125. color: #fff;
  126. }
  127. .tabs-content .vip-price .price {
  128. background-color: #fff;
  129. border-radius: 0 6rpx 6rpx 0;
  130. color: #CAA470;
  131. padding: 0 8rpx;
  132. }
  133. .tabs-content .vip-origin-price {
  134. font-size: 28rpx;
  135. font-family: PingFangSC-Regular, PingFang SC;
  136. font-weight: 400;
  137. color: #999999;
  138. line-height: 40rpx;
  139. text-decoration: line-through;
  140. }
  141. .tabs-content .vip-origin-price text{
  142. font-size: 28rpx;
  143. font-family: PingFangSC-Regular, PingFang SC;
  144. font-weight: 400;
  145. color: #999999;
  146. line-height: 40rpx;
  147. text-decoration: line-through;
  148. }
  149. .tabs-content .btn-box image {
  150. width: 88rpx;
  151. height: 30rpx;
  152. margin-left: 16rpx;
  153. }
  154. .tabs-content .btn {
  155. width: 96rpx;
  156. height: 50rpx;
  157. background: #FA7D22;
  158. border-radius: 37rpx;
  159. font-size: 24rpx;
  160. font-family: PingFangSC-Medium, PingFang SC;
  161. font-weight: 500;
  162. color: #FFFFFF;
  163. }
  164. .selectInsRe {
  165. position: relative;
  166. }
  167. .selectIns {
  168. z-index: 111;
  169. }
  170. .tabs-content.active {
  171. padding: 0 20rpx 60rpx;
  172. background-color: #F7F8FA;
  173. }
  174. .content-item.active {
  175. display: grid;
  176. grid-gap: 20rpx 20rpx;
  177. /* padding: 0 20rpx 20rpx; */
  178. grid-template-columns: repeat(2, 1fr);
  179. grid-auto-flow: row;
  180. background-color: #F7F8FA;
  181. }
  182. .content-item.active .item {
  183. width: 344rpx;
  184. height: 608rpx;
  185. display: flex;
  186. flex-direction: column;
  187. border-radius: 24rpx;
  188. overflow: hidden;
  189. padding: 0;
  190. }
  191. .content-item.active .item-image {
  192. width: 344rpx;
  193. height: 344rpx;
  194. border-radius: 0;
  195. }
  196. .content-item.active .item-text {
  197. padding: 0 24rpx;
  198. }
  199. .tabs-content .item-text .content-item-title {
  200. font-size: 32rpx;
  201. font-family: PingFangSC-Medium, PingFang SC;
  202. font-weight: 500;
  203. color: #333333;
  204. overflow: hidden;
  205. text-overflow: ellipsis;
  206. display: -webkit-box;
  207. -webkit-line-clamp: 2;
  208. -webkit-box-orient: vertical;
  209. }
  210. .list_first_to {
  211. z-index: 110;
  212. top: 0rpx;
  213. position: fixed;
  214. width: 100%;
  215. height: 100%;
  216. background: rgba(0, 0, 0, 0.7);
  217. }
  218. .insellShow {
  219. width: 390rpx;
  220. }
  221. .insellShow2 {
  222. width: 300rpx;
  223. }
  224. .list_top_show {
  225. width: 100%;
  226. display: flex;
  227. align-items: center;
  228. flex-direction: column;
  229. margin-top: 230rpx;
  230. }
  231. .list_top_img {
  232. width: 40rpx;
  233. height: 40rpx;
  234. }
  235. .list_top_content {
  236. padding-top: 15rpx;
  237. margin-top: 30rpx;
  238. width: 428rpx;
  239. height: 102rpx;
  240. background: rgba(0, 0, 0, 0.3);
  241. border: 2rpx dashed #FFFFFF;
  242. }
  243. .first_and_title {
  244. width: 100%;
  245. line-height: 44rpx;
  246. text-align: center;
  247. font-size: 28rpx;
  248. font-weight: 500;
  249. color: #FFFFFF;
  250. }
  251. .first_and_title text {
  252. font-size: 32rpx;
  253. color: #FFFFFF;
  254. }
  255. .KnowBtn {
  256. margin-left: 271rpx;
  257. text-align: center;
  258. width: 208rpx;
  259. height: 76rpx;
  260. border-radius: 42rpx;
  261. border: 2rpx solid #FFFFFF;
  262. font-size: 32rpx;
  263. font-weight: 400;
  264. color: #FFFFFF;
  265. line-height: 76rpx;
  266. position: absolute;
  267. bottom: 60rpx;
  268. }
  269. /* <view class="list_top_show">
  270. <image class="list_top_img" src="/images/white_on.png"></image>
  271. <view class="list_top_content">
  272. <view class="first_and_title"><text>第一步</text>项目导航栏</view>
  273. <view class="first_and_title">可左右滑动快速筛选项目哟~</view>
  274. </view>
  275. </view> */
  276. .onIndex {
  277. position: relative;
  278. z-index: 111;
  279. }
  280. .ondistShow {
  281. display: flex;
  282. align-items: center;
  283. position: fixed;
  284. z-index: 111;
  285. right: 150rpx;
  286. }
  287. .list_right_content {
  288. width: 276rpx;
  289. padding-top: 15rpx;
  290. height: 102rpx;
  291. border: 2rpx dashed #FFFFFF;
  292. background: rgba(0, 0, 0, 0.3);
  293. bottom: 200rpx;
  294. }
  295. .list_right_img {
  296. width: 40rpx;
  297. height: 40rpx;
  298. }
  299. /* <view class="ondistShow">
  300. <view class="list_right_content">
  301. <view class="first_and_title"><text>第二步</text>选择你</view>
  302. <view class="first_and_title">心仪的项目下单</view>
  303. </view>
  304. <image class="list_right_img" src="/images/white_right.png"></image> */
  305. .navbar-box {
  306. width: 100%;
  307. /* height: 100%; */
  308. position: fixed;
  309. top: 0;
  310. left: 0;
  311. background: #ffffff;
  312. z-index: 11;
  313. }
  314. .navbar-box-container {
  315. box-sizing: border-box;
  316. position: absolute;
  317. display: flex;
  318. align-items: center;
  319. z-index: 999;
  320. }
  321. .navbar-box-container .navbar-location {
  322. width: 48rpx;
  323. height: 48rpx;
  324. margin-left: 20rpx;
  325. }
  326. .navbar-box-container .navbar-tips {
  327. color: #000000;
  328. }
  329. .navbar-box-container .navbar-arrow {
  330. width: 40rpx;
  331. height: 40rpx;
  332. }
  333. .navbar-bg-white {
  334. background: #FA7D22;
  335. }
  336. .opct {
  337. opacity: 0;
  338. }
  339. /* listKer todo - project -select */
  340. .new-v2-content-out {
  341. position: absolute;
  342. width: 100%;
  343. top: 96rpx;
  344. bottom: 0rpx;
  345. background-color: #fff;
  346. }
  347. .new-v2-content {
  348. display: flex;
  349. width: 100%;
  350. background-color: #fff;
  351. overflow: hidden;
  352. }
  353. .new-v2-content .v2-left {
  354. top: 166rpx;
  355. position: absolute;
  356. width: 160rpx;
  357. bottom: 0rpx;
  358. background: #F7F8FA;
  359. }
  360. .new-v2-content .v2-left .v2-left-item {
  361. width: 160rpx;
  362. height: 132rpx;
  363. background: #F7F8FA;
  364. display: flex;
  365. align-items: center;
  366. justify-content: center;
  367. text-align: center;
  368. /* line-height: 132rpx; */
  369. font-size: 26rpx;
  370. font-weight: 400;
  371. color: #666666;
  372. }
  373. .new-v2-left-color {
  374. width: 160rpx;
  375. display: flex;
  376. align-items: center;
  377. justify-content: center;
  378. height: 132rpx;
  379. text-align: center;
  380. /* line-height: 132rpx; */
  381. font-weight: 400;
  382. font-size: 28rpx;
  383. color: #292929;
  384. background: white;
  385. }
  386. .new-v2-content .v2-right {
  387. top: 166rpx;
  388. position: absolute;
  389. width: 590rpx;
  390. right: 0rpx;
  391. bottom: 0rpx;
  392. }
  393. .v2-right-item {
  394. margin-left: 20rpx;
  395. }
  396. .title-rt {
  397. line-height: 40rpx;
  398. margin-bottom: 20rpx;
  399. width: 100%;
  400. font-size: 26rpx;
  401. font-weight: 400;
  402. color: #343434;
  403. }
  404. .title-rt1 {
  405. line-height: 40rpx;
  406. margin-bottom: 20rpx;
  407. width: 100%;
  408. font-size: 28rpx;
  409. font-weight: 500;
  410. color: #222222;
  411. }
  412. .speach-top-spc {
  413. width: 100%;
  414. height: 20rpx;
  415. }
  416. .v2-right-product-item {
  417. margin-bottom: 40rpx;
  418. /* margin-top: 20rpx; */
  419. width: 100%;
  420. display: flex;
  421. align-items: center;
  422. }
  423. .v2-img {
  424. width: 240rpx;
  425. height: 240rpx;
  426. border-radius: 8rpx;
  427. }
  428. .v2-item-content {
  429. height: 240rpx;
  430. flex: 1;
  431. display: flex;
  432. flex-direction: column;
  433. margin-left: 20rpx;
  434. margin-right: 20rpx;
  435. }
  436. .v2-title {
  437. font-size: 28rpx;
  438. font-weight: 500;
  439. color: #292929;
  440. }
  441. .v2-desc {
  442. margin-top: 8rpx;
  443. display: flex;
  444. align-items: center;
  445. overflow: hidden;
  446. }
  447. .desc-item {
  448. padding-left: 10rpx;
  449. padding-right: 10rpx;
  450. height: 38rpx;
  451. line-height: 38rpx;
  452. margin-right: 24rpx;
  453. background: #F7F7F7;
  454. font-size: 24rpx;
  455. text-align: center;
  456. font-weight: 500;
  457. color: #666666;
  458. }
  459. .v2-price {
  460. flex: 1;
  461. display: flex;
  462. align-items: flex-end;
  463. }
  464. .v2-price1 {
  465. margin-top: 20rpx;
  466. margin-bottom: 50rpx;
  467. flex: 1;
  468. display: flex;
  469. }
  470. .v2-submit1 {
  471. /* margin-left: 40rpx; */
  472. margin-right: 20rpx;
  473. line-height: 50rpx;
  474. text-align: center;
  475. width: 140rpx;
  476. height: 50rpx;
  477. background: #FA7D22;
  478. border-radius: 25rpx;
  479. font-size: 24rpx;
  480. font-weight: 500;
  481. color: #FFFFFF;
  482. }
  483. .v2-price-money1 {
  484. flex: 1;
  485. font-size: 40rpx;
  486. font-weight: normal;
  487. color: #FA4622;
  488. }
  489. .v2-price-money1 text {
  490. font-size: 24rpx;
  491. color: #FA4622;
  492. }
  493. .v2-price-money {
  494. flex: 1;
  495. font-size: 40rpx;
  496. font-weight: normal;
  497. color: #FA4622;
  498. }
  499. .v2-price-money text {
  500. font-size: 24rpx;
  501. color: #FA4622;
  502. }
  503. .v2-submit {
  504. line-height: 50rpx;
  505. text-align: center;
  506. width: 140rpx;
  507. height: 50rpx;
  508. background: #FA7D22;
  509. border-radius: 25rpx;
  510. font-size: 24rpx;
  511. font-weight: 500;
  512. color: #FFFFFF;
  513. }
  514. .buttom-car {
  515. width: 100%;
  516. position: fixed;
  517. height: 104rpx;
  518. display: flex;
  519. align-items: center;
  520. bottom: 0rpx;
  521. background: white;
  522. }
  523. .car-img {
  524. margin-left: 24rpx;
  525. position: relative;
  526. width: 68rpx;
  527. height: 68rpx;
  528. }
  529. .car-icon {
  530. width: 68rpx;
  531. height: 68rpx;
  532. }
  533. .top-view {
  534. font-size: 12rpx;
  535. top: 0rpx;
  536. right: -8rpx;
  537. position: absolute;
  538. width: 36rpx;
  539. height: 36rpx;
  540. border-radius: 45rpx;
  541. background: #FF4414;
  542. text-align: center;
  543. line-height: 36rpx;
  544. font-size: 24rpx;
  545. font-weight: 500;
  546. color: #FFFFFF;
  547. }
  548. .addPage {
  549. margin-top: 10rpx;
  550. font-size: 24rpx;
  551. font-weight: 400;
  552. color: #FFC630;
  553. }
  554. .car-money {
  555. text-align: left;
  556. margin-left: 40rpx;
  557. flex: 1;
  558. font-size: 40rpx;
  559. font-weight: normal;
  560. color: #FA4622;
  561. }
  562. .car-money text {
  563. font-size: 24rpx;
  564. color: #FA4622;
  565. }
  566. .to-submit {
  567. width: 200rpx;
  568. height: 80rpx;
  569. background: #FA7D22;
  570. border-radius: 40rpx;
  571. margin-right: 24rpx;
  572. font-size: 32rpx;
  573. text-align: center;
  574. line-height: 80rpx;
  575. font-weight: 500;
  576. color: #FFFFFF;
  577. }
  578. .coupon-popup {
  579. width: 100%;
  580. background: #F7F8FA;
  581. height: 60vh;
  582. position: relative;
  583. }
  584. .exchange-tip{
  585. bottom: 104rpx;
  586. position: fixed;
  587. height: 50rpx;
  588. width: 750rpx;
  589. background-color: #FFF6DF;
  590. color: #333333;
  591. font-size: 24rpx;
  592. line-height: 50rpx;
  593. }
  594. .exchange-tip text{
  595. color: #FF3007;
  596. font-size: 24rpx;
  597. }
  598. .payType {
  599. height: 62vh;
  600. }
  601. .select-product {
  602. /* margin-top: 30rpx; */
  603. margin-bottom: 38rpx;
  604. width: 702rpx;
  605. margin-left: 24rpx;
  606. display: flex;
  607. align-items: center;
  608. }
  609. .v2-select-image {
  610. border-radius: 12rpx;
  611. width: 200rpx;
  612. height: 200rpx;
  613. }
  614. .v2-select-content {
  615. margin-left: 20rpx;
  616. height: 200rpx;
  617. flex: 1;
  618. display: flex;
  619. flex-direction: column;
  620. }
  621. .v2-select-content-name {
  622. margin-top: 5rpx;
  623. display: flex;
  624. }
  625. .v2-select-content-names {
  626. flex: 1;
  627. text-align: left;
  628. font-size: 28rpx;
  629. font-weight: 500;
  630. color: #292929;
  631. }
  632. .close-img {
  633. margin-top: -10rpx;
  634. margin-left: 40rpx;
  635. width: 56rpx;
  636. height: 56rpx;
  637. }
  638. .flex1In {
  639. flex: 1;
  640. }
  641. .flex1In1 {
  642. width: 240rpx;
  643. }
  644. .v2-select-ontent-money {
  645. text-align: left;
  646. font-size: 40rpx;
  647. font-weight: normal;
  648. color: #FA4622;
  649. display: flex;
  650. align-items: center;
  651. flex: 1;
  652. align-items: flex-end;
  653. }
  654. .v2-select-ontent-money .v2-box{
  655. height: 56rpx;
  656. width:100%;
  657. font-family: PingFangSC-Medium, PingFang SC;
  658. }
  659. .v2-select-ontent-money text {
  660. color: #FA4622;
  661. font-size: 24rpx;
  662. }
  663. .v2-select-ontent-money .v2-box .price__big{
  664. font-size: 40rpx;
  665. }
  666. .v2-select-title {
  667. text-align: left;
  668. font-size: 28rpx;
  669. font-weight: 500;
  670. color: #151316;
  671. margin-left: 24rpx;
  672. margin-top: 40rpx;
  673. margin-bottom: 20rpx;
  674. }
  675. .bottom-select {
  676. width: 100%;
  677. height: 150rpx;
  678. }
  679. .submit_bottom {
  680. left: 40rpx;
  681. bottom: 30rpx;
  682. z-index: 111;
  683. position: fixed;
  684. text-align: center;
  685. line-height: 84rpx;
  686. width: 670rpx;
  687. height: 84rpx;
  688. background: #FA7D22;
  689. border-radius: 42rpx;
  690. font-size: 32rpx;
  691. font-weight: 500;
  692. color: #FFFFFF;
  693. }
  694. .showline {
  695. width: 100%;
  696. height: 30rpx;
  697. }
  698. .onSelectProduct {
  699. width: 216rpx;
  700. min-height: 296rpx;
  701. margin-top: 10rpx;
  702. margin-left: 20rpx;
  703. border-radius: 12rpx;
  704. border: 2rpx solid #FA7D22;
  705. background: #FFF0E6;
  706. }
  707. .v2-material {
  708. width: 746rpx;
  709. margin-left: 4rpx;
  710. display: flex;
  711. flex-wrap: wrap;
  712. align-items: flex-start;
  713. }
  714. .material-item {
  715. width: 216rpx;
  716. min-height: 296rpx;
  717. margin-top: 10rpx;
  718. border: 2rpx solid #ffffff;
  719. margin-left: 20rpx;
  720. border-radius: 12rpx;
  721. background: white;
  722. }
  723. .material-image {
  724. width: 220rpx;
  725. height: 220rpx;
  726. border-top-left-radius: 12rpx;
  727. border-top-right-radius: 12rpx;
  728. }
  729. .material-images {
  730. width: 216rpx;
  731. height: 220rpx;
  732. border-top-left-radius: 12rpx;
  733. border-top-right-radius: 12rpx;
  734. }
  735. .material-content {
  736. width: 100%;
  737. min-height: 80rpx;
  738. display: flex;
  739. align-items: center;
  740. }
  741. .material-name {
  742. margin-right: 10rpx;
  743. margin-left: 10rpx;
  744. font-size: 28rpx;
  745. font-weight: 400;
  746. color: #151316;
  747. text-align: left;
  748. /* white-space: nowrap;
  749. overflow: hidden;
  750. text-overflow: ellipsis; */
  751. }
  752. .material-price {
  753. margin-bottom: 15rpx;
  754. width: 100%;
  755. margin-left: 10rpx;
  756. text-align: left;
  757. margin-right: 16rpx;
  758. font-size: 26rpx;
  759. font-weight: normal;
  760. color: #FA4622;
  761. }
  762. .onSelectLine {
  763. width: 220rpx;
  764. height: 300rpx;
  765. margin-left: 20rpx;
  766. border-radius: 12rpx;
  767. background: white;
  768. }
  769. .onSelectName {
  770. color: #FA7D22;
  771. }
  772. .material-price text {
  773. font-size: 16rpx;
  774. font-weight: normal;
  775. color: #FA4622;
  776. }
  777. .popup-Title-Car {
  778. font-size: 36rpx;
  779. font-weight: 500;
  780. color: #333333;
  781. background: #F7F8FA;
  782. line-height: 120rpx;
  783. }
  784. .v2-select-content-desc {
  785. margin-top: 20rpx;
  786. font-size: 24rpx;
  787. font-weight: 400;
  788. color: #999999;
  789. text-align: left;
  790. margin-bottom: 20rpx;
  791. flex: 1;
  792. }
  793. .discShow {
  794. width: 100%;
  795. position: fixed;
  796. bottom: 101rpx;
  797. height: 60rpx;
  798. text-align: center;
  799. line-height: 60rpx;
  800. background: #FFF6DF;
  801. font-size: 24rpx;
  802. font-family: PingFangSC-Regular, PingFang SC;
  803. font-weight: 400;
  804. color: #333333;
  805. }
  806. .discShow text {
  807. color: #FA4622;
  808. font-size: 24rpx;
  809. font-family: PingFangSC-Regular, PingFang SC;
  810. font-weight: 400;
  811. }
  812. .shopping-sup {
  813. width: 100rpx;
  814. height: 100rpx;
  815. position: fixed;
  816. right: 38rpx;
  817. bottom: 212rpx;
  818. background: #FA7D22;
  819. border-radius: 50%;
  820. display: flex;
  821. justify-content: center;
  822. align-items: center;
  823. }
  824. .shopping-sup image {
  825. width: 56rpx;
  826. height: 56rpx;
  827. }
  828. .shopping-list-num {
  829. width: 46rpx;
  830. height: 46rpx;
  831. line-height: 46rpx;
  832. border-radius: 50%;
  833. position: absolute;
  834. top: 0;
  835. right: -12rpx;
  836. background: #FF4414;
  837. font-size: 24rpx;
  838. font-family: PingFangSC-Medium, PingFang SC;
  839. font-weight: 500;
  840. color: #FFFFFF;
  841. text-align: center;
  842. }
  843. .calculation {
  844. width: 100%;
  845. display: flex;
  846. justify-content: flex-end;
  847. font-size: 32rpx;
  848. color: #979797;
  849. }
  850. .lation-content {
  851. margin-top: 20rpx;
  852. margin-bottom: 6rpx;
  853. width: 104rpx;
  854. height: 38rpx;
  855. line-height: 38rpx;
  856. background: #F7F7F7;
  857. border-radius: 4px;
  858. text-align: center;
  859. border: 1px solid #F2F2F2;
  860. display: flex;
  861. }
  862. .lation-num{
  863. flex: 1;
  864. }
  865. .reduce,
  866. .lation-add {
  867. width: 28rpx;
  868. }