.navigator {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding: 16px 24px;
            background: white;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
            width: calc(100% - 80px);
            /* margin: 40px auto 0; */
            max-width: 1280px;
        }
        .navigator a {
            text-decoration: none;
            color: #1e40af;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid transparent;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }
        .navigator a:hover {
            background: #eff6ff;
            border-color: #bfdbfe;
            color: #1d4ed8;
        }
        .navigator a:first-child {
            background: #f8fafc;
            color: #475569;
        }
        .navigator a:first-child:hover {
            background: #e2e8f0;
            color: #1e3a8a;
        }