#write {
    cursor: pointer;
    color: #fff;
}

#write_url {
    display: none;
}

/* 遮罩层 默认隐藏 */
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* 弹窗容器 简约政务风 */
.jump-modal {
    width: 460px;
    background: #fff;
    border-radius: 4px;
    padding: 32px;
    border-top: 3px solid #00539a;
}

.jump-modal h3 {
    color: #222;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: normal;
}

.jump-modal p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.count-text {
    color: #c81623;
    font-weight: bold;
}

.btn-group {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

#closeBtn,
#jumpBtn {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #fff;
    transition: all 0.2s;
}

.btn-jump {
    background: #00539a !important;
    color: #fff;
    border-color: #00539a !important;
}

.btn-jump:hover {
    background: #00539a;
}

.btn-close:hover {
    border-color: #999;
}

/*移动端适配*/
@media (max-width:520px) {
    .jump-modal {
        width: calc(100% - 30px);
        padding: 24px;
    }
}