You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
2.1 KiB
145 lines
2.1 KiB
5 years ago
|
/* components/event/itemProcessList/itemProcessList.wxss */
|
||
|
@import "../../../style/z.wxss";
|
||
|
|
||
|
/* 处理进度 */
|
||
|
.process-title {
|
||
|
font-size: 30rpx;
|
||
|
font-weight: bold;
|
||
|
color: #333333;
|
||
|
padding: 24rpx 0;
|
||
|
border-bottom: 1rpx solid #e7eeee;
|
||
|
}
|
||
|
|
||
|
.process-list {
|
||
|
color: #909da7;
|
||
|
padding-top: 50rpx;
|
||
|
}
|
||
|
|
||
|
.process-icon {
|
||
|
width: 46rpx;
|
||
|
height: 26rpx;
|
||
|
margin-top: -34rpx;
|
||
|
}
|
||
|
|
||
|
.process-icon-image {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.process-icon-1000 {
|
||
|
width: 20rpx;
|
||
|
height: 20rpx;
|
||
|
background: #C2CED8;
|
||
|
border-radius: 50%;
|
||
|
margin-top: -34rpx;
|
||
|
}
|
||
|
|
||
|
.process-box {
|
||
|
padding-top: 12rpx;
|
||
|
}
|
||
|
|
||
|
.process-state {
|
||
|
font-size: 26rpx;
|
||
|
margin-top: -24rpx;
|
||
|
margin-left: -10rpx;
|
||
|
}
|
||
|
|
||
|
.process-time {
|
||
|
font-size: 20rpx;
|
||
|
}
|
||
|
|
||
|
.process-dept {
|
||
|
font-size: 32rpx;
|
||
|
line-height: 48rpx;
|
||
|
}
|
||
|
|
||
|
.process-advice {
|
||
|
font-size: 32rpx;
|
||
|
}
|
||
|
|
||
|
.process-dept-left-160 {
|
||
|
width: 196rpx
|
||
|
}
|
||
|
|
||
|
.process-dept-right-160 {
|
||
|
width: calc(100% - 160rpx);
|
||
|
}
|
||
|
|
||
|
.process-dept-left-200 {
|
||
|
width: 200rpx
|
||
|
}
|
||
|
|
||
|
.process-dept-right-200 {
|
||
|
width: calc(100% - 200rpx);
|
||
|
}
|
||
|
|
||
|
.process-text-first {
|
||
|
color: #3c6cfc !important;
|
||
|
}
|
||
|
|
||
|
.process-text {
|
||
|
color: #333333;
|
||
|
/* overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
width: 100%;
|
||
|
display: block; */
|
||
|
}
|
||
|
|
||
|
|
||
|
/* 回应图片 */
|
||
|
.grit {
|
||
|
display: grid;
|
||
|
grid-gap: 4rpx;
|
||
|
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
|
||
|
}
|
||
|
|
||
|
.content-image {
|
||
|
width: auto;
|
||
|
border-radius: 16rpx;
|
||
|
/* background: #f7f7f7; */
|
||
|
margin-top: 18rpx;
|
||
|
}
|
||
|
|
||
|
.content-image1 {
|
||
|
height: 290rpx;
|
||
|
}
|
||
|
|
||
|
.content-image2 {
|
||
|
height: 200rpx;
|
||
|
}
|
||
|
|
||
|
.content-image3 {
|
||
|
height: 180rpx;
|
||
|
}
|
||
|
|
||
|
/* 折叠 */
|
||
|
.content{
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
text-overflow: -o-ellipsis-lastline;
|
||
|
display: -webkit-box;
|
||
|
-webkit-line-clamp: 4;
|
||
|
-webkit-box-orient: vertical;
|
||
|
padding: 50rpx 25rpx 0rpx 25rpx;
|
||
|
}
|
||
|
.on{
|
||
|
display: block;
|
||
|
text-overflow: clip;
|
||
|
overflow: visible;
|
||
|
}
|
||
|
.border-bottom{
|
||
|
width: 100%;
|
||
|
height: 4rpx;
|
||
|
background-color: #e7eeee;
|
||
|
margin-top: 10rpx;
|
||
|
|
||
|
}
|
||
|
.last-title{
|
||
|
height: 80rpx;
|
||
|
text-align: right;
|
||
|
font-size:28rpx;
|
||
|
font-weight:500;
|
||
|
line-height: 80rpx;
|
||
|
color:rgba(60,108,252,1);
|
||
|
}
|