You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
561 B
34 lines
561 B
3 months ago
|
/* pages/recent-news/recent-news.wxss */
|
||
|
|
||
|
.recent-news {
|
||
|
background: #fff;
|
||
|
}
|
||
|
|
||
|
.recent-news .news-item {
|
||
|
padding: 20rpx 20rpx 0 20rpx;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.recent-news .news-item::after {
|
||
|
content: " ";
|
||
|
width: 100%;
|
||
|
height: 2rpx;
|
||
|
background-color: #e1e1e1;
|
||
|
left: 20rpx;
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
.recent-news .news-item .news-item-title {
|
||
|
font-size: 28rpx;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.recent-news .news-item .news-item-date {
|
||
|
font-size: 24rpx;
|
||
|
color: #999;
|
||
|
text-align: right;
|
||
|
margin-top: 10rpx;
|
||
|
margin-bottom: 20rpx;
|
||
|
}
|