/* bottom-contact */
.bottom-contact {
  padding: 30px 0;
  background: #F6F7F9;
}

.bottom-contact .lt {
  margin-bottom: 20px;
}

.bottom-contact .title {
  text-align: left;
}

.bottom-contact .lt .title {
  margin-bottom: 10px;
}

.bottom-contact .rt .title {
  font-family: 'DMSans-Semibold';
}

.bottom-contact .title::after {
  margin-left: 0;
}

.bottom-contact .title span {
  color: var(--style-color);
}

.bottom-contact .sub-info {
  margin-bottom: 30px;
}

.bottom-contact .item-list li {
  display: flex;
  gap: 20px;
}

.bottom-contact .item-list li:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}

.bottom-contact .icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-contact .icon i {
  font-size: 24px;
}

.bottom-contact .item-info {
  font-family: 'DMSans-Regular';
}

.bottom-contact .rt {
  padding: 20px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.10);
}

.bottom-contact .form-control {
  border-color: #EBEBEB;
  border-radius: 10px;
  font-family: 'DMSans-Regular';
}

.bottom-contact textarea.form-control {
  height: 126px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.bottom-contact .form-control.file-item {
  padding: 0;
  height: 0;
  opacity: 0;
  border: none;
  visibility: hidden;
}

.bottom-contact .file-upload {
  width: fit-content;
  color: #C8C8C8;
  font-size: 14px;
  font-family: 'DMSans-Regular';
  display: flex;
  align-items: center;
  cursor: pointer;
}

.bottom-contact .file-upload span {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 2px;
  border: 1px solid #EBEBEB;
  background: #FAFAFA;
  display: block;
  position: relative;
}

.bottom-contact .file-upload.active span {
  background: var(--style-color);
  border-color: var(--style-color);
}

.bottom-contact .file-upload span::after {
  content: '\e613';
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  transform: translate(-50%, -50%);
  font-family: "iconfont" !important;
  opacity: 0;
}

.bottom-contact .file-upload.active span::after {
  opacity: 1;
}

.bottom-contact .btn {
  width: fit-content;
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 10px;
  padding: 7px 20px;
  background: var(--bg-color);
}

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

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

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

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

@media (min-width: 1200px) {
  .bottom-contact {
    padding: 60px 0;
  }

  .bottom-contact .container {
    display: flex;
  }

  .bottom-contact .lt {
    flex: 1;
    padding-right: 30px;
    margin-bottom: 0;
  }

  .bottom-contact .sub-info {
    margin-bottom: 66px;
  }

  .bottom-contact .item-list li:not(:last-child) {
    padding-bottom: 36px;
    margin-bottom: 36px;
  }

  .bottom-contact .item-info a:hover {
    color: var(--style-color);
    text-decoration: underline;
  }

  .bottom-contact .rt {
    padding: 25px 30px;
    flex: 0 0 calc((720 / 1400) * 100%);
  }

  .bottom-contact .form-group {
    margin-bottom: 30px;
  }

  form .row>div:nth-last-child(2) .form-group {
    margin-bottom: 20px;
  }

  .bottom-contact .form-control {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bottom-contact input.form-control {
    height: 54px;
  }

  .bottom-contact .file-upload {
    font-size: 16px;
  }

  .bottom-contact .btn {
    padding: 13px 40px;
    font-size: 20px;
    margin-top: 30px;
    transition: all 0.6s ease;
  }

  .bottom-contact .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  }
}

@media (min-width: 1440px) {
  .bottom-contact {
    padding: 80px 0;
  }

  .bottom-contact .lt {
    padding-top: 36px;
    padding-right: 80px;
  }

  .bottom-contact .rt {
    padding: 40px 50px 50px;
  }
}


/* bottom-faq */
.bottom-faq {
  padding: 30px 0;
}

.bottom-faq .lt {
  margin-bottom: 30px;
}

.bottom-faq .top-wrap {
  padding: 30px 20px;
  min-height: 250px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bottom-faq .top-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(33deg, #1A3317 9.01%, rgba(26, 51, 23, 0.10) 67.76%);
}

.bottom-faq .top-wrap>* {
  position: relative;
  z-index: 1;
  color: #fff;
}

.bottom-faq .lt-title {
  max-width: 85%;
  margin-bottom: 8px;
}

.bottom-faq .lt-info {
  opacity: .8;
}

.bottom-faq .bottom-wrap {
  padding: 30px 19px 29px;
  text-align: center;
  border-radius: 0 0 14px 14px;
  border-right: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  border-left: 1px solid #EEE;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.04);
}

.bottom-faq .icon {
  width: auto;
  height: 60px;
}

.bottom-faq .sub-tit {
  margin-top: 6px;
  margin-bottom: 8px;
  line-height: calc(46 / 30);
}

.bottom-faq .btn {
  color: #fff;
  margin-top: 20px;
  padding: 7px 20px;
  border-radius: 10px;
  background: var(--bg-color);
}

.bottom-faq .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.bottom-faq .item {
  border-radius: 14px;
  border: 1px solid #E8E8E8;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.bottom-faq .item:not(:last-child) {
  margin-bottom: 20px;
}

.bottom-faq .item-title {
  padding: 15px 20px;
  font-family: 'DMSans-Semibold';
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.bottom-faq .item.active .item-title {
  color: #fff;
  background: var(--style-color);
}

.bottom-faq .item-title i {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--style-color);
  position: relative;
}

.bottom-faq .item.active .item-title i {
  background: #fff;
}

.bottom-faq .item-title i::before, .bottom-faq .item-title i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.bottom-faq .item.active .item-title i::before, .bottom-faq .item.active .item-title i::after {
  background: var(--style-color);
}

.bottom-faq .item-title i::before {
  width: 10px;
  height: 2px;
  border-radius: 2px;
}

.bottom-faq .item-title i::after {
  width: 2px;
  height: 10px;
  border-radius: 2px;
  transition: height .3s;
}

.bottom-faq .item.active .item-title i::after {
  height: 0;
}

.bottom-faq .item-info {
  display: none;
  padding: 20px;
  border-top: 1px solid #E8E8E8;
  background: #FBFCFB;
}

@media (min-width: 1200px) {
  .bottom-faq {
    padding: 60px 0;
  }

  .bottom-faq .container {
    display: flex;
  }

  .bottom-faq .lt {
    width: 350px;
    margin-bottom: 0;
  }

  .bottom-faq .rt {
    flex: 1;
    padding-left: 30px;
  }

  .bottom-faq .top-wrap {
    padding: 30px 70px 40px 30px;
    min-height: 450px;
  }

  .bottom-faq .bottom-wrap {
    padding: 30px 29px 39px;
  }

  .bottom-faq .sub-tit {
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .bottom-faq .btn {
    width: 215px;
    margin-top: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .bottom-faq .sub-info {
    margin-bottom: 40px;
  }

  .bottom-faq .item:not(:last-child) {
    margin-bottom: 30px;
  }

  .bottom-faq .item-title {
    padding: 25px 30px;
  }

  .bottom-faq .item-info {
    padding: 29px;
  }

  .bottom-faq .item-title i {
    width: 30px;
    height: 30px;
  }

  .bottom-faq .item-title i::before {
    width: 16px;
    height: 2px;
  }

  .bottom-faq .item-title i::after {
    width: 2px;
    height: 16px;
  }
}

@media (min-width: 1440px) {
  .bottom-faq {
    padding: 80px 0;
  }

  .bottom-faq .lt {
    width: 400px;
  }

  .bottom-faq .rt {
    padding-left: 50px;
  }
}


/* footer */
.footer {
  color: #fff;
  background: var(--sub-color);
  margin-bottom: 51px;
}

.footer .footer-top {
  padding: 30px 0;
}

.footer .title-wrap {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .title {
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  line-height: calc(70 / 46);
}

.footer .sub-info {
  line-height: calc(22 / 18);
}

.footer .btn {
  width: fit-content;
  color: #fff;
  padding: 7px 20px;
  margin-top: 16px;
  border-radius: 10px;
  background: var(--bg-color);
}

.footer .item-wrap {
  margin-bottom: -30px;
}

.footer .item {
  margin-bottom: 30px;
}

.footer .logo {
  width: auto;
  height: 80px;
  margin-bottom: 10px;
}

.footer .icon-list {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer .icon-list li a {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  color: var(--style-color);
  border: 1px solid rgba(255, 255, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .icon-list li i {
  font-size: inherit;
  line-height: 1;
}

.footer .tit {
  color: #fff;
  margin-bottom: 15px;
  line-height: 19px;
}

.footer .item-list>li a {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer .cont-list li {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer .cont-list li i {
  line-height: 1;
  font-size: 18px;
  margin-right: 12px;
  position: relative;
  top: 2px;
}

.footer .footer-bottom {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.60);
  border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.footer .footer-bottom p a {
  width: fit-content;
  margin-top: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .footer .info-group {
    flex: 1;
    margin-right: 30px;
    max-width: 800px;
  }

  .footer .btn {
    margin-top: 0;
  }

  .footer .item-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    justify-content: space-between;
  }

  .footer .item {
    padding: 0 15px;
  }

  .footer .item:nth-child(1), .footer .item:nth-child(4) {
    order: 1;
    width: 45%;
  }

  .footer .item:nth-child(2) {
    width: 170px;
  }

  .footer .item:nth-child(3) {
    width: 230px;
  }

  .footer .item:nth-child(4) {
    order: 1;
    width: 55%;
  }

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

  .footer .footer-bottom p a {
    width: auto;
    margin-top: 0;
    margin-left: 25px;
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .footer .item:nth-child(1) {
    order: 0;
    width: 100%;
  }

  .footer .item:nth-child(4) {
    width: 330px;
  }
}

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

  .footer .title-wrap {
    padding-bottom: 90px;
    margin-bottom: 65px;
  }

  .footer .title {
    margin-bottom: 20px;
  }

  .footer .btn {
    padding: 15px 30px;
  }

  .footer .item:nth-child(1) {
    width: 400px;
  }

  .footer .item:not(:first-child) {
    padding-top: 15px;
  }

  .footer .logo {
    height: 100px;
  }

  .footer .item ul>li a {
    transition: all .3s;
  }

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

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

  .footer .icon-list li:hover a {
    background: #fff;
  }

  .footer .tit {
    margin-bottom: 30px;
  }

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

  .footer .cont-list>li a:hover, .footer .item-list>li a:hover {
    color: #fff;
    text-decoration: underline;
  }

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

  .footer .footer-bottom p a {
    margin-left: 40px;
  }

  .footer .footer-bottom p a:hover {
    color: #fff;
  }
}

@media (min-width: 1440px) {
  .footer .info-group {
    max-width: 900px;
  }

  .footer .item:nth-child(1) {
    width: 450px;
  }
}


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