index.less 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. /**index.less**/
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background: #F5F6F7;
  7. }
  8. .scrollarea {
  9. flex: 1;
  10. overflow-y: hidden;
  11. }
  12. .container {
  13. position: relative;
  14. .topShadow {
  15. position: absolute;
  16. top: 0;
  17. z-index: 1;
  18. width: 100%;
  19. height: 200rpx;
  20. background: linear-gradient( 180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  21. }
  22. .slider-count {
  23. position: absolute;
  24. top: 678rpx;
  25. right: 0;
  26. background: rgba(0,0,0,0.4);
  27. border-radius: 200rpx 0rpx 0rpx 200rpx;
  28. font-weight: 600;
  29. font-size: 28rpx;
  30. color: #FFFFFF;
  31. line-height: 40rpx;
  32. text-align: center;
  33. padding: 4rpx 20rpx 4rpx 28rpx ;
  34. z-index: 1;
  35. }
  36. swiper {
  37. height: 750rpx;
  38. }
  39. .swiper-item {
  40. width: 100%;
  41. height: 100%;
  42. image {
  43. width: 100%;
  44. height: 100%;
  45. }
  46. }
  47. .demo-text-1 {
  48. background-color: red;
  49. }
  50. .demo-text-2 {
  51. background-color: black;
  52. }
  53. .demo-text-3 {
  54. background-color: gray;
  55. }
  56. }
  57. .shop-section {
  58. background: #FFFFFF;
  59. // border-radius: 20rpx;
  60. // margin: 16rpx 16rpx 0;
  61. padding: 32rpx 32rpx 40rpx;
  62. .showPrice {
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. }
  67. .left {
  68. flex: 1 auto;
  69. display: flex;
  70. align-items: flex-end;
  71. }
  72. .currentPrice {
  73. font-weight: bold;
  74. color: #FF5000;
  75. font-family: DINAlternate, DINAlternate;
  76. .stuff {
  77. font-size: 36rpx;
  78. }
  79. .priceZ {
  80. font-size: 60rpx;
  81. }
  82. .priceF {
  83. font-size: 36rpx;
  84. }
  85. }
  86. .originPrice {
  87. padding-left: 16rpx;
  88. font-size: 32rpx;
  89. color: #AAAAAA;
  90. line-height: 44rpx;
  91. text-decoration: line-through;
  92. padding-bottom: 12rpx;
  93. }
  94. .right {
  95. padding-top: 14rpx;
  96. font-weight: 400;
  97. font-size: 28rpx;
  98. color: #FF5000;
  99. line-height: 40rpx;
  100. }
  101. }
  102. .shopName {
  103. font-weight: 600;
  104. font-size: 32rpx;
  105. color: #131415;
  106. line-height: 44rpx;
  107. padding: 24rpx 0 10rpx;
  108. }
  109. .goodsInfo {
  110. display: flex;
  111. // align-items: center;
  112. .desc {
  113. font-size: 28rpx;
  114. color: #131415;
  115. line-height: 68rpx;
  116. margin: 24rpx 0;
  117. flex-shrink: 0;
  118. }
  119. .goodsList {
  120. display: flex;
  121. align-items: center;
  122. flex-wrap: nowrap;
  123. overflow-x: auto;
  124. overflow-y: hidden;
  125. &::-webkit-scrollbar {
  126. display: none;
  127. }
  128. }
  129. .goodsItem {
  130. line-height: 68rpx;
  131. background: #F6F5F5;
  132. border-radius: 8rpx;
  133. font-size: 28rpx;
  134. color: #131415;
  135. position: relative;
  136. margin-top: 30rpx;
  137. margin-right: 30rpx;
  138. display: flex;
  139. flex-direction: column;
  140. border: 2rpx solid #F4F4F4;
  141. &.selected {
  142. background: #FFEEE6;
  143. color: #FF5000;
  144. border: 3rpx solid #FF5000;
  145. border-radius: 12rpx;
  146. }
  147. &.nosale {
  148. background: #F6F5F5;
  149. color: #B3B3B3;
  150. .goods-cover, .name {
  151. opacity: 0.6;
  152. }
  153. }
  154. .name {
  155. padding-left: 8rpx;
  156. }
  157. .goods-cover {
  158. width: 124rpx;
  159. height: 124rpx;
  160. border-radius: 8rpx 8rpx 0 0;
  161. }
  162. .iconSale {
  163. position: absolute;
  164. top: -14rpx;
  165. right: -14rpx;
  166. width: 56rpx;
  167. height: 28rpx;
  168. display: block;
  169. z-index: 1;
  170. }
  171. }
  172. }
  173. .goodsSection {
  174. // margin-bottom: 156rpx;
  175. padding-bottom: 160rpx;
  176. }
  177. .goodsIntro {
  178. background: #FFFFFF;
  179. // border-radius: 20rpx;
  180. overflow: hidden;
  181. margin: 16rpx 0 0;
  182. .title {
  183. font-weight: 600;
  184. font-size: 32rpx;
  185. color: #131415;
  186. line-height: 44rpx;
  187. padding: 28rpx 24rpx;
  188. display: flex;
  189. align-items: center;
  190. justify-content: center;
  191. .before, .after {
  192. content: '';
  193. width: 68rpx;
  194. height: 2rpx;
  195. border-radius: 2rpx;
  196. opacity: 0.3;
  197. display: inline-block;
  198. }
  199. .before {
  200. background: linear-gradient( 90deg, rgba(0,0,0,0) 0%, #000000 100%);
  201. margin-right: 24rpx;
  202. }
  203. .after {
  204. background: linear-gradient( 270deg, rgba(0,0,0,0) 0%, #000000 100%);
  205. margin-left: 24rpx;
  206. }
  207. }
  208. .quick-btn {
  209. padding: 0 20rpx 30rpx;
  210. font-size: 28rpx;
  211. color: #999999;
  212. line-height: 40rpx;
  213. display: flex;
  214. view {
  215. padding: 8rpx 24rpx;
  216. margin-right: 12rpx;
  217. }
  218. .active {
  219. background: #FFDF9E;
  220. border-radius: 28rpx;
  221. font-weight: 600;
  222. color: #131415;
  223. }
  224. }
  225. .images {
  226. image {
  227. display: block;
  228. width: 100%;
  229. }
  230. .img1 {
  231. height: 1128rpx;
  232. }
  233. .img2 {
  234. height: 1462rpx
  235. }
  236. .img3 {
  237. height: 2126rpx;
  238. }
  239. .img4 {
  240. height: 968rpx;
  241. }
  242. }
  243. }
  244. .orders {
  245. display: flex;
  246. flex-direction: column;
  247. position: fixed;
  248. right: 12rpx;
  249. bottom: 202rpx;
  250. image {
  251. width: 112rpx;
  252. height: 118rpx;
  253. }
  254. // text {
  255. // font-weight: 500;
  256. // font-size: 22rpx;
  257. // color: #131415;
  258. // line-height: 32rpx;
  259. // text-align: center;
  260. // }
  261. }
  262. .bottom-section {
  263. position: fixed;
  264. bottom: 0;
  265. left: 0;
  266. width: 100%;
  267. background-color: #FFFFFF;
  268. box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
  269. padding: 20rpx 32rpx 58rpx 32rpx;
  270. display: flex;
  271. align-items: center;
  272. box-sizing: border-box;
  273. .orders {
  274. display: flex;
  275. flex-direction: column;
  276. margin-right: 40rpx;
  277. image {
  278. width: 48rpx;
  279. height: 48rpx;
  280. }
  281. text {
  282. font-weight: 500;
  283. font-size: 22rpx;
  284. color: #131415;
  285. line-height: 32rpx;
  286. text-align: center;
  287. }
  288. }
  289. .btnSection {
  290. flex: 1 auto;
  291. display: flex;
  292. button {
  293. width: 100%;
  294. line-height: 88rpx;
  295. background: linear-gradient( 315deg, #FF4A00 0%, #FE8C00 100%);
  296. border-radius: 16rpx;
  297. font-weight: 500;
  298. font-size: 32rpx;
  299. color: #FFFFFF;
  300. padding-top: 0;
  301. padding-bottom: 0;
  302. &[disabled][type=primary] {
  303. opacity: 0.7;
  304. }
  305. &:first-child {
  306. background: linear-gradient( 135deg, #FF9800 0%, #FFB300 100%);
  307. border-radius: 16rpx 0rpx 0rpx 16rpx;
  308. }
  309. &:last-child {
  310. background: linear-gradient( 315deg, #FF4A00 0%, #FE8C00 100%);
  311. border-radius: 0rpx 16rpx 16rpx 0rpx;
  312. }
  313. }
  314. }
  315. }
  316. // 'demo-text-1', 'demo-text-2', 'demo-text-3'
  317. .popup-section {
  318. &.hidden {
  319. display: none;
  320. }
  321. .popup-mask {
  322. position: fixed;
  323. top: 0;
  324. left: 0;
  325. right: 0;
  326. bottom: 0;
  327. background-color: rgba(0,0,0,0.6);
  328. z-index: 9;
  329. }
  330. .popup-container {
  331. position: fixed;
  332. bottom: 0;
  333. left: 0;
  334. right: 0;
  335. z-index: 10;
  336. width: 100%;
  337. background: #FFFFFF;
  338. border-radius: 32rpx 32rpx 0rpx 0rpx;
  339. padding: 40rpx 0 58rpx;
  340. box-sizing: border-box;
  341. .goodsInfo {
  342. .desc {
  343. padding-bottom: 0;
  344. margin-left: 0;
  345. margin-bottom: 0;
  346. font-size: 32rpx;
  347. font-weight: 600;
  348. }
  349. .goodsList {
  350. max-height: 500rpx;
  351. padding: 0 32rpx;
  352. flex-wrap: wrap;
  353. overflow-x: hidden;
  354. overflow-y: auto;
  355. &::-webkit-scrollbar {
  356. display: none;
  357. }
  358. }
  359. .goodsItem {
  360. margin-right: 24rpx;
  361. .goods-cover {
  362. width: 208rpx;
  363. height: 208rpx;
  364. }
  365. &:nth-child(3n + 3) {
  366. margin-right: 0;
  367. }
  368. }
  369. }
  370. }
  371. .iconClose {
  372. position: absolute;
  373. right: 32rpx;
  374. top: 40rpx;
  375. width: 30rpx;
  376. height: 30rpx;
  377. }
  378. .product-section {
  379. display: flex;
  380. // padding-bottom: 60rpx;
  381. padding: 0 32rpx 60rpx;
  382. .product-img {
  383. width: 160rpx;
  384. height: 160rpx;
  385. flex-shrink: 0;
  386. margin-right: 32rpx;
  387. border-radius: 6px;
  388. overflow: hidden;
  389. image {
  390. width: 100%;
  391. height: 100%;
  392. }
  393. }
  394. .product-left {
  395. display: flex;
  396. flex-direction: column;
  397. .price-s {
  398. display: flex;
  399. align-items: flex-start;
  400. }
  401. .current-s {
  402. font-size: 28rpx;
  403. color: #131415;
  404. line-height: 40rpx;
  405. padding-top: 20rpx;
  406. text {
  407. color: #FF5000;
  408. }
  409. }
  410. .currentPrice {
  411. font-weight: bold;
  412. color: #FF5000;
  413. font-family: DINAlternate, DINAlternate;
  414. .stuff {
  415. font-size: 36rpx;
  416. }
  417. .priceZ {
  418. font-size: 60rpx;
  419. }
  420. .priceF {
  421. font-size: 36rpx;
  422. }
  423. }
  424. .originPrice {
  425. padding-left: 16rpx;
  426. font-size: 32rpx;
  427. color: #AAAAAA;
  428. line-height: 44rpx;
  429. text-decoration: line-through;
  430. padding-top: 30rpx;
  431. }
  432. }
  433. }
  434. .goodsInfo {
  435. flex-direction: column;
  436. align-items: flex-start;
  437. padding-bottom: 90rpx;
  438. .desc {
  439. font-size: 28rpx;
  440. color: #131415;
  441. line-height: 40rpx;
  442. padding: 0 32rpx 30rpx;
  443. }
  444. }
  445. button {
  446. width: 100%;
  447. line-height: 88rpx;
  448. background: linear-gradient( 315deg, #FF4A00 0%, #FE8C00 100%);
  449. border-radius: 16rpx;
  450. font-weight: 500;
  451. font-size: 32rpx;
  452. color: #FFFFFF;
  453. padding-top: 0;
  454. padding-bottom: 0;
  455. }
  456. }