index.less 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .nav-bar {
  2. position: fixed;
  3. width: 100%;
  4. top: 0;
  5. z-index: 9999;
  6. color: #fff;
  7. background: #00C657;
  8. .view {
  9. width: 100%;
  10. color: #fff;
  11. position: absolute;
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. .selectGrade {
  16. position: absolute;
  17. left: 22rpx;
  18. width: 158rpx;
  19. height: 48rpx;
  20. line-height: 48rpx;
  21. border-radius: 25rpx;
  22. background-color: #ffffffa6;
  23. color: #333;
  24. font-size: 24rpx;
  25. text-align: center;
  26. }
  27. .title {
  28. text-align: center;
  29. }
  30. }
  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, .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. .gradeBox {
  55. width: 520rpx;
  56. padding: 33rpx 40rpx 50rpx;
  57. border-radius: 20rpx;
  58. background-color: white;
  59. .title {
  60. text-align: center;
  61. font-size: 40rpx;
  62. font-weight: bold;
  63. }
  64. .content {
  65. margin-top: 55rpx;
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center;
  69. .grade {
  70. padding: 12rpx 64rpx;
  71. border-radius: 50rpx;
  72. font-size: 36rpx;
  73. color: #333;
  74. background-color: #E4E4E4;
  75. }
  76. .oneRow {
  77. width: 100%;
  78. text-align: center;
  79. }
  80. .check {
  81. color: white;
  82. background-color: #1CCC69;
  83. }
  84. }
  85. .submitBox {
  86. text-align: center;
  87. .submit {
  88. width: 360rpx;
  89. margin-top: 60rpx;
  90. padding: 14rpx 0px;
  91. display: inline-block;
  92. background-color: #45B7FF;
  93. color: white;
  94. font-size: 42rpx;
  95. border-radius: 50rpx;
  96. }
  97. }
  98. }
  99. }