.news-title{
    width: 100%;
    height: auto;
}
.news-title img{
    display: block;
    height: 390px;
    object-fit: cover;
    width: 100%;
}
.news-box{
    width: 100%;
    background: #FFFFFF;
    height: fit-content;
}
.news-content{
    width: 100%;
}
.news-content .news-boxs{
    display: flex;
    width: 100%;
    margin-bottom: 60px;
}
#news-content-container{
    width: calc(100% - 400px);
}

.news-content .news-boxs .news-list{
    width: 100%;
    margin-top: 35px;
}

.news-content .news-boxs .news-list .news-card{
    width: 90%;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    margin-top: 24px;
    padding-bottom: 24px;
}

.news-card .img-box{
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.news-card .img-box img{
    width: 200px;
    height: 150px;
    object-fit: cover;
    transition: all .5s;
}
.news-card .img-box img:hover {
    transform: scale(1.1);
}

.news-card .news-text{
    width: calc(100% - 200px);
}

.news-card .content{
    padding: 16px 16px 0px 16px;
    height: 120px;
}
.news-card h3{
    color: #000;
    font-size: var(--font-size-title1);
    margin-bottom: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.news-card p{
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.news-card .bottom{
    margin: 5px 0;
    cursor: pointer;
}
.news-card .bottom span{
    padding-left: 16px;
    padding-bottom: 16px;
    color: var(--main-color);
    cursor: pointer;
}



.news-content .news-boxs .news-type{
    width: 400px;
    height: 800px;
    border: 1px solid #E6E6E6;
}
.news-content .news-boxs .news-type .top-title{
    margin-top: 36px;
    margin-left: 24px;
}
.news-content .news-boxs .news-type .top-title h3{
    font-size: var(--font-size-title-medium);
    color: var(--color-text1);
    font-weight: bold;
    margin-bottom: 20px;
}
.news-content .news-boxs .news-type .top-title .title-line{
    width: 24px;
    height: 4px;
    background: linear-gradient( 270deg, #00AFB7 0%, #007781 100%);
    margin-bottom: 6px;
}
.news-content .news-boxs .news-type .top-title .en{
    font-size: 24px;
    color: #999999;
    line-height: 31px;
    margin-bottom: 24px;
}

.news-content .news-boxs .news-type .type-list .item{
    width: 100%;
    height: 80px;
    line-height: 80px;
    padding-left: 26px;
    font-weight: bold;
    font-size: 24px;
    color: var(--color-text1);
    cursor: pointer;
}
.news-content .news-boxs .news-type .type-list .item.cur{
    background: #007781;
    color: white;
}


/*分页相关*/
.pagination {
    display: flex;
}

.pagination li a {
    color: #333;
    padding: 6px 12px;
    margin: 0 2px;
    text-decoration: none;
}

.pagination li.active a {
    border: 1px solid #007781;
    color: #007781;
    border-radius: 4px;
}
#pageSizeSelect{
    width: 88px;
    height: 32px;
    background: #FFFFFF;
    color: black;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    text-align: center;
    line-height: 32px;
    margin-right: 16px;
    margin-left: 6px;
}
#goPageInput{
    width: 48px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    text-align: center;
    line-height: 32px;
    margin-right: 8px;
    margin-left: 8px;
}

/*info.html*/
.article-title{
    width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px dashed #DDDDDD;
    color: var(--color-text1);
}
.article-title h3{
    font-size: var(--font-size-title-small);
    font-weight: bold;
    line-height: 31px;
}
.article-title p{
    line-height: 21px;
    font-size: var(--font-size-text2);
    margin-top: 12px;
}
.article-intro{
    font-size: 14px;
    line-height: 21px;
    padding: 12px;
    border-bottom: 1px dashed #DDDDDD;
    border-left: 1px dashed #DDDDDD;
    border-right: 1px dashed #DDDDDD;
}
.article-content{
    width: 100%;
    padding: 40px 0px;
}
.pages-box{
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 1000px) {
    .news-box{
        background: #F5F5F5;
    }
    .news-box .icon-title{
        display: none;
    }
    .news-content .news-boxs{
        margin-bottom: 24px;
        flex-direction: column-reverse;
    }
    .news-content .news-boxs .news-type{
        height: auto;
        margin-bottom: 16px;
        width: 100%;
    }
    .news-content .news-boxs .news-type .top-title{
        display: none;
    }
    #news-content-container{
        width: 100%;
    }
    .news-content .news-boxs .news-list{
        width: 100%;
        margin-top: -20px;
    }
    .news-content .news-boxs .news-list .news-card{
        width: 100%;
        display: block;
        margin-top: 20px;
        padding-bottom: 8px;
        background-color: #fff;
        box-shadow: 0 5px 17px #e8e9ec;
        overflow: hidden;
        border-radius: 10px;
        border-bottom: unset;
    }
    .news-card .img-box{
        width: 100%;
        height: 190px;
    }
    .news-card .img-box img{
        width: 100%;
        height: 100%;
    }
    .news-card .news-text{
        width: 100%;
    }
    .news-card .content{
        height: 105px;
    }
    .pages-box div:nth-of-type(2) {
        display: none;
    }
    .pages-box div:nth-of-type(3) {
        display: none;
    }
    .pagination li a{
        padding: 2px 8px;
    }
    .news-content .news-boxs .news-type .type-list{
        display: flex;
    }
    .news-content .news-boxs .news-type .type-list .item{
        padding-left: 0px;
        text-align: center;
        font-size: 14px;
        height: 40px;
        line-height: 40px;
    }
    .news-title img{
        height: auto;
    }
}

.news-card div{
    cursor: pointer;
}