        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            padding: 0px;
            background-color: #f5f7fa;
            color: #333;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
        }
        

        
        .notice-container {
            background-color: #ffffff;
            color: #8b0e10;
            border-radius: 15px;
            padding: 5px 25px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .notice-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .fixed-text {
            font-weight: bold;
            padding-right: 5px;
            flex-shrink: 0;
            font-size: 22px;
        }
        
        .scroll-wrapper {
            flex: 1;
            overflow: hidden;
            position: relative;
        }
        
        .scroll-links {
            display: inline-flex;
            position: relative;
        }
        
        .link-item {
            margin-right: 40px;
            text-decoration: none;
            color: #454545;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
            font-size: 20px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .link-item:hover {
            color: #ffeb3b;
            text-decoration: underline;
            transform: translateY(-2px);
        }
        
        .link-item::after {
            content: "•";
            position: absolute;
            right: -25px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 24px;
        }
        
        .link-item:last-child::after {
            display: none;
        }
        
        .color-options {
            margin-top: 30px;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .color-options h3 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 20px;
        }
        
        .color-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .color-btn {
            padding: 10px 18px;
            border: none;
            border-radius: 6px;
            color: white;
            cursor: pointer;
            transition: transform 0.2s;
            font-size: 16px;
        }
        
        .color-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .instructions {
            margin-top: 25px;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            line-height: 1.6;
        }
        
        .instructions h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .instructions p {
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        @media (max-width: 600px) {
            .notice-container {
                padding: 12px 18px;
            }
            
            .fixed-text {
                font-size: 18px;
                padding-right: 15px;
            }
            
            .link-item {
                font-size: 17px;
                margin-right: 25px;
            }
            
            .link-item::after {
                right: -18px;
                font-size: 20px;
            }
            
            .color-btn {
                padding: 8px 14px;
                font-size: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .notice-container {
                padding: 10px 15px;
            }
            
            .fixed-text {
                font-size: 16px;
                padding-right: 12px;
            }
            
            .link-item {
                font-size: 15px;
                margin-right: 20px;
            }
            
            h1 {
                font-size: 24px;
            }
        }