footer {
  border-top: 6px solid var(--color);
  position: relative;
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 45px;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.FtLeft {
  width: 300px;
}

.FtLogo {
  width: 230px;
  margin-bottom: 15px;
}

.FtLogo img {
  width: 100%;
}

.FtCont {
  font-size: 16px;
  line-height: 2;
  color: #474747;
}

.FtNav {
  width: calc(100% - 300px);
  display: flex;
  justify-content: space-around;
}

.FtNav span {
  display: flex;
  flex-direction: column;
}


.FtNav span a {
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #3D3D3D;
  margin-bottom: 30px;
}

.FtNav span .a1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: #3D3D3D;
}

@media (max-width: 992px) {
  .FtLeft {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .FtCont {
    text-align: center;
  }

  .FtNav {
    width: 100%;
  }
}

@media (max-width: 640px) {
  footer {
    padding-top: 45px;
    padding-bottom: 0px;
  }

  .FtNav {
    display: none;
  }
}

/* 备案 */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid #E0E0E0;
  padding: 15px 0;
  color: #9C9C9C;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.footer a {
  color: #9C9C9C;
  font-size: 14px;
  line-height: 2;
}




@media (max-width: 992px) {
  .footer {
    font-size: 12px;
    padding: 10px 0;
    line-height: 2;
  }

  .footer a {
    font-size: 12px;
    line-height: 2;
  }
}