/* 一种气泡显示文章整合包tcspack界面 */
.simple-bubble {
  background: linear-gradient(135deg, #f9fafb, #e5e7eb); /* 浅灰白渐变 */
  color: #374151; /* 深灰色文字，清晰且柔和 */
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 5px 15px rgba(156, 163, 175, 0.3); /* 轻柔阴影 */
  margin: 16px 0;
  user-select: text;
}

/* 大图标切换跳转来自排行榜切换图标 */
.region-switcher {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
  }
  
  .region-switcher button {
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 999px;
    background: linear-gradient(to right, #ffffff, #f5faff);
    color: #0078d7;
    cursor: pointer;
    transition: 
      background 0.4s ease,
      color 0.4s ease,
      box-shadow 0.4s ease,
      border-color 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 120, 215, 0.08);
  }
  
  .region-switcher button.active,
  .region-switcher button:hover {
    background: linear-gradient(to right, #0078d7, #00a2ff);
    color: white;
    border-color: #00a2ff;
    box-shadow: 0 6px 15px rgba(0, 120, 215, 0.35);
  }
  

