/* 核心按钮样式 */
.blue-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px; /* 左侧文字间距，右侧箭头间距 */
  background: linear-gradient(90deg, #77d9ff, #199eff); /* 蓝白渐变（可微调色值） */
  border: 5px solid #0192fc;
  border-radius: 50px; /* 超大圆角 */
  box-shadow: 
    0 5px 15px rgb(25, 158, 255), /* 外阴影模拟立体 */
    inset 0 2px 2px rgba(255,255,255,0.5); /* 内阴影模拟高光 */
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  font-family: "Microsoft YaHei", sans-serif; /* 匹配中文字体 */
  text-shadow: 0 2px 3px rgba(0,0,0,0.3); /* 文字立体阴影 */
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 12px;
}

/* 箭头样式（CSS 画三角形） */
.blue-btn .arrow {
  position: absolute;
  right: 10px; /* 距离右侧间距 */
  width: 0;
  height: 0;
  border-top:12px solid transparent; /* 上边框透明 */
  border-bottom: 12px solid transparent; /* 下边框透明 */
  border-left: 24px solid #fff; /* 左边框白色，形成向右的三角形 */
}

/* 悬停交互效果 */
.blue-btn:hover {
  background: linear-gradient(90deg, #4dc2ff, #0a98ff); /* 更深的渐变 */
  box-shadow: 
    0 6px 18px rgba(0,0,0,0.25), /* 阴影放大 */
    inset 0 2px 2px rgba(255,255,255,0.5);
  transform: translateY(-1px); /* 轻微上浮，增强反馈 */
}