stars.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* pages/contest/stars/stars.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. .home {
  6. width: 40rpx;
  7. height: 40rpx;
  8. position: absolute;
  9. top: 70rpx;
  10. left: 50rpx;
  11. z-index: 99;
  12. }
  13. .page-title {
  14. position: absolute;
  15. z-index: 1;
  16. width: 100%;
  17. font-size: 32rpx;
  18. font-weight: 400;
  19. color: #FFFFFF;
  20. top: 68rpx;
  21. text-align: center;
  22. }
  23. .bg {
  24. position: fixed;
  25. background: transparent;
  26. width: 100%;
  27. height: 100vh;
  28. top: 0;
  29. z-index: 0;
  30. }
  31. /* pages/contest/score/score.wxss */
  32. page {
  33. background: #fff;
  34. }
  35. .page-title {
  36. position: absolute;
  37. z-index: 1;
  38. width: 100%;
  39. font-size: 32rpx;
  40. font-weight: 400;
  41. color: #FFFFFF;
  42. top: 68rpx;
  43. text-align: center;
  44. }
  45. .bg {
  46. position: fixed;
  47. background: transparent;
  48. width: 100%;
  49. height: 100vh;
  50. top: 0;
  51. z-index: 0;
  52. }
  53. .content {
  54. width: 100%;
  55. height: 100vh;
  56. position: relative;
  57. z-index: 9;
  58. display: flex;
  59. justify-content: center;
  60. align-items: center;
  61. }
  62. .kuang {
  63. width: 730rpx;
  64. position: absolute;
  65. background: transparent;
  66. z-index: 9;
  67. }
  68. .detail {
  69. position: relative;
  70. z-index: 9;
  71. display: flex;
  72. flex-direction: column;
  73. align-items: center;
  74. height: 970rpx;
  75. }
  76. .stars-group {
  77. display: flex;
  78. padding-top: 280rpx;
  79. }
  80. .stars-group > image {
  81. width: 54rpx;
  82. height: 54rpx;
  83. position: relative;
  84. z-index: 10;
  85. margin: 0 15rpx;
  86. }
  87. .detail-text {
  88. font-size: 26rpx;
  89. font-weight: 400;
  90. color: #333333;
  91. margin-top: 40rpx;
  92. }
  93. .confim-button{
  94. width: 450rpx;
  95. height: 100rpx;
  96. border-radius: 110rpx;
  97. background-image: linear-gradient(to right, #57A8EF, #6247FF);
  98. text-align: center;
  99. line-height: 100rpx;
  100. font-size: 28rpx;
  101. font-weight: 600;
  102. color: #FFFFFF;
  103. margin-top: 56rpx;
  104. }