89 lines
1.5 KiB
Plaintext
89 lines
1.5 KiB
Plaintext
|
/* pages/t-task/t-task.wxss */
|
||
|
page {
|
||
|
background-color: #F4F8FB;
|
||
|
}
|
||
|
|
||
|
.container t-tab-panel {
|
||
|
background-color: #F4F8FB;
|
||
|
}
|
||
|
|
||
|
.t-search {
|
||
|
background: #fff;
|
||
|
display: block;
|
||
|
padding: 30rpx;
|
||
|
--td-search-action-color: #3D6DF0;
|
||
|
}
|
||
|
|
||
|
.task-item {
|
||
|
margin: 30rpx 30rpx 0;
|
||
|
padding: 30rpx;
|
||
|
background-color: white;
|
||
|
border-radius: 16rpx;
|
||
|
}
|
||
|
|
||
|
.task-head {
|
||
|
margin-bottom: 20rpx;
|
||
|
}
|
||
|
|
||
|
.task-head text {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
line-height: 1.6;
|
||
|
color: #2C2F36;
|
||
|
}
|
||
|
|
||
|
.task-head text:first-child {
|
||
|
font-size: 32rpx;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.task-head text:last-child {
|
||
|
font-size: 24rpx;
|
||
|
opacity: 0.6;
|
||
|
}
|
||
|
|
||
|
.t-task-content {
|
||
|
margin-bottom: 30rpx;
|
||
|
padding-bottom: 30rpx;
|
||
|
border-bottom: 1rpx solid #E5E5E5;
|
||
|
}
|
||
|
|
||
|
.t-task-content text {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
text-align: justify;
|
||
|
line-height: 1.6;
|
||
|
font-size: 28rpx;
|
||
|
}
|
||
|
|
||
|
.t-task-content text:first-child {
|
||
|
margin-bottom: 20rpx;
|
||
|
}
|
||
|
|
||
|
.t-task-time {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.l-task-time {
|
||
|
display: flex;
|
||
|
justify-content: flex-start;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.l-task-time t-count-down {
|
||
|
margin-right: 20rpx;
|
||
|
}
|
||
|
|
||
|
.t-count-down--square .t-count-down__item,
|
||
|
.t-count-down--round .t-count-down__item {
|
||
|
background-color: #3D6DF0!important;
|
||
|
border-radius: 4rpx!important;
|
||
|
}
|
||
|
|
||
|
.t-count-down--square .t-count-down__split,
|
||
|
.t-count-down--round .t-count-down__split {
|
||
|
color: #3D6DF0!important;
|
||
|
}
|