/**
 * 页脚样式 - 期货一键查网站
 * 苹果风格版本
 */

/* 页脚基础样式 */
.apple-style-footer {
    background-color: #f5f5f7;
    color: #6e6e73;
    padding: 30px 0 20px;
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -.01em;
    margin-top: 80px;
    position: relative;
}

/* 移除顶部红色边框 */
.apple-style-footer::before {
    display: none; /* 隐藏边框 */
}

/* 关于我们文本样式 */
.footer-about-text {
    color: #86868b;
    font-size: 12px;
    line-height: 1.5;
    max-width: 270px;
    margin-top: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding-right: 10px;
}

/* 导航部分 */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d2d2d7;
}

.footer-column {
    width: 25%;
    padding-right: 20px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.footer-column h3 {
    color: #1d1d1f;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #6e6e73;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 12px;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #000;
    text-decoration: underline;
}

/* 法律信息部分 */
.footer-legal {
    padding: 17px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-legal-copyright {
    color: #6e6e73;
    font-size: 12px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

/* 加载时间统计 */
.load-time-stats {
    font-size: 12px;
    color: #6e6e73;
    text-align: center;
}

.load-time-stats span {
    color: #0066cc;
    font-weight: 400;
}

/* 加载时间项目样式 */
.load-time-item {
    display: inline-block;
    margin: 0 5px;
}

.load-time-separator {
    color: #d2d2d7;
}

.load-time-total {
    font-weight: 500;
}

.load-time-value {
    color: #0066cc;
}

/* 备案号样式 */
.footer-beian {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
}

.footer-beian a {
    color: #6e6e73;
    text-decoration: none;
}

.footer-beian a:hover {
    text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 833px) {
    .footer-column {
        width: 50%;
        padding-bottom: 20px;
    }
    
    .footer-about-text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-legal {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal-copyright {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .footer-legal-links {
        margin-top: 10px;
    }
}

@media (max-width: 570px) {
    .footer-column {
        width: 100%;
        padding-right: 0;
    }
    
    .footer-about-text {
        max-width: 100%;
    }
}
