113 lines
1.7 KiB
Plaintext
113 lines
1.7 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: 16px;
|
|
color: #000000;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.item-title-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.title-status {
|
|
border-top-right-radius: 10px;
|
|
font-size: 12px;
|
|
padding: 2px 10px;
|
|
color: #FFFFFF;
|
|
margin-left: -10px;
|
|
border-bottom-right-radius: 10px;
|
|
background-color: #4985f8;
|
|
}
|
|
|
|
.item-desc {
|
|
font-size: 12px;
|
|
color: #101010;
|
|
width: 100%;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
word-break: break-all;
|
|
white-space: nowrap;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.item-position {
|
|
margin-top: 5px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
color: #101010;
|
|
}
|
|
|
|
.item-position image {
|
|
width: 14px;
|
|
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;
|
|
} |