/* 通知弹窗样式 */
.notice-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.notice-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.notice-content {
    text-align: center;
    padding: 10px 0;
}

.notice-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.notice-content h3 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.notice-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.notice-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.notice-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #374151;
    font-size: 15px;
}

.notice-benefits li i {
    color: #22c55e;
    font-size: 18px;
}

.contact-methods-notice {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.contact-method-notice {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* 电脑端加宽二维码容器 */
@media (min-width: 769px) {
    .contact-method-notice {
        width: 320px;
    }
}

.contact-method-notice:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-header-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-header-notice i {
    font-size: 32px;
    color: #3b82f6;
}

.contact-header-notice i.fa-weixin {
    color: #22c55e;
}

.contact-info-notice {
    text-align: left;
}

.contact-info-notice h5 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-id-notice {
    color: #6b7280;
    font-size: 13px;
}

.qr-code-notice {
    text-align: center;
}

.qr-code-notice img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid #e5e7eb;
}

/* 电脑端加宽二维码 */
@media (min-width: 769px) {
    .qr-code-notice img {
        width: 240px;
        height: 240px;
    }
}

.qr-code-notice p {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.notice-footer-content {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* 通知底部操作区 */
.notice-footer-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 15px 15px;
}

/* 电脑端按钮两端对齐 */
@media (min-width: 769px) {
    .notice-footer-actions {
        justify-content: space-between;
    }
}

.no-remind-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: #6b7280;
}

.no-remind-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.no-remind-checkbox:hover {
    color: #374151;
}

#confirm-notice-btn {
    padding: 12px 40px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#confirm-notice-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
