
.news-list-section {padding:3rem 0;display: flex;gap:1.5rem;flex-wrap: wrap;}

.news-list-section .news-card { flex: 0 0 calc(25% - 1.125rem);border: 1px solid #f5f5f5;}
.news-list-section .news-card .card-img{width: 100%;}
.news-list-section .news-card img{ aspect-ratio: 6 / 4;object-fit: cover;}
.news-list-section .news-card .box{width:100%;padding: 1rem;}
.news-list-section .news-card .title{
    font-size: 1.1rem;
    line-height: 2;height: 2.2rem;  display: -webkit-box;
    -webkit-box-orient: vertical; -webkit-line-clamp: 1;
    overflow: hidden;margin-bottom: 1rem;
    font-weight: 600;
}
.news-list-section .news-card .intro{
    font-size: 1rem;
    line-height: 2;height: 4rem;  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;margin-bottom: 1rem;
}
.news-list-section .news-card .btn { background: var(--comcolor);padding:0.5rem 1rem;display: inline-block;color:#ffffff; }
.news-list-section .news-card:hover .title,
.news-list-section .news-card:hover .intro
{color: var(--comcolor); }

@media  screen and (max-width: 1200px){
    .news-list-section .news-card { flex: 0 0 calc(33.33% - 1rem);}
}
@media  screen and (max-width: 900px){
    .news-list-section .news-card { flex: 0 0 calc(50% - 0.75rem);}
}
@media  screen and (max-width: 600px){
    .news-list-section {display: block;}
    .news-list-section .news-card {margin-bottom: 1rem;}
    .news-list-section .news-card .card-img,
    .news-list-section .news-card .box {width: 100%;}
    .news-list-section .news-card .title {
        font-size: 1rem;
        height: 2rem;
        margin-bottom: 0.5rem;
    }
    .news-list-section .news-card .intro{
        font-size: 0.8rem;
        line-height: 1.6rem;
        height: 3.2rem;
        margin-bottom: 0.5rem;
    }
}



.news-section {width: 100%;padding: 2rem 0;}
.news-section .title{font-size: 1.8rem;margin: 1rem 0;text-align: center;}
.news-section .time{color: #999999;margin: 1rem 0;text-align: center;}
.news-section .time i {margin-right: 0.5rem;}
.news-section .line {border-bottom: 1px solid #e1e3e6;height: 0.5rem;}
.news-section .content{padding: 2rem 0;}
.news-section .content {color: #3b3b3b;line-height: 2rem;border-bottom: 1px solid #e1e3e6;}
.news-section .link {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.news-section .link .box a{display: block;color: #666666;}
.news-section .link .box a:first-child{margin-bottom: 1rem;}
.news-section .link a:hover{color: var(--comcolor);}

table {
    width:100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
table tbody tr {
    height: 3rem;
}
td {
    border: solid 1px #ddd;
    vertical-align: middle;
    text-align: center;
    font-size: 1rem;
    line-height: 2;
    color: #212529;
    padding:0 0.5rem;
}



@media  screen and (max-width: 500px){
    .news-list-section .news-card {display: block;}
    .news-list-section .news-card .card-img,
    .news-list-section .news-card .box {width: 100%;}
    .news-list-section .news-card .title {
        font-size: 1rem;
        height: 2rem;
        margin-bottom: 0.5rem;
    }
    .news-list-section .news-card .intro{
        font-size: 0.8rem;
        line-height: 1.6rem;
        height: 3.2rem;
        margin-bottom: 0.5rem;
    }

    .news-section .link{margin-top: 1rem;display: block;}
    .news-section .return {margin-top: 1rem;display: inline-block;background: var(--comcolor);padding:0.4rem 1rem;color:#fff;}
}