/* 脚页样式 */
.footer {
    background: #a17345;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    margin-bottom: 5px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    color: #8B4513;
}

.footer-logo h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.footer-description {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: #fff;
    color: #8B4513;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #CD853F;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    display: block;
}

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

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 17px;
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.5;
}

.contact-info i {
    width: 18px;
    margin-right: 8px;
    color: #CD853F;
    font-size: 13px;
    margin-top: 2px;
}

.contact-info .label {
    white-space: nowrap;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info .value {
    word-break: break-all;
    color: rgba(255, 255, 255, 0.85);
}

/* 脚页二维码样式 - 使用独立命名空间避免冲突 */
.footer-qr-section {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.footer-qr-code {
    width: 160px;
    height: 160px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-qr-code i {
    font-size: 60px;
    color: #ccc;
}

.footer-qr-section p {
    font-size: 11px;
    margin: 0;
    opacity: 0.9;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 11px;
    opacity: 0.8;
}

.footer-bottom-links {
    margin-bottom: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 10px;
    font-size: 11px;
}

.footer-bottom-links a:hover {
    color: #CD853F;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}
