2020-07-13 15:27:02 +08:00
|
|
|
.top-tab{
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
display: flex;
|
|
|
|
box-shadow:0 0 17rpx 0 rgba(0,0,0,0.1);
|
|
|
|
border-radius:0 0 31rpx 31rpx;
|
|
|
|
background: #fff;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
.tab-box{
|
|
|
|
display: inline-flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 30%;
|
|
|
|
position: relative;
|
|
|
|
height: 90rpx;
|
|
|
|
font-size: 30rpx;
|
|
|
|
color: #242424;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
.tab-box.active{
|
|
|
|
color: #9F1512;
|
|
|
|
}
|
|
|
|
.tab-box image{
|
|
|
|
position: absolute;
|
|
|
|
width: 15rpx;
|
|
|
|
height: 40rpx;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -20rpx;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.tab-box.active image{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.tab-box image.selected-l{
|
|
|
|
left: 40rpx;
|
|
|
|
}
|
|
|
|
.tab-box image.selected-r{
|
|
|
|
right: 40rpx;
|
|
|
|
}
|
2020-06-26 12:33:13 +08:00
|
|
|
.news{
|
|
|
|
padding: 30rpx;
|
|
|
|
border-bottom: 5px solid #FBFBFB;
|
2020-07-13 15:27:02 +08:00
|
|
|
margin-top: 90rpx;
|
2020-06-26 12:33:13 +08:00
|
|
|
}
|
|
|
|
.news-box{
|
|
|
|
padding: 30rpx 0;
|
|
|
|
border-bottom: 1px solid #EBEBEB;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.news-title{
|
|
|
|
color: #242424;
|
|
|
|
font-size: 30rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.news-info{
|
|
|
|
color: #949494;
|
|
|
|
margin-top: 15rpx;
|
|
|
|
font-size: 24rpx;
|
|
|
|
}
|
|
|
|
.news-info text{
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
.news-big-pic, .news-small-pic{
|
|
|
|
margin-top: 10rpx;
|
|
|
|
}
|
|
|
|
.news-big-pic image{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.news-small-pic image{
|
|
|
|
width: 30%;
|
|
|
|
height: 150rpx;
|
|
|
|
margin-right: 20rpx;
|
2020-06-26 19:32:52 +08:00
|
|
|
}
|
|
|
|
.transverse-news{
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.news-row-img{
|
|
|
|
width: 30%;
|
|
|
|
height: 150rpx;
|
|
|
|
}
|
|
|
|
.news-row-img image{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.news-row-info{
|
|
|
|
width: 68%;
|
2020-06-26 12:33:13 +08:00
|
|
|
}
|