index-apply.module.less 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863
  1. .student-register {
  2. min-height: 100vh;
  3. // background: #FFF4E2;
  4. background: linear-gradient(180deg, #C9EDFD 0%, #CCF0FF 100%);
  5. overflow: hidden;
  6. position: relative;
  7. --k-font-primary: #007AFE;
  8. .studentRegisterContainer {
  9. padding-top: 69px;
  10. background: url('./images/new/banner-bg4.png') no-repeat top center;
  11. background-size: contain;
  12. }
  13. }
  14. .countdownSection {
  15. position: relative;
  16. background: linear-gradient(90deg, #FFBBD1 0%, #FFEFE2 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  17. border-radius: 10px;
  18. margin: 0 14px 8px;
  19. padding: 10px 12px;
  20. border: 1px solid #FFFFFF;
  21. &::before {
  22. content: '';
  23. position: absolute;
  24. top: 0;
  25. left: 11px;
  26. display: inline-block;
  27. width: 32px;
  28. height: 48px;
  29. background: url('./images/new/icon-1.png') no-repeat center;
  30. background-size: contain;
  31. }
  32. .timer {
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .timerAll {
  38. // position: absolute;
  39. right: 12px;
  40. font-size: 12px;
  41. color: #131415;
  42. line-height: 17px;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. span {
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. height: 22px;
  51. min-width: 22px;
  52. padding: 0 3px;
  53. background: #FF3A5F;
  54. border-radius: 4px;
  55. font-weight: 600;
  56. font-size: 12px;
  57. color: #FFFFFF;
  58. margin: 0 3px;
  59. }
  60. }
  61. .timerTitle {
  62. position: relative;
  63. width: 80px;
  64. height: 15px;
  65. margin-right: 4px;
  66. }
  67. .timerTip {
  68. margin-top: 10px;
  69. margin-left: 2px;
  70. margin-right: 2px;
  71. background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
  72. border-radius: 12px;
  73. text-align: center;
  74. padding: 4px 6px;
  75. font-size: 11px;
  76. color: #69717C;
  77. line-height: 16px;
  78. }
  79. }
  80. .paymentContainer {
  81. display: flex;
  82. align-items: center;
  83. justify-content: space-between;
  84. font-size: 14px;
  85. padding: 12px 14px calc(12px + env(safe-area-inset-bottom)) 14px;
  86. background: #FFFFFF;
  87. box-shadow: 0px -1px 0px 0px #F2F2F2, inset 0px 1px 3px 0px #FFFFFF;
  88. border-radius: 18px 18px 0px 0px;
  89. .payemntPrice {
  90. // line-height: 0;
  91. }
  92. .giftTip {
  93. width: 94px;
  94. height: 19px;
  95. }
  96. .needPrice {
  97. color: #333333;
  98. padding-bottom: 7px;
  99. font-size: 16px;
  100. font-family: DINAlternate-Bold, DINAlternate;
  101. font-weight: bold;
  102. color: #FC1A19;
  103. padding-right: 6px;
  104. span {
  105. font-size: 24px;
  106. margin-right: 2px;
  107. }
  108. i {
  109. // margin-top: -3px;
  110. vertical-align: text-bottom;
  111. font-weight: 400;
  112. &.unit {
  113. font-size: 12px;
  114. }
  115. }
  116. }
  117. .allPrice {
  118. display: inline-block;
  119. font-size: 14px;
  120. font-family: DINAlternate-Bold, DINAlternate;
  121. font-weight: bold;
  122. color: #AAAAAA;
  123. line-height: 16px;
  124. vertical-align: text-top;
  125. }
  126. :global {
  127. .van-button {
  128. height: 40px;
  129. line-height: 40px;
  130. width: 148px;
  131. background: linear-gradient(135deg, #31C7FF 0%, #007AFE 100%);
  132. font-size: 16px;
  133. color: #fff;
  134. font-weight: 500;
  135. border: 0;
  136. }
  137. }
  138. .traditionBtn {
  139. flex: 1;
  140. text-align: center;
  141. :global {
  142. .van-button {
  143. width: 100%;
  144. max-width: 325px;
  145. }
  146. }
  147. }
  148. }
  149. .studentSection {
  150. margin: 0 14px 8px;
  151. padding: 12px 15px;
  152. background: linear-gradient(180deg, rgba(219, 246, 253) 0%, rgba(255, 255, 255) 30%);
  153. border-radius: 16px;
  154. border: 1px solid #FFFFFF;
  155. &.studentSectionForm {
  156. padding: 0 0 12px;
  157. background: linear-gradient(180deg, #DBF6FD 0%, #FFFFFF 10%);
  158. }
  159. &.noSendDay {
  160. padding-bottom: 0;
  161. }
  162. .title1,
  163. .title3 {
  164. width: 212px;
  165. height: 22px;
  166. background: url('./images/new/title-7.png') no-repeat center;
  167. background-size: contain;
  168. margin: 0 auto;
  169. }
  170. .title2 {
  171. width: 248px;
  172. height: 22px;
  173. background: url('./images/new/title-4.png') no-repeat center;
  174. background-size: contain;
  175. margin: 0 auto;
  176. }
  177. .title3 {
  178. background: url('./images/new/title-6.png') no-repeat center;
  179. background-size: contain;
  180. }
  181. .goodsGroup {
  182. display: flex;
  183. align-items: center;
  184. margin-top: 29px;
  185. }
  186. .goodsItem {
  187. cursor: pointer;
  188. position: relative;
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. flex: 1;
  193. // background: #EBF3F8;
  194. // border-radius: 20px 4px 4px 20px;
  195. height: 36px;
  196. line-height: 36px;
  197. font-size: 16px;
  198. color: #728088;
  199. // transform: skewX(-15deg);
  200. background: url('./images/new/btn-left-default.png') no-repeat center;
  201. background-size: contain;
  202. .goodsInner {
  203. // transform: skewX(15deg);
  204. // background: #EBF3F8;
  205. width: 100%;
  206. text-align: center;
  207. }
  208. &.checked {
  209. // background: linear-gradient(315deg, #31C7FF 0%, #007AFE 100%);
  210. background: url('./images/new/btn-left-active.png') no-repeat center !important;
  211. background-size: contain !important;
  212. color: #fff;
  213. font-weight: 600;
  214. }
  215. &.checked1 {
  216. background: url('./images/new/btn-right-active.png') no-repeat center !important;
  217. background-size: contain !important;
  218. color: #fff;
  219. font-weight: 600;
  220. }
  221. .proposalTip {
  222. position: absolute;
  223. right: 8px;
  224. top: -14px;
  225. width: 40px;
  226. height: 26px;
  227. display: inline-block;
  228. background: url('./images/new/icon-2.png') no-repeat center;
  229. background-size: contain;
  230. }
  231. &+.goodsItem {
  232. // margin-left: 8px;
  233. // border-radius: 4px 20px 20px 4px;
  234. // transform: skewX(-15deg);
  235. background: url('./images/new/btn-right-default.png') no-repeat center;
  236. background-size: contain;
  237. // &.checked {
  238. // background: linear-gradient(315deg, #31C7FF 0%, #007AFE 100%);
  239. // }
  240. }
  241. }
  242. }
  243. .registerForm {
  244. // background: #FFFFFF;
  245. // border-radius: 16px;
  246. border-radius: 18px;
  247. // margin: 0 12px;
  248. overflow: hidden;
  249. .selectStudentGroup {
  250. margin-left: 10px;
  251. font-size: 14px;
  252. color: #1189FF;
  253. display: flex;
  254. align-items: center;
  255. justify-content: center;
  256. &.selectStudentGroupChecked {
  257. span::after {
  258. transform: rotate(180deg);
  259. }
  260. }
  261. // .studentIcon {
  262. // display: inline-block;
  263. // margin-right: 6px;
  264. // width: 20px;
  265. // height: 20px;
  266. // background: url('./images/new/icon-n-5.png') no-repeat center;
  267. // background-size: contain;
  268. //
  269. // &.studentIconAdd {
  270. // background: url('./images/new/icon-n-4.png') no-repeat center;
  271. // background-size: contain;
  272. // }
  273. // }
  274. span {
  275. display: flex;
  276. align-items: center;
  277. justify-content: center;
  278. &::after {
  279. display: inline-block;
  280. content: '';
  281. width: 9px;
  282. height: 5px;
  283. margin-left: 4px;
  284. background: url('./images/new/icon-n-6.png') no-repeat center;
  285. background-size: contain;
  286. }
  287. }
  288. }
  289. :global {
  290. .van-cell {
  291. background-color: transparent;
  292. }
  293. }
  294. .fieldTipsGroup {
  295. margin: 0 14px 0;
  296. padding-bottom: 6px;
  297. }
  298. .fieldTips {
  299. font-size: 13px;
  300. color: #EC763B;
  301. line-height: 18px;
  302. background: #FFF8EB;
  303. border-radius: 4px;
  304. padding: 4px 10px;
  305. display: flex;
  306. align-items: center;
  307. .iconQuestion {
  308. flex-shrink: 0;
  309. display: inline-block;
  310. background: url('./images/new/icon-question.png') no-repeat center;
  311. background-size: contain;
  312. width: 16px;
  313. height: 16px;
  314. margin-right: 4px;
  315. }
  316. }
  317. .tips {
  318. display: inline-block;
  319. // padding-left: 5px;
  320. // padding-top: 2px;
  321. font-size: 12px;
  322. font-weight: 400;
  323. color: #777;
  324. line-height: 17px;
  325. }
  326. .username {
  327. padding-top: 15px !important;
  328. padding-bottom: 6px !important;
  329. :global {
  330. .van-field__label {
  331. display: flex;
  332. align-items: center;
  333. width: 170px;
  334. }
  335. }
  336. }
  337. .countDown {
  338. min-width: 80px;
  339. text-align: center;
  340. font-size: 14px;
  341. color: #A0D0FF;
  342. }
  343. :global {
  344. .van-cell {
  345. padding: 14px 14px;
  346. }
  347. .van-field__label {
  348. font-size: 15px;
  349. color: #666666;
  350. line-height: 22px;
  351. display: flex;
  352. align-items: center;
  353. }
  354. .van-field__control {
  355. font-size: 15px;
  356. color: #131415;
  357. }
  358. }
  359. .codeText {
  360. color: #1189FF;
  361. font-size: 14px;
  362. // &.codeTextDisabled {
  363. // color: #ccc;
  364. // }
  365. }
  366. .memberNumer {
  367. margin: 14px 12px 0;
  368. background: #E8F8FF;
  369. border-radius: 8px;
  370. padding: 8px 0 8px 10px;
  371. display: flex;
  372. align-items: center;
  373. // font-weight: 600;
  374. font-size: 13px;
  375. color: #131415;
  376. line-height: 18px;
  377. .iconGift {
  378. width: 18px;
  379. height: 18px;
  380. margin-right: 6px;
  381. }
  382. span {
  383. font-size: 15px;
  384. color: #F62C2C;
  385. padding: 0 5px;
  386. font-weight: 600;
  387. }
  388. p {
  389. display: flex;
  390. align-items: center;
  391. }
  392. }
  393. }
  394. .radioSection {
  395. position: relative;
  396. min-width: 32px;
  397. justify-content: center;
  398. // padding-left: 19px;
  399. // padding-right: 19px;
  400. padding: 5px 19px;
  401. font-size: 14px;
  402. font-weight: 500;
  403. border-radius: 6px;
  404. }
  405. .radioItem {
  406. position: absolute;
  407. top: 0;
  408. left: 0;
  409. right: 0;
  410. bottom: 0;
  411. opacity: 0;
  412. }
  413. .radioSection+.radioSection {
  414. margin-left: 12px;
  415. }
  416. .goodsSection {
  417. border-radius: 18px 18px;
  418. box-shadow: 0px 1px 6px 0px #F0D8C8;
  419. border-radius: 18px;
  420. overflow: hidden;
  421. background: transparent;
  422. margin-bottom: 12px;
  423. &:last-child {
  424. margin-bottom: 0;
  425. }
  426. }
  427. .iconArrow {
  428. display: inline-block;
  429. width: 21px;
  430. height: 21px;
  431. background: url('./images/new/icon-arrow.png') no-repeat center;
  432. background-size: contain;
  433. }
  434. .goodsExtra {
  435. position: relative;
  436. margin: 1px 14px 16px;
  437. // background: #FFFFFF;
  438. background: linear-gradient(180deg, rgba(219, 246, 253) 0%, rgba(255, 255, 255) 30%);
  439. border-radius: 16px;
  440. border: 1px solid #FFFFFF;
  441. // padding-bottom: 16px;
  442. :global {
  443. .van-cell {
  444. background-color: transparent;
  445. padding: 8px 14px;
  446. overflow: visible;
  447. }
  448. }
  449. .iconArrow {
  450. position: absolute;
  451. left: 86px;
  452. top: -9px;
  453. }
  454. .memberNumer {
  455. margin: 0 12px 14px;
  456. background: #E8F8FF;
  457. border-radius: 8px;
  458. padding: 8px 0 8px 10px;
  459. display: flex;
  460. align-items: center;
  461. // font-weight: 600;
  462. font-size: 13px;
  463. color: #131415;
  464. line-height: 18px;
  465. .iconGift {
  466. width: 18px;
  467. height: 18px;
  468. margin-right: 6px;
  469. }
  470. span {
  471. font-size: 15px;
  472. color: #F62C2C;
  473. padding: 0 5px;
  474. font-weight: 600;
  475. }
  476. }
  477. }
  478. .goodsCell {
  479. position: relative;
  480. border-radius: 16px;
  481. padding: 14px 16px !important;
  482. &.goodsBuyGoods {
  483. padding: 10px 14px !important;
  484. .goodsName {
  485. width: 192px;
  486. height: 68px;
  487. }
  488. .img {
  489. width: 80px;
  490. height: 80px;
  491. }
  492. }
  493. .iconChecked {
  494. width: 18px;
  495. height: 18px;
  496. background: url('./images/new/icon-n-7.png') no-repeat center;
  497. background-size: contain;
  498. display: inline-block;
  499. margin-right: 14px;
  500. flex-shrink: 0;
  501. &.selected {
  502. background: url('./images/new/icon-n-8.png') no-repeat center;
  503. background-size: contain;
  504. }
  505. }
  506. .checkedGroup {
  507. position: relative;
  508. line-height: 0;
  509. .showBg {
  510. position: absolute;
  511. left: -17px;
  512. top: -27px;
  513. width: 52px;
  514. height: 24px;
  515. background: url('./images/new/icon-n-9.png') no-repeat center;
  516. background-size: contain;
  517. z-index: 9;
  518. }
  519. }
  520. .img {
  521. margin-right: 10px;
  522. width: 86px;
  523. height: 86px;
  524. border-radius: 8px;
  525. overflow: hidden;
  526. flex-shrink: 0;
  527. }
  528. h2 {
  529. display: flex;
  530. align-items: center;
  531. font-weight: 500;
  532. font-size: 16px;
  533. color: #131415;
  534. line-height: 22px;
  535. }
  536. .section {
  537. display: flex;
  538. align-items: center;
  539. }
  540. .goodsName {
  541. width: 207px;
  542. height: 71px;
  543. line-height: 0;
  544. }
  545. .brandName {
  546. margin-left: 6px;
  547. font-size: 12px;
  548. font-weight: 400;
  549. color: #19A1FE;
  550. line-height: 17px;
  551. height: 18px;
  552. background: #F4FAFF;
  553. border-radius: 4px;
  554. border: 1px solid rgba(52, 173, 255, 0.55);
  555. white-space: nowrap;
  556. }
  557. .sectionContent {
  558. line-height: 0;
  559. }
  560. .model {
  561. margin: 4px 0 5px;
  562. font-weight: 500;
  563. font-size: 12px;
  564. color: #FF711B;
  565. p {
  566. display: flex;
  567. align-items: center;
  568. line-height: 16px;
  569. padding-top: 3px;
  570. i {
  571. width: 4px;
  572. height: 4px;
  573. border-radius: 50%;
  574. display: inline-block;
  575. margin-right: 4px;
  576. background: #FF711B;
  577. }
  578. }
  579. }
  580. .sendInstrument {
  581. // background: linear-gradient(270deg, #FF7B57 0%, #FF3460 100%);
  582. // border-radius: 4px;
  583. // font-size: 12px;
  584. // color: #FFFFFF;
  585. // padding: 2px 6px 3px;
  586. width: 95px;
  587. height: 21px;
  588. }
  589. .moreBtn {
  590. color: #aaa;
  591. font-size: 12px;
  592. :global {
  593. .van-icon {
  594. margin-left: 4px;
  595. }
  596. }
  597. }
  598. .sbtnGroup {
  599. display: flex;
  600. &>span {
  601. font-size: 12px;
  602. font-weight: 600;
  603. color: #AF540D;
  604. line-height: 18px;
  605. border-radius: 9px;
  606. border: 1px solid rgba(175, 84, 13, .62);
  607. padding: 0 6px;
  608. }
  609. }
  610. }
  611. .goodsTradition {
  612. position: relative;
  613. margin: 16px 12px;
  614. background: #FFFFFF;
  615. border-radius: 16px;
  616. padding: 13px 16px 20px;
  617. .iconArrow {
  618. position: absolute;
  619. right: 85px;
  620. top: -9px;
  621. }
  622. .goodsTitle {
  623. width: 137px;
  624. height: 44px;
  625. background: url('./images/new/title-5.png') no-repeat center;
  626. background-size: contain;
  627. margin: 0 auto 11px;
  628. }
  629. .steps {}
  630. .step {
  631. position: relative;
  632. padding-left: 38px;
  633. padding-bottom: 16px;
  634. &::before {
  635. content: '';
  636. border-left: 1px dashed rgba(9, 135, 254, 0.4);
  637. position: absolute;
  638. left: 15px;
  639. top: 0;
  640. display: inline-block;
  641. height: 100%;
  642. }
  643. &:last-child {
  644. padding-bottom: 0;
  645. &::before {
  646. display: none;
  647. }
  648. }
  649. .stepContent {
  650. font-size: 14px;
  651. color: #777777;
  652. line-height: 24px;
  653. text-align: justify;
  654. padding-top: 3px;
  655. span {
  656. font-weight: 500;
  657. color: #333333;
  658. }
  659. }
  660. .nums {
  661. position: absolute;
  662. left: 0;
  663. width: 30px;
  664. height: 30px;
  665. background: #C9E5FF;
  666. display: flex;
  667. align-items: center;
  668. justify-content: center;
  669. border-radius: 50%;
  670. .numInner {
  671. display: flex;
  672. align-items: center;
  673. justify-content: center;
  674. border-radius: 50%;
  675. width: 22px;
  676. height: 22px;
  677. font-weight: bold;
  678. font-size: 13px;
  679. color: #FFFFFF;
  680. background: #1BA5FE;
  681. }
  682. }
  683. }
  684. }
  685. .selectStudentPopup {
  686. :global {
  687. .van-popup__close-icon {
  688. color: #767C7F;
  689. }
  690. }
  691. }
  692. // 赠送会员
  693. .vipGiftContainer {
  694. display: flex;
  695. align-items: center;
  696. margin: 7px 13px 12px;
  697. background-image: url('./images/new/vip_gift_suffix.png'), url('./images/new/vip_gift_bg.png');
  698. background-position: center right, center;
  699. background-repeat: no-repeat;
  700. background-size: contain;
  701. height: 47px;
  702. .iconGift {
  703. width: 60px;
  704. height: 51px;
  705. margin: -10px 11px 0 16px;
  706. }
  707. font-weight: 500;
  708. font-size: 15px;
  709. color: #801D09;
  710. line-height: 21px;
  711. p {
  712. display: flex;
  713. align-items: center;
  714. justify-content: space-between;
  715. flex: 1;
  716. &>div {
  717. color: #FFFFFF;
  718. min-width: 84px;
  719. text-align: center;
  720. }
  721. }
  722. .vipGiftNum {
  723. font-weight: bold;
  724. font-size: 26px;
  725. line-height: 36px;
  726. padding-right: 2px;
  727. }
  728. .vipGiftPreviod {
  729. vertical-align: text-bottom;
  730. font-weight: 600;
  731. }
  732. }