main{
    background-color: #f6f7f8;
}
.News-Head{
    background-image: url('../img/About/AboutHead.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
}
.News-Head .head-main h2{
    color: white;
    padding-left: 10px;
    border-left: 5px solid #e79009;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 40px;

}
.News-Head .head-main h4{
    color: white;
    font-size: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.News-Head .head-main h4 a{
    color: white;
    transition: 0.3s;
}
.News-Head .head-main h4 a:hover{
    color: #e79009;
}
.News-main{
    width: 100%;
    /* height: 50px; */
    margin: 0 auto;
    /* background-color: red; */
    margin-bottom: 100px;
   
}
.News-main .News-mains{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    /* padding: 0; */ 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    height: 300px;
}

.News-main .News-mains .mains-left{
    width: 30%;
    height: 100%;
}
.News-main .News-mains .mains-left .mains-left-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.News-main .News-mains .mains-left .mains-left-img img{
    width: auto;
    height: 100%;
}

.News-main .News-mains .mains-right{
    width: 70%;
    height: 100%;
    padding: 30px;
    position: relative;
}
.News-main .News-mains .mains-right .right-title{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: black;
    font-size: 20px;
    margin: 0;
}
.News-main .News-mains .mains-right .right-time{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: black;
    font-size: 20px;
    margin: 0;
}
.News-main .News-mains .mains-right .right-content{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: gray;
    font-size: 16px;
    max-width: 85%;
    line-height:1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 限制为4行 */
    overflow: hidden;
    text-overflow: ellipsis;
}
.News-main .News-mains .mains-right  .right-button{
    float: right;
    color: #e79009;
    background-color: white;
    border: 2px solid #e79009;
    border-radius: 50px;
    height: 40px;
    width: 130px;
    margin-top: 10px;
    margin-right: 30px;
    transition: 0.3s;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.News-main .News-mains .mains-right  .right-button:hover{
    color: white;
    border: none;
    background-color: #e79009;
}
.page{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

.paginations{
    box-shadow: 0px 0px rgba(0, 0, 0, 0);
}

.pagination li {
    float: left;
    margin-right: 3px;
    list-style-type: none;
    padding: 10px;
    background-color: #e79009;
    border: none;
    color: white;
    margin: 10px;
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (max-width:991px) {
    .News-main{
        padding-top: 60px;
    }
    .News-main .News-mains{
        display: block;
        height: auto;margin-top: 30px;
    }
    .News-main .News-mains .mains-left .mains-left-img{
        width: 100%;
        height:  250px;
        position: relative;
    }
    .News-main .News-mains .mains-left .mains-left-img img{
        width: 100%; 
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .News-main .News-mains .mains-left{
        width: 100%;
        height: fit-content;
        border: 1px solid rgba(0, 0, 0, 0.089);
        border-bottom: none;
    }
    .News-main .News-mains .mains-right{
        width: 100%;
        height: fit-content;
        border: 1px solid rgba(0, 0, 0, 0.089);
        border-top: none;
    }
    .News-main .News-mains{
        box-shadow: none;
    }
    .News-main .News-mains .mains-right .right-button{
        float:none;
    }

}