    /* 基础样式重置 */
    body, html {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    /* 固定小部件位置 */
    .fixed-widget {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 50;
    }

    /* 小部件项目样式 */
    .widget-item {
      width: 45px;
      height: 45px;
      background-color: #f0f0f0;
      border-radius: 8px;
      cursor: pointer;
      margin-bottom: 6px;
      position: relative;
      transition: background-color 0.3s;
	  right: 8px;
    }

    .widget-item:hover {
      background-color: #e0e0e0;
    }

    /* 图标样式 */
    .widget-icon {
      color: #666;
      font-size: 24px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* 服务信息框样式 */
    .service-box {
      display: none;
      position: absolute;
      width: 180px;
      height: auto;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 8px;
      text-align: center;
      top: 0;
      right: 50px;
      border: 1px solid #e0e0e0;
    }

    .service-box p {
      margin: 0;
      font-size: 14px;
    }

    /* 微信二维码样式 */
    .wechat-qr {
      width: 100%;
      height: auto;
      margin-bottom: 4px;
    }

    /* 返回顶部按钮样式 */
    .scroll-top {
      display: block;
    }

    /* 媒体查询，小于768px时显示返回顶部按钮 */
    @media (max-width: 768px) {
      .scroll-top {
        display: block;
      }
    }
