/* 五个 Tab 导航样式调整 */

/* 调整 tab 整体布局，适应五个 tab */
.eael-tabs-nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.eael-tabs-nav .eael-tab-item-trigger {
    flex: 1;
    text-align: center;
}

/* 响应式调整 - 手机 */
@media (max-width: 768px) {
    .eael-tabs-nav ul {
        flex-wrap: wrap;
    }
    
    .eael-tabs-nav .eael-tab-item-trigger {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 480px) {
    .eael-tabs-nav .eael-tab-item-trigger {
        flex: 0 0 50%;
    }
}

/* 议程表格样式 */
.agenda-table-container {
    padding: 3% 15%;
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
}
.agenda-table-container .te-advanced-tab li:first-child, .agenda-table-container .te-advanced-tab li:nth-child(2), .agenda-table-container .te-advanced-tab li:nth-child(3), .agenda-table-container .te-advanced-tab li:last-child{
    background: none !important;
    color: #fff;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
}

.agenda-table thead th {
    color: #fff;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.agenda-table thead th:first-child {
    width: 120px;
}

.agenda-table thead th:last-child {
    width: 30%;
}

.agenda-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.agenda-table tbody tr:hover {
    /* background: rgba(0, 212, 255, 0.05); */
}

.agenda-table tbody td {
    padding: 15px 12px;
    vertical-align: top;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

/* 篇章标题行 */
.agenda-table .section-row td {
    padding: 20px 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    /* color: #00d4ff; */
    /* border-bottom: 1px solid rgba(0, 212, 255, 0.3); */
}

.agenda-table .time-cell {
    /* color: #00d4ff; */
    font-weight: 500;
    white-space: nowrap;
}

.agenda-table .topic-cell {
    color: #fff;
}

.agenda-table .topic-cell .topic-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.agenda-table .topic-cell .topic-questions {
    font-size: 13px;
    color: #b0b0b0;
    margin-top: 10px;
    padding-left: 15px;
    list-style: none;
}

.agenda-table .topic-cell .topic-questions li {
    margin-bottom: 5px;
}

.agenda-table .guest-cell {
    color: #e0e0e0;
}

.agenda-table .guest-cell .guest-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.agenda-table .guest-cell .guest-title {
    font-size: 12px;
    color: #a0a0a0;
    line-height: 1.5;
}

.agenda-table .guest-cell .guest-item {
    margin-bottom: 12px;
}

.agenda-table .guest-cell .guest-item:last-child {
    margin-bottom: 0;
}

.agenda-table .panel-host {
    /* color: #00d4ff; */
    font-size: 12px;
    margin-bottom: 5px;
}

/* 响应式表格 */
@media (max-width: 768px) {
    .agenda-table thead {
        display: none;
    }
    
    .agenda-table tbody tr {
        display: block;
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
    }
    
    .agenda-table tbody tr.section-row {
        background: transparent;
        padding: 15px 0;
    }
    
    .agenda-table tbody td {
        display: block;
        padding: 8px 0;
        border: none;
    }
    
    .agenda-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #00d4ff;
        display: block;
        margin-bottom: 5px;
        font-size: 12px;
    }
    
    .agenda-table .section-row td:before {
        display: none;
    }
    
    .agenda-table .time-cell {
        font-size: 16px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        margin-bottom: 10px;
    }
}

/* 报名通道区域样式 */
.registration-channel {
    padding: 40px 20px;
    text-align: center;
}

.registration-channel-title {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 600;
    margin-bottom: 30px;
}

.registration-channel-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.registration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.registration-item:hover {
    transform: translateY(-5px);
}

.registration-item img {
    width: 350px;
    /* height: 180px; */
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
}

.registration-item-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.registration-item-text:hover {
    color: #00d4ff;
}

/* 响应式 */
@media (max-width: 768px) {
    .registration-channel-content {
        gap: 30px;
    }
    
    .registration-item img {
        width: 140px;
        height: 140px;
    }
    
    .registration-channel-title {
        font-size: 20px;
    }
}
