97 lines
1.5 KiB
Plaintext
97 lines
1.5 KiB
Plaintext
|
/* pages/a-task/a-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 {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
border-bottom: 1rpx solid #E5E5E5;
|
||
|
padding-bottom: 30rpx;
|
||
|
margin-bottom: 30rpx;
|
||
|
}
|
||
|
|
||
|
.task-icon {
|
||
|
width: 56rpx;
|
||
|
height: 56rpx;
|
||
|
border-radius: 28rpx;
|
||
|
text-align: center;
|
||
|
line-height: 56rpx;
|
||
|
font-size: 24rpx;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.blue {
|
||
|
background-color: #3D6DF0;
|
||
|
}
|
||
|
|
||
|
.yellow {
|
||
|
background-color: #F1AE00;
|
||
|
}
|
||
|
|
||
|
.r-task-head {
|
||
|
width: calc(100% - 70rpx);
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.r-task-head {
|
||
|
font-size: 28rpx;
|
||
|
color: #2C2F36;
|
||
|
}
|
||
|
|
||
|
.t-task-base {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
line-height: 2;
|
||
|
}
|
||
|
|
||
|
.t-task-base text {
|
||
|
font-size: 28rpx;
|
||
|
}
|
||
|
|
||
|
.t-task-base text:first-child {
|
||
|
color: #2C2F36;
|
||
|
width: 200rpx;
|
||
|
}
|
||
|
|
||
|
.t-task-base text.time {
|
||
|
color: rgba(44, 47, 54, 0.60);
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.p-task-base {
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
align-items: center;
|
||
|
width: 160rpx;
|
||
|
}
|
||
|
|
||
|
.p-task-base text {
|
||
|
margin-left: 10rpx;
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(44, 47, 54, 0.60);
|
||
|
}
|
||
|
|