62 lines
886 B
Plaintext
62 lines
886 B
Plaintext
.container {
|
|
display: flex;
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
min-width: 100%;
|
|
}
|
|
|
|
.meta {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.qrCodeTips {
|
|
margin-top: 28px;
|
|
}
|
|
|
|
.counter {
|
|
font-size: var(--oak-font-size-headline-medium);
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.qrCode:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.paid {
|
|
margin-top: 30px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.text {
|
|
margin-top: 20px;
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
.padding {
|
|
flex: 1;
|
|
}
|
|
|
|
.btn {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
.btnItem {
|
|
flex: 1;
|
|
}
|
|
|
|
.btnWechatPay {
|
|
|
|
span {
|
|
color: white;
|
|
}
|
|
}
|
|
}
|