2019-07-24 15:52:07 +08:00

35 lines
706 B
Plaintext

/* components/examine/examine.wxss */
@import "../details/details.wxss";
.examine-box {
position: fixed;
bottom:0;
width:100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 30rpx 20rpx;
height: 140rpx;
}
.examine-box .pass , .examine-box .fail{
color:#fff;
width: 45%;
height:100%;
border-radius: 50rpx;
line-height:80rpx;
text-align: center;
font-size: 35rpx;
letter-spacing: 4rpx;
}
.examine-box .pass {
background:#f37b1d;
box-shadow: #f37b1d 0 0 15rpx;
}
.examine-box .fail {
background:#e54d42;
box-shadow: #e54d42 0 0 15rpx;
}