/* ============================================
   新闻发布会页面样式
   ============================================ */

.press-conference-page {
    background-color: #fff;
    padding: 0 0 60px;
}
.press-conference-page .block-header{
    margin-bottom: 30px;
}
.page-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    /* font-family: 'GovWF_FZ', "Microsoft YaHei", "SimHei", Arial, sans-serif; */
}

.press-conference-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 上方：正在直播的新闻发布会 */
.live-conference-section {
    width: 100%;
}

.live-conference-card {
    display: flex;
    gap: 30px;
    padding: 0 0 40px;
    border-bottom: 1px solid #E3E3E3;
}

.live-image-wrapper {
    position: relative;
    flex: 0 0 270px;
    width: 270px;
    height: 260px;
    overflow: hidden;
}

.live-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(235, 13, 13, 0.7);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 0 0 4px rgba(235, 13, 13, 0);
    }
}

.live-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -6px;
}

.info-item {
    display: flex;
    margin-bottom: 22px;
    line-height: 1.8;
    color: #333;
    font-size: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    flex: 0 0 60px;
    /* font-weight: bold; */
    
}

.info-value {
    flex: 1;
}

/* 下方：历史新闻发布会 */
.history-conference-section {
    width: 100%;
    overflow: hidden;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:40px 46px;
}

.history-item {
    background-color: #fff;
    position: relative;
}
.history-item::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 46px);
    height: 1px;
    background-color: #e0e0e0;
}
.history-item:nth-child(4n)::after{
    width: 100%;
}
.history-item:hover {
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px); */
    /* border-color: #115A94; */
}

.history-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.history-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.history-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.history-item:hover .history-image {
    /* transform: scale(1.05); */
}

.history-info {
    padding: 26px 0 35px;
}

.history-topic {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 40px; */
}

.history-date {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.history-item:hover .history-topic {
    /* color: #115A94; */
}
.broadcast-status {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4px 8px;
}

.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%;
}
.mobile-history-grid{
    display: none;
}
/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    .live-image-wrapper {
        flex: 0 0 250px;
        width: 250px;
        height: 200px;
    }

    .live-conference-card {
        gap: 20px;
    }

    .history-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* 响应式设计 - 移动端 */
@media screen and (max-width: 768px) {
    .press-conference-page {
        padding: 20px 0 0;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .press-conference-content {
        gap: 30px;
    }

    .live-conference-card {
        flex-direction: column;
        gap: 0;
        padding-bottom: 20px;
    }

    .live-image-wrapper {
        flex: none;
        width: 100%;
        height: auto;
    }
    .live-image-wrapper img{
        width: 100%;
    }
    .live-info {
        padding: 20px 10px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .history-image-wrapper {
        height: auto;
    }
    .history-image-wrapper img{
        width: 100%;
    }
    .history-info{
        padding: 10px 0;
    }
    .info-item{
        margin-bottom: 8px;
    }
    .history-item:last-child::after{
        display: none;
    }
    .desktop-history-grid{
        display: none;
    }
    .mobile-history-grid{
        display: block;
    }
}

