html, body {
  font-family: "Microsoft YaHei","PingFang SC","Hiragino Sans GB","Heiti SC","Source Han Sans SC",Arial,sans-serif !important;
}

h1,h2,h3,h4,h5,h6,
button,input,textarea,select {
  font-family: inherit !important;
}

html, body {
  height: 100%; margin: 0;
}
img {
  image-rendering: -webkit-optimize-contrast; /* 对某些浏览器启用更高质量的图片渲染 */
  image-rendering: crisp-edges; /* 对其他浏览器启用清晰的边缘 */
}
.outer {
  height: 100vh;
}
.outer .swiper-slide {
  height: 100vh;
}
.inner {
  height: 100%;
}       /* 第一屏里的子 swiper 占满 */
.inner .swiper-slide {
  height: 100%;
}
body p,body{
  color: #444444;
  font-size: 16px;
  line-height: 26px;
}
body p{
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 26px;
  color: #444444;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
  touch-action: none;
  touch-action: pan-y;
}
dl {
margin: 0;
}

dt {
font-weight: normal;
}

ul,
li {
list-style-type: none;
margin: 0;
}
b, strong {
  font-weight: 400 !important;
}
summary {
  list-style: none;
}
h1,h2,h3,h4,h5,h6{
  font-weight: var(--heading--font-weight-strong) !important;
}
h1,h2,.h1,.h2{
  color: #0d0d0d;
  font-weight: 500 !important;
}
h3,h4,h5,h6,.h3,.h4,.h5,.h6{
  color: #0d0d0d;
  font-weight: 400 !important;
}
a{
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
  color: #0d0d0d;
}
a:focus {
  text-decoration: none !important;
  outline: none !important;
  background-color: transparent !important;
  color: inherit !important;
}
img {
border: 0;
vertical-align: middle;
transition: all 0.6s;
}
table {
border-collapse: collapse;
table-layout: fixed;
width: 100% !important;
word-wrap: break-word;
}
td{
  width: fit-content;
}
input,
textarea,
select,
button {
border: 0;
outline: none;
}
.m-35{
  margin-top: 35px;
}
.m-55{
  margin-top: 55px;
}
.aligncenter{
  display: flex !important;
  justify-content: center !important;
}
.alignrights{
  text-align: right;
}
.mt-base{
  margin-top: 30px;
}
.pt-base{
  padding: 80px 0;
}
.width_800{
  max-width: 800px;
  margin: 0 auto;
}
.vc_row.container{
  margin: 0 auto !important;
}
.banner .swiper-slide { position: relative; }
.banner_media { position: absolute; inset: 0; }
.banner_media img,
.banner_media video { width: 100%; height: 100%; object-fit: cover; display:block; }
.banner_cover { position: relative; z-index: 2; }
/* ===== 通用：把 Swiper 默认小圆点变成“胶囊点” ===== */
.swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255,255,255,.35);
  margin: 8px !important;
  transition: width .25s ease, height .25s ease, transform .25s ease, background-color .25s ease;
}

.swiper-pagination-bullet-active{
  width: 26px;                /* 激活态拉长 */
  background: rgba(255,255,255,.95);
  transform: scale(1.05);
}

/* ===== 外层（竖向整屏）的 pagination：强制竖排 ===== */
.outer-pagination{
  /* 位置：右侧居中 */
  position: absolute;
  right: 28px !important;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;

  /* 关键：竖向排列 */
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* 外观 */
  padding: 12px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 覆盖 Swiper 默认 margin，让它别横向挤 */
.outer-pagination .swiper-pagination-bullet{
  margin: 0 !important;

  width: 7px;
  height: 7px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255,255,255,.35);
  transition: width .25s ease, height .25s ease, background-color .25s ease, transform .25s ease;
}

/* 激活态：做成“横向小胶囊”（仍然竖着排，只是当前变长） */
.outer-pagination .swiper-pagination-bullet-active{
  width: 7px;
  height: 22px;
  background: rgba(255,255,255,.95);
  transform: scale(1.05);
}

/* ===== 内层（第一屏横向）的分页：底部居中 + 轻浮层 ===== */
.inner-pagination{
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  bottom: 28px !important;
  top: auto !important;
  width: auto !important;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

/* 内层的 bullet 更“精致”一点 */
.inner-pagination .swiper-pagination-bullet{
  margin: 0 !important;
}
.inner-pagination .swiper-pagination-bullet-active{
  width: 30px;
}

/* ===== 悬停反馈（PC 更有质感） ===== */
@media (hover:hover){
  .swiper-pagination-bullet:hover{
    transform: scale(1.12);
    background: rgba(255,255,255,.65);
  }
}

/* ===== 移动端适配：外层分页不要太靠边 ===== */
@media (max-width: 768px){
  .outer-pagination{
    right: 12px !important;
    padding: 10px 8px;
  }
  .inner-pagination{
    bottom: 16px !important;
    padding: 8px 12px;
  }
}
.banner .swiper-slide{
  display: flex;
  align-items: center;   /* 上下居中 */
}
.banner_cover{
  max-width: 800px;
  width: calc(100% - 48px);
  z-index: 2;
}
.banner-left-left,
.banner-left-right{
  justify-content: flex-start; /* 左右居中（可改为 flex-start） */
}
.sreentwo .banner_cover,
.banner-left-left .banner_cover{
  padding-left: 200px;
}
.banner-left-right .banner_cover{
  text-align: right;
}
.banner-center-center{
  justify-content: center;
}
.banner-center-center .banner_cover{
  text-align: center;
}
.screentwo_box .banner_cover h2,
.banner-center-center .banner_cover h2,
.banner-left-left .banner_cover h2,
.banner-left-right .banner_cover h2{
  font-size: 48px;
  color: #ffffff;
}
.screentwo_box .banner_cover h3,
.banner-center-center .banner_cover h3,
.banner-left-left .banner_cover h3,
.banner-left-right .banner_cover h3{
  font-size: 38px;
  color: #ffffff;
}
.screentwo_box .banner_cover *,
.banner-center-center .banner_cover *,
.banner-left-left .banner_cover *,
.banner-left-right .banner_cover *{
  margin-bottom: 15px;
}
.btn_group{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 50px;
}
.banner-left-right .btn_group{
  justify-content: flex-end;
}
.screentwo_box .btn_group,
.banner-left-left .btn_group{
  justify-content: flex-start;
}
.banner-center-center .btn_group{
  justify-content: center;
}
.banner4 h2{
  color: #27314c !important;
  margin-bottom: 35px !important;
}
.banner3 .btn_light,
.banner4 .btn_light{
  color: #4c4c4c;
}
.banner4 .banner_cover{
  padding-left: 100px;
}
/* 主按钮：玻璃拟态浅色按钮 */
.btn_light{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 46px;
  min-width: 160px;
  padding: 0 22px;
  border-radius: 999px;

  /* 文字 */
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .5px;
  color: rgba(255,255,255,.95);
  text-decoration: none;

  /* 玻璃质感底 */
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* 阴影 + 过渡 */
  box-shadow:
    0 10px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

/* 悬停：更亮 + 微上浮 */
@media (hover:hover){
  .btn_light:hover{
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.55);
    transform: translateY(-2px);
    box-shadow:
      0 14px 40px rgba(0,0,0,.24),
      inset 0 1px 0 rgba(255,255,255,.30);
  }
}

/* 按下：轻微缩回 */
.btn_light:active{
  transform: translateY(0);
  box-shadow:
    0 10px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.20);
}

/* 键盘可访问性 */
.btn_light:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.35),
    0 14px 40px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.30);
}

/* 小屏微调 */
@media (max-width: 768px){
  .btn_light{
    height: 42px;
    padding: 0 18px;
    font-size: 15px;
  }
}
/* 初始状态：不在动画中的元素可以是正常显示 */
.fm-fade-up {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
}

/* 触发动画 */
.fm-fade-up.fm-animate{
  animation: fmFadeUp 800ms ease forwards;
  animation-delay: var(--fm-delay, 0ms); /* ✅ 每个元素可不同延迟 */
}

@keyframes fmFadeUp {
  from { opacity: 0; transform: translateY(18px); filter: blur(2px); }
  to   { opacity: 1; transform: translateY(0);   filter: blur(0); }
}

/* 无障碍：减少动效 */
@media (prefers-reduced-motion: reduce){
  .fm-fade-up, .fm-fade-up.fm-animate{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}
/* 固定头部容器：你如果是 header.header-fixed 用这个 */
header.header-fixed{
  position: fixed !important;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* 如果 Swiper/slide 有 transform 导致层级问题，可加这一句增强 */
.header-fixed{
  transform: translateZ(0);
}
.head_main{
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo */
.head_logo a{
  display: inline-flex;
  align-items: center;
}
.head_logo img{
  height: 44px;           /* 统一高度，更高级 */
  width: auto;
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.head_logo a:hover img{
  transform: translateY(-1px);
  opacity: .95;
}

/* 菜单区域占中间 */
.head_menu{
  flex: 1;
  display: flex;
  justify-content: center;
}
.head_menu .primary-navigation .primary-menu-container{
  display: flex;
  align-items: center;
}

.head_menu .primary-navigation .menu-wrapper{
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.head_menu .primary-navigation .menu-wrapper > li{
  position: relative;
}

.head_menu .primary-navigation .menu-wrapper > li > a{
  display: inline-flex;
  align-items: center;
  padding: 10px 2px;
  color: rgba(13,13,13,.82);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 12px !important;
}

/* hover 提亮 + 轻微上移 */
@media (hover:hover){
  .head_menu .primary-navigation .menu-wrapper > li > a:hover{
    color: rgba(13,13,13,1);
    transform: translateY(-1px);
  }
}

/* 下划线动效 */
.head_menu .primary-navigation .menu-wrapper > li > a::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: .9;
  transition: transform .25s ease;
}

/* hover 出现下划线 */
@media (hover:hover){
  .head_menu .primary-navigation .menu-wrapper > li > a:hover::after{
    transform: scaleX(1);
  }
}

/* 当前页高亮 */
.head_menu .primary-navigation .menu-wrapper > li.current-menu-item > a,
.head_menu .primary-navigation .menu-wrapper > li.current_page_item > a{
  color: rgba(13,13,13,1);
}
.head_menu .primary-navigation .menu-wrapper > li.current-menu-item > a::after,
.head_menu .primary-navigation .menu-wrapper > li.current_page_item > a::after{
  transform: scaleX(1);
}
.head_search{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.head_search .search_click{
  width: 20px;
  height: 20px;
  cursor: pointer;

  padding: 10px;
  box-sizing: content-box;
  border-radius: 999px;

  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

@media (hover:hover){
  .head_search .search_click:hover{
    transform: translateY(-1px);
    background: rgba(0,0,0,.07);
    border-color: rgba(0,0,0,.10);
  }
}
.header_container{
  padding: 0 150px;
}
.head_main .primary-navigation .current-menu-item > a:first-child,.head_main .primary-navigation .current_page_item > a:first-child{
  text-decoration: none !important;
}
.head_main .primary-navigation .primary-menu-container {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.head_main .primary-navigation{
  margin-left: 0;
}

.head_search{
  position: relative;
}
.head_search > img:hover{
  cursor: pointer;
}
.head_search .searchwp-form{
  opacity: 0;
  transform: rotateX(90deg);
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 10;
  margin-top: 15px;
}
.head_search .searchwp-form.active{
  transition: opacity .3s, transform .3s;
  visibility: visible;
  opacity: 1;
  transform: rotateX(0);
  transform-origin: top;
}
.head_search #searchwp-form-1 .swp-input{
  width: 260px !important;
  height: 45px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-image: none !important;
}
#searchwp-form-1 input[type=submit] {
  height: 45px;
  width: 45px;
  padding: 0;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-image: url('/wp-content/uploads/2026/01/search-white.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  border: 0;
}
#searchwp-form-1 input[type=submit]:hover{
  border-color: #222222 !important;
}
.head_search form.searchwp-form .swp-flex--gap-md {
  gap: 0;
}
.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img,
input:focus,
a:focus{
  outline: unset !important;
}
.sreentwo{
  height: 100%;
}
.screentwo_box{
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
}
.sreentwo .banner_cover{
  padding-left: 200px;
}
/* ===========================
   Screen 3 目标样式：左右两张整高海报
=========================== */

/* 第三屏：占满整屏 */
.screenthree{
  height: 100%;
}

/* 两个 item 横排铺满 */
.screen-three__list{
  height: 100%;
  display: flex;
  gap: 0;
}

/* 每个 item 占 50% 高度占满 */
.screen-three__item{
  position: relative;
  flex: 1 1 50%;
  height: 100%;
  overflow: hidden;
  background: #f6f6f6;
}

/* 背景图：用你现有 <img> 来铺满 */
.screen-three__image{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.screen-three__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* 轻微蒙层（让文字更稳、更像你截图那种质感） */
.screen-three__item::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.35) 32%, rgba(255,255,255,0) 60%),
    linear-gradient(0deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,0) 45%);
  pointer-events:none;
}

/* 文本区域：顶部居中（接近截图） */
.screen-three__content{
    position: relative;
    z-index: 2;
    width: 80%;
    margin: 0 auto;
    padding-top: 170px;
    text-align: left;
    color: #0d0d0d;
}

/* 让内容里的标题更像截图（你 content 是富文本，直接限制它里面的 h2/h3/p） */
.screen-three__content h2{
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 600 !important;
  color: #0d0d0d;
}
.screen-three__flag {
  margin-right: 20px;
  margin-bottom: 0 !important;
}
.screen-three__content h3{
  font-size: 48px;
  line-height: 1.4;
  margin-bottom: 35px;
  font-weight: 400 !important;
  color: #222222;
}

.screen-three__content p{
  margin-bottom: 10px;
  font-size: 40px;
  color: rgba(13,13,13,.72);
  font-weight: 100;
  color: #222222;
}

/* 如果 content 里有“对勾卖点”那种列表，给它做成单行精致样式 */
.screen-three__content ul{
  margin: 12px 0 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 25px;
}
.screenfour .screen-three__content ul{
  margin-top: 50px;
  margin-bottom: 50px;
}
.screenfive .screen-three__content ul{
  margin-top: 30px;
  margin-bottom: 30px;
}
.screen-three__content li{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(13,13,13,.70);
  font-size: 28px;
  line-height: 36px;
  font-weight: 300;
}

/* 底部横条：半透明 + 左按钮 + 右脚注（像截图） */
.screen-three__footer{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;

  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  background: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* 右侧脚注 */
.screen-three__note{
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 20px;
  text-shadow: 0 6px 18px rgba(0,0,0,.25);
  white-space: nowrap;
}

/* 左侧按钮：做成截图那种“细边框方按钮” */
.screen-three__footer .btn_light{
  height: 36px;
  min-width: 110px;
  padding: 0 18px;
  border-radius: 999px;           /* ✅ 方形 */
  font-size: 14px;
  font-weight: 500;
  color: rgba(13,13,13,.80);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(13,13,13,.28);
  box-shadow: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

@media (hover:hover){
  .screen-three__footer .btn_light:hover{
    background: rgba(255,255,255,.28);
    border-color: rgba(13,13,13,.40);
    transform: translateY(-1px);
  }
}

/* 中屏：标题小一点 */
@media (max-width: 1200px){
  .screen-three__content{
    padding-top: 92px;
    max-width: 480px;
  }
  .screen-three__content h2{ font-size: 34px; }
}

/* 移动端：上下堆叠（两张海报上下） */
@media (max-width: 900px){
  .screen-three__item{
    flex-basis: auto;
    height: 50%;
  }
  .screen-three__note{
    white-space: normal;
    max-width: 55%;
    text-align: right;
  }
}

@media (max-width: 520px){
  .screen-three__content{
    padding-top: 72px;
    max-width: 92%;
  }
  .screen-three__content h2{ font-size: 28px; }
  .screen-three__footer{
    padding: 14px 14px;
  }
}
/* 让 icon-check 自己渲染一个对勾（无需任何库） */
.icon-check{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(13,13,13,.25);
  margin-right: 10px;
  flex: 0 0 18px;
  position: relative;
}

/* 用 ::before 画对勾 */
.icon-check::before{
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(13,13,13,.75);
  border-bottom: 2px solid rgba(13,13,13,.75);
  transform: rotate(-45deg);
  margin-top: -1px;
}
.screenfour h2,
.screenfour h3,
.screenfour p,
.screenfour li{
  color: #ffffff;
}
.screenfour .icon-check::before{
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.screenfour .icon-check{
  border-color: #ffffff;
  margin-bottom: 0 !important;
}
.screen-four__txt{
  font-size: 20px !important;
}
.screenfour .screen-three__content{
  width: 100%;
}
.screenfive .btn_light{
  color: #4c4c4c;
}
.screenfive h2,
.screenfive h3,
.screenfive p,
.screenfive li{
  color: #222222;
}
.screenfive h2{
  color: #222222 !important;
}
/* 第六屏全屏 */
.outer .swiper-slide { height: 100vh; }
.outer .swiper-slide > .screensix{
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* 顶部标题 + tabs */
.screensix .case-head{
  flex: 0 0 auto;
  text-align: center;
  padding: 40px 0 18px;
  max-width: unset;
}

/* tabs（Swiper pagination bullets） */
.screensix .case-tabs{
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 12px;
}

.screensix .case-tabs .swiper-pagination-bullet{
  width: auto;
  height: auto;
  margin: 0 !important;
  background: transparent;
  opacity: 1;
  cursor: pointer;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  position: relative;
  border-radius: 0;
  padding: 0 10px;
}
.screensix .case-tabs .swiper-pagination-bullet-active,
.screensix .case-tabs .swiper-pagination-bullet:hover{
  transform: unset;
}
.screensix .case-tabs .swiper-pagination-bullet-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-13px;
  height:2px;
  background:#fff;
}

/* 轮播区域吃满剩余 */
.screensix .case-slider{
  flex: 1 1 auto;
  min-height: 0;
}

.screensix .case-slider,
.screensix .case-slider .swiper-wrapper,
.screensix .case-slider .swiper-slide{
  height: 100%;
}

/* 背景图 slide */
.screensix .case-slide{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* 底部信息条 */
.screensix .case-slide__footer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  color: #fff;
  position: relative;
}
.case-slide__footer_box{
  position: absolute;
  left: 0; right: 0; bottom: 25px;
}
.case-slide__footer_box .banner_cover{
  max-width: unset;
}
/* 修复：第六屏 case-slider 宽度为 0 */
.screensix,
.screensix .case-slider,
.screensix .case-slider .swiper-wrapper{
  width: 100% !important;
}

.screensix .case-slider .swiper-slide{
  width: 100% !important;     /* ✅ 强制每个 slide 有宽度 */
  flex: 0 0 100% !important;  /* ✅ 防止被 flex 收缩到 0 */
}
.screensix .case-slider{
  min-width: 0;
}
.screensix{
  position: relative;
}
.screensix .case-head{
  position: absolute;
  top: 10%;
  z-index: 10;
  width: 100%;
}
.screensix .case-head .case-title-text{
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 30px;
}
.case-slide__note {
  font-size: 20px;
  position: absolute;
  right: 0;
}
.sreenseven_box{
  max-width: 530px;
}
.sreenseven_box.banner_cover h2{
  text-align: center;
  font-size: 48px;
  color: #222222;
}
.sreenseven_box .wpcf7-form{
  background-color: #ffffff;
  border-radius: 30px;
  padding: 40px 25px 25px 25px;
}
/* 表单容器 */
.wpcf7-form {
  margin: 30px auto 0 !important;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 输入框样式 */
.wpcf7-form-control {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 0 !important;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

/* 输入框焦点样式 */
.wpcf7-form-control:focus {
  border-color: #0d0d0d;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 提交按钮样式 */
.wpcf7-submit {
  background-color: #0d0d0d;
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

/* 提交按钮悬停效果 */
.wpcf7-submit:hover {
  background-color: #0d0d0d;
}

/* 输入框提示文字 */
.wpcf7-form-control::placeholder {
  color: #888;
}

/* 单选按钮（radio） */
.wpcf7-radio label {
  display: inline-block;
  margin-right: 15px;
  font-size: 16px;
  margin-bottom: 0 !important;
}

/* 单选按钮的圆形样式 */
.wpcf7-radio input[type="radio"] {
  margin-right: 5px;
  margin-bottom: 0;
}

/* 日期选择器的样式 */
.wpcf7-date {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 100%;
}

/* 使响应输出更清晰 */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  color: #333;
}
.wpcf7-not-valid-tip,
.wpcf7-list-item {
  margin: 0 !important;
}
.sreenseven_box .wpcf7-form p{
  margin-bottom: 25px !important;
}
.sreenseven_box .wpcf7-form p + p{
  margin-bottom: 0 !important;
}
.wpcf7-spinner{
  margin: 0 !important;
}
.sreenseven_box .btn_light{
  color: #4c4c4c;
}
footer{
  background-color: #333333;
  padding: 100px 0;
}
.footer_up{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_social{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer_social li{
  list-style: none;
}
.footer_social li img{
  max-width: 60px;
}
.fooyter_tel a{
  font-size: 34px;
  font-weight: bold !important;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.fooyter_tel img{
  margin-right: 10px;
}
.foot-slide{
  height: auto !important;
}
.foot-slide .footer_up{
  margin-top: 100px;
}
.foot_menu .h3{
  font-weight: bold;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 20px;
}
.foot_menu ul{
  padding: 0;
  margin: 0;
}
.foot_menu li{
  list-style: none;
  margin: 10px 0;
}
.foot_menu li a{
  font-size: 18px;
  color: #ffffff;
  font-weight: 100;
  line-height: 28px;
}
.footer_main{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.footer-content {
  margin: 100px 0 0 0;
  padding-top: 30px;
  border-top: 1px solid #ffffff;
}
.footer-content p{
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}
.screenone{
  position: relative;
}
.banner1 h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 400 !important;
  line-height: 1.6;
}
.screentwo_box .banner_cover p,
.banner2 .banner_cover p{
  margin-bottom: 0;
}
.screentwo_box .banner_cover h2,
.banner2 .banner_cover h2{
  margin-bottom: 25px;
}
.screentwo_box .banner_cover h3,
.banner2 .banner_cover h3{
  font-weight: 100 !important;
}
.banner4 .banner_cover h2{
  margin-bottom: 45px !important;
}
.banner1 .banner_cover{
  top: 50px;
}
/* 第六屏 tabs hover 手感（可选） */
.screensix .case-tabs .swiper-pagination-bullet {
  cursor: pointer;
}
.onlyscreenfive .screen-three__content{
  padding-top: 0;
}
.onlyscreenfive .banner_cover{
  top: -100px;
}
.banner5 .btn_light{
  color: #4c4c4c;
}
.banner5 .banner_cover h3{
  color: #242424;
}
@media (max-width: 1680px){
  .banner_cover {
    max-width: 600px;
  }
  .sreentwo .banner_cover, .banner-left-left .banner_cover {
    padding-left: 175px;
  }
  .screenfour .banner_media img{
    object-position: right;
  }
}
@media (max-width: 1440px){
  .header_container {
    padding: 0 50px;
  }
  .sreentwo .banner_cover, .banner-left-left .banner_cover {
    padding-left: 70px;
  }
  .sreenseven_box.banner_cover h2{
    display: none;
  }
  .screensix .case-head .case-title-text,
  .screen-three__content h3,
  .screentwo_box .banner_cover h2,
  .banner-center-center .banner_cover h2,
  .banner-left-left .banner_cover h2,
  .banner-left-right .banner_cover h2{
    font-size: 38px;
  }
  .screentwo_box .banner_cover h3,
  .banner-center-center .banner_cover h3,
  .banner-left-left .banner_cover h3,
  .banner-left-right .banner_cover h3{
    font-size: 30px;
    color: #ffffff;
  }
  .screen-three__content p{
    font-size: 30px;
  }
  .screen-three__content li{
    font-size: 20px;
    margin-bottom: 0 !important;
  }
  .banner1 .banner_cover img{
    width: 220px;
  }
  .onlysreenseven .banner_cover img,
  .banner2 .banner_cover img{
    width: 430px;
  }
  .banner3 .banner_cover img{
    width: 500px;
  }
  .banner4 .banner_cover img{
    width: 500px;
  }
  .screen-three__flag img{
    height: 45px;
  }
  .onlyscreenfive .banner_cover {
    top: -60px;
  }
  .onlyscreenfive .screen-three__content ul {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 1366px){
  .screensix .case-head .case-title-text,
  .screen-three__content h3,
  .screentwo_box .banner_cover h2,
  .banner-center-center .banner_cover h2,
  .banner-left-left .banner_cover h2,
  .banner-left-right .banner_cover h2{
    font-size: 36px;
  }
  .screentwo_box .banner_cover h3,
  .banner-center-center .banner_cover h3,
  .banner-left-left .banner_cover h3,
  .banner-left-right .banner_cover h3{
    font-size: 28px;
  }
  .screen-three__content p{
    font-size: 28px;
  }
  .screen-three__content li{
    font-size: 18px;
  }
  .banner4 .banner_cover img {
    width: 460px;
  }
  .screen-four__txt {
    font-size: 16px !important;
  }
}
@media (max-width: 1280px){
  .banner_cover {
    max-width: 520px;
  }
}
@media (max-width: 1024px){
  .header_container {
    padding: 0;
  }
  .head_menu .primary-navigation .menu-wrapper{
    gap: 10px;
  }
  .banner_cover {
    max-width: 500px;
  }
  .screen-three__list{
    flex-wrap: wrap;
  }
  .screen-three__item{
    width: 100%;
    height: auto;
    flex: inherit;
  }
  .screen-three__content {
    padding-top: 150px;
    max-width: inherit;
  }
  .screenfour .banner_media img {
    object-position: bottom;
  }
}
@media (max-width: 820px){
  .head_menu {
    flex: inherit;
    order: 1;
  }
  .head_main{
    flex-wrap: wrap;
  }
  .screensix .case-head .case-title-text,
  .screentwo_box .banner_cover h2,
  .banner-center-center .banner_cover h2,
  .banner-left-left .banner_cover h2,
  .banner-left-right .banner_cover h2,
  .screen-three__content h3 {
    font-size: 40px;
  }
  .screentwo_box .banner_cover h3,
  .banner-center-center .banner_cover h3,
  .banner-left-left .banner_cover h3,
  .banner-left-right .banner_cover h3,
  .screen-three__content p {
    font-size: 32px;
  }
  .screen-three__content li{
    font-size: 20px;
  }
  .case-slide__note {
    right: 30px;
  }
  .footer_main,
  .footer_up{
    flex-wrap: wrap;
    gap: 35px;
  }
  .foot_item{
    width: 47%;
  }
  .foot_menu .primary-menu-container{
    display: none;
  }
  .foot_menu .primary-menu-container.active{
    display: block;
  }
  .foot_menu .h3 {
    font-size: 24px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .foot_menu .h3::after{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg); /* 向下 */
    transition: transform 0.3s;
  }
  .foot_menu .h3.active::after {
    transform: rotate(-135deg);
  }
}
@media (max-width: 580px){
  .sreentwo .banner_cover, .banner-left-left .banner_cover {
    padding-left: 20px;
  }
  .screensix .case-head .case-title-text,
  .screentwo_box .banner_cover h2,
  .banner-center-center .banner_cover h2,
  .banner-left-left .banner_cover h2,
  .banner-left-right .banner_cover h2,
  .screen-three__content h3 {
    font-size: 34px;
  }
  .screentwo_box .banner_cover h3,
  .banner-center-center .banner_cover h3,
  .banner-left-left .banner_cover h3,
  .banner-left-right .banner_cover h3,
  .screen-three__content p {
    font-size: 26px;
  }
  .screen-three__content {
    padding-top: 100px;
  }
  .screen-three__note {
    font-size: 14px;
  }
  .screen-three__note{
    max-width: inherit;
  }
  .screen-three__footer .btn_light{
    max-width: 100px;
  }
  .screen-three__flag img {
    height: 40px;
  }
  .screen-three__content li {
    font-size: 18px;
  }
  .screen-four__txt {
    font-size: 14px !important;
  }
  .screensix .case-tabs{
    flex-wrap: wrap;
    row-gap: 35px;
    border-bottom: 0;
  }
  .case-slide__note {
    position: inherit;
    right: 0;
  }
  .screensix .case-slide__footer{
    flex-wrap: wrap;
  }
  .wpcf7-form-control{
    padding: 8px;
  }
  .sreenseven_box .wpcf7-form {
    border-radius: 0;
    padding: 20px 15px 25px 15px;
  }
  .banner1 .banner_cover img {
    height: 80px;
    width: auto;
  }
  .foot_item{
    width: 100%;
  }
  .foot-slide .footer_up {
    margin-top: 20px;
  }
  .fooyter_tel a {
    font-size: 26px;
  }
  .fooyter_tel img {
    height: 36px;
  }
  .foot_menu .h3 {
    font-size: 20px;
  }
  .footer_main {
     gap: 0;
     margin-top: 20px;
  }
  .footer_social li img {
    max-width: 40px;
  }
  .footer_social{
    gap: 10px;
  }
  .footer-content {
    margin: 50px 0 0 0;
    border-top: 0;
  }
  .head_menu .primary-navigation .primary-menu-container {
    align-items: flex-start;
  }
}