92 lines
1.3 KiB
CSS
92 lines
1.3 KiB
CSS
body {
|
|
margin: 0 15px 15px 15px;
|
|
}
|
|
|
|
.layuimini-container {
|
|
height: auto;
|
|
}
|
|
|
|
#main-box {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#basic-box {
|
|
width: 100%;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
|
|
#operBox,
|
|
#qrCodeBox {
|
|
width: 100%;
|
|
height: 25%;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.layout {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title {
|
|
width: 100%;
|
|
height: 30px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.title p {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.check {
|
|
width: 20px;
|
|
height: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.qrcode-box {
|
|
width: 100%;
|
|
}
|
|
|
|
.qrcode-child-box {
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
justify-content: start;
|
|
}
|
|
|
|
.qrcode {
|
|
border: 1px solid #f2f2f2;
|
|
border-radius: 3px;
|
|
width: 200px;
|
|
height: 200px;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
justify-content: space-evenly;
|
|
margin: 0 20px 20px 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.check {
|
|
border: 1px solid #a0cfff;
|
|
background-color: #f7f8fc;
|
|
}
|
|
|
|
.qrcode-info {
|
|
width: 120px;
|
|
height: 120px;
|
|
}
|
|
|
|
.qrcode input {
|
|
margin-left: 70%;
|
|
}
|
|
|
|
.qrcode:hover {
|
|
background-color: #f2f2f2;
|
|
} |