@charset "utf-8";

/* 底部样式 */
footer {
    width: 100%;
    background: #444;
    color: #888;
    margin-top: 50px;
}

/* 底部顶部区域 */
.footer-top {
    padding: 50px 0;
    border-bottom: 1px solid #555;
}

.footer-topUl {
    display: flex;
    justify-content: space-around; /* 改为 space-around 让元素均匀分布 */
    align-items: flex-start; /* 顶部对齐 */
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto; /* 居中 */
}

.footer-topUl > li {
    flex: 0 0 auto; /* 不伸缩，保持固定宽度 */
    padding: 0 20px;
    border-right: 1px solid #555;
    text-align: center; /* 内容居中 */
}

.footer-topUl > li:last-child {
    border-right: none;
}

/* 设置每个区域的固定宽度，保持均匀分布 */
.footer-topUl-le1 {
    width: 300px;
    text-align: center;
}

.footer-topUl-le2 {
    width: 260px;
    text-align: center;
}

.footer-topUl-le3 {
    width: 300px;
    text-align: center;
}

.footer-topUl-le4 {
    width: 180px;
    text-align: center;
}

/* ===== 左侧Logo区域 ===== */
.footer-top-img {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.footer-top-img img {
    max-height: 60px;
    width: auto;
}

.footer-topUl-le1 p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* ===== 快速导航区域 ===== */
.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    display: inline-block; /* 让标题居中 */
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* 下划线居中 */
    width: 40px;
    height: 2px;
    background: #009B96;
}

.footer-k {
    display: flex;
    justify-content: center; /* 居中 */
    gap: 40px;
}

.footer-fast {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left; /* 文字左对齐 */
}

.footer-fast li {
    margin-bottom: 12px;
}

.footer-fast li a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-fast li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-fast li a:before {
    content: '›';
    margin-right: 8px;
    color: #009B96;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-fast li a:hover:before {
    opacity: 1;
}

/* ===== 联系方式区域 ===== */
.footer-tople-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left; /* 文字左对齐 */
    display: inline-block; /* 让内容居中 */
}

.footer-tople-ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; /* 左对齐 */
}

.footer-tople-ul li label {
    width: 65px;
    color: #aaa;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.5px;
    text-align: right; /* 标签右对齐 */
    margin-right: 10px;
}

.footer-tople-ul li i,
.footer-tople-ul li a {
    flex: 1;
    color: #ddd;
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
    text-align: left; /* 内容左对齐 */
}

.footer-tople-ul li a:hover {
    color: #009B96;
}

/* 联系方式图标装饰 */
.footer-l {
    position: relative;
}

.footer-l li {
    position: relative;
    padding-left: 0;
}

/* ===== 二维码区域 ===== */
.footer-top-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    border: 2px solid #555;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-top-image:hover {
    border-color: #009B96;
    transform: scale(1.05);
}

.footer-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-topUl-le4 p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0 0;
    font-weight: 500;
}

.footer-topUl-le4 p:before {
    content: '📱';
    margin-right: 8px;
    font-size: 14px;
}

/* ===== 底部版权区域 ===== */
.footer-bottom {
    background: #333;
    padding: 30px 0;
}

.footer-bottom .con-center {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* 友情链接样式 */
.labour-footer-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.labour-footer-ul li {
    display: inline-flex;
    align-items: center;
    margin: 5px 0;
    color: #888;
    font-size: 14px;
}

.labour-footer-ul li:first-child {
    color: #aaa;
    font-weight: 500;
    margin-right: 10px;
}

.labour-footer-ul li i {
    margin: 0 12px;
    color: #555;
    font-style: normal;
    font-size: 12px;
}

.labour-footer-ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.labour-footer-ul li a:hover {
    color: #009B96;
}

/* 版权信息 */
.labour-b {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.labour-b p {
    color: #888;
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.6;
}

.labour-b p:first-child {
    font-size: 15px;
    color: #aaa;
}

.labour-p2 {
    letter-spacing: 1px;
}

.labour-b a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.labour-b a:hover {
    color: #009B96;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
    .footer-topUl {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .footer-topUl > li {
        border-right: none;
        border-bottom: 1px solid #555;
        padding-bottom: 30px;
        margin-bottom: 10px;
        width: auto;
        min-width: 250px;
    }

    .footer-topUl > li:last-child {
        border-bottom: none;
    }

    .footer-topUl-le1,
    .footer-topUl-le2,
    .footer-topUl-le3,
    .footer-topUl-le4 {
        width: auto;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .footer-topUl > li {
        width: 100%;
        max-width: 400px;
    }

    .footer-k {
        justify-content: center;
    }

    .footer-fast {
        text-align: center;
    }

    .footer-tople-ul li {
        justify-content: center;
    }

    .footer-tople-ul li label {
        width: auto;
        min-width: 65px;
    }

    .labour-footer-ul {
        flex-direction: column;
    }

    .labour-footer-ul li i {
        display: none;
    }

    .labour-footer-ul li {
        margin: 5px 0;
    }
}