.footer {
  margin-bottom: 51px;
  color: #fff;
  background: #333333;
}

.footer .footer-top {
  display: none;
}

.footer .footer-bottom {
  padding: 19px 0;
}

.footer .footer-bottom p {
  text-align: center;
}

.footer .icon-list {
  margin-top: 10px;
}

.footer .icon-list li {
  line-height: 1;
}

.footer .icon-list li:not(:last-child) {
  margin-right: 20px;
}

.footer .icon-list li a {
  display: inline-block;
}

.footer .icon-list li i {
  font-size: 20px;
}

@media (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }

  .footer .footer-top {
    display: block;
    padding: 56px 0 40px;
  }

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

  .footer .item {
    padding: 0 15px;
    max-width: 310px;
    min-width: 205px;
  }

  .footer .tit {
    font-weight: bold;
    margin-bottom: 17px;
  }

  .footer .item:nth-child(-n+2) .tit {
    position: relative;
  }

  .footer .item:nth-child(-n+2) .tit::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 10px;
    max-width: 175px;
    background: #999;
  }

  .footer .item-list>li:not(:last-child) {
    margin-bottom: 13px;
  }

  .footer .item:nth-child(3) {
    max-width: 400px;
    margin-top: 20px;
  }

  .footer .logo {
    width: auto;
    height: 83px;
    margin-bottom: 15px;
  }

  .footer .company-name {
    font-weight: bold;
    margin-bottom: 18px;
  }

  .footer .cont-list li {
    display: flex;
    line-height: 1.8;
  }

  .footer .cont-list li:not(:last-child) {
    margin-bottom: 9px;
  }

  .footer .cont-list li:nth-last-child(-n + 2) {
    display: flex;
    justify-content: space-between;
  }

  .footer .cont-list li p {
    flex: 1;
  }

  .footer .cont-list li i {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    margin-top: 4px;
    margin-right: 11px;
  }

  .footer .item:nth-child(4) {
    margin-top: 20px;
  }

  .footer .item:nth-child(4) .tit {
    padding-bottom: 10px;
    border-bottom: 2px solid #999;
  }

  .footer .form-group {
    margin-bottom: 16px;
  }

  .footer .form-control {
    border-radius: 0;
  }

  .footer input.form-control {
    height: 39px;
  }

  .footer textarea.form-control {
    min-height: 84px;
  }

  .footer .btn-wrap {
    margin-top: 25px;
  }

  .footer .btn {
    width: 90px;
    color: #fff;
    line-height: 1;
    text-align: center;
    padding: 6px 15px;
    background-color: var(--style-color);
  }

  .footer .form-control::-webkit-input-placeholder {
    color: #999;
  }

  .footer .form-control:-moz-placeholder {
    color: #999;
  }

  .footer .form-control::-moz-placeholder {
    color: #999;
  }

  .footer .form-control:-ms-input-placeholder {
    color: #999;
  }

  .footer .footer-bottom {
    border-top: 1px solid #fff;
  }

  .footer .footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer .icon-list {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .footer .item {
    max-width: 365px;
  }

  .footer .item:nth-child(3) {
    order: 4;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .footer .item:nth-child(4) {
    margin-top: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .footer .item {
    max-width: 265px;
  }
}

@media (min-width: 1200px) {
  .footer .item ul>li a, .footer .btn {
    transition: all .3s;
  }

  .footer .item ul>li a:hover,
  .footer .icon-list li a:hover {
    color: var(--style-color);
  }

  .footer .btn:hover {
    color: var(--style-color);
    background-color: #fff;
  }

  .footer .item:nth-child(3) {
    order: 0;
    max-width: 400px;
  }
}

@media (min-width: 1440px) {
  .footer .item:nth-child(3) {
    max-width: 520px;
  }

  .footer .company-name {
    font-size: 26px;
  }
}


/* 手机端底部 */
.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 {
  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;
  }
}