51 lines
740 B
Plaintext
51 lines
740 B
Plaintext
/* pages/task/index.wxss */
|
|
.top-wrap {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
background-color: #ffffff;
|
|
z-index: 99;
|
|
box-shadow: 0 0 20rpx -5rpx rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
swiper {
|
|
height: 100vh;
|
|
}
|
|
|
|
.cells {
|
|
background: #ffffff;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.cell {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.cell:not(:last-child) {
|
|
border-bottom: 1rpx solid #ebedf0;
|
|
}
|
|
|
|
.cell .name {
|
|
overflow: hidden; /* 超出部分不显示 */
|
|
height: 50rpx;
|
|
margin-bottom: 12rpx;
|
|
}
|
|
|
|
checkbox {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.cell .remark {
|
|
display: flex;
|
|
align-items:center;
|
|
color: #999999;
|
|
}
|
|
|
|
.checkedBox .t-checkbox__content {
|
|
text-decoration:line-through;
|
|
}
|
|
|