@charset "utf-8";
/* CSS Document */


   /* ========= 所有自定义样式以 jy-home 开头 ========= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: 
    -apple-system, 
    BlinkMacSystemFont, 
    "Segoe UI", 
    Roboto, 
    "Helvetica Neue", 
    Arial, 
    "Hiragino Sans GB", 
    "PingFang SC", 
    "Microsoft YaHei", 
    "HarmonyOS Sans", 
    "Noto Sans SC", 
    sans-serif;
        
            background-color: #f8f9fc;
            color: #1e2a3a;
            line-height: 1.5;
        }

        .jy-home-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========= 顶部导航 (头部样式不改命名，保持原有) ========= */
        .top-bar {
            background-color: #ffffff;
            border-bottom: 1px solid #e9ecef;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0,0,0,0.02);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
        }

        .logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e2a3a;    padding-top: 10px;
        }
        .logo span {
            color: #5a6e7c;
            font-weight: 500;
        }

        /* 电脑端：菜单靠右侧显示 */
        .nav-menu-wrapper {
            display: flex;
            align-items: center;    padding: 27px 0px 20px 0px;
        }
        .nav-menu {
            display: flex;
            gap: 2.8rem;
            list-style: none;
            margin-right: 2.8rem;
        }
        .nav-menu li a {
            text-decoration: none;
            color: #2c3e44;
            font-weight: 500;
            transition: 0.2s;
            font-size: 16px;
        }
        .nav-menu li a:hover {
            color: #000000;
            border-bottom: 2px solid #a0aab5;
            padding-bottom: 4px;
        }

        /* 桌面端语言下拉 */
        .lang-dropdown {
            position: relative;
        }
        .lang-btn {
            background: #f1f3f5;
            border: 1px solid #dee2e6;
            padding: 8px 16px;
            border-radius: 40px;
            color: #2c3e44;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .lang-btn i {
            font-size: 0.8rem;
        }
        .lang-dropdown:hover .lang-menu {
            display: block;
        }
        .lang-menu {
            display: none;
            position: absolute;
            right: 0;
            top: 45px;
            background-color: white;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            width: 120px;
            list-style: none;
            z-index: 200;
            box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        }
        .lang-menu li {
            padding: 10px 16px;
            cursor: pointer;
            transition: 0.2s;
            color: #2d3e50;
            font-size: 0.9rem;
        }
        .lang-menu li:hover {
            background-color: #f1f5f9;
            color: #000;
        }

        /* ========= 移动端样式 ========= */
        .jy-home-mobile-controls {
            display: none;
            align-items: center;
            gap: 12px;
        }
        /* 移动端三横线按钮 (语言功能) */
        .jy-home-mobile-lang-btn {
            background: #f1f3f5;
            border: 1px solid #dee2e6;
            border-radius: 40px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #2c3e44;
            cursor: pointer;
            transition: 0.2s;
            position: relative;
        }
        .jy-home-mobile-lang-btn i:first-child {
            font-size: 1rem;
        }
        .jy-home-mobile-lang-btn span {
            font-weight: 500;
        }
        
        /* 移动端语言下拉菜单 - 在原位显示（绝对定位相对于按钮） */
        .jy-home-mobile-lang-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            width: 130px;
            list-style: none;
            box-shadow: 0 12px 28px rgba(0,0,0,0.12);
            z-index: 1001;
            display: none;
        }
        .jy-home-mobile-lang-menu li {
            padding: 12px 16px;
            cursor: pointer;
            transition: 0.2s;
            color: #2d3e50;
            font-size: 0.9rem;
            text-align: center;
        }
        .jy-home-mobile-lang-menu li:hover {
            background-color: #f1f5f9;
        }
        
        /* 移动端全宽菜单栏 (横排显示3个菜单: 汽车、选购流程、关于我们) */
        .jy-home-mobile-menu-bar {
            display: none;
            background: #ffffff;
            border-top: 1px solid #eef2f6;
            border-bottom: 1px solid #eef2f6;
            padding: 12px 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .jy-home-mobile-menu-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
            list-style: none;
            gap: 16px;
        }
        .jy-home-mobile-menu-items li {
            flex: 1;
            text-align: center;
        }
        .jy-home-mobile-menu-items li a {
            display: block;
            text-decoration: none;
            color: #2c3e44;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 0;
            transition: 0.2s;
        }
        .jy-home-mobile-menu-items li a:active {
            color: #000;
            background: #f0f2f5;
            border-radius: 30px;
        }
        
        @media (max-width: 992px) {
            .nav-menu-wrapper {
                display: none;
            }
            .jy-home-mobile-controls {
                display: flex;
            }
            .jy-home-mobile-menu-bar {
                display: block;
            }
            .jy-home-container {
                padding: 0 20px;
            }
        }

        /* ========= 轮播图 ========= */
        .jy-home-hero-swiper {
            width: 100%;
            height: 600px;
            position: relative;
        }
        .swiper-slide {
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .jy-home-hero-slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.35);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }
        .jy-home-hero-title {
            font-size: 3.2rem;
            font-weight: 800;
           
            margin-bottom: 1rem;
            color: #ffffff;
            text-shadow: 0 4px 18px rgba(0,0,0,0.3);
            animation: jy-home-fadeInUp 0.9s ease-out;
        }
        .jy-home-hero-subtitle {
            font-size: 1.4rem;
            font-weight: 400;
            color: #fefefe;
            text-shadow: 0 2px 12px rgba(0,0,0,0.3);
            animation: jy-home-fadeInUp 0.9s ease-out 0.2s both;
        }
        @keyframes jy-home-fadeInUp {
            from { opacity: 0; transform: translateY(28px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
            .jy-home-hero-swiper { height: 460px; }
            .jy-home-hero-title { font-size: 2.2rem; }
            .jy-home-hero-subtitle { font-size: 1rem; }
        }

        /* 通用区块 */
        .jy-home-section {
            margin: 70px 0;
        }
        .jy-home-section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 48px;
            color: #1e2a3a;
            letter-spacing: -0.3px;
        }
        .jy-home-section-title:after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            background: #b9c2cc;
            margin: 14px auto 0;
            border-radius: 4px;
        }

        /* 品牌网格 */
        .jy-home-brand-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px 20px;
            margin-bottom: 48px;
        }
        .jy-home-brand-item {
            background: #ffffff;
            border-radius: 8px;
            padding: 28px 12px;
            text-align: center;
            transition: all 0.25s ease;
            border: 1px solid #eef2f8;
            
        }
        .jy-home-brand-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.05);
            border-color: #cfdde8;
        }
        .jy-home-brand-link {
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .jy-home-brand-icon {
            font-size: 3rem;
            color: #4b5e6c;
            margin-bottom: 12px;
        }
        .jy-home-brand-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1f2f38;
        }
        .jy-home-more-brand-btn {
            text-align: center;
            margin-top: 20px;
        }
        .jy-home-btn-more {
            display: inline-block;
            background: transparent;
            border: 1.5px solid #b9c3ce;
            padding: 10px 36px;
            border-radius: 40px;
            color: #2c3e44;
            font-weight: 500;
            text-decoration: none;
            transition: 0.2s;
            font-size: 1rem;
        }
        .jy-home-btn-more:hover {
            background: #eef2f8;
            border-color: #8c9aa8;
        }

        /* 汽车列表样式 - 所有样式写在CSS中，图片使用img标签 */
        .jy-home-cars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px 24px;
        }
        .jy-home-car-card {
            background: #ffffff;
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.25s ease;
            border: 1px solid #eef2f8;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            position: relative;
        }
        .jy-home-car-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 28px -12px rgba(0,0,0,0.12);
            border-color: #cfdee9;
        }
        /* 图片容器相对定位，用于标签 */
        .jy-home-car-img-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 200px;
        }
        .jy-home-car-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .jy-home-car-card:hover .jy-home-car-img {
            transform: scale(1.03);
        }
        /* 热门标签样式 - 右上角 */
        .jy-home-hot-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #ff6b4a 0%, #e63e1f 100%);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 2;
            backdrop-filter: blur(2px);
        }
        .jy-home-recommend-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 2;
        }
        .jy-home-car-info {
            padding: 18px 18px 22px;
        }
        .jy-home-car-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1f2f3a;
        }
        .jy-home-car-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #6c7f8b;
            font-size: 0.85rem;
            border-top: 1px solid #eff3f8;
            padding-top: 12px;
            margin-top: 8px;
        }
        .jy-home-mileage i, .jy-home-year i {
            margin-right: 6px;
            color: #8f9eab;
        }
        .jy-home-car-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .jy-home-brand-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }
            .jy-home-cars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media (max-width: 640px) {
            .jy-home-brand-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .jy-home-section-title {
                font-size: 1.8rem;
            }
            .jy-home-car-img-wrapper {
                height: 180px;
            }
        }

        /* footer 样式不改动原有命名 */
        .footer {
            background-color: #ffffff;
            border-top: 1px solid #e9edf2;
            padding: 48px 0 28px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 32px;
        }
        .footer-left {
            max-width: 450px;
        }
        .footer-left p {
            margin: 10px 0;
            font-size: 0.9rem;
            color: #4a5b68;  font-weight: 500;
        }
        .footer-left .address {
            font-weight: 500;
            margin-bottom: 12px;
        }
        .footer-right {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;     align-items: center;
        }
        .social-link {
            color: #5f737f;
            font-size: 1.7rem;
            transition: 0.2s;
        }
        .social-link:hover {
            color: #1e2a3a;
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            font-size: 0.8rem;
            color: #7b8c99;
        }
        a {
            text-decoration: none;
        }




      /* 主容器 */
        .jy-aboutg-wrap {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 顶部导航 (头部样式不改命名) */
        .top-bar {
            background-color: #ffffff;
            border-bottom: 1px solid #eef2f8;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .top-bar .nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #0a1c2f;
        }
        .logo span {
            color: #e63e1f;
            font-weight: 600;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu li a {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            transition: 0.2s;
        }
        .nav-menu li a:hover, .nav-menu li a.active {
            color: #e63e1f;
        }
        .lang-dropdown {
            position: relative;
        }
        .lang-btn {
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            padding: 8px 16px;
            border-radius: 40px;
            color: #334155;
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .lang-menu {
            display: none;
            position: absolute;
            right: 0;
            top: 45px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            width: 110px;
            list-style: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .lang-menu li {
            padding: 8px 16px;
            cursor: pointer;
        }
        .lang-menu li:hover {
            background: #f8fafc;
        }
        .lang-dropdown:hover .lang-menu {
            display: block;
        }
        .mobile-toggle {
            display: none;
            background: #f1f5f9;
            border: none;
            padding: 8px 16px;
            border-radius: 40px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-menu, .lang-dropdown {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
        }

        /* 面包屑 */
        .jy-aboutg-breadcrumb {
            margin: 32px 0 24px;
            font-size: 0.85rem;
            color: #64748b;
        }
        .jy-aboutg-breadcrumb a {
            color: #64748b;
            text-decoration: none;
        }
        .jy-aboutg-breadcrumb a:hover {
            color: #e63e1f;
        }

        /* 页面头部 */
        .jy-aboutg-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .jy-aboutg-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0a1c2f;
            margin-bottom: 12px;
        }
        .jy-aboutg-header p {
            color: #5a6e7c;
            font-size: 1rem;
        }

        /* 左右错开布局 - 两列等宽 (公司简介) */
        .jy-aboutg-row {
            display: flex;
            width: 100%;
            min-height: 480px;
            margin-bottom: 80px;
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            border: 1px solid #eef2f8;
        }
        .jy-aboutg-row .jy-aboutg-image {
            width: 50%;
            overflow: hidden;
            background: #eef2f5;
        }
        .jy-aboutg-row .jy-aboutg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .jy-aboutg-row .jy-aboutg-image:hover img {
            transform: scale(1.02);
        }
        .jy-aboutg-row .jy-aboutg-content {
            width: 50%;
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .jy-aboutg-row .jy-aboutg-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #0a1c2f;
        }
        .jy-aboutg-row .jy-aboutg-content p {
            color: #334155;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 16px;
        }
        .jy-aboutg-stats {
            display: flex;
            gap: 32px;
            margin-top: 24px;
            flex-wrap: wrap;
        }
        .jy-aboutg-stat {
            text-align: center;
        }
        .jy-aboutg-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #e63e1f;
        }
        .jy-aboutg-stat-label {
            font-size: 0.85rem;
            color: #64748b;
        }

        /* 为什么选择 AutoAccess - 四列卡片网格 */
        .jy-aboutg-why-section {
            margin-bottom: 48px;
        }
        .jy-aboutg-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #0a1c2f;
            text-align: center;
        }
        .jy-aboutg-why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .jy-aboutg-why-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid #eef2f8;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .jy-aboutg-why-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: #e2e8f0;
        }
        .jy-aboutg-why-icon {
            width: 70px;
            height: 70px;
            background: #fff5f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .jy-aboutg-why-icon i {
            font-size: 2rem;
            color: #e63e1f;
        }
        .jy-aboutg-why-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0a1c2f;
        }
        .jy-aboutg-why-card p {
            font-size: 0.9rem;
            color: #5a6e7c;
            line-height: 1.6;
        }

        /* 全球地址区域 */
        .jy-aboutg-address-section {
            background: #ffffff;
            border-radius: 28px;
            padding: 40px;
            margin: 40px 0 60px;
            border: 1px solid #eef2f8;
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
        }
        .jy-aboutg-address-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #0a1c2f;
        }
        .jy-aboutg-address-title i {
            color: #e63e1f;
        }
        .jy-aboutg-address-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .jy-aboutg-address-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid #eef2f8;
            transition: 0.2s;
        }
        .jy-aboutg-address-card:hover {
            border-color: #e63e1f;
        }
        .jy-aboutg-address-country {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0a1c2f;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .jy-aboutg-address-country i {
            color: #e63e1f;
            font-size: 1rem;
        }
        .jy-aboutg-address-detail {
            font-size: 0.9rem;
            color: #475569;
            line-height: 1.6;
        }

        /* 底部CTA */
        .jy-aboutg-cta {
            background: linear-gradient(135deg, #0a1c2f 0%, #1a2e44 100%);
            border-radius: 28px;
            padding: 48px 32px;
            text-align: center;
            margin-bottom: 60px;
        }
        .jy-aboutg-cta h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
        }
        .jy-aboutg-cta p {
            color: #cbd5e6;
            margin-bottom: 28px;
        }
        .jy-aboutg-cta-btn {
            background: #e63e1f;
            color: white;
            border: none;
            padding: 12px 36px;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .jy-aboutg-cta-btn:hover {
            background: #c92a0a;
            transform: translateY(-2px);
        }

       
        /* 响应式 */
        @media (max-width: 900px) {
            .jy-aboutg-row {
                flex-direction: column !important;
                min-height: auto;
                margin-bottom: 48px;
            }
            .jy-aboutg-row .jy-aboutg-image,
            .jy-aboutg-row .jy-aboutg-content {
                width: 100%;
            }
            .jy-aboutg-row .jy-aboutg-image {
                min-height: 280px;
            }
            .jy-aboutg-row .jy-aboutg-content {
                padding: 32px 28px;
            }
            .jy-aboutg-row .jy-aboutg-content h2 {
                font-size: 1.4rem;
            }
            .jy-aboutg-why-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .jy-aboutg-address-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        @media (max-width: 640px) {
            .jy-aboutg-wrap {
                padding: 0 16px;
            }
            .jy-aboutg-header h1 {
                font-size: 1.8rem;
            }
            .jy-aboutg-stats {
                justify-content: center;
                gap: 24px;
            }
            .jy-aboutg-why-grid {
                grid-template-columns: 1fr;
            }
            .jy-aboutg-address-grid {
                grid-template-columns: 1fr;
            }
            .jy-aboutg-cta h3 {
                font-size: 1.3rem;
            }
        }











  /* 面包屑 */
        .jy-xglc-breadcrumb {
            margin: 32px 0 24px;
            font-size: 0.85rem;
            color: #64748b;
        }
        .jy-xglc-breadcrumb a {
            color: #64748b;
            text-decoration: none;
        }
        .jy-xglc-breadcrumb a:hover {
            color: #e63e1f;
        }

        /* 页面头部 */
        .jy-xglc-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .jy-xglc-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0a1c2f;
            margin-bottom: 12px;
        }
        .jy-xglc-header p {
            color: #5a6e7c;
            font-size: 1rem;
        }

        /* 对角线对齐布局 - 两列等宽，图片和内容区域自然形成对角线效果 */
        .jy-xglc-steps-container {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 60px;
        }

        /* 每个步骤行 - 两列等宽布局 */
        .jy-xglc-step-row {
            display: flex;
            width: 100%;
            min-height: 480px;
        }

        /* 奇偶行不同顺序实现对角线效果 */
        .jy-xglc-step-row:nth-child(odd) .jy-xglc-step-image {
            width: 50%;
        }
        .jy-xglc-step-row:nth-child(odd) .jy-xglc-step-content {
            width: 50%;
        }

        .jy-xglc-step-row:nth-child(even) {
            flex-direction: row-reverse;
        }
        .jy-xglc-step-row:nth-child(even) .jy-xglc-step-image {
            width: 50%;
        }
        .jy-xglc-step-row:nth-child(even) .jy-xglc-step-content {
            width: 50%;
        }

        /* 图片样式 - 无圆角，完全贴合 */
        .jy-xglc-step-image {
            overflow: hidden;
            background: #eef2f5;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
        }
        .jy-xglc-step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .jy-xglc-step-image:hover img {
            transform: scale(1.02);
        }

        /* 内容区域样式 */
        .jy-xglc-step-content {
            background: #ffffff;
            padding: 48px 40px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            border: 1px solid #eef2f8;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .jy-xglc-step-number {
            display: inline-block;
            background: #e63e1f;
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 30px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            width: fit-content;
        }
        .jy-xglc-step-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 28px;
            color: #0a1c2f;
        }
        .jy-xglc-step-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .jy-xglc-step-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .jy-xglc-step-item i {
            width: 24px;
            color: #e63e1f;
            font-size: 1rem;
            margin-top: 2px;
        }
        .jy-xglc-step-item span {
            flex: 1;
            color: #334155;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* 简单版横向徽章区域 */
        .jy-xglc-simple-section {
            background: #ffffff;
            border-radius: 28px;
            padding: 40px 32px;
            margin: 20px 0 48px;
            border: 1px solid #eef2f8;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .jy-xglc-simple-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0a1c2f;
        }
        .jy-xglc-simple-title i {
            color: #e63e1f;
        }
        .jy-xglc-simple-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .jy-xglc-step-badge {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 60px;
            padding: 8px 20px;
            font-size: 1rem;
            font-weight: 500;
            color: #334155;
            transition: all 0.2s;
            cursor: default;
        }
        .jy-xglc-step-badge i {
            margin-right: 6px;
            color: #e63e1f;
            font-size: 0.75rem;
        }
        .jy-xglc-step-badge:hover {
            background: #fff5f0;
            border-color: #e63e1f;
            transform: translateY(-2px);
        }

        /* 底部CTA */
        .jy-xglc-cta {
            background: linear-gradient(135deg, #0a1c2f 0%, #1a2e44 100%);
            border-radius: 28px;
            padding: 48px 32px;
            text-align: center;
            margin-bottom: 60px;
        }
        .jy-xglc-cta h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
        }
        .jy-xglc-cta p {
            color: #cbd5e6;
            margin-bottom: 28px;
        }
        .jy-xglc-cta-btn {
            background: #e63e1f;
            color: white;
            border: none;
            padding: 12px 36px;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .jy-xglc-cta-btn:hover {
            background: #c92a0a;
            transform: translateY(-2px);
        }

     /* 主容器 */
        .jy-xglc-wrap {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }



     /* 容器 */
        .jy-list-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }


     /* Banner区域 */
        .jy-list-banner {
            background: linear-gradient(135deg, #1a2a3a 0%, #0f1a24 100%);
            height: 300px;
            border-radius: 6px;
            margin: 30px 0 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .jy-list-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://picsum.photos/id/15/1600/400') center/cover no-repeat;
            opacity: 0.3;
            z-index: 0;
        }
        .jy-list-banner-content {
            position: relative;
            z-index: 1;
            color: white;
        }
        .jy-list-banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .jy-list-banner-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        @media (max-width: 768px) {
            .jy-list-banner { height: 220px; }
            .jy-list-banner-content h1 { font-size: 2rem; }
            .jy-list-banner-content p { font-size: 1rem; }
        }

        /* 筛选区域 */
        .jy-list-filter-section {
            background: #ffffff;
            border-radius: 6px;
            padding: 28px 24px;
            margin-bottom: 40px;
            border: 1px solid #eef2f8;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .jy-list-filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 24px;
            align-items: flex-end;
        }

.jy-list-filter-row:last-child {
    margin-bottom: 0!important;      /* 核心代码：最后一个元素不需要底部间距 */
}



        .jy-list-filter-item {
            flex: 1;
            min-width: 180px;
        }
        .jy-list-filter-item label {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            color: #4a5b68;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        .jy-list-filter-item select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #dee2e6;
            border-radius: 14px;
            font-size: 0.9rem;
            font-family: inherit;
            background: white;
            transition: 0.2s;
        }
        .jy-list-filter-item select:focus {
            outline: none;
            border-color: #9aaebf;
        }
        /* 区间输入框样式 - 单框带横线分隔 */
        .jy-list-range-input {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 14px;
            padding: 0 12px;
            transition: 0.2s;
        }
        .jy-list-range-input:focus-within {
            border-color: #9aaebf;
        }
        .jy-list-range-input input {
            flex: 1;
            padding: 12px 0;
            border: none;
            outline: none;
            font-size: 0.9rem;
            font-family: inherit;
            background: transparent;
            min-width: 0;
        }
        .jy-list-range-input input::placeholder {
            color: #b9c3ce;
        }
        .jy-list-range-input span {
            color: #9aaebf;
            font-weight: 500;
            font-size: 0.9rem;
        }
        /* 多选框组样式 */
        .jy-list-checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 6px;
        }
        .jy-list-checkbox-item {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            padding: 6px 12px;
          
         
          
            transition: all 0.2s;
            font-size: 0.85rem;
        }
        .jy-list-checkbox-item:hover {
            background: #eef2f8;
        }
        .jy-list-checkbox-item input {
            width: 16px;
            height: 16px;
            cursor: pointer;
            margin: 0;
            accent-color: #1e2a3a;
        }
        .jy-list-checkbox-item label {
            margin: 0;
            cursor: pointer;
            font-weight: normal;
            font-size: 0.8rem;
            color: #2c3e44;
        }
        .jy-list-filter-divider {
            width: 100%;
            height: 1px;
            background: #eef2f8;
            margin: 20px 0 16px;
        }
        .jy-list-filter-note {
            text-align: right;
            font-size: 0.8rem;
            color: #8c9aa8;
            margin-top: 16px;
        }

        /* 排序栏 - 静态展示 */
        .jy-list-sort-bar {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .jy-list-sort-badge {
            background: #ffffff;
            border: 1px solid #dee2e6;
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #2c3e44;
            cursor: default;
        }
        .jy-list-sort-badge.active {
            background: #1e2a3a;
            color: white;
            border-color: #1e2a3a;
        }

        /* 车辆网格 - 桌面端一排4个，移动端一排2个 */
        .jy-list-cars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 60px;
        }
        .jy-list-car-card {
            background: #ffffff;
            border-radius: 2px;
            overflow: hidden;
            transition: all 0.25s ease;
            border: 1px solid #eef2f8;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .jy-list-car-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        }
        .jy-list-car-img-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #eef2f5;
        }
        .jy-list-car-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .jy-list-car-card:hover .jy-list-car-img {
            transform: scale(1.03);
        }
        .jy-list-car-info {
            padding: 18px 16px 20px;
        }
        .jy-list-car-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1f2f3a;
        }
        .jy-list-car-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: #e63e1f;
            margin-bottom: 8px;
        }
        .jy-list-car-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.75rem;
            color: #6c7f8b;
            margin-top: 8px;
        }
        .jy-list-car-specs span i {
            margin-right: 4px;
            width: 14px;
        }
        .jy-list-car-badges {
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .jy-list-badge {
            display: inline-block;
            padding: 3px 10px;
            background: #f1f3f5;
            border-radius: 20px;
            font-size: 0.7rem;
            color: #4a5b68;
        }
        .jy-list-car-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* 移动端响应式 - 产品一排显示2个 */
        @media (max-width: 992px) {
            .jy-list-cars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .jy-list-filter-row {
                flex-direction: column;
                gap: 20px;
            }
            .jy-list-filter-item {
                width: 100%;
            }
        }
        @media (max-width: 640px) {
            .jy-list-cars-grid {
                gap: 16px;
            }
            .jy-list-container {
                padding: 0 16px;
            }
            .jy-list-car-img-wrapper {
                height: 180px;
            }
        }














     /* 面包屑 */
        .jy-cpxqa-breadcrumb {
            margin: 24px 0 20px;
            font-size: 0.85rem;
            color: #6c7f8b;
        }
        .jy-cpxqa-breadcrumb a {
            color: #6c7f8b;
            text-decoration: none;
        }
        .jy-cpxqa-breadcrumb a:hover {
            color: #1e2a3a;
        }

        /* 轮播图区域 */
        .jy-cpxqa-carousel-container {
            position: relative;
            margin-bottom: 32px;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }
        .jy-cpxqa-carousel-slides {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
        }
        .jy-cpxqa-carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            object-fit: cover;
        }
        .jy-cpxqa-carousel-slide.active {
            opacity: 1;
        }
        .jy-cpxqa-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jy-cpxqa-carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }
        .jy-cpxqa-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.2s;
        }
        .jy-cpxqa-dot.active {
            background: #ffffff;
            width: 28px;
            border-radius: 10px;
        }
        .jy-cpxqa-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.4);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: 0.2s;
        }
        .jy-cpxqa-carousel-arrow:hover {
            background: rgba(0,0,0,0.7);
        }
        .jy-cpxqa-carousel-arrow.prev {
            left: 16px;
        }
        .jy-cpxqa-carousel-arrow.next {
            right: 16px;
        }

        /* 产品信息卡片 */
        .jy-cpxqa-product-card {
            background: #ffffff;
            border-radius: 6px;
            padding: 32px;
            margin-bottom: 32px;
            border: 1px solid #eef2f8;
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
        }
        /* 标题行 - 左侧标题 + 右侧FOB按钮 */
        .jy-cpxqa-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 12px;
        }
        .jy-cpxqa-product-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e2a3a;
            margin: 0;
        }
        .jy-cpxqa-fob-btn {
            background: #1e2a3a;
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
            white-space: nowrap;
        }
        .jy-cpxqa-fob-btn:hover {
            background: #2d3e4e;
            transform: translateY(-2px);
        }
        .jy-cpxqa-product-price {
            font-size: 2rem;
            font-weight: 800;
            color: #e63e1f;
            margin: 16px 0 20px;
        }
        .jy-cpxqa-product-desc {
            color: #4a5b68;
            line-height: 1.6;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eef2f8;
        }


  /* 主容器宽度1000px，居中 */
        .jy-cpxqa-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }




        /* 参数网格 */
        .jy-cpxqa-specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px 24px;
        }
        .jy-cpxqa-spec-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
        }
        .jy-cpxqa-spec-item i {
            width: 28px;
            color: #6c7f8b;
        }
        .jy-cpxqa-spec-label {
            color: #6c7f8b;
            min-width: 80px;
        }
        .jy-cpxqa-spec-value {
            font-weight: 500;
            color: #1e2a3a;
        }

        /* 产品详情介绍模块 */
        .jy-cpxqa-detail-intro {
            background: #ffffff;
            border-radius: 6px;
            padding: 32px;
            margin-bottom: 48px;
            border: 1px solid #eef2f8;
        }
        .jy-cpxqa-detail-intro h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #eef2f8;
        }
        .jy-cpxqa-detail-intro p {
            color: #4a5b68;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .jy-cpxqa-detail-intro ul {
            margin-left: 24px;
            color: #4a5b68;
        }
        .jy-cpxqa-detail-intro li {
            margin: 8px 0;
        }

        /* 弹窗样式 */
        .jy-cpxqa-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: 0.2s;
        }
        .jy-cpxqa-modal-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        .jy-cpxqa-modal-content {
            background: white;
            border-radius: 6px;
            width: 90%;
            max-width: 500px;
            padding: 28px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .jy-cpxqa-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .jy-cpxqa-modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #8c9aa8;
        }
        .jy-cpxqa-modal-field {
            margin-bottom: 18px;
        }
        .jy-cpxqa-modal-field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: #4a5b68;
        }
        .jy-cpxqa-modal-field input, .jy-cpxqa-modal-field select {
            width: 100%;
            padding: 12px;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        .jy-cpxqa-modal-result {
            background: #f1f5f9;
            padding: 16px;
            border-radius: 6px;
            margin: 16px 0;
            text-align: center;
        }
        .jy-cpxqa-modal-result .price {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e63e1f;
        }
        .jy-cpxqa-modal-submit {
            width: 100%;
            background: #1e2a3a;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
        }

        /* footer */
        .footer {
            background-color: #ffffff;
            border-top: 1px solid #e9edf2;
            padding: 48px 0 28px;
            margin-top: 20px;
        }
        .footer .footer-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 32px;
        }
        .footer-left p {
            margin: 10px 0;
            font-size: 0.9rem;
            color: #4a5b68;
        }
        .footer-right {
            display: flex;
            gap: 28px;
        }
        .social-link {
            color: #5f737f;
            font-size: 1.5rem;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            font-size: 0.8rem;
            color: #7b8c99;
        }

        @media (max-width: 768px) {
            .jy-cpxqa-specs-grid {
                grid-template-columns: 1fr;
            }
            .jy-cpxqa-product-title {
                font-size: 1.5rem;
            }
            .jy-cpxqa-carousel-slides {
                height: 300px;
            }
            .jy-cpxqa-title-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .jy-cpxqa-fob-btn {
                white-space: normal;
            }
        }






