

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:2rem;
}

.news-grid .news-card {padding: 2rem;border: 1px solid #d2d2d2;}
.news-grid .news-card .txt1{
    line-height: 2.4rem;height: 2.4rem;  display: -webkit-box;
    -webkit-box-orient: vertical; -webkit-line-clamp: 1;
    overflow: hidden;margin-bottom: 1rem;font-size: 1.2rem;
    font-weight: 600;
}
.news-grid .news-card .txt2{
    font-size: 1rem;
    line-height: 2rem;height: 4rem;  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;margin-bottom: 1rem;
}
.news-grid .news-card .txt3{color: #999999;}
.news-grid .news-card:hover {border: 1px solid var(--comcolor);}
.news-grid .news-card:hover .txt1{color: var(--comcolor); }







.news{width: 100%;padding: 2rem 0;}
.news .title{font-size: 1.8rem;}
.news .time{color: #999999;margin: 1rem 0;}
.news .content{padding: 2rem 0;}
.news .content {color: #555555;line-height: 30px;border-top: 1px solid #e1e3e6;border-bottom: 1px solid #e1e3e6;}
.news .link .box a{display: block;color: #666666;}
.news .link .box a:first-child{margin-bottom: 1rem;}
.news .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;
}
table tbody tr:nth-child(1) { background: #ededed;}



@media  screen and (min-width: 1000px){
    .news .link{display: flex;justify-content: space-between;margin-top: 2rem;}
    .news .link .box{width: calc(100% - 200px);}
}

@media  screen and (min-width: 500px) and (max-width: 1000px){
    .news .link{display: flex;justify-content: space-between;margin-top: 2rem;}
    .news .link .box{width: calc(100% - 200px);}
}


@media  screen and (max-width: 500px){
    .news-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .news-grid .news-card {padding:1rem;}
    .news .link{margin-top: 1rem;}
    .news .return {margin-top: 1rem;display: inline-block;background: var(--comcolor);padding:0.4rem 1rem;color:#fff;}
}
