123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .nav-bar {
- position: fixed;
- width: 100%;
- top: 0;
- z-index: 9999;
- color: #fff;
- background: #30C866;
- }
- .nav-bar .view {
- padding: 0px 31rpx;
- width: 100%;
- color: #fff;
- position: absolute;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .nav-bar .view .selectGrade {
- position: absolute;
- left: 22rpx;
- width: 158rpx;
- height: 48rpx;
- line-height: 48rpx;
- border-radius: 25rpx;
- background-color: #ffffffa6;
- color: #333;
- font-size: 24rpx;
- text-align: center;
- }
- .nav-bar .view .title {
- text-align: center;
- }
- .gradeContainer {
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.7);
- display: flex;
- justify-content: center;
- align-items: center;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999;
- }
- .gradeContainer .gradeBox {
- width: 530rpx;
- padding: 33rpx 40rpx 50rpx;
- border-radius: 20rpx;
- background-color: white;
- }
- .gradeContainer .gradeBox .title {
- text-align: center;
- font-size: 40rpx;
- font-weight: bold;
- }
- .gradeContainer .gradeBox .content {
- margin-top: 65rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .gradeContainer .gradeBox .content .grade {
- padding: 14rpx 64rpx;
- border-radius: 50rpx;
- font-size: 36rpx;
- color: #333;
- background-color: #E4E4E4;
- }
- .gradeContainer .gradeBox .content .check {
- color: white;
- background-color: #1CCC69;
- }
- .gradeContainer .gradeBox .submitBox {
- text-align: center;
- }
- .gradeContainer .gradeBox .submitBox .submit {
- margin-top: 60rpx;
- padding: 16rpx 118rpx;
- display: inline-block;
- background-color: #F7991B;
- color: white;
- font-size: 42rpx;
- border-radius: 50rpx;
- }
|