/* ============================================
   响应式样式 - Responsive Design
   ============================================ */

/* PC端隐藏移动端下载按钮和版本信息 */
@media (min-width: 769px) {
  .et-download-btn-mobile {
    display: none !important;
  }

  .et-hero-version-mobile {
    display: none !important;
  }
}

/* 桌面端较大屏幕 */
@media (min-width: 800px) {
  .et-hero-tabs h1,
  .et-slide h1 {
    font-size: 3rem;
  }

  .et-hero-tabs h3,
  .et-slide h3 {
    font-size: 1rem;
  }

  .et-hero-tab {
    font-size: 1.54rem; /* 增加10% (1.4 * 1.1) */
  }
}

/* 中等屏幕 - 轮播图自适应缩小，禁止横向滚动 */
@media (max-width: 1200px) and (min-width: 1024px) {
  .et-carousel {
    width: 85vw !important;
    height: calc(85vw * 0.6) !important; /* 保持5:3宽高比 */
    max-height: 680px !important;
  }
}

/* 小型平板屏幕 - 轮播图继续缩小 */
@media (max-width: 1023px) and (min-width: 769px) {
  .et-carousel {
    width: 88vw !important;
    height: calc(88vw * 0.6) !important; /* 保持5:3宽高比 */
    max-height: 600px !important;
  }
}

/* 平板和移动端 */
@media (max-width: 800px) {

  /* 侧边导航点调整 */
  .et-side-navigation {
    right: 15px;
    gap: 10px;
    padding: 18px 10px;
  }

  .et-side-nav-dot {
    width: 10px;
    height: 10px;
  }

  .et-side-nav-dot.active {
    transform: scale(1.4);
  }

  .et-side-nav-dot:hover,
  .et-side-nav-dot.active:hover {
    transform: scale(1.5);
  }
}

/* 移动端样式 */
@media (max-width: 768px) {
  /* ========== 全屏滚动模式 - 移动端兼容 ========== */
  /* 注意：移动端继承 hero-slides.css 中的 fixed + transform 规则 */
  /* Section的overflow-y: auto 允许长内容section内部滚动 */

  /* ========== 移动端导航显示 ========== */


  /* 移动端导航栏 - 基础样式 + Dock 效果 */
  .et-hero-tabs-container {
    top: 12px !important;
    left: 50% !important;                    /* 明确保留居中定位 */
    transform: translateX(-50%) !important;  /* 明确保留居中变换 */
    width: 92% !important;
    max-width: 92vw !important;              /* 防止超出视口 */
    border-radius: 16px !important;
    height: 60px !important;
    z-index: 10000 !important;
  }

  /* 移动端滑出动画 - 覆盖基础定位，实现向上滑出+渐隐 */
  .et-hero-tabs-container--slide-out {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(-100px) !important;
  }

  /* 移动端 - 首页渐变背景效果（继承桌面端动画，添加GPU加速） */
  .et-hero-tabs-container--gradient {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: background-position;
  }

  /* 移动端 - 滚动后毛玻璃效果（确保覆盖渐变，15%不透明度） */
  .et-hero-tabs-container.et-hero-tabs-container--top,
  .et-hero-tabs-container.et-hero-tabs-container--top.et-hero-tabs-container--gradient {
    background: rgba(245, 245, 245, 0.15) !important;
    background-size: auto !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    -webkit-animation: none !important;
    animation: none !important;
  }

  /* 显示移动端页面标题和汉堡菜单 - 首页黑色，其他页面白色 */
  .et-page-title-mobile {
    display: flex !important;
    color: #333 !important;
    text-shadow: none;
    z-index: 10001 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .et-hamburger {
    display: flex !important;
    z-index: 10001 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
  }

  .et-hamburger-line {
    background-color: #333 !important;
    box-shadow: none;
    opacity: 1 !important;
  }

  /* 非首页时改为白色 */
  .et-hero-tabs-container--top .et-page-title-mobile {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .et-hero-tabs-container--top .et-hamburger-line {
    background-color: white !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  /* 隐藏桌面端水平导航 */
  .et-hero-tabs-nav {
    display: none !important; /* 移动端始终隐藏导航标签 */
  }

  /* 移动端完全隐藏首页顶栏Header（使用移动端标题代替） */
  .et-hero-header {
    display: none !important;
  }

  /* 显示移动端抽屉 */
  .et-mobile-drawer {
    display: block !important;
    z-index: 10002 !important;
  }

  /* 侧边导航点在抽屉打开时隐藏 */
  .et-mobile-drawer.open ~ .et-main .et-side-navigation,
  body.drawer-open .et-side-navigation {
    opacity: 0;
    visibility: hidden;
  }

  /* 调整侧边导航点大小 */
  .et-side-nav-dot {
    width: 14px;
    height: 14px;
  }

  .et-side-nav-dot.active {
    transform: scale(1.3);
  }


  /* ========== 轮播图移动端自适应 ========== */
  .et-carousel {
    width: 90vw !important;
    min-width: auto !important;
    height: calc(90vw * 0.6) !important; /* 保持5:3宽高比 */
    max-height: 400px !important;
  }

  /* 移动端禁用横向滚动（因为轮播图已自适应） */
  .et-hero-tabs {
    overflow-x: hidden !important;
  }

  /* ========== 下载按钮响应式 ========== */
  .et-download-btn {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 1.5vh;
  }


  /* ========== 移动端版本信息显示 ========== */
  .et-hero-version-mobile {
    display: flex !important;
    width: 100%;
    max-width: calc(100vw - 3rem);
    justify-content: center;
    gap: 0.75rem;
  }

  .et-hero-version-mobile .et-hero-version-number {
    font-size: 0.9rem;
    color: #333;
    max-width: 100%;
  }

  .et-hero-version-mobile .et-hero-version-date {
    font-size: 0.8rem;
    color: #888;
    max-width: 100%;
  }

  /* ========== Footer 响应式 ========== */
  .et-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1rem;
  }

  .et-social-links {
    justify-content: center;
  }

  .et-footer-nav {
    align-items: center;
  }

  /* Fancy Footer Responsive */
  #et-fancy-footer {
    flex-direction: column;
    padding: 5rem 5vw 2rem;
    min-height: auto;
  }

  .et-fancy-col {
    width: 100%;
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .et-fancy-col h3 {
    font-size: 2rem;
  }

  /* 优化移动设备上的背景图片显示 */
  .et-hero-tabs,
  .et-slide {
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    padding: 0 1.5rem;
  }

  .et-hero-tabs {
    padding-top: 104px;
    gap: 2vh;
  }

  /* 移动端标题和轮播图使用正常Flex流 - 移除transform偏移 */
  .et-hero-tabs > h1,
  .et-hero-tabs > h3 {
    transform: none;
  }


  /* 移动端下载按钮大幅增加上边距 */
  .et-hero-tabs .et-download-btn {
    margin-top: 4vh;
  }

  /* 移动端第一个按钮（支持车型）保持4vh上边距 */
  .et-hero-tabs .et-download-btn:first-of-type {
    margin-top: 4vh;
    margin-bottom: 0;
  }

  /* 移动端第二个按钮（立即下载）减少上边距，紧跟第一个按钮 */
  .et-hero-tabs .et-download-btn:nth-of-type(2) {
    margin-top: 1.5vh;
  }

  .et-hero-tabs h1,
  .et-slide h1 {
    font-size: 2rem;
    letter-spacing: 0.5rem;
  }

  .et-hero-tabs h3,
  .et-slide h3 {
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }

  /* 调整移动设备上的遮罩层透明度 */
  .et-slide::before {
    background: rgba(0, 0, 0, 0.5);
  }

  .et-hero-tabs::before {
    background: transparent; /* 移动端也使用透明背景，适配灰白色 */
  }

  /* 导航容器在移动端去除padding */
  .et-hero-tabs-container {
    padding: 0;
  }

  /* 滚动提示按钮 - 移动端调整 */
  .et-scroll-indicator {
    font-size: 12px;
    padding-top: 40px;
    margin-bottom: 2vh;
  }

  .et-scroll-indicator span {
    width: 20px;
    height: 20px;
    margin-left: -10px;
  }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
  /* 超小屏幕导航栏 - Dock 效果调整 */
  .et-hero-tabs-container {
    top: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 94% !important;
    max-width: 94vw !important;
    border-radius: 14px !important;
    height: 60px !important;
  }

  /* 超小屏幕滑出动画 - 覆盖基础定位 */
  .et-hero-tabs-container--slide-out {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(-100px) !important;
  }

  /* 移动端页面标题和汉堡菜单调整 */
  .et-page-title-mobile {
    font-size: 1rem;
    left: 15px;
  }

  .et-mobile-title-logo {
    width: 32px;
    height: 32px;
  }

  .et-hamburger {
    right: 10px;
    width: 40px;
    height: 40px;
  }

  /* 超小屏幕桌面端Logo在768px断点已完全隐藏，这里无需重复设置 */

  /* 抽屉内容调整 */
  .et-mobile-drawer-content {
    width: 85%;
    max-width: 280px;
  }

  .et-mobile-drawer-header {
    padding: 16px;
  }

  .et-mobile-drawer-header h3 {
    font-size: 1rem;
  }

  .et-mobile-nav-item {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  /* 内容区域 */
  .et-hero-tabs,
  .et-slide {
    padding: 0 1rem;
  }

  .et-hero-tabs {
    padding-top: 98px;
    gap: 1.5vh;
  }

  /* 小屏幕标题和轮播图使用正常Flex流 - 移除transform偏移 */
  .et-hero-tabs > h1,
  .et-hero-tabs > h3 {
    transform: none;
  }


  .et-hero-tabs h1,
  .et-slide h1 {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
  }

  .et-hero-tabs h3,
  .et-slide h3 {
    font-size: 0.9rem;
    letter-spacing: 0.15rem;
  }

  /* ========== 轮播图超小屏幕优化 ========== */
  .et-carousel {
    margin-top: 6vh;
    width: calc(100vw - 2rem) !important;
    min-width: auto !important;
    height: calc((100vw - 2rem) * 0.6) !important; /* 保持5:3宽高比 */
    max-height: 300px !important;
    transform: translateY(-6vh);
  }

  .et-hero-tabs .et-download-btn:first-of-type {
    transform: translateY(-4vh);
  }

  .et-hero-tabs .et-download-btn:nth-of-type(2) {
    transform: translateY(-4vh);
    margin-top: 1.5vh;
  }

  .et-hero-version-mobile {
    transform: translateY(-3vh);
  }

  /* 下载按钮调整 */
  .et-download-btn {
    padding: 12px 32px;
    font-size: 15px;
  }

  /* 超小屏幕版本信息调整 */
  .et-hero-version-mobile .et-hero-version-number {
    font-size: 0.85rem;
  }

  .et-hero-version-mobile .et-hero-version-date {
    font-size: 0.75rem;
  }

  /* Footer调整 */
  #et-fancy-footer {
    padding: 3rem 3vw;
  }

  .et-fancy-col {
    padding: 0.8rem;
  }

  .et-fancy-col h3 {
    font-size: 1.8rem;
  }

  .et-fancy-col p {
    font-size: 0.9rem;
  }

  /* 侧边导航点 */
  .et-side-navigation {
    right: 10px;
    gap: 8px;
    padding: 16px 8px;
  }

  .et-side-nav-dot {
    width: 9px;
    height: 9px;
  }

  /* 滚动提示按钮 - 超小屏幕优化 */
  .et-scroll-indicator {
    font-size: 10px;
    padding-top: 35px;
    margin-bottom: 1.5vh;
  }

  .et-scroll-indicator span {
    width: 18px;
    height: 18px;
    margin-left: -9px;
  }
}

/* 中等屏幕 */
@media (max-width: 1000px) {
  .et-fancy-col h3 {
    font-size: 2rem;
  }

  .et-fancy-col {
    padding: 1rem 1.5rem;
  }
}
