progressiveIntegral.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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: 28rpx;
  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: 20rpx;
  31. height: 20rpx;
  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: 28rpx;
  75. color: #fff;
  76. margin-left: 10rpx;
  77. }
  78. }
  79. }
  80. }
  81. &-first {
  82. width: calc(100% - 60rpx);
  83. margin: 30rpx auto;
  84. background-color: #fff;
  85. border-radius: 10rpx;
  86. padding: 32rpx 60rpx;
  87. text-align: center;
  88. color: #393939;
  89. font-size: 34rpx;
  90. &-header {
  91. margin-bottom: 20rpx;
  92. }
  93. &-box {
  94. display: flex;
  95. justify-content: space-between;
  96. }
  97. &-item {
  98. text-align: center;
  99. color: #393939;
  100. font-size: 28rpx;
  101. image {
  102. width: 94rpx;
  103. height: 94rpx;
  104. margin-top: 12rpx;
  105. }
  106. }
  107. }
  108. &-list {
  109. width: calc(100% - 60rpx);
  110. margin: 0 auto;
  111. background-color: #fff;
  112. border-radius: 10rpx;
  113. padding: 30rpx;
  114. &-item {
  115. display: flex;
  116. justify-content: space-between;
  117. border-bottom: solid 1px #DBDBDB;
  118. padding: 16rpx 0;
  119. color: #000000;
  120. font-size: 28rpx;
  121. .left {
  122. view {
  123. &:last-child {
  124. color: #525252;
  125. font-size: 26rpx;
  126. margin-top: 10rpx;
  127. }
  128. }
  129. }
  130. .right {
  131. font-size: 42rpx;
  132. .reduce {
  133. color: #EF651F;
  134. }
  135. }
  136. }
  137. }
  138. }
  139. }