﻿/*-----在线客服--------*/
.side {
  position: fixed;
  width: 45px;
  right: 0;
  top: 70%;
  transform: translate(0,-50%);
  z-index: 9999;
}

.side ul li {
  width: 45px;
  height: 45px;
  line-height: 45px;
  float: left;
  position: relative;
  background: #333;
  border-bottom: 1px solid #999;
}

.side ul li .sidebox {
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 45px;
  top: 0;
  right: 0;
  transition: all 0.3s;
  background: #333;
  color: #fff;
  font: 14px/54px "微软雅黑";
  overflow: hidden;
}

.side ul li .sidetop {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  background: #333;
  transition: all 0.3s;
}

.side ul li img {
  float: left;
}

.side ul li .right_ewm_box {
  position: absolute;
  right: 60px;
  bottom: 0px;
  z-index: 9999999;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  width: 120px;
  text-align: center;
  -moz-box-shadow: 0px 0px 5px #666;
  -webkit-box-shadow: 0px 0px 5px #666;
  box-shadow: 0px 0px 5px #666;
  display: none;
}

.side ul li:hover .right_ewm_box {
  display: block;
}

.side ul li .right_ewm_box:after {
  border: solid transparent;
  content: ' ';
  height: 0;
  bottom: 15px;
  position: absolute;
  width: 0;
  border-width: 10px;
  border-left-color: #bbb;
  left: 100%;
}

.side ul li .right_ewm_box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0px auto;
}

.side ul li .right_ewm_box p {
  font-weight: normal;
  display: block;
  line-height: 20px;
}

.foot-flex {
  width: 100%;
}

.foot-flex .foot-item {
  width: 100%;
}

.foot-list-lx {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.foot-list-lx li {
  height: auto;
  overflow: hidden;
  color: #fff;
}


.foot-list-lx li h4 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.foot-list-lx li .txt {
  padding-left: 42px;
  height: auto;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 0 50%;
  line-height: 40px;
  font-size: 18px;
}

.foot-list-lx li .txt.tel {
  background-image: url(/static/images/tel.png);
}

.foot-list-lx li .txt.mail {
  background-image: url(/static/images/mail.png);
}

.foot-list-lx li .txt span {
  display: inline-block;
  vertical-align: middle;
  font-family: 'KnockoutHTF30';
  font-size: 26px;
}

.foot-list-lx {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.foot-list-lx li img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.foot-item-img {
  /* width: 100%; */
  display: grid;
  gap: 16px; /* 图片间距 */
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

/* .foot-item-img li{
  width: 25%;
} */
.foot-item-img li img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;;
}

.foot-social li img {
  width: 30px;
  height: 30px;
}

@media (max-width:768px) {
  .footer {
    min-width: 100%;
  }

  .full-copyright {
    min-width: 100%;
  }
  .foot-list-lx{
    flex-direction: column;
  }
  .foot-item-img{
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-item-img li{
    width: 100%;
    text-align: center;
  }
  .foot-social{
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .copyright{
    text-align: center;
  }
}