51 lines
876 B
Plaintext
51 lines
876 B
Plaintext
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
|
|
.detail {
|
|
width: 60%;
|
|
max-width: 600px;
|
|
|
|
.value {
|
|
font-weight: bolder;
|
|
}
|
|
}
|
|
|
|
.paid {
|
|
margin-top: 10px;
|
|
margin-bottom: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.text {
|
|
margin-top: 8px;
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
|
|
.oper {
|
|
margin-top: 40px;
|
|
width: 60%;
|
|
max-width: 600px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.qrCodeTips {
|
|
margin-top: 28px;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
width: 60%;
|
|
max-width: 600px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
} |