/* 右侧悬浮图标 */
.hover-icon {
  display: none;
}

@media (min-width: 1024px) {
  .hover-icon {
    display: block;
  }

  .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: var(--style-color);
    opacity: .7;
  }

  .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: var(--style-color);
    background: #fff;
  }
}

@media (max-width: 1023px) {
  .hover-icon {
    display: none !important;
  }
}


/* 手机端底部 */
.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: 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;
  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;
}

.inquiry .back .submit {
  text-align: right;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 20px;
}

.inquiry .back .submit .btn {
  color: #fff;
  border-radius: 0;
  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;
}

@media (min-width: 768px) {
  .inquiry .back {
    padding-left: 32px;
    padding-right: 32px;
  }
}