progressiveIntegral.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* 进步积分 */
  2. .integral {
  3. min-height: 100vh;
  4. background-color: #F2F2F2;
  5. &-bg {
  6. height: 560rpx;
  7. margin-top: -44px;
  8. background-image: url(../../static/img/progressive-integral-bg.png);
  9. background-position: center center;
  10. background-repeat: no-repeat;
  11. background-size: cover;
  12. }
  13. &-content {
  14. margin-top: -472rpx;
  15. &-header {
  16. text-align: center;
  17. font-size: 22rpx;
  18. color: rgba($color: #fff, $alpha: 0.5);
  19. position: relative;
  20. &-grade {
  21. font-size: 120rpx;
  22. color: #FFFFFF;
  23. font-weight: bold;
  24. }
  25. &-point {
  26. display: flex;
  27. align-items: center;
  28. justify-content: center;
  29. .point {
  30. width: 16rpx;
  31. height: 16rpx;
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. border-radius: 50%;
  36. border: solid 1px rgba($color: #fff, $alpha: 0.5);
  37. margin: 0 10rpx;
  38. view {
  39. width: 8rpx;
  40. height: 8rpx;
  41. border-radius: 50%;
  42. background-color: rgba($color: #fff, $alpha: 0.5);
  43. }
  44. }
  45. }
  46. &-rules {
  47. position: absolute;
  48. right: 0;
  49. top: 80rpx;
  50. width: 166rpx;
  51. height: 58rpx;
  52. line-height: 58rpx;
  53. background-color: rgba($color: #fff, $alpha: 0.7);
  54. border-top-left-radius: 29rpx;
  55. border-bottom-left-radius: 29rpx;
  56. color: #FF6900;
  57. }
  58. &-behavior {
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. width: calc(100% - 124rpx);
  63. margin: 64rpx auto;
  64. .item {
  65. height: 60rpx;
  66. padding: 0 44rpx;
  67. background-color: rgba($color: #fff, $alpha: 0.2);
  68. border-radius: 30rpx;
  69. font-size: 40rpx;
  70. color: #fff;
  71. display: flex;
  72. align-items: center;
  73. text {
  74. font-size: 24rpx;
  75. color: rgba($color: #fff, $alpha: 0.5);
  76. margin-left: 10rpx;
  77. }
  78. }
  79. }
  80. }
  81. &-first {
  82. display: flex;
  83. justify-content: space-between;
  84. width: calc(100% - 60rpx);
  85. margin: 30rpx auto;
  86. background-color: #fff;
  87. border-radius: 10rpx;
  88. padding: 32rpx 60rpx;
  89. &-item {
  90. text-align: center;
  91. color: #393939;
  92. font-size: 26rpx;
  93. image {
  94. width: 94rpx;
  95. height: 94rpx;
  96. margin-top: 12rpx;
  97. }
  98. }
  99. }
  100. &-list {
  101. width: calc(100% - 60rpx);
  102. margin: 0 auto;
  103. background-color: #fff;
  104. border-radius: 10rpx;
  105. padding: 30rpx;
  106. &-item {
  107. display: flex;
  108. justify-content: space-between;
  109. border-bottom: solid 1px #DBDBDB;
  110. padding: 16rpx 0;
  111. color: #000000;
  112. font-size: 28rpx;
  113. .left {
  114. view {
  115. &:last-child {
  116. color: #B2B2B2;
  117. font-size: 24rpx;
  118. margin-top: 10rpx;
  119. }
  120. }
  121. }
  122. .right {
  123. font-size: 42rpx;
  124. .reduce {
  125. color: #EF651F;
  126. }
  127. }
  128. }
  129. }
  130. }
  131. }