61 lines
816 B
CSS
61 lines
816 B
CSS
.item {
|
|
display:flex;
|
|
height:4.08rem;
|
|
align-items:center;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
padding:0 0.7rem;
|
|
justify-content:space-between;
|
|
}
|
|
|
|
.label{
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.value{
|
|
font-size: 1.0rem;
|
|
color:rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
.item>div:nth-child(1) {
|
|
display:flex;
|
|
align-items:center;
|
|
margin: 0 0 0 1rem;
|
|
}
|
|
|
|
.item>div:nth-child(2) {
|
|
margin: 0 1rem 0 0;
|
|
}
|
|
|
|
.item img {
|
|
height: 1rem;
|
|
width: 1rem;
|
|
}
|
|
|
|
.blackMask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
opacity: 0.9;
|
|
background-color: #333;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.qrcodeContianer {
|
|
width: 60vw;
|
|
z-index: 101;
|
|
}
|
|
|
|
.qrcodeContianer img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|