Files
AGuestSaas/components/company/activeList/activeList.wxss
2020-12-28 10:38:29 +08:00

123 lines
2.0 KiB
Plaintext

.active_content {
background-color: #fff;
margin: 20rpx;
box-sizing: border-box;
position: relative;
}
.active_cover {
width: 100%;
height: 300rpx;
position: relative;
border-radius: 20rpx 20rpx 0 0;
overflow: hidden;
padding-bottom: 0;
}
.active_cover_bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.active_type_icon {
position: absolute;
top: 0;
left: 0;
background-color: #ffcc00;
color: #4a1900;
padding: 4rpx 20rpx;
border-radius: 10rpx 0 20rpx 0;
font-size: 24rpx;
z-index: 1;
}
.active_title {
position: absolute;
bottom: 0;
left: 0;
margin-top: 20rpx;
padding: 10rpx 20rpx;
font-weight: 600;
font-size: 30rpx;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
background-color: rgba(0, 0, 0, 0.4);
color: #Fff;
-webkit-line-clamp: 1;
z-index: 100;
width: 98%;
}
.active_des {
margin-top: 14rpx;
padding: 0 20rpx;
color: #666;
font-size: 24rpx;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.active_time {
margin-top: 14rpx;
padding: 0 20rpx;
color: #666;
font-size: 26rpx;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.active_line {
margin: 20rpx 20rpx 0 20rpx;
border-bottom: solid 1rpx #f7f7f7;
}
.active_bottom {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
font-size: 34rpx;
font-weight: 600;
color: #333;
padding: 20rpx 0;
}
.active_bottom .left {
margin-left: 20rpx;
}
.active_bottom span {
color: #999;
font-size: 24rpx;
padding-left: 10rpx;
font-weight: normal;
}
.active_bottom .right {
font-size: 24rpx;
padding: 10rpx 30rpx;
border-radius: 30rpx;
background-color: #378fff;
color: #fff;
}
.has_more {
color: #999;
font-size: 26rpx;
text-align: center;
padding: 30rpx;
}