/* 右侧悬浮工具条：独立文件，需在页面 CSS 之后加载 */
.site-float-bar {
  position: fixed !important;
  right: 10px;
  bottom: 10px;
  left: auto !important;
  top: auto !important;
  z-index: 9999;
  width: 40px;
  margin: 0;
  padding: 0;
  background: #a8d8ff;
  border: 1px solid #42a5f5;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(33, 150, 243, 0.45);
  overflow: hidden;
  float: none !important;
  clear: none !important;
}
.site-float-bar .site-float-item {
  display: block !important;
  float: none !important;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 12px;
  color: #0d47a1;
  font-weight: 600;
  background: #a8d8ff;
  border-bottom: 1px solid rgba(66, 165, 245, 0.55);
  text-decoration: none;
  box-sizing: border-box;
}
.site-float-bar .site-float-item:last-child {
  border-bottom: none;
}
.site-float-bar .site-float-item:hover {
  background: #7ec8f0;
  color: #01579b;
  text-decoration: none;
}
@media screen and (min-width: 981px) {
  .site-float-bar {
    right: 50%;
    margin-right: -520px;
    bottom: 10px;
  }
}
@media screen and (max-width: 980px) {
  .site-float-bar {
    right: 8px;
    bottom: 72px;
    margin-right: 0;
    width: 36px;
  }
  .site-float-bar .site-float-item {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}
