body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    background: #fdfaf6;
}

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

.topbar {
    background: #000;
    color: #fff;
    font-size: 16px;
    padding: 0 32px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar .left,
.topbar .right {
    display: flex;
    align-items: center;
}

.topbar .left span {
    margin-right: 24px;
    display: flex;
    align-items: center;
}

.topbar .left svg,
.topbar .right svg {
    margin-right: 6px;
}

.topbar .right a {
    color: #fff;
    margin: 0 6px;
    text-decoration: none;
    font-size: 18px;
}

.topbar .right a:hover {
    color: #ed1c24;
}

.header-bar {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 246, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
    z-index: 1001;
}

header.sticky .header-bar {
    padding: 12px 0;
    transition: padding 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header.sticky .header-logo img {
    height: 60px;
    transition: height 0.3s ease;
}

header.sticky .header-menu li {
    font-size: 14px;
    transition: font-size 0.3s ease;
}

header.sticky .made-canada-btn {
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-placeholder {
    width: 100%;
    background: transparent;
    height: 0;
}

/* 确保header容器在吸顶时正确显示 */
header {
    position: relative;
    z-index: 1000;
}

/* 吸顶时的响应式调整 */
@media (max-width: 900px) {
    header.sticky .header-bar {
        padding: 8px 0;
    }

    header.sticky .header-logo img {
        height: 50px;
    }

    header.sticky .header-menu li {
        font-size: 12px;
    }

    header.sticky .made-canada-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    header.sticky {}

    header.sticky .header-bar {
        padding: 6px 0;
    }

    header.sticky .header-logo img {
        height: 45px;
    }

    header.sticky .header-menu ul {
        gap: 12px;
    }

    header.sticky .header-menu li {
        font-size: 11px;
    }

    header.sticky .made-canada-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
}
.header-logo img {
    height: 70px;
    margin-left: 60px;
}

.header-menu {
    flex: 1;
    display: flex;
    margin-left: 40px;
    justify-content: center;
}

.header-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu li {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    display: flex;
    align-items: center;
    position: relative;
}

.header-menu li.active,
.header-menu li.active a {
    color: #ed1c24;
}

.header-menu li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.header-menu li .plus {
    font-size: 12px;
    margin-left: 8px;
    color: #111;
    font-weight: normal;
    cursor: pointer;
}

.header-btn {
    margin-right: 60px;
}

.made-canada-btn {
    background: #fff;
    border-radius: 28px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.made-canada-btn .flag {
    font-size: 20px;
    margin-right: 8px;
}

/* 下拉菜单样式 */
.header-menu li {
    position: relative;
}

.header-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100px;
    background: #fff;
    box-shadow: 0 0 0 2px #ed1c24, 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 18px 28px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.header-menu li.show>.sub-menu,
.header-menu li:hover>.sub-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.25s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-menu .sub-menu li {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #111;
    margin: 22px 0;
    text-transform: none;
    letter-spacing: 0;
}

.header-menu .sub-menu li:first-child {
    margin-top: 0;
}

.header-menu .sub-menu li:last-child {
    margin-bottom: 0;
}

.header-menu .sub-menu li a {
    color: #111;
    text-decoration: none;
    padding: 0;
    transition: color 0.2s;
}

.header-menu .sub-menu li a:hover {
    color: #ed1c24;
}

@media (max-width: 900px) {
    .header-bar {
        padding: 10px 0;
    }

    .header-logo {
        justify-content: space-around
    }

    .header-logo img,
    .header-btn {
        margin: 0;
    }

    .header-menu ul {
        gap: 18px;
        font-size: 12px;
    }

    .made-canada-btn {
        font-size: 15px;
        padding: 8px 16px;
    }

    .header-menu .sub-menu {
        left: 50%;
        transform: translateX(-50%);
        min-width: 180px;
        padding: 12px 10px;
    }

    .header-menu .sub-menu li {
        font-size: 12px;
        margin: 14px 0;
    }
}


/* 品牌欢迎模块 */
.intro-section {
    background: #0d1526;
    padding: 1% 16%;
    color: #fff;
    width: 68%;
}

.intro-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-image {
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image img {
    width: auto;
    height: 100%;
    max-width: 510px;
    border-radius: 8px;
    display: block;
}

.intro-content {
    flex: 1;

    max-width: 700px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content p {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.5;
    font-family: 'Times New Roman', Times, serif;
}

.intro-content .highlight {
    color: #ed1c24;
}

@media (max-width: 1100px) {
    .intro-container {
        flex-direction: column;
        gap: 32px;
    }

    .intro-content {
        max-width: 98vw;
    }

    .intro-image {
        max-width: 98vw;
    }

    .intro-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 700px) {


    .intro-content p {
        font-size: 1rem;
    }

    .intro-image img {
        max-width: 80%;
    }
}




/* 品牌介绍模块 */
.brand-section {
    background: #fff;
    padding: 64px 0 32px 0;
    width: 68%;
    padding: 8% 16%;
}

.brand-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20%;
    max-width: 1400px;
    flex-wrap: wrap;
    margin: 10px auto;
}

.brand-images {
    position: relative;
    width: 50%;
    height: 420px;
}

.brand-img1 {
    width: 500px;
    height: auto;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.13);
    position: absolute;
    top: -10%;
    z-index: 1;
}

.brand-img2 {
    width: 500px;
    height: auto;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.596);
    position: absolute;
    left: 30%;
    top: 50%;
    z-index: 1;
}

.brand-content {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
    color: #222;
    line-height: 1.7;
    font-family: 'DM Sans', Arial, sans-serif;
}

.brand-content p {
    margin: 0 0 32px 0;
    font-size: 13px;
    text-align: left;
}

.brand-advantages {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5%;
    margin-top: 0;
    width: 100%;
}

.brand-adv {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 30%;
}

.brand-adv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4D5058;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    margin-bottom: 16px;
}

.brand-adv-title {
    color: #ed1c24;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
@media (max-width: 1100px) {
    .brand-main {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .brand-images {
        width: 320px;
        height: 380px;
    }

    .brand-img1,
    .brand-img2 {
        width: 260px;
    }

    .brand-img2 {
        top: 140px;
    }

    .brand-content {
        max-width: 90%;
        font-size: 12px;
        padding: 5%;
    }

    .brand-advantages {
        gap: 32px;
        flex-wrap: nowrap;

    }

    .brand-adv {
        width: 30%;
    }
}

@media (max-width: 700px) {
    .brand-main {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .brand-images {
        position: none;

        width: 220px;
        height: 240px;
    }

    .brand-img1,
    .brand-img2 {
        width: 140px;
    }

    .brand-img2 {
        top: 60px;
    }

    .brand-content {
        width: 100%;

        font-size: 12px;
    }

    .brand-advantages {
        align-items: center;
        gap: 18px;
    }

    .brand-adv-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .brand-adv-title {
        font-size: 15px;
    }
}
/* 公司简介模块 */
.about-section {
    background: #fff;
    padding: 64px 0 16px 0;
}

.about-container {
    width: 68%;
    padding: 0% 16%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-content {
    flex: 1;
    /* min-width: 320px; */
    max-width: 700px;
    text-align: left;
}

.about-content h2 {
    font-size: 32px;
    color: #ed1c24;
    margin-bottom: 24px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}

.about-content p {
    font-size: 18px;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.7;
    font-family: 'DM Sans', Arial, sans-serif;
}

.about-image {
    /* min-width: 300px; */
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.alternating-layout .about-section:nth-child(even) .about-container {
    flex-direction: row-reverse;
}
.about-image img {
    width: 100%;
    min-width: 250px;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    display: block;
}
@media (max-width: 1100px) {
    .about-container {
        flex-direction: column;
        gap: 32px;
    }

    .about-content {
        max-width: 98vw;
    }

    .about-image {
        max-width: 98vw;
    }
}

@media (max-width: 700px) {
    .about-section {
        padding: 32px 0 16px 0;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-image img {
        max-width: 98vw;
    }
}
/* Our Mission 模块 */
.mission-section {
    background: #fff;
    padding: 64px 0 32px 0;
}

.mission-container {
    width: 68%;
    padding: 5% 16%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-image {
    /* min-width: 320px; */
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    display: block;
}

.mission-content {
    flex: 1;
    /* min-width: 320px; */
    max-width: 700px;
    text-align: left;
}

.mission-content h2 {
    font-size: 32px;
    color: #ed1c24;
    margin-bottom: 24px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}

.mission-content p {
    font-size: 18px;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.7;
    font-family: 'DM Sans', Arial, sans-serif;
}
@media (max-width: 1100px) {
    .mission-container {
        flex-direction: column;
        gap: 32px;
    }

    .mission-content {
        max-width: 98vw;
    }

    .mission-image {
        max-width: 98vw;
    }
}

@media (max-width: 700px) {
    .mission-section {
        padding: 32px 0 16px 0;
    }

    .mission-content h2 {
        font-size: 22px;
    }

    .mission-content p {
        font-size: 15px;
    }

    .mission-image img {
        max-width: 98vw;
    }
}
/* 产品收藏模块 */
        .garage-collection-section {
            background: #0b1227;
            padding: 5% 16%;
            width: 68%;
            text-align: center;
            background-image: url("../../canada/images/Group.png");
            background-repeat: no-repeat;
        }

        .garage-collection-title {
            color: #fff;
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 1px;
            margin-bottom: 48px;
            font-family: 'DM Sans', Arial, sans-serif;
        }

        .garage-collection-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }

        .garage-collection-card {

            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
            padding: 1.5%;
            width: 30%;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .garage-collection-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 18px;
            margin-bottom: 22px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
        }

        .garage-collection-card-title {
            color: #fff;
            font-size: 22px;
            margin-bottom: 40px;
            font-family: 'DM Sans', Arial, sans-serif;
        }

        .garage-collection-card-sub {
            color: #e0e0e0;
            font-size: 16px;
            font-style: italic;
            margin-bottom: 16px;
        }

        .garage-collection-card-desc {
            color: #fff;
            font-size: 15px;
            margin-bottom: 28px;
            text-align: center;
            font-family: 'DM Sans', Arial, sans-serif;
            flex: 1;
        }

        .garage-collection-btn {
            display: inline-block;
            background: #ed1c24;
            color: #fff;
            padding: 12px 38px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            margin-top: 8px;
            letter-spacing: 1px;
        }

        .garage-collection-btn:hover {
            background: #b80d15;
            transform: translateY(-2px) scale(1.04);
        }

        @media (max-width: 1200px) {
            .garage-collection-list {
                gap: 18px;
            }

            .garage-collection-card {
                width: 80vw;
                max-width: 370px;
            }
        }

        @media (max-width: 900px) {
            .garage-collection-list {
                flex-wrap: nowrap;
                flex-direction: column;
                align-items: center;
            }

            .garage-collection-card {
                width: 78vw;
                max-width: 400px;
            }

            .garage-collection-card-desc {
                font-size: 12px;
            }
        }
    

@media (max-width: 1200px) {
    .topbar {
        display: none !important;
    }

    .header-btn,
    .header-menu {
        display: none !important;
    }

    .header-bar {
        justify-content: space-between;
    }

    .header-logo {
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        z-index: 1202;
        width: 44px;
        height: 44px;
        margin-right: 16px;
    }

    .mobile-menu-toggle .hamburger {
        display: block;
        width: 28px;
        height: 4px;
        background: #ed1c24;
        margin: 5px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .mobile-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1200;
        transition: opacity 0.3s;
    }

    .mobile-sidebar {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        z-index: 1201;
        box-shadow: -2px 0 24px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.3s;
        overflow-y: auto;
    }

    .mobile-sidebar.open {
        display: block;
        transform: translateX(0);
    }

    .mobile-sidebar-overlay.open {
        display: block;
        opacity: 1;
    }

    .mobile-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 18px 0 18px;
        height: 60px;
    }

    .mobile-sidebar-logo img {
        height: 36px;
    }

    .mobile-sidebar-close {
        background: none;
        border: none;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        margin-left: 12px;
    }

    .mobile-sidebar-menu {
        padding: 0;
        margin: 0;
    }

    .mobile-sidebar-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-sidebar-menu li {
        border-bottom: 1px solid #f2f2f2;
        position: relative;
    }

    .mobile-sidebar-menu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        font-size: 18px;
        color: #222;
        text-decoration: none;
        font-family: 'Times New Roman', Times, serif;
        font-weight: 500;
        background: none;
        transition: background 0.2s, color 0.2s;
    }

    .mobile-sidebar-menu li.active>a,
    .mobile-sidebar-menu li a:active {
        background: #ed1c24;
        color: #fff;
    }

    .mobile-sidebar-menu li a::after {
        content: '';
    }

    .mobile-sidebar-menu li.has-sub>a {
        padding-right: 36px;
    }

    .mobile-sidebar-menu .arrow {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        font-size: 1.2em;
        color: #888;
        transition: transform 0.2s;
        pointer-events: none;
    }

    .mobile-sidebar-menu li.open>.arrow {
        transform: translateY(-50%) rotate(90deg);
        color: #ed1c24;
    }

    .mobile-sidebar-menu .sub-menu {
        display: none;
        background: #fafafa;
        padding-left: 0;
        animation: slideDown 0.2s;
    }

    .mobile-sidebar-menu li.open>.sub-menu {
        display: block;
    }

    .mobile-sidebar-menu .sub-menu li a {
        font-size: 16px;
        color: #444;
        padding: 14px 36px 14px 44px;
        background: none;
        border-bottom: 1px solid #f2f2f2;
    }

    .mobile-sidebar-menu .sub-menu li:last-child a {
        border-bottom: none;
    }

    .mobile-sidebar-menu .sub-menu li a:hover {
        color: #ed1c24;
        background: #f6f6f6;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 禁止滚动 */
    body.mobile-sidebar-open {
        overflow: hidden;
        touch-action: none;
    }
}

/* PC端隐藏移动侧边栏和遮罩 */
@media (min-width: 1200px) {

    .mobile-menu-toggle,
    .mobile-sidebar,
    .mobile-sidebar-overlay {
        display: none !important;
    }
}


#scrollToTopBtn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    background: #ed1c24;
    color: #111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
    overflow: hidden;
}

#scrollToTopBtn .arrow {
    font-size: 2.2rem;
    color: #111;
    transition: color 0.3s;
    line-height: 1;
    bottom: 4px;
    position: absolute;
}

#scrollToTopBtn .scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #ed1c24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: 6px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    user-select: none;
}

#scrollToTopBtn:hover {
    width: 56px;
    height: 180px;
    background: #111;
}

#scrollToTopBtn:hover .arrow {
    color: #ed1c24;
    top: 4px;
    position: absolute;
}

#scrollToTopBtn:hover .scroll-text {
    opacity: 1;
}

@media (max-width: 600px) {
    #scrollToTopBtn {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
    }

    #scrollToTopBtn:hover {
        width: 44px;
        height: 120px;
    }

    #scrollToTopBtn .arrow {
        font-size: 1.5rem;
    }

    #scrollToTopBtn .scroll-text {
        font-size: 0.9rem;
    }
}
 /* 轮播图样式 */
 .swiper-container {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}



.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
}





@media (max-width: 1200px) {
    .swiper-container {
        max-width: 100%;
        padding: 30px 0;
    }

    .swiper-slide {
        width: calc(33.333% - 20px) !important;
        height: 350px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .swiper-container {
        padding: 20px 0;
    }

    .swiper-slide {
        width: calc(100% - 40px) !important;
        height: 200px;
        margin: 0 20px;
    }
}
/* 服务优势模块 */
.why-section {
    background: #fafafa;
    width: 68%;
    padding: 5% 16%;
}

.why-section h2 {
    text-align: center;
    font-size: 32px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    color: #ed1c24;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    padding: 0 18px 24px 18px;
}

.why-title {
    font-size: 24px;
        font-weight: bold;
    color: #444;
    margin-bottom: 18px;
    font-family: 'Times New Roman', Times, serif;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center
}

.why-desc {
    font-size: 17px;
    color: #222;
    margin-bottom: 32px;
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.6;
    min-height: 300px;

}

.why-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .why-list {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }



    .why-title {
        font-size: 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 700px) {
    .why-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-title {
        font-size: 16px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .why-desc {
        font-size: 12px;
    }
}




.whychoose-section {
    background: #fafafa;
    width: 68%;
    padding: 5% 16%;
    /* padding: 48px 0 32px 0; */
}

.whychoose-section h2 {
    text-align: center;
    font-size: 32px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
    position: relative;
}

.whychoose-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #111;
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

.whychoose-list-nested {
    max-width: 1300px;
    margin: 32px auto 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.whychoose-row {
    display: grid;
    gap: 32px;
}

.whychoose-row-1 {
    grid-template-columns: 1.1fr 1.2fr 1.1fr;
}

.whychoose-row-2 {
    grid-template-columns: 1.2fr 1.1fr 1.2fr;
}

.whychoose-card {
    background: #fff;
    border: 2px solid #ed1c24;
    padding: 32px 28px 28px 28px;
    gap: 24px;
    min-height: 180px;
    box-sizing: border-box;
    transition: box-shadow 0.2s;
    display: flex;
    align-items: flex-start;
}

.whychoose-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #111;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s, color 0.2s, background 0.2s;

    .fas {
        position: relative;
        left: 55%;
    }
}

.whychoose-title {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
    font-family: 'DM Sans', Arial, sans-serif;
}

.whychoose-desc {
    font-size: 14px;
    color: #222;
    font-family: 'DM Sans', Arial, sans-serif;
}

@media (max-width: 900px) {

    .whychoose-list-nested,
    .whychoose-row {
        display: block;
        padding: 0;
    }

    .whychoose-card {
        width: 100% !important;
        margin-bottom: 16px;
        justify-content: center;
        flex-wrap: wrap
    }

    .whychoose-title {
        text-align: center;
    }
}

.whychoose-card:hover .whychoose-icon,
.whychoose-card:focus .whychoose-icon,
.whychoose-card:active .whychoose-icon {
    transform: scale(1.18);
    box-shadow: 0 4px 18px rgba(237, 28, 36, 0.18);
    background: #edc701;

    .fas {
        position: relative;
        left: 0%;
    }
}

.whychoose-icon .fas {
    position: relative;
    left: 55%;
    transition: left 0.2s;
}

.whychoose-card:hover .whychoose-icon .fas,
.whychoose-card:focus .whychoose-icon .fas,
.whychoose-card:active .whychoose-icon .fas {
    left: 0%;
}

/* 页脚模块 */
.footer-section {
    background: #2c2c2c;
    color: #fff;
    font-family: 'DM Sans', Arial, sans-serif;
    margin-top: 0;
    border-top: 2px solid #ed1c24;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #444;
    width: 100%;
}

.footer-logo-nav img {
    height: 80px;
    margin-bottom: 24px;
    filter: brightness(1.1);
}

.footer-logo-nav nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logo-nav nav a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.footer-logo-nav nav a:hover {
    color: #ed1c24;
}

.footer-logo-nav nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #ed1c24;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.footer-logo-nav nav a:hover::after {
    width: 100%;
}

.footer-info-row {
    display: flex;
    width: 100%;
    max-width: 1400px;
    justify-content: center;
    align-items: stretch;
    margin: 0;
    gap: 0;
}

.footer-info-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 36px 24px;
    min-width: 200px;
    justify-content: flex-start;
    border-right: 1px solid #444;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.footer-info-col:hover {
    background: rgba(237, 28, 36, 0.05);
}

.footer-info-col:last-child {
    border-right: none;
}

.footer-info-col:first-child {
    border-left: none;
}

.footer-info-col i {
    font-size: 32px;
    color: #ed1c24;
    min-width: 32px;
    text-align: center;
}

.footer-info-title {
    color: #ed1c24;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.footer-info-content {
    color: #fff;
    font-size: 16px;
    display: block;
    line-height: 1.6;
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.footer-social-icons a:hover {
    background: #ed1c24;
    color: #fff;
    transform: translateY(-2px);
    border-color: #ed1c24;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #444;
}

.footer-policy {
    display: flex;
    gap: 4px;
    align-items: center;
}

.footer-policy a {
    color: #ccc;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-policy a:hover {
    color: #ed1c24;
}

@media (max-width: 1200px) {
    .footer-info-row {
        flex-wrap: wrap;
    }

    .footer-info-col {
        min-width: 48%;
        flex: 1 1 48%;
        padding: 28px 16px;
    }

    .footer-info-col:nth-child(even) {
        border-right: none;
    }

    .footer-info-col:nth-child(3),
    .footer-info-col:nth-child(4) {
        border-top: 1px solid #444;
    }
}

@media (max-width: 900px) {
    .footer-top {
        padding: 36px 16px 16px 16px;
    }

    .footer-logo-nav {
        margin-bottom: 28px;
        padding-bottom: 20px;
    }

    .footer-logo-nav img {
        height: 64px;
        margin-bottom: 18px;
    }

    .footer-logo-nav nav {

        display: none;
    }

    .footer-logo-nav nav a {
        font-size: 14px;
    }

    .footer-info-row {
        flex-direction: column;
    }

    .footer-info-col {
        flex: 1;
        /* min-width: 100%; */
        border-right: none;
        border-bottom: 1px solid #444;
        padding: 24px 20px;
        text-align: center;
    }

    .footer-info-col:last-child {
        border-bottom: none;
    }

    .footer-info-col:nth-child(3),
    .footer-info-col:nth-child(4) {
        border-top: none;
    }

    .footer-info-col i {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 16px 12px 16px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-top {
        padding: 28px 12px 12px 12px;
    }

    .footer-logo-nav img {
        height: 56px;
        margin-bottom: 16px;
    }

    .footer-logo-nav nav {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-nav nav a {
        font-size: 13px;
        margin: 4px 0;
    }

    .footer-info-col {
        padding: 20px 12px;
    }



    .footer-info-title {
        font-size: 16px;
    }

    .footer-info-content {
        font-size: 14px;
    }

    .footer-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 16px 12px 8px 12px;
        font-size: 12px;
    }

    .footer-policy a {
        font-size: 12px;
        margin: 0 4px;
    }
}

/* 响应式设计 */
@media (max-width: 1100px) {

    .about-container,
    .mission-container {
        flex-direction: column;
        gap: 32px;
    }

    .about-content,
    .mission-content {
        max-width: 98vw;
    }

    .about-image,
    .mission-image {
        max-width: 98vw;
    }

    .garage-collection-list {
        gap: 18px;
    }

    .garage-collection-card {
        width: 90vw;
        max-width: 370px;
    }

    .why-list {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .why-title {
        font-size: 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .whychoose-list {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .whychoose-card {
        padding: 22px 12px 18px 12px;
        gap: 14px;
    }

    .whychoose-title {
        font-size: 18px;
    }

    .footer-info-row {
        flex-direction: column;
        border-right: none;
    }

    .footer-info-col {
        border-right: none;
        border-bottom: 1px solid #444;
    }

    .footer-info-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 700px) {
    .about-section,
    .mission-section {
        padding: 32px 0 16px 0;
    }

    .about-content h2,
    .mission-content h2 {
        font-size: 22px;
    }

    .about-content p,
    .mission-content p {
        font-size: 15px;
    }

    .about-image img,
    .mission-image img {
        max-width: 98vw;
    }

    .garage-collection-list {
        flex-direction: column;
        align-items: center;
    }

    .garage-collection-card {
        width: 98vw;
        max-width: 400px;
    }

    .why-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-title {
        font-size: 16px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .whychoose-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .whychoose-card {
        padding: 14px 6px 12px 6px;
    }

    .whychoose-title {
        font-size: 16px;
    }

    .whychoose-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .footer-top {
        padding: 24px 8px 0 8px;
    }

    .footer-logo-nav img {
        height: 40px;
    }

    .footer-info-row {
        margin: 12px 0 0 0;
    }

    .footer-info-col {
        padding: 18px 8px;
    }

    .footer-bottom {
        padding: 12px 8px 8px 8px;
    }
} 
.dealer-contact-banner {
    background: #0b1227;
    height: 300px;
    max-width: 1200px;
    margin: 32px auto 48px auto;
}

.dealer-contact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.dealer-contact-left {
    flex: 1;
    text-align: center;
}

.dealer-contact-title {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 30px;
    line-height: 1.2;
}

.dealer-contact-btn {
    display: inline-block;
    background: #ed1c24;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-family: 'Times New Roman', Times, serif;
}

.dealer-contact-btn:hover {
    background: #b80515;
}

.dealer-contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dealer-contact-bg {
    max-width: 100%;

    height: auto;
    opacity: 0.8;
    object-fit: cover;
    /* 保持图片比例并覆盖容器，裁剪超出部分 */

}

@media (max-width: 900px) {
    .dealer-contact-banner {
        padding: 60px 0;
        margin: 40px 0;
    }

    .dealer-contact-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .dealer-contact-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .dealer-contact-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .dealer-contact-banner {
        padding: 40px 0;
        margin: 30px 0;
    }

    .dealer-contact-content {
        padding: 0 15px;
    }

    .dealer-contact-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .dealer-contact-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
/* 下拉菜单样式 */
.language-selector .dropdown {
    position: relative;
    display: inline-block;
}

.language-selector .dropdown-toggle {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-selector .dropdown-arrow {
    font-size: 10px;
}

.language-selector .dropdown-menu {
    position: absolute;
    top: 100%;
    width: 90px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 1002;
}

.language-selector .dropdown-menu li {
    padding: 0;
}

.language-selector .dropdown-menu a {
    display: block;
    font-size: 12px;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

.language-selector .dropdown-menu a:hover {
    background: #f5f5f5;
}

.language-selector .dropdown-menu a.active {
    background: #f0f0f0;
    font-weight: bold;
}

.language-selector .dropdown:hover .dropdown-menu {
    display: block;
}