/* 新闻中心 */
.news-page-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.news-page-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: 1px;
    background-color: #FFFFFF;
}
.news-page-item:last-child {
    border-bottom: none;
}
.news-img {
    max-width: 300px;
    max-height: 200px;
    overflow: hidden;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-page-item:hover .news-img img {
    transform: scale(1.2);
}
.news-page-content {
    margin-right: 3%;
}
.news-page-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.news-page-content:hover h2 {
    color: var(--color2);
}
.news-page-content h2 a {
    color: #333333;
}
.news-page-content:hover h2 a {
    color: #0056b3;
}
.news-page-content p {
    margin-bottom: 20px;
    color: #666666;
    line-height: 24px;
}
.news-time {
    font-size: 13px;
    color: #999999;
}
.news-time .hits {
    margin-left: 10px;
}
.news-time .news-see {
    float: right;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid var(--color2);
}
.news-time .news-see a {
    color: var(--color2);
}
.news-time .news-see:hover {
    background-color: var(--color2);
}
.news-time .news-see:hover a {
    color: #FFFFFF;
}

table {
    width: 100%;
    margin: 20px auto;
    color: #333;
    font-size: 14px;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 1px solid #666666;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

table td {
    border-bottom: 1px solid #666666;
    border-right: 1px solid #666666;
}

table td:last-child {
    border-right: none;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #f1f7ff;
    transition: background-color 0.2s ease;
}

table td:empty {
    min-height: 24px;
}

.content table {
    margin: 20px 0;
    width: 100% !important;
    table-layout: auto !important;
    border-collapse: collapse;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.content table td,
.content table th {
    width: auto !important;
    white-space: normal !important;
    word-break: break-word;
    word-wrap: break-word;
    padding: 8px 5px !important;
    font-size: 13px;
    line-height: 1.4;
    vertical-align: middle;
    box-sizing: border-box;
}
.content table tr td:nth-child(2),
.content table tr td:nth-child(4) {
    max-width: 45%;
}
.content table img,
.content table span {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .news-page-item {
        gap: 20px;
        padding: 12px;
        flex-direction: column;
    }
    .news-time {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}