/* 首页弹窗通知样式 */
.notice-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.notice-modal-container {
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.notice-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-modal-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice-modal-title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-modal-title i {
    color: #4a9eff;
}

.notice-modal-close {
    background: transparent;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
    border-radius: 4px;
}

.notice-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.notice-modal-body {
    padding: 25px;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center !important;
}

.notice-modal-body > * {
    text-align: center !important;
}

.notice-modal-body p {
    margin: 10px 0;
    text-align: center !important;
}

.notice-modal-body ul {
    margin: 10px auto !important;
    padding-left: 0 !important;
    list-style-position: inside;
    text-align: center !important;
    display: inline-block;
}

.notice-modal-body li {
    margin: 5px 0;
    text-align: center !important;
    list-style-type: none;
    position: relative;
    padding-left: 0;
}

.notice-modal-body li:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #4a9eff;
    border-radius: 50%;
}

.notice-modal-body div {
    text-align: center !important;
}

.notice-modal-body a {
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s;
}

.notice-modal-body a:hover {
    color: #6bb3ff;
    text-decoration: underline;
}

.notice-modal-body strong {
    font-weight: 600;
}

.notice-modal-body em {
    font-style: italic;
}

.notice-modal-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    background: rgba(0, 0, 0, 0.2);
}

.notice-modal-btn {
    background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(74, 158, 255, 0.3);
}

.notice-modal-btn:hover {
    background: linear-gradient(135deg, #5baaff 0%, #4a8bcd 100%);
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.5);
    transform: translateY(-1px);
}

.notice-modal-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .notice-modal-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .notice-modal-header {
        padding: 15px 20px;
    }
    
    .notice-modal-title {
        font-size: 16px;
    }
    
    .notice-modal-body {
        padding: 20px;
        font-size: 13px;
    }
    
    .notice-modal-footer {
        padding: 12px 20px;
    }
    
    .notice-modal-btn {
        padding: 8px 25px;
        font-size: 13px;
    }
}

