1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* 录入成绩和证书 */
- .achievement {
- padding: 20rpx 30rpx;
-
- &-form {
-
- &-result {
- display: flex;
- justify-content: space-between;
-
- .item {
- width: calc(50% - 20rpx);
- }
- }
-
- .upload-button {
- border: solid 1px #BABABA;
- width: 184rpx;
- height: 184rpx;
- text-align: center;
- color: #4B4B4B;
- font-size: 22rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- &-icon {
- width: 62rpx;
- height: 64rpx;
- margin: 46rpx auto 0;
- }
- }
- .tips {
- font-size: 20rpx;
- color: #5F5F5F;
- margin-top: 10rpx;
- }
- }
-
- &-submit {
- width: calc(100% - 60rpx);
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- background-color: #709078;
- color: #fff;
- font-size: 30rpx;
- position: fixed;
- bottom: 64rpx;
- }
- }
|