.notice-bar__panel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.07);
    margin: 0;
    padding: 10px;
    border-radius: 12px;
    box-sizing: border-box;
    .notice-bar__panel__item-img {
        width: 46px;
        margin-right: 7px;
    }
    .notice-bar__panel__item-more {
      width: 60px;
      height: 100%;
      //background: pink;
      cursor: pointer;

      &-more {
        flex-shrink: 0;
        cursor: pointer;
        display: flex;
        justify-content: end;
        align-items: center;

        &-text {
          font-weight: 500;
          font-size: 11px;
          color: #666666;
          margin-right: 2px;
        }
        &-img {
          width: 5px;
          height: 10px;
        }
      }
    }
    .notice-bar__panel__item-list {
        width: calc(100% - 53px - 60px);
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        border-left: 1px solid #f1f1f1;
        padding-left: 10px;
        position: relative;
        overflow: hidden;

        .notice-bar__panel__item-loop {
            width: 100%;
            position: relative;
            overflow: hidden; // 确保超出部分不显示
            height: 20px; // 设置合适的高度
          }

          .notice-bar__panel__item-loop > div {
            position: absolute; // 绝对定位
            width: 100%;
            height: 20px;
            animation: scrollUp 4s linear infinite; // 动画持续时间和类型
          }

          @keyframes scrollUp {
            0% {
              transform: translateY(100%); // 从底部开始
            }
            100% {
              transform: translateY(-200%); // 滚动到顶部
            }
          }


    }


}
//动画
.anim {
  transition: all 0.5s;
  margin-top: -24px;
}
