@charset "utf-8";
/* 图片放大功能专用样式 */
        .image-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }
        
        .image-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-image-container {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .modal-image-container img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
        }
        
        .modal-close-hint {
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            font-size: 16px;
            opacity: 0.8;
        }
        
        /* 确保页面上的图片可点击 */
        .ui-show-body img {
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .ui-show-body img:hover {
            transform: scale(1.02);
        }