.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-main{
    width: 100%;
    background-color: #F8F8F8;
    padding-top: 5.833333vw;
    padding-bottom: 6.770833vw;
}
.news-info{
    width: 52vw;
    margin: 0px auto;
}

.news-title{
    font-size: 1.25vw;
    font-weight: 400;
}
.news-time{
    margin-top: 1.927083vw;
}
.news-time span:nth-child(1){
    font-size: 0.833333vw;
    color: #545454;
}
.news-time span:nth-child(2){
    font-size: 0.625vw;
    border: 1px solid #F8A000;
    color: #F8A000;
    padding: 0.4vw 0.833333vw;
    border-radius: 1.6vw;
    margin-left: 0.729167vw;
}
.news-content{
    margin-top: 3.5vw;
    font-size: 0.833333vw;
    line-height: 1.875vw;
    color: #535353;
}
.news-content img{
    width: 100%;
    margin-bottom: 4.3vw;
}
.news-content p{
    font-size: 0.833333vw;
    line-height: 1.875vw;
    color: #535353;
}
.news-btn{
    margin-top: 5.2vw;
    display: flex;
    justify-content: center;
}
.news-btn div{
    width: 10vw;
    color: #535353;
    font-size: 0.729167vw;
    border: 1px solid #535353;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 3.333333vw;
    padding: 0.6vw 0.6vw;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;
    user-select: none;
}
.news-btn div span{
    overflow: hidden;/* 超出的部分隐藏起来 */
    text-overflow: ellipsis;/* 超出的部分用省略号代替 */
    white-space: nowrap;/*规定不换行*/
}
.news-btn div:hover{
    color: #F8A000;
    border: 1px solid #F8A000;
}
@media (max-width: 1440px) {
    .news-time span:nth-child(1){
        font-size: 14px;
    }
    .news-time span:nth-child(2){
        font-size: 14px;
    }
    .news-content p{
        font-size: 14px;
    }
    .news-btn div{
        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-info{
        width: 90vw;
    }
    .news-content p{
        font-size: 3vw;
        line-height: 8vw;
    }
    .news-btn div{
        width: 30vw;
        padding: 2vw 0px;
        border-radius: 1.5vw;
        font-size: 3vw;
    }
    .news-title{
        font-size: 4.25vw;
    }
    .news-time span:nth-child(1){
        font-size: 3vw;
    }
    .news-time span:nth-child(2){
        font-size: 3vw;
    }
    .news-time{
        margin-top: 5vw;
    }
    .news-btn{
        margin-top: 20vw;
    }
    .news-main{
        padding-bottom: 15vw;
    }
}