index.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .nav-bar {
  2. position: fixed;
  3. width: 100%;
  4. top: 0;
  5. z-index: 9999;
  6. color: #fff;
  7. background: #C7DDFF;
  8. .view {
  9. width: 100%;
  10. color: #2D2D2D;
  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. .gradeContainer {
  33. width: 100%;
  34. height: 100%;
  35. background: rgba(0, 0, 0, .7);
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. position: fixed;
  40. top: 0;
  41. left: 0;
  42. z-index: 9999;
  43. .gradeBox {
  44. width: 520rpx;
  45. padding: 33rpx 40rpx 50rpx;
  46. border-radius: 20rpx;
  47. background-color: white;
  48. .title {
  49. text-align: center;
  50. font-size: 40rpx;
  51. font-weight: bold;
  52. }
  53. .content {
  54. margin-top: 55rpx;
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. .grade {
  59. padding: 12rpx 64rpx;
  60. border-radius: 50rpx;
  61. font-size: 36rpx;
  62. color: #333;
  63. background-color: #E4E4E4;
  64. }
  65. .oneRow {
  66. width: 100%;
  67. text-align: center;
  68. }
  69. .check {
  70. color: white;
  71. background-color: #1CCC69;
  72. }
  73. }
  74. .submitBox {
  75. text-align: center;
  76. .submit {
  77. width: 360rpx;
  78. margin-top: 60rpx;
  79. padding: 14rpx 0rpx;
  80. display: inline-block;
  81. background-color: #45B7FF;
  82. color: white;
  83. font-size: 42rpx;
  84. border-radius: 50rpx;
  85. }
  86. }
  87. }
  88. }