/* 外链弹窗样式 弹窗容器样式 */
.wlcss-modal {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 9999; /* 置于顶层 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* 半透明背景 */
}

/* 弹窗内容样式 */
.wlcss-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 居中显示 */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

/* 关闭按钮样式 */
.wlcss-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.wlcss-close:hover,
.wlcss-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* 弹窗内其他样式 */
.wlcss-url-area {
    padding: 20px;
}

.wlcss-tip {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wlcss-ico {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.wlcss-ico-txt {
    font-weight: bold;
}

.wlcss-url-box {
    margin: 20px 0;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 4px;
}

.wlcss-url-color {
    color: #0066cc;
    word-break: break-all;
}

.wlcss-btn {
    text-align: center;
}

.wlcss-go-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.wlcss-go-btn:hover {
    background-color: #45a049;
}