107 lines
1.8 KiB
Plaintext
107 lines
1.8 KiB
Plaintext
@charset "UTF-8";
|
|
/* 主题色 */
|
|
.f_banner {
|
|
width: 100%;
|
|
height: 400rpx;
|
|
}
|
|
.f_banner swiper {
|
|
height: 400rpx;
|
|
}
|
|
.f_banner image {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: 100%;
|
|
}
|
|
.tabbar {
|
|
height: 50px;
|
|
display: flex;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
justify-content: space-between;
|
|
margin: 15px 10px;
|
|
}
|
|
.tabbar .scroll-menu {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
.tabbar view {
|
|
display: inline-block;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
padding: 0 10px;
|
|
}
|
|
.tabbar view text {
|
|
display: block;
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
}
|
|
.tabbar .active {
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
background-color: #fea606;
|
|
}
|
|
.list {
|
|
width: 100%;
|
|
padding-bottom: 50px;
|
|
}
|
|
.newslist {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
padding: 10px 15px;
|
|
border-bottom: 1px solid #f7f7f7;
|
|
}
|
|
.newslist .left {
|
|
width: calc(100% - 115px);
|
|
height: 60px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-flow: column;
|
|
justify-content: space-between;
|
|
}
|
|
.newslist .left .title {
|
|
width: 100%;
|
|
font-size: 30rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
line-height: 30px;
|
|
font-weight: bold;
|
|
}
|
|
.newslist .right {
|
|
width: 105px;
|
|
height: 60px;
|
|
border: 1px solid #f7f7f7;
|
|
}
|
|
.newslist .right image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.newslist .time {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.newslist .time icon {
|
|
width: 20px;
|
|
display: block;
|
|
margin-right: 3px;
|
|
margin-top: -5px;
|
|
float: left;
|
|
}
|
|
.newslist .time .icon-icon-test1 {
|
|
font-size: 16px;
|
|
}
|
|
.newslist .time view {
|
|
color: #666;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|