.xh-notice {
  width: 100%;
  height: 72px;
  padding: 0 20px 0 30px;
  background-color: #F3F6FD;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;

  &-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    margin-left: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    // overflow: hidden;

    &-marquee {
      overflow: hidden;
      height: 72px;
      line-height: 72px;
      flex-shrink: 0;

      &-text {
        font-size: 26px;
        color: #212121;
        white-space: nowrap;
        // display: inline-block;
      }
    }
  }

  &-right {
    font-size: 24px;
    color: var(--color-primary-secondary);
    display: flex;
    align-items: center;
  }
}