    /* 弹窗背景样式 */
   .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999;
        animation: fadeIn 0.5s ease;
        background: rgba(0, 0, 0, 0.6);}
    .popup-content {
        position: relative;
	max-width: 90%;}
   .popup-content img {
        width: 1000px;
        max-width: 100%;
        animation: scaleIn 0.8s ease;}

    /* 关闭按钮样式 */
   .close-button {
        position: absolute;
        top: -10px;
        right: -20px;
        background: none;
        border: none;
        font-size: 26px;
        color: #fff;
        cursor: pointer;}

    /* 背景淡入动画 */
    @keyframes fadeIn {
        from {
            opacity: 0;}
        to {
            opacity: 1;}
    }

    /* 弹窗缩放动画，增加跳动效果 */
    @keyframes scaleIn {
        0% {
            transform: scale(0.1);}
        25% {
            transform: scale(1.2);}
        50% {
            transform: scale(0.9);}
        75% {
            transform: scale(1.1);}
        100% {
            transform: scale(1);}
    }
    
        /* 背景淡出动画 */
    @keyframes fadeOut {
        from {
            opacity: 1;}
        to {
            opacity: 0;}
    }
    
    /* 图片缩小淡出动画 */
    @keyframes scaleOut {
        from {
            transform: scale(1);
            opacity: 1;}
        to {
            transform: scale(0.1);
            opacity: 0;}
    }
    
    .fade-out {
        animation: fadeOut 0.5s ease forwards;}
    
    .scale-out {
        animation: scaleOut 0.5s ease forwards;}
.closestyle270626{ font-size:12px;color:#333333;text-decoration: none ;}

