/* Kuangke Third App Component - Side Bar */
.kuangke-side-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px 0 0 8px;
  padding: 10px 2px;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
}

.kuangke-side-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--kuangke-service-background-color, #1554A3);
  color: var(--kuangke-service-icon-color, #ffffff);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.kuangke-side-bar a .iconfont {
  font-size: 22px;
  line-height: 1;
}

/* Go Top Button */
.kuangke-gotop-btn {
  cursor: pointer;
}

/* Responsive Design - Hide on mobile */
@media (max-width: 768px) {
  .kuangke-side-bar {
    display: none !important;
  }
}

/* Print styles */
@media print {
  .kuangke-side-bar {
    display: none !important;
  }
} 