.footer {
  color: #fff;
  font-size: 14px;
  background: var(--style-color);
  margin-bottom: 51px;
}

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

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

.footer .info {
  text-align: center;
  margin-bottom: 15px;
}

.footer .icon-list {
  display: flex;
  justify-content: center;
}

.footer .icon-list>li a {
  width: 33px;
  height: 33px;
  font-size: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer .icon-list>li i {
  font-size: inherit;
}

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

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

  .footer .footer-top .container {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    position: relative;
  }

  .footer .footer-top .container::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background: #fff;
    display: block;
  }

  .footer .item {
    max-width: 280px;
    padding: 0 15px;
  }

  .footer .logo {
    width: auto;
    height: 95px;
    margin-bottom: 16px;
  }

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

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

  .footer .cont-list>li i {
    font-size: 22px;
    line-height: 1;
    position: relative;
    top: 6px;
    margin-right: 15px;
  }

  .footer .tit {
    margin-top: 34px;
    margin-bottom: 34px;
    font-family: 'PlusJakartaSans-B';
  }

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

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

  .footer .info {
    text-align: left;
    margin-bottom: 0;
  }

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

  .footer .icon-list {
    margin-left: 20px;
  }
}

@media (min-width: 1200px) {
  .footer .footer-top .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer .item ul>li a:hover {
    text-decoration: underline;
  }

  .footer .icon-list>li a {
    transition: all .3s;
  }

  .footer .icon-list li a:hover {
    border-color: var(--sub-color);
    background: var(--sub-color);
  }
}

@media (min-width: 1440px) {
  .footer .footer-top .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}


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

/* 询盘 */
.inquiry {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: none;
}

.inquiry .container {
  max-width: 40rem;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.inquiry .back {
  width: 100%;
  max-height: 90%;
  background: #fff;
  border-radius: .25rem;
  padding: 1rem 2rem;
  position: relative;
  overflow: auto;
}

.inquiry .back .h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: .5rem;
  margin-top: .5rem;
  margin-bottom: 10px;
  font-family: 'PlusJakartaSans-B';
}

.inquiry .back .close {
  font-size: 1.5rem;
  color: #dc3545;
  padding: 0 .5rem;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}

.inquiry label {
  font-family: 'PlusJakartaSans-S';
}

.inquiry .back .submit {
  text-align: right;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  margin-top: 1.25rem;
}

.inquiry .back .submit .btn {
  color: #fff;
  background: var(--style-color);
}

.inquiry .back .submit .c-btn {
  margin-right: 1rem;
}

.inquiry input::-webkit-input-placeholder,
.inquiry textarea::-webkit-input-placeholder {
  color: #999;
}

.inquiry input:-moz-placeholder,
.inquiry textarea:-moz-placeholder {
  color: #999;
}

.inquiry input::-moz-placeholder,
.inquiry textarea::-moz-placeholder {
  color: #999;
}

.inquiry input:-ms-input-placeholder,
.inquiry textarea:-ms-input-placeholder {
  color: #999;
}