index.module.less 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .registrationContainer {
  2. min-height: 100vh;
  3. background: linear-gradient(180deg, #C9EDFD 0%, #CCF0FF 100%);
  4. .registration {
  5. min-height: 100vh;
  6. background: url('./images/banner.png') no-repeat top;
  7. background-size: contain;
  8. overflow: hidden;
  9. }
  10. .inputGroup {
  11. margin-top: 379px;
  12. position: relative;
  13. padding: 0 18px;
  14. .input {
  15. background: rgba(242, 242, 242, .56);
  16. border-radius: 29px;
  17. --van-cell-line-height: 24px;
  18. --van-field-icon-size: 24px;
  19. --van-padding-base: 10px;
  20. padding: 8px;
  21. font-size: 14px;
  22. color: #AAAAAA;
  23. :global {
  24. .van-field__control {
  25. font-size: 14px;
  26. // color: #AAAAAA;
  27. }
  28. }
  29. }
  30. .btnGroup {
  31. margin: 30px 73px 0;
  32. --van-button-default-height: 52px;
  33. :global {
  34. .van-button--disabled::before {
  35. opacity: 0;
  36. }
  37. .van-button__text {
  38. p {
  39. font-weight: 500;
  40. font-size: 16px;
  41. color: #FFFFFF;
  42. line-height: 22px;
  43. }
  44. span {
  45. font-weight: 400;
  46. font-size: 12px;
  47. color: rgba(255, 255, 255, 0.8);
  48. line-height: 17px;
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }
  55. .popupContainer {
  56. width: 295px;
  57. border-radius: 20px;
  58. padding: 13px 20px 20px;
  59. background: url('./images/top_bg.png') no-repeat top;
  60. background-size: contain;
  61. background-color: #FFFFFF;
  62. .title {
  63. width: 215px;
  64. height: 65px;
  65. display: block;
  66. margin: 0 auto;
  67. }
  68. .content {
  69. font-weight: 400;
  70. font-size: 15px;
  71. color: #666666;
  72. line-height: 23px;
  73. padding: 10px 0 20px
  74. }
  75. .pBtnGroup {
  76. padding: 0 50px;
  77. }
  78. }