index.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .nav-bar {
  2. position: fixed;
  3. width: 100%;
  4. top: 0;
  5. z-index: 9999;
  6. color: #fff;
  7. background: #00C657;
  8. }
  9. .nav-bar .view {
  10. width: 100%;
  11. color: #fff;
  12. position: absolute;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. }
  17. .nav-bar .view .selectGrade {
  18. position: absolute;
  19. left: 22rpx;
  20. width: 158rpx;
  21. height: 48rpx;
  22. line-height: 48rpx;
  23. border-radius: 25rpx;
  24. background-color: #ffffffa6;
  25. color: #333;
  26. font-size: 24rpx;
  27. text-align: center;
  28. }
  29. .nav-bar .view .title {
  30. text-align: center;
  31. }
  32. .headerBg {
  33. z-index: -1;
  34. position: absolute;
  35. top: 0px;
  36. left: 0px;
  37. width: 100%;
  38. height: 110rpx;
  39. background: url(https://reader-wx.ai160.com/images/reader/v3/top-bg.png) no-repeat;
  40. background-size: 100% 100%;
  41. background-position: center;
  42. }
  43. .gradeContainer {
  44. width: 100%;
  45. height: 100%;
  46. background: rgba(0, 0, 0, 0.7);
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. position: fixed;
  51. top: 0;
  52. left: 0;
  53. z-index: 9999;
  54. }
  55. .gradeContainer .gradeBox {
  56. width: 520rpx;
  57. padding: 33rpx 40rpx 50rpx;
  58. border-radius: 20rpx;
  59. background-color: white;
  60. }
  61. .gradeContainer .gradeBox .title {
  62. text-align: center;
  63. font-size: 40rpx;
  64. font-weight: bold;
  65. }
  66. .gradeContainer .gradeBox .content {
  67. margin-top: 55rpx;
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. }
  72. .gradeContainer .gradeBox .content .grade {
  73. padding: 12rpx 64rpx;
  74. border-radius: 50rpx;
  75. font-size: 36rpx;
  76. color: #333;
  77. background-color: #E4E4E4;
  78. }
  79. .gradeContainer .gradeBox .content .oneRow {
  80. width: 100%;
  81. text-align: center;
  82. }
  83. .gradeContainer .gradeBox .content .check {
  84. color: white;
  85. background-color: #1CCC69;
  86. }
  87. .gradeContainer .gradeBox .submitBox {
  88. text-align: center;
  89. }
  90. .gradeContainer .gradeBox .submitBox .submit {
  91. width: 360rpx;
  92. margin-top: 60rpx;
  93. padding: 14rpx 0px;
  94. display: inline-block;
  95. background-color: #45B7FF;
  96. color: white;
  97. font-size: 42rpx;
  98. border-radius: 50rpx;
  99. }