index.wxss 2.0 KB

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