125 lines
2.0 KiB
Plaintext
125 lines
2.0 KiB
Plaintext
|
|
/* pages/task/file/index/index.wxss */
|
||
|
|
.item-bg {
|
||
|
|
padding: 20rpx 20rpx 0rpx 20rpx;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item {
|
||
|
|
background: #FFFFFF;
|
||
|
|
box-shadow: 0rpx 0rpx 12rpx 2rpx #DDECF3;
|
||
|
|
border-radius: 12rpx;
|
||
|
|
padding: 16rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .content {
|
||
|
|
padding: 15rpx 0;
|
||
|
|
border-bottom: 1rpx dashed #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .file::before {
|
||
|
|
display: block;
|
||
|
|
content: ' ';
|
||
|
|
width: 20rpx;
|
||
|
|
height: 20rpx;
|
||
|
|
margin-right: 20rpx;
|
||
|
|
border-radius: 50%;
|
||
|
|
background-color: var(--blue);
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .lab {
|
||
|
|
font-size: 28rpx;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #222222;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .val {
|
||
|
|
font-size: 28rpx;
|
||
|
|
color: #222222;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .cloud {
|
||
|
|
width: 40rpx;
|
||
|
|
height: 40rpx;
|
||
|
|
margin-left: 20rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .people {
|
||
|
|
display: inline-flex;
|
||
|
|
width: calc((100vw - 100rpx) / 4);
|
||
|
|
margin-top: 20rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .people .avatar {
|
||
|
|
width: 88rpx;
|
||
|
|
height: 88rpx;
|
||
|
|
border-radius: 50%;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.item .people .name {
|
||
|
|
font-size: 28rpx;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #222222;
|
||
|
|
}
|
||
|
|
|
||
|
|
.option {
|
||
|
|
margin-top: 30rpx;
|
||
|
|
padding: 16rpx 32rpx;
|
||
|
|
background: #FFFFFF;
|
||
|
|
box-shadow: 0rpx 0rpx 12rpx 2rpx #DDECF3;
|
||
|
|
}
|
||
|
|
|
||
|
|
.option .btn {
|
||
|
|
padding: 14rpx;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
background: #409CFF;
|
||
|
|
color: #FFFFFF;
|
||
|
|
border-radius: 12rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 弹窗 */
|
||
|
|
.pop-content {
|
||
|
|
text-align: left;
|
||
|
|
padding: 16rpx;
|
||
|
|
margin: 16rpx;
|
||
|
|
width: 95%;
|
||
|
|
background: #F5F7FC;
|
||
|
|
border-radius: 12rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pop-btn:active {
|
||
|
|
opacity: 0.8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pop-sub {
|
||
|
|
min-width: 300rpx;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 12rpx 62rpx;
|
||
|
|
color: #FFFFFF;
|
||
|
|
background: linear-gradient(161deg, #1DB2FF 0%, #047BFF 100%);
|
||
|
|
border-radius: 110rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pop-cancle {
|
||
|
|
min-width: 300rpx;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 10rpx 62rpx;
|
||
|
|
color: #FF4E4E;
|
||
|
|
border-radius: 110rpx;
|
||
|
|
border: 2rpx solid #FF4E4E;
|
||
|
|
margin-left: 30rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pop-peo {
|
||
|
|
background: #F5F7FC;
|
||
|
|
border-radius: 12rpx;
|
||
|
|
margin: 0 15rpx;
|
||
|
|
padding: 16rpx;
|
||
|
|
text-align: left;
|
||
|
|
}
|