/* footer */
.footer {
  color: var(--sub-color);
  background: var(--style-color);
  margin-bottom: 51px;
}

.footer .footer-top {
  padding: 30px 0;
}

.footer .footer-top .container {
  margin-bottom: -30px;
}

.footer .item {
  margin-bottom: 30px;
}

.footer .logo {
  width: auto;
  height: 75px;
  margin-bottom: 20px;
}

.footer .info {
  line-height: 30px;
}

.footer .tit {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .item-list>li:not(:last-child) {
  margin-bottom: 10px;
}

.footer .cont-list li {
  display: flex;
  align-items: flex-start;
  line-height: 30px;
}

.footer .cont-list li:not(:last-child) {
  margin-bottom: 10px;
}

.footer .cont-list li i {
  font-size: 20px;
  line-height: 1;
  margin-right: 10px;
  transform: translateY(4px);
}

.footer .footer-bottom {
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid var(--sub-color);
}

@media (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }

  .footer .footer-top .container {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer .item {
    padding: 0 15px;
  }

  .footer .item:nth-child(1) {
    width: 100%;
  }

  .footer .item:nth-child(2) {
    width: 180px;
  }

  .footer .item:nth-child(3) {
    width: 230px;
  }

  .footer .item:nth-child(4) {
    width: 100%;
  }

  .footer .footer-bottom {
    padding: 18px 0;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .footer .item:nth-child(1) {
    width: 430px;
  }
}

@media (min-width: 1200px) {
  .footer .footer-top {
    padding: 70px 0 64px;
  }

  .footer .item:nth-child(1) {
    width: 320px;
  }

  .footer .item:nth-child(4) {
    width: 380px;
  }

  .footer .item ul>li a {
    transition: all .3s;
  }

  .footer .logo {
    height: 95px;
    margin-bottom: 25px;
  }

  .footer .tit {
    margin-top: 3px;
    margin-bottom: 31px;
  }

  .footer .item-list>li:not(:last-child) {
    margin-bottom: 14px;
  }

  .footer .item-list>li a:hover {
    color: #fff;
  }

  .footer .cont-list>li a:hover {
    color: #fff;
  }

  .footer .cont-list li i {
    font-size: 22px;
    margin-right: 15px;
    transform: translateY(4px);
  }

  .footer .footer-bottom {
    padding: 25px 0;
  }
}

@media (min-width: 1440px) {
  .footer .item:nth-child(1) {
    width: 430px;
  }

  .footer .item:nth-child(2) {
    width: 200px;
  }

  .footer .item:nth-child(3) {
    width: 260px;
  }

  .footer .item:nth-child(4) {
    width: 458px;
  }

  .footer .tit {
    font-size: 30px;
  }

  .footer .item-list, .footer .footer-bottom {
    font-size: 20px;
  }
}


/* 手机端底部 */
.mobile-footer {
  width: 100%;
  color: #666;
  text-align: center;
  border-top: 1px solid #ccc;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
}

.mobile-footer ul {
  background: #fff;
  padding: 0 15px;
  flex-wrap: nowrap;
  justify-content: space-around;
  display: flex;
}

.mobile-footer li a i, .mobile-footer li span i {
  width: 20px;
  height: 20px;
  margin: 5px auto 1px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-footer {
    display: none;
  }
}