/* styles.css */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4caf50; /* 绿色背景 */
  color: white;
  padding: 12px 15px;
  border-radius: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* 确保悬浮框在最上层 */
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-link {
  color: inherit; /* 继承父级颜色 */
  text-decoration: none;
  display: flex;
  align-items: center;
}

.call-link:hover {
  color: #c3c3c3; /* 自定义 */
  text-decoration: none;
  display: flex;
  align-items: center;
}


.call-icon {
  font-size: 18px;
}

.call-text {
  font-size: 14px;
}

/* 移动端适配（可选） */
@media (max-width: 768px) {
  .floating-call {
    bottom: 10px;
    right: 10px;
    padding: 10px 12px;
  }
}