@charset "utf-8";

/* 悬浮按钮外层（定位用） */
#jzzhbut {
  position: fixed;
  right: 0.9375rem;
  bottom: 10.875rem;
  z-index: 10000;
}

/* 点击区域撑满 */
#jzzhbut a {
  display: block;
}

/* 主按钮：只显示 bac.png */
.wt-jzzh {
  width: 3.375rem;
  height: 3.3125rem;
  background: url(123.png) no-repeat center center;
  background-size: 100% 100%;
}

/* PC 端轻微交互（不动画） */
@media (min-width: 768px) {
  .wt-jzzh:hover {
    transform: scale(1.05);
  }
}

/* 手机端适当缩小 */
@media (max-width: 767px) {
  #jzzhbut {
    right: 0.75rem;
    bottom: 7rem;
  }

  .wt-jzzh {
    width: 3rem;
    height: 3rem;
  }
}
