.action-btn {
    border: 1px solid rgba(0, 217, 163, 0.2);
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #666;
  }

  .action-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  /* 按钮组容器改为透明背景，只负责布局 */
  .button-group {
    display: flex;
    justify-content: space-between;
  }

  .button-group .action-btn:first-child {
    margin-right: 10px;
  }

  /* 文字颜色改为深灰色 */
  .action-btn.favorite-btn {
    color: #666;
  }

  /* 激活状态使用绿色 */
  .action-btn.favorite-btn.active {
    color: #fc6ce7;
  }

  /* 移除hover，添加active点击效果适配移动端 */
  .action-btn:active {
    transform: scale(0.95);
  }

  .contact-single-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d9a3 0%, #00c090 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.3);
  }

  /* 移除hover，添加active点击效果 */
  .contact-single-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 163, 0.4);
  }

  .contact-single-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }