/* jysgs.html: page-specific styles extracted without reordering */

*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            overflow-x: hidden;
            width: 100%
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: #fff;
            color: #1f2937;
            line-height: 1.5;
            opacity: 0;
            animation: bodyFadeIn 0.6s ease forwards;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw
        }

        @keyframes bodyFadeIn {
            0% { opacity: 0 }
            100% { opacity: 1 }
        }

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        * { max-width: 100vw }

        a { color: inherit; text-decoration: none }
        ul, ol { list-style: none }
        button { font: inherit; cursor: pointer; outline: none }

        :root {
            --brand-navy: #2d3b6b;
            --brand-lime: #c0e17e;
            --brand-lime-dark: #a8c96a;
            --brand-orange: #606DAD;
            --bg-light: #f8f9fa
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem
        }

        #mainHeader .container { overflow: visible }

        @media(min-width:1280px) {
            .container { padding-left: 2rem; padding-right: 2rem }
        }

        /* ========== 导航 Nav ========== */
        #mainHeader .container,
        #mainHeader .header-inner { overflow: visible !important; }

        .header-nav {
            background-color: var(--brand-navy);
            color: white;
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease, background-color 0.3s ease
        }

        .header-nav.scrolled {
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
            background-color: rgba(26, 42, 78, 0.97);
            backdrop-filter: blur(6px)
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0.55rem;
            padding-bottom: 0.55rem;
            transition: padding 0.3s ease
        }

        .header-nav.scrolled .header-inner {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem
        }

        .nav-logo {
            height: 50px;
            width: auto;
            max-height: 55px;
            object-fit: contain;
            filter: brightness(1000%);
            transition: transform 0.3s ease, height 0.3s ease
        }

        .nav-logo:hover { transform: scale(1.05) }
        .header-nav.scrolled .nav-logo { height: 50px }

        @media(max-width:768px) {
            .nav-logo { height: 44px }
        }

        .nav-desktop { display: none }

        @media(min-width:768px) {
            .nav-desktop {
                display: flex;
                align-items: center;
                gap: 3.5rem;
                font-size: 1.125rem;
                font-weight: 300
            }
        }

        .nav-desktop>a,
        .nav-item>a {
            color: #e2e8f0;
            transition: color 0.25s;
            position: relative
        }

        .nav-desktop>a::after,
        .nav-item>a:not(.flex)::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -22px;
            width: 0;
            height: 4px;
            background: var(--brand-lime);
            transition: width 0.3s ease
        }

        .nav-desktop>a:hover::after,
        .nav-item>a:not(.flex):hover::after { width: 100% }

        .nav-desktop>a:hover,
        .nav-item>a:hover { color: #fff; font-weight: 500 }

        .nav-item { position: relative }

        .dropdown-menu {
            display: block;
            position: absolute;
            top: calc(100% + 60px);
            left: 0;
            width: 100vw;
            background-color: #5a6bb0;
            min-width: 200px;
            padding: 0.75rem 0;
            border-radius: 0.25rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            z-index: 50;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            pointer-events: none
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: -9999px;
            width: 9999px;
            height: 100%;
            background-color: #5a6bb0
        }

        .nav-item::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 60px
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto
        }

        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 0.6rem;
            color: #e2e8f0;
            font-weight: 400;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s, padding-left 0.25s
        }

        .dropdown-menu li a:hover {
            color: var(--brand-lime);
            padding-left: 1rem
        }

        .nav-item .dropdown-menu { z-index: 60 }

        .menu-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.75rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: transform 0.3s, color 0.2s
        }

        .menu-btn:hover { color: var(--brand-lime); transform: scale(1.1) }

        #mobileMenu {
            display: none;
            background-color: var(--brand-navy);
            padding: 1rem 1.5rem 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideDown 0.3s ease
        }

        @keyframes slideDown {
            0% { opacity: 0; max-height: 0 }
            100% { opacity: 1; max-height: 600px }
        }

        #mobileMenu.active { display: block }

        #mobileMenu a {
            display: block;
            padding: 0.9rem 0;
            color: #e2e8f0;
            font-size: 1.2rem;
            transition: color 0.2s, padding-left 0.2s
        }

        #mobileMenu a:hover { color: var(--brand-lime); padding-left: 0.5rem }

        .mobile-dropdown-content {
            display: none;
            padding-left: 1.2rem;
            animation: slideDown 0.25s ease
        }

        .mobile-dropdown-content a {
            font-size: 0.9rem;
            padding: 0.4rem 0;
            color: #b0c4de
        }

        .mobile-dropdown-content a:hover { color: var(--brand-lime) }
        .mobile-dropdown-toggle.active+.mobile-dropdown-content { display: block }

        .nav-subtitle-bar {
            display: none;
            background-color: #5a6bb0;
            color: #e2e8f0;
            padding: 0.75rem 0;
            border-top: 1px solid rgba(192, 225, 126, 0.2);
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 0.05em
        }

        .nav-subtitle-bar .subtitle-inner {
            width: 100%;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
            text-align: left
        }

        @media(min-width:1280px) {
            .nav-subtitle-bar .subtitle-inner { padding-left: 2rem; padding-right: 2rem }
        }

        @media(min-width:768px) {
            .nav-subtitle-bar { display: block }
        }

        /* ========== Banner ========== */
        .jys-banner {
            position: relative;
            width: 100%;
            height: 600px;
            background-size: cover;
            background-position: center;
            background-image: linear-gradient(180deg, rgba(45, 59, 107, 0.20) 0%, rgba(45, 59, 107, 0.15) 100%), url('../../images/jysgcbanner.jpg');
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            color: #fff;
            overflow: hidden
        }

        .jys-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--brand-lime), transparent);
            opacity: 0.6
        }

        .jys-banner .banner-inner {
            position: relative;
            z-index: 2;
            animation: bannerFadeUp 0.8s ease forwards;
            text-align: left;
            padding: 0 1rem;
        }

        @media(min-width:1280px) {
            .jys-banner .banner-inner { padding-left: 2rem; padding-right: 2rem; }
        }

        @keyframes bannerFadeUp {
            0% { opacity: 0; transform: translateY(30px) }
            100% { opacity: 1; transform: translateY(0) }
        }

        .jys-banner .banner-tag {
            display: inline-block;
            background: rgba(96, 109, 173, 0.85);
            color: #fff;
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            padding: 0.35rem 1.4rem;
            border-radius: 3px;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .jys-banner .banner-accent-line {
            width: 211px;
            height: 8px;
            background: var(--brand-lime);
            margin: 1rem 0;
            border-radius: 2px;
        }

        .jys-banner .banner-heading {
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 0.06em;
            color: #fff;
            line-height: 1.3;
        }

        .jys-banner .banner-heading strong {
            font-weight: 600;
        }

        .jys-banner .banner-subtitle {
            font-size: 1.05rem;
            font-weight: 300;
            color: rgba(255,255,255,0.85);
            letter-spacing: 0.06em;
            line-height: 1.6;
            margin-top: 0.5rem;
        }

        @media(max-width:768px) {
            .jys-banner {
                height: 380px;
                justify-content: flex-start;
            }
            .jys-banner .banner-inner { padding-left: 1rem; padding-right: 1rem }
            .jys-banner .banner-heading { font-size: 1.5rem }
            .jys-banner .banner-subtitle { font-size: 0.8rem }
            .jys-banner .banner-tag { font-size: 0.65rem }
            .jys-banner .banner-accent-line { width: 80px; margin: 1rem 0; }
        }

        /* ========== 交钥匙工程内容 ========== */

        /* ========== CTA ========== */
        .team-cta-section {
            background: linear-gradient(90deg, #606DAD 0%, #2D3B6B 100%);
            height: 169px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
        }

        .team-cta-card {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            width: 100%;
            height: 100%;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .team-cta-card .cta-image {
            flex: 0 0 164px;
            width: 164px;
            height: 164px;
            left: 28%;
            border-radius: 50%;
            overflow: hidden;
            background: #eef1fa;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            margin-top: -20px;
            margin-bottom: 40px;
        }

        .team-cta-card .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .team-cta-card .cta-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0.5rem 0;
            z-index: 2;
            text-align: center;
        }

        .team-cta-card .cta-content h2 {
            font-size: 1.3125rem;
            font-weight: 400;
            color: #fff;
            letter-spacing: 0.04em;
            margin-bottom: 0.3rem;
            line-height: 1.6;
        }

        .team-cta-card .cta-content .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 6rem;
            font-size: 1rem;
            font-weight: 400;
            color: var(--brand-navy);
            background: var(--brand-lime);
            letter-spacing: 0.16em;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            align-self: center;
            border-radius: 2px;
        }

        .team-cta-card .cta-content .cta-btn:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            gap: 0.8rem;
        }

        .team-cta-card .cta-content .cta-btn svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }

        .team-cta-card .cta-content .cta-btn:hover svg { transform: translateX(4px); }

        @media(max-width:992px) {
            .team-cta-section { height: auto; min-height: 169px; padding: 0.5rem 0; }
            .team-cta-card { gap: 1.8rem; padding: 0 1rem; }
            .team-cta-card .cta-image {
                flex: 0 0 130px; width: 130px; height: 130px;
                margin-top: -15px; margin-bottom: -15px;
            }
            .team-cta-card .cta-content h2 { font-size: 1.1rem; line-height: 1.5; }
            .team-cta-card .cta-content .cta-btn { font-size: 0.9rem; padding: 0.4rem 2.5rem; letter-spacing: 0.12em; }
        }

        @media(max-width:768px) {
            .team-cta-section { height: auto; min-height: 140px; padding: 0.8rem 0; }
            .team-cta-card { flex-direction: row; gap: 1rem; flex-wrap: nowrap; padding: 0 0.75rem; align-items: center; }
            .team-cta-card .cta-image { flex: 0 0 90px; width: 90px; height: 90px; margin-top: -8px; margin-bottom: -8px; left: auto; }
            .team-cta-card .cta-content { padding: 0; align-items: center; text-align: center; }
            .team-cta-card .cta-content h2 { font-size: 0.9rem; line-height: 1.4; margin-bottom: 0.2rem; letter-spacing: 0.03em; }
            .team-cta-card .cta-content .cta-btn { font-size: 0.7rem; padding: 0.25rem 1rem; letter-spacing: 0.06em; gap: 0.3rem; }
            .team-cta-card .cta-content .cta-btn svg { width: 12px; height: 12px; }
        }

        @media(max-width:576px) {
            .team-cta-section { min-height: 120px; padding: 0.5rem 0; }
            .team-cta-card { gap: 0.6rem; padding: 0 0.5rem; }
            .team-cta-card .cta-image { flex: 0 0 70px; width: 70px; height: 70px; margin-top: -5px; margin-bottom: -5px; left: auto; }
            .team-cta-card .cta-content h2 { font-size: 0.75rem; line-height: 1.3; margin-bottom: 0.1rem; letter-spacing: 0.02em; }
            .team-cta-card .cta-content .cta-btn { font-size: 0.55rem; padding: 0.15rem 0.7rem; letter-spacing: 0.04em; gap: 0.15rem; }
            .team-cta-card .cta-content .cta-btn svg { width: 9px; height: 9px; }
        }

        @media(max-width:400px) {
            .team-cta-card .cta-image { flex: 0 0 55px; width: 55px; height: 55px; margin-top: -3px; margin-bottom: -3px; }
            .team-cta-card .cta-content h2 { font-size: 0.65rem; line-height: 1.2; }
            .team-cta-card .cta-content .cta-btn { font-size: 0.5rem; padding: 0.1rem 0.5rem; letter-spacing: 0.03em; }
            .team-cta-card .cta-content .cta-btn svg { width: 8px; height: 8px; }
        }

        /* ========== Footer ========== */
        .footer-link {
            transition: color 0.25s, padding-left 0.25s;
            display: inline-block;
            font-weight: 300
        }

        .footer-link:hover { color: var(--brand-navy); padding-left: 3px }

        .footer-heading {
            color: var(--brand-navy);
            font-weight: 700;
            font-size: 1rem;
            position: relative;
            display: inline-block
        }

        .footer-heading>p { font-weight: 300 !important }

        .footer-heading::after {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background: var(--brand-lime);
            margin-top: 0.5rem;
            border-radius: 1px
        }

        .footer-logo {
            height: 60px;
            width: auto;
            max-height: 60px;
            object-fit: contain;
            transition: transform 0.3s
        }

        .footer-logo:hover { transform: scale(1.05) }

        .lxtext { font-weight: 300 !important; font-size: 0.875rem }

        @media(max-width:640px) { .footer-logo { height: 40px } }

        .social-icon-wrapper {
            position: relative;
            display: inline-block;
            cursor: pointer
        }

        .social-icon-wrapper svg {
            padding: 4px;
            transition: all 0.3s ease;
            border: 1px solid;
            border-radius: 50%
        }

        .social-icon-wrapper:hover svg { transform: scale(1.15) }

        .qrcode-popup {
            display: none;
            position: absolute;
            bottom: 130%;
            left: 50%;
            transform: translateX(-50%) scale(0.9);
            background: #fff;
            padding: 10px 10px 6px;
            border-radius: 10px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
            z-index: 100;
            min-width: 100px;
            text-align: center;
            border: 1px solid #f0f0f0;
            transition: transform 0.25s ease;
            transform-origin: bottom center
        }

        .qrcode-popup::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: #fff
        }

        .qrcode-popup img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            display: block;
            border-radius: 4px
        }

        .qrcode-popup .label {
            font-size: 11px;
            color: #4a5568;
            margin-top: 4px;
            font-weight: 500
        }

        .social-icon-wrapper:hover .qrcode-popup {
            display: block;
            transform: translateX(-50%) scale(1)
        }

        @media(max-width:640px) {
            .qrcode-popup img { width: 80px; height: 80px }
            .qrcode-popup { min-width: 80px; padding: 8px 8px 4px }
            .qrcode-popup .label { font-size: 10px }
        }

        .lang-switch-wrapper { position: relative; display: inline-block }

        .lang-toggle {
            background: none;
            border: none;
            color: inherit;
            padding: 0.25rem 0.5rem;
            cursor: pointer;
            font-size: 0.875rem;
            font-family: inherit;
            outline: none
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--brand-navy);
            min-width: 120px;
            padding: 0.5rem 0;
            border-radius: 0.25rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            pointer-events: none
        }

        .lang-switch-wrapper:hover .lang-dropdown {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto
        }

        .lang-option {
            display: block;
            padding: 0.5rem 1.5rem;
            color: #e2e8f0;
            font-size: 0.875rem;
            transition: background 0.25s, color 0.25s, padding-left 0.25s;
            text-align: right
        }

        .lang-option:hover { color: var(--brand-lime); padding-left: 2rem }
        .lang-option.active { color: var(--brand-lime); font-weight: 500 }

        @media(min-width:768px) {
            .lang-dropdown { background-color: #5a6bb0 }
            .lang-switch-wrapper::after {
                content: '';
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 10px
            }
        }

        .aos-init {
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            will-change: opacity, transform
        }

        .aos-animate { opacity: 1 }

        .aos-fade-up { transform: translateY(35px) }
        .aos-animate.aos-fade-up { transform: translateY(0) }
        .aos-fade-right { transform: translateX(-35px) }
        .aos-animate.aos-fade-right { transform: translateX(0) }

        ::-webkit-scrollbar { width: 6px }
        ::-webkit-scrollbar-track { background: #f1f1f1 }
        ::-webkit-scrollbar-thumb { background: #c4c4c4; border-radius: 3px }
        ::-webkit-scrollbar-thumb:hover { background: #a0a0a0 }

        .fixed-contact-btn {
            position: fixed;
            right: 3%;
            top: 80%;
            transform: translateY(-50%);
            z-index: 999;
            display: block;
            width: 117px;
            height: 55px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.15);
            border-radius: 8px 0 0 8px;
            overflow: hidden;
            background: #2d3b6b
        }

        .fixed-contact-btn img { width: 100%; height: 100%; object-fit: cover; display: block }

        .fixed-contact-btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: -4px 8px 20px rgba(0, 0, 0, 0.25)
        }

        @media(max-width:768px) {
            .fixed-contact-btn { width: 44px; height: 120px; display: none }
        }

        @media(max-width:480px) {
            .fixed-contact-btn { width: 36px; height: 100px; display: none }
        }

        @media(max-width:640px) {
            html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100% !important }
            .container { padding-left: 0.75rem !important; padding-right: 0.75rem !important; overflow: hidden !important }
        }

        .flex { display: flex }
        .inline-flex { display: inline-flex }
        .grid { display: grid }
        .hidden { display: none }
        .flex-col { flex-direction: column }
        .items-center { align-items: center }
        .justify-between { justify-content: space-between }
        .space-x-2>*+* { margin-left: 0.5rem }
        .space-x-4>*+* { margin-left: 1rem }
        .text-white { color: #fff }
        .mb-6 { margin-bottom: 1.5rem }
        .mb-12 { margin-bottom: 3rem }
        .mt-4 { margin-top: 1rem }
        .mt-6 { margin-top: 1.5rem }
        .p-6 { padding: 1.5rem }
        .p-8 { padding: 2rem }
        .py-16 { padding-top: 4rem; padding-bottom: 4rem }
        .border-t { border-top: 1px solid }
        .border-gray-100 { border-color: #f3f4f6 }
        .border-gray-200 { border-color: #e5e7eb }
        .rounded-lg { border-radius: 0.5rem }
        .bg-white { background-color: #fff }
        .bg-gray-100 { background-color: #f3f4f6 }
        .bg-light { background-color: var(--bg-light) }
        .bg-navy { background-color: var(--brand-navy) }
        .text-gray-400 { color: #9ca3af }
        .text-gray-500 { color: #6b7280 }
        .text-gray-600 { color: #4b4b4b }
        .text-gray-700 { color: #374151 }
        .text-navy { color: #606DAD }
        .text-sm { font-size: 1rem; line-height: 1.8 }
        .text-xs { font-size: 0.875rem; line-height: 1rem }
        .font-light { font-weight: 300 }
        .font-medium { font-weight: 500 }
        .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) }
        .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) }
        .space-y-3>*+* { margin-top: 0.85rem }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media(min-width:768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
            .md\:hidden { display: none }
            .md\:flex-row { flex-direction: row }
            .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr) }
            .md\:mt-0 { margin-top: 0 }

        .copyright-bar {
            display: flex;
            flex-direction: column;
            border-top: 1px solid #e5e7eb;
            padding-top: 2rem;
            font-size: 0.875rem;
            color: #9ca3af;
        }
        .copyright-bar .copyright-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        @media(min-width:768px) {
            .copyright-bar {
                flex-direction: row;
                justify-content: space-between;
            }
            .copyright-bar .copyright-links {
                margin-top: 0;
            }
        }

        .md-hidden { display: inline-block }
        @media(min-width:768px) {
            .md-hidden { display: none !important }
        }

/* 服务流程 Tab 样式 */
        .jys-flow {
            padding: 0 0 5rem;
            background: #f5f5f5;
        }

        .jys-flow .flow-intro-wrap {
            background: #fff;
            padding: 7rem 0 4rem;
        }

        .jys-flow .flow-intro {
            font-size: 0.95rem;
            color: #4b4b4b;
            line-height: 2.2;
            font-weight: 300;
            letter-spacing: 0.03em;
            max-width: 100%;
        }

        .jys-flow .flow-intro p {
            margin-bottom: 1rem;
        }

        .jys-flow .flow-title {
            font-size: 2rem;
            font-weight: 400;
            color: #2D3B6B;
            letter-spacing: 5px;
            margin-bottom: 1.5rem;
            margin-top: 3rem;
        }

        .jys-flow .flow-tabs {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 1px solid #e8e8e8;
            margin-bottom: 2.5rem;
        }

        .jys-flow .flow-step {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            cursor: pointer;
            color: #2D3B6B;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.04em;
        }

        .jys-flow .flow-step .step-arrow {
            margin-left: 1rem;
            color: #ccc;
            font-size: 1.2rem;
        }

        .jys-flow .flow-step:last-child .step-arrow {
            display: none;
        }

        .jys-flow .flow-step .step-svg {
            width: 28px;
            height: 28px;
            margin-right: 0.6rem;
            flex-shrink: 0;
        }

        .jys-flow .flow-step:hover:not(.active) {
            color: #666;
            border-bottom-color: #e5e7eb;
        }

        .jys-flow .flow-step.active {
            color: #2D3B6B;
            font-weight: 700;
            border-bottom-color: #AFDF71;
        }

        .jys-flow .flow-content-wrapper {
            position: relative;
            padding-top: 2rem;
        }

        .jys-flow .flow-panel {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
            animation: flowFadeIn 0.35s ease;
        }

        .jys-flow .flow-panel.active {
            display: grid;
        }

        @keyframes flowFadeIn {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .jys-flow .flow-panel .panel-text {
            font-size: 0.95rem;
            color: #4b4b4b;
            line-height: 2;
            font-weight: 300;
            letter-spacing: 0.03em;
        }

        .jys-flow .flow-panel .panel-text p {
            margin-bottom: 1.2rem;
        }

        .jys-flow .flow-panel .panel-text .panel-highlight {
            color: #606DAD;
            font-weight: 500;
        }

        .jys-flow .flow-panel .panel-image {
            border-radius: 8px;
            overflow: hidden;
            /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
            max-height: 380px;
            position: relative;
        }

        .jys-flow .flow-panel .panel-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(93.23deg, #F5F5F5 13.46%, rgba(245, 245, 245, 0) 78.37%);
            z-index: 1;
            pointer-events: none;
        }

        .jys-flow .flow-panel .panel-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            position: relative;
            z-index: 0;
        }

        @media(max-width:768px) {
            .jys-flow {
                padding: 0 0 3rem;
            }
            .jys-flow .flow-title {
                font-size: 1.2rem;
            }
            .jys-flow .flow-intro-wrap {
                padding: 4rem 0 2rem;
            }
            .jys-flow .flow-tabs {
                flex-direction: column;
                border-bottom: none;
                border-left: 3px solid #e8e8e8;
                margin-bottom: 1.5rem;
            }
            .jys-flow .flow-step {
                padding: 0.7rem 1rem;
                font-size: 0.88rem;
                border-bottom: none;
                border-left: 3px solid transparent;
                margin-left: -3px;
            }
            .jys-flow .flow-step.active {
                border-left-color: #AFDF71;
                border-bottom: none;
            }
            .jys-flow .flow-step .step-arrow {
                display: none;
            }
            .jys-flow .flow-step .step-svg {
                width: 22px;
                height: 22px;
                margin-right: 0.5rem;
            }
            .jys-flow .flow-content-wrapper {
                padding-top: 1rem;
            }
            .jys-flow .flow-panel {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .jys-flow .flow-panel .panel-text {
                font-size: 0.85rem;
                line-height: 1.8;
            }
            .jys-flow .flow-panel .panel-image {
                max-height: 240px;
            }
        }
