/* 右侧悬浮图标 */
@media (min-width: 1024px) {
  .icon-group #right_contact {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    width: 55px;
  }

  .icon-group #right_contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #070707;
  }

  .icon-group #right_contact>li {
    position: relative;
  }

  .icon-group #right_contact>li i {
    font-size: inherit;
  }

  .icon-group #right_contact li a {
    font-size: 28px;
    color: #fff;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .icon-group #right_contact li a:hover {
    color: #fff;
    background-color: var(--style-color);
  }
}

@media (max-width: 1023px) {
  .hover-icon {
    display: none !important;
  }
}


/* 询盘 */
.inquiry {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: none;
}

.inquiry .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 60px);
  max-width: 878px;
  max-height: 90vh;
  padding: 15px;
  border-radius: 20px;
  background: #F4F7FC;
  overflow-y: auto;
}

.inquiry .back {
  background: #fff;
  padding: 20px;
  position: relative;
}

.inquiry .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  color: #ABB4C4;
  line-height: 1;
  cursor: pointer;
}

.inquiry .tit {
  color: var(--style-color);
  margin-bottom: 3px;
}

.inquiry .sub-info {
  line-height: 30px;
  color: #666666;
  margin-bottom: 20px;
}

.inquiry label {
  display: block;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 3px;
  font-weight: normal;
}

.inquiry .form-group {
  margin-bottom: 25px;
}

.inquiry .form-control {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-color: #9B9B9B;
}

.inquiry input.form-control {
  padding: 0;
}

.inquiry textarea.form-control {
  height: 103px;
  min-height: auto;
  padding: 13px 0;
}

.inquiry .btn-wrap {
  margin-top: 20px;
}

.inquiry .btn-wrap .btn {
  width: 120px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  padding: 9px 15px 8px;
  background: var(--style-color);
}

.inquiry .form-control::-webkit-input-placeholder {
  color: #666;
}

.inquiry .form-control:-moz-placeholder {
  color: #666;
}

.inquiry .form-control::-moz-placeholder {
  color: #666;
}

.inquiry .form-control:-ms-input-placeholder {
  color: #666;
}

@media (min-width: 768px) {
  .inquiry .container {
    padding: 20px;
  }

  .inquiry .back {
    padding: 44px 40px 50px;
  }

  .inquiry .close {
    top: 30px;
    right: 30px;
    font-size: 20px;
  }

  .inquiry .sub-info {
    margin-bottom: 35px;
  }

  .inquiry .row {
    margin-left: -25px;
    margin-right: -25px;
  }

  .inquiry .row>div {
    padding: 0 25px;
  }

  .inquiry label {
    font-size: 24px;
  }

  .inquiry .form-group {
    margin-bottom: 51px;
  }

  .inquiry .form-control {
    border-width: 2px;
  }

  .inquiry input.form-control {
    height: 51px;
  }

  .inquiry .btn-wrap {
    margin-top: 40px;
  }

  .inquiry .btn-wrap .btn {
    font-size: 18px;
  }
}