
.interaction-page {
    padding: 20px 0;
}

/* 布局结构 */
.interaction-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 在线访谈区块 */
.online-interview-block {
    margin-bottom: 26px;
}
.block-header a:hover{
    color: #115A94;
}
.interview-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 50px;
    align-items: start;
}

.interview-featured {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.interview-featured a {
    display: block;
    width: 100%;
    height: 100%;
}

.interview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* min-height: 270px; */
    max-height: 450px;
    transition: transform 0.3s ease;
}

.interview-content-right {
    display: flex;
    flex-direction: column;
    padding-left: 0;
}

/* 正在进行区块 */
.ongoing-block {
    margin-bottom: 0;
}

.ongoing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: -6px;
}

.ongoing-list li {
    padding: 9px 0;
    display: flex;
    align-items: flex-start;
    /* gap: 8px; */
    transition: background-color 0.3s;
}
.ongoing-list li:first-child {
    padding-top: 0;
}
.ongoing-list li:last-child {
    padding-bottom: 0;
}


.ongoing-list .status-badge {
    color: #C70D0D;
    font-size: 20px;
    flex-shrink: 0;
}

.ongoing-list a {
    color: #333;
    font-size: 20px;
    line-height: 1.6;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s;
}

.ongoing-list a:hover {
    color: #115A94;
}

/* 意见征集区块 */
.opinion-collection-block {
    margin-bottom: 0;
}

.announcement-list li {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    padding: 9px 0;
}
.announcement-list li a{
    line-height: 1.6;
}
.announcement-list .status-badge {
    color: #C70D0D;
    font-size: 20px;
    flex-shrink: 0;
}

/* 交互按钮区域 */
.interaction-buttons-section {
    margin: 30px 0 0;
}

.interaction-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.interaction-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #115A94;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
}
.block-content{
    padding: 24px 0 0;
}
/* 留言选登区块 */
.message-block {
    margin-bottom: 0;
}

.message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.message-header h3 {
    margin-right: 0;
}

.message-tabs {
    display: flex;
    gap: 0;
    align-items: center;
}

.message-tab {
    padding: 5px 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: #333;
    transition: color 0.3s;
    position: relative;
    margin-left: 10px;
}

.message-tab:first-child {
    margin-left: 0;
    padding-left: 0;
}

.message-tab:not(:last-child)::before {
    content: ' ';
    width: 1px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5px;
    background-color: #333;
}

.message-tab.active {
    color: #115A94;
}

/* .message-tab::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #115A94;
    z-index: 1;
} */
/* .message-list a:hover {
    color: #115A94;
} */
.message-tab:hover::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #115A94;
    z-index: 1;
}

.message-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-list li {
    padding: 9px 0;
}

.message-list li:last-child {
    border-bottom: none;
}

.message-list a {
    color: #333;
    font-size: 20px;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

/* 服务热线区域 */
.hotline-section {
    margin-top: 30px;
    margin-bottom: 0;
}

.hotline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.hotline-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e3e3e3;
}


.hotline-image {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    
    .interaction-main-content {
        gap: 15px;
    }

    .interaction-buttons {
        /* grid-template-columns: repeat(3, 1fr); */
    }

    .hotline-grid {
        /* grid-template-columns: repeat(3, 1fr); */
    }
    .interaction-btn{
        min-height: 60px;
        font-size: 20px;
    }


    .interview-layout {
        grid-template-columns: 248px 1fr;
        gap: 5px;
    }
    .ongoing-list li,.message-list li,.announcement-list li{
        padding: 5px;
    }
    .ongoing-list a,.message-list a,.announcement-list a{
        font-size: 18px;
    }
}

/* 响应式设计 - 移动端 */
@media screen and (max-width: 768px) {
    .interaction-page {
        padding: 20px 0;
    }

    .interaction-main-content {
        gap: 15px;
    }

    .online-interview-block {
        margin-bottom: 0;
    }

    .interview-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .interview-layout img{
        width: 100%;
    }
    .interview-image {
        min-height: 250px;
        max-height: 300px;
    }

    .interview-content-right {
        padding-left: 0;
    }
    .interaction-buttons-section{
        margin-top: 0;
    }
    .block-content {
        padding: 15px 0;
    }

    .ongoing-list a,
    .announcement-list a,
    .message-list a {
        font-size: 18px;
    }

    .interaction-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .interaction-btn {
        padding: 2px 15px;
        font-size: 18px;
        min-height: 50px;
    }
    .message-tab{
        font-size: 20px;
    }
    .hotline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hotline-item img{
        /* padding: 15px 10px; */
        width: 100%;
    }

    .hotline-number {
        font-size: 20px;
    }

    .hotline-name {
        font-size: 12px;
    }
    .hotline-section{
        margin-top: 0;
    }
}


