body{
    background:#f7f7f7;
}
.banner-text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.banner-text .text1 {
    font-size: 0.48rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    /* width: 10rem; */
    margin: 0 auto;
    line-height: 0.5rem;
}

.banner-text .text2 {
    font-size: 0.16rem;
    color: #fff;
    /* width: 9rem; */
    margin: 0.2rem auto 0;
    text-align: center;
}

.banner-text .text-btn {
    width: 2.15rem;
    height: 0.45rem;
    border-radius: 0.3rem;
    color: #fff;
    text-align: center;
    line-height: 0.45rem;
    margin: 1.6rem auto 0;
    border: 1px solid #fff;
}
.tab-box{
    display: flex;
    align-items: center;
    height:0.8rem;
    background:#fff;
    border-radius:0.4rem;
    justify-content:center;
    font-size:0.18rem;
    margin-top:0.6rem;
}
.tab-item{
    margin:0 0.2rem;
    cursor: pointer;
    font-weight:bold;
}
.tab-item:nth-child(2){
    margin:0 0.5rem;
}
.tab-item.active{ 
    color: #0153b9;
}
.news-list{
    display:flex;
    flex-wrap: wrap;
    margin-top:0.35rem;
}
.news-list li{
    background:#fff;;
    padding-bottom:0.1rem;
    border-radius:0.1rem;
    overflow: hidden;
    width:calc(25% - 0.15rem);
    cursor: pointer;
    margin-right:0.2rem;
    margin-bottom:0.2rem;
}
.news-list li:nth-child(4n){
    margin-right:0;
}
.news-list .n-img{
    width:100%;
    height:3.45rem;
    overflow: hidden;
}
.news-list img{
    width:100%;
    height:3.45rem;
    transform: scale(1);
    transition: all 0.8s ease;
    object-fit: cover;
}
.news-list .n-title{
    font-size:0.16rem;
    padding:0 0.1rem;
    margin-top:0.1rem;
    height: 0.5rem;
    line-height: 0.24rem;
}
.news-list .n-box{
    padding:0.1rem;
    height:0.6rem;
}
.news-list .n-icon{
    width:0.25rem;
    height:0.25rem;
    background:url('../images/new/icon.png') no-repeat;
    background-size:100% 100%;
    margin-bottom:0.1rem;
}
.news-list .n-text1{
    background:#0153b9;
    color:#fff;
    font-size:0.12rem;
    padding:0.05rem 0.1rem;
    border-radius:0.05rem;
}
.news-list .time{
    font-size:0.14rem;
    color:#999;
}
.news-list .n-btn{
    width:2.98rem;
    height:0.4rem;
    background:#0153b9;
    border-radius:0.05rem;
    color:#fff;
    font-size:0.14rem;
    text-align: center;
    line-height:0.4rem;
    margin:0.1rem auto;
}
.news-list .nbox2{
    display:none;
}
.news-list li:hover .nbox2{
    display:block;
}
.news-list li:hover .nbox1{ 
    display:none;
}
.news-list li:hover .n-title{
    color:#0153b9;  
}
.news-list li:hover img {
    transform: scale(1.2);
    transition: all 0.8s ease;
}

@media (max-width: 700px){
    .news-list li {
        width: calc(50% - 0.15rem);
    }
    .news-list li:nth-child(2n) {
        margin-right: 0;
    }
}
