/* 页脚样式 */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 25px 0 15px;
    margin-top: 20px;
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}

/* 顶部区域 - Logo、公司名、链接 */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* 左侧Logo和公司名 */
.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

.footer-company {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    font-family: "Alibaba PuHuiTi", "阿里巴巴普惠体", sans-serif;
}

/* 右侧信息区 */
.footer-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: "Alibaba PuHuiTi", "阿里巴巴普惠体", sans-serif;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FCCA00;
}

.footer-email {
    color: #ffffff;
    font-size: 16px;
    font-family: "Alibaba PuHuiTi", "阿里巴巴普惠体", sans-serif;
}

/* 分割线 */
.footer-divider {
    height: 1px;
    background-color: #555555;
    margin: 10px 0;
}

/* 底部标语 */
.footer-slogan {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #CCCCCC;
    font-family: "Alibaba PuHuiTi", "阿里巴巴普惠体", sans-serif;
    padding-top: 10px;
}

/* 响应式布局 - 页脚 */
@media (max-width: 1200px) {
    .footer-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-logo-section {
        gap: 15px;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
    }
    
    .footer-company {
        font-size: 16px;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-link,
    .footer-email {
        font-size: 14px;
    }
    
    .footer-slogan {
        font-size: 16px;
    }
}
