110 lines
1.6 KiB
Plaintext
110 lines
1.6 KiB
Plaintext
|
|
/* pages/task/index/index.wxss */
|
||
|
|
page {
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.cu-item {
|
||
|
|
font-size: 30rpx;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
.search {
|
||
|
|
height: 90rpx;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.cu-bar .search-form {
|
||
|
|
background: #FFFFFF;
|
||
|
|
box-shadow: 0rpx 0rpx 12rpx 2rpx #DDECF3;
|
||
|
|
border-radius: 12rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item-bg {
|
||
|
|
padding: 0 32rpx 20rpx 32rpx;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item {
|
||
|
|
background-color: #ffffff;
|
||
|
|
padding: 32rpx 20rpx 20rpx 20rpx;
|
||
|
|
position: relative;
|
||
|
|
border-radius: 10rpx;
|
||
|
|
z-index: 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .head {
|
||
|
|
margin: 0 -20rpx;
|
||
|
|
margin-top: -32rpx;
|
||
|
|
background-color: #CDE5FC;
|
||
|
|
padding: 16rpx;
|
||
|
|
border-radius: 10rpx 10rpx 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .head .single {
|
||
|
|
width: 8rpx;
|
||
|
|
height: 36rpx;
|
||
|
|
background: #4882EE;
|
||
|
|
border-radius: 4rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .head .title {
|
||
|
|
flex: 1;
|
||
|
|
margin-left: 16rpx;
|
||
|
|
font-size: 28rpx;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #4882EE;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .head .status {
|
||
|
|
font-weight: bold;
|
||
|
|
font-size: 28rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .tv {
|
||
|
|
font-size: 28rpx;
|
||
|
|
font-weight: 500;
|
||
|
|
color: #222222;
|
||
|
|
padding-top: 20rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .bottom {
|
||
|
|
font-size: 26rpx;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #222222;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .g-container {
|
||
|
|
flex: 1;
|
||
|
|
height: 16rpx;
|
||
|
|
border-radius: 50rpx;
|
||
|
|
background: #eee;
|
||
|
|
margin: 20rpx 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .g-progress {
|
||
|
|
width: 50%;
|
||
|
|
height: inherit;
|
||
|
|
border-radius: 50rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .val {
|
||
|
|
font-size: 26rpx;
|
||
|
|
font-weight: 500;
|
||
|
|
color: #222222;
|
||
|
|
margin-left: 20rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .line {
|
||
|
|
margin: 20rpx -20rpx;
|
||
|
|
border-top: 2rpx dashed #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .bottom-img {
|
||
|
|
width: calc(100vw - 65rpx);
|
||
|
|
max-width: calc(100vw - 65rpx);
|
||
|
|
height: 40rpx;
|
||
|
|
margin: 0 -20rpx;
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
z-index: -1;
|
||
|
|
}
|