1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .gradeContainer {
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, .7);
- display: flex;
- justify-content: center;
- align-items: center;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999;
- .gradeBox {
- width: 530rpx;
- padding: 33rpx 40rpx 50rpx;
- border-radius: 20rpx;
- background-color: white;
- .title {
- text-align: center;
- font-size: 40rpx;
- font-weight: bold;
- }
- .content {
- margin-top: 65rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .grade {
- padding: 14rpx 64rpx;
- border-radius: 50rpx;
- font-size: 36rpx;
- color: #333;
- background-color: #E4E4E4;
- }
- .check {
- color: white;
- background-color: #1CCC69;
- }
- }
- .submitBox {
- text-align: center;
- .submit {
- margin-top: 60rpx;
- padding: 16rpx 118rpx;
- display: inline-block;
- background-color: #F7991B;
- color: white;
- font-size: 42rpx;
- border-radius: 50rpx;
- }
- }
- }
- }
|