index.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .invite {
  2. width: 100%;
  3. padding: 0 20rpx 400rpx;
  4. box-sizing: border-box;
  5. min-height: 100vh;
  6. background-color: #291068;
  7. .headerBg {
  8. position: absolute;
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. height: 811rpx;
  13. }
  14. .progressBox {
  15. position: relative;
  16. top: 380rpx;
  17. z-index: 2;
  18. padding: 20rpx;
  19. box-sizing: border-box;
  20. border: 20rpx solid #6B39D8;
  21. background-color: #2D1F64;
  22. border-radius: 42rpx;
  23. .row {
  24. position: relative;
  25. width: 100%;
  26. height: 110rpx;
  27. margin-bottom: 80rpx;
  28. display: flex;
  29. align-items: flex-end;
  30. justify-content: space-between;
  31. .line {
  32. position: absolute;
  33. top: 80rpx;
  34. left: 50%;
  35. transform: translateX(-50%);
  36. width: 90%;
  37. height: 8rpx;
  38. background-color: #FFD67B;
  39. }
  40. .numBox {
  41. position: relative;
  42. z-index: 2;
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. .num {
  47. margin-bottom: 6rpx;
  48. font-size: 22rpx;
  49. color: #FFFFFF;
  50. }
  51. .icon {
  52. width: 60rpx;
  53. height: 60rpx;
  54. }
  55. .current {
  56. position: absolute;
  57. top: 30rpx;
  58. left: 0rpx;
  59. width: 87rpx;
  60. height: 64rpx;
  61. }
  62. .rewardNum {
  63. position: absolute;
  64. bottom: 24rpx;
  65. font-weight: bold;
  66. font-size: 24rpx;
  67. color: #626262;
  68. }
  69. .rewardN {
  70. position: absolute;
  71. bottom: 8rpx;
  72. font-size: 14rpx;
  73. color: #626262;
  74. }
  75. .reward {
  76. width: 144rpx;
  77. height: 109rpx;
  78. }
  79. }
  80. .qualify {
  81. .rewardNum,
  82. .rewardN {
  83. color: #962304;
  84. }
  85. }
  86. }
  87. .btns {
  88. display: flex;
  89. align-items: center;
  90. justify-content: space-between;
  91. margin-bottom: 70rpx;
  92. .transcript {
  93. width: 184rpx;
  94. height: 68rpx;
  95. }
  96. .resetBtn {
  97. font-size: 0px;
  98. }
  99. .inviteBtn {
  100. width: 390rpx;
  101. height: 68rpx;
  102. }
  103. }
  104. }
  105. }