footer{ width: 100%; height: auto; background: url(../images/footer.jpg) no-repeat center; background-size:cover;}

.footer-box{ padding: 50px 0;}
.footer-box-left{ width: 352px;}
.footer-logo{ width: 182px; height: 98px;}
.footer-logo a{ display: block; width: 182px; height: 98px; background: url(../images/flogo.png) no-repeat;}
.footer-box-left p{ color:#fff; margin-top:15px;}

.footer-box-right{ width: 900px; gap: 135px; grid-template-columns: repeat(3, 1fr); /* 3 列 */  display: grid;}

.footer-box-right dl{ width: 100%;}
.footer-box-right dl dt{ color: #ffffff; line-height: 30px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,0.6);}
.footer-box-right dl dt h2{ color: #ffffff; font-size: 1.1rem;}
.footer-box-right dl dt em{ display: block; width: 40px; height: 14px; background: url(../images/ficon.png) no-repeat;}
.footer-box-right dl dd{ padding-top: 15px;}
.footer-box-right dl dd a{ display: block; color: #E6E6E6; font-size: 0.95rem; line-height: 26px;}
.footer-box-right dl dd a:hover{ color: #ffffff; text-decoration: underline;}

.footer-box-right dl dd em{ display: block; color: #E6E6E6; font-size: 0.95rem; line-height: 26px;}
.footer-box-right dl dd p{  color: #fff; font-size: 0.95rem; line-height: 26px;}
.footer-copy{ width: 100%; padding: 15px 0; text-align: center; color: #E6E6E6; border-top: 1px solid rgba(255,255,255,0.2);}
.footer-copy a{color: #E6E6E6; margin-left: 10px;}
.footer-copy a:hover{ color: #ffffff; text-decoration: underline;}



/* ==============================
   右侧悬浮客服
   Theme: #026ABD
================================= */

/* 悬浮容器 */
.customerList {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    pointer-events: none;
}

.customerBox {
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: auto;
}

/* 每个客服按钮 */
.customerBox a {
    position: relative;
    width: 72px;
    height: 72px;
    background: #ffffff;
    border: 1px solid rgba(2, 106, 189, .18);
    border-radius: 16px;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    overflow: visible;
}

/* hover：浮起 + 主色浅背景 */
.customerBox a:hover {
    transform: translateY(-3px);
    border-color: rgba(2, 106, 189, .45);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
    background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
}

/* 图标 */
.customerBox a i {
    font-size: 24px;
    line-height: 24px;
    color: #026ABD;
    transition: transform .22s ease, color .22s ease;
}

.customerBox a:hover i {
    color: #f8ce50;
    transform: scale(1.08);
}

/* 文案 */
.customerBox a p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 12px;
    color: #333333;
    transition: color .22s ease;
}

.customerBox a:hover p {
    color: #026ABD;
}

/* ==============================
   弹出信息
================================= */

.customerBox a .eso_divinfo {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);

    background: #ffffff;
    border: 1px solid rgba(2, 106, 189, .25);
    border-radius: 12px;
    padding: 12px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

/* hover 显示 */
.customerBox a:hover .eso_divinfo {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-2px);
}

/* 小箭头 */
.customerBox a .eso_divinfo::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #ffffff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* 二维码图片 */
.customerBox a .eso_divinfo img {
    display: block;
    max-width: 140px;
    height: auto;
    border-radius: 10px;
}

/* 邮箱 / 电话弹出文字 */
.customerBox a[href^="mailto"] .eso_divinfo,
.customerBox a[href^="tel"] .eso_divinfo {
    font-size: 14px;
    color: #111827;
    font-weight: 700;
    padding: 12px 14px;
}

/* ==============================
   返回顶部按钮
================================= */

#back-to-top {
    background: #026ABD;
    border-color: rgba(2, 106, 189, .65);
}

#back-to-top i {
    color: #ffffff;
}

#back-to-top p {
    color: #ffffff;
}

#back-to-top:hover {
    background: #f8ce50;
    border-color: #f8ce50;
}

#back-to-top:hover i,
#back-to-top:hover p {
    color: #ffffff;
}

