    .minfixedheader-tagsbu {
      /* opacity: 0; */
      width: 5rem;
      height: 5rem;
      /* display: flex; */
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: rgb(241, 168, 82);
      position: fixed;
      top: 1rem;
      left: 1rem;
      border-radius: 0.3rem;
      cursor: pointer;
    }

    .minfixedheader-tagsbu-card {
      /* opacity: 0; */
      width: 70%;
      height: 0.5rem;
      margin: 0.2rem 0;
      background-color: #fff;
    }

    .minfixedheader {
      /* opacity: 0; */
      display: none;
      /* 完全透明 */
      width: 100%;
      height: 100vh;
      margin: 0 auto;
      flex-grow: 1;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: rgb(155, 155, 155);
      text-align: center;
      position: fixed;
      z-index: 5;
      top: 0rem;
      /* border-bottom: rgb(155, 155, 155) solid 0.3rem; */
    }

    /* 淡入元素的激活状态 */
    .minfixedheader.active {
      display: flex;
      /* opacity: 1; */
      /* 完全不透明 */
      /* transform: translateY(0) translateY(100%); 回到原始位置 */
    }

    .minfixedheader-tags {
      max-width: 60rem;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #fff;
      flex-grow: 0;
      flex-shrink: 0;
      align-items: center;
      margin: 0 auto;
    }

    .minfixedheader-tags-cancel {
      width: 90%;
      display: flex;
      justify-content: start;
      align-items: center;
      height: 3rem;
      text-align: start;
    }

    .minfixedheader-tags-cancel-icon {
      display: flex;
      width: 1.6rem;
      height: 1.6rem;
      margin-top: 1.4rem;
      background: url('../image/X-icon.png');
      background-repeat: repeat;
      background-size: 100% 100%;
    }

    .minfixedheader-tags-tagfont {
      display: flex;
      width: 70%;
      height: 3rem;
      line-height: 3rem;
      color: rgb(155, 155, 155);
      font-size: 1rem;
      font-weight: 500;
      text-align: start;
      border-bottom: rgb(190, 189, 189) solid 0.1rem;
    }

    .minfixedheader-tags-tagfont:hover {
      color: rgb(44, 44, 44);
      font-size: 1.1rem;
      font-weight: 700;
    }

    .minfixedheader-tags-mask {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: auto;
      flex-grow: 1;
      background: rgba(70, 69, 69, 0.5);
    }