39 lines
715 B
Plaintext
39 lines
715 B
Plaintext
/* pages/articleList/index.wxss */
|
|
|
|
.article-page {
|
|
height: 100vh;
|
|
padding: 28rpx;
|
|
background-color: #fff;
|
|
|
|
.example-search {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.example-search:not(:last-child) {
|
|
margin-bottom: 32rpx;
|
|
}
|
|
|
|
.article-item {
|
|
background-color: #f3f3f3;
|
|
padding: 20rpx;
|
|
border-radius: 12rpx;
|
|
max-height: 200rpx;
|
|
|
|
.article-title {
|
|
font-weight: bold;
|
|
font-size: 32rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.article-content {
|
|
font-size: 28rpx;
|
|
font-size: 26rpx;
|
|
line-height: 36rpx;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 3;
|
|
overflow: hidden;
|
|
word-break: break-word;
|
|
}
|
|
}
|
|
} |