
        .image-container img {
            max-width: 100%;
            height: auto;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .image-container img:hover {
            transform: scale(1.02);
        }
        
        .image-title {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }
        
        /* 图片放大模态框样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
            animation: fadeIn 0.3s;
            touch-action: none; /* 禁用浏览器默认触摸操作 */
        }
        
        .modal-content-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            display: block;
            max-width: 95%;
            max-height: 95%;
            transition: transform 0.3s;
            transform-origin: center center;
        }
        
        .closed {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }
        
        .caption {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            color: #fff;
            padding: 10px;
            background-color: rgba(0,0,0,0.5);
            z-index: 1001;
        }
        
        .zoom-controls {
            position: absolute;
            bottom: 70px;
            right: 20px;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .zoom-btn {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            user-select: none;
            background: #000;
        }
        
        @keyframes fadeIn {
            from {opacity: 0;}
            to {opacity: 1;}
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
     
        }
        
        @media (max-width: 480px) {
       
            .zoom-controls {
                bottom: 60px;
                right: 10px;
            }
            
            .zoom-btn {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
        }