@media screen and (min-width: 720px) {
  .widgetA1 {
      position: fixed !important;
      bottom: 98px;
      right: 24px;
      width: 40px;
      z-index: 9999;
  }
  .widgetA1 .hover {
      cursor: pointer;
  }
  .widgetA1 .link-hover {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .widgetA1 .link-hover:hover {
      text-decoration: underline;
  }
  .widgetA1 .widget-triggering-area {
      width: 56px;
      height: 56px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
  }
  .widgetA1 .widget-triggering-area .widget-container {
      width: 40px;
      height: 40px;
      border-radius: 20px;
      box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background-color: #fff;
  }
  .widgetA1 .widget-triggering-area .widget-container .widget-button {
      width: 20px;
      height: 20px;
  }
  .widgetA1 .widget-triggering-area .widget-container .widget-button .icon_hover {
      display: none;
  }
  .widgetA1 .widget-triggering-area .widget-container .widget-button .icon {
      display: block;
  }
  .widgetA1 .widget-triggering-area .bubble-box {
      position: absolute;
      bottom: 3px;
      left: 5px;
      transform: translateX(-100%);
      opacity: 0;
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content {
      padding: 16px 24px;
      margin-right: 10px;
      position: relative;
      background: #FFFFFF;
      border: 1px solid #EFEFEF;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box {
      margin-bottom: 16px;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box .text-icon-box {
      width:100%;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box .text-icon-box .text {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 14px;
      color: #000000;
      letter-spacing: 0;
      max-width: 177px;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box .text-icon-box .no-icon{
      max-width: 206px !important;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box .text-icon-box .text-icon {
      width: 16px;
      height: 16px;
      padding: 0px 8px;
      display: block;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box .text-icon-box .hover-text-icon {
      width: 16px;
      height: 16px;
      padding: 0px 8px;
      display: none;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box .text-icon-box:hover .text-icon {
      display: none !important;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box .text-icon-box:hover .hover-text-icon {
      display: block !important;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .content-box:last-child {
      margin-bottom: 0px;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .title {
      font-family: HarmonyHeiTi-Medium;
      font-size: 14px;
      color: #000000;
      letter-spacing: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 206px;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .bubble-text:last-child {
      margin-bottom: 0px;
  }
  .widgetA1 .widget-triggering-area .bubble-box .bubble-content .bubble-content-triangle {
      width: 15px;
      height: 15px;
      position: absolute;
      right: 4px;
      bottom: 16px;
      transform: translateX(100%);
      overflow: hidden;
  }
  .widgetA1 .widget-triggering-area:hover {
      overflow: visible;
  }
  .widgetA1 .widget-triggering-area:hover .widget-container {
      background-color: #000;
  }
  .widgetA1 .widget-triggering-area:hover .widget-container .widget-button .icon_hover {
      display: block;
  }
  .widgetA1 .widget-triggering-area:hover .widget-container .widget-button .icon {
      display: none;
  }
  .widgetA1 .widget-triggering-area:hover .bubble-box {
      opacity: 1;
  }
}

@media screen and (max-width: 720px) {
  .widgetA1 {
      display: none;
  }
}
