index.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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: 530rpx;
  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: 65rpx;
  56. display: flex;
  57. justify-content: space-between;
  58. align-items: center;
  59. .grade {
  60. padding: 14rpx 64rpx;
  61. border-radius: 50rpx;
  62. font-size: 36rpx;
  63. color: #333;
  64. background-color: #E4E4E4;
  65. }
  66. .check {
  67. color: white;
  68. background-color: #1CCC69;
  69. }
  70. }
  71. .submitBox {
  72. text-align: center;
  73. .submit {
  74. margin-top: 60rpx;
  75. padding: 16rpx 118rpx;
  76. display: inline-block;
  77. background-color: #F7991B;
  78. color: white;
  79. font-size: 42rpx;
  80. border-radius: 50rpx;
  81. }
  82. }
  83. }
  84. }