index.less 1.7 KB

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