Files
2024-09-27 02:06:13 +08:00

61 lines
1.1 KiB
Plaintext

@import "../config/color.less";
@import "../config/size.less";
@import "../mixins/mixins.less";
.item_list {
padding: 30rpx 30rpx 0 30rpx;
box-sizing: border-box;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.item_list .item {
width: 48%;
margin-bottom: 30rpx;
}
.item_list .item .newest_img{
position: relative;
}
.item_list .newest_img image{
width: 100%;
border-radius: 10rpx;
}
.item_list .newest_img span{
position: absolute;
padding: 8rpx 14rpx;
background: rgb(251,114,153,0.73);
color: rgb(255,255,255,0.73);
font-size: 24rpx;
right: 20rpx;
bottom: 42rpx;
border-radius: 28rpx;
}
.newest_text .source {
color: #666;
font-size: 26rpx;
margin-bottom: 2rpx;
}
.item_list .newest_text .t{
color: #333;
font-size: 30rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: 8rpx;
}
.newest_text .tags {
display: flex;
flex-wrap: wrap;
margin-top: 8rpx;
}
.newest_text .tags_item {
padding: 4rpx 10rpx;
font-size: 24rpx;
background: #fb7299;
margin-right: 6rpx;
color: #fff;
border-radius: 18rpx;
margin-bottom: 6rpx;
}