.news-information .news-information__inner .news-information__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0 64px;
}

.news-information .news-information__inner .news-information__header .news-information__title {
    background-image: linear-gradient(to right, #29c2e1 0%, #afedf8 40%, #afedf8 70%, #29c2e1 100%);
}

.news-information .news-information__inner .news-information__desc {
    padding: 64px;
    font-family:  "SourceHanSansCN", Arial, sans-serif;
    border: rgba(70, 115, 179, .4) 1px solid;
    border-radius: 26px;
    position: relative;
    /* top: -16px; */
    background-color: rgba(7, 27, 63, 0.2);
    backdrop-filter: blur(8px);
}

.news-information .news-information__inner .news-information__desc .news-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item {
    padding: 16px;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #124585;
    border: 1px solid #1b64ad;
    display: flex;
    flex-direction: column;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item>* {
    text-align: start;
    width: 100%;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .title {
    font-weight: bolder;
    color: #fff;
    margin-top: 16px;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .time {
    color: #40cdeb;
    font-size: 12px;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .desc {
    font-size: 12px;
    color: #c9caca;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 90px;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .detail .btn {
    float: right;
    background: linear-gradient(to bottom, #afedf8 0%, #29c2e1 80%, #29c2e1 100%);
    color: rgba(20, 49, 102, .8);
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 16px;
    border-radius: 16px;
    border: none;
    margin-top: 8px;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .img-box {
    position: relative;
    height: 200px;
    font-size: 0;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    font-size: 0;
    z-index: 1;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .ac {
    opacity: 0;
    transition: opacity 0.3s;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item:hover .ac {
    opacity: 1;
}

.news-information .news-information__inner .news-information__desc .news-table .news-table-item .img-box .cover {
    width: 98%;
    height: 198px;
    margin: 1px;
    z-index: 0;
}