.header-img{
    position: relative;
    width: 100%;
    user-select: none;
    background-color: #f8f8f8;
}
.header-img img{
    position: relative;
    width: 100%;
    user-select: none;
}
.header-pc{
    display: block;
}
.header-mobile{
    display: none;
}
.header-img p{
    position: absolute;
    z-index: 5;
    font-size: 1.875vw;
    color: #fff;
    top: 18.75vw;
    margin: 0px auto; 
    width: 100%;
    text-align: center;
    user-select: none;
}

.news-list{
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    padding-bottom: 6vw;
}

.news-select-btn{
    width: 100%;
    display: flex;
    justify-content: center;
}
.news-select-btn div{
    width: 6.875vw;
    height: 2.291667vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f8a000;
    color: #f8a000;
    font-size: 0.833333vw;
    border-radius: 1.2vw;
    margin: 5.2vw 1.5vw;
    cursor: pointer;
    transition: all .3s;
}
.news-select-btn a{
    width: 6.875vw;
    height: 2.291667vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f8a000;
    color: #f8a000;
    font-size: 0.833333vw;
    border-radius: 1.2vw;
    margin: 5.2vw 1.5vw;
    cursor: pointer;
    transition: all .3s;
}
.news-select-btn .active{
    color: #fff;
    background-color: #f8a000;
}
.news-select-btn div:hover{
    color: #fff;
    background-color: #f8a000;
}

.news-info{
    margin: 0px auto;
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    width: 87.5vw;
    transition: all .3s;
}
.news-item{
    position: relative;
    width: 21vw;
}
.news-item .imgcon{
    position: relative;
    width: 100%;
    transition: all .3s;
    overflow: hidden;
    font-size: 0px;
}
.news-item img{
    position: relative;
    width: 100%;
    transition: all 1s;
}
.news-item img:hover{
  transform: scale(1.05);
}
.news-item div:nth-child(2){
    display: inline-block;
    padding: 0px 10px;
    border: 1px solid #f8a000;
    color:#f8a000;
    border-radius: 20px;
    margin: 0.625vw 0px;
    font-size: 0.625vw;
}
.content{
    font-size: 0.7375vw;
    margin-bottom: 12px;
    cursor: pointer;
}
.news-info a{
    margin: 0px 0.4vw 4.6875vw;
    transition: none;
}

.news-info a .content span{
    border-bottom: 1px solid #f8a10000;
    transition: all .3s;
}
.news-info a:hover .content span{
    border-bottom: 1px solid #f8a000;
}
.time{
    font-size: 0.729167vw;
    color: #727272;
}

.news-end{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.4vw;
}
.seemore{
    color: #c0c0c0;
    cursor: pointer;
    /* border: 1px solid #f8a000; */
    padding: 0.6vw 2vw;
    border-radius: 1.6vw;
    font-size: 0.7vw;
    transition: all .3s;
}
.seemore:hover{
    background-color: #f8a000;
    color: #fff;
}
@media (max-width: 1440px) {
    .news-select-btn a{
        font-size: 14px;
    }
    .news-item div:nth-child(2){
        font-size: 14px;
    }
    .content{
        font-size: 14px;
    }
    .time{
        font-size: 14px;
    }
    .seemore{
        font-size: 14px;
    }
}
@media (max-width: 996px) {
    .header-img{
        height: 110vw;
    }
    .header-img img{
        height: 100%;
        object-fit: cover;
    }
    .header-pc{
        display: none;
    }
    .header-mobile{
        display: block;
    }
    .header-img p{
        font-size: 7vw;
        top: 60vw;
    }
    .news-select-btn div{
        width: 20vw;
        height: 8vw;
        border-radius: 5vw;
        margin: 6vw 4vw;
        font-size: 3vw;
    }
    .news-select-btn a{
        width: 20vw;
        height: 8vw;
        border-radius: 5vw;
        margin: 6vw 4vw;
        font-size: 3vw;
    }
    .news-info a{
        margin: 0px auto 4.6vw;
    }
    .news-item{
        width: 77vw;
        margin-top: 5vw;
    }
    .news-item div:nth-child(2){
        margin: 2.5vw 0px;
        font-size: 3vw;
    }
    .content{
        font-size: 3vw;
    }
    .time{
        font-size: 3vw;
    }
    .seemore{
        padding: 3vw 6vw;
        border-radius: 8vw;
        font-size: 3vw;
    }
}