/*=============================================
 * home.css - Homepage Section Styles
 * 首页各个板块样式
 *=============================================*/

/* ===== 首页 Header 吸顶固定（紧贴 fixed toolbar 高50px 下方） ===== */
.home .site-header {
    position: sticky;
    top: 50px;
    background: #103682;
    border-top: 1px solid #fff;
}

/* ===== Hero Banner ===== */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
    margin-bottom: -36px;
    background: linear-gradient(135deg, #0a1e3d 0%, #132d56 40%, #1a3a6b 100%);
}

/* 轮播图片容器 */
.hero-slides {
    position: relative;
}

/* 隐藏占位图 — 撑开高度 */
.hero-placeholder {
    display: block;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #0a1e3d;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* 遮罩层 */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* ===== 主标题 H1 ===== */
.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0 20px;
    pointer-events: none;
}

/* ===== 底部遮罩 + 按钮行 ===== */
.hero-bottom {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    z-index: 3;
    height: 64px;
    background: rgba(5, 20, 50, 0.72);
}

.hero-bottom-inner {
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

/* 轮播小圆点 - 居中（相对于 inner） */
.hero-dots {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.7);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.hero-bottom-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Hero底部按钮 — 黄色 */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'MiSans', sans-serif;
    font-size: clamp(16px, 0.706vw, 28px);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 22px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #222 !important;
    background: #FFEB3B !important;
    border: none !important;
}

.hero-btn:hover {
    background: #FDD835 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.hero-btn .arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../../hb_arrow_right.png') no-repeat center;
    background-size: contain;
    margin-left: 2px;
    vertical-align: middle;
    font-size: 0;
}

/* ===== 展会介绍 ===== */
.intro-section {
    padding: 60px 0;
    background: #f7f7f8 url(../../zhjs_bg.png) no-repeat 48% bottom;
    background-size: 48%;
}

.intro-section .container {
    background: none;
    border-radius: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img,
.intro-image video {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

/* ===== 点击才播放的视频 ===== */
.intro-video-wrap {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.intro-video-wrap video {
    background: #000;
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
}
/* 强制隐藏所有 webkit/blink 原生 controls（Chrome/Edge/Safari/Opera） */
.intro-video-wrap video::-webkit-media-controls,
.intro-video-wrap video::-webkit-media-controls-enclosure,
.intro-video-wrap video::-webkit-media-controls-panel,
.intro-video-wrap video::-webkit-media-controls-playback-button,
.intro-video-wrap video::-webkit-media-controls-start-playback-button,
.intro-video-wrap video::-webkit-media-controls-overlay-playbutton,
.intro-video-wrap video::-internal-media-controls-overlay-cast-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 3;
    padding: 0;
}
.video-play-btn:hover {
    background: rgba(26, 77, 184, 0.85);
    transform: translate(-50%, -50%) scale(1.08);
}
.video-play-icon {
    width: 0;
    height: 0;
    border-left: 26px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}
/* 播放中隐藏中心按钮 */
.intro-video-wrap.playing .video-play-btn {
    display: none;
}

/* ===== 自定义控制条 ===== */
.video-controls {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 24px;
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.video-controls[hidden] {
    display: none !important;
}
.intro-video-wrap.playing .video-controls {
    opacity: 1;
    pointer-events: auto;
}
/* 鼠标离开视频区域 2.5s 后控制条淡出（如果想要一直显示，去掉这段） */
.intro-video-wrap.playing.hide-controls .video-controls {
    opacity: 0;
    pointer-events: none;
}
.vc-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.vc-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}
.vc-time {
    font-size: 12px;
    color: #fff;
    font-variant-numeric: tabular-nums;
    min-width: 38px;
    text-align: center;
    flex-shrink: 0;
}
.vc-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    min-width: 80px;
}
.vc-progress:hover {
    height: 6px;
}
.vc-progress-buffered {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    width: 0%;
}
.vc-progress-played {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #1a4db8;
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
}
.vc-progress-thumb {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1a4db8;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.vc-progress:hover .vc-progress-thumb {
    opacity: 1;
}
.intro-video-wrap.playing {
    cursor: default;
}
.intro-video-wrap.playing .intro-video {
    cursor: pointer;
}

.intro-image .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    line-height: 1.2;
}

.intro-image .experience-badge .num {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.intro-image .experience-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.intro-text h2 {
    font-family: 'MiSans', sans-serif;
    font-size: clamp(32px, 1.667vw, 67px);
    font-weight: 900;
    color: #29415c;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
}

.intro-text h2 .highlight {
    color: #1a4db8;
    font-size: 2.6rem;
}



.intro-text p {
    font-family: 'MiSans', sans-serif;
    font-size: clamp(16px, 0.767vw, 31px);
    line-height: 1.8;
    color: #687082;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.intro-text .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 20px;
    font-family: 'MiSans', sans-serif;
    font-size: clamp(14px, 0.5vw, 22px);
    font-weight: 400;
    color: #505666;
    background: #f7f7f8;
    border: 1px solid #737885;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.intro-text .btn-outline:hover {
    border-color: #1a4db8;
    color: #1a4db8;
}

.intro-text .btn-outline .arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../../hb_arrow_right-1.png') no-repeat center;
    background-size: contain;
    font-size: 0;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.intro-feature .feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(0,102,204,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.intro-feature h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.intro-feature p {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ===== 主题展览 ===== */
.themes-section {
    padding: 80px 0;
    background: #103682;
    overflow: visible;
}

.themes-header {
    margin-bottom: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.themes-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.themes-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -14px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.8;
}

.themes-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.themes-header .section-desc::after {
    display: none;
}



.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
    justify-items: center;
}

.theme-card {
    border-radius: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 230px;
    background: #1a3a6b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 18px 22px;
    height: 265px;
    box-sizing: border-box;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.theme-card:nth-child(4n+1) { background: #6a1bae; }
.theme-card:nth-child(5) { background: linear-gradient(to bottom right, #eff2f3, #a4b4c3); }
.theme-card:nth-child(4n+2) { background: #0d8e22; }
.theme-card:nth-child(6) { background: #2671dc; }
.theme-card:nth-child(4n+3) { background: #e54e13; }
.theme-card:nth-child(7) { background: #78899a; }
.theme-card:nth-child(4n+4) { background: #a38b43; }
.theme-card:nth-child(8) { background: #0a2463; }

.theme-card-bg {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.theme-card h3 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    text-align: center;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    padding: 0 4px;
    z-index: 1;
}

.theme-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.theme-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.05) 2px,
            rgba(255,255,255,0.05) 4px
        );
    pointer-events: none;
    z-index: 0;
}

.theme-overlay > * {
    position: relative;
    z-index: 1;
}

.theme-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.theme-card:hover .theme-overlay {
    opacity: 1;
}

.theme-overlay .overlay-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding: 0 15px;
}

.theme-overlay .btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-overlay .btn:hover {
    background: #fff;
    color: #000;
}

/* ===== 数据统计 ===== */
.stats-section {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    position: relative;
    overflow: hidden;
}
/* 背景图延迟加载：进入视口后才由 JS 添加 .bg-loaded 触发下载 */
.stats-section.bg-loaded {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('../../sjtj_bg.jpg') no-repeat center bottom;
    background-size: auto, cover;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-header {
    margin-bottom: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.stats-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.stats-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -14px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.8;
}

.stats-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.stats-header .section-desc::after {
    display: none;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md) var(--space-md);
    text-align: center;
}

.stat-item {
    padding: var(--space-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 32px;
}

.stat-number sup {
    font-size: 1.1rem;
    font-weight: 400;
    vertical-align: super;
    margin-left: 2px;
}

.stat-number .suffix {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-white);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
}

/* ===== 关键主题 ===== */
.keytopics-section {
    padding: 60px 0;
    background: #f7f7f8;
}

.keytopics-header {
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.keytopics-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.keytopics-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.keytopics-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.keytopics-header .section-desc::after {
    display: none;
}


/* 二级页面 main 容器 */
.page-main {
    background: #f7f7f8;
}

/* ===== Arrivals 模块 ===== */
.arrivals-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.arrivals-header {
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.arrivals-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.arrivals-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.arrivals-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.arrivals-header .section-desc::after {
    display: none;
}

/* ===== Arrivals 内容 ===== */
.arrivals-hero-img {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.arrivals-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.arrivals-intro {
    margin-bottom: var(--space-xl);
}

.arrivals-intro h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #29415c;
    margin-bottom: 12px;
}

.arrivals-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* 交通手风琴 */
.transport-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #1e4bb5;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: #163a8e;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.accordion-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.accordion-icon-text {
    font-size: 20px;
    line-height: 1;
}

.accordion-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
}

.accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 16px 18px;
    background: #f4f4f4;
}

.accordion-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 6px;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* 酒店服务多行文本 */
.visit-text-list {
    padding: 0;
    margin: 16px 0 24px 0;
    text-align: left;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.visit-text-list p {
    font-size: 1rem;
    line-height: 1.9;
    color: #29415c;
    margin: 0 0 6px 0;
}
.visit-text-list p.visit-text-sub {
    padding-left: 30px;
    color: #555;
}
.visit-text-list .visit-text-icon {
    margin-right: 6px;
    font-size: 1.05rem;
}
.visit-text-list .visit-text-icon-img {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 6px;
}
.visit-text-list li strong {
    color: #333;
}

/* ===== Transportation Info ===== */
.transport-info-box {
    background: #ededed;
    border-radius: 8px;
    padding: 24px 28px;
    margin-top: 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ===== Restaurants 模块 ===== */
.restaurants-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.restaurants-header {
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.restaurants-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.restaurants-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.restaurants-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.restaurants-header .section-desc::after {
    display: none;
}

/* ===== At a glance 模块 ===== */
.ataglance-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.ataglance-header {
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.ataglance-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.ataglance-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.ataglance-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ataglance-header .section-desc::after {
    display: none;
}

/* ===== Main Product Categories 模块 ===== */
.product-categories-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.product-categories-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.product-categories-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.product-categories-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.product-categories-header .section-desc::after {
    display: none;
}

.ataglance-hero-img {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ataglance-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.ataglance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ataglance-intro p {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #29415c;
    margin-bottom: 16px;
    text-align: justify;
}

.ataglance-intro p strong {
    font-weight: 600;
}

.ataglance-intro p:last-child {
    margin-bottom: 0;
}

.ataglance-hours {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 28px 32px;
}

.ataglance-hours h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #29415c;
    margin-bottom: 20px;
}

.hours-group {
    margin-bottom: 20px;
}

.hours-label {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    font-weight: 700;
    color: #29415c;
    margin-bottom: 8px;
}

.hours-time {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.92rem;
    color: #29415c;
    line-height: 1.8;
    margin-bottom: 6px;
}

.hours-note {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #8e8e8e;
    margin-top: 16px;
}

/* 展区分布图 */
.ataglance-floorplan {
    margin-top: 50px;
}

.ataglance-floorplan h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #29415c;
    margin-bottom: 24px;
}

.floorplan-img {
    width: 100%;
}

.floorplan-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Main Product Categories 模块 ===== */
.product-categories-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.category-card {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.category-header {
    position: relative;
    height: 52px;
    overflow: visible;
}

.category-tag {
    position: absolute;
    left: 0;
    top: 0;
    width: 82px;
    height: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.category-header h3 {
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'MiSans', sans-serif;
    margin: 0;
    padding-left: 24px;
}

/* 各分类颜色（颜色由后台编辑，通过 --cat-color CSS 变量控制） */
.category-card { --cat-color: #7B2CBF; --cat-list-bg: #f8f9fb; }
.category-card .category-tag,
.category-card .category-header h3 { background: var(--cat-color, #7B2CBF); }

/* 各分类列表背景色（优先用后台设置的 --cat-list-bg，未设置时按主色淡化） */
.category-card .category-list { background: var(--cat-list-bg, color-mix(in srgb, var(--cat-color, #7B2CBF) 8%, #fff)); }

/* ===== Show Videos 模块 ===== */
.show-videos-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.show-videos-header {
    text-align: center;
    position: relative;
    overflow: visible;
}

.show-videos-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.show-videos-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.show-videos-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.show-videos-header .section-desc::after {
    display: none;
}

/* ===== Why Exhibit 模块 ===== */
.why-exhibit-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.why-exhibit-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.why-exhibit-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.why-exhibit-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.why-exhibit-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.why-exhibit-header .section-desc::after {
    display: none;
}

.highlights-section {
    margin-bottom: 50px;
}

.highlights-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 24px;
    padding-left: 28px;
    position: relative;
}

.highlights-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: #0f3baa;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #29415c;
    line-height: 2.2;
    padding-left: 16px;
    position: relative;
}

.highlights-list li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    color: #29415c;
    font-size: 0.85rem;
}

.highlight-label {
    font-family: 'MiSans', sans-serif;
    font-weight: 500;
}

.activities-section {
    margin-top: 50px;
}

.activities-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 24px;
    padding-left: 28px;
    position: relative;
}

.activities-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: #0f3baa;
}

.activities-img-wrapper {
    text-align: center;
}

.activities-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Cruise Dinner 模块 ===== */
.cruise-section {
    display: flex;
    gap: 40px;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #d1d8e0;
}

.cruise-media {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cruise-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.cruise-body {
    flex: 1;
}

.cruise-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cruise-text {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cruise-bold {
    font-weight: 600;
    color: #29415c;
}

/* ===== Supply Chain Ecosystem 模块 ===== */
.supply-section {
    display: flex;
    gap: 40px;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #d1d8e0;
}

.supply-media {
    flex: 0 0 40%;
}

.supply-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.supply-body {
    flex: 1;
}

.supply-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 20px;
}

.supply-text {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
}

/* ===== International Zone ===== */
.international-section {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #d1d8e0;
}

.international-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 24px;
    padding-left: 28px;
    position: relative;
}

.international-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: #0f3baa;
}

.international-body p {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #29415c;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ===== Innovation Hub ===== */
.innovation-hub-card {
    background: #103d97;
    padding: 30px 36px;
    margin-top: 24px;
}

.innovation-hub-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00e3f4;
    margin-bottom: 16px;
}

.innovation-hub-card p {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ===== Why Image ===== */
.why-img-section {
    margin-top: 40px;
    text-align: center;
}

.why-img-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-img-row {
    display: flex;
    gap: 12px;
}

.why-img-row-2 .why-img-item {
    flex: 1;
    max-width: calc(50% - 6px);
}

.why-img-row-3 .why-img-item {
    flex: 1;
    max-width: calc(33.333% - 8px);
}

.why-img-item {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ===== Startup Alley ===== */
.startup-section {
    display: flex;
    gap: 12px;
    padding-top: 15px;
    align-items: center;
}

.startup-body {
    flex: 0 0 calc(66.666% - 4px);
    background: #eaeaea;
    height: 260px;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.startup-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 16px;
}

.startup-text {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
}

.startup-media {
    flex: 0 0 calc(33.333% - 8px);
}

.startup-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ===== Auto-Tech Stage ===== */
.autotech-section {
    margin-top: 40px;
}

.autotech-img-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.autotech-img-row .autotech-img {
    flex: 1;
}

.autotech-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.autotech-content-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.autotech-body {
    flex: 0 0 calc(66.666% - 4px);
    background: #eaeaea;
    height: 260px;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.autotech-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 16px;
}

.autotech-text {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
}

.autotech-media {
    flex: 0 0 calc(33.333% - 8px);
}

/* ===== Tech Showcase Stage ===== */
.tech-showcase-card {
    background: #103d97;
    padding: 30px 36px;
    margin-top: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.tech-showcase-body {
    flex: 1;
}

.tech-showcase-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00e3f4;
    margin-bottom: 16px;
}

.tech-showcase-body p {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 12px;
}

.tech-showcase-media {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
}

.tech-showcase-icon {
    max-width: 120px;
    height: auto;
    display: block;
}

/* ===== Gallery Row ===== */
.gallery-row {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.gallery-img {
    flex: 1;
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ===== Bottom Full Width Image ===== */
.bottom-full-img {
    margin-top: 12px;
}

.full-width-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* ===== International VIP Lounge ===== */
.vip-lounge-card {
    background: #103d97;
    padding: 30px 36px;
    margin-top: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.vip-lounge-body {
    flex: 1;
}

.vip-lounge-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00e3f4;
    margin-bottom: 16px;
}

.vip-lounge-body p {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 12px;
}

.vip-lounge-media {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
}

.vip-lounge-icon {
    max-width: 120px;
    height: auto;
    display: block;
}

/* ===== Business Tour ===== */
.business-tour-section {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    height: 800px;
}

.business-tour-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.business-tour-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    max-width: 500px;
    background: #d7e8f4;
    padding: 30px 36px;
}

.business-tour-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3ba9;
    margin-bottom: 16px;
    line-height: 1.4;
}

.business-tour-card p {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 16px 6px 12px;
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #29415c;
    align-self: flex-start;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    flex-shrink: 0;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    display: block;
}

/* ===== Hall Floor Plan 模块 ===== */
.hall-floor-plan-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.hall-floor-plan-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hall-floor-plan-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.hall-floor-plan-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.hall-floor-plan-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hall-floor-plan-header .section-desc::after {
    display: none;
}

.floorplan-wrapper {
    text-align: center;
}

/* 后台富文本平面图内容自适应 */
.floorplan-wrapper.content-rich img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.floorplan-wrapper.content-rich p {
    margin: 0 auto;
}

.floorplan-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== Contact us 模块 ===== */
.contact-content {
}

.contact-atc-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px !important;
}

.contact-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.contact-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: #0f3baa;
}

.contact-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 5px;
}

.contact-item {
    padding-left: 40px;
}

/* ===== Press Center 模块 ===== */
.press-top-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.press-top-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.press-top-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.press-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-top-body {
    padding: 16px;
}

.press-top-badge {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: middle;
}

.press-top-title {
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    text-decoration: none;
    display: inline;
}

.press-top-title:hover {
    color: #0f3baa;
}

.press-top-tags {
    margin-top: 12px;
}

.press-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: #888;
    border: 1px solid #ddd;
    padding: 2px 10px;
    border-radius: 12px;
    margin-right: 6px;
}

.press-list-area {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.press-sidebar {
    flex: 0 0 280px;
    border-top: 1px solid #dddddf;
    padding-top: 20px;
}

.press-sidebar-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 20px;
    margin-top: 24px;
}

.press-sidebar-nav {
    list-style: none;
    padding: 0;
}

.press-sidebar-nav li {
    margin-bottom: 16px;
}

.press-sidebar-nav a {
    font-size: 0.9rem;
    color: #444;
    text-decoration: none;
}

.press-sidebar-nav a:hover,
.press-sidebar-nav li.active a {
    font-family: 'MiSans', sans-serif;
    font-weight: 700;
    color: #0f3baa;
}

.press-news-list {
    flex: 1;
    border-top: 1px solid #dddddf;
    padding-top: 20px;
}

.press-news-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
    justify-content: space-between;
}

.press-news-body {
    flex: 0 1 70%;
}

.press-news-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.press-news-title:hover {
    color: #0f3baa;
}

.press-news-tags {
    margin-bottom: 10px;
}

.press-news-summary {
    font-size: 0.9rem;
    color: #727272;
    line-height: 1.6;
}

.press-news-img {
    flex: 0 0 280px;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
    margin-left: auto;
}

.press-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .press-top-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .press-list-area {
        flex-direction: column;
    }
    .press-sidebar {
        flex: auto;
    }
    .press-sidebar-nav {
        display: flex;
        gap: 20px;
    }
    .press-sidebar-nav li {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .press-top-cards {
        grid-template-columns: 1fr;
    }
    .press-news-item {
        flex-direction: column;
    }
    .press-news-img {
        flex: auto;
        width: 100%;
        height: 180px;
    }
}

/* ===== Press Article 新闻详情 ===== */
.press-breadcrumb {
    margin: 20px 0 30px;
    font-size: 0.9rem;
    color: #8a8a8a;
}

.press-breadcrumb a {
    color: #0f3baa;
    text-decoration: none;
}

.press-article {
    max-width: 860px;
    margin: 0 auto 60px;
}

.press-article-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 16px;
}

.press-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.press-article-date {
    font-size: 0.85rem;
    color: #8a8a8a;
}

.press-article-img {
    margin-bottom: 24px;
}

.press-article-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 6px;
}

.press-article-content {
    font-size: 1rem;
    color: #444;
    line-height: 1.9;
}

.press-article-content p {
    margin-bottom: 16px;
}

.press-article-content img {
    max-width: 100%;
    height: auto;
}

/* ===== Downloads 模块 ===== */
.downloads-list {
    margin-top: 40px;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.download-item:hover {
    background-color: #0f3baa;
    border-radius: 6px;
    border-bottom-color: transparent;
}

.download-item:hover .download-name {
    color: #fff;
}

.download-item:hover .download-link {
    color: #fff;
}

.download-name {
    font-size: 1rem;
    color: #444;
}

.download-link {
    color: #666;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.download-link:hover {
    color: #0f3baa;
}

.download-item:hover .download-link.disabled,
.download-link.disabled,
.download-link.disabled:hover {
    color: #bbb;
    cursor: not-allowed;
}

/* ===== Media Partners 模块 ===== */
.media-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 20px;
    margin-top: 40px;
}

.media-partner-item {
    text-align: center;
}

.media-partner-logo {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.media-partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.media-partner-name {
    font-size: 0.9rem;
    color: #0f3baa;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .media-partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .media-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .media-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Hotel & Accommodation 模块 ===== */
.hotel-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.hotel-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hotel-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.hotel-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.hotel-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hotel-header .section-desc::after {
    display: none;
}

.hotel-content {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
}

.hotel-subtitle {
    font-family: 'MiSans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f3baa;
    text-align: center;
    margin-bottom: 24px;
}

.hotel-desc p {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #29415c;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hotel-services {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.hotel-services li {
    font-size: 1rem;
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    color: #29415c;
    line-height: 2;
    text-align: center;
}

.hotel-services li::before {
    content: '* ';
    color: #29415c;
    font-weight: 700;
}

.hotel-info-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.95rem;
    color: #29415c;
}

.hotel-info-table thead th {
    background: #0f3baa;
    color: #fff;
    font-weight: 700;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid #fff;
}

/* 富文本表格（后台 wangEditor 编辑）表头：兼容 th 不在 thead 内的情况 */
.hotel-info-table th {
    background: #0f3baa !important;
    color: #fff;
    font-weight: 700;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid #fff;
}

.hotel-info-table tbody td {
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #0f3baa;
    vertical-align: middle;
}

.hotel-info-table tbody tr:nth-child(odd) {
    background: #f8f9fa;
}

.hotel-info-table tbody tr:nth-child(even) {
    background: #fff;
}

.qr-img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== About Automotive Technology Center ===== */
.about-section {
    padding: 60px 0;
    width: 94%;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.about-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.about-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.about-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-header .section-desc::after {
    display: none;
}

.about-banner {
    background: #0f3baa;
    overflow: hidden;
    margin-bottom: 40px;
}

.about-banner-img {
    width: 100%;
}

.about-banner-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-desc p {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    color: #29415c;
}

.highlight-num {
    color: #0f3baa;
    font-weight: 500;
}

/* ===== Product Line ===== */
.product-line-section {
    margin-top: 60px;
}

.product-line-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 30px;
    padding-left: 24px;
    position: relative;
}

.product-line-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: #0f3baa;
}

.product-line-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-line-card {
    background: #fff;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    padding: 24px 20px;
}

.card-image-only {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.card-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.card-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f3baa;
    margin-bottom: 16px;
    padding-bottom: 4px;
    display: inline-block;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #0f3baa;
}

.card-text {
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.card-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}

.card-list li {
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

/* ===== Coverage Module ===== */
.coverage-section {
    margin-top: 60px;
}

.coverage-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 30px;
    padding-left: 28px;
    position: relative;
}

.coverage-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: #0f3baa;
}

.coverage-img-wrapper {
    text-align: center;
}

.coverage-img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hotel-header .section-desc {
        font-size: 1.8rem;
    }

    .hotel-info-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .about-header .section-desc {
        font-size: 1.8rem;
    }

    .product-line-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-line-title {
        font-size: 1.6rem;
    }

    .hotel-info-table thead th,
    .hotel-info-table tbody td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .qr-img {
        max-width: 80px;
    }
}

@media (max-width: 768px) {
    .hall-floor-plan-header .section-desc {
        font-size: 1.8rem;
    }

    .conference-about-header .section-desc {
        font-size: 1.8rem;
    }

    .conference-parts-header .section-desc {
        font-size: 1.8rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
    .show-videos-header .section-desc {
        font-size: 1.8rem;
    }

    .why-exhibit-header .section-desc {
        font-size: 1.8rem;
    }

    .highlights-title,
    .activities-title {
        font-size: 1.6rem;
    }

    .cruise-section,
    .supply-section {
        flex-direction: column;
    }

    .cruise-media,
    .supply-media {
        flex: 1;
    }

    .cruise-title,
    .supply-title {
        font-size: 1.3rem;
    }

    .startup-section {
        flex-direction: column;
    }

    .startup-media {
        flex: 1;
        width: 100%;
    }

    .startup-title {
        font-size: 1.6rem;
    }

    .autotech-img-row {
        flex-direction: column;
    }

    .autotech-content-row {
        flex-direction: column;
    }

    .autotech-media {
        flex: 1;
        width: 100%;
    }

    .autotech-title {
        font-size: 1.6rem;
    }

    .tech-showcase-card {
        flex-direction: column;
        gap: 24px;
    }

    .tech-showcase-media {
        order: -1;
    }

    .tech-showcase-icon {
        max-width: 120px;
    }

    .gallery-row {
        flex-direction: column;
    }

    .vip-lounge-card {
        flex-direction: column;
        gap: 24px;
    }

    .vip-lounge-media {
        order: -1;
    }

    .vip-lounge-icon {
        max-width: 120px;
    }

    .business-tour-card {
        position: relative;
        width: 100%;
        max-width: none;
    }

    .business-tour-title {
        font-size: 1.3rem;
    }

    .business-tour-section {
        height: auto;
    }

    /* Why Image Grid */
    .why-img-row {
        flex-direction: column;
    }

    .why-img-row-2 .why-img-item,
    .why-img-row-3 .why-img-item {
        max-width: 100%;
    }

    .why-img-item {
        height: 200px;
    }

    /* International Zone */
    .international-title {
        font-size: 1.6rem;
    }

    /* Innovation Hub */
    .innovation-hub-card {
        padding: 20px 24px;
    }

    .innovation-hub-title {
        font-size: 1.3rem;
    }

    /* Bottom Full Width Image */
    .full-width-img {
        height: 250px;
    }

    /* Startup Alley */
    .startup-body {
        flex: 1;
        width: 100%;
    }

    /* Auto-Tech Stage */
    .autotech-body {
        flex: 1;
        width: 100%;
    }
}

.category-list {
    list-style: disc;
    padding: 20px 24px 20px 42px;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px;
    max-height: none;
}

.category-list.cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 40px;
    padding: 20px 24px 20px 42px;
}

.category-list li {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #29415c;
    line-height: 1.8;
}

/* CTA 注册区 */
.ataglance-cta {
    margin-top: 50px;
    padding: 40px 20px;
    text-align: center;
}

.ataglance-cta h2 {
    font-family: 'MiSans', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: #29415c;
    margin-bottom: 20px;
}

.ataglance-cta .cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #0f3baa;
    color: #fff;
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.ataglance-cta .cta-btn:hover {
    background: #0c2f8a;
}

/* 双栏折叠面板 */
.info-accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.info-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-accordion-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.info-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #0f3baa;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.info-accordion-header:hover {
    background: #1e3150;
}

.info-accordion-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.info-accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.info-accordion-arrow svg {
    stroke: #fff;
}

.info-accordion-item.active .info-accordion-arrow {
    transform: rotate(180deg);
}

.info-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f4f4f4;
}

.info-accordion-item.active .info-accordion-body {
    max-height: 800px;
    padding: 16px 18px;
}

.info-accordion-body p {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #29415c;
    margin-bottom: 6px;
}

.info-accordion-body p:last-child {
    margin-bottom: 0;
}

.info-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}

.info-list li {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #29415c;
    line-height: 2.0;
}

.info-list li.info-label {
    font-weight: 500;
}

.info-list li.info-value {
    list-style: none;
    padding-left: 0;
    color: #29415c;
    line-height: 1.4;
}

.info-accordion-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f3baa;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 8px;
    transition: color var(--transition-fast);
}

.info-accordion-link:hover {
    color: #29415c;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #0f3baa;
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* 餐厅网格 */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.restaurant-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.restaurant-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.restaurant-info {
    padding: 16px;
}

.restaurant-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #29415c;
    margin-bottom: 10px;
}

.restaurant-tel,
.restaurant-addr {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #8e8e8e;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.restaurant-addr {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 15px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.transport-info-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #29415c;
    margin-bottom: 14px;
}

.transport-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.transport-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #1e4bb5;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.transport-link:hover {
    color: #163a8e;
    text-decoration: underline;
}

.transport-link .dot {
    width: 6px;
    height: 6px;
    background: #29415c;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}


.topic-item {
    border: none;
    border-radius: 6px;
    margin-bottom: 16px;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition-fast);
}

.topic-item.active .topic-body {
    max-height: 2000px;
}

.topic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    cursor: pointer;
    user-select: none;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(to right, #2850b2, #c3eef9);
    border: 1px solid #3d60b7;
    border-left: none;
    transition: all var(--transition-fast);
}

.topic-header:hover {
    background: linear-gradient(to right, #1e3d8a, #a8d8ea);
    box-shadow: 0 4px 12px rgba(93,124,196,0.3);
}

.topic-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.topic-header .topic-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-header .topic-ring::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
}

.topic-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
    border: 1px solid #4881ca;
}

.topic-arrow::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #4881ca;
    border-bottom: 2px solid #4881ca;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: all var(--transition-fast);
}

.topic-item.active .topic-arrow {
    transform: rotate(180deg);
}

.topic-item.active .topic-arrow::after {
    margin-top: -4px;
}

.topic-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.topic-body-inner {
    padding: 20px 40px 24px;
}

.topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.topic-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: #4a5568;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.topic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background: url('/static/images/list-topic.png') no-repeat center;
    background-size: contain;
}

/* ===== 演讲嘉宾 ===== */
.speakers-section {
    padding: 0 0 60px;
    background: var(--color-off-white);
}

.speakers-section .section-title {
    color: #29415c;
}

.speakers-carousel {
    overflow: hidden;
    position: relative;
}

.speakers-track {
    display: flex;
    transition: transform 0.5s ease;
}

.speakers-page {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
    box-sizing: border-box;
}

.speaker-card {
    text-align: center;
}



.speaker-avatar {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}
.home .speaker-avatar {
    position: relative;
    width: 210px;
    height: 210px;
    margin: 0 auto 20px;
}

.speaker-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.speaker-photo-inner {
    position: absolute;
    top: 23px;
    left: 31px;
    width: calc(100% - 40px);
    height: calc(100% - 45px);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.speaker-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info {
    padding: 0;
    text-align: center;
}

.speaker-info h3 {
    font-size: 0.75rem;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-weight: 700;
    word-break: break-word;
}

.speaker-info .speaker-title {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    word-break: break-word;
}

.speaker-info .speaker-org {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    word-break: break-word;
}

.speaker-org-logo,
.speak-logo {
    height: 20px;
    width: auto;
}

/* ===== 轮播指示器 ===== */
.carousel-dots {
    text-align: center;
    margin-top: 24px;
}

.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #29415c;
}

/* ===== 会议页 Speakers 轮播 ===== */
.conference-speakers {
    padding: 60px 0;
    background: #fff;
}

.conf-speakers-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conf-speakers-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conf-speakers-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conf-speakers-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conf-speakers-header .section-desc::after {
    display: none;
}

.conference-speakers .speaker-avatar {
    width: 210px;
    height: 210px;
}

.conference-speakers .speaker-photo-inner {
    top: 18px;
    left: 32px;
    width: calc(100% - 38px);
    height: calc(100% - 36px);
}

.conf-speakers-carousel {
    overflow: hidden;
    position: relative;
}

.conf-speakers-track {
    display: flex;
    transition: transform 0.5s ease;
}

.conf-speakers-page {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-lg);
    box-sizing: border-box;
}

.conf-carousel-dots {
    text-align: center;
    margin-top: 24px;
}

.conf-carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.conf-carousel-dot.active {
    background: #29415c;
}

/* ===== 知名展商 ===== */
.exhibitors-section {
    padding: 60px 0 100px;
    background: #103682;
    overflow: hidden;
}

.exhibitors-header {
    margin-bottom: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.exhibitors-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.exhibitors-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -14px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.8;
}

.exhibitors-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.exhibitors-header .section-desc::after {
    display: none;
}

/* ===== Logo展商无缝滚动 ===== */
.logo-marquee {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.logo-marquee:active {
    cursor: grabbing;
}

.logo-marquee-track {
    display: flex;
    will-change: transform;
}

.logo-marquee-group {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 行尾 40px 间距：保证克隆组首尾接缝处与行内 logo 间距一致，避免首尾 logo 粘连 */
.logo-marquee-group .logo-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    padding-right: 40px;
}

/* 首页双行 marquee：第二行与第一行之间保持 20px 行距（替代原 group 内 column gap） */
.logo-marquee-offset {
    margin-top: 20px;
}

/* 第二行错位：padding-left 40px 实现右移 40px 的错位效果。
   padding-right 必须为 0：因为克隆组头部也有 padding-left 40px，
   若保留 padding-right 40px，接缝处间距会变成 40+40=80px（行内只有 40px），
   导致最后一个 logo 与第一个 logo 之间多出一个 logo 宽度的空隙。 */
.logo-marquee-group .offset-row {
    padding-left: 40px;
    padding-right: 0;
}

.logo-marquee-group .logo-row .logo-item {
    flex: 0 0 150px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    transition: all var(--transition-normal);
    opacity: 1;
}

.logo-marquee-group .logo-row .logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--color-accent);
}

.logo-marquee-group .logo-row .logo-item span {
    font-weight: 700;
    color: #333;
}

.logo-marquee-group .logo-row .logo-item img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
}

/* 知名展商 logo 白底样式 */
.exhibitors-section .logo-item {
    background: #fff;
    border-radius: 8px;
}

/* 展商&赞助商 logo 白底样式 */
.conference-sponsors .logo-item {
    background: #fff;
    border-radius: 8px;
}

/* ===== 媒体合作伙伴 ===== */
.partners-section {
    padding: 60px 0;
    background: #f7f7f8;
    overflow: hidden;
}

.partners-header {
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: visible;
}

.partners-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.partners-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.partners-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.partners-header .section-desc::after {
    display: none;
}

/* 媒体合作伙伴滚动 */
.media-marquee {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.media-marquee:active {
    cursor: grabbing;
}

.media-marquee .logo-marquee-track {
    display: flex;
    will-change: transform;
}

.media-marquee .logo-marquee-group {
    flex-shrink: 0;
    display: flex;
}

.media-marquee .logo-marquee-group .logo-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.media-marquee .logo-marquee-group .logo-row .logo-item {
    flex: 0 0 160px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all var(--transition-normal);
}

.media-marquee .logo-marquee-group .logo-row .logo-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.media-marquee .logo-marquee-group .logo-row .logo-item img {
    max-height: 100px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 60px 0;
    background: #103682;
    overflow: hidden;
}

.faq-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.faq-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.faq-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -14px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.8;
}

.faq-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.faq-header .section-desc::after {
    display: none;
}

.faq-container {
    width: 94%;
    margin: 0 auto;
}

.faq-subtitle {
    color: #fff;
    font-family: 'MiSans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
   
    text-align: left;
    width: 94%;
    margin: 0 auto;

    margin-bottom: 60px;
}

.faq-item {
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    cursor: pointer;
    user-select: none;
    border-radius: 6px;
    background: linear-gradient(to right, rgba(58, 92, 168, 0.65), rgba(42, 74, 158, 0.65));
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: linear-gradient(to right, #2e4e96, #1e3c8a);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    padding-right: var(--space-md);
    color: #fff;
    letter-spacing: 0.5px;
}

.faq-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
}

.faq-arrow::after {
    content: '';
    width: 16px;
    height: 16px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: all var(--transition-fast);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-arrow::after {
    margin-top: -4px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    background: rgba(0,0,0,0.2);
}

.faq-answer-inner {
    padding: 20px 24px 24px;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.8;
}

.faq-answer-inner p {
    margin: 0;
    color: #fff;
}

.faq-answer-inner li {
    list-style: disc;
    margin-left: 20px;
    color: #fff;
}

/* ===== Conference Europe Page ===== */
.conference-page .site-header {
    margin-top: 0;
    background: #0a93b5;
    border-top: 1px solid #bac2e3;
}
.conference-page .site-header.scrolled {
    background: #0a93b5;
}
.conference-banner {
    width: 100%;
    background: #f0f0f0;
}

.conference-banner .banner-img {
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
}

.conference-banner .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.conference-section-title {
    font-family: 'MiSans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3baa;
    margin-bottom: 30px;
    padding-left: 24px;
    position: relative;
}

.conference-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: #0f3baa;
}

/* About the Event */
.conference-about {
    padding: 60px 0;
    background: #fff;
}

.conference-about-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-about-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-about-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-about-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-about-header .section-desc::after {
    display: none;
}

.about-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-row:last-child {
    margin-bottom: 0;
}

.about-row-text {
    flex: 1;
}

.about-row-text p {
    font-family: 'MiSans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: #29415c;
    text-align: justify;
}

.about-row-text p strong {
    font-weight: 700;
    color: #29415c;
}

.about-row-img {
    flex: 0 0 35%;
    overflow: hidden;
    border-radius: 6px;
}

.about-row-img img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

/* Parts of the Event */
.conference-parts {
    padding: 60px 0 80px;
    background: #0a93b5;
}

.conference-parts-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-parts-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-family: 'MiSans', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-parts-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-parts-header .section-desc {
    font-family: 'MiSans', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-parts-header .section-desc::after {
    display: none;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.parts-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.parts-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.parts-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.parts-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(34, 115, 169, 0.85);
    border: 1px solid #25d6c9;
    border-radius: 4px;
    width: 100%;
}

.parts-num {
    font-family: 'MiSans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.parts-label {
    font-family: 'MiSans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

/* Speakers */
.conference-speakers {
    padding: 60px 0;
    background: #fff;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.speaker-item {
    text-align: center;
}

.speaker-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.speaker-name {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.speaker-title {
    font-size: 0.85rem;
    color: #888;
}

/* Agenda */
.conference-agenda {
    padding: 60px 0;
    background: #f7f7f8;
}

.conf-agenda-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conf-agenda-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conf-agenda-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conf-agenda-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conf-agenda-header .section-desc::after {
    display: none;
}

.agenda-day {
    margin-bottom: 60px;
}

.agenda-day:last-child {
    margin-bottom: 0;
}

/* 富文本议程：多天之间的标题加分隔间距（原每个 Day 独立 .agenda-day 时靠 margin-bottom 分隔，合并成单个富文本后需在标题前补间距） */
.agenda-day .agenda-day-title {
    margin-top: 0;
}
.agenda-day .agenda-list + .agenda-day-title {
    margin-top: 60px;
}

/* ===== Agenda 富文本表格（后台 wangEditor 普通编辑，前端 .agenda-rich 统一渲染样式） ===== */
/* 兼容两种 wangEditor 表格结构：
   A) <table><tbody><tr><td colSpan=2>Day标题</td></tr><tr><td>时间</td><td>内容</td></tr>...
   B) <table><thead><tr><th>Day标题</th></tr></thead><tbody><tr><td>时间</td><td>内容</td></tr>...
   每个 Day 是独立的 <table>。 */
.agenda-rich table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-family: 'MiSans', sans-serif;
}
.agenda-rich table:last-child {
    margin-bottom: 0;
}
/* Day 标题行（兼容 thead th 与 tbody 首行 td colSpan=2） */
.agenda-rich table thead th,
.agenda-rich table tbody tr:first-child td {
    background: #04abc4;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border: none;
}
/* 数据行下边框 */
.agenda-rich table tbody tr {
    border-bottom: 1px solid #e5edf7;
}
.agenda-rich table tbody tr:last-child {
    border-bottom: none;
}
/* 内容单元格（标题行 td 除外，避免被时间列宽度影响） */
.agenda-rich table tbody td {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #103682;
    line-height: 1.5;
    vertical-align: top;
    border: none;
}
/* 时间列（数据行第一列）窄且加粗 */
.agenda-rich table tbody tr:not(:first-child) td:first-child {
    width: 130px;
    font-family: 'MiSans', sans-serif;
    white-space: nowrap;
    color: #103682;
    font-weight: 600;
}

.agenda-day-title {
    background: #04abc4;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 10px 24px;
    font-family: 'MiSans', sans-serif;
}

.agenda-list {
}

.agenda-item {
    display: flex;
    gap: 24px;
    padding: 14px 24px;
    border-bottom: 1px solid #0953da;
    align-items: center;
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-item:has(+ .agenda-break) {
    border-bottom: none;
}

.agenda-time {
    flex: 0 0 110px;
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #103682;
}

.agenda-content {
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #103682;
    line-height: 1.5;
}

.agenda-break {
    background: linear-gradient(to right, #06a8c0, #07a4be);
    border-bottom: none;
}

.agenda-break .agenda-time {
    color: #fff;
}

.agenda-break .agenda-content {
    color: #fff;
}

/* Networking Party */
.conference-party {
    padding: 60px 0 80px;
    background: #0a93b5;
}

.conference-party .conf-party-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-party .conf-party-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-party .conf-party-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-party .conf-party-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-party .conf-party-header .section-desc::after {
    display: none;
}

.party-time {
    text-align: center;
    color: #fff;
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.party-subtitle {
    text-align: center;
    color: #fff;
    font-family: 'MiSans', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
}

.party-img {
    width: 100%;
    height: 350px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
}

.party-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.party-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.party-card {
    background: linear-gradient(to bottom, #519dcc, #52c02c);
    border: 2px solid #5df80b;
    border-radius: 10px;
    padding: 25px 20px;
    color: #fff;
    text-align: center;
}

.party-card .party-card-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.party-card .party-card-desc {
    font-family: 'MiSans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .party-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .party-cards {
        grid-template-columns: 1fr;
    }
}

/* Exhibitors & Sponsors */
.conference-sponsors {
    padding: 60px 0 80px;
    background: #f7f7f8;
}

.conference-sponsors .conf-sponsors-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-sponsors .conf-sponsors-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-sponsors .conf-sponsors-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-sponsors .conf-sponsors-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-sponsors .conf-sponsors-header .section-desc::after {
    display: none;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sponsor-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.sponsor-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

/* We will invite */
.conference-invite {
    padding: 60px 0 80px;
    background: #0a93b5;
}

.conference-invite .conf-invite-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-invite .conf-invite-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-invite .conf-invite-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-invite .conf-invite-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-invite .conf-invite-header .section-desc::after {
    display: none;
}

.invite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.invite-column ul {
    list-style: disc;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.invite-column li {
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    padding: 5px 0;
    line-height: 1.6;
}

/* Concurrent Event */
.conference-concurrent {
    padding: 60px 0 80px;
    background: #f7f7f8;
}

.conference-concurrent .conf-concurrent-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-concurrent .conf-concurrent-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-concurrent .conf-concurrent-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-concurrent .conf-concurrent-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-concurrent .conf-concurrent-header .section-desc::after {
    display: none;
}

.concurrent-content {
    text-align: center;
}

.concurrent-title {
    font-family: 'MiSans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #29415c;
    margin-bottom: 24px;
}

.concurrent-desc-box {
    position: relative;
    margin: 0 0 40px;
    padding: 20px 30px;
}

.concurrent-desc-box .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #0a93b5;
    border-style: solid;
}

.concurrent-desc-box .corner-tl {
    top: 0;
    left: 0;
    border-width: 8px 0 0 8px;
}

.concurrent-desc-box .corner-br {
    bottom: 0;
    right: 0;
    border-width: 0 8px 8px 0;
}

.concurrent-desc-box p {
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.concurrent-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.conference-concurrent .stat-item {
    text-align: center;
    flex: 1;
}

.conference-concurrent .stat-number {
    display: block;
    font-family: 'MiSans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a93b5;
    line-height: 1;
}

.conference-concurrent .stat-number sup {
    font-family: 'MiSans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    vertical-align: baseline;
    margin-left: 0;
}

.conference-concurrent .stat-label {
    display: block;
    font-size: 1rem;
    color: #0a93b5;
    margin-top: 8px;
    font-weight: 600;
}

.concurrent-images {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.concurrent-img-item {
    flex: 1;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

.concurrent-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Previous Participants */
.conference-previous {
    padding: 60px 0 80px;
    background: #0a93b5;
}

.conference-previous .conf-previous-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-previous .conf-previous-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-previous .conf-previous-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-previous .conf-previous-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-previous .conf-previous-header .section-desc::after {
    display: none;
}

.previous-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.previous-column ul {
    list-style: disc;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.previous-column li {
    font-family: 'MiSans', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    padding: 5px 0;
    line-height: 1.6;
}

/* Previous Exhibitors & Sponsors */
.conference-prev-sponsors {
    padding: 60px 0 80px;
    background: #f7f7f8;
}

.conference-prev-sponsors .conf-prev-sponsors-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-prev-sponsors .conf-prev-sponsors-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-prev-sponsors .conf-prev-sponsors-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-prev-sponsors .conf-prev-sponsors-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #29415c;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-prev-sponsors .conf-prev-sponsors-header .section-desc::after {
    display: none;
}

.conference-prev-sponsors .logo-item {
    background: #fff;
    border-radius: 8px;
}

/* About Organizer */
.conference-organizer {
    padding: 60px 0 80px;
    background: #07a2bd;
}

.conference-organizer .conf-organizer-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.conference-organizer .conf-organizer-header .bg-word {
    position: absolute;
    left: -10%;
    bottom: -20px;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-align: left;
}

.conference-organizer .conf-organizer-header .bg-word-line {
    position: absolute;
    left: -10%;
    bottom: -20px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.conference-organizer .conf-organizer-header .section-desc {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.conference-organizer .conf-organizer-header .section-desc::after {
    display: none;
}

.organizer-highlight {
    color: #33d62b;
    font-weight: 700;
}

.organizer-content p {
    font-family: 'MiSans', sans-serif;
    font-size: 1rem;
    line-height: 2;
    color: #fff;
    margin: 0;
}

.submit-btn:hover {
    background: #0c2f8a;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    padding: 12px 6px;
    background: #103681;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 0.7rem;
    line-height: 1.3;
    border-radius: 14px 0 0 14px;
    transition: background 0.3s;
}

.floating-btn:hover {
    background: #001d5a;
}

.floating-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
    stroke-width: 1.5;
}

@media (max-width: 767px) {
    .floating-buttons {
        top: auto;
        bottom: 20px;
        right: 10px;
        transform: none;
        flex-direction: row;
        gap: 8px;
    }
    .floating-btn {
        width: auto;
        padding: 10px 14px;
        border-radius: 8px;
        flex-direction: row;
        gap: 6px;
        font-size: 0.75rem;
    }
    .floating-btn span br {
        display: none;
    }
    .floating-icon {
        margin-bottom: 0;
    }
}

/* ===== New Energy Vehicle Page Overrides ===== */
.nev-page .site-header { background: #0525a3; }
.nev-page .site-header.scrolled { background: #0525a3; }
.nev-page .conference-parts { background: #0525a3; }
.nev-page .conference-party { background: #0525a3; }
.nev-page .conference-invite { background: #0525a3; }
.nev-page .conference-previous { background: #0525a3; }
.nev-page .concurrent-desc-box .corner { border-color: #0525a3; }
.nev-page .conference-concurrent .stat-number { color: #0525a3; }
.nev-page .conference-concurrent .stat-label { color: #0525a3; }
.nev-page .submit-btn { background: #0525a3; }
.nev-page .submit-btn:hover { background: #041d82; }
.nev-page .agenda-day-title { background: #0525a3; }
.nev-page .agenda-rich table tbody tr:first-child td { background: #0625a2; }
.nev-page .party-card { background: linear-gradient(to bottom, #bf1ccc, #2637ca); border-color: #0141ee; }
.nev-page .conference-organizer { background: #0525a3; }

/* Responsive */
@media (max-width: 991px) {
    .about-row {
        flex-direction: column;
        gap: 24px;
    }
    .about-row.about-row-reverse {
        flex-direction: column;
    }
    .about-row-img {
        flex: auto;
        width: 100%;
        order: -1;
    }
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .invite-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sponsors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .organizer-inner {
        flex-direction: column;
    }
    .organizer-form {
        flex: auto;
        width: 100%;
    }
    .concurrent-stats {
        gap: 30px;
    }
    .previous-images {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .parts-grid {
        grid-template-columns: 1fr;
    }
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .invite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .agenda-item {
        flex-direction: column;
        gap: 8px;
    }
    .party-actions {
        flex-direction: column;
        align-items: center;
    }
    .concurrent-images {
        flex-direction: column;
        align-items: center;
    }
    .concurrent-img-item {
        flex: auto;
        width: 100%;
    }
}

