orderBy.wxss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029
  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. width: 100%;
  419. display: flex;
  420. align-items: center;
  421. position: relative;
  422. }
  423. .newPeopleFrame {
  424. position: absolute;
  425. left: 0;
  426. top: 0;
  427. width: 240rpx;
  428. height: 240rpx;
  429. }
  430. .newPeoplePrice {
  431. width: 66rpx;
  432. height: 40rpx;
  433. position: absolute;
  434. left: 174rpx;
  435. top: 204rpx;
  436. font-size: 28rpx;
  437. color: #fff;
  438. text-align: center;
  439. line-height: 40rpx;
  440. }
  441. .v2-img {
  442. width: 240rpx;
  443. height: 240rpx;
  444. border-radius: 8rpx;
  445. }
  446. .v2-item-content {
  447. height: 240rpx;
  448. flex: 1;
  449. display: flex;
  450. flex-direction: column;
  451. margin-left: 20rpx;
  452. margin-right: 20rpx;
  453. }
  454. .v2-title {
  455. font-size: 28rpx;
  456. font-weight: 500;
  457. color: #292929;
  458. }
  459. .v2-desc {
  460. margin-top: 8rpx;
  461. display: flex;
  462. align-items: center;
  463. overflow: hidden;
  464. }
  465. .desc-item {
  466. padding-left: 10rpx;
  467. padding-right: 10rpx;
  468. height: 38rpx;
  469. line-height: 38rpx;
  470. margin-right: 24rpx;
  471. background: #F7F7F7;
  472. font-size: 24rpx;
  473. text-align: center;
  474. font-weight: 500;
  475. color: #666666;
  476. }
  477. .v2-price {
  478. flex: 1;
  479. display: flex;
  480. align-items: flex-end;
  481. }
  482. .v2-price1 {
  483. margin-top: 20rpx;
  484. margin-bottom: 50rpx;
  485. flex: 1;
  486. display: flex;
  487. }
  488. .v2-submit1 {
  489. /* margin-left: 40rpx; */
  490. margin-right: 20rpx;
  491. line-height: 50rpx;
  492. text-align: center;
  493. width: 140rpx;
  494. height: 50rpx;
  495. background: #FA7D22;
  496. border-radius: 25rpx;
  497. font-size: 24rpx;
  498. font-weight: 500;
  499. color: #FFFFFF;
  500. }
  501. .v2-price-money1 {
  502. flex: 1;
  503. font-size: 40rpx;
  504. font-weight: normal;
  505. color: #FA4622;
  506. }
  507. .v2-price-money1 text {
  508. font-size: 24rpx;
  509. color: #FA4622;
  510. }
  511. .v2-price-money {
  512. flex: 1;
  513. font-size: 40rpx;
  514. font-weight: normal;
  515. color: #FA4622;
  516. }
  517. .v2-price-money text {
  518. font-size: 24rpx;
  519. color: #FA4622;
  520. }
  521. .v2-price-money .originalPrice{
  522. font-size: 28rpx;
  523. text-decoration: line-through;
  524. color: #999999;
  525. }
  526. .v2-submit {
  527. line-height: 50rpx;
  528. text-align: center;
  529. width: 140rpx;
  530. height: 50rpx;
  531. background: #FA7D22;
  532. border-radius: 25rpx;
  533. font-size: 24rpx;
  534. font-weight: 500;
  535. color: #FFFFFF;
  536. }
  537. .buttom-car {
  538. width: 100%;
  539. position: fixed;
  540. height: 104rpx;
  541. display: flex;
  542. align-items: center;
  543. bottom: 0rpx;
  544. background: white;
  545. }
  546. .car-img {
  547. margin-left: 24rpx;
  548. position: relative;
  549. width: 68rpx;
  550. height: 68rpx;
  551. }
  552. .car-icon {
  553. width: 68rpx;
  554. height: 68rpx;
  555. }
  556. .top-view {
  557. font-size: 12rpx;
  558. top: 0rpx;
  559. right: -8rpx;
  560. position: absolute;
  561. width: 36rpx;
  562. height: 36rpx;
  563. border-radius: 45rpx;
  564. background: #FF4414;
  565. text-align: center;
  566. line-height: 36rpx;
  567. font-size: 24rpx;
  568. font-weight: 500;
  569. color: #FFFFFF;
  570. }
  571. .addPage {
  572. margin-top: 10rpx;
  573. font-size: 24rpx;
  574. font-weight: 400;
  575. color: #FFC630;
  576. }
  577. .car-money {
  578. text-align: left;
  579. margin-left: 40rpx;
  580. flex: 1;
  581. font-size: 40rpx;
  582. font-weight: normal;
  583. color: #FA4622;
  584. }
  585. .car-money text {
  586. font-size: 24rpx;
  587. color: #FA4622;
  588. }
  589. .to-submit {
  590. width: 200rpx;
  591. height: 80rpx;
  592. background: #FA7D22;
  593. border-radius: 40rpx;
  594. margin-right: 24rpx;
  595. font-size: 32rpx;
  596. text-align: center;
  597. line-height: 80rpx;
  598. font-weight: 500;
  599. color: #FFFFFF;
  600. }
  601. .coupon-popup {
  602. width: 100%;
  603. background: #F7F8FA;
  604. height: 60vh;
  605. position: relative;
  606. }
  607. .exchange-tip{
  608. bottom: 104rpx;
  609. position: fixed;
  610. height: 50rpx;
  611. width: 750rpx;
  612. background-color: #FFF6DF;
  613. color: #333333;
  614. font-size: 24rpx;
  615. line-height: 50rpx;
  616. }
  617. .exchange-tip text{
  618. color: #FF3007;
  619. font-size: 24rpx;
  620. }
  621. .payType {
  622. height: 62vh;
  623. }
  624. .select-product {
  625. /* margin-top: 30rpx; */
  626. margin-bottom: 38rpx;
  627. width: 702rpx;
  628. margin-left: 24rpx;
  629. display: flex;
  630. align-items: center;
  631. }
  632. .v2-select-image {
  633. border-radius: 12rpx;
  634. width: 200rpx;
  635. height: 200rpx;
  636. }
  637. .v2-select-content {
  638. margin-left: 20rpx;
  639. height: 200rpx;
  640. flex: 1;
  641. display: flex;
  642. flex-direction: column;
  643. }
  644. .v2-select-content-name {
  645. margin-top: 5rpx;
  646. display: flex;
  647. }
  648. .v2-select-content-names {
  649. flex: 1;
  650. text-align: left;
  651. font-size: 28rpx;
  652. font-weight: 500;
  653. color: #292929;
  654. }
  655. .close-img {
  656. margin-top: -10rpx;
  657. margin-left: 40rpx;
  658. width: 56rpx;
  659. height: 56rpx;
  660. }
  661. .flex1In {
  662. flex: 1;
  663. }
  664. .flex1In1 {
  665. width: 240rpx;
  666. }
  667. .v2-select-ontent-money {
  668. text-align: left;
  669. font-size: 40rpx;
  670. font-weight: normal;
  671. color: #FA4622;
  672. display: flex;
  673. align-items: center;
  674. flex: 1;
  675. align-items: flex-end;
  676. }
  677. .v2-select-ontent-money .v2-box{
  678. height: 56rpx;
  679. width:100%;
  680. font-family: PingFangSC-Medium, PingFang SC;
  681. }
  682. .v2-select-ontent-money text {
  683. color: #FA4622;
  684. font-size: 24rpx;
  685. }
  686. .v2-select-ontent-money .v2-box .price__big{
  687. font-size: 40rpx;
  688. }
  689. .v2-select-title {
  690. text-align: left;
  691. font-size: 28rpx;
  692. font-weight: 500;
  693. color: #151316;
  694. margin-left: 24rpx;
  695. margin-top: 40rpx;
  696. margin-bottom: 20rpx;
  697. }
  698. .bottom-select {
  699. width: 100%;
  700. height: 150rpx;
  701. }
  702. .submit_bottom {
  703. left: 40rpx;
  704. bottom: 30rpx;
  705. z-index: 111;
  706. position: fixed;
  707. text-align: center;
  708. line-height: 84rpx;
  709. width: 670rpx;
  710. height: 84rpx;
  711. background: #FA7D22;
  712. border-radius: 42rpx;
  713. font-size: 32rpx;
  714. font-weight: 500;
  715. color: #FFFFFF;
  716. }
  717. .showline {
  718. width: 100%;
  719. height: 30rpx;
  720. }
  721. .onSelectProduct {
  722. width: 216rpx;
  723. min-height: 296rpx;
  724. margin-top: 10rpx;
  725. margin-left: 20rpx;
  726. border-radius: 12rpx;
  727. border: 2rpx solid #FA7D22;
  728. background: #FFF0E6;
  729. }
  730. .v2-material {
  731. width: 746rpx;
  732. margin-left: 4rpx;
  733. display: flex;
  734. flex-wrap: wrap;
  735. align-items: flex-start;
  736. }
  737. .material-item {
  738. width: 216rpx;
  739. min-height: 296rpx;
  740. margin-top: 10rpx;
  741. border: 2rpx solid #ffffff;
  742. margin-left: 20rpx;
  743. border-radius: 12rpx;
  744. background: white;
  745. }
  746. .material-image {
  747. width: 220rpx;
  748. height: 220rpx;
  749. border-top-left-radius: 12rpx;
  750. border-top-right-radius: 12rpx;
  751. }
  752. .material-images {
  753. width: 216rpx;
  754. height: 220rpx;
  755. border-top-left-radius: 12rpx;
  756. border-top-right-radius: 12rpx;
  757. }
  758. .material-content {
  759. width: 100%;
  760. min-height: 80rpx;
  761. display: flex;
  762. align-items: center;
  763. }
  764. .material-name {
  765. margin-right: 10rpx;
  766. margin-left: 10rpx;
  767. font-size: 28rpx;
  768. font-weight: 400;
  769. color: #151316;
  770. text-align: left;
  771. /* white-space: nowrap;
  772. overflow: hidden;
  773. text-overflow: ellipsis; */
  774. }
  775. .material-price {
  776. margin-bottom: 15rpx;
  777. width: 100%;
  778. margin-left: 10rpx;
  779. text-align: left;
  780. margin-right: 16rpx;
  781. font-size: 26rpx;
  782. font-weight: normal;
  783. color: #FA4622;
  784. }
  785. .onSelectLine {
  786. width: 220rpx;
  787. height: 300rpx;
  788. margin-left: 20rpx;
  789. border-radius: 12rpx;
  790. background: white;
  791. }
  792. .onSelectName {
  793. color: #FA7D22;
  794. }
  795. .material-price text {
  796. font-size: 16rpx;
  797. font-weight: normal;
  798. color: #FA4622;
  799. }
  800. .popup-Title-Car {
  801. font-size: 36rpx;
  802. font-weight: 500;
  803. color: #333333;
  804. background: #F7F8FA;
  805. line-height: 120rpx;
  806. }
  807. .v2-select-content-desc {
  808. margin-top: 20rpx;
  809. font-size: 24rpx;
  810. font-weight: 400;
  811. color: #999999;
  812. text-align: left;
  813. margin-bottom: 20rpx;
  814. flex: 1;
  815. }
  816. .discShow {
  817. width: 100%;
  818. position: fixed;
  819. bottom: 101rpx;
  820. height: 60rpx;
  821. text-align: center;
  822. line-height: 60rpx;
  823. background: #FFF6DF;
  824. font-size: 24rpx;
  825. font-family: PingFangSC-Regular, PingFang SC;
  826. font-weight: 400;
  827. color: #333333;
  828. }
  829. .discShow text {
  830. color: #FA4622;
  831. font-size: 24rpx;
  832. font-family: PingFangSC-Regular, PingFang SC;
  833. font-weight: 400;
  834. }
  835. .shopping-sup {
  836. width: 100rpx;
  837. height: 100rpx;
  838. position: fixed;
  839. right: 38rpx;
  840. bottom: 212rpx;
  841. background: #FA7D22;
  842. border-radius: 50%;
  843. display: flex;
  844. justify-content: center;
  845. align-items: center;
  846. }
  847. .shopping-sup image {
  848. width: 56rpx;
  849. height: 56rpx;
  850. }
  851. .shopping-list-num {
  852. width: 46rpx;
  853. height: 46rpx;
  854. line-height: 46rpx;
  855. border-radius: 50%;
  856. position: absolute;
  857. top: 0;
  858. right: -12rpx;
  859. background: #FF4414;
  860. font-size: 24rpx;
  861. font-family: PingFangSC-Medium, PingFang SC;
  862. font-weight: 500;
  863. color: #FFFFFF;
  864. text-align: center;
  865. }
  866. .calculation {
  867. width: 100%;
  868. display: flex;
  869. justify-content: flex-end;
  870. font-size: 32rpx;
  871. color: #979797;
  872. }
  873. .lation-content {
  874. margin-top: 20rpx;
  875. margin-bottom: 6rpx;
  876. width: 104rpx;
  877. height: 38rpx;
  878. line-height: 38rpx;
  879. background: #F7F7F7;
  880. border-radius: 4px;
  881. text-align: center;
  882. border: 1px solid #F2F2F2;
  883. display: flex;
  884. }
  885. .lation-num{
  886. flex: 1;
  887. }
  888. .reduce,
  889. .lation-add {
  890. width: 28rpx;
  891. }