/* ==================== exhibition-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;
            background: #0b0b0b; /* 图片异步加载期间的占位底色，防止闪现 */
        }

        .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;
            width: 1822px;
            position: relative;
        }

        /* 双信息框时的宽度 */
        .info-boxes-wrapper .info-box:first-child {
            width: 842px;
        }

        .info-boxes-wrapper .info-box:last-child {
            width: 930px;
            margin-right: 0;
        }

        .info-dot {
            width: 10px;
            height: 10px;
            background: #000000;
            border-radius: 50%;
            position: absolute;
            left: 30px;
            top: 38px;
        }

        .info-content {
            margin-left: 25px;
        }

        .info-label {
            font-size: 24px;
            color: #000000;
            line-height: 50px;
            display: block;
            margin: 0;
        }

        .info-date {
            font-size: 20px;
            color: #000000;
            line-height: 50px;
            display: block;
            margin: 0;
        }

        /* 描述文本 */
        .description {
            max-width: 1822px;
            font-size: 18px;
            line-height: 35px;
            color: #000000;
            margin: 40px 0 80px 0;
        }

        .description p {
            margin-bottom: 30px;
        }

        .description p:last-child {
            margin-bottom: 0;
        }

        .description .exhibition-credits {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #E0E0E0;
            font-size: 16px;
            line-height: 2;
            color: #666666;
        }

        .description .exhibition-credits strong {
            color: #000000;
            font-weight: 600;
        }

        .description p {
            margin-bottom: 35px;
        }

        .description p:last-child {
            margin-bottom: 0;
        }

        /* 策展人 */
        .curator {
            text-align: right;
            font-size: 18px;
            line-height: 50px;
            color: #000000;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        /* 作品展示部分 */
        .works-section {
            margin: 80px 0 100px 0;
            position: relative;
        }

        .works-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 1px solid #A6A6A6;
        }

        .works-title {
            font-size: 35px;
            line-height: 49px;
            color: #000000;
            font-weight: 400;
        }

        .works-nav {
            display: flex;
            gap: 14px;
        }

        .works-nav-btn {
            width: 50px;
            height: 50px;
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .works-nav-btn:hover {
            opacity: 0.7;
        }

        .works-nav-btn img {
            width: 50px;
            height: 50px;
            display: block;
        }

        /* 作品画廊 */
        .works-gallery {
            position: relative;
            overflow: hidden;
        }

        .works-gallery-wrapper {
            display: flex;
            gap: 41px;
            transition: transform 0.5s ease;
        }

        .work-card {
            flex-shrink: 0;
            width: 580px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .work-card:hover {
            transform: translateY(-10px);
        }

        .work-card img {
            width: 100%;
            height: 387px;
            object-fit: cover;
            display: block;
        }

        /* 图片浮窗 */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }

        .image-modal.active {
            display: flex;
        }

        .image-modal img {
            max-width: 90%;
            max-height: 90%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .image-modal-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            z-index: 10001;
        }

        .image-modal-close::before,
        .image-modal-close::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30px;
            height: 2px;
            background: white;
        }

        .image-modal-close::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .image-modal-close::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        /* 响应式 */
        @media (max-width: 1199px) {
            .banner {
                height: 500px;
                margin-top: 130px;
            }

            .content {
                padding: 50px 30px;
            }

            .title-section h1 {
                font-size: 28px;
                line-height: 1.5;
            }

            .description {
                font-size: 16px;
                line-height: 1.8;
            }

            .works-gallery-wrapper {
                gap: 20px;
            }

            .work-card {
                width: calc((100% - 40px) / 3);
            }
        }

        @media (max-width: 767px) {
            .banner {
                height: 300px;
            }

            .content {
                padding: 30px 20px;
            }

            .title-section h1 {
                font-size: 24px;
            }

            .info-boxes-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .info-box {
                width: 100% !important;
                margin-right: 0 !important;
                padding: 15px 20px;
            }

            .info-boxes-wrapper .info-box:first-child,
            .info-boxes-wrapper .info-box:last-child {
                width: 100% !important;
            }

            .works-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .work-card {
                width: 100%;
            }

            .works-gallery-wrapper {
                flex-direction: column;
            }
        }

        /* 滚动触发动画 */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .scroll-animate.active {
            opacity: 1;
            transform: translateY(0);
        }