/* 首页版号弹窗相关样式 */

#versionNo {
    color: #1a73e8;
    cursor: pointer;
    text-decoration: underline;
}

#versionModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

#versionModal.show {
    display: flex;
}

#versionModal .modal-box {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

#versionModal .modal-box img {
    display: block;
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
}

#versionModal .modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #ff4d4f;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    line-height: 30px;
    text-align: center;
}
