index.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .gradeContainer {
  2. width: 100%;
  3. height: 100%;
  4. background: rgba(0, 0, 0, .7);
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. z-index: 9999;
  12. .gradeBox {
  13. width: 530rpx;
  14. padding: 33rpx 40rpx 50rpx;
  15. border-radius: 20rpx;
  16. background-color: white;
  17. .title {
  18. text-align: center;
  19. font-size: 40rpx;
  20. font-weight: bold;
  21. }
  22. .content {
  23. margin-top: 65rpx;
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. .grade {
  28. padding: 14rpx 64rpx;
  29. border-radius: 50rpx;
  30. font-size: 36rpx;
  31. color: #333;
  32. background-color: #E4E4E4;
  33. }
  34. .check {
  35. color: white;
  36. background-color: #1CCC69;
  37. }
  38. }
  39. .submitBox {
  40. text-align: center;
  41. .submit {
  42. margin-top: 60rpx;
  43. padding: 16rpx 118rpx;
  44. display: inline-block;
  45. background-color: #F7991B;
  46. color: white;
  47. font-size: 42rpx;
  48. border-radius: 50rpx;
  49. }
  50. }
  51. }
  52. }