46 lines
734 B
CSS
46 lines
734 B
CSS
|
.pay-table {
|
||
|
width: 100%;
|
||
|
border: 1px solid var(--color-border);
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
|
||
|
.pay-table tr td {
|
||
|
padding: 10px 10px;
|
||
|
border: 1px solid var(--color-border);
|
||
|
}
|
||
|
|
||
|
.pay-table tr .table-label {
|
||
|
text-align: center;
|
||
|
background-color: #EEEEEE;
|
||
|
}
|
||
|
|
||
|
.pay-table tr td .mark {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
.qr-code {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.qr-timeout {
|
||
|
width: 330px;
|
||
|
height: 330px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background-color: rgba(0,0,0,0.8);
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
color: #FFF;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.qr-timeout .anticon {
|
||
|
font-size: 90px;
|
||
|
}
|
||
|
|
||
|
.qr-timeout .label {
|
||
|
padding: 15px;
|
||
|
}
|