/* 页脚区域公共样式 (从 index_style.css 提取) */
.footer {
    z-index: 2;
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.4);
    padding: 25px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
    /* 追加居中 */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ccff;
}

/* footer-bottom */
.footer-bottom {
    background-color: transparent;
    text-align: center;
    margin-top: 20px;
}

.footer-top-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-info {
    margin: 0;
}

.footer-info p {
    margin: 0;
    display: inline-block;
}

.footer-info p:last-child {
    margin-left: 20px;
}

.footer-bottom p {
    margin-bottom: 12px;
    font-size: 13px;
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.license {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    opacity: 1;
}

.license a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.license a:hover {
    color: #00ccff;
    transition: color 0.3s ease;
}

.license img {
    margin-right: 5px;
    max-height: 20px;
}