/* Mobile Home CSS */

:root {
  --primary-color: #4660e5; /* 假设品牌红 */
  --text-color: #333;
  --bg-color: #f5f7fa;
  --card-bg: #ffffff;
}

body.mobile-page {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-page .mobile-main {
  padding-top: 0; 
}

/* Header 适配 */
.mobile-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
}

.mobile-page .site-header .header-inner {
  background: transparent;
}

/* Section 通用 */
.mobile-section {
  padding: 20px 15px;
  background: #fff;
  min-height: 100vh; 
  box-sizing: border-box;
}
.mobile-section:nth-child(5) {
  padding: 20px 0px 40px 0px;
}
/* 走进文投背景 */
.mobile-intro {
  background: #fff url('../assets/img/zjwtbj.png') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: auto;
  padding-bottom: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-color);
  padding-left: 10px;
}

.section-header h2 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
  color: var(--text-color);
}

.more-link {
  font-size: 0.85rem;
  color: #999;
  text-decoration: none;
}

/* Banner */
.mobile-banner {
  width: 100%;
  height: 100vh; /* Full viewport height */
  background: #eee;
  position: relative;
  overflow: hidden;
}

.mobile-banner .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100%;
}

/* 左侧倒计时进度条 */
.banner-countdown-bar {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: #fff;
  border-radius: 1px;
  z-index: 20;
  overflow: hidden;
  /* 默认缩放比例 */
  --countdown-scale: 1;
  transform: translateY(-50%) scale(var(--countdown-scale));
}

.countdown-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #AF37E7 0%, #4304CB 100%);
  border-radius: 2px;
  transition: height linear;
  will-change: height;
}

/* Bottom Bar */
.banner-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    z-index: 10;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Video Button */
.video-btn-wrap {
    flex: 1;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 14px;
    transition: background 0.3s;
}

.video-btn:active {
    background: rgba(255, 255, 255, 0.3);
}

.video-btn .play-icon {
    margin-right: 6px;
    font-size: 12px;
}

/* Scroll Arrow */
.scroll-arrow-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
    cursor: pointer;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

.scroll-arrow span {
    display: block;
    width: 14px;
    height: 14px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: -4px auto 0;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Nav Buttons */
.banner-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.banner-prev img, .banner-next img {
    width: 36px;
    height: 36px;
}



/* ================= News Center Styling ================= */
.mobile-news-center {
    padding: 30px 15px;
    background: #f9f9f9 url('../assets/img/mobileBj.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    /* 默认缩放比例 */
    --news-scale: 1;
    transform: scale(var(--news-scale));
    transform-origin: top center;
    /* 补偿缩放后的宽度，保持布局正确 */
    width: calc(100% / var(--news-scale));
    margin-left: calc((100% - 100% / var(--news-scale)) / 2);
    margin-right: calc((100% - 100% / var(--news-scale)) / 2);
}

/* Header with Watermark */
.news-center-header {
    position: relative;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.news-bt{
  position: absolute;
  top: -54%;
  left: 50%;
  transform: translateX(-50%);
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 48px;
    color: rgba(8,8,11,0.05);
    z-index: 0;
}

.news-center-header h2 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    font-weight: 600;
    color: #08080B;
    margin: 0;
    letter-spacing: 1px;
}

.news-center-header h2::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: linear-gradient(to right, #7a4f9d, #4a90e2);
    margin: 0 auto 4px;
    border-radius: 2px;
}

/* Sub Headers with Blob */
.section-sub-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.purple-blob {
    width: auto;
    height: auto;
    max-width: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-left: -10px; /* Overlap effect with text on left */
    z-index: 0;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.section-sub-header h3 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #08080B;
    margin: 0;
}

/* Group News (Pinned) */
.news-group-section {
    margin-bottom: 40px;
}

.news-pinned-card {
    position: relative;
    width: 100%;
    height: calc(220px * var(--news-scale, 1));
    border-radius: 6px;
    overflow: hidden;
    background: #ddd;
}

.news-pinned-card .swiper-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.news-pinned-card .pinned-item {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.news-pinned-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-pinned-card .pinned-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #CF1E03;
    color: #fff;
    font-size: 0.75rem;
    padding: 0px 6px;
    border-radius: 1px;
    z-index: 2;
    font-weight: 600;
}

.news-pinned-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.news-pinned-card .pinned-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    min-height: calc(16px * 1.4 * 2); /* font-size * line-height * 2行 */
    height: calc(16px * 1.4 * 2);
   
}



.news-pinned-card .pinned-meta {
  position: absolute;
  bottom: 17px;
  right: 15px;
  font-weight: bold;
  font-size: 12px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-top: auto;
}

.news-pinned-card .pinned-meta i {
    margin-right: 5px;
}

/* 右上角指示点样式 */
.news-pinned-pagination {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    z-index: 10 !important;
    display: flex !important;
    gap: 6px;
    align-items: center;
    transform: none !important;
    .swiper-pagination-bullet{
      background: #F8F8FB!important;
border-radius: 2px!important;
    }
    .swiper-pagination-bullet-active{
      background: linear-gradient( 45deg, #AF37E7 0%, #4304CB 100%)!important;
    }
}

.news-pinned-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
    margin: 0 !important;
}

.news-pinned-pagination .swiper-pagination-bullet-active {
    background: #7a4f9d;
    width: 20px;
    border-radius: 4px;
}

/* Selected News (Scrolling) */
.news-selected-section {
    margin-bottom: 20px;
}

.news-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    padding-right: 15px; /* End padding */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.news-scroll-container::-webkit-scrollbar {
    display: none;
}

.news-scroll-item {
    flex: 0 0 calc(280px * var(--news-scale, 1));
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-scroll-image-wrap {
    position: relative;
    height: calc(160px * var(--news-scale, 1));
}

.news-scroll-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-scroll-image-wrap .selected-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

.news-scroll-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-scroll-date {
  font-family: DINAlternate, DINAlternate;
font-weight: bold;
font-size: 12px;
color: #949494;
    margin-bottom: 6px;
}

.news-scroll-title {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #08080B;
  line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View More Button */
.news-more-btn-wrap {
    text-align: center;
    margin-top: 10px;
}

.btn-view-more {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid;
    border-image: linear-gradient(180deg, rgba(175, 55, 231, 1), rgba(67, 4, 203, 1)) 1 1;
    color: #AF37E7;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-view-more:active {
    background: #7a4f9d;
    color: #fff;
}

/* Intro Header */
.intro-center-header {
  position: relative;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.intro-en {
  position: absolute;
  top: -54%;
  left: 50%;
  transform: translateX(-50%);
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 48px;
  color: rgba(8,8,11,0.05);
  z-index: 0;
}

.intro-center-header h2 {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  font-weight: 600;
  color: #08080B;
  margin: 0;
  letter-spacing: 1px;
}

.intro-center-header h2::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, #7a4f9d, #4a90e2);
  margin: 0 auto 4px;
  border-radius: 2px;
}

/* Intro */
.intro-text {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #08080B;
  line-height: 20px;
}

.quick-nav-grid {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 30px;
}

.quick-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  flex: 1;
}

.quick-nav-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  object-fit: contain;
  transition: transform 0.2s;
}

.quick-nav-item:active img {
  transform: scale(0.95);
}

.quick-nav-item span {
  font-size: 0.75rem;
  color: #333;
}

/* Company Banner */
.company-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: url('../assets/img/gsmcbj.png') no-repeat center center;
  background-size: 100%;
  margin-top: -50px;
  margin-bottom: -50px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



/* Stats */
.stats-grid {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  height: 100px;
  margin-top: -30px;
  margin-bottom: 0;
  background: #f2f2f2;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* 微弱的白色波浪线背景效果 */
.stats-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.3) 2px,
    rgba(255, 255, 255, 0.3) 4px
  );
  opacity: 0.5;
  pointer-events: none;
}

.stat-item {
  position: relative;
  padding-left: 20px;
  text-align: left;
  z-index: 1;
}

.stat-label-en {
  position: absolute;
  left: 0;
  top: 0;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 0.65rem;
  color: #999;
  letter-spacing: 1px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.stat-num {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(90deg, #AF37E7 0%, #4304CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num .counter {
  font-size: 20px;
  background: linear-gradient(90deg, #AF37E7 0%, #4304CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num span {
  background: linear-gradient(90deg, #AF37E7 0%, #4304CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: DINAlternate, DINAlternate;
  font-size: 10px;
  color: #838392;
  text-align: justify;
  font-style: normal;
}

/* Tech Header */
.tech-center-header {
  position: relative;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.tech-en {
  position: absolute;
  top: -54%;
  left: 50%;
  transform: translateX(-50%);
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 48px;
  color: rgba(8,8,11,0.05);
  z-index: 0;
}

.tech-center-header h2 {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  font-weight: 600;
  color: #08080B;
  margin: 0;
  letter-spacing: 1px;
}

.tech-center-header h2::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, #7a4f9d, #4a90e2);
  margin: 0 auto 4px;
  border-radius: 2px;
}

/* 文旅科技section自适应高度 */
.mobile-tech {
  min-height: auto;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.mobile-tech::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/img/mobileBj.png') no-repeat center center;
  background-size: cover;
  transform: scaleY(-1);
  z-index: 0;
  pointer-events: none;
}

.mobile-tech > * {
  position: relative;
  z-index: 1;
}

/* Tech Carousel */
.tech-carousel-container {
  width: 100%;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  padding-bottom: 10px;
  overflow: visible;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.tech-carousel-container .swiper-wrapper {
  align-items: center;
}
.tech-carousel-container .swiper-slide {
  width: 275px !important;
  transition: all 0.4s ease;
  opacity: 0.5;
  transform: scale(0.85);
  flex-shrink: 0;
}

.tech-carousel-container .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 2;
}

.tech-carousel-container .swiper-slide-prev,
.tech-carousel-container .swiper-slide-next {
  opacity: 0.7 !important;
  transform: scale(0.9) !important;
}

.tech-carousel-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.tech-carousel-pagination {
  display: none !important;
}

/* Industry Header - 使用与新闻中心相同的样式 */
.industry-center-header {
    position: relative;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.industry-bt {
    position: absolute;
    top: -54%;
    left: 50%;
    transform: translateX(-50%);
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 48px;
    color: rgba(8,8,11,0.05);
    z-index: 0;
}

.industry-center-header h2 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    font-weight: 600;
    color: #08080B;
    margin: 0;
    letter-spacing: 1px;
}

.industry-center-header h2::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: linear-gradient(to right, #7a4f9d, #4a90e2);
    margin: 0 auto 4px;
    border-radius: 2px;
}

.industry-center-header .industry-subtitle {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* Industry List */
/* 产业布局section自适应高度 */
.mobile-industry {
  min-height: auto;
  padding-bottom: 20px;
}

/* 圆形布局容器 */
.industry-circle-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 20px 40px 20px;
  overflow: hidden;
}

.industry-image {
  width: 95%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: industryRotate 48s ease-in-out infinite;
  transform-origin: center center;
  position: relative;
  z-index: 1;
}

/* 中间大写文字 */
.industry-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.center-text-line {
  font-weight: 600;
  font-size: 14px;
  color: #838392;
  line-height: 18px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
}

/* 文字覆盖层容器 - 跟随图片同步旋转 */
.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  animation: industryRotate 48s ease-in-out infinite;
  transform-origin: center center;
}

/* 单个模块区域 - 反向旋转保持文字正向 */
.industry-module {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px;
  min-width: 120px;
  animation: industryRotateReverse 48s ease-in-out infinite;
  transform-origin: center center;
}

.industry-module:hover,
.industry-module:active {
  opacity: 0.9;
}

.industry-module:hover {
  transform: scale(1.05);
}

/* 英文标题 - 第一行 */
.module-title-en {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 6px;
  color: rgba(255,255,255,0.8);
  line-height: 8px;
  text-align: left;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 4px;

}

/* 底部行容器 - 包含编号和中文标题 */
.industry-module-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  order: 2;
}

/* 模块编号 */
.module-number {
  font-family: JCHEadA;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 20px;
}

/* 中文标题 */
.module-title-cn {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

@keyframes industryRotate {
  /* 模块1：0度 - 停留 */
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(0deg);
  }
  /* 旋转到模块2 - 缓慢旋转 */
  20% {
    transform: rotate(72deg);
  }
  /* 模块2：72度 - 停留 */
  30% {
    transform: rotate(72deg);
  }
  /* 旋转到模块3 - 缓慢旋转 */
  40% {
    transform: rotate(144deg);
  }
  /* 模块3：144度 - 停留 */
  50% {
    transform: rotate(144deg);
  }
  /* 旋转到模块4 - 缓慢旋转 */
  60% {
    transform: rotate(216deg);
  }
  /* 模块4：216度 - 停留 */
  70% {
    transform: rotate(216deg);
  }
  /* 旋转到模块5 - 缓慢旋转 */
  80% {
    transform: rotate(288deg);
  }
  /* 模块5：288度 - 停留 */
  100% {
    transform: rotate(288deg);
  }
}

/* 反向旋转动画 - 保持文字正向 */
@keyframes industryRotateReverse {
  /* 模块1：0度 - 停留 */
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(0deg);
  }
  /* 反向旋转到模块2 */
  20% {
    transform: rotate(-72deg);
  }
  /* 模块2：-72度 - 停留 */
  30% {
    transform: rotate(-72deg);
  }
  /* 反向旋转到模块3 */
  40% {
    transform: rotate(-144deg);
  }
  /* 模块3：-144度 - 停留 */
  50% {
    transform: rotate(-144deg);
  }
  /* 反向旋转到模块4 */
  60% {
    transform: rotate(-216deg);
  }
  /* 模块4：-216度 - 停留 */
  70% {
    transform: rotate(-216deg);
  }
  /* 反向旋转到模块5 */
  80% {
    transform: rotate(-288deg);
  }
  /* 模块5：-288度 - 停留 */
  100% {
    transform: rotate(-288deg);
  }
}

.industry-card {
  position: absolute;
  width: 180px;
  height: 180px;
  overflow: visible;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

/* 六个卡片的位置 - 圆形排列 */
.industry-card:nth-child(1) {
  top: 0;
  right: 0;
  transform: translate(-90%, -40%);
}

.industry-card:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(4%, -166%);
}

.industry-card:nth-child(3) {
  bottom: 0;
  right: 0;
  transform: translate(-4%, -149%);
}

.industry-card:nth-child(4) {
  bottom: 0;
  left: 0;
  transform: translate(90%, -108%);
}

.industry-card:nth-child(5) {
  top: 50%;
  left: 0;
  transform: translate(0%, -88%);
}

.industry-card:nth-child(6) {
  top: 0;
  left: 0;
  transform: translate(0%, 0%);
}


/* 移动端适配 */
@media (max-width: 767px) {

  .industry-image {
    width: 104%;
  }

  /* 移动端模块文字适配 */
  .module-number {
    font-size: 1.5rem;
  }



  .module-title-cn {
    font-size: 0.75rem;
  }

  .industry-module {
    min-width: 100px;
    padding: 6px;
  }
}

.industry-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.industry-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  box-sizing: border-box;
}

.industry-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.industry-content h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.industry-content .industry-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

/* Footer 适配 */
.site-footer {
  padding-bottom: 20px; /* 适配可能的底部安全区 */
}

/* Floating Window - Mobile Optimized */
.floating-window {
  position: fixed;
  bottom: 10%;
  right: 10px;
  z-index: 9999;
  width: 180px; /* Smaller width for mobile */
  animation: floatingMotion 4s ease-in-out infinite;
  transform-origin: center;
  display: block; /* Ensure it's visible */
}

.floating-content {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(43, 119, 230, 0.8) 100%);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-image {
  width: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 100;
}

.close-btn svg {
  width: 12px;
  height: 12px;
  stroke: #333;
}

@keyframes floatingMotion {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ================= 倒计时进度条响应式适配 ================= */

/* 小屏手机 (320px-374px) - 缩小到85% */
@media screen and (max-width: 374px) {
    .banner-countdown-bar {
        --countdown-scale: 0.85;
        left: 15px;
    }
}

/* 标准手机 (375px-414px) - 保持100% */
@media screen and (min-width: 375px) and (max-width: 414px) {
    .banner-countdown-bar {
        --countdown-scale: 1;
        left: 20px;
    }

    /* 中间文字适配 */
    .center-text-line {
        font-size: 12px;
        line-height: 16px;
    }
}

/* 大屏手机 (415px-480px) - 放大到105% */
@media screen and (min-width: 415px) and (max-width: 480px) {
    .banner-countdown-bar {
        --countdown-scale: 1.05;
        left: 22px;
    }

    /* 中间文字适配 */
    .center-text-line {
        font-size: 14px;
        line-height: 20px;
    }
}

/* 小屏平板/折叠屏展开 (481px-768px) - 放大到115% */
@media screen and (min-width: 481px) and (max-width: 768px) {
     /* 中间文字适配 */
     .center-text-line {
      font-size: 24px;
      line-height: 24px;
  }
    .banner-countdown-bar {
        --countdown-scale: 1.15;
        left: 25px;
    }

  
}

/* 平板 (769px-1024px) - 放大到130% */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* 中间文字适配 */
    .center-text-line {
      font-size: 28px;
      line-height: 28px;
  }
    .banner-countdown-bar {
        --countdown-scale: 1.3;
        left: 30px;
    }
}

/* 平板 (1024px-1366px) - 放大到140% */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .banner-countdown-bar {
        --countdown-scale: 1.4;
        left: 35px;
    }
}

/* 折叠屏横屏模式 (600px-900px 横屏) */
@media screen and (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
    .banner-countdown-bar {
        --countdown-scale: 1.2;
        left: 25px;
    }
}

/* 横屏模式通用适配 */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
    .banner-countdown-bar {
        --countdown-scale: 1.1;
        left: 22px;
    }
}

/* ================= 新闻中心响应式缩放适配 ================= */

/* 小屏手机 (320px-374px) - 缩小到85% */
@media screen and (max-width: 374px) {
    .mobile-news-center {
        --news-scale: 0.85;
    }
}

/* 标准手机 (375px-414px) - 保持100% */
@media screen and (min-width: 375px) and (max-width: 414px) {
    .mobile-news-center {
        --news-scale: 1;
    }
}

/* 大屏手机 (415px-480px) - 放大到105% */
@media screen and (min-width: 415px) and (max-width: 480px) {
    .mobile-news-center {
        --news-scale: 1;
    }
}

/* 小屏平板/折叠屏展开 (481px-768px) - 放大到115% */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .mobile-news-center {
        --news-scale: 1;
    }
}

/* 平板 (769px-1024px) - 放大到130% */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .mobile-news-center {
        --news-scale: 1.3;
    }
}
/* 平板 (769px-1024px) - 放大到130% */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .mobile-news-center {
      --news-scale: 1.4;
  }
}
/* 折叠屏横屏模式 (600px-900px 横屏) */
@media screen and (min-width: 600px) and (max-width: 900px) and (orientation: landscape) {
    .mobile-news-center {
        --news-scale: 1.2;
    }
}

/* 横屏模式通用适配 */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
    .mobile-news-center {
        --news-scale: 1.1;
    }
}

/* ================= 移动端视频播放器样式 ================= */

.mobile-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-video-container.active {
  display: block;
  opacity: 1;
}

.mobile-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 视频控制层 */
.mobile-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.mobile-video-container.hide-controls .mobile-video-controls {
  opacity: 0;
  pointer-events: none;
}

/* 控制按钮 */
.mobile-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  flex-shrink: 0;
}

.mobile-control-btn:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 1);
}

.mobile-control-btn svg {
  width: 24px;
  height: 24px;
}

/* 进度条容器 */
.mobile-progress-container {
  flex: 1;
  height: 6px;
  position: relative;
  cursor: pointer;
}

/* 进度条 */
.mobile-progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: relative;
  overflow: visible;
}

/* 缓冲进度 */
.mobile-progress-buffered {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
}

/* 播放进度 */
.mobile-progress-played {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
}

/* 进度条拖拽点 */
.mobile-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-progress-container:active .mobile-progress-thumb {
  opacity: 1;
}

/* 关闭按钮 */
.mobile-close-btn {
  position: absolute;
  top: 100px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
}

.mobile-close-btn:active {
  transform: scale(0.9);
  background: rgba(220, 38, 38, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
}

.mobile-close-btn svg {
  width: 24px;
  height: 24px;
}

/* 控制条自动隐藏 */
.mobile-video-container.auto-hide .mobile-video-controls,
.mobile-video-container.auto-hide .mobile-close-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-video-container.auto-hide.show-controls .mobile-video-controls,
.mobile-video-container.auto-hide.show-controls .mobile-close-btn {
  opacity: 1;
  pointer-events: auto;
}

/* ================= 走进文投响应式适配 ================= */

/* 平板 (481px-768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .mobile-intro {
    padding: 30px 20px 20px 20px;
  }

  .mobile-industry {
    padding: 20px 15px 20px 15px;
  }

  .mobile-tech {
    padding: 20px 15px 20px 15px;
  }

  .tech-carousel-container .swiper-slide {
    width: 320px !important;
  }

  .intro-text {
    font-size: 20px;
    line-height: 32px;
  }

  .intro-center-header {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .intro-center-header h2 {
    font-size: 1.6rem;
  }

  .intro-en {
    font-size: 56px;
  }

  .intro-center-header h2::before {
    width: 30px;
    height: 1.5px;
  }

  .quick-nav-item span {
    font-size: 0.85rem;
  }

  .quick-nav-item img {
    width: 45px;
    height: 45px;
  }

  .quick-nav-grid {
    gap: 12px;
    margin-bottom: 40px;
  }

  .company-banner {
    min-height: 200px;
    margin-top: 40px;
  }

  .stats-grid {
    height: 120px;
    padding: 25px 15px;
    gap: 15px;
  }

  .stat-num {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .stat-num .counter {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
    min-width: 80px;
  }

  .stat-label-en {
    font-size: 0.75rem;
  }

  .stat-item {
    padding-left: 25px;
  }

  /* Banner 底部按钮适配 */
  .video-btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 24px;
  }

  .video-btn .play-icon {
    font-size: 14px;
    margin-right: 8px;
  }

  .scroll-arrow {
    width: 30px;
    height: 30px;
  }

  .scroll-arrow span {
    width: 18px;
    height: 18px;
    border-bottom-width: 3px;
    border-right-width: 3px;
  }

  .banner-prev img, .banner-next img {
    width: 45px;
    height: 45px;
  }

  /* 飘窗适配 */
  .floating-window {
    width: 220px;
    right: 15px;
    bottom: 12%;
  }

  .close-btn {
    width: 28px;
    height: 28px;
  }

  .close-btn svg {
    width: 16px;
    height: 16px;
  }

  /* 产业布局标题适配 */
  .industry-center-header {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .industry-center-header h2 {
    font-size: 1.6rem;
  }

  .industry-bt {
    font-size: 56px;
  }

  .industry-center-header h2::before {
    width: 30px;
    height: 1.5px;
  }

  /* 平板模块文字适配 */
  .module-number {
    font-size: 1.4rem;
  }

  .module-title-en {
    font-size: 0.7rem;
  }

  .module-title-cn {
    font-size: 0.9rem;
  }

  .industry-module {
    min-width: 130px;
    padding: 40px;
  }

  /* 文旅科技标题适配 */
  .tech-center-header {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .tech-center-header h2 {
    font-size: 1.6rem;
  }

  .tech-en {
    font-size: 56px;
  }

  .tech-center-header h2::before {
    width: 30px;
    height: 1.5px;
  }

  /* 回到顶部按钮适配 */
  .scroll-to-top-btn {
    width: 60px;
    height: 60px;
    right: 25px;
    bottom: 25px;
  }

  .scroll-to-top-btn svg {
    width: 20px;
    height: 20px;
  }

  .scroll-to-top-btn span {
    font-size: 12px;
  }
}

/* 大平板 (769px-1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mobile-intro {
    padding: 40px 30px 20px 30px;
  }

  .mobile-industry {
    padding: 20px 15px 20px 15px;
  }

  .mobile-tech {
    padding: 20px 15px 20px 15px;
  }

  .tech-carousel-container .swiper-slide {
    width: 480px !important;
  }

  .intro-text {
    font-size: 30px;
    line-height: 46px;
  }

  .intro-center-header {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .intro-center-header h2 {
    font-size: 1.8rem;
  }

  .intro-en {
    font-size: 64px;
  }

  .intro-center-header h2::before {
    width: 35px;
    height: 2px;
  }

  .quick-nav-item span {
    font-size: 1.95rem;
  }

  .quick-nav-item img {
    width: 80px;
    height: 80px;
  }

  .quick-nav-grid {
    gap: 15px;
    margin-bottom: 50px;
  }

  .company-banner {
    margin-top: 50px;
    min-height: 220px;

  }

  .stats-grid {
    height: 220px;
    padding: 60px 20px;
    gap: 20px;
  }

  .stat-num {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .stat-num .counter {
    font-size: 32px;
  }

  .stat-label {
    font-size: 18px;
    min-width: 90px;
  }

  .stat-label-en {
    font-size: 0.85rem;
  }

  .stat-item {
    padding-left: 30px;
  }

  /* Banner 底部按钮适配 */
  .video-btn {
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 28px;
  }

  .video-btn .play-icon {
    font-size: 16px;
    margin-right: 10px;
  }

  .scroll-arrow {
    width: 36px;
    height: 36px;
  }

  .scroll-arrow span {
    width: 22px;
    height: 22px;
    border-bottom-width: 3px;
    border-right-width: 3px;
  }

  .banner-prev img, .banner-next img {
    width: 54px;
    height: 54px;
  }

  /* 飘窗适配 */
  .floating-window {
    width: 260px;
    right: 20px;
    bottom: 12%;
  }

  .close-btn {
    width: 32px;
    height: 32px;
  }

  .close-btn svg {
    width: 18px;
    height: 18px;
  }

  /* 产业布局标题适配 */
  .industry-center-header {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .industry-center-header h2 {
    font-size: 1.8rem;
  }

  .industry-bt {
    font-size: 64px;
  }

  .industry-center-header h2::before {
    width: 35px;
    height: 2px;
  }

  /* 大平板模块文字适配 */
  .module-number {
    font-size: 40px;
  }

  .module-title-en {
    font-size: 20px;
  }

  .module-title-cn {
    font-size: 30px;
  }

  .industry-module {
    min-width: 140px;
    padding: 40px;
  }

  /* 文旅科技标题适配 */
  .tech-center-header {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .tech-center-header h2 {
    font-size: 1.8rem;
  }

  .tech-en {
    font-size: 64px;
  }

  .tech-center-header h2::before {
    width: 35px;
    height: 2px;
  }

  /* 回到顶部按钮适配 */
  .scroll-to-top-btn {
    width: 70px;
    height: 70px;
    right: 30px;
    bottom: 30px;
  }

  .scroll-to-top-btn svg {
    width: 24px;
    height: 24px;
  }

  .scroll-to-top-btn span {
    font-size: 14px;
  }
}

/* 折叠屏横屏模式 (481px-1024px landscape) */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
  .mobile-intro {
    padding: 30px 25px 20px 25px;
    min-height: auto;
  }

  .mobile-industry {
    padding: 20px 15px 20px 15px;
    min-height: auto;
  }

  .mobile-tech {
    padding: 20px 15px 20px 15px;
    min-height: auto;
  }

  .tech-carousel-container .swiper-slide {
    width: 300px !important;
  }

  .intro-text {
    font-size: 16px;
    line-height: 24px;
  }

  .intro-center-header {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .intro-center-header h2 {
    font-size: 1.6rem;
  }

  .intro-en {
    font-size: 56px;
  }

  .quick-nav-item span {
    font-size: 0.85rem;
  }

  .quick-nav-item img {
    width: 45px;
    height: 45px;
  }

  .company-banner {
    min-height: 180px;
    margin-top: -50px;
    margin-bottom: -50px;
  }

  .stats-grid {
    height: 110px;
    padding: 20px 15px;
  }

  .stat-num .counter {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Banner 底部按钮适配 */
  .video-btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 24px;
  }

  .video-btn .play-icon {
    font-size: 14px;
    margin-right: 8px;
  }

  .scroll-arrow {
    width: 28px;
    height: 28px;
  }

  .scroll-arrow span {
    width: 16px;
    height: 16px;
  }

  .banner-prev img, .banner-next img {
    width: 42px;
    height: 42px;
  }

  /* 飘窗适配 */
  .floating-window {
    width: 200px;
    right: 12px;
    bottom: 10%;
  }

  .close-btn {
    width: 26px;
    height: 26px;
  }

  .close-btn svg {
    width: 14px;
    height: 14px;
  }

  /* 产业布局标题适配 */
  .industry-center-header {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .industry-center-header h2 {
    font-size: 1.6rem;
  }

  .industry-bt {
    font-size: 56px;
  }

  .industry-center-header h2::before {
    width: 30px;
    height: 1.5px;
  }

  /* 折叠屏模块文字适配 */
  .module-number {
    font-size: 1.6rem;
  }

  .module-title-en {
    font-size: 0.6rem;
  }

  .module-title-cn {
    font-size: 0.8rem;
  }

  .industry-module {
    min-width: 110px;
    padding: 8px;
  }

  /* 文旅科技标题适配 */
  .tech-center-header {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .tech-center-header h2 {
    font-size: 1.6rem;
  }

  .tech-en {
    font-size: 56px;
  }

  .tech-center-header h2::before {
    width: 30px;
    height: 1.5px;
  }

  /* 回到顶部按钮适配 */
  .scroll-to-top-btn {
    width: 55px;
    height: 55px;
    right: 20px;
    bottom: 20px;
  }

  .scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
  }

  .scroll-to-top-btn span {
    font-size: 11px;
  }
}
