/* ============================================
   页脚样式 - footer.html
   ============================================ */

.score-page-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

/* 页脚容器 */
.footer-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* 版权信息 */
.footer-copyright {
    text-align: center;
    white-space: nowrap;
}

.footer-copyright p {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
}

/* 备案信息 */
.footer-beian {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #9ca3af;
    flex-wrap: wrap;
}

.footer-beian a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-beian a:hover {
    color: #3b82f6;
}

.footer-beian-separator {
    color: #d1d5db;
}

.footer-beian img {
    margin: 0;
    width: 14px;
    height: 14px;
}

/* 构建日期和版本号 */
.footer-build-info {
    font-size: 11px;
    color: #c0c8d3;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.footer-build-info i {
    margin-right: 4px;
}

.footer-build-date {
    color: #6b7280;
}

.footer-version {
    color: #6b7280;
    margin: 0 6px;
}

.footer-version-separator {
    color: #d1d5db;
    margin: 0 6px;
}

/* ============================================
   响应式设计
   ============================================ */

@media (max-width: 768px) {
    .score-page-footer {
        padding: 1.25rem;
        margin-top: 2.5rem;
    }

    .footer-container {
        gap: 12px;
    }

    .footer-beian {
        gap: 8px;
        font-size: 11px;
    }

    .footer-beian a {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .score-page-footer {
        padding: 1rem;
        margin-top: 2rem;
    }

    .footer-container {
        gap: 10px;
        flex-direction: column;
    }

    .footer-copyright p {
        font-size: 11px;
    }

    .footer-beian {
        gap: 6px;
        font-size: 10px;
    }

    .footer-beian a {
        font-size: 10px;
    }

    .footer-beian img {
        width: 12px;
        height: 12px;
    }

    .footer-build-info {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .score-page-footer {
        padding: 0.75rem;
        margin-top: 1.5rem;
    }

    .footer-container {
        gap: 8px;
    }

    .footer-copyright p {
        font-size: 10px;
    }

    .footer-beian {
        gap: 4px;
        font-size: 9px;
    }

    .footer-beian a {
        font-size: 9px;
    }

    .footer-beian img {
        width: 11px;
        height: 11px;
    }

    .footer-build-info {
        font-size: 9px;
    }

    .footer-version-separator {
        display: none;
    }
}
