.floatingban {
    display: none;
    width: min(25vw,600px);
    position: fixed;
    right: 20px;
    bottom: 110px;
    z-index: 999;
}
.floatingban_content {
  background: #fff;
  box-shadow: 0 0 6px #0003;
  border-radius: 10px;
  overflow: hidden;
}
.floatingban_close {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #f1f1f6;
    border-radius: 300px;
    box-shadow: 0 0 6px #0003;
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
}
.floatingban_close:before,
.floatingban_close:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 1px;
    border-radius: 300px;
    background: #9b9b9e;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    rotate: 45deg;
}
.floatingban_close:after {
    rotate: -45deg;
}
html[data-browse-mode=S] .floatingban {
  right: initial;
  left: 16px;
  bottom: 16px;
  width: 240px;
}