@charset "UTF-8";
.cm-navbar .navbar-nav .nav-link {
  font-size: 22px;
  padding-left: 16px;
  padding-right: 16px;
  color: #212529;
}
.cm-navbar .navbar-nav .nav-link.active {
  color: #007bff;
}
.xxx-header{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 12;
  margin: auto;
  width: 100%;
  /*border-bottom: rgba(255,255,255,0.5) solid 1px;*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  flex-direction: column;
}
@media screen and (max-width:1200px) {
  .xxx-header{
    position: relative;
  }
}
.xxx-header .tel{
  width: 100%;
  text-align: right;
  /*padding-right: 1rem;*/
  display: flex;
  align-items: center;
  justify-content: flex-end;
  div + div{
    margin-left: 50px;
  }
}
@media screen and (max-width:1200px) {
  .xxx-header{
    position: relative;
    div + div{
      margin-left: 10px!important;
    }
  }
}
.xxx-header.on{
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}
.xxx-header:hover{
  background: #FFFFFF;
}
.xxx-header.hide{
  top: -100%;
}
.xxx-header .wrap{
  width: 86.5%;
  margin: auto;
}
.xxx-header .navbar-nav-scroll {
  float: left;
  display: inline-block;
  margin-right: 20px;
}
.xxx-header .navbar-nav-scroll>ul>li{
  position: relative;
  float: left;
  padding: 0px 15px;
  width: auto;
  min-width: fit-content;
  /*max-width: 140px;*/
  text-align: center;
  white-space: nowrap;
}
.xxx-header .navbar-nav-scroll>ul>li>a {
  position: relative;
  display: inline-block;
  width: 140px;
  padding: 0 5px;
}
.xxx-header .navbar-nav-scroll>ul>li:hover>a,
.xxx-header .navbar-nav-scroll>ul>li.on a {
  color: #405aa8;
}
.xxx-header .navbar-nav-scroll>ul>li>a:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 5px;
  margin: auto;
  background: #405aa8;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.xxx-header .navbar-nav-scroll>ul>li:hover>a:before,
.xxx-header .navbar-nav-scroll>ul>li.on>a:before{
  width: 100%;
}




.navbar-nav-scroll {
  max-width: 100%;
  height: 2.5rem;
  /*margin-top: .25rem;*/
  overflow-x: auto;
  overflow-y: hidden;
}

.navbar-nav-scroll .navbar-nav {
  /*padding-bottom: 2rem;*/
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  -webkit-overflow-scrolling: touch;
}

.cm-hidden {
  display: none;
}

.cm-pointer {
  cursor: pointer;
}

.cm-ff-yh {
  font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", serif;
}

.cm-block-head-bottom {
  border-bottom: solid 2px;
  border-color: #007bff;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.cm-trans-bottom {
  width: 100%;
  bottom: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}

.cm-media-img {
  max-width: 180px;
  max-height: 120px;
}

@media screen and (max-width: 767px) {
  .cm-media-img {
    max-width: 120px;
    max-height: 80px;
  }
}
.cm-link {
  color: #212529;
}
.cm-link:hover {
  color: rgb(0, 98.4, 204);
}

.es-highlight em {
  color: #dc3545;
  font-style: normal;
}
/*footer*/
.footer{
  padding-top: 40px;
  background: #f0f2f5;
  ul{
    padding: 0;
    margin: 0;
  }
  li {
    list-style: none;
  }
}
.conwidth{
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
.footer .content{
  padding-top: 40px;
}
.footer .content .conwidth{
  padding-bottom: 28px;
  border-bottom: #e0e0e0 solid 1px;
  .subtit{
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .phone{
    font-family: 'din';
    color: #007bff;
    font-size: 26px;
    margin-bottom: 15px;
    /*text-align: center;*/
  }
  .text{
    color: #888888;
    font-size: 16px;
    line-height: 1.5;
    /*text-align: center;*/
    img{
      max-width: 180px;
      height: auto;
    }
   }
}
.footer .content .drop-down a{
  display: block;
  line-height: 1.7;
  color: #999999;
  font-size: 16px;
  padding: 3px 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*text-align: center;*/
}
@media screen and (max-width: 767px){
  .col{
    align-items: center;
  }
  .text,.phone{
    text-align: center;
  }
  .footer .content .drop-down a{
    text-align: center;
  }
}
.footer .content .drop-down a:hover{
  color: #007bff;
}

/* Card悬停动画效果 */
.card {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  /*border-color: #007bff;*/
}

.card-none {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.card-none:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #e0e0e0;
}

.online{position:fixed;right:0;top:30%;z-index:199;}
.online ul{
  padding: 0;
  margin: 0;
  li {
    list-style: none;
  }
}
.online ul li{background-color:#A0A2AD;position:relative;border-radius:5px;}
.online ul li~li{margin-top:5px;}
.online ul li a{color:#fff;}
.online ul li em{width:54px;height:54px;line-height:54px;text-align:center;background-color:#007bff;display:block;border-radius:5px;}
.online ul li i{font-size:28px;vertical-align:middle;color:#fff;}
.online ul li .box{font-size:16px;position:absolute;top:0;right:0;border-radius:5px;height:54px;padding:0 20px;background-color:#007bff;white-space:nowrap;border-radius:5px;transform:translateX(100%);transition:all 0.3s ease 0s;display:flex;align-items:center;}
.online ul li:hover .box{transform:translateX(0);}

.map{
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  img{
    /*width: 100%;*/
    height: 100%;
  }
}
.custom-nav{
  .nav-item{
    position: relative;
    &:hover{
      .sub-nav{
        display: block;
      }
    }
  }
  .sub-nav{
    display: none;
    background: #FFFFFF;
    padding: 0;
    border-radius: 5px;
    li, ul{list-style: none}
  }
}
