71 lines
1.0 KiB
Plaintext
71 lines
1.0 KiB
Plaintext
.list_wrap {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
background: #fff;
|
|
padding-bottom: 80rpx;
|
|
padding-top: 40rpx;
|
|
}
|
|
|
|
.list_item {
|
|
width: 48.5%;
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.list_wrap .img {
|
|
width: 100%;
|
|
height: 370rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.list_wrap .img image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.list_wrap .img .over {
|
|
position: absolute;
|
|
color: #fff;
|
|
background: #abababcf;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 30rpx;
|
|
font-size: 31rpx;
|
|
letter-spacing: 4px;
|
|
font-weight: 900;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.list_wrap .title {
|
|
font-size: 32rpx;
|
|
margin-top: 20rpx;
|
|
margin-bottom: 18rpx;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.list_wrap .desc {
|
|
font-size: 27rpx;
|
|
}
|
|
|
|
.list_wrap .user {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.list_wrap .user image {
|
|
width: 49rpx;
|
|
height: 49rpx;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.list_wrap .user .name {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
margin-left: 18rpx;
|
|
} |