.marquee-container {
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
            padding: 10px 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
            padding-left: 98%; /* 初始位置在屏幕右侧 */
            height:35px;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-101%); }
        }

         .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        .marquee-item {
            text-decoration: none;
            color: #d90429;
            margin-right: 40px;
            font-size: 18px;
            transition: color 0.3s;
            padding: 5px 0;
        }

        .marquee-item:hover {
            color: #d90429;
            font-weight:bold;
            font-size: 20px;
        }
        
        .marquee-item:visited {
            color: #232323 ;	
        }