/**
 * 星伦数智AI产品团队 - 通用页脚样式
 * 统一的页脚样式，与整体设计风格保持一致
 */

/* 页脚基础样式 - 使用固定颜色值确保一致性 */
.main-footer {
    background: linear-gradient(135deg, #1D2129 0%, #2D3139 50%, #1D2129 100%);
    color: #ffffff;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* 装饰圆形 */
.main-footer::before,
.main-footer::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.main-footer::before {
    width: 8rem;
    height: 8rem;
    top: 0;
    left: 2.5rem;
}

.main-footer::after {
    width: 12rem;
    height: 12rem;
    bottom: 0;
    right: 2.5rem;
}

/* 内容容器 */
.main-footer .footer-container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .main-footer .footer-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .main-footer .footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* 内容居中 */
.main-footer .footer-content {
    text-align: center;
}

/* Logo区域 */
.main-footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.main-footer .footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #165DFF 0%, #722ED1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer .footer-logo-icon i {
    color: white;
    font-size: 1.25rem;
}

.main-footer .footer-logo-text {
    font-weight: 700;
    font-size: 1.125rem;
}

/* 描述文字 */
.main-footer .footer-description {
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
}

/* 分隔线 */
.main-footer .footer-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #165DFF 50%, transparent 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

/* 版权文字 */
.main-footer .footer-copyright {
    color: #6B7280;
    font-size: 0.75rem;
    line-height: 1rem;
}
