| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .task-item {
- width: 100vw;
- box-sizing: border-box;
- background-color: #fff;
- margin-bottom: 20rpx;
- .head {
- display: flex;
- padding: 20rpx 30rpx;
- .left {
- width: 80%;
- font-size: 24rpx;
- color: #333333;
- line-height: 34rpx;
- word-wrap: break-word;
- }
- .right {
- text-align: right;
- flex: 1;
- height: 34rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- color: #3874F6;
- }
- }
- .footer {
- padding-left: 30rpx;
- box-sizing: border-box;
- .box {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 50rpx;
- width: 100%;
- box-sizing: border-box;
- border-bottom: 1rpx solid #ddd;
- padding-right: 40rpx;
- .tag-box {
- display: flex;
- width: 90%;
- height: 100%;
- .tag {
- height: 40rpx;
- line-height: 40rpx;
- border-radius: 20rpx;
- background-color: #FAAB16;
- font-size: 20rpx;
- color: #FFFFFF;
- padding: 0 10rpx;
- margin-right: 10rpx;
- }
- }
- }
- }
- .unfold {
- .empty {
- width: 100%;
- text-align: center;
- padding: 20rpx 0;
- font-size: 24rpx;
- color: #999;
- }
- }
- }
|