/* Gaiyao (大会概况) page only - scoped under .gaiyao-overview-page */

.gaiyao-overview-page .exhibition-scope-module {
    padding: 0;
    background: transparent;
}

.gaiyao-overview-page .exhibition-details-layout {
    padding: 6rem 0 10rem;
}

.gaiyao-overview-page .forum-profile-module {
    margin-bottom: 8rem;
}

.gaiyao-overview-page .forum-profile-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 8rem;
    margin-bottom: 5rem;
}

.gaiyao-overview-page .forum-profile-text {
    flex: 1;
    min-width: 0;
    max-width: 50%;
}

.gaiyao-overview-page .forum-profile-title {
    margin-bottom: 2rem;
    line-height: 1.4;
}

.gaiyao-overview-page .forum-profile-desc {
    color: #555;
    line-height: 1.9;
}

.gaiyao-overview-page .forum-profile-logo {
    flex: 1;
    max-width: 50%;
    flex-shrink: 0;
}

.gaiyao-overview-page .forum-profile-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gaiyao-overview-page .forum-stats-heading {
    margin-bottom: 6rem;
    color: #222;
    font-weight: 700;
}

.gaiyao-overview-page .forum-stats-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaiyao-overview-page .forum-stats-panel .forum-stats-swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.gaiyao-overview-page .forum-stats-panel .forum-stats-swiper .swiper-wrapper {
    display: flex;
}

.gaiyao-overview-page .forum-stats-panel .forum-stats-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.gaiyao-overview-page .forum-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 2rem 1.6rem;
}

.gaiyao-overview-page .forum-stats-cumulative {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 3rem;
}

.gaiyao-overview-page .forum-stats-cumulative .cumulative-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 2rem;
}

.gaiyao-overview-page .forum-stats-cumulative .cumulative-items {
    display: flex;
    grid-gap: 3rem;
    flex-wrap: wrap;
}

.gaiyao-overview-page .stat-item .stat-num {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--ui-color-primary);
    line-height: 1.1;
    margin-bottom: .8rem;
}

.gaiyao-overview-page .stat-item .stat-num sup {
    font-size: 1.8rem;
    top: -.6rem;
}

.gaiyao-overview-page .stat-item .stat-label {
    color: #666;
    font-size: 1.4rem;
}

.gaiyao-overview-page .forum-stats-grid-wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 2rem;
}

.gaiyao-overview-page .forum-stats-grid-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 1.6rem;
}

.gaiyao-overview-page .forum-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.6rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 .4rem 1.2rem rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gaiyao-overview-page .forum-stats-item:hover {
    transform: translateY(-.4rem);
    box-shadow: 0 .8rem 2rem rgba(11, 61, 210, .15);
}

.gaiyao-overview-page .forum-stats-item .stat-num-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.2rem;
    gap: .2rem;
}

.gaiyao-overview-page .forum-stats-item .stat-num {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--ui-color-primary);
    line-height: 1;
}

.gaiyao-overview-page .forum-stats-item .stat-unit {
    font-size: 2rem;
    font-weight: 600;
    color: var(--ui-color-primary);
    position: relative;
    top: -.5rem;
}

.gaiyao-overview-page .forum-stats-item .stat-label {
    color: #666;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.gaiyao-participant-section {
    padding: 8rem 0 6rem;
    border-top: .1rem solid #e8e8e8;
}

.gaiyao-overview-page .participant-compose-module .title-tag-module {
    margin-bottom: 6rem;
}

.gaiyao-overview-page .participant-compose-body {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8rem;
    align-items: flex-start;
}

.gaiyao-overview-page .participant-compose-left {
    width: calc(38% - 1.5rem);
    display: flex;
    flex-direction: column;
    grid-gap: 6rem;
    align-self: center;
}

.gaiyao-overview-page .participant-compose-left .participant-desc {
    color: #555;
    line-height: 1.9;
}

.gaiyao-overview-page .participant-tab-list {
    display: flex;
    flex-direction: column;
    grid-gap: 1rem;
}

.gaiyao-overview-page .participant-tab-list .tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 3rem;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, box-shadow .3s ease;
    position: relative;
    border: .1rem solid #d9d9d9;
    box-sizing: border-box;
}

.gaiyao-overview-page .participant-tab-list .tab-item.active {
    background: var(--ui-color-primary);
    color: #fff;
    border-color: var(--ui-color-primary);
    box-shadow: 0 .4rem 1.2rem rgba(11, 61, 210, .3);
}

.gaiyao-overview-page .participant-tab-list .tab-item:hover:not(.active) {
    background: #f0f7f3;
    border-color: var(--ui-color-primary);
    color: var(--ui-color-primary);
}

.gaiyao-overview-page .participant-tab-list .tab-item .tab-text {
    position: relative;
    z-index: 1;
}

.gaiyao-overview-page .participant-compose-right {
    flex: 1;
    min-width: 28rem;
}

.gaiyao-overview-page .participant-chart-display {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    padding: 1.6rem;
    min-height: 20rem;
}

.gaiyao-overview-page .participant-chart-display .participant-chart-item {
    display: none;
    width: 100%;
}

.gaiyao-overview-page .participant-chart-display .participant-chart-item.active {
    display: block;
    animation: chartFadeIn .35s ease;
}

@keyframes chartFadeIn {
    from { opacity: 0; transform: translateY(.6rem); }
    to { opacity: 1; transform: translateY(0); }
}

.gaiyao-overview-page .participant-chart-display .participant-chart-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: .6rem;
}

.gaiyao-agenda-section {
    width: 100%;
    margin: 0;
    padding: 8rem 0;
    background: #f8faf9;
    position: relative;
}

.gaiyao-agenda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8faf9;
    z-index: -1;
}

.gaiyao-agenda-section .agenda-content {
    width: 100%;
    max-width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.gaiyao-agenda-section .module-width {
    width: 140rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.gaiyao-agenda-section .title-tag-module {
    margin-bottom: 6rem;
}

.gaiyao-agenda-section .agenda-inner {
    background: #fff;
    border-radius: 1.6rem;
    padding: 4rem;
    box-shadow: 0 .4rem 2rem rgba(0, 0, 0, .06);
}

.gaiyao-agenda-section .agenda-tabs {
    display: flex;
    justify-content: center;
    grid-gap: 2rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: .1rem solid #f0f0f0;
}

.gaiyao-agenda-section .agenda-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.6rem 3rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all .3s ease;
    background: #f8faf9;
    border: .1rem solid transparent;
}

.gaiyao-agenda-section .agenda-tab:hover {
    background: #e8f5ef;
}

.gaiyao-agenda-section .agenda-tab.active {
    background: var(--ui-color-primary);
    border-color: var(--ui-color-primary);
}

.gaiyao-agenda-section .agenda-tab .tab-day {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: .4rem;
}

.gaiyao-agenda-section .agenda-tab .tab-date {
    font-size: 1.2rem;
    opacity: .8;
}

.gaiyao-agenda-section .agenda-tab.active .tab-day,
.gaiyao-agenda-section .agenda-tab.active .tab-date {
    color: #fff;
}

.gaiyao-agenda-section .agenda-tab:not(.active) .tab-day {
    color: #222;
}

.gaiyao-agenda-section .agenda-tab:not(.active) .tab-date {
    color: #999;
}

.gaiyao-agenda-section .agenda-timeline {
    display: block;
}

.gaiyao-agenda-section .agenda-day-panel {
    display: none;
    flex-direction: column;
    grid-gap: 2.4rem;
    animation: agendaFadeIn .4s ease;
}

.gaiyao-agenda-section .agenda-day-panel.active {
    display: flex;
}

@keyframes agendaFadeIn {
    from {
        opacity: 0;
        transform: translateY(.8rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gaiyao-agenda-section .timeline-item {
    display: flex;
    grid-gap: 3rem;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 1rem;
    transition: background .3s ease;
}

.gaiyao-agenda-section .timeline-item:hover {
    background: #f8faf9;
}

.gaiyao-agenda-section .timeline-time {
    flex-shrink: 0;
    width: 16rem;
    font-weight: 600;
    color: var(--ui-color-primary);
    font-size: 1.4rem;
}

.gaiyao-agenda-section .timeline-content {
    flex: 1;
}

.gaiyao-agenda-section .timeline-title {
    font-weight: 600;
    color: #222;
    font-size: 1.6rem;
    margin-bottom: .8rem;
}

.gaiyao-agenda-section .timeline-desc {
    color: #666;
    font-size: 1.4rem;
    line-height: 1.6;
}

.gaiyao-partners-section {
    padding: 8rem 0;
    margin-top: 4rem;
}

.gaiyao-partners-section .title-tag-module {
    margin-bottom: 6rem;
}

.gaiyao-partners-section .partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 2.4rem;
}

.gaiyao-partners-section .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 .4rem 1.2rem rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gaiyao-partners-section .partner-item:hover {
    transform: translateY(-.6rem);
    box-shadow: 0 .8rem 2rem rgba(11, 61, 210, .15);
}

.gaiyao-partners-section .partner-logo {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 61, 210, .1), rgba(11, 61, 210, .05));
    border-radius: 1.2rem;
    margin-bottom: 1.6rem;
}

.gaiyao-partners-section .partner-logo i {
    font-size: 3rem;
    color: var(--ui-color-primary);
}

.gaiyao-partners-section .partner-name {
    font-size: 1.4rem;
    color: #333;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .gaiyao-overview-page .forum-profile-intro {
        flex-direction: column;
    }

    .gaiyao-overview-page .forum-profile-text {
        max-width: 100%;
    }

    .gaiyao-overview-page .forum-profile-logo {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .gaiyao-overview-page .forum-profile-logo img {
        width: 100%;
        max-width: 100%;
    }

    .gaiyao-overview-page .forum-stats-panel {
        flex-direction: column;
    }

    .gaiyao-overview-page .forum-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gaiyao-overview-page .forum-stats-cumulative {
        grid-template-columns: 1fr;
    }

    .gaiyao-overview-page .forum-stats-grid-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gaiyao-overview-page .forum-stats-item {
        padding: 2.4rem 1.6rem;
    }

    .gaiyao-overview-page .forum-stats-item .stat-num {
        font-size: 3.6rem;
    }

    .gaiyao-overview-page .forum-stats-item .stat-unit {
        font-size: 1.6rem;
        top: -.5rem;
    }

    .gaiyao-overview-page .participant-compose-left,
    .gaiyao-overview-page .participant-compose-right {
        width: 100%;
        min-width: 100%;
    }

    .gaiyao-overview-page .participant-tab-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gaiyao-overview-page .participant-tab-list .tab-item {
        flex: 1;
        min-width: 12rem;
        border-radius: 3rem;
    }

    .gaiyao-agenda-section .agenda-inner {
        padding: 2rem;
    }

    .gaiyao-agenda-section .agenda-tabs {
        flex-wrap: wrap;
    }

    .gaiyao-agenda-section .agenda-tab {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .gaiyao-agenda-section .timeline-item {
        flex-direction: column;
        grid-gap: 1.2rem;
    }

    .gaiyao-agenda-section .timeline-time {
        width: 100%;
    }

    .gaiyao-partners-section .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gaiyao-partners-section .partner-item {
        padding: 2rem 1rem;
    }

    .gaiyao-partners-section .partner-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .gaiyao-overview-page .forum-stats-grid-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gaiyao-overview-page .forum-stats-item {
        padding: 2rem 1rem;
    }

    .gaiyao-overview-page .forum-stats-item .stat-num {
        font-size: 3rem;
    }

    .gaiyao-overview-page .forum-stats-item .stat-unit {
        font-size: 1.4rem;
    }

    .gaiyao-agenda-section .agenda-tab {
        min-width: 100%;
    }

    .gaiyao-partners-section .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 1.6rem;
    }

    .gaiyao-partners-section .partner-item {
        padding: 2rem 1rem;
    }
}