/* 精简版权声明样式 */
.copyright-notice {
    background: #f8f9fa;
    border-left: 3px solid #15b3b4;
    border-radius: 6px;
    padding: 15px;
    margin: 25px 0;
    font-size: 14px;
    line-height: 1.5;
}

.notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #15b3b4;
}

.notice-header i {
    margin-right: 8px;
    font-size: 16px;
}

.notice-header strong {
    font-size: 16px;
    font-weight: 600;
}

.notice-content p {
    margin-bottom: 8px;
    color: #495057;
}

.notice-content strong {
    color: #15b3b4;
    font-weight: 600;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .copyright-notice {
        padding: 12px;
        margin: 20px 0;
        font-size: 13px;
    }
}