84 lines
1.4 KiB
Plaintext
84 lines
1.4 KiB
Plaintext
|
|
/* pages/t-j/y-j/index/index.wxss */
|
||
|
|
.table {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
background-color: white;
|
||
|
|
margin: 10rpx;
|
||
|
|
border-right: 10rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table .tab-item {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
align-items: center;
|
||
|
|
width: 100%;
|
||
|
|
padding: 10rpx;
|
||
|
|
border-radius: 10rpx;
|
||
|
|
border-bottom: 1rpx solid #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table .tab-item-checked {
|
||
|
|
color: white;
|
||
|
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
|
}
|
||
|
|
|
||
|
|
.table .tab-item .lab {
|
||
|
|
font-size: 30rpx;
|
||
|
|
width: 30vw;
|
||
|
|
text-align: center;
|
||
|
|
border-right: 1rpx solid #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table .tab-item .val {
|
||
|
|
font-size: 35rpx;
|
||
|
|
font-weight: bold;
|
||
|
|
padding-left: 10vw;
|
||
|
|
padding-right: 10rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table view:last-child {
|
||
|
|
border-bottom: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content .filter {
|
||
|
|
margin: 0 10rpx;
|
||
|
|
width: calc(100vw - 20rpx);
|
||
|
|
height: 80rpx;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
background-color: white;
|
||
|
|
border-radius: 10rpx;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content .filter picker {
|
||
|
|
flex: 1;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
font-size: 30rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content .item {
|
||
|
|
background-color: #ffffff;
|
||
|
|
padding: 32rpx 20rpx 20rpx 20rpx;
|
||
|
|
box-shadow: 0px 0px 6px 1px #DDECF3;
|
||
|
|
margin: 16rpx 16rpx 0 16rpx;
|
||
|
|
border-radius: 10rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.charts {
|
||
|
|
width: 100%;
|
||
|
|
height: 300rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.line {
|
||
|
|
width: 1rpx;
|
||
|
|
height: 80%;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|