common.scss 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. $pagegap:32rpx;
  2. .page-wrap{padding: $pagegap;}
  3. .top-search{
  4. position: absolute;
  5. z-index: 31;
  6. background-color: rgba(0,0,0,0.04);
  7. border-radius: 100rpx;
  8. margin-bottom: 20rpx;
  9. margin-left: $pagegap;
  10. }
  11. .search-wrap{
  12. background-color: #fff;
  13. position: relative;
  14. padding: 20rpx;
  15. margin-bottom: 24rpx;
  16. }
  17. .search-wrap::after {
  18. content: "";
  19. position: absolute;
  20. width: 100%;
  21. height: 14rpx;
  22. bottom: -20rpx;
  23. left: 0;
  24. background: linear-gradient(to bottom, #F5F5F5, #fff);
  25. z-index: -1;
  26. }
  27. .search-wrap{
  28. .position{
  29. font-size: 28rpx;
  30. font-weight: bold;
  31. color: #2D2D2D;
  32. /deep/ .u-icon{
  33. position: relative;
  34. top: 5rpx;
  35. margin-left: 8rpx;
  36. }
  37. }
  38. .search-out{
  39. flex: 1;
  40. border: 1px solid #DADADA;
  41. border-radius: 50rpx;
  42. margin-left: 24rpx;
  43. }
  44. .conditions{
  45. // margin-top: 48rpx;
  46. .item{
  47. margin: 0 24rpx;
  48. padding: 48rpx 0 20rpx;
  49. font-size: 24rpx;
  50. font-weight: 400;
  51. color: #363636;
  52. .text{
  53. margin-right: 10rpx;
  54. }
  55. }
  56. }
  57. }
  58. .gray{
  59. color: #999;
  60. }
  61. .red{
  62. color: #FF3C3F;
  63. }
  64. .view-wrap{
  65. padding: 30rpx 20rpx;
  66. }
  67. .full-btn{
  68. background-color: #F01414;
  69. color: #fff;
  70. border-radius: 44rpx;
  71. padding: 22rpx 0;
  72. text-align: center;
  73. margin-bottom: 40rpx;
  74. margin-top: 20rpx;
  75. font-weight: bold;
  76. &.gray{
  77. background-color: #ddd;
  78. color: #999;
  79. }
  80. &.white{
  81. background-color: #fff;
  82. color: #606060;
  83. }
  84. &.red{
  85. background-color: #ED0000;
  86. color: #fff;
  87. }
  88. }
  89. .single-til{
  90. margin-bottom: 20rpx;
  91. .text{
  92. font-size: 32rpx;
  93. color: #333;
  94. font-weight: 600;
  95. .sub-title{
  96. margin-left: 20rpx;
  97. font-size: 24rpx;
  98. font-weight: 400;
  99. color: #999999;
  100. }
  101. }
  102. .more-text{
  103. font-size: 24rpx;
  104. color: #999;
  105. }
  106. }
  107. .date-list{
  108. .date-item{
  109. position: relative;
  110. overflow: hidden;
  111. flex: 1;
  112. background: #FFFFFF;
  113. border-radius: 16rpx;
  114. border: 2rpx solid #7F7F7F;
  115. text-align: center;
  116. margin: 0 8rpx;
  117. box-sizing: border-box;
  118. &.active{
  119. border-color: #ED0000;
  120. background-color: #FFC8C8 ;
  121. .name,.date{
  122. color: #ED0000;
  123. }
  124. .selected-img{
  125. display: block;
  126. }
  127. }
  128. &.disabled{
  129. background-color: #e0e0e0 ;
  130. border-color: #7F7F7F;
  131. .name,.date{
  132. color: #7F7F7F;
  133. }
  134. }
  135. &.stock-over{
  136. // border-color: #7F7F7F;
  137. background-color: #FFFFFF ;
  138. .name,.date{
  139. color: #7F7F7F;
  140. }
  141. }
  142. .selected-img{
  143. width: 32rpx;
  144. height: 32rpx;
  145. position: absolute;
  146. right: 0;
  147. bottom: 0;
  148. display: none;
  149. }
  150. &.dot::after{
  151. content: '';
  152. width: 4px;
  153. height: 4px;
  154. border-radius: 50%;
  155. background-color: #ED0000;
  156. position: absolute;
  157. right: 10rpx;
  158. top: 5px; }
  159. .name{
  160. padding-top: 26rpx;
  161. margin-bottom: 12rpx;
  162. font-size: 24rpx;
  163. font-weight: 400;
  164. color: #7F7F7F;
  165. line-height: 36rpx;
  166. }
  167. .sold-out{
  168. position: absolute;
  169. right: -2rpx;
  170. top: -2rpx;
  171. background: #D8D8D8;
  172. border-radius: 0rpx 16rpx 0rpx 16rpx;
  173. font-weight: bold;
  174. font-size: 20rpx;
  175. color: #3C3838;
  176. padding: 4rpx 10rpx;
  177. box-sizing: border-box;
  178. }
  179. .date{
  180. font-size: 28rpx;
  181. font-weight: 500;
  182. color: #2D2D2D;
  183. line-height: 42rpx;
  184. padding-bottom: 28rpx;
  185. }
  186. }
  187. .more-date{
  188. height: 148rpx;
  189. .text{
  190. margin-left: 20rpx;
  191. margin-right: 10rpx;
  192. font-size: 24rpx;
  193. font-weight: 400;
  194. color: #7F7F7F;
  195. line-height: 36rpx;
  196. }
  197. }
  198. }
  199. .date-block.generic-block{
  200. .date-list{
  201. display: grid;
  202. grid-template-columns: repeat(3, 1fr);
  203. gap: 10rpx;
  204. }
  205. .name{
  206. padding-top: 0;
  207. margin-bottom: 0;
  208. display: grid;
  209. align-content: center;
  210. height: 52px;
  211. // padding: 34rpx 0;
  212. }
  213. }
  214. // 分享 海报
  215. .share-option{
  216. transform: translateY(100%);
  217. .overlay{
  218. position: fixed;
  219. left: 0;
  220. top: 0;
  221. width: 100vw;
  222. height: 100vh;
  223. background-color: rgba(0, 0, 0, 0.35);
  224. transform: translateY(-100%);
  225. }
  226. &.shareShow{
  227. transform: translateY(0);
  228. }
  229. position: fixed;
  230. width: 100%;
  231. left: 0;
  232. bottom: 0;
  233. z-index: 50;
  234. background-color: #fff;
  235. .share-option-item{
  236. position: relative;
  237. height: 46px;
  238. line-height: 46px;
  239. border: 0;
  240. background-color: #fff;
  241. text-align: center;
  242. border-radius: 0;
  243. border-bottom: 1px solid #eee;
  244. font-size: 30rpx;
  245. }
  246. .wx-share{
  247. border-bottom: 0;
  248. }
  249. }
  250. .poster-wrap{
  251. position: fixed;
  252. left: 0;
  253. top: 0;
  254. width: 100%;
  255. height: 100vh;
  256. .poster-inner{
  257. flex: 1;
  258. margin: 0 75rpx;
  259. .close-wrap{
  260. display: flex;
  261. justify-content: flex-end;
  262. margin-bottom: 16rpx;
  263. }
  264. }
  265. .poster{
  266. position: relative;
  267. // padding-bottom: 90rpx;
  268. background-color: transparent;
  269. .posterBg{
  270. position: absolute;
  271. left: 0;
  272. bottom: 0;
  273. right: 0;
  274. width: 100%;
  275. z-index: 1;
  276. }
  277. .placard{
  278. position: relative;
  279. z-index: 10;
  280. }
  281. .bottom{
  282. position: relative;
  283. z-index: 20;
  284. margin: 33rpx 40rpx 0;
  285. .left{
  286. margin-right: 58rpx;
  287. .price{
  288. font-size: 22rpx;
  289. font-weight: 600;
  290. color: #FF3538;
  291. line-height: 30rpx;
  292. margin-bottom: 10rpx;
  293. .num{
  294. font-size: 40rpx;
  295. font-weight: 600;
  296. margin-left: 5rpx;
  297. }
  298. }
  299. .goodsName{
  300. font-size: 30rpx;
  301. font-weight: 400;
  302. color: #333333;
  303. line-height: 38rpx;
  304. margin-bottom: 16rpx;
  305. }
  306. .slogan{
  307. font-size: 26rpx;
  308. font-weight: 600;
  309. line-height: 37rpx;
  310. }
  311. }
  312. .right{
  313. text-align: center;
  314. .imgTip{
  315. margin-top: 12rpx;
  316. font-size: 20rpx;
  317. font-weight: 400;
  318. color: #333333;
  319. line-height: 28rpx;
  320. }
  321. .qrcode{
  322. width: 108rpx;
  323. height:108rpx;
  324. }
  325. }
  326. }
  327. }
  328. .poster-btn{
  329. height: 88rpx;
  330. line-height: 88rpx;
  331. border-radius: 44rpx;
  332. text-align: center;
  333. color: #fff;
  334. margin-top: 40rpx;
  335. font-size: 32rpx;
  336. font-weight: 600;
  337. background: linear-gradient(90deg, #FF7979 0%, #ED0000 100%);
  338. }
  339. }
  340. // 分享 海报
  341. // 富文本
  342. .parse-content{
  343. font-size: 26rpx;
  344. font-family: SourceHanSansCN, SourceHanSansCN;
  345. font-weight: 400;
  346. color: #4E4E4E;
  347. line-height: 40rpx;
  348. rich-text,p{
  349. display: block;
  350. margin-bottom: 8px;
  351. }
  352. }
  353. .coupon-list{
  354. .item{
  355. position: relative;
  356. margin-bottom: 16rpx;
  357. background-size: contain;
  358. text-align: center;
  359. background-repeat: no-repeat;
  360. height: 236rpx;
  361. &.ifReceive{
  362. .right {
  363. .btn{
  364. background-color: #FFC4C4;
  365. }
  366. }
  367. }
  368. .content{
  369. // padding-top: 30rpx;
  370. height: calc( 236rpx - 40rpx );
  371. }
  372. .left{
  373. width: 34%;
  374. padding-left: 6rpx;
  375. .quota{
  376. font-weight: 500;
  377. font-size: 28rpx;
  378. background-clip: text;
  379. text-fill-color: transparent;
  380. background: linear-gradient(180deg, #FF9B81 0%, #FF1D45 100%);
  381. -webkit-background-clip: text;
  382. -webkit-text-fill-color: transparent; /* 使用 WebKit 前缀以支持 Safari 和旧版本的 Chrome */
  383. }
  384. .number{
  385. font-weight: bold;
  386. font-size: 100rpx;
  387. &.small{
  388. font-size: 54rpx;
  389. }
  390. }
  391. .condition{
  392. font-weight: 400;
  393. font-size: 22rpx;
  394. color: #D56442;
  395. line-height: 34rpx
  396. }
  397. }
  398. .center{
  399. flex: 1;
  400. text-align: left;
  401. padding-left: 40rpx;
  402. .name{
  403. font-weight: bold;
  404. font-size: 28rpx;
  405. color: #C5412B;
  406. line-height: 42rpx;
  407. margin-bottom: 16rpx;
  408. &.small{
  409. font-size: 24rpx;
  410. }
  411. }
  412. .condition{
  413. font-weight: 400;
  414. font-size: 22rpx;
  415. color: #D56442;
  416. line-height: 34rpx;
  417. }
  418. .tip{
  419. font-weight: 400;
  420. font-size: 22rpx;
  421. color: #D56442;
  422. line-height: 30rpx;
  423. }
  424. }
  425. .bottom-time{
  426. position: absolute;
  427. left: 48rpx;
  428. bottom: 18rpx;
  429. font-weight: 400;
  430. font-size: 22rpx;
  431. color: #C5412B;
  432. }
  433. .right{
  434. // flex: 1;
  435. padding-top: 20rpx;
  436. .btn{
  437. display: inline-block;
  438. width: 144rpx;
  439. text-align: center;
  440. height: 50rpx;
  441. line-height: 50rpx;
  442. background: #FF1212;
  443. border-radius: 25rpx;
  444. margin-bottom: 14rpx;
  445. margin-right: 30rpx;
  446. font-weight: bold;
  447. font-size: 24rpx;
  448. color: #fff;
  449. }
  450. .time{
  451. font-weight: 400;
  452. font-size: 20rpx;
  453. color: #FEF1D3;
  454. }
  455. }
  456. .type{
  457. position: absolute;
  458. left: 8rpx;
  459. top: 22rpx;
  460. font-weight: 500;
  461. font-size: 20rpx;
  462. color: #FFF6E1;
  463. transform: rotate(-45deg);
  464. }
  465. .status-img{
  466. position: absolute;
  467. top: 40rpx;
  468. left: 66%;
  469. width: 120rpx;
  470. height: 94rpx;
  471. }
  472. }
  473. }