@charset "utf-8";
/* 底部样式 - 现代化设计 */
.footer-company{

}
.footer-company h2 {
  font-size: 48px;
  text-align: center;
}
.footer-company-desp{
    font-size:24px;
    line-height: 1.5;
    text-align: center;
}
/* 优势统计部分 */
.in-total {
  color: #fff;
  margin-top: 0;
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.in-total li {
  float: left;
  width: 25%;
  padding: 15px 0 25px 0;
  text-align: center;
  transition: transform 0.3s ease;
}

.in-total li:hover {
  transform: translateY(-5px);
}

.in-total li span {
  display: block;
  line-height: 1;
  font-size: 18px;
}

.in-total li strong {
  font-size: 58px;
  position: relative;
  display: inline-block;
  font-family: Impact;
  margin-right: 5px;
  background: linear-gradient(45deg, #0071e3, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.in-total li p {
  margin: 10px 0 0;
  font-size: 18px;
}

/* 主体底部 */
.footer {
  background-color: #1e1d1d;
  color: #959595;
  padding: 50px 0 20px;
}

.footer a {
  color: #959595;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-card {
  font-size: 14px;
  border-top: 1px solid #363636;
  padding: 30px 0;
  margin-bottom: 20px;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer dl {
  float: left;
  margin: 0;
}

.footer dt {
  font-size: 18px;
  color: #eae8e8;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer dt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #0071e3;
  transition: width 0.3s ease;
}

.footer dt:hover::after {
  width: 50px;
}

.footer dd {
  margin: 0;
}

.footer li a {
  font-size: 14px;
  display: block;
  line-height: 2.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.footer li a:hover {
  transform: translateX(1px);
  color: #0071e3;
}

.footer .lx {
  width: 360px;
}

.footer .lx .tel {
  color: #fff;
  font-family: Impact;
  font-size: 40px;
}

.footer .lx p {
  margin: 10px 0 0;
}

/* 版权信息 */
.footer .text-12 {
  text-align: center;
  border-top: 1px solid #363636;
  padding: 20px 0;
  font-size: 13px;
  color: #666;
}

.footer .text-12 p {
  margin-bottom: 10px;
}

.footer .text-12 nav {
  margin-top: 10px;
}

.footer .text-12 nav a {
  display: inline-block;
  margin: 0 10px;
  font-size: 13px;
  line-height: 15px;
}

/* 手机端底部悬浮导航 */
.footer-fix {
  min-width: 300px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  display: none;
}

.footer-fix ul {
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-fix li {
  float: left;
  width: 25%;
  text-align: center;
}

.footer-fix li a {
  display: block;
  padding: 10px 0;
  font-size: 12px;
  line-height: 1;
  color: #333;
  transition: all 0.3s ease;
}

.footer-fix li a:hover {
  background-color: #f5f5f5;
  color: #0071e3;
}

.footer-fix li i {
  display: block;
  height: 24px;
  font-size: 24px;
  margin-bottom: 5px;
  color: #666;
}

.footer-fix li i.i1 {
  background-image: url(../images/f_01.png);
}

.footer-fix li i.i2 {
  background-image: url(../images/f_02.png);
}

.footer-fix li i.i3 {
  background-image: url(../images/f_03.png);
}

.footer-fix li i.i4 {
  background-image: url(../images/f_04.png);
}

/* 在线客服 - 现代化设计 */
.kf {
  width: 260px; /* 增加宽度，让界面更大气 */
  position: fixed;
  right: -260px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* 更平滑的动画曲线 */
  border-radius: 8px 0 0 8px;
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
  /* 添加缓冲区解决快速闪动问题 */
}

/* 为.kf元素添加一个透明的右侧缓冲区，覆盖动画可能经过的区域 */
.kf::before {
  content: '';
  position: absolute;
  top: -50px;
  bottom: -50px;
  right: -50px;
  width: 100px; /* 足够宽的缓冲区 */
  background-color: transparent;
  z-index: -1;
}

.kf:hover {
  right: 0;
}

.kt-top {
  height: 50px;
  line-height: 50px;
  background: linear-gradient(135deg, #0071e3 0%, #0056b3 100%); /* 渐变背景 */
  padding-left: 50px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 8px 0 0 0;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 113, 227, 0.3);
}

.kt-top::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/kefu.png) center center no-repeat;
  background-size: contain;
}

.kt-top span:hover {
  transform: rotate(180deg);
}

.kt-top span {
  width: 20px;
  height: 20px;
  float: right;
  position: relative;
  margin: 13px 15px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.kt-top span b {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 1px;
}

.kt-top span b:first-child {
  transform: rotate(45deg);
}

.kt-top span b:last-child {
  transform: rotate(-45deg);
}

.kf .con {
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
}

.kf .qq {
  padding: 15px 0;
  margin: 0;
}

.kf .qq li {
  height: 45px;
  line-height: 45px;
  border-bottom: #f0f0f0 solid 1px;
  padding: 0 20px;
  transition: background-color 0.3s ease;
}

.kf .qq li:last-child {
  border-bottom: none;
}

.kf .qq li:hover {
  background-color: #f8f9fa;
}

.kf .qq li a {
  height: 45px !important;
  color: #495057;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.kf .qq li a:hover {
  color: #0071e3;
}

.kf .qq li a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.kf .con .contact-icon,
.kf .con .qr-icon {
  height: 40px;
  line-height: 40px;
  margin: 0;
  background: #f8f9fa;
  padding-left: 40px;
  color: #212529;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #e9ecef;
  position: relative; /* 添加相对定位，作为伪元素的定位上下文 */
}

.kf .con .contact-icon::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/3.1.2_44.png) center center no-repeat;
  background-size: contain;
}

.kf .con .qr-icon::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/erweima.png) center center no-repeat;
  background-size: contain;
}

.kf .contact ul li{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-color);
  flex-shrink: 0;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.4;
  padding: 10px 10px;
}

.kf .contact p {
  height: 30px;
  line-height: 30px;
  color: #6c757d;
  font-size: 14px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kf .contact p:nth-child(2n) {
  color: #212529;
  font-weight: 500;
}

.kf .con .qr {
  margin: 0;
  padding: 20px;
  text-align: center;
  background-color: #f8f9fa;
}

.kf .con .qr img {
  width: 130px;
  height: 130px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
  transition: transform 0.3s ease;
}

.kf .con .qr img:hover {
  transform: scale(1.05);
}

/* 独立的返回顶部按钮样式 */
.back-to-top-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.backTop {
    width: 50px;
    height: 50px;
    background-color: #0071e3;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.backTop:hover {
    background-color: #0056b3;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}
@media (max-width: 768px) {
    .back-to-top-wrapper {
        right: 10px;
        bottom: 80px;
    }
    .backTop {
      width: 40px;
      height: 40px;
    }
}
.backTop::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: url('../images/huidaodingbu.png') no-repeat center center;
    background-size: contain;
}

/* 当菜单打开时隐藏返回顶部按钮 */
.open-menu .back-to-top-wrapper {
    display: none;
}

.kf-side {
  padding: 22px 10px 15px;
  background: linear-gradient(135deg, #0071e3 0%, #0056b3 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
  box-shadow: -3px 3px 10px rgba(0, 113, 227, 0.2);
}

.kf-side:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  left: -35px;
  transform: translateY(-50%);
}

.kf-side b {
  display: block;
  color: #fff;
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  /* transform: rotate(-90deg); */
  width: 15px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.kf-side span.arrow {
  width: 14px;
  height: 14px;
  background: url(../images/jt-1.png) no-repeat;
  background-size: contain;
  display: block;
  margin: 15px auto 0;
  transition: transform 0.3s ease;
}

.kf-side:hover span.arrow {
  transform: translateX(-3px);
}

.kf-side span.on {
  background: url(../images/jt-2.png) no-repeat;
  background-size: contain;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .footer-company h2 {
    font-size: 36px;
  }
  .footer-company-desp{
    font-size:20px;
    line-height: 1.5;
  }
  .in-total li {
    width: 50%;
    padding: 20px 0;
  }
  
  .footer-nav-list {
    flex-wrap: wrap;
  }
  
  .footer dl {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-company h2 {
    font-size: 33px;
  }
  .footer-company-desp{
    font-size:18px;
    line-height: 1.5;
  }
  .in-total {
    margin: 0 -15px;
  }
  
  .in-total li {
    padding: 15px 0;
  }
  
  .in-total li span {
    font-size: 12px;
  }
  
  .in-total li strong {
    font-size: 36px;
  }
  
  .in-total li p {
    margin: 5px 0 0;
    font-size: 12px;
  }
  
  .footer {
    padding-top: 30px;
  }
  
  .footer-nav-list {
    flex-direction: column;
  }
  
  .footer dl {
    margin-bottom: 25px;
  }
  
  .footer dt {
    margin-bottom: 15px;
  }
  
  .footer .text-12 nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-bottom: 45px;
  }
  
  .footer .text-12 nav a {
    margin: 0;
    padding: 0;
  }
  
  /* 手机端显示悬浮导航 */
  .footer-fix {
    display: block;
  }
  
  /* 在线客服在手机端隐藏 */
  .kf {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-company h2 {
    font-size: 28px;
  }
  .footer-company-desp{
    font-size:16px;
    line-height: 1.5;
  }
    .footer-card {
        padding: 30px 10px;
    }
    
    .footer-card h2 {
        font-size: 24px;
    }
    
    .footer-nav-list .nav-column {
        width: 100%;
        margin-bottom: 25px;
    }
    
    .footer-nav-list .nav-column h3 {
        font-size: 16px;
    }
    
    .footer-copy {
        padding: 20px 10px;
        font-size: 12px;
    }
    
    .footer-copy .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    /* 手机端特殊样式 */
    .kf {
        display: none;
    }
    
    .footer-fix {
        display: block;
    }
    
    /* 响应式统计数字样式 */
    .in-total {
        margin: 0 -15px;
    }
    
    .in-total li {
        padding: 15px 0;
    }
    
    .in-total li span {
        font-size: 12px;
    }
    
    .in-total li strong {
        font-size: 36px;
    }
    
    .in-total li p {
        margin: 5px 0 0;
        font-size: 12px;
    }
}

/* ===== 旧版本页脚样式（兼容性支持） ===== */
.footer-box {
    /* 空样式 */
}

/* About页面特殊样式 */
.about-1 .in-total {
    margin-top: 50px;
    background: none;
    color: #333;
}

.about-1 .in-total li {
    padding: 0;
}

/* 手机端特殊样式 */
@media (max-width: 768px) {
    .about-1 .in-total {
        margin-top: 20px;
    }
    
    .footer {
        padding-top: 30px;
    }
    .footer-nav-list{
        display: none;
    }
    
    .footer dt {
        margin-bottom: 10px;
    }
    
    .footer .lx {
        display: block;
        float: none;
        width: auto;
    }
    
    .footer .lx .tel {
        font-size: 30px;
    }
    
    .footer-top {
        display: none;
    }
    
    .footer-copy {
        padding: 15px 0;
        font-size: 12px;
        margin-top: 30px;
    }
}

.footer-icon {
    width: 100%;
    padding: 35px 0;
    height: 80px;
    text-align: center;
}

.footer-icon .w {
    height: 80px;
}

.footer-icon .icon-map {
    display: inline-block;
    width: 170px;
}

.footer-icon .icon-map .icon-bg {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: url(../images/site.png) no-repeat;
    _background: url(../images/site.gif) no-repeat;
}

.footer-icon .icon-map .icon-title {
    font-size: 14px;
    color: #000;
    text-align: center;
    margin-top: 10px;
}

.footer-icon .icon-map .icon-bg.i1 {
    background-position: 0 -250px;
}

.footer-icon .icon-map .icon-bg.i2 {
    background-position: 0 -200px;
}

.footer-icon .icon-map .icon-bg.i3 {
    background-position: 0 -350px;
}

.footer-icon .icon-map .icon-bg.i4 {
    background-position: 0 -300px;
}

.footer-icon .icon-map .icon-bg.i5 {
    background-position: 0 -50px;
}

.footer-icon .icon-map .icon-bg.i6 {
    background-position: 0 0;
}

.footer-icon .icon-map .icon-bg.i7 {
    background-position: 0 -150px;
}

.footer-icon .icon-map .icon-bg.i8 {
    background-position: 0 -100px;
}

/* 旧版本footer样式 */
footer {
    background-color: #fafafa;
    border-top: #e6e6e6 solid 1px;
    padding-bottom: 20px;
}

footer .main {
    border-top: #e6e6e6 solid 1px;
}

footer .ft_intr {
    height: 190px;
    padding: 10px 0;
    margin-top: 30px;
    max-width: 1241px;
    margin-left: auto;
    margin-right: auto;
}

footer .ft_intr .ft_intr_l {
    width: 360px;
    float: left;
    line-height: 28px;
    padding-left: 130px;
}

footer .ft_intr .ft_intr_l dl {
    width: 42%;
    float: left;
}

footer .ft_intr .ft_intr_l dl dt {
    font-size: 16px;
    margin-bottom: 10px;
}

footer .ft_intr .ft_intr_l dl dd {
    font-size: 14px;
}

footer .ft_intr .ft_intr_m {
    float: left;
    width: 200px;
    text-align: center;
}

footer .ft_intr .ft_intr_r {
    width: 300px;
    float: left;
    padding-left: 130px;
}

footer .ft_intr .ft_intr_r dl {
    width: 42%;
    float: left;
    line-height: 28px;
}

footer .ft_intr .ft_intr_r dl dt {
    font-size: 16px;
    margin-bottom: 10px;
}

footer .ft_intr .ft_intr_r dl dd {
    font-size: 14px;
}

footer .ft_intr .ft_intr_r ul li {
    float: left;
    text-align: center;
    line-height: 20px;
    margin: 10px;
}

footer .ft_addr {
    width: auto;
    text-align: center;
    line-height: 26px;
}

footer .ft_addr .footlink > a {
    margin: 0 10px;
}


