/* kefu*/
    /** {*/
    /*    margin: 0;*/
    /*    padding: 0;*/
    /*    box-sizing: border-box;*/
    /*  }*/
      /* 方便测试滚动 */
      /*body {*/
      /*  height: 2000px; */
      /*  background: #e6f0fa;*/
      /*}*/

      /* 悬浮按钮容器 - 核心：固定右侧 */
      .service-container {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: row-reverse; /* 按钮在面板右侧 */
      }

      /* 1. 客户服务中心按钮（默认显示） */
      .service-trigger {
        width: 50px;
        height: 150px;
        background: #ff8800;
        color: #fff;
        font-size: 14px;
        writing-mode: vertical-rl; /* 文字竖排 */
        text-align: center;
        line-height: 50px;
        cursor: pointer;
        border-radius: 5px 0 0 5px;
        font-weight: bold;
      }

      /* 2. 客服面板（默认隐藏） */
      .service-panel {
        width: 180px;
        background: #0078d7;
        color: #fff;
        padding: 10px;
        display: none; /* 默认隐藏 */
        border-radius: 5px 0 0 5px;
      }

      /* 面板头部 */
      .panel-header {
        background: #f5f0e6;
        color: #ff6600;
        text-align: center;
        padding: 8px;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        border-radius: 3px;
      }

      /* 客服项样式 */
      .service-item {
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }
      .service-item h4 {
        font-size: 14px;
        margin-bottom: 8px;
      }
      /* 通用按钮样式（QQ/微信/WhatsApp） */
      .service-btn {
        display: block;
        background: #fff;
        color: #000;
        text-decoration: none;
        padding: 5px;
        margin: 5px 0;
        border-radius: 3px;
        font-size: 12px;
        text-align: center;
      }
      /* 微信/WhatsApp区域 */
      .chat-area {
        font-size: 12px;
        line-height: 1.8;
        margin-top: 8px;
      }
      /* 关闭按钮 */
      .close-btn {
        width: 100%;
        background: #005cb7;
        color: #fff;
        border: none;
        padding: 8px;
        cursor: pointer;
        border-radius: 3px;
        margin-top: 5px;
      }
      /* 区分微信/WhatsApp文字颜色 */
      .wechat-text {
        color: #07c160;
      }
      .whatsapp-text {
        color: #25d366;
      }
   
   /* End kefu*/  