﻿@charset "utf-8";
/* CSS Document */
/* 悬浮按钮容器样式 */
#floating-buttons {
  position: fixed;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 999;
}

/* 单个悬浮按钮样式 */
.floating-button {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border: none;
  border-radius: 23%;
  background-color: #007BFF;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

