127 lines
2.1 KiB
Plaintext
127 lines
2.1 KiB
Plaintext
/**
|
|
* Web二雪
|
|
* 趁时光不老 努力活成自己想要成为的样子
|
|
*/
|
|
.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;
|
|
} |