/* 页脚样式 - footer.css */

/* 页脚样式 */
.app-footer {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 25px 0 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    gap: 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.footer-section:first-child {
    align-items: flex-start;
}

.footer-section:last-child {
    align-items: flex-end;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.footer-subtitle {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.footer-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

.footer-actions {
    display: flex;
    gap: 8px;
}

.footer-btn {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--gray);
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.footer-copyright {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

.footer-version {
    font-size: 10px;
    color: var(--gray);
    background: rgba(66, 166, 235, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .footer-content {
        padding: 12px 15px 8px;
        gap: 15px;
    }
    
    .footer-section {
        flex: auto;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-subtitle {
        font-size: 11px;
    }
    
    .footer-stats {
        gap: 12px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .footer-actions {
        gap: 6px;
    }
    
    .footer-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .footer-bottom {
        padding: 6px 15px;
    }
    
    .footer-copyright {
        font-size: 10px;
    }
    
    .footer-version {
        font-size: 9px;
    }
}
