
   .news-page {
    background-color: #fff;
    padding: 20px 0;
}

/* 时政要闻区块 */
.political-news-block {
    margin-bottom: 30px;
}

.political-layout {
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 50px;
    align-items: start;
}

.political-featured {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.political-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 350px;
    max-height: 450px;
}

.image-caption {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
    line-height: 1.2;
    padding: 0 5px;
    text-align: center;
}

.political-content-right {
    display: flex;
    flex-direction: column;
    padding-left: 0;
}

/* 交通要闻区块 */
.transportation-news-block {
    margin-bottom: 30px;
}

.transportation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.transportation-header h3 {
    margin-right: 0;
}

.news-tabs {
    display: flex;
    gap: 0;
    align-items: center;
}

.news-tab {
    padding: 0 20px 0 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: #333;
    transition: color 0.3s;
    position: relative;
    line-height: 1;
    /* font-family: 'GovWF_FZ', "Microsoft YaHei", "SimHei", Arial, sans-serif; */
}

.news-tab:first-child { 
    margin-left: 0;
    border-right: 1px solid #333;
}
.news-tab:nth-child(2){
    margin-left: 20px;
}
/* .news-tab:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -5px;
    color: #ccc;
} */
.block-header a:hover{
    color: #115A94;
}
.news-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 20px;
    height: 2px;
    background-color: #115A94;
    z-index: 1;
}

.transportation-layout {
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 50px;
    align-items: start;
}

.transportation-featured {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.transportation-image img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 350px;
    max-height: 450px;
}

.transportation-content-right {
    display: flex;
    flex-direction: column;
    padding-left: 0;
}

/* 新闻发布会区块 */
.press-conference-block {
    margin-bottom: 30px;
}

.press-conference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.press-conference-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.press-conference-item a {
    display: block;
    width: 100%;
    height: 100%;
}
.press-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 专题专栏区块 */
.special-columns-block {
    margin-bottom: 0;
}

.special-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.special-column-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}


.special-column-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.broadcast-status {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 8px 12px;
}

.live-badge {
    color: #fff;
    font-size: 14px;
    padding-left: 14px;
    position: relative;
    border-radius: 50px;
}
.live-badge.gray::before {
    background-color: #7D7D7D;
}

.live-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #EB0D0D;
    border-radius: 50%;
}

.press-conference-item img,
.special-column-item img,
.political-featured img{
    width: 100%;
}
/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    .political-layout,
    .transportation-layout {
        grid-template-columns: 510px 1fr;
        gap: 30px;
    }

    .press-conference-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 12px;
    }

    .special-columns-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        gap: 12px;
    }
}
/* 响应式设计 - 移动端 */
@media screen and (max-width: 768px) {
    .news-page {
        padding: 20px 0;
    }

    .political-news-block,
    .transportation-news-block {
        margin-bottom: 0;
    }

    .political-layout,
    .transportation-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .political-image,
    .transportation-image {
        /* min-height: 250px; */
        /* max-height: 300px; */
    }

    .transportation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-tabs {
        width: 100%;
    }

    .block-content {
        padding: 15px 0;
    }

    .news-item-list a,
    .image-caption {
        font-size: 18px;
    }
    .news-tab{
        font-size: 20px;
    }

    .press-conference-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .special-columns-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }
    .news-item-list li, .announcement-list li, .message-list li{
        padding: 8px 0;
    }
    .press-conference-block{
        margin-bottom: 0;
    }
    .transportation-image img{
        min-height: auto;
        max-height: auto;
    }
}