88 lines
1.5 KiB
Plaintext
88 lines
1.5 KiB
Plaintext
/* pages/s-task/s-task.wxss */
|
|
page {
|
|
background-color: #F4F8FB;
|
|
height: 100vh;
|
|
}
|
|
|
|
.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-head image {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
}
|
|
|
|
.r-task-head {
|
|
width: calc(100% - 80rpx);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.r-task-head {
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #2C2F36;
|
|
}
|
|
|
|
.t-task-base {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.t-task-base text {
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.t-task-base text:first-child {
|
|
color: #2C2F36;
|
|
}
|
|
|
|
.site {
|
|
font-size: 28rpx;
|
|
color: rgba(44, 47, 54, 0.60);
|
|
}
|
|
|
|
.t-button--size-s {
|
|
height: 56rpx!important;
|
|
line-height: 56rpx!important;
|
|
}
|
|
|
|
.t-button--base {
|
|
padding: 0 16rpx!important;
|
|
}
|
|
|
|
.t-button--size-s .t-button__icon {
|
|
font-size: 32rpx!important;
|
|
}
|
|
|
|
.t-button--size-s .t-button__loading + .t-button__content:not(:empty),
|
|
.t-button--size-s .t-button__icon + .t-button__content:not(:empty) {
|
|
margin-left: 4rpx!important;
|
|
} |