/* 右侧悬浮图标 */
@media (min-width: 1024px) {
  .icon-group #right_contact {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 99;
  }

  .icon-group #right_contact>li {
    position: relative;
  }

  .icon-group #right_contact>li:not(:last-child) {
    margin-bottom: 5px;
  }

  .icon-group #right_contact>li i {
    font-size: inherit;
    line-height: 1;
  }

  .icon-group #right_contact li a, .icon-group #right_contact li span {
    width: 45px;
    height: 45px;
    font-size: 22px;
    color: #fff;
    background-color: var(--style-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  }

  .icon-group #right_contact li:last-child span {
    background: #465069;
  }

  .icon-group #right_contact li:hover a, .icon-group #right_contact li:hover span {
    background: #465069;
  }

  .icon-group #right_contact li .hover-info {
    position: absolute;
    top: 0;
    right: 95px;
    font-size: 18px;
    color: #fff;
    width: fit-content;
    white-space: nowrap;
    background: #465069;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
  }

  .icon-group #right_contact li .hover-info::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 24px;
    display: block;
    transform: translateY(-10px);
    border: 10px solid transparent;
    border-left: 10px solid #465069;
  }

  .icon-group #right_contact li:hover .hover-info {
    right: 55px;
    opacity: 1;
    visibility: visible;
  }

  .icon-group #right_contact li img {
    width: 80px;
    max-width: none;
  }
}

@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 {
  max-width: 640px;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.inquiry .back {
  width: 100%;
  max-height: 90%;
  background: #fff;
  border-radius: 4px;
  padding: 16px 32px;
  position: relative;
  overflow: auto;
}

.inquiry .back .h3 {
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.inquiry .back .close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 16px;
  color: #dc3545;
  padding: 0 8px;
  opacity: 1;
  cursor: pointer;
}

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

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

.inquiry .back .submit .c-btn {
  margin-right: 16px;
}

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

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

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

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