  .share-container {
      position: relative;
      margin: 5px 0;
        display:flex;
      padding: 0;
         align-items: center; /* 垂直居中，可保留 */
  justify-content: space-between; /* 可选：让两列左右分布，若需均分用 space-around */
    }
    
    .share-label {
      font-weight: bold;
      margin-bottom: 0;
      color: #333;
    }
    
    .share-buttons {
      display: flex;
      gap: 2px;
      flex-wrap: wrap;
    }
    
    .share-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .share-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    
    .linkedin { background: #0077B5; }
    .twitter { background: #1DA1F2; }
    .facebook { background: #1877F2; }
    .whatsapp { background: #25D366; }
    .weibo { background: #E6162D; }
    .telegram { background: #0088cc; }
    .copy-link { background: #666; }


    @media (max-width: 768px) {
      /* 隐藏电脑端导航，显示移动端菜单按钮 */
  .share-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    }