/* 版权信息组件样式 */

/* 固定版权声明样式 */
.copyright-notice {
    position: fixed;
    bottom: 140px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-top: 1px solid #f0f0f0;
    padding: 8px 15px;
    text-align: center;
    font-size: 0.7rem;
    color: #999;
    line-height: 1.4;
    z-index: 998;
}

.copyright-text {
    margin: 0;
    line-height: 1.6;
}

/* 页脚版权信息样式 */
.footer {
    text-align: center;
    padding: 20px;
    background: #fff;
    margin-top: auto;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 997;
}

.copyright {
    color: #999;
    font-size: 12px;
}

.copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.company-info {
    font-weight: 500;
    color: #666;
}

.beian-info {
    margin: 2px 0;
}

.legal-links {
    margin-top: 4px;
}

/* 链接样式 */
.beian-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.beian-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 4px;
}

.legal-link:hover {
    color: #3498db;
    text-decoration: underline;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .copyright-notice {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    .footer {
        padding: 15px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .copyright-content {
        gap: 3px;
    }
    
    .legal-links {
        margin-top: 3px;
    }
    
    .legal-link {
        margin: 0 2px;
    }
}

/* 桌面端适配 */
@media (min-width: 769px) {
    .copyright-notice {
        font-size: 0.75rem;
        padding: 10px 20px;
    }
    
    .footer {
        padding: 25px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .copyright-content {
        gap: 5px;
    }
    
    .legal-links {
        margin-top: 5px;
    }
    
    .legal-link {
        margin: 0 6px;
    }
} 