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

/* App info date and capacity styles */
.app-info p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

#current-date {
    text-align: left;
}

.capacity {
    text-align: right;
}

.opening-info {
    text-align: center;
    width: 100%;
    margin: 8px 0;
}

#current-date {
    font-size: 14px;
    color: #666;
    padding-bottom: 14px;
}

.capacity {
    font-size: 14px;
    color: #666;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    z-index: 1000;
}

nav {
    height: 80px;
    padding: 0 24px;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo样式 */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-left .logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.nav-left .logo img {
    width: 75%;
    transition: transform 0.3s ease;
}

/* Logo悬停效果 */
.nav-left .logo:hover img {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.8);
}

/* 中间导航菜单 */
.nav-center {
    display: flex;
    align-items: center;
    gap: 70px;
}

.nav-center > a,
.nav-item > a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 20px 0;
    position: relative;
}

/* 导航项悬停效果 */
.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item > a:hover::after {
    transform: scaleX(1);
}

/* 二级菜单 */
.submenu {
    position: fixed;
    left: 0;
    top: 80px;
    width: 100%;
    background-color: #1a1a1a;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:hover .submenu {
    visibility: visible;
    opacity: 1;
}

/* PC端二级菜单样式 */
.submenu-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: center; /* 添加水平居中 */
    gap: 40px;
}

.submenu-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    position: relative; /* 添加相对定位用于下划线 */
    padding: 4px 0; /* 添加内边距给下划线留空间 */
}

/* 二级菜单项下划线效果 */
.submenu-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.submenu-content a:hover::after {
    transform: scaleX(1);
}

/* 右侧按钮组 - 只保留预约试驾按钮 */
.nav-right {
    display: flex;
    align-items: center;
}

.btn-test-drive {
    padding: 8px 20px;
    background-color: #e5170f;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-test-drive:hover {
    opacity: 0.8;
}

/* 隐藏不需要的按钮 */
.btn-app,
.btn-account,
.btn-login {
    display: none;
}

/* 确保移动端的按钮正常显示 */
@media screen and (max-width: 768px) {
    .mobile-buttons {
        margin-top: auto;
        padding: 24px;
        display: flex;
        gap: 16px;
    }

    .mobile-buttons .btn-app,
    .mobile-buttons .btn-login {
        display: block; /* 移动端显示底部按钮 */
        flex: 1;
        padding: 12px;
        text-align: center;
        border: 1px solid #fff;
        border-radius: 4px;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

    .mobile-buttons .btn-app {
        background-color: #fff;
        color: #1a1a1a;
    }

    /* 移动端二级菜单容器 */
    .submenu {
        position: static;
        visibility: visible;
        opacity: 1;
        background: none;
        border: none;
        display: none;
    }

    .submenu.active {
        display: block;
        background: rgba(26, 26, 26, .7);
    }

    /* 二级菜单内容样式 */
    .submenu-content {
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }

    .submenu-content a {
        padding: 16px 65px; /* 增加左边距，形成层级感 */
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        position: relative;
        display: block;
    }

    /* 二级菜单项分隔线 */
    .submenu-content a::after {
        content: '';
        position: absolute;
        left: 48px; /* 与左边距对应 */
        right: 24px;
        bottom: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
    }

    /* 移除最后一个分隔线 */
    .submenu-content a:last-child::after {
        display: none;
    }

    /* 一级菜单项样式 */
    .nav-center {
        gap: 0;
    }
    .nav-center > a {
        width: 100%;
    }
    .nav-item {
        width: 100%;
    }
    .nav-center > a,
    .nav-item > a {
        padding: 16px 50px;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        display: flex;
        justify-content: space-between; /* 确保内容两端对齐 */
        align-items: center;
        position: relative;
    }

    /* 移动端下拉箭头样式 */
    .nav-item > a::before {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #fff;
        border-bottom: 1.5px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s;
        margin-left: auto; /* 将箭头推到右侧 */
        margin-right: 0; /* 移除右侧间距 */
        order: 2; /* 确保箭头在最右侧 */
    }

    /* 展开时箭头旋转 */
    .nav-item.active > a::before {
        transform: rotate(-135deg);
    }

    /* 菜单文字样式 */
    .nav-item > a span {
        order: 1; /* 确保文字在左侧 */
    }

    /* 主内容区域 */
    main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 0; /* 移除顶部内边距 */
    }

    /* 导航栏基础布局 */
    nav {
        height: 56px;
        padding: 0 16px;
        background-color: rgba(26, 26, 26, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 1000;
    }
}

/* 动画过渡效果 */
.nav-center a,
.submenu,
.submenu-content a {
    transition: all 0.3s ease;
}

main {
    padding: 0;
}

footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    font-size: 12px;
    line-height: 1;
}

/* 底部内容容器：四栏 */
.footer-content {
    max-width: 80%;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

/* 第一列：扫码图片 */
.footer-app-scan {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-app-scan img {
    display: block;
    max-width: 180px;
    height: auto;
    border-radius: 6px;
}

/* 左侧部分样式 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    flex: 0 0 45%;
    min-width: 0;
}

/* 左侧下拉菜单区域 */
.footer-menus {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-dropdown {
    position: relative;
}

.footer-dropdown-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.footer-dropdown-title:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-dropdown-title i {
    font-size: 10px;
    transition: transform 0.2s;
}

.footer-dropdown.open .footer-dropdown-title i {
    transform: rotate(180deg);
}

/* 下拉区域向上展示 */
.footer-dropdown-list {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin: 0 0 6px;
    padding: 8px 0;
    min-width: 160px;
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 10;
}

.footer-dropdown:hover .footer-dropdown-list,
.footer-dropdown.open .footer-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-dropdown-list li {
    margin: 0;
}

.footer-dropdown-list a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}

.footer-dropdown-list a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* 备案信息样式 */
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    line-height: 28px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    text-align: left;
}

.footer-info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
}

.footer-info span,
.footer-info a {
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    text-decoration: none;
}

.footer-info a:hover {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

/* 分隔符样式 */
.footer-info .divider {
    display: inline-block; /* 显示分隔符 */
    margin: 0;
    color: rgba(255, 255, 255, 0.2);
}

/* 中间：三个二维码 */
.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 24px;
}

.footer-qr-codes {
    display: flex;
    gap: 24px;
    justify-content: center;
}

/* 右侧：热线电话 */
.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.footer-hotline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.footer-hotline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 34px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.footer-hotline-icon::before {
    display: block;
    line-height: 1;
}

.footer-hotline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-hotline-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-hotline-number {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.footer-hotline-number:hover {
    opacity: 0.9;
}

.footer-qr-item {
    text-align: center;
    width: 80px;
}

.footer-qr-item img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 8px;
    border-radius: 6px;
}

.footer-qr-item span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* 移动端菜单按钮 - 默认隐藏 */
.menu-toggle {
    display: none; /* PC端默认隐藏 */
}

@media screen and (max-width: 768px) {
    /* 基础样式重置 */
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    /* 禁止菜单打开时页面滚动 */
    body.menu-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* 主内容区域 */
    main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 0; /* 移除顶部内边距 */
    }

    /* 导航栏基础布局 */
    nav {
        height: 70px;
        padding: 0 16px;
        background-color: rgba(26, 26, 26, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo样式 */
    .nav-left {
        display: flex;
        align-items: center;
    }

    .nav-left .logo {
        margin-right: 0;
    }

    .nav-left .logo .iconfont {
        font-size: 24px;
    }

    /* 菜单按钮 - 移动端显示 */
    .menu-toggle {
        display: flex; /* 移动端显示 */
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 48px;
        padding: 0;
        border: none;
        background: none;
        color: #fff;
        cursor: pointer;
        margin-left: auto; /* 自动左边距使其居右 */
    }

    .menu-toggle i {
        font-size: 20px;
    }

    /* 隐藏PC端导航 */
    .nav-right {
        display: none;
    }

    /* 移动端菜单层 */
    .nav-center {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 48px);
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        display: none;
        padding: 24px 0 0 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .nav-center.active {
        display: flex;
    }

    /* 分隔线样式 */
    .nav-center > a::after,
    .nav-item > a::after {
        content: '';
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-item > a:hover::after {
        transform: scaleX(0);
    }

    /* 底部按钮组样式 */
    .mobile-buttons {
        margin-top: auto;
        padding: 24px;
        display: flex;
        gap: 16px;
    }

    .mobile-buttons a {
        flex: 1;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .mobile-buttons .btn-app {
        background: #fff;
        color: #1a1a1a;
        border-color: #fff;
    }

    footer {
        background-color: #1a1a1a;
        padding: 0;
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        padding: 40px 16px;
        min-height: auto;
        align-items: center;
        gap: 32px;
    }
    
    .footer-app-scan {
        order: 0;
    }

    /* 左侧 */
    .footer-left {
        width: 100%;
        gap: 32px;
        padding: 0;
        align-items: center;
        order: 1;
    }

    /* 中间二维码 */
    .footer-center {
        width: 100%;
        order: 2;
    }

    /* 右侧热线 */
    .footer-right {
        width: 100%;
        justify-content: center;
        order: 3;
    }

    .footer-menus {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-dropdown-list {
        left: 50%;
        transform: translateX(-50%) translateY(4px);
    }

    .footer-dropdown.open .footer-dropdown-list {
        transform: translateX(-50%) translateY(0);
    }

    .footer-dropdown:hover .footer-dropdown-list {
        transform: translateX(-50%) translateY(0);
    }

    /* 右侧热线与媒体矩阵 */
    .footer-hotline {
        align-items: center;
        margin-bottom: 30px;
    }

    .footer-qr-codes {
        justify-content: center;
    }

    /* 备案信息样式 */
    .footer-info {
        align-items: center;
        text-align: center;
        font-size: 16px;
        line-height: 24px;
    }
    
    .footer-info-row {
        justify-content: center;
    }
    
    .player video {
        width: 100%;
        height: 100%;
    }
    
    .hero-page-content h1 {
        font-size: 24px;
    }
    
    /* 在移动端较窄屏幕时隐藏分隔符 */
    @media screen and (max-width: 480px) {
        .footer-info .divider, .footer-menus {
            display: none;
        }
    }

    /* 版权信息 */
    .footer-left {
        width: 100%;
        gap: 32px;
        padding: 0;
        text-align: center; /* 文字居中 */
    }
    
    .player video {
        width: 100%;
        height: 100%;
    }
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form div {
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    nav {
        padding: 0.5rem;
    }

    input, textarea {
        font-size: 16px; /* 防止iOS自动缩放 */
    }
    
    button {
        width: 100%;
        padding: 0.4rem;
    }
}

/* Hero轮播部分 */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide video,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    top: 15%; /* 改为距顶部 15% */
    left: 50%;
    transform: translateX(-50%); /* 只保留水平居中的转换 */
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 100%; /* 添加宽度确保内容对齐 */
    max-width: 1200px; /* 限制最大宽度 */
    padding: 0 24px; /* 添加水平内边距 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
}

.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content p,
.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* 轮播指示器 */
.hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

/* 按钮样式 */
.btn-reserve,
.btn-learn-more {
    display: inline-block;
    width: 30%;
    padding: 8px 32px;
    margin: 48% 8px 0;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reserve {
    background: #e5170f;
    border: 1px solid #e5170f;
    color: #fff;
}

.btn-learn-more {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reserve:hover {
    background: #ff5500;
    border: 1px solid #ff5500;
}

.btn-learn-more:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 核心科技部分 */
.tech-showcase {
    padding: 0 0 100px;
    background: #f4ebd9;
    color: #2c2416;
    position: relative;
    z-index: 100;
}

/* 顶部 80px 横条：开放时间 | 天气+日期 | 快捷入口 */
.tech-showcase-top {
    min-height: 360px;
    background: #ebdcbd;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.tech-showcase-top-inner {
    width: 80%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-showcase-top-row {
    width: 100%;
}

.tech-showcase-top-capacity {
    text-align: center;
    font-size: 24px;
    color: #e5170f;
}

.tech-showcase-top-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 110px;
}

.tech-top-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 5px;
}

.tech-top-hours-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 500;
    color: #5a5344;
    margin: 0 auto;
}

.tech-top-hours-label i {
    font-size: 18px;
}

.tech-top-hours-times {
    font-size: 28px;
    font-weight: 600;
    color: #e5170f;
    letter-spacing: 0.02em;
}

.tech-top-hours-desc {
    font-size: 16px;
    color: #5a5344;
}

.tech-top-weather-date {
    display: flex;
    align-items: center;
    background: #f5ecd9;
    padding: 24px 40px 15px 10px;
    border-radius: 20px;
}

.tech-top-weather {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.tech-top-weather i {
    font-size: 20px;
    color: #2c2416;
    margin-bottom: 2px;
}

.tech-top-temp {
    font-size: 16px;
    font-weight: 600;
    color: #2c2416;
}

.tech-top-weather-desc,
.tech-top-weather-range {
    font-size: 11px;
    color: #5a5344;
}

.tech-top-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.tech-top-weekday {
    font-size: 18px;
    color: #2c2416;
}

.tech-top-date-num {
    font-size: 16px;
    color: #5a5344;
}

.tech-top-quick-entry {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tech-top-qe-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 135px;
    padding: 26px 0;
    background: #f5ecd9;
    border-radius: 20px;
    text-decoration: none;
    color: #2c2416;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

.tech-top-qe-item:hover {
    box-shadow: 0 4px 12px rgba(44, 36, 22, 0.12);
    transform: translateY(-2px);
}

.tech-top-qe-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.tech-top-qe-icon i {
    font-size: 30px;
    color: #5a5344;
}

.tech-top-qe-name {
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
}

/* 顶部横条内门票预订的二维码弹层（复用 popover 样式） */
.tech-top-qe-ticket .ticket-qr-popover {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    margin-bottom: 6px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.tech-top-qe-ticket .ticket-qr-popover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top-color: #1a1a1a;
}

.tech-top-qe-ticket:hover .ticket-qr-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-16px);
}

.tech-top-qe-ticket .ticket-qr-popover img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.tech-top-qe-ticket .ticket-qr-popover span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.tech-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 0;
}

.tech-header h2 {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 16px;
    color: #2c2416;
}

.tech-header p {
    font-size: 20px;
    color: rgba(44, 36, 22, 0.7);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.tech-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
    transition: all 0.3s ease;
    aspect-ratio: 9/16;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 平板设备适配 */
@media screen and (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tech-item {
        min-height: 350px;
    }
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
    
    .tech-item {
        min-height: 300px;
        aspect-ratio: 9/16;
    }
    
    .tech-info {
        padding: 16px;
    }
    
    .tech-info h3 {
        font-size: 20px;
    }
    
    .btn-more {
        width: 50%;
        padding: 8px;
    }
}

/* 小屏手机适配 */
@media screen and (max-width: 480px) {
    .tech-showcase-top-capacity {
        font-size: 24px;
        font-weight: 600;
        margin-top: 10px;
    }
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tech-item {
        min-height: 250px;
    }
    
    .tech-info h3 {
        font-size: 18px;
    }
}

.tech-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tech-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-info {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 24px;
    background: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.tech-item:hover {
    transform: translateY(-8px);
}

.tech-item:hover .tech-image img {
    transform: scale(1.05);
}

.tech-info h3 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 门票预订 - 悬停显示订票二维码 */
.quick-entry-ticket .ticket-qr-popover {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.quick-entry-ticket .ticket-qr-popover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top-color: #1a1a1a;
}

.quick-entry-ticket:hover .ticket-qr-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-16px);
}

.quick-entry-ticket .ticket-qr-popover img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.quick-entry-ticket .ticket-qr-popover span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* 新闻版块：左侧轮播 + 右侧新闻列表 */
.news-block {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 32px;
    width: 80%;
    margin: 0 auto;
    padding: 0 24px;
}

.news-carousel-wrap {
    position: relative;
    flex: 0 0 calc(50% - 16px);
    min-width: 0;
    min-height: 0;
    border-radius: 16px;
    overflow: hidden;
}

.news-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    aspect-ratio: 4/3;
}

@media screen and (min-width: 901px) {
    .news-carousel-wrap {
        display: flex;
        flex-direction: column;
    }
    .news-carousel {
        flex: 1;
        min-height: 0;
        aspect-ratio: unset;
        height: 100%;
    }
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.news-slide.active {
    opacity: 1;
    z-index: 1;
}

.news-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.news-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.news-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.news-indicator.active,
.news-indicator:hover {
    background: #e5170f;
}

.news-carousel-prev,
.news-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s ease;
}

.news-carousel-prev:hover,
.news-carousel-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.news-carousel-prev {
    left: 12px;
}

.news-carousel-next {
    right: 12px;
}

.news-list {
    flex: 0 0 calc(50% - 16px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    background: transparent;
    border-bottom: 1px dashed rgba(44, 36, 22, 0.22);
    text-decoration: none;
    color: #2c2416;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.news-card:hover {
    color: #8b6914;
}

.news-card:last-of-type {
    border-bottom: none;
}

.news-card-icon {
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    color: rgba(44, 36, 22, 0.5);
    font-size: 14px;
}

.news-card:hover .news-card-icon, .news-card:hover .news-card-title {
    color: #8b6914;
}

.news-card-title {
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    line-height: 1.4;
    color: #5a5344;
    flex: 1;
    min-width: 0;
}

.news-card-date {
    font-size: 16px;
    color: rgba(44, 36, 22, 0.4);
    flex-shrink: 0;
}

.news-block > .news-list-more {
    flex: 0 0 33.33%;
    margin: 20px auto;
}

.news-list-more {
    display: block;
    padding: 12px 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #2c2416;
    border: 1px solid rgba(44, 36, 22, 0.1);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44, 36, 22, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-list-more:hover {
    background: rgba(44, 36, 22, 0.04);
    border-color: rgba(44, 36, 22, 0.2);
    box-shadow: 0 4px 12px rgba(44, 36, 22, 0.1);
}

/* 平板/移动端：新闻版块上下排列 */
@media screen and (max-width: 900px) {
    .tech-showcase-top-inner {
        width: 100%;
        gap: 12px;
    }

    .tech-showcase-top-main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .tech-top-hours-times {
        font-size: 16px;
    }

    .tech-top-quick-entry {
        flex: 1 1 100%;
        justify-content: center;
    }

    .news-block {
        width: 100%;
        flex-direction: column;
        padding: 0 16px;
    }

    .news-carousel-wrap {
        flex: none;
        width: 100%;
        display: block;
    }

    .news-carousel {
        aspect-ratio: 16/9;
        height: auto;
        min-height: 0;
        flex: none;
    }
}

@media screen and (max-width: 768px) {
    .tech-showcase {
        padding: 0 0 50px;
    }
    
    .tech-showcase-top {
        min-height: 80px;
        height: auto;
        padding: 12px 0 60px;
    }

    .tech-showcase-top-inner {
        padding: 0 16px;
        margin-top: 40px;
    }

    .tech-top-hours-times {
        font-size: 15px;
    }

    .tech-top-qe-item {
        width: 29%;
        padding: 6px 2px;
    }

    .tech-top-qe-icon i {
        font-size: 18px;
    }

    .tech-top-qe-name {
        font-size: 10px;
    }

    .news-card {
        padding: 16px 0;
    }

    .news-card-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .quick-entry {
        gap: 24px 28px;
        margin-bottom: 32px;
    }

    .quick-entry-icon {
        width: 64px;
        height: 64px;
    }

    .quick-entry-icon i {
        font-size: 26px;
    }

    .quick-entry-name {
        font-size: 12px;
    }
}

.btn-more {
    width: 33.333%;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .btn-more {
        width: 33.333%; /* 保持移动端也是三分之一宽度 */
    }
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
    .tech-header h2 {
        font-size: 36px;
    }

    .tech-header p {
        font-size: 18px;
    }

    .quick-entry {
        gap: 40px 52px;
        margin-bottom: 48px;
    }

    .quick-entry-icon {
        width: 80px;
        height: 80px;
    }

    .quick-entry-icon i {
        font-size: 34px;
    }

    .quick-entry-name {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .quick-entry {
        gap: 32px 40px;
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .quick-entry-item {
        min-width: 80px;
    }

    .quick-entry-icon {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .quick-entry-icon i {
        font-size: 30px;
    }

    .quick-entry-name {
        font-size: 13px;
    }

    .quick-entry-ticket .ticket-qr-popover img {
        width: 100px;
        height: 100px;
    }
}

/* 工厂展示部分 */
.factory-showcase {
    position: relative;
    width: 100%;
    background: #ebdcbd;
    padding: 88px 0 96px;
    overflow: visible;
}

.factory-bg {
    display: none;
}

.factory-bg img {
    display: none;
}

.factory-content {
    position: relative;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 80%;
    padding: 0 24px;
    z-index: 2;
    color: #2c2416;
}

.factory-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

.factory-content > p {
    font-size: 20px;
    color: rgba(44, 36, 22, 0.7);
    margin-bottom: 40px;
}

.factory-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 22px;
    margin: 0 auto 60px;
}

.factory-guide-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(44, 36, 22, 0.12);
    box-shadow: 0 6px 18px rgba(44, 36, 22, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.factory-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 36, 22, 0.14);
}

.factory-guide-thumb {
    width: 100%;
    aspect-ratio: 4/2.5;
    background: rgba(44, 36, 22, 0.08);
}

.factory-guide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.factory-guide-title {
    padding: 14px 14px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    color: #1a1510;
}

/* 左右 6:4 布局，两侧背景 70% 透明度 */
.factory-panels {
    display: flex;
    gap: 0;
    margin-bottom: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.factory-panel-left {
    flex: 0 0 60%;
    padding: 24px 28px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.factory-panel-right {
    flex: 0 0 40%;
    padding: 24px 28px;
    background: rgb(252 100 9 / 70%);
    color: #fff;
}

.factory-panel-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.factory-panel-title i {
    margin-right: 6px;
    opacity: 0.9;
}

.factory-guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.factory-guide-list li {
    margin-bottom: 12px;
}

.factory-guide-list a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.factory-guide-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.factory-schedule {
    font-size: 14px;
    line-height: 1.7;
}

.factory-schedule-item {
    margin-bottom: 18px;
}

.factory-schedule-item:last-child {
    margin-bottom: 0;
}

.factory-schedule-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}

.factory-schedule-item p {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.factory-schedule-note {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 12px !important;
    margin-top: 4px !important;
}

.factory-content .btn-more {
    display: block;
    padding: 12px 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #2c2416;
    border: 1px solid rgba(44, 36, 22, 0.1);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44, 36, 22, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.factory-content .btn-more:hover {
    background: rgba(44, 36, 22, 0.04);
    border-color: rgba(44, 36, 22, 0.2);
    box-shadow: 0 4px 12px rgba(44, 36, 22, 0.1);
}

.app-info h2 {
    text-align: center;
    font-size: 30px;
}

.open-status {
    display: flex;
    justify-content: center;
    align-items: center;
}

.open-status li {
    display: inline-block;
    list-style: none;
    height: 100%;
    text-align: center;
}

.open-status li h4 {
    font-size: 26px;
    color: #e5170f;
}

.open-status li p {
    font-size: 16px;
    color: rgba(0, 0, 0, .7);
}

.open-status span {
    border-bottom: 1px solid rgba(0, 0, 0, .7);
    width: 40px;
    margin: 0 30px;
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    .factory-content {
        top: 20%; /* 移动端可以适当调整位置 */
        max-width: 98%;
    }
    
    .factory-content h2 {
        font-size: 32px;
    }

    .factory-content p {
        font-size: 16px;
        padding: 0 24px;
    }

    .factory-content .btn-more {
        padding: 10px 32px;
    }
    
    .tech-header {
        margin-bottom: 40px;
    }
}

/* APP下载部分 */
.app-download {
    background: #fff;
    padding: 120px 0 0;
}

.app-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between; /* 改为两端对齐 */
    align-items: center;
    gap: 40px; /* 减小间距 */
}

/* 手机图片容器样式 */
.app-content > div:nth-child(2) {
    flex: 0 0 auto;
    width: 280px; /* 减小默认宽度 */
    display: flex;
    justify-content: center;
}

/* 手机图片样式 */
.app-content > div:nth-child(2) img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.app-info {
    text-align: left;
    min-width: 380px;
}

.app-info h2 {
    font-size: 48px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.app-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.company-info {
    margin-bottom: 16px;
}

.company-info span {
    display: block;
    font-size: 14px;
    color: rgba(26, 26, 26, 0.4);
    line-height: 1.8;
}

.policy-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.policy-links a {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-links a:hover {
    color: rgba(26, 26, 26, 0.8);
}

.policy-links .divider {
    color: rgba(26, 26, 26, 0.2);
}

.qr-codes {
    display: flex;
    gap: 40px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 112px; /* 160px * 0.7 = 112px */
    height: 112px;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
}

.qr-item span {
    display: block;
    font-size: 14px;
    color: rgba(26, 26, 26, 0.6);
}

/* 响应式适配 */
@media screen and (max-width: 900px) {
    .factory-panels {
        flex-direction: column;
    }

    .factory-panel-left,
    .factory-panel-right {
        flex: none;
        width: 100%;
    }
    
    .factory-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media screen and (max-width: 768px) {
    .factory-content {
        padding: 0 16px;
    }
    
    .factory-content h2 {
        font-size: 32px;
    }

    .factory-content > p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .factory-showcase {
        padding: 64px 0 72px;
    }

    .factory-guide-grid {
        gap: 16px;
        margin-bottom: 32px;
    }

    .factory-guide-title {
        font-size: 15px;
    }

    .factory-panel-left,
    .factory-panel-right {
        padding: 20px;
    }

    .factory-panel-title {
        font-size: 16px;
    }

    .factory-guide-list a {
        font-size: 14px;
    }

    .factory-schedule-item h4 {
        font-size: 14px;
    }

    .factory-schedule-item p {
        font-size: 13px;
    }

    .factory-content .btn-more {
        padding: 10px 24px;
    }
}

@media screen and (max-width: 480px) {
    .factory-guide-grid {
        grid-template-columns: 1fr;
    }
}

/* APP下载部分 */
.app-download {
    background: #fff;
    padding: 120px 0 0;
}

.app-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between; /* 改为两端对齐 */
    align-items: center;
    gap: 40px; /* 减小间距 */
}

/* 手机图片容器样式 */
.app-content > div:nth-child(2) {
    flex: 0 0 auto;
    width: 280px; /* 减小默认宽度 */
    display: flex;
    justify-content: center;
}

/* 手机图片样式 */
.app-content > div:nth-child(2) img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 右侧商标图 */
.app-shangbiao {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.app-shangbiao img {
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.app-info {
    text-align: left;
    min-width: 380px;
}

.app-info h2 {
    font-size: 48px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.app-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.company-info {
    margin-bottom: 16px;
}

.company-info span {
    display: block;
    font-size: 14px;
    color: rgba(26, 26, 26, 0.4);
    line-height: 1.8;
}

.policy-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.policy-links a {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-links a:hover {
    color: rgba(26, 26, 26, 0.8);
}

.policy-links .divider {
    color: rgba(26, 26, 26, 0.2);
}

/* 响应式适配 */
@media screen and (max-width: 1200px) {
    .app-content > div:nth-child(2) {
        width: 240px; /* 中等屏幕尺寸时缩小 */
    }
}

@media screen and (max-width: 768px) {
    .app-download {
        padding: 80px 0;
    }

    .app-content {
        flex-direction: column;
        gap: 32px;
    }

    .app-content > div:nth-child(2) {
        width: 200px; /* 移动端更小 */
    }

    .app-shangbiao {
        justify-content: center;
    }

    .app-shangbiao img {
        max-width: 120px;
    }

    .app-info {
        text-align: center;
    }

    .app-info h2 {
        font-size: 32px;
    }

    .app-info p {
        font-size: 16px;
    }

    .policy-links {
        justify-content: center;
    }
}

/* 移动端轮播图样式 */
@media screen and (max-width: 768px) {
    .hero {
        height: 100vh; /* 使用完整视口高度 */
        margin-top: 0; /* 移除顶部外边距 */
    }

    .hero-slider,
    .hero-slide {
        height: 100%;
    }

    .hero-slide img {
        height: 100%;
        object-fit: cover;
    }

    /* 调整内容垂直位置 */
    .hero-content {
        top: 20%;
        padding: 0 20px;
    }

    /* 调整文字大小 */
    .hero-content h1 {
        font-size: 50px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 24px;
    }

    /* 调整按钮样式 */
    .btn-reserve,
    .btn-learn-more {
        width: 40%;
        padding: 10px 24px;
        margin: 100% 6px 0;
        font-size: 14px;
    }
}

/* 二级菜单 - PC端样式 */
@media screen and (min-width: 769px) {
    .submenu {
        background-color: rgba(26, 26, 26, 0.7); /* 降低透明度 */
        backdrop-filter: blur(10px); /* 添加毛玻璃效果 */
        -webkit-backdrop-filter: blur(10px);
    }
}

/* 保持移动端样式不变 */
@media screen and (max-width: 768px) {
    .submenu.active {
        background: rgba(26, 26, 26, .7);
    }
}

/* 导航栏滚动样式 - 仅PC端 */
@media screen and (min-width: 769px) {
    /* 默认样式保持不变 */
    nav {
        transition: all 0.3s ease;
    }

    /* 滚动后的样式 */
    nav.scrolled {
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* 滚动后的文字颜色 */
    nav.scrolled .nav-center > a,
    nav.scrolled .nav-item > a {
        color: #1a1a1a;
    }

    /* 滚动后的预约试驾按钮 */
    nav.scrolled .btn-test-drive {
        background-color: #1a1a1a;
        color: #fff;
    }

    /* 滚动后的Logo颜色 */
    nav.scrolled .logo {
        color: #1a1a1a;
    }

    /* 滚动后的下划线颜色 */
    nav.scrolled .nav-item > a::after {
        background-color: #1a1a1a;
    }

    /* 滚动后的二级菜单样式 */
    nav.scrolled .submenu {
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(26, 26, 26, 0.1);
    }

    /* 滚动后的二级菜单文字颜色 */
    nav.scrolled .submenu-content a {
        color: rgba(26, 26, 26, 0.8);
    }

    /* 滚动后的二级菜单悬停效果 */
    nav.scrolled .submenu-content a:hover {
        color: #1a1a1a;
    }

    /* 滚动后的二级菜单下划线颜色 */
    nav.scrolled .submenu-content a::after {
        background-color: #1a1a1a;
    }
}

/* 轮播控制按钮 - 仅PC端显示 */
@media screen and (min-width: 769px) {
    .hero-prev,
    .hero-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        z-index: 4;
        transition: all 0.3s ease;
    }

    .hero-prev {
        left: 24px;
    }

    .hero-next {
        right: 24px;
    }

    .hero-prev:hover,
    .hero-next:hover {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* 移动端隐藏控制按钮 */
@media screen and (max-width: 768px) {
    .hero-prev,
    .hero-next {
        display: none;
    }
}
