.container {
            width: 100%;
        }
        
        .image-viewer {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .main-image-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
			display:block;
        }
        
        .main-image:hover {
            transform: scale(1.03);
        }
        
        .image-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--Color, #F00000);
			/* 0.4背景模糊 */
			backdrop-filter: blur(12.5px);
            color: white;
            padding: 2.3125rem 1.875rem;
			width:32.375%;
        }
        
        .image-title {
            color: var(---white, #FFF);
			font-family: zt2;
			font-size: 1.5rem;
			font-style: normal;
			font-weight: 700;
			line-height: normal;
        }
        
        .image-description {
			margin-top:1.25rem;
			color: var(---white, #FFF);
			font-family: zt3;
			font-size: 0.875rem;
			font-style: normal;
			font-weight: 400;
			line-height: normal;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .image-description.expanded {
            max-height: 200px;
            overflow-y: auto;
        }
        
        .read-more {
            color: #ffcc00;
            font-size: 0.9rem;
            cursor: pointer;
            margin-top: 5px;
            display: inline-block;
            text-decoration: underline;
			display:none;
        }
        
        .nav-arrows {
            position: absolute;
            bottom: 2.5rem;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            transform: translateY(-50%);
            padding: 0 2.5rem;
        }
        
        .arrow {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.875rem;
            font-weight: bold;
            color: #F00000;
            user-select: none;
        }
		.arrow.left-arrow{
			margin-right:0.5rem;
		}
        
        .arrow:hover {
            background: var(--Color, #F00000);
			color:#FFF;
        }
        
        .arrow:active {
            transform: scale(0.95);
        }
        
        .thumbnail-section {
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
            padding: 5px 0;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            scroll-behavior: smooth;
            padding-bottom: 10px; /* 为滚动条留出空间 */
        }
        
        /* 隐藏滚动条但保持滚动功能 */
        .thumbnail-container::-webkit-scrollbar {
            display: none;
        }
        
        .thumbnail {
            flex: 0 0 auto;
            width: 19.4rem;
            height: 10.4rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
            border: 3px solid transparent;
            position: relative;
        }
        
        .thumbnail:hover {
            transform: translateY(-5px);
            opacity: 0.9;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        .thumbnail.active {
            opacity: 1;
            border-color:var(--Color, #F00000);
            transform: translateY(-5px);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .thumbnail-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 2px 5px;
            font-size: 0.7rem;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
			display:none;
        }
        
        .thumbnail:hover .thumbnail-overlay {
            opacity: 1;
        }
        
        .image-counter {
            text-align: center;
            margin-top: 10px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
			display:none;
        }
        
        .instructions {
            text-align: center;
            margin-top: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        /* 手机端优化 */
        @media (max-width: 768px) {
            .container {
            }
            
            h1 {
                font-size: 1.7rem;
                margin-bottom: 15px;
            }
            
            .main-image-container {
                height: 40vh;
                min-height: 250px;
            }
            
            .image-info {
                padding: 15px;
            }
            
            .image-title {
                font-size: 1.3rem;
            }
            
            .image-description {
                font-size: 0.9rem;
                max-height: 50px;
            }
            
            .arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .thumbnail {
                width: 90px;
                height: 65px;
            }
            
            .thumbnail-container {
                gap: 8px;
            }
        }
        
        @media (max-width: 480px) {
            
            .container {
                border-radius: 12px;
            }
            
            h1 {
                font-size: 1.5rem;
            }
            
            .main-image-container {
                height: 35vh;
                min-height: 200px;
            }
            
            .image-info {
                padding: 12px;
				width:60%;
            }
            
            .image-title {
                font-size: 1.1rem;
            }
            
            .image-description {
                font-size: 0.85rem;
                max-height: 45px;
            }
            
            .arrow {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .nav-arrows {
                padding: 0 10px;
				bottom:1.0rem;
            }
            
            .thumbnail {
                width: 80px;
                height: 55px;
                border-width: 2px;
            }
            
            .thumbnail-container {
                gap: 6px;
            }
            
            .image-counter {
                font-size: 1rem;
            }
            
            .instructions {
                font-size: 0.85rem;
            }
        }
        
        /* 超小屏幕优化 */
        @media (max-width: 360px) {
            .thumbnail {
                width: 70px;
                height: 50px;
            }
            
            .thumbnail-container {
                gap: 5px;
            }
            
            .main-image-container {
                height: 30vh;
                min-height: 180px;
            }
            
            .image-info {
                padding: 10px;
            }
            
            .image-title {
                font-size: 1rem;
            }
            
            .image-description {
                font-size: 0.8rem;
                max-height: 40px;
            }
        }
        
        /* 横屏手机优化 */
        @media (max-height: 500px) and (orientation: landscape) {
            .container {
            }
            
            .main-image-container {
            }
            
            .thumbnail-container {
                margin-top: 10px;
            }
            
            .thumbnail {
                width: 19.4rem;
                height: 10.4rem;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease;
        }
        
        /* 触摸设备优化 */
        @media (hover: none) {
            .arrow:hover {
                transform: none;
                background: rgba(255, 255, 255, 0.2);
            }
            
            .thumbnail:hover {
                transform: none;
                opacity: 0.7;
            }
            
            .thumbnail.active:hover {
                transform: translateY(-5px);
                opacity: 1;
            }
            
            .thumbnail-overlay {
                opacity: 1;
                font-size: 0.6rem;
                padding: 1px 3px;
            }
        }
        
        /* 小图滚动指示器 */
        .scroll-indicator {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            margin-top: 5px;
			display:none;
        }
        
        .scroll-indicator::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 50%;
            background: #ffcc00;
            border-radius: 2px;
            transition: transform 0.3s ease;
        }
        
        /* 小图自适应布局 */
        @media (max-width: 320px) {
            .thumbnail {
                width: 65px;
                height: 45px;
            }
        }