12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .payResultContainer{
- height: 100vh;
- background-color: #f2f2f2;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- }
- .signBox{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- flex-grow: 1;
- }
- .signBox icon{
- flex-grow: 2;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .signBox text {
- font-weight: 600;
- flex-grow: 1;
- }
- .buttonBox{
- display: flex;
- flex-direction: column;
- justify-content: start;
- align-items: center;
- flex-grow: 1;
- width: 90%;
- margin-top: 8%;
- }
- .checkOrderBtn{
- background-color: #0d7ee7;
- color: #FFFFFF;
- height: 6vh;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: small;
- font-weight: 600;
- border-radius: 10rpx;
- margin-bottom: 10%;
- }
- .finishBtn{
- background-color: #FFFFFF;
- color: #0d7ee7;
- height: 6vh;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: small;
- font-weight: 600;
- border-radius: 10rpx;
- border: #0d7ee7 solid 5rpx;
- }
- .bottomTip{
- display: flex;
- flex-direction: column;
- justify-content: center;
- flex-grow: 1;
- color: #999999;
- }
|