/* 右侧悬浮联系栏（全站 footer 引入） */
.dastra_sider_bar {
  display: none !important;
}

.hanke-float-contact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99990;
  width: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #2b2523;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.hanke-float-contact__item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hanke-float-contact__item:last-child {
  border-bottom: none;
}

.hanke-float-contact__item .hanke-float-contact__icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hanke-float-contact__item:hover,
.hanke-float-contact__item:focus {
  background: var(--color-primary, #c8102e);
  color: #fff;
  outline: none;
}

@media screen and (max-width: 768px) {
  .hanke-float-contact {
    width: 44px;
  }

  .hanke-float-contact__item {
    width: 44px;
    height: 44px;
  }

  .hanke-float-contact__item .hanke-float-contact__icon {
    width: 20px;
    height: 20px;
  }
}

@media print {
  .hanke-float-contact {
    display: none !important;
  }
}
