index.module.less 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. .double12Active {
  2. width: 100%;
  3. background: linear-gradient(180deg, #fdccbf 0%, #fde0cf 100%);
  4. padding: 0 16px 108px;
  5. box-sizing: border-box;
  6. :global {
  7. .van-nav-bar .van-nav-bar__left {
  8. color: rgb(44, 62, 80);
  9. }
  10. }
  11. .headImg {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 369px;
  17. z-index: 1;
  18. background: url('./imgs//head.png') no-repeat;
  19. background-size: 100% 100%;
  20. }
  21. .activeArea1 {
  22. margin-top: calc(
  23. 369px - var(--van-nav-bar-height) - var(--navBarHeight) - 18px
  24. );
  25. background-color: #fff;
  26. width: 100%;
  27. border-radius: 20px;
  28. border: 2px solid #ffffff;
  29. filter: blur(0px);
  30. position: relative;
  31. padding: 12px 0px 24px 20px;
  32. box-sizing: border-box;
  33. .tip1 {
  34. position: absolute;
  35. left: 2px;
  36. top: -24px;
  37. width: 187px;
  38. height: 43px;
  39. z-index: 1;
  40. }
  41. .shadowImg {
  42. position: absolute;
  43. left: 0;
  44. top: 0;
  45. z-index: 0;
  46. width: 100%;
  47. height: 60px;
  48. border-radius: 20px 20px 0 0;
  49. }
  50. .activeCon {
  51. margin-top: 24px;
  52. position: relative;
  53. z-index: 2;
  54. .activeBox {
  55. width: 80px;
  56. height: 27px;
  57. background: #ffdd71;
  58. border-radius: 14px;
  59. font-family: PingFangSC, PingFang SC;
  60. font-weight: 600;
  61. font-size: 15px;
  62. color: #000000;
  63. line-height: 27px;
  64. text-align: center;
  65. }
  66. .activeTimes {
  67. margin-top: 12px;
  68. font-weight: 500;
  69. font-size: 15px;
  70. color: #333333;
  71. line-height: 21px;
  72. }
  73. .activeListCon {
  74. box-sizing: border-box;
  75. padding-left: 13px;
  76. margin-top: 12px;
  77. .activeList {
  78. position: relative;
  79. font-weight: 500;
  80. font-size: 15px;
  81. color: #333333;
  82. line-height: 25px;
  83. margin-top: 3px;
  84. &:first-child {
  85. margin-top: 0;
  86. }
  87. &::after {
  88. content: '';
  89. position: absolute;
  90. width: 5px;
  91. height: 5px;
  92. background: linear-gradient(
  93. 162deg,
  94. #ff1e3d 0%,
  95. #ff0704 51%,
  96. #ff7a4f 100%
  97. );
  98. opacity: 0.6;
  99. left: -13px;
  100. top: 50%;
  101. transform: translateY(-50%);
  102. border-radius: 50%;
  103. }
  104. & > span {
  105. color: #ff1a00;
  106. }
  107. .number {
  108. font-family: 'DIN';
  109. font-size: 22px;
  110. line-height: 1;
  111. }
  112. }
  113. }
  114. }
  115. .activeContent {
  116. margin-top: 16px;
  117. width: calc(100% - 20px);
  118. height: 187px;
  119. background: url('./imgs/boxImg.png') no-repeat;
  120. background-size: 100% 100%;
  121. position: relative;
  122. .vipNumber {
  123. position: absolute;
  124. display: flex;
  125. flex-direction: column;
  126. align-items: center;
  127. & > :nth-child(1) {
  128. font-weight: 600;
  129. font-size: 11px;
  130. color: #5e2b17;
  131. line-height: 16px;
  132. }
  133. & > :nth-child(2) {
  134. font-weight: 500;
  135. font-size: 11px;
  136. color: rgba(94, 43, 23, 50%);
  137. line-height: 16px;
  138. text-decoration-line: line-through;
  139. }
  140. &.vipBuy1 {
  141. left: 0;
  142. bottom: 60px;
  143. width: 33.33%;
  144. }
  145. &.vipBuy2 {
  146. left: 33.33%;
  147. bottom: 60px;
  148. width: 33.33%;
  149. box-sizing: border-box;
  150. padding-left: 10px;
  151. }
  152. &.vipBuy3 {
  153. left: 66.66%;
  154. bottom: 60px;
  155. width: 33.33%;
  156. box-sizing: border-box;
  157. padding-right: 10px;
  158. }
  159. }
  160. .svipDetails {
  161. position: absolute;
  162. bottom: 6px;
  163. left: 12px;
  164. display: flex;
  165. align-items: flex-end;
  166. line-height: 28px;
  167. & > span:nth-child(1) {
  168. font-weight: 600;
  169. font-size: 18px;
  170. color: #ffffff;
  171. }
  172. & > span:nth-child(2) {
  173. margin: 0 4px;
  174. font-family: 'DIN';
  175. font-size: 30px;
  176. color: #ffffff;
  177. line-height: 38px;
  178. }
  179. & > span:nth-child(3) {
  180. font-weight: 500;
  181. font-size: 12px;
  182. color: rgba(255, 255, 255, 0.8);
  183. }
  184. }
  185. }
  186. }
  187. .activeArea2 {
  188. margin-top: 20px;
  189. width: 100%;
  190. height: 445px;
  191. }
  192. .activeArea3 {
  193. margin-top: 43px;
  194. background-color: #fff;
  195. width: 100%;
  196. border-radius: 20px;
  197. border: 2px solid #ffffff;
  198. filter: blur(0px);
  199. position: relative;
  200. padding: 32px 14px 24px 20px;
  201. box-sizing: border-box;
  202. .tip1 {
  203. position: absolute;
  204. left: 2px;
  205. top: -24px;
  206. width: 107px;
  207. height: 43px;
  208. z-index: 1;
  209. }
  210. .shadowImg {
  211. position: absolute;
  212. left: 0;
  213. top: 0;
  214. z-index: 0;
  215. width: 100%;
  216. height: 60px;
  217. border-radius: 20px 20px 0 0;
  218. }
  219. .titCon {
  220. position: relative;
  221. z-index: 2;
  222. font-weight: 500;
  223. font-size: 15px;
  224. color: #333333;
  225. line-height: 26px;
  226. > span {
  227. color: #ff1a00;
  228. }
  229. }
  230. .classCon {
  231. margin-top: 16px;
  232. width: calc(100% - 6px);
  233. height: 128px;
  234. background: url('./imgs/class.png') no-repeat;
  235. background-size: 100% 100%;
  236. position: relative;
  237. .classBox {
  238. position: absolute;
  239. left: 50%;
  240. transform: translateX(-50%);
  241. height: 32px;
  242. line-height: 32px;
  243. display: flex;
  244. align-items: flex-end;
  245. font-size: 15px;
  246. color: #ffffff;
  247. font-weight: 600;
  248. font-family: PingFangSC, PingFang SC;
  249. & > span:nth-child(1) {
  250. font-size: 22px;
  251. font-weight: 500;
  252. line-height: 34px;
  253. }
  254. & > span {
  255. color: #fff176;
  256. }
  257. }
  258. }
  259. }
  260. .activeArea4 {
  261. margin-top: 20px;
  262. width: 100%;
  263. height: 186px;
  264. }
  265. .subBtnCon {
  266. position: fixed;
  267. z-index: 999;
  268. bottom: 0;
  269. left: 0;
  270. width: 100%;
  271. height: 78px;
  272. padding-top: 10px;
  273. box-sizing: border-box;
  274. display: flex;
  275. justify-content: center;
  276. background-color: #fff;
  277. .subBtn {
  278. background: url('./imgs/subBtn.png') no-repeat;
  279. background-size: 100% 100%;
  280. width: 315px;
  281. height: 46px;
  282. line-height: 46px;
  283. font-size: 18px;
  284. color: #ffffff;
  285. letter-spacing: 1px;
  286. text-align: center;
  287. font-weight: 600;
  288. &.disable {
  289. pointer-events: none;
  290. opacity: 0.4;
  291. }
  292. }
  293. }
  294. }
  295. // 弹窗样式
  296. .dialogContainer {
  297. width: 287px;
  298. box-sizing: border-box;
  299. background: #ffffff;
  300. border-radius: 12px;
  301. padding: 16px 24px 22px;
  302. text-align: center;
  303. .dialogTitle {
  304. font-weight: 500;
  305. font-size: 18px;
  306. color: #333333;
  307. line-height: 25px;
  308. }
  309. .dialogContent {
  310. padding: 16px 0 21px;
  311. font-size: 15px;
  312. color: #777777;
  313. line-height: 26px;
  314. }
  315. .dialogBtnGroup {
  316. padding: 0 16px;
  317. &.orderGroup {
  318. display: flex;
  319. align-items: center;
  320. padding: 0;
  321. }
  322. :global {
  323. .van-button {
  324. font-weight: 500;
  325. font-size: 16px;
  326. }
  327. }
  328. }
  329. .dialogBtn {
  330. margin-left: 12px;
  331. color: #ffffff;
  332. line-height: 22px;
  333. }
  334. }