/* 模态框容器 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

/* 弹窗内容 */
.modal-content {
    position: relative;
    background: #fff;
    width: 400px;
    margin: 5% auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
    text-align: left;
}
.modal-content strong{
    text-align: left;
    font-size: 18px!important;
    line-height: 26px!important;
}
.modal-content p{
    text-align: left;
    font-size: 16px!important;
    line-height: 26px!important;
}

/* 关闭按钮样式 */
.close-btn {
    position: absolute;
    right: 10px;
    top: 0px;
    cursor: pointer;
    font-size: 24px;
    color: #666;
}

/* a标签样式 */
.trigger-link {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

@keyframes slideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}