/* 确保通知栏始终在页面顶部 */
	  .scrolling-notification-bar {
	    position: relative;
	    top: 0px;
	    left: 0;
	    width: 100%;
	    background-color: #FFFFFF;
	    color: #FA5151;
	    text-align: center;
	    padding: 6px 0;
	    z-index: 1000;
	  }
	  .scrolling-text-wrapper {
	    overflow: hidden;
	    white-space: nowrap;
	  }
	  .scrolling-text {
	    display: inline-block;
	    padding-left: 100%; /* 初始位置在外边 */
	    animation: scrollText 15s linear infinite;
	  }
	  @keyframes scrollText {
	    from {
	      transform: translateX(0);
	    }
	    to {
	      transform: translateX(-100%);
	    }
	  }
