
/* fixed-attention-------------------------------------------------- */
.fixed-attention {
    position: sticky;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 650px;
    left: 0;
    right: 0;
    /* top: 0px; */
    margin: 0 auto;
    padding: 3.2vw 6.4vw;
    bottom: 5.33333vw;
    top: 0px;
    z-index: 1000;
    transition: all 0.3s ease;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  
    font-size: 1rem;
  }
  
  .fixed-attention p {
    color: #fff;
    /* font-size: 1.4rem; */
    letter-spacing: 0.05rem;
  }
  
  @media screen and (max-width: 767px) {
    .fixed-attention p {
      line-height: 1.4;
    }
  }
  
  @media screen and (min-width: 769px) {
    .fixed-attention {
      font-size: 1rem;
      padding: 16px 32px;
      bottom: 20px;
    }
  }
  
  .fixed-attention.hide {
    opacity: 0;
    visibility: hidden;
    bottom: -10px;
  }
  
  html:lang(zh-cn) .fixed-attention.ever-hide {
    display: none;
  }
  
  .fixed-attention p {
    /* font-family: noto-sans-cjk-jp, sans-serif; */
    font-weight: 600;
    font-style: normal;
  }
  
  .fixed-attention a {
    color: #ff80b0;
    text-decoration: underline;
  }
  
  .fixed-attention .wrap-fixed-attention-close {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
  }
  
  .fixed-attention .wrap-fixed-attention-close span {

  }