
    /* 重置默认边距 */
    body, html {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
    
    /* 全屏背景容器 */
    .fullscreen-image-container {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAZ/UPAZ285/2506/24/photo/e1d3e13974.png?v=1705563586');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* 图片容器主体 */
    .image-container {
        width: 90%;
        max-width: 1000px;
        position: relative;
        z-index: 2;
        margin: 0 auto;
    }
    
    /* 标题 */
    .image-title {
        text-align: center;
        color: white;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin: 0 0 20px 0;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        letter-spacing: 1.5px;
        width: 100%;
        max-width: 1000px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    /* 图片展示容器 - 简化版 */
    .clean-gallery {
        position: relative;
        border-radius: 12px;
        box-shadow: 0 0 0 3px rgba(255,255,255,0.9),
                    0 0 0 12px rgba(0,0,0,0.25),
                    0 20px 60px rgba(0,0,0,0.6);
        backdrop-filter: blur(8px);
        background-color: rgba(0,0,0,0.2);
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    
    /* 图片样式 - 简化版 */
    .clean-image {
        width: 100%;
        border-radius: 8px;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .clean-image:hover {
        transform: scale(1.0);
    }

    /* 覆盖层 */
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0);
        z-index: 1;
    }

    /* 平板设备优化 */
    @media (max-width: 1024px) {
        .fullscreen-image-container {
            padding: 20px;
        }
        
        .image-title {
            font-size: clamp(1.5rem, 5vw, 2rem);
        }
        
        .clean-gallery {
            padding: 8px;
        }
    }

    /* 移动端优化 */
    @media (max-width: 768px) {
        .fullscreen-image-container {
            padding: 15px;
            min-height: auto;
        }
        
        .image-container {
            width: 100%;
            padding: 0;
        }
        
        .image-title {
            font-size: 1.8rem;
        }
        
        .clean-gallery {
            box-shadow: 0 0 0 2px rgba(255,255,255,0.9),
                        0 0 0 8px rgba(0,0,0,0.25),
                        0 10px 30px rgba(0,0,0,0.5);
            padding: 6px;
        }
    }

    /* 小屏手机优化 */
    @media (max-width: 480px) {
        .fullscreen-image-container {
            padding: 10px;
        }
        
        .image-title {
            font-size: 1.5rem;
        }
    }
