/* bottom-contact */
.bottom-contact {
  padding: 30px 0;
  background: #EEF2F7;
}

.bottom-contact .title {
  line-height: calc(45 / 34);
  text-align: left;
  margin-bottom: 10px;
}

.bottom-contact .sub-info {
  line-height: 1.8;
}

.bottom-contact .sub-info>*:not(:last-child) {
  margin-bottom: 15px;
}

.bottom-contact label {
  line-height: 1;
  font-weight: normal;
  margin-bottom: 11px;
}

.bottom-contact label span {
  color: #C02B0A;
}

.bottom-contact .form-group {
  position: relative;
  margin-bottom: 20px;
}

.bottom-contact .form-group::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: translate(-50%, -50%);
  border-radius: 4px;
  border: 3px solid var(--style-color);
  opacity: 0;
  visibility: hidden;
}

.bottom-contact .form-group.active::before {
  opacity: 1;
  visibility: visible;
}

.bottom-contact .form-control {
  border-radius: 4px;
  border-color: #64748B;
  background: transparent;
  position: relative;
  z-index: 1;
}

.bottom-contact .btn-wrap {
  margin-top: 20px;
}

.bottom-contact .btn {
  width: fit-content;
  color: #fff;
  line-height: 1;
  border-radius: 16px;
  padding: 8px 15px;
  background: var(--sub-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-contact .btn i {
  font-size: 18px;
  margin-left: 10px;
}

@media (min-width: 992px) {
  .bottom-contact .container {
    display: flex;
    justify-content: space-between;
  }

  .bottom-contact .lt {
    flex: 1;
    margin-right: 30px;
  }

  .bottom-contact .rt {
    width: calc((651 / 1400) * 100%);
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .bottom-contact {
    padding: 60px 0;
  }

  .bottom-contact .lt {
    margin-right: 60px;
  }

  .bottom-contact .title {
    margin-top: -10px;
    margin-bottom: 22px;
  }

  .bottom-contact .sub-info>*:not(:last-child) {
    margin-bottom: 22px;
  }

  .bottom-contact label {
    font-size: 18px;
  }

  .bottom-contact .form-group {
    margin-bottom: 30px;
  }

  .bottom-contact input.form-control {
    height: 51px;
  }

  .bottom-contact textarea.form-control {
    height: 200px;
  }

  .bottom-contact .btn-wrap {
    margin-top: 40px;
  }

  .bottom-contact .btn {
    font-size: 20px;
    padding: 12px 40px 13px;
    transition: background .3s;
  }

  .bottom-contact .btn:hover {
    background: var(--btn-color);
  }

  .bottom-contact .btn i {
    font-size: 23px;
    margin-left: 13px;
  }
}

@media (min-width: 1440px) {
  .bottom-contact {
    padding-top: 93px;
    padding-bottom: 100px;
  }

  .bottom-contact .lt {
    margin-right: 100px;
  }
}


/* footer */
.footer {
  border-top: 15px solid var(--style-color);
  margin-bottom: 51px;
}

.footer .footer-top {
  padding: 30px 0;
  border-top: 8px solid rgba(0, 109, 239, .2);
  background: #F8FAFC;
}

.footer .footer-top .container {
  padding: 0;
  margin-bottom: -20px;
}

.footer .item {
  padding: 0 15px;
  margin-bottom: 20px;
}

.footer .logo {
  width: auto;
  height: 50px;
  margin-bottom: 20px;
}

.footer .info {
  line-height: 1.8;
}

.footer .tit {
  line-height: 1;
  color: var(--style-color);
  position: relative;
  margin-bottom: 20px;
}

.footer .tit::after {
  content: '';
  width: 68px;
  height: 3px;
  margin-top: 15px;
  background: var(--style-color);
  display: block;
}

.footer .item-list>li:not(:last-child) {
  margin-bottom: 10px;
}


.footer .cont-list li {
  display: flex;
  line-height: 1.8;
}

.footer .cont-list li i {
  font-size: 22px;
  color: var(--sub-color);
  margin-right: 9px;
  position: relative;
  top: -1px;
}

.footer .cont-list li:not(:last-child) {
  margin-bottom: 12px;
}

.footer .footer-bottom {
  font-size: 14px;
  padding: 12px 0;
  text-align: center;
  background: #EEF2F7;
}

@media (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }

  .footer .footer-top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer .item:nth-child(1), .footer .item:nth-child(4) {
    width: 45%;
    order: 1;
  }

  .footer .item:nth-child(2) {
    width: 185px;
  }

  .footer .item:nth-child(3) {
    width: 325px;
  }

  .footer .footer-bottom {
    font-size: 16px;
    text-align: left;
    padding: 18px 0;
  }
}

@media (min-width: 992px) {
  .footer .item:nth-child(1) {
    width: 330px;
    order: 0;
  }

  .footer .item:nth-child(2) {
    width: 185px;
  }

  .footer .item:nth-child(3) {
    width: 325px;
  }

  .footer .item:nth-child(4) {
    width: 100%;
    order: 0;
  }
}

@media (min-width: 1200px) {
  .footer .footer-top {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer .item:nth-child(4) {
    width: 287px;
  }

  .footer .logo {
    height: 65px;
    margin-bottom: 33px;
  }

  .footer .tit {
    margin-bottom: 35px;
  }

  .footer .ul>li a {
    transition: all .3s;
  }

  .footer .item-list a:hover, .footer .cont-list li a:hover {
    color: var(--style-color);
  }

  .footer .item-list>li:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (min-width: 1440px) {
  .footer .footer-top {
    padding-top: 73px;
    padding-bottom: 94px;
  }

  .footer .logo {
    height: 84px;
  }

  .footer .item:nth-child(1) {
    width: 380px;
  }
}


/* 手机端底部 */
.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: 3px;
  padding: 1rem 2rem;
  position: relative;
  overflow: auto;
}

.inquiry .back .h3 {
  font-family: 'Quicksand-Bold';
  border-bottom: 1px solid #ccc;
  padding-bottom: .5rem;
  margin-top: .5rem;
  margin-bottom: 10px;
}

.inquiry .back .close {
  font-size: 1.5rem;
  color: var(--style-color);
  padding: 0 .5rem;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}

.inquiry form label {
  font-family: 'Quicksand-Bold';
  margin-bottom: 2px;
}

.inquiry .form-control {
  font-size: 14px;
  color: #2B2B2B;
  border-color: #BBBABA;
  border-radius: 2px;
  box-shadow: none;
}

.inquiry input.form-control {
  height: 36px;
}

.inquiry .back .submit {
  text-align: right;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  margin-top: 1.25rem;
}

.inquiry .back .submit .btn {
  width: 90px;
  color: #fff;
  padding: 5px 15px 4px;
  border-radius: 3px;
  background: var(--style-color);
}

.inquiry .back .submit .c-btn {
  margin-right: 1rem;
}

.inquiry .form-control:focus {
  border-color: var(--style-color);
  box-shadow: 2px 2px 11px 1px rgba(120, 35, 37, 0.2);
}

.inquiry .form-control::-webkit-input-placeholder {
  color: rgba(43, 43, 43, .7)
}

.inquiry .form-control:-moz-placeholder {
  color: rgba(43, 43, 43, .7)
}

.inquiry .form-control::-moz-placeholder {
  color: rgba(43, 43, 43, .7)
}

.inquiry .form-control:-ms-input-placeholder {
  color: rgba(43, 43, 43, .7)
}

@media (min-width: 1200px) {
  .inquiry .back .submit .btn {
    transition: background .3s;
  }

  .inquiry .back .submit .btn:hover {
    background: var(--sub-color);
  }
}