.footer {
  margin-bottom: 51px;
  color: #fff;
  background: #333333;
}

.footer .footer-top {
  display: none;
}

.footer .footer-bottom {
  padding: 15px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }

  .footer .footer-top {
    display: block;
    padding: 48px 0 43px;
  }

  .footer .footer-top .container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
  }

  .footer .item {
    padding: 0 15px;
    max-width: 400px;
  }

  .footer .item:nth-child(2) {
    max-width: 230px;
  }

  .footer .item:nth-child(3) {
    margin-top: 20px;
  }

  .footer .logo {
    width: 100%;
    max-width: 219px;
    margin-bottom: 15px;
  }

  .footer .cont-list li {
    display: flex;
    line-height: 1.8;
  }

  .footer .cont-list li:not(:last-child) {
    margin-bottom: 13px;
  }

  .footer .cont-list li p {
    flex: 1;
  }

  .footer .cont-list li i {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    margin-top: 6px;
    margin-right: 8px;
  }

  .footer .footer-download {
    margin-top: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    color: var(--style-color);
    position: relative;
  }

  .footer .footer-download::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--style-color);
  }

  .footer .footer-download i {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    margin-right: 15px;
    position: relative;
    z-index: 1;
  }

  .footer .tit {
    font-family: 'NTSomic-B';
    margin-bottom: 17px;
  }

  .footer .item-list>li:not(:last-child) {
    margin-bottom: 10px;
  }

  .footer .title-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 2px solid #888;
    margin-bottom: 17px;
  }

  .footer .title-wrap .tit {
    margin-bottom: 0;
  }

  .footer .icon-list {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
  }

  .footer .icon-list li {
    line-height: 1;
  }

  .footer .icon-list li:not(:last-child) {
    margin-right: 14px;
  }

  .footer .icon-list li a {
    display: inline-block;
  }

  .footer .icon-list li i {
    font-size: 16px;
  }

  .footer .form-control {
    border-radius: 0;
    background: rgba(255, 255, 255, .8);
  }

  .footer input.form-control {
    height: 39px;
  }

  .footer textarea.form-control {
    height: 106px;
  }

  .footer .btn-wrap {
    margin-top: 25px;
  }

  .footer .btn {
    width: 97px;
    color: #fff;
    text-align: center;
    padding: 2px 15px;
    border-radius: 20px 0px 20px 0px;
    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 {
    padding: 17px 0 16px;
    border-top: 2px solid rgba(255, 255, 255, .5);
  }
}

@media (min-width: 992px) {
  .footer .item {
    max-width: 350px;
  }

  .footer .item:nth-child(3) {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .footer .item:nth-child(1) {
    max-width: 420px;
  }

  .footer .item:nth-child(3) {
    max-width: 400px;
  }

  .footer .logo {
    margin-bottom: 26px;
  }

  .footer .cont-list li:not(:last-child) {
    margin-bottom: 16px;
  }

  .footer .footer-download {
    margin-top: 25px;
  }

  .footer .tit {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .footer .title-wrap {
    padding-bottom: 14px;
    margin-bottom: 25px;
  }

  .footer .icon-list li:not(:last-child) {
    margin-right: 20px;
  }

  .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 .form-group {
    margin-bottom: 25px;
  }

  .footer .btn:hover {
    color: var(--style-color);
    background-color: #fff;
  }
}


/* 手机端底部 */
.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;
  }
}