/* address-modal.css - 内网/外网选择弹窗样式 */
#bd_address_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.bd_modal_content {
    width: 320px;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.bd_modal_title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}
.bd_modal_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.bd_modal_btn {
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.bd_modal_btn:hover { opacity: 0.9; }
.bd_internal_btn { background-color: #52C41A; }
.bd_external_btn { background-color: #165DFF; }