/* ==================== event-detail 页面样式 ==================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'HarmonyOS Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            background: white;
            overflow-x: hidden;
        }

        /* 主容器 - 响应式布局 */
        .main-wrapper {
            width: 100%;
            max-width: 1920px;
            margin: 0 auto;
            position: relative;
            background: white;
        }

        /* 1200px-1920px：流体布局（替代有害的transform scale） */
        @media screen and (min-width: 1200px) and (max-width: 1920px) {
            .main-wrapper {
                width: 100vw;
                max-width: 100vw;
                margin: 0;
                position: relative;
                /* 移除transform scale，使用自然流体布局 */
            }
            body {
                min-height: auto;
                /* 移除缩放相关的高度计算 */
            }
        }

        /* 1920px以上：居中显示，取消缩放 */
        @media screen and (min-width: 1921px) {
            .main-wrapper {
                width: 1920px;
                max-width: 1920px;
                transform: none;
            }
            body {
                min-height: auto;
            }
        }
        
        /* 小于1200px */
        @media screen and (max-width: 1199px) {
            .main-wrapper {
                width: 100%;
                max-width: 100%;
                transform: none;
            }
        }

        /* Banner区域 */
        .banner {
            width: 1920px;
            height: 720px;
            margin-top: 150px; /* header(110) + spacing(40) - 统一间距标准 */
            overflow: hidden;
            position: relative;
        }

        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 内容容器 */
        .content {
            width: 1920px;
            padding: 73px 49px 0 49px;
        }

        /* 标题部分 */
        .title-section {
            margin-bottom: 40px;
        }

        .title-section h1 {
            font-size: 35px;
            line-height: 100px;
            color: #000000;
            font-weight: 400;
            margin-bottom: 30px;
        }

        /* 活动信息框容器 */
        .info-boxes-wrapper {
            display: flex;
            gap: 0; /* 移除间隙，让背景连在一起 */
            margin-bottom: 40px;
            background: #F5F5F5; /* 统一的灰色背景 */
        }

        /* 活动信息框 */
        .info-box {
            background: #F5F5F5;
            padding: 18px 30px;
            display: block;
            position: relative;
        }

        .info-box .label {
            font-size: 24px;
            line-height: 50px;
            color: #000000;
            margin-bottom: 0;
            position: relative;
            padding-left: 30px;
        }

        .info-box .label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20px;
            width: 10px;
            height: 10px;
            background: #000000;
            border-radius: 50%;
        }

        .info-box .value {
            font-size: 20px;
            line-height: 50px;
            color: #000000;
        }

        /* 简介部分 */
        .intro {
            font-size: 18px;
            line-height: 50px;
            color: #000000;
            margin-bottom: 50px;
        }

        .intro strong {
            font-weight: 500;
        }

        /* 描述部分 */
        .description {
            font-size: 18px;
            line-height: 50px;
            color: #000000;
            margin-bottom: 50px;
            text-align: justify;
        }

        .description p {
            margin-bottom: 30px;
        }

        .description p:last-child {
            margin-bottom: 0;
        }

        /* 分隔线 - 暂时隐藏 */
        .divider {
            width: 100%;
            height: 1px;
            background: #A6A6A6;
            margin: 50px 0;
            display: none; /* 暂时隐藏分割线 */
        }

        /* 嘉宾介绍部分 */
        .guest-section {
            display: flex;
            gap: 50px;
            margin-bottom: 50px;
        }

        .guest-info {
            flex: 1;
            font-size: 18px;
            line-height: 50px;
            color: #000000;
            text-align: justify;
        }

        .guest-photo {
            width: 596px;
            height: 599px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .guest-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 备注信息 */
        .note {
            font-size: 18px;
            line-height: 50px;
            color: #000000;
            margin-bottom: 50px;
            text-align: justify;
        }

        /* 图片展示区 */
        .image-gallery {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
        }

        .image-item {
            width: 394px;
            height: 526px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .image-item:hover {
            transform: scale(1.02);
        }

        .image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 响应式：小于1200px */
        @media (max-width: 1199px) {
            .main-wrapper {
                width: 100%;
                transform: none;
            }

            body {
                min-height: auto;
            }

            .banner,
            .content {
                width: 100%;
            }

            .banner {
                height: 40vh;
                margin-top: 80px;
            }

            .content {
                padding: 40px 20px;
            }

            .title-section h1 {
                font-size: 24px;
                line-height: 1.4;
            }

            .info-boxes-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .guest-section {
                flex-direction: column;
            }

            .guest-photo {
                width: 100%;
                height: auto;
                aspect-ratio: 596 / 599;
            }

            .image-gallery {
                flex-direction: column;
            }

            .image-item {
                width: 100%;
                height: auto;
                aspect-ratio: 394 / 526;
            }
        }