69 lines
855 B
CSS
69 lines
855 B
CSS
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
height: 99%;
|
||
|
|
margin: 0 15px 15px 15px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layout {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-box {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background-color: #fff;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#basic-box {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
width: 100%;
|
||
|
|
height: 30px;
|
||
|
|
justify-content: start;
|
||
|
|
padding: 0 0 0 20px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title p {
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: bold;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
.layuimini-container {
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
#detail-box {
|
||
|
|
width: 85%;
|
||
|
|
height: 100px;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
|
||
|
|
.num-box,
|
||
|
|
.progress-box {
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-box {
|
||
|
|
width: 20%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.progress-box>div {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
#detail-box>div {
|
||
|
|
margin: 0 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#detail-box img {
|
||
|
|
width: 50px;
|
||
|
|
height: 50px;
|
||
|
|
}
|