projectDetail.wxss 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. @import "/components/local/wxParse/wxParse.wxss";
  2. view {
  3. overflow: visible;
  4. }
  5. .vip-origin-price {
  6. margin-left: 20rpx;
  7. font-size: 28rpx;
  8. font-family: PingFangSC-Regular, PingFang SC;
  9. font-weight: 400;
  10. color: #999999;
  11. line-height: 40rpx;
  12. text-decoration: line-through;
  13. }
  14. rich-text .richImg {
  15. max-width: 100%;
  16. max-height: 100%;
  17. vertical-align: middle;
  18. height: auto !important;
  19. width: auto !important;
  20. }
  21. .swiper-box {
  22. position: relative;
  23. height: 750rpx;
  24. }
  25. .swiper-box swiper {
  26. width: 100%;
  27. height: 100%;
  28. }
  29. .swiper-box image {
  30. width: 100%;
  31. height: 100%;
  32. }
  33. /*用来包裹所有的小圆点 */
  34. .swiper-box .swiper-dots {
  35. position: absolute;
  36. width: 210rpx;
  37. height: 20rpx;
  38. display: flex;
  39. flex-direction: row;
  40. justify-content: center;
  41. left: 50%;
  42. transform: translateX(-50%);
  43. bottom: 16rpx;
  44. }
  45. /*未选中时的小圆点样式 */
  46. .swiper-dots .swiper-dot {
  47. width: 12rpx;
  48. height: 12rpx;
  49. background: #FA7D22;
  50. opacity: 0.2;
  51. margin-right: 8rpx;
  52. border-radius: 12rpx;
  53. }
  54. /*选中以后的小圆点样式 */
  55. .swiper-dots .swiper-dot-active {
  56. width: 24rpx;
  57. height: 12rpx;
  58. background: #FA7D22;
  59. border-radius: 6rpx;
  60. opacity: unset;
  61. }
  62. .project-desc {
  63. padding: 30rpx;
  64. border-radius: 24rpx;
  65. margin-bottom: 20rpx;
  66. background: #fff;
  67. }
  68. .project-desc .price {
  69. margin-bottom: 26rpx;
  70. }
  71. .project-desc .price .newPeoplePrice {
  72. height: 40rpx;
  73. background: #FA7D22;
  74. border-radius: 20rpx;
  75. line-height: 40rpx;
  76. padding: 0 12rpx;
  77. box-sizing: border-box;
  78. font-size: 24rpx;
  79. color: #fff;
  80. }
  81. .project-desc .price .newPeoplePrice text{
  82. font-size: 24rpx;
  83. color: #fff;
  84. }
  85. .project-desc .tags {
  86. margin-top: 16rpx;
  87. font-size: 24rpx;
  88. font-weight: 400;
  89. line-height: 34rpx;
  90. color: #999;
  91. flex-wrap: wrap;
  92. max-height: 68rpx;
  93. }
  94. .project-desc .tags .tags-item {
  95. display: inline;
  96. margin-right: 20rpx;
  97. }
  98. .project-change {
  99. border-radius: 24rpx;
  100. background-color: #fff;
  101. }
  102. .project-change .item {
  103. padding: 30rpx;
  104. /* margin: 20rpx 0; */
  105. /* border-top: 2rpx solid #FFEBF3; */
  106. /* background: #fff; */
  107. }
  108. .project-change .item image {
  109. width: 48rpx;
  110. height: 48rpx;
  111. margin-left: 12rpx;
  112. }
  113. .project-change .location .box {
  114. width: 58rpx;
  115. height: 34rpx;
  116. border: 2rpx solid #FA7D22;
  117. border-radius: 8rpx;
  118. font-size: 20rpx;
  119. color: #FA7D22;
  120. box-sizing: border-box;
  121. }
  122. .project-change .location .label {
  123. font-size: 28rpx;
  124. color: #999;
  125. font-family: PingFang-SC-Medium, PingFang-SC;
  126. font-weight: 500;
  127. }
  128. .project-change .location .text {
  129. font-size: 28rpx;
  130. color: #333;
  131. font-family: PingFang-SC-Medium, PingFang-SC;
  132. font-weight: 500;
  133. }
  134. .project-detail {
  135. background: #fff;
  136. }
  137. .project-detail .title {
  138. height: 98rpx;
  139. padding-left: 30rpx;
  140. background: #FFEBF3;
  141. }
  142. .project-detail .title .line {
  143. width: 6rpx;
  144. height: 28rpx;
  145. background: #FAA9CB;
  146. }
  147. .project-detail .detail {
  148. overflow: hidden;
  149. width: 100%;
  150. }
  151. .project-detail .detail image {
  152. width: 100% !important;
  153. }
  154. .buy {
  155. height: 170rpx;
  156. background: #fff;
  157. position: fixed;
  158. bottom: 0;
  159. width: 100%;
  160. /* box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5); */
  161. }
  162. .buy-btn {
  163. width: 670rpx;
  164. height: 88rpx;
  165. /* background: #FF6423; */
  166. background: #FA7D22;
  167. /* box-shadow: 0rpx 4rpx 10rpx 0rpx rgba(0, 0, 0, 0.5); */
  168. border-radius: 42rpx;
  169. font-family: PingFangSC-Semibold;
  170. color: #FFFFFF;
  171. }
  172. .popup .top {
  173. justify-content: space-between;
  174. padding: 0 48rpx;
  175. height: 112rpx;
  176. border-bottom: 2rpx solid #eee;
  177. }
  178. .popup .top text {
  179. font-size: 36rpx;
  180. }
  181. .device-popup .list {
  182. height: 606rpx;
  183. padding: 0 30rpx;
  184. /* overflow-y: scroll; */
  185. }
  186. .device-popup .list .item {
  187. padding: 40rpx 0;
  188. border-bottom: 2rpx solid #eee;
  189. }
  190. .device-popup .list .item.no-change {
  191. opacity: 0.5;
  192. }
  193. .device-popup .list .device-img {
  194. width: 176rpx;
  195. height: 176rpx;
  196. background-color: #eee;
  197. margin-right: 20rpx;
  198. }
  199. .device-popup .list .radio image {
  200. width: 48rpx;
  201. height: 48rpx;
  202. margin-left: 6rpx;
  203. }
  204. .vip-price {
  205. margin-left: 20rpx;
  206. background: #CAA470;
  207. border-radius: 8rpx;
  208. border: 2rpx solid #CAA470;
  209. padding-left: 8rpx;
  210. height: 28rpx;
  211. }
  212. .vip-price text {
  213. font-size: 20rpx;
  214. color: #fff;
  215. }
  216. .vip-price .price {
  217. background-color: #fff;
  218. border-radius: 0 6rpx 6rpx 0;
  219. color: #CAA470;
  220. padding: 0 8rpx;
  221. margin: 0;
  222. }
  223. /* =============================这里是选择项目的操作===================================== */
  224. .coupon-popup {
  225. width: 100%;
  226. background: #F7F8FA;
  227. height: 70vh;
  228. }
  229. .payType {
  230. height: 68vh;
  231. }
  232. .select-product {
  233. /* margin-top: 30rpx; */
  234. margin-bottom: 20rpx;
  235. width: 702rpx;
  236. margin-left: 24rpx;
  237. display: flex;
  238. align-items: center;
  239. }
  240. .v2-select-image {
  241. border-radius: 12rpx;
  242. width: 200rpx;
  243. height: 200rpx;
  244. }
  245. .v2-select-content {
  246. margin-left: 20rpx;
  247. height: 200rpx;
  248. flex: 1;
  249. display: flex;
  250. flex-direction: column;
  251. }
  252. .v2-select-content-name {
  253. margin-top: 5rpx;
  254. display: flex;
  255. }
  256. .v2-select-content-names {
  257. flex: 1;
  258. text-align: left;
  259. font-size: 28rpx;
  260. font-weight: 500;
  261. color: #292929;
  262. }
  263. .close-img {
  264. margin-top: -10rpx;
  265. width: 56rpx;
  266. height: 56rpx;
  267. }
  268. .flex1In {
  269. flex: 1;
  270. }
  271. .v2-select-ontent-money {
  272. text-align: left;
  273. font-size: 40rpx;
  274. font-weight: normal;
  275. color: #FA4622;
  276. }
  277. .v2-select-ontent-money text {
  278. color: #FA4622;
  279. font-size: 24rpx;
  280. }
  281. .v2-select-title {
  282. text-align: left;
  283. font-size: 28rpx;
  284. font-weight: 500;
  285. color: #151316;
  286. margin-left: 24rpx;
  287. margin-top: 40rpx;
  288. margin-bottom: 20rpx;
  289. }
  290. .bottom-select {
  291. width: 100%;
  292. height: 150rpx;
  293. }
  294. .submit_bottom {
  295. left: 40rpx;
  296. bottom: 30rpx;
  297. z-index: 111;
  298. position: fixed;
  299. text-align: center;
  300. line-height: 84rpx;
  301. width: 670rpx;
  302. height: 84rpx;
  303. background: #FA7D22;
  304. border-radius: 42rpx;
  305. font-size: 32rpx;
  306. font-weight: 500;
  307. color: #FFFFFF;
  308. }
  309. .showline {
  310. width: 100%;
  311. height: 30rpx;
  312. }
  313. .onSelectProduct {
  314. margin-top: 10rpx;
  315. width: 216rpx;
  316. min-height: 296rpx;
  317. margin-left: 20rpx;
  318. border-radius: 12rpx;
  319. border: 2rpx solid #FA7D22;
  320. background: #FFF0E6;
  321. }
  322. .v2-material {
  323. width: 746rpx;
  324. margin-left: 4rpx;
  325. display: flex;
  326. flex-wrap: wrap;
  327. align-items: flex-start;
  328. }
  329. .material-item {
  330. margin-top: 10rpx;
  331. width: 216rpx;
  332. min-height: 296rpx;
  333. border: 2rpx solid #ffffff;
  334. margin-left: 20rpx;
  335. border-radius: 12rpx;
  336. background: white;
  337. }
  338. .material-image {
  339. width: 220rpx;
  340. height: 220rpx;
  341. border-top-left-radius: 12rpx;
  342. border-top-right-radius: 12rpx;
  343. }
  344. .material-images {
  345. width: 216rpx;
  346. height: 220rpx;
  347. border-top-left-radius: 12rpx;
  348. border-top-right-radius: 12rpx;
  349. }
  350. .material-content {
  351. width: 100%;
  352. min-height: 80rpx;
  353. display: flex;
  354. align-items: center;
  355. }
  356. .material-name {
  357. margin-right: 10rpx;
  358. margin-left: 10rpx;
  359. font-size: 28rpx;
  360. font-weight: 400;
  361. color: #151316;
  362. text-align: left;
  363. /* white-space: nowrap;
  364. overflow: hidden;
  365. text-overflow: ellipsis; */
  366. }
  367. .material-price {
  368. margin-bottom: 15rpx;
  369. width: 100%;
  370. margin-left: 10rpx;
  371. text-align: left;
  372. margin-right: 16rpx;
  373. font-size: 26rpx;
  374. font-weight: normal;
  375. color: #FA4622;
  376. }
  377. .onSelectLine {
  378. width: 220rpx;
  379. height: 300rpx;
  380. margin-left: 20rpx;
  381. border-radius: 12rpx;
  382. background: white;
  383. }
  384. .onSelectName {
  385. color: #FA7D22;
  386. }
  387. .material-price text {
  388. font-size: 16rpx;
  389. font-weight: normal;
  390. color: #FA4622;
  391. }
  392. .popup-Title-Car {
  393. font-size: 36rpx;
  394. font-weight: 500;
  395. color: #333333;
  396. background: #F7F8FA;
  397. line-height: 120rpx;
  398. }
  399. .v2-select-content-desc {
  400. margin-top: 20rpx;
  401. font-size: 24rpx;
  402. font-weight: 400;
  403. color: #999999;
  404. text-align: left;
  405. margin-bottom: 20rpx;
  406. flex: 1;
  407. }
  408. .desc-item {
  409. padding-left: 10rpx;
  410. padding-right: 10rpx;
  411. height: 38rpx;
  412. line-height: 38rpx;
  413. margin-right: 24rpx;
  414. background: #F7F7F7;
  415. font-size: 24rpx;
  416. text-align: center;
  417. font-weight: 500;
  418. color: #666666;
  419. }
  420. .v2-desc {
  421. margin-top: 8rpx;
  422. display: flex;
  423. align-items: center;
  424. overflow: hidden;
  425. }
  426. .goods-btn {
  427. display: flex;
  428. width: 670rpx;
  429. height: 88rpx;
  430. border-radius: 42rpx;
  431. font-size: 16px;
  432. font-family: PingFangSC-Medium, PingFang SC;
  433. font-weight: 500;
  434. color: #FFFFFF;
  435. line-height: 88rpx;
  436. text-align: center;
  437. }
  438. .goods-btn .goods-shop {
  439. flex: 1;
  440. background: #FF9F58;
  441. border-radius: 21px 0px 0px 21px;
  442. }
  443. .goods-btn .goods-buy {
  444. flex: 1;
  445. background: #FA7D22;
  446. border-radius: 0px 21px 21px 0px;
  447. }
  448. .disabled {
  449. cursor: not-allowed;
  450. opacity: 0.5;
  451. }