131 lines
2.1 KiB
Plaintext
131 lines
2.1 KiB
Plaintext
/* pages/t-j/j-b-x-x/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 {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.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 .search {
|
|
background-color: white;
|
|
margin: 10rpx;
|
|
height: 80rpx;
|
|
border-radius: 10rpx;
|
|
padding: 0 20rpx;
|
|
font-size: 28rpx;
|
|
position: sticky;
|
|
top: 90rpx;
|
|
border-bottom: 1rpx solid #f5f5f5;
|
|
}
|
|
|
|
.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;
|
|
position: sticky;
|
|
top: 0;
|
|
border-bottom: 1rpx solid #f5f5f5;
|
|
}
|
|
|
|
.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;
|
|
font-size: 32rpx;
|
|
color: #222222;
|
|
}
|
|
|
|
.content .item .single::before {
|
|
display: inline-block;
|
|
content: '';
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
margin-right: 10rpx;
|
|
border-radius: 50%;
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.content .item .child:not(:last-child) {
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.content .item .lab {
|
|
margin-left: 16rpx;
|
|
}
|
|
|
|
.content .item .val {
|
|
margin-left: 16rpx;
|
|
color: #000000;
|
|
}
|
|
|
|
.content .item .age {
|
|
margin-left: 100rpx;
|
|
}
|
|
|
|
.content .item .phone {
|
|
color: var(--blue);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.content .item .address {
|
|
color: #666666;
|
|
}
|
|
|
|
.line {
|
|
width: 1rpx;
|
|
height: 80%;
|
|
background-color: #f5f5f5;
|
|
} |