66 lines
1.2 KiB
Plaintext
66 lines
1.2 KiB
Plaintext
/* pages/article/article.wxss */
|
|
.art-list {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.art-list .art-box,
|
|
.art-list .art-box1 {
|
|
text-align: left;
|
|
padding-left: 28rpx;
|
|
}
|
|
|
|
.art-list .art-box .box:last-child,
|
|
.art-list .art-box1 .box:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.art-list .art-box .box,
|
|
.art-list .art-box1 .box {
|
|
border-bottom: solid 2rpx #ebebeb;
|
|
padding-right: 28rpx;
|
|
display: flex;
|
|
padding: 20rpx 0;
|
|
}
|
|
|
|
.art-list .art-box .box .ul,
|
|
.art-list .art-box1 .box .ul {
|
|
margin-left: 28rpx;
|
|
width: 426rpx;
|
|
font-size: 32rpx;
|
|
text-align: left;
|
|
position: relative;
|
|
}
|
|
|
|
.art-list .art-box .box .ul .title,
|
|
.art-list .art-box1 .box .ul .title {
|
|
line-height: 48rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.art-list .art-box .box .ul .browse-number,
|
|
.art-list .art-box1 .box .ul .browse-number {
|
|
color: #8c8c8c;
|
|
position: absolute;
|
|
bottom: 0;
|
|
height: 48rpx;
|
|
line-height: 48rpx;
|
|
}
|
|
|
|
.art-list .art-box .box .img,
|
|
.art-list .art-box1 .box .img {
|
|
width: 240rpx;
|
|
height: 168rpx;
|
|
background-color: #ccc;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.art-list .art-box .box .img image,
|
|
.art-list .art-box1 .box .img image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|