87 lines
1.3 KiB
Plaintext
87 lines
1.3 KiB
Plaintext
/* pages/census/census.wxss */
|
|
.page-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #f5f5f5;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.btn-submit {
|
|
width: 100%;
|
|
position: fixed;
|
|
bottom: 0;
|
|
height: 48px;
|
|
background-color: #4985f8;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-self: center;
|
|
color: #FFFFFF;
|
|
z-index: 23;
|
|
}
|
|
|
|
.scroll-content {
|
|
|
|
border-radius: 10px;
|
|
padding: 5px;
|
|
width: 97%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.item-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
padding: 10px;
|
|
background-color: #ffffff;
|
|
margin-top: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.item-title {
|
|
font-size: 14px;
|
|
color: #000000;
|
|
}
|
|
|
|
.item-desc {
|
|
font-size: 12px;
|
|
color: #5c5b5b;
|
|
}
|
|
|
|
.item-position {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
color: #4985f8;
|
|
}
|
|
|
|
.item-position image {
|
|
width: 18px;
|
|
height: 14px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.line {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
border: 1px dashed #ebe9e9;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.t-empty_image {
|
|
width: 48px !important;
|
|
height: 48px !important;
|
|
}
|
|
.empty-cls{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |