  /* 信息展示容器 - 清新风格 */
  .info-bar {
      color: rgba(255, 255, 255, 0.8);
      display: flex;
      align-items: center;
      flex: 1px;
      backdrop-filter: blur(5px);
      position: relative;
      overflow: hidden;
      max-width: 1400px;
      margin: 0 auto;
  }
 


  /* 通知区域样式调整 */
  .notification {
      width: 100%;
      overflow: hidden;
      position: relative;
      z-index: 1;
  }
@keyframes smooth-scroll {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateY(-150%);
    opacity: 0;
  }
}
  .notification-icon {
      color:  var(--sizeColor); 
      margin-right: 12px;
      flex-shrink: 0;
  }

  .notification-text {
      overflow: hidden;
      white-space: nowrap;
      text-align: center;
     animation: smooth-scroll 15s linear infinite;
  will-change: transform; /* 提升性能 */
  backface-visibility: hidden; /* 消除闪烁 */
      font-size: 14px;
      font-weight: 500;
  }

  .notification-text>a {
      color: #000000;
  }

  .notification-text>a:hover {
      color: var(--sizeColor);
  }

  /* 滚动动画 */
  @keyframes scroll {
      0% {
          transform: translateY(100%);
      }

      100% {
          transform: translateY(-150%);
      }
  }

  /* 微交互效果 */
  .notification-text:hover {
      color: var(--sizeColor);
      /* transform: translateY(-1px); */
      transition: all 0.3s ease; animation-play-state: paused;
  }

  /* 天气组件 */
  .time-weather {
      display: flex;
      width: 140px;
      /* height: 100%; */
      flex-direction: column-reverse;
  }





 