2025-06-19 17:33:18 +08:00

451 lines
10 KiB
Plaintext

/* pages/statement/reportStatement/reportStatement.wxss */
.container {
min-height: 100vh;
background: #EFF1F4;
position: relative;
.search-container {
padding: 10px 8px;
// border-top: 1px solid #DBDBDB;
background: #ffffff;
.row {
margin-bottom: 8px;
display: flex;
justify-content: space-between;
align-items: center;
>.number-plate, >.select {
width: calc((100% - 6px) / 2);
height: 36px;
padding: 8px 10px;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid #E6EAF2;
display: flex;
align-items: center;
}
>.number-plate {
.icon_search {
width: 20px;
height: 20px;
margin-right: 8px;
image {
width: 100%;
height: 100%;
}
}
input {
flex: 1;
font-size: 14px;
}
.btn {
width: 18px;
padding: 0 4px;
color: #949CB5;
font-size: 18px;
}
}
>.select {
width: calc((100% - 6px) / 2);
picker {
width: 100%;
position: relative;
.picker {
width: 100%;
height: 38px;
// padding-left: 14px;
box-sizing: border-box;
// border: 1px solid #E6EAF2;
border-radius: 4px;
font-size: 14px;
display: flex;
// justify-content: space-between;
align-items: center;
}
.picker::after {
content: '';
width: 0;
height: 0;
border-top: 6px solid #636B83;
border-right: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid transparent;
position: absolute;
top: 50%;
right: 14px;
transform: translateY(-2px);
}
}
}
.line {
width: 10px;
height: 1px;
background: #949CB5;
}
.date {
width: calc((100% - 10px - 70px) / 2);
height: 36px;
padding: 8px 10px;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid #E6EAF2;
display: flex;
align-items: center;
.icon {
width: 16px;
height: 16px;
margin-left: 8px;
image {
width: 100%;
height: 100%;
}
}
input {
flex: 1;
color: #2E3A4F;
font-size: 14px;
}
}
>.btn {
// height: 36px;
padding: 8px 14px;
margin-left: 12px;
background: linear-gradient(90deg, #3B7CFC 0%, #548BFC 100%);
border-radius: 8px;
color: #fff;
font-size: 15px;
display: flex;
align-items: center;
white-space: nowrap;
}
}
}
.content {
height: calc(100vh - 110px);
padding: 8px 14px;
box-sizing: border-box;
overflow-y: auto;
.item {
margin-bottom: 10px;
border-radius: 8px;
background: #fff;
.top {
padding: 10px 12px;
box-shadow: 0px 1px 0px 0px #E6EAF2;
display: flex;
justify-content: space-between;
.label {
display: flex;
align-items: center;
image {
width: 36px;
height: 36px;
margin-right: 12px;
display: inline-block;
}
.title {
color: #606266;
font-size: 14px;
}
}
.val {
color: #2C6AF3;
font-size: 32px;
font-weight: bold;
}
}
.chart {
padding: 10px 10px 24px;
position: relative;
.bg {
width: calc((100% - 20px) * 0.6);
height: calc(100% - 40px);
position: absolute;
top: 10px;
left: calc(36% + 4px);
.line {
width: 0px;
height: 100%;
border: 1px rgba(216,214,214,0.5);
border-style: solid;
position: absolute;
left: 0;
.num {
color: #606266;
font-size: 10px;
position: absolute;
bottom: -20px;
transform: translateX(-50%);
}
}
.line:nth-child(2) {
border-style: dashed;
left: 20%;
}
.line:nth-child(3) {
border-style: dashed;
left: 40%;
}
.line:nth-child(4) {
border-style: dashed;
left: 60%;
}
.line:nth-child(5) {
border-style: dashed;
left: 80%;
}
.line:nth-child(6) {
border-style: dashed;
left: 100%;
}
}
.item-num {
margin-bottom: 6px;
position: relative;
display: flex;
align-items: center;
.label {
width: 36%;
margin-right: 2px;
box-sizing: border-box;
font-size: 14px;
color: #606266;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.num {
width: 60%;
color: #606266;
font-size: 14px;
display: flex;
align-items: center;
.line {
height: 8px;
background: linear-gradient(90deg, #3B7CFC 0%, #548BFC 100%);
border-radius: 2px;
}
}
}
}
}
}
.table-content {
height: calc(100vh - 110px);
.header {
height: 40px;
line-height: 40px;
background: #E9EBEE;
border-bottom: 1px solid #D3D8E2;
text-align: center;
display: flex;
.th {
color: #3C475B;
font-size: 15px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
.icon {
width: 14px;
height: 14px;
margin-left: 12px;
image {
width: 100%;
height: 100%;
display: block;
}
}
}
.th:first-child, .th:nth-child(2){
width: 30%;
}
.th:nth-child(3), .th:nth-child(4), .th:nth-child(5), .th:nth-child(6) {
width: 10%;
}
}
.list {
height: calc(100% - 40px);
overflow-y: auto;
.row {
height: 32px;
line-height: 32px;
background: #FFFFFF;
border-bottom: 1px solid #D3D8E2;
text-align: center;
display: flex;
.td {
color: #606266;
font-size: 14px;
white-space: nowrap;
overflow: hidden;
}
.td:first-child, .td:nth-child(2){
width: 30%;
padding: 0 2px;
box-sizing: border-box;
text-overflow: ellipsis;
}
.td:nth-child(3), .td:nth-child(4), .td:nth-child(5), .td:nth-child(6) {
width: 10%;
}
}
}
}
}
// 时间选择器
.date-btn-box {
// background: #fff;
// border-radius: 4px 4px 0 0;
border-bottom: 2rpx solid #F1F1F1;
font-size: 30rpx;
display: flex;
justify-content: space-between;
align-items: center;
.btn {
padding: 20rpx 36rpx;
color: #888888;
}
.btn-confirm{
color: #3D7EEA;
}
}
.picker-box {
width: 100%;
display: flex;
justify-content: space-between;
}
.more-search {
padding: 8px 14px 12px;
border-radius: 0 0 8px 8px;
background: #fff;
.row {
margin-bottom: 8px;
.label {
margin: 6px;
color: #394458;
font-size: 14px;
}
.date-content {
display: flex;
align-items: center;
justify-content: space-between;
.line {
width: 10px;
height: 1px;
background: #949CB5;
}
.date {
width: calc((100% - 10px - 30px) / 2);
height: 36px;
padding: 8px 10px;
box-sizing: border-box;
border-radius: 4px;
border: 1px solid #E6EAF2;
display: flex;
align-items: center;
.icon {
width: 16px;
height: 16px;
margin-left: 8px;
image {
width: 100%;
height: 100%;
}
}
input {
flex: 1;
color: #2E3A4F;
font-size: 14px;
}
}
}
.select-content {
>.project-select {
width: 100%;
border: 1px solid #DBDBDB;
border-radius: 4px;
background: #ffffff;
picker {
width: 100%;
position: relative;
.picker {
width: 100%;
height: 36px;
padding-left: 8px;
box-sizing: border-box;
// border: 1px solid #E6EAF2;
border-radius: 4px;
font-size: 14px;
display: flex;
// justify-content: space-between;
align-items: center;
}
.picker::after {
content: '';
width: 0;
height: 0;
border-top: 6px solid #636B83;
border-right: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid transparent;
position: absolute;
top: 50%;
right: 14px;
transform: translateY(-2px);
}
}
}
}
.checkbox-content {
width: 100%;
max-height: 96px;
overflow-y: auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
.item {
width: 48%;
height: 36px;
line-height: 36px;
margin-bottom: 8px;
background: #FFFFFF;
border-radius: 4px;
border: 1px solid #E6EAF2;
color: #2E3A4F;
font-size: 14px;
text-align: center;
}
.check {
background: #E9F2FF;
border: 1px solid #24A2FE;
}
}
.btn-content {
display: flex;
justify-content: space-between;
align-items: center;
.btn {
width: 48%;
height: 40px;
line-height: 40px;
box-sizing: border-box;
background: #FFFFFF;
border-radius: 8px;
border: 1px solid #D6D6D6;
color: #2E3A4F;
font-size: 15px;
font-weight: bold;
text-align: center;
}
.btn-confirm {
background: linear-gradient(90deg, #3B7CFC 0%, #548BFC 100%);
border: 0;
color: #fff;
}
}
}
}