@charset "utf-8";
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        :root {
            --primary-color: #1a56db;
            --secondary-color: #0e4aa3;
            --accent-color: #10b981;
            --dark-color: #111827;
            --light-color: #f9fafb;
            --gray-color: #6b7280;
            --blue-color:#1dabfe;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* 启动页样式 */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000 url('../images/Q-BJ.jpg') no-repeat center / cover;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            overflow: hidden;
        }
        
        /* 增强的悬浮粒子特效 */
        .splash-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* 使用多个径向渐变创建悬浮粒子效果 */
            background: 
                /* 大粒子 */
                radial-gradient(circle at 10% 20%, rgba(26, 86, 219, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 90% 30%, rgba(26, 86, 219, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(26, 86, 219, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(26, 86, 219, 0.16) 0%, transparent 50%),
                radial-gradient(circle at 30% 60%, rgba(26, 86, 219, 0.17) 0%, transparent 50%),
                /* 中粒子 */
                radial-gradient(circle at 20% 40%, rgba(26, 86, 219, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(26, 86, 219, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 60% 20%, rgba(26, 86, 219, 0.13) 0%, transparent 40%),
                radial-gradient(circle at 40% 90%, rgba(26, 86, 219, 0.11) 0%, transparent 40%),
                /* 小粒子 */
                radial-gradient(circle at 15% 70%, rgba(26, 86, 219, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 85% 10%, rgba(26, 86, 219, 0.09) 0%, transparent 30%),
                radial-gradient(circle at 55% 55%, rgba(26, 86, 219, 0.07) 0%, transparent 30%),
                radial-gradient(circle at 35% 35%, rgba(26, 86, 219, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 65% 85%, rgba(26, 86, 219, 0.09) 0%, transparent 30%),
                radial-gradient(circle at 95% 45%, rgba(26, 86, 219, 0.07) 0%, transparent 30%);
            animation: particleFloat 6s ease-in-out infinite alternate, particleGlow 3s ease-in-out infinite alternate;
            opacity: 0.7;
            z-index: 1; /* 确保在内容之下 */
        }
        
        /* 粒子浮动动画 */
        @keyframes particleFloat {
            0% {
                transform: translate(0, 0) scale(1.05);
            }
            50% {
                transform: translate(10px, -10px) scale(1.1);
            }
            100% {
                transform: translate(-5px, 5px) scale(1);
            }
        }
        
        /* 粒子发光脉动动画 */
        @keyframes particleGlow {
            0% {
                opacity: 0.5;
            }
            100% {
                opacity: 0.9;
            }
        }
        
        .splash-content {
            text-align: center;
            width: 80%;
            max-width: 500px;
            position: relative;
            z-index: 2; /* 确保内容在背景特效之上 */
                display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
        }
        
        .splash-logo {
            margin-bottom: 40px;
            animation: fadeIn 1s ease-in-out, logoGlow 2s ease-in-out infinite alternate; */
        }
        
        .splash-logo img {
            width: 100%;
            /* max-width: 300px; */
            height: auto;
            /* 添加蓝色发光效果
            filter: drop-shadow(0 0 .1rem rgba(0, 174, 255, 0.8)) 
                    drop-shadow(0 0 .2rem rgba(0, 174, 255, 0.6))
                    drop-shadow(0 0 .3rem rgba(0, 174, 255, 0.4)) */
        }
        
        /* Logo发光动画 */
        @keyframes logoGlow {
            from {
                filter: drop-shadow(0 0 .2rem rgba(0, 174, 255, 0.8))
                        drop-shadow(0 0 .4rem rgba(0, 174, 255, 0.6))
                        drop-shadow(0 0 .6rem rgba(0, 174, 255, 0.4));
            }
            to {
                filter: drop-shadow(0 0 .3rem rgba(0, 174, 255, 1))
                        drop-shadow(0 0 .6rem rgba(0, 174, 255, 0.8))
                        drop-shadow(0 0 .9rem rgba(0, 174, 255, 0.6));
            }
        }
        
        .splash-progress-container {
            width: 100%;
            height: 8px; /* 增加进度条高度 */
            background-color: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 10px;
            /* 为容器添加轻微发光效果 */
            box-shadow: 0 0 5px rgba(26, 86, 219, 0.3);
        }
        
        .splash-progress-bar {
            height: 100%;
            background-color: #0091ff;
            width: 0%;
            border-radius: 4px;
            transition: width 0.3s ease, box-shadow 0.3s ease;
            /* 更强的发光效果 */
            box-shadow: 0 0 20px rgba(26, 86, 219, 0.8),
                        0 0 40px rgba(26, 86, 219, 0.6),
                        0 0 60px rgba(26, 86, 219, 0.4),
                        0 0 80px rgba(26, 86, 219, 0.2);
            /* 增加亮度和对比度 */
            filter: brightness(1.4) contrast(1.2);
            /* 添加脉动动画 */
            animation: pulse 1.5s infinite alternate;
        }
        
        /* 增强的脉动动画 */
        @keyframes pulse {
            from {
                box-shadow: 0 0 10px rgba(26, 86, 219, 0.6),
                            0 0 20px rgba(26, 86, 219, 0.4),
                            0 0 30px rgba(26, 86, 219, 0.2);
                filter: brightness(1.2) contrast(1.2);
            }
            to {
                box-shadow: 0 0 30px rgba(26, 86, 219, 1),
                            0 0 60px rgba(26, 86, 219, 0.8),
                            0 0 90px rgba(26, 86, 219, 0.6),
                            0 0 120px rgba(26, 86, 219, 0.4);
                filter: brightness(1.6) contrast(1.4);
            }
        }
        
        .splash-progress-text {
            color: #ffffff; /* 白色文本在黑色背景下更清晰 */
            font-size: 16px;
            font-weight: 600;
            /* 添加轻微的发光效果，增强可读性 */
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        
        /* 启动页进入按钮样式 */
        .splash-enter-btn {
            margin-top: 30px;
            padding: .8rem 1.5rem;
            background: linear-gradient(135deg, #1960ff, #00f5ff);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgb(0 247 255 / 50%);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .splash-enter-btn.show {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUpS 0.8s ease-out forwards, pulse 1.5s infinite alternate 0.8s;
        }

        @keyframes fadeInUpS {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        
        .splash-enter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(26, 86, 219, 0.8);
            background: linear-gradient(135deg, #0e4aa3, #1a56db);
        }
        
        .splash-enter-btn:active {
            transform: translateY(0);
        }
        
        /* 淡入动画 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* 启动页隐藏时的样式 */
        .splash-screen.hidden{
            opacity: 0;
            visibility: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* 头部样式 */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        
        /* hero区域样式 - 固定在header下方 */
        .hero {
            position: sticky;
            top: 0;
            z-index: 90;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 20px 0;
            text-align: center;
            overflow: hidden;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }

        .logo img{
        	        width: auto;
    height: 5vh;
    object-fit: contain;
        }
        
        @media (max-width: 576px) {
.logo img{
    max-width: 70vw;
        max-height: 5vh;
    height: auto;
    width: auto;
    object-fit: contain;
        }
}
        
        /* 浮动音频控制样式 - 固定在右侧居中位置 */
        .floating-audio-controls {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            font-size: 22px;
        }
        
        .floating-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }
        
        .floating-btn.active {
            background-color: var(--accent-color);
        }
        
        /* 背景音乐按钮播放时的旋转动画 */
        #toggleMusic.active i {
            animation: rotate 2s linear infinite;
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        /* 语音播报按钮播放时的声波发光动画 */
        #toggleVoice.active {
            position: relative;
            background-color:var(--blue-color);
            animation: soundWave 1.5s ease-in-out infinite;
        }
        
        @keyframes soundWave {
            0%, 100% {
                box-shadow: 0 0 5px var(--blue-color);
            }
            50% {
                box-shadow: 0 0 10px var(--blue-color), 0 0 15px var(--blue-color);
            }
        }
        
        .floating-btn.music-off {
            background-color: #9ca3af;
        }
        
        .floating-btn.voice-off {
            background-color: #9ca3af;
        }
        
        .floating-btn.ai-btn {
            background-color: #8b5cf6;
        }
        
        .floating-btn.ai-btn:hover {
            background-color: #7c3aed;
        }
        
        /* 返回顶部按钮样式 */
        .back-to-top-btn {
            opacity: 0;
            transform: translateY(30px) scale(0.8);
            pointer-events: none;
            z-index: -1;
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background-color: var(--primary-color);
        }
        
        .back-to-top-btn.show {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
            z-index: 1000;
        }
        
        .back-to-top-btn:hover {
            background-color: var(--secondary-color);
        }
        
        /* 智能体弹窗样式 */
        .ai-modal {
            position: fixed;
            bottom: -95%;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            height: 80%;
            background-color: white;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            transition: bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
            overflow: hidden;
            opacity: 0;
        }
        
        .ai-modal.show {
            bottom: 0;
            opacity: 1;
        }
        
        .ai-modal-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .ai-modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .close-ai-modal {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .close-ai-modal:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .ai-modal-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .ai-iframe {
            flex: 1;
            width: 100%;
            border: none;
            background-color: white;
        }
        
        /* 遮罩层 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* 案例详情弹窗样式 */
        .artwork-modal {
            position: fixed;
            bottom: -95%;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            height: 80%;
            background-color: white;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            transition: bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
            overflow: hidden;
            opacity: 0;
        }
        
        .artwork-modal.show {
            bottom: 0;
            opacity: 1;
        }
        
        .artwork-modal-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .artwork-modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            width: calc(100% - 40px);
        }

        .artwork-modal-title span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .close-artwork-modal {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .close-artwork-modal:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .artwork-modal-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            height: auto;
            overflow-y: scroll;
        }

        .artwork-modal-details{height: 100%;}
        
        .artwork-iframe {
            flex: 1;
            width: 100%;
            border: none;
            background-color: white;
            height: 100%;
        }
        
        /* 全屏图片展示样式 */
        .artwork-modal-image {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #000;
            position: relative;
            text-align: center;
        }
        
        .artwork-modal-image img {
            max-width: 100%;
            object-fit: cover;
            width: 100%;
            height: auto;
        }
        
        /* 英雄区域样式 */

        
        .hero::before,.artwork-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .hero-content {
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 800;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1rem;
            opacity: 0.9;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 业务介绍样式 */
        .intro {
            padding: 60px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 1.5rem;
            margin:10px 0;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1rem;
            color: var(--gray-color);
        }
        
        /* 文章内容样式 */
        .article-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px;
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }
        
        /* 图片展示样式 */
        .gallery {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .gallery-container {
            margin-top: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 视频播放区域样式 */
        .video-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .video-container {
            max-width: 900px;
            margin: 50px auto 0;
            background-color: #000;
            border-radius: 16px;
            overflow: hidden;
            /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
            aspect-ratio: 16 / 9;
        }
        
        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* 轮播样式 */
        .slider-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            background-color: #f8f9fa;
            padding: 40px 0;
            perspective: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slider-track {
            position: relative;
            width: 100%;
            height: calc(100% - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .slider-item {
            position: absolute;
            width: 280px;
            height: 100%;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            background-color: white;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-style: preserve-3d;
            opacity: 0;
            cursor: pointer;
        }
        
        .slider-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }
        
        .slider-image-wrapper {
            width: 100%;
            height: calc(100% - 80px);
            position: relative;
        }
        
        .slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;
            opacity: 0;
            animation: imageFadeIn 1.5s ease-out forwards;
        }
        
        .slider-item:hover .slider-image {
            transform: scale(1.05);
        }
        
        @keyframes imageFadeIn {
            from {
                opacity: 0;
                transform: scale(1.1);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .slider-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background-color: white;
            color: var(--dark-color);
            opacity: 1;
            transform: translateY(0);
        }
        
        .slider-caption h3 {
            font-size: 18px;
            margin: 0;
            font-weight: 600;
            text-align: center;
            animation: captionFadeIn 0.8s ease-out 0.3s forwards;
            opacity: 0;
            transform: translateY(10px);
        }
        
        @keyframes captionFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 导航按钮 */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
        }
        
        .slider-nav:hover {
            background-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-nav-prev {
            left: 20px;
        }
        
        .slider-nav-next {
            right: 20px;
        }
        
        /* 指示器 */
        .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .slider-indicator {
            width: 12px;
            height: 12px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            background-color: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .slider-indicator.active {
            background-color: white;
            transform: scale(1.3);
            border-color: white;
        }
        
        .slider-indicator:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }
        
        /* 加载动画 */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .slider-image.loading {
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        /* 文章内容样式 */
        .article-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 0;
            font-size: 16px;
            line-height: 1.8;
            color: #333;
        }
        
        /* 图片自适应 */
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 5px auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        /* 视频自适应 */
        .article-content video {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        /* 音频自适应 */
        .article-content audio {
            max-width: 100%;
            display: block;
            margin: 20px auto;
        }
        
        /* 表格自适应 */
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            overflow-x: auto;
            display: block;
        }
        
        .article-content table th,
        .article-content table td {
            padding: 12px;
            text-align: left;
            border: 1px solid #ddd;
        }
        
        .article-content table th {
            background-color: #f5f5f5;
            font-weight: 600;
        }
        
        /* 嵌入内容自适应 */
        .article-content iframe {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
        }
        
        /* 块引用样式 */
        .article-content blockquote {
            margin: 20px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-left: 5px solid #4a90e2;
            font-style: italic;
            color: #666;
        }
        
        /* 列表样式 */
        .article-content ul,
        .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            margin-bottom: 8px;
        }
        
        /* 标题样式 */
        .article-content h1,
        .article-content h2,
        .article-content h3,
        .article-content h4,
        .article-content h5,
        .article-content h6 {
            margin: 25px 0 15px 0;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .article-content h1 {
            font-size: 28px;
            color: #2c3e50;
        }
        
        .article-content h2 {
            font-size: 24px;
            color: #34495e;
        }
        
        .article-content h3 {
            font-size: 20px;
            color: #34495e;
        }
        
        /* 段落样式 */
        .article-content p {
            margin-bottom: 20px;
        }
        
        /* 链接样式 */
        .article-content a {
            color: #4a90e2;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .article-content a:hover {
            color: #357abd;
            text-decoration: underline;
        }
        
        /* 代码块样式 */
        .article-content pre {
            background-color: #f5f5f5;
            padding: 15px;
            border-radius: 8px;
            overflow-x: auto;
            margin: 20px 0;
            font-family: 'Courier New', Courier, monospace;
            font-size: 14px;
        }
        
        .article-content code {
            background-color: #f5f5f5;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 14px;
        }
        
        /* 页脚样式 */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding:1rem 0 ;
        }
        
        .copyright {
            text-align: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        /* 页面容器样式 */
        .page-container {
            position: relative;
            min-height: calc(100vh - 80px);
            /* padding-bottom: 30px; */
        }

        /* 页面切换样式 */
        .page {
            display: none;
            animation: pageFadeIn 0.5s ease-out;
        }

        .page.active {
            display: block;
        }

        @keyframes pageFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 底部导航栏样式 */
        .bottom-nav {
            position: fixed;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: white;
            box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }

        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 20%;
            height: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--gray-color);
        }

        .bottom-nav-item:hover {
            color: var(--primary-color);
        }

        .bottom-nav-item.active {
            color: var(--primary-color);
        }

        .bottom-nav-item i {
            font-size: 1rem;
        }

        .bottom-nav-item span {
            font-size: 14px;
            font-weight: 500;
        }

        /* 商城页面样式 */
        .mall-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px 10px;
        }

        .mall-item {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .mall-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .mall-item-image-wrapper {
            width: 100%;
            padding-top: 100%;
            position: relative;
            overflow: hidden;
        }

        .mall-item-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .mall-item:hover .mall-item-image {
            transform: scale(1.05);
        }

        .mall-item-info {
            padding: 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .mall-item-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark-color);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .mall-item-description {
            font-size: 12px;
            color: var(--gray-color);
            margin-bottom: 10px;
            min-height: 20px;
            padding: 2px 0;
        }

        .mall-item-price-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 8px;
        }

        .mall-item-price {
            font-size: 18px;
            font-weight: 700;
            color: #e74c3c;
            flex: 1;
        }

        .mall-item-original-price {
            font-size: 12px;
            color: var(--gray-color);
            text-decoration: line-through;
            flex: 1;
        }

        .mall-item-buy {
            width: 28px;
            height: 28px;
            background-color: #ff7a45;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .mall-item-buy:hover {
            background-color: #ff6b35;
            transform: scale(1.1);
        }
        
        /* 确保商品卡片作为链接时正常显示 */
        .mall-item {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* 服务页面样式 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 20px 0;
        }

        .service-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .service-card i {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .service-card p {
            font-size: 14px;
            color: var(--gray-color);
            line-height: 1.5;
        }

        /* 游戏页面样式 */
        .game-category {
            margin:10px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }

        .category-header h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-color);
            margin: 0;
        }

        .category-more {
            font-size: 14px;
            color: var(--gray-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .category-more:hover {
            color: var(--secondary-color);
        }

        .game-category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 5px;
            padding: 0 0 15px;
        }

        .game-card-new {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: white;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .game-card-new:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .game-card-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 10px;
        }

        .game-card-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--dark-color);
            margin: 0 0 5px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 100%;
        }

        .game-card-play-btn {
            background-color: #ff7a45;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .game-card-play-btn:hover {
            background-color: #ff6b35;
        }

        @media (max-width: 576px) {
            
            .category-header {
                padding: 10px 15px;
            }
            
            .category-header h3 {
                font-size: 16px;
            }
            
            .game-card-image {
                width:3rem;
                height: 3rem;
            }
        }

        /* AI创作页面样式 */
        .ai-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 20px 0;
        }

        .ai-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ai-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .ai-card i {
            font-size: 48px;
            color: var(--blue-color);
            margin-bottom: 20px;
        }

        .ai-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .ai-card p {
            font-size: 14px;
            color: var(--gray-color);
            line-height: 1.5;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .slider-container {
                height: 500px;
            }
            
            .slider-caption h3 {
                font-size: 24px;
            }
            
            /* 平板设备调整浮动按钮位置 */
            .floating-audio-controls {
                right: 15px;
            }
            
            .ai-modal,.artwork-modal {
                width: 95%;
            }
        }

        /* 产品溯源相关样式 */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .report-tabs::-webkit-scrollbar {
            display: none;
        }
        .report-tab:active {
            background: #fafafa;
        }
        .report-tab.active {
            background: #fff8f8!important;
            border-bottom-color: #e74c3c!important;
        }
        .report-tab.active .tab-name {
            color: #e74c3c!important;
            font-weight: 600;
        }
        .report-tab.active .tab-badge {
            color: #e74c3c!important;
        }
        .page-btn:active {
            background: #e74c3c!important;
            color: white!important;
        }
        .zoom-btn:active {
            background: #e74c3c!important;
            color: white!important;
        }
        .scroll-arrow:hover {
            color: #e74c3c!important;
        }
        .scroll-arrow.show {
            display: flex;
        }
        
        /* 为非主页的卡片区添加左右距离 */
        .page:not(#home) .mall-container,
        .page:not(#home) .services-grid,
        .page:not(#home) .games-grid,
        .page:not(#home) .ai-grid {
            padding: 20px 10px;
        }
        
        /* 确保在所有屏幕尺寸下都保持两列布局 */
        @media (max-width: 768px) {
            .services-grid,
            .games-grid,
            .ai-grid,
            .mall-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .services-grid,
            .games-grid,
            .ai-grid,
            .mall-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 20px 10px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .section-title p {
                font-size: 14px;
            }
            
            .intro, .gallery, .video-section {
                padding: 40px 0;
            }
            
            /* 文章内容响应式 */
            .article-content {
                padding: 25px;
                border-radius: 12px;
            }
            
            /* 视频播放区域响应式 */
            .video-container {
                margin-top: 30px;
                border-radius: 12px;
            }
            
            /* 案例展示响应式 */
            .gallery-container {
                margin-top: 30px;
            }
            
            .slider-container {
                height: 450px;
                border-radius: 12px;
            }
            
            .slider-caption {
                padding: 40px 30px;
            }
            
            .slider-caption h3 {
                font-size: 22px;
            }
            
            .slider-nav {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .slider-nav-prev {
                left: 15px;
            }
            
            .slider-nav-next {
                right: 15px;
            }
            
            .slider-indicators {
                gap: 10px;
                bottom: 20px;
            }
            
            .slider-indicator {
                width: 10px;
                height: 10px;
            }
            
            /* 手机设备调整浮动按钮位置和大小 */
            .floating-audio-controls {
                right: .5rem;
                gap:.5rem;
            }
            
            .floating-btn {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1.25rem;
            }
            
            .ai-modal ,.artwork-modal{
                width: 95%;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size:.8rem;
            }
            
            .section-title h2 {
                font-size: 20px;
            }
            
            .section-title p {
                font-size: 13px;
            }
            
            /* 文章内容响应式 */
            .article-content {
                padding: 20px;
                border-radius: 8px;
                font-size: 15px;
            }
            
            /* 视频播放区域响应式 */
            .video-container {
                margin-top: 20px;
                border-radius: 8px;
            }
            
            /* 案例展示响应式 */
            .slider-container {
                height: 350px;
                border-radius: 8px;
            }
            
            .slider-caption {
                padding: 30px 20px;
            }
            
            .slider-caption h3 {
                font-size: 18px;
            }
            
            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .slider-nav-prev {
                left: 10px;
            }
            
            .slider-nav-next {
                right: 10px;
            }
            
            .slider-indicators {
                gap: 8px;
                bottom: 15px;
            }
            
            .slider-indicator {
                width: 8px;
                height: 8px;
            }
            
            .ai-modal ,.artwork-modal{
                width: 100%;
                border-radius: 0;
                height: 85%;
            }
            
            .ai-modal-header , .artwork-modal-header {
                padding: 10px;
            }
            
            .ai-modal-title , .artwork-modal-title {
                font-size: 1.3rem;
            }
        }
        
        /* 按钮工具提示 */
        .tooltip {
            position: absolute;
            right: 70px;
            background-color: var(--dark-color);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1001;
        }
        
        .floating-btn:hover .tooltip {
            opacity: 1;
        }

/* 产品内容选项卡样式 */
.content-tabs {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.content-tabs .container {
    position: relative;
    z-index: 1;
}

/* 选项卡内容样式 */
.tabs-content {
    background-color: white;
    overflow: hidden;
}

.tab-content {
    display: none;
    padding: 20px 50px;
    animation: tabFadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 选项卡内容中的区域样式 */
.tab-content .section-title {
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    
    .tab-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .tab-content .section-title h2 {
        font-size: 24px;
    }
    
    .tab-content .section-title p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .tab-content {
        padding: 20px 15px;
    }
    
    .tab-content .section-title h2 {
        font-size: 20px;
    }
    
    .tab-content .section-title p {
        font-size: 13px;
    }
}

/* 调整现有样式以适应选项卡 */
.overview, .gallery, .video-section, .intro {
    padding: 0;
    background-color: transparent;
    position: static;
    overflow: visible;
}

.overview::before, .gallery::before, .video-section::before, .intro::before {
    display: none;
}

.overview .container, .gallery .container, .video-section .container, .intro .container {
    padding: 0;
    max-width: 100%;
}

/* 调整文章内容样式 */
.tab-content .article-content {
    margin: 0 auto;
    max-width: 100%;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}


.trace-pdf-viewer {
    width: 100%;
    text-align: center;
    overflow-y: auto;
}

.trace-pdf-page {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.trace-pdf-page canvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.trace-pdf-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 12px;
}

.trace-pdf-zoom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trace-pdf-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zoom-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.zoom-select {
    padding: 6px 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: white;
    cursor: pointer;
}

.page-btn {
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    font-size: 14px;
    color: #6c757d;
    min-width: 120px;
    text-align: center;
}

@media (max-width: 768px) {
    .trace-pdf-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trace-pdf-zoom,
    .trace-pdf-pagination {
        justify-content: center;
    }
    
    .page-info {
        min-width: auto;
    }
    
    /* 移动端app-like样式优化 */
    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .trace-pdf-viewer {
        border-radius: 12px;
    }
    
    .trace-pdf-controls {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        margin-bottom: 12px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .zoom-btn,
    .page-btn {
        border-radius: 8px;
        font-size: 16px;
        padding: 8px 16px;
        background: linear-gradient(145deg, #ffffff, #f0f0f0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: none;
    }
    
    .zoom-select {
        border-radius: 8px;
        padding: 8px 12px;
        background: white;
        border: 1px solid #e0e0e0;
}

/* PDF.js官方样式工具栏 */
.pdfjs-toolbar {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
    padding:0 0 8px;
}

.pdfjs-toolbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.pdfjs-toolbar-group {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 32px;
}

.pdfjs-toolbar-button {
    width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #495057;
    font-size: 14px;
    font-weight: bold;
}

.pdfjs-toolbar-button:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #1a56db;
}

.pdfjs-toolbar-button:active {
    transform: translateY(1px);
}

.pdfjs-toolbar-icon {
    display: block;
    line-height: 1;
}

.pdfjs-page-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #495057;
}

.pdfjs-page-input {
    width: 40px;
    height: 24px;
    border: 1px solid #dee2e6;
    border-radius: 2px;
    text-align: center;
    font-size: 14px;
    padding: 0 4px;
}

.pdfjs-page-count {
    color: #6c757d;
}

.pdfjs-zoom-info {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    min-width: 40px;
    text-align: center;
}

/* PDF查看器官方样式 */
.pdf-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
    flex-wrap: wrap;
    gap: 16px;
}

.pdf-toolbar-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-toolbar-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #495057;
}

.pdf-toolbar-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #1a56db;
}

.pdf-toolbar-btn:active {
    transform: translateY(1px);
}

.pdf-page-info {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    min-width: 80px;
    text-align: center;
}

.pdf-zoom-info {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    min-width: 50px;
    text-align: center;
}

.pdf-viewer-container {
    background: #f8f9fa;
    padding: 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-viewer-wrapper {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pdf-viewer {
    width: 100%;
    height: 600px;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #525659;
}

.pdf-viewer canvas {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pdf-statusbar {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.pdf-status-text {
    font-size: 12px;
    color: #6c757d;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .pdf-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .pdf-toolbar-group {
        justify-content: center;
    }
    
    .pdf-viewer-container {
        padding: 12px;
    }
    
    .pdf-viewer {
        height: 400px;
    }
    
    .pdf-page-info,
    .pdf-zoom-info {
        min-width: auto;
    }
}
}

.trace-iframe-wrapper {
    margin-top: 20px;
}

.trace-iframe-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 快速导航样式 */
.quick-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    background: transparent;
    padding: 0;
    box-shadow: none;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: static;
    z-index: auto;
    backdrop-filter: none;
    border: none;
    animation: none;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.quick-nav-item:hover,
.quick-nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quick-nav-item.active {
    background-color: var(--blue-color);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.quick-nav-item i {
    font-size: 24px;
    margin-bottom: 8px;
}

.quick-nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 产品概述样式 */
.overview {
    padding: 80px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 50% 0 0 50%;
    z-index: 0;
}

.overview-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.overview-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.overview-text {
    background-color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}
.overview-text img{
        max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.overview-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* background: linear-gradient(to top, white, transparent); */
    pointer-events: none;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
    position: relative;
    z-index: 2;
}

.read-more-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

/* 内容控制按钮样式 */
.content-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.content-control-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--blue-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* 漂浮按钮样式 */
.content-control-btn.floating {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.content-control-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.content-control-btn:hover {
    background-color: var(--blue-color);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

/* 滚动提示样式 */
.scroll-indicator {
    position: fixed;
    bottom: 80px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-color);
    font-size: 0.9rem;
    z-index: 100;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator-content {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-indicator i {
    font-size: 18px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 业务介绍样式 */
.intro {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.03), rgba(16, 185, 129, 0.03));
    border-radius: 0 50% 50% 0;
    z-index: 0;
}

.intro .container {
    position: relative;
    z-index: 1;
}

.intro .section-title {
    margin-bottom: 40px;
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

/* 文章内容的渐变遮罩效果 */
.article-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, white, transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-content:not([style*="max-height: none"])::after {
    opacity: 1;
}

/* 视觉层次感增强 */
section {
    position: relative;
    transition: transform 0.5s ease;
}

/* 滚动时的视差效果 */


/* 改进的阴影效果 */
.slider-container, .video-container, .article-content {
    /* box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1); */
    transition: box-shadow 0.3s ease;
}

.slider-container:hover, .video-container:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* 渐变背景增强 */
.gallery, .video-section {
    position: relative;
    overflow: hidden;
}

.gallery::before, .video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 86, 219, 0.03) 100%);
    z-index: 0;
}

.gallery .container, .video-section .container {
    position: relative;
    z-index: 1;
}

/* 按钮悬停效果增强 */
.read-more-btn, .content-control-btn, .quick-nav-item {
    position: relative;
    overflow: hidden;
}

.read-more-btn::before, .content-control-btn::before, .quick-nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.read-more-btn:hover::before, .content-control-btn:hover::before, .quick-nav-item:hover::before {
    width: 300px;
    height: 300px;
}

        /* 3D轮播容器 */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 480px;
            perspective: 1500px;
            transform-style: preserve-3d;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-stage {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            display: flex;
            justify-content: center;
        }
        
        /* 卡片基础样式 */
        .artwork-card {
            position: absolute;
            width: 240px;
            height: 380px;
            border-radius: 12px;
            overflow: hidden;
            background-color: #000;
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            backface-visibility: hidden;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        
        .artwork-card:hover {
            transform: translateZ(10px) scale(1.02);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
        }
        
        .artwork-card.glow-effect {
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        }
        
        .artwork-card.glow-effect:hover {
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
        }
        
        /* 卡片顶部装饰 */
        .card-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, transparent, #15e3fa, transparent);
            opacity: 1;
        }
        
        /* 图片容器 */
        .image-container {
            width: 200px;
            height: 280px;
            border-radius: 8px;
            overflow: hidden;
            background: linear-gradient(135deg, rgb(111 111 111 / 12%) 0%, rgb(0 0 0 / 19%) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 8px;
        }
        
        .artwork-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
            transform: translateZ(10px);
        }
        
        /* 卡片信息 */
        .card-info {
            width: 100%;
            margin-top: 16px;
            padding-bottom: 4px;
        }
        
        .artwork-title {
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* 控制按钮 */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border: none;
        }
        
        .carousel-control:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .prev-btn {
            left: -50px;
        }
        
        .next-btn {
            right: -50px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .carousel-container {
                height: 320px;
            }
            
            .artwork-card {
                width: 200px;
                height: 320px;
            }
            
            .image-container {
                width: 160px;
                height: 220px;
            }
            
            .carousel-control {
                width: 36px;
                height: 36px;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
        }

/* 响应式设计优化 */
@media (max-width: 992px) {
    .quick-nav {
        gap: 15px;
        margin-top: 30px;
    }
    
    .quick-nav-item {
        min-width: 100px;
        padding: 12px 20px;
    }
    
    .quick-nav-item i {
        font-size: 20px;
    }
    
    .quick-nav-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .quick-nav {
        gap: 12px;
        margin-top: 25px;
    }
    
    .quick-nav-item {
        min-width: 80px;
        padding: 10px 15px;
    }
    
    .quick-nav-item i {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .quick-nav-item span {
        font-size: 0.75rem;
    }
    
    .overview-text {
        padding: 30px;
        font-size: 1rem;
    }
    
    .content-controls {
        gap: 15px;
        margin-top: 25px;
    }
    
    .content-control-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .quick-nav {
        gap: 10px;
        margin-top: 20px;
    }
    
    .quick-nav-item {
        min-width: 70px;
        padding: 8px 12px;
    }
    
    .quick-nav-item i {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .quick-nav-item span {
        font-size: 0.7rem;
    }
    
    .overview-text {
        padding: 5px;
        font-size: 0.95rem;
    }
    
    .content-controls {
        gap: 15px;
        margin-top: 20px;
    }
    
    .content-control-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .scroll-indicator {
        bottom: 70px;
        font-size: 0.8rem;
    }
    
    .scroll-indicator-content {
        padding: 10px 16px;
    }
    
    .scroll-indicator i {
        font-size: 16px;
    }
}
/* 电子贺卡弹窗样式 -  */
.greeting-card-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: auto; /* 允许弹窗滚动 */
    padding: 20px; /* 添加内边距 */
}

.greeting-card-modal.show {
    opacity: 1;
    visibility: visible;
}

.greeting-card-container {
    max-width: 28rem;
    width: 90%;
    margin: 20px auto; /* 添加上下边距 */
    perspective: 1000px;
    max-height: calc(100vh - 40px); /* 限制最大高度为视口高度减去边距 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.greeting-card-wrapper {
    position: relative;
    width: 100%;
    transition: all 0.8s ease-in-out;
    max-height: 100%; /* 确保包装器不超出容器 */
}

/* 封面样式 */
.greeting-card-cover {
    position: absolute;
    inset: 0;
    max-height: 90vh;
    width: 100%;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 20;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.8s ease-in-out;
}

.greeting-card-cover.open {
    transform: rotateY(180deg);
    opacity: 0;
    box-shadow: none;
}

.greeting-cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
}

.greeting-cover-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.greeting-cover-pattern div {
    position: absolute;
    background: white;
    border-radius: 50%;
}

.greeting-cover-pattern div:nth-child(1) {
    top: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
}

.greeting-cover-pattern div:nth-child(2) {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
}

.greeting-cover-pattern div:nth-child(3) {
    top: 33%;
    right: 25%;
    width: 4rem;
    height: 4rem;
}

.greeting-cover-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.greeting-cover-shape {
    position: absolute;
    width: 10rem;
    height: 50rem;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.greeting-cover-shape.pink {
    background: #f472b6;
    transform: rotate(-45deg);
    left: -25rem;
    top: -25rem;
    transition-delay: 0s;
}

.greeting-cover-shape.yellow {
    background: #fbbf24;
    transform: rotate(30deg);
    right: -37.5rem;
    top: -25rem;
    transition-delay: 0.1s;
}

.greeting-card-cover.open .greeting-cover-shape.pink {
    transform: rotate(-60deg);
    left: -37.5rem;
    top: -37.5rem;
}

.greeting-card-cover.open .greeting-cover-shape.yellow {
    transform: rotate(45deg);
    right: -50rem;
    top: -37.5rem;
}

.greeting-cover-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.greeting-cover-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 1rem;
    transform: scale(1);
    transition: all 0.5s ease;
}

.greeting-card-cover.open .greeting-cover-title {
    transform: scale(0.6);
}

.greeting-cover-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    opacity: 1;
    transition: all 0.5s ease;
        background: linear-gradient(135deg, #bd73ff 0%, #d435ff 100%);
    padding: .5rem 2rem;
    border-radius: 2rem;
}

.greeting-card-cover.open .greeting-cover-subtitle {
    opacity: 0;
}

/* 内页样式 - 修改为可滚动 */
.greeting-card-inner {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
    opacity: 0;
    transform: translateY(2rem) scale(0.95);
    transition: all 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    max-height: calc(90vh - 4rem); /* 限制内页最大高度 */
    box-sizing: border-box;
}

.greeting-card-inner.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.greeting-inner-pattern {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.greeting-inner-pattern.top {
    top: -5rem;
    right: -5rem;
    width: 10rem;
    height: 10rem;
    background: #f3e8ff;
}

.greeting-inner-pattern.bottom {
    bottom: -4rem;
    left: -4rem;
    width: 8rem;
    height: 8rem;
    background: #fce7f3;
}

.greeting-inner-content {
    position: relative;
    z-index: 1;
    flex: 1; /* 允许内容区域伸缩 */
    display: flex;
    flex-direction: column;
    min-height: 0; /* 允许内容区域收缩 */
}

.greeting-inner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b21a8;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.8s ease 0.2s;
}

.greeting-card-inner.open .greeting-inner-title {
    opacity: 1;
    transform: translateY(0);
}

/* 内容区域 */
.greeting-inner-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.8s ease 0.4s;
    flex: 1; /* 允许文本区域伸缩 */
    overflow-y: auto; /* 允许文本区域滚动 */
    padding-right: 5px; /* 为滚动条留出空间 */
}

.greeting-card-inner.open .greeting-inner-text {
    opacity: 1;
    transform: translateY(0);
}

.greeting-inner-text p {
    margin-bottom: 1rem;
}

.greeting-inner-text p:last-child {
    margin-bottom: 0;
}

/* 为文本区域添加自定义滚动条样式 */
.greeting-inner-text::-webkit-scrollbar {
    width: 6px;
}

.greeting-inner-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.greeting-inner-text::-webkit-scrollbar-thumb {
    background: #c084fc;
    border-radius: 10px;
}

.greeting-inner-text::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}

.greeting-inner-signature {
    text-align: right;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.8s ease 0.6s;
}

.greeting-card-inner.open .greeting-inner-signature {
    opacity: 1;
    transform: translateY(0);
}

.greeting-signature-name {
    color: #6d28d9;
    font-weight: 500;
}

.greeting-signature-date {
    color: #6b7280;
    margin-top: 0.25rem;
}

.greeting-inner-divider {
    margin-top: 2rem;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent, #c084fc, transparent);
    transform: scaleX(0);
    transition: all 1s ease 0.8s;
}

.greeting-card-inner.open .greeting-inner-divider {
    transform: scaleX(1);
}

/* 确认关闭按钮区域 */
.greeting-confirm-close {
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.8s ease 1s;
    flex-shrink: 0; /* 防止按钮区域被压缩 */
    position: sticky;
    bottom: 0;
    background: transparent;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-top: auto; /* 将按钮推到内容底部 */
}

.greeting-card-inner.open .greeting-confirm-close {
    opacity: 1;
    transform: translateY(0);
}

.greeting-confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #9333ea 0%, #4f46e5 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    font-size: 1rem;
}

.greeting-confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, #8b2fd8 0%, #4338ca 100%);
}

.greeting-confirm-btn i {
    font-size: 1rem;
}

/* 关闭按钮 */
.greeting-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 30;
}

.greeting-close-button.visible {
    opacity: 1;
}

.greeting-close-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.greeting-close-button i {
    color: #6b21a8;
    font-size: 0.875rem;
}

/* 响应式设计 */
@media (max-width: 640px) {
    
    .greeting-card-inner {
        padding: 1.5rem;
        max-height: calc(90vh - 3rem);
    }
    
    .greeting-inner-content {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .greeting-card-container {
        width: 95%;
    }
    
    .greeting-card-inner {
        padding: 1.2rem;
        max-height: calc(90vh - 2.4rem);
    }
    
    .greeting-inner-title {
        font-size: 1.3rem;
    }
    
    .greeting-confirm-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* 报告列表横向导航样式 */
.report-list-nav {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    overflow: hidden;
}

.report-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

.report-list-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
}

.report-scroll-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6c757d;
}

.report-scroll-hint i {
    font-size: 10px;
}

.report-list-container {
    padding: 12px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.report-list-scroll {
    display: flex;
    gap: 12px;
    min-width: max-content;
}

.report-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    min-width: 80px;
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.report-item.active {
    border-color: #1a56db;
    background: #e8f2ff;
}

.report-icon {
    font-size: 24px;
    color: #dc3545;
    margin-bottom: 6px;
}

.report-item.active .report-icon {
    color: #1a56db;
}

.report-title {
    font-size: 12px;
    font-weight: 500;
    color: #495057;
    text-align: center;
    line-height: 1.2;
}

.report-item.active .report-title {
    color: #1a56db;
    font-weight: 600;
}

/* 移动端报告列表优化 */
@media (max-width: 768px) {
    .report-list-header {
        padding: 10px 12px;
    }
    
    .report-list-header h3 {
        font-size: 14px;
    }
    
    .report-list-container {
        padding: 10px 12px;
    }
    
    .report-item {
        padding: 10px 12px;
        min-width: 70px;
    }
    
    .report-icon {
        font-size: 20px;
    }
    
    .report-title {
        font-size: 11px;
    }
}
/* 百度地图iframe响应式样式 */
        .article-content .qysedcms_baidumap,
        .article-content iframe[data_id="qysedcms_baidumap"],
        .article-content iframe[src*="/js/show.html#"] {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            border: none !important;
            display: block !important;
            margin: 0 auto !important;
        }
        /* 静态百度地图图片样式 */
        .article-content img[src*="map.baidu.com/staticimage"] {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            display: block !important;
            margin: 0 auto !important;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
    </style>