/* ===== 关键帧动画定义 ===== */

/* 淡入显示动画 */
@-webkit-keyframes show_box {
  0% { opacity: 0 }
  100% { opacity: 1 }
}
@keyframes show_box {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

/* 英文版中心显示动画 - 水平移动效果 */
@-webkit-keyframes centerShow_1_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-26%); transform: translateX(-26%) } /* 向左移动26% */
}
@keyframes centerShow_1_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-26%); transform: translateX(-26%) }
}

@-webkit-keyframes centerShow_2_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-26%); transform: translateX(-26%) }
}
@keyframes centerShow_2_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-26%); transform: translateX(-26%) }
}

@-webkit-keyframes centerShow_3_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(24.4%); transform: translateX(24.4%) } /* 向右移动24.4% */
}
@keyframes centerShow_3_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(24.4%); transform: translateX(24.4%) }
}

@-webkit-keyframes centerShow_4_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(21%); transform: translateX(21%) }
}
@keyframes centerShow_4_en {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(21%); transform: translateX(21%) }
}

/* 法文版中心显示动画 - 针对法语文本调整移动距离 */
@-webkit-keyframes centerShow_1_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-27.8%); transform: translateX(-27.8%) }
}
@keyframes centerShow_1_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-27.8%); transform: translateX(-27.8%) }
}

@-webkit-keyframes centerShow_2_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-29.8%); transform: translateX(-29.8%) }
}
@keyframes centerShow_2_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-29.8%); transform: translateX(-29.8%) }
}

@-webkit-keyframes centerShow_3_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(29%); transform: translateX(29%) }
}
@keyframes centerShow_3_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(29%); transform: translateX(29%) }
}

@-webkit-keyframes centerShow_4_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(26.8%); transform: translateX(26.8%) }
}
@keyframes centerShow_4_fr {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(26.8%); transform: translateX(26.8%) }
}

/* 中文版中心显示动画 - 针对中文文本调整移动距离 */
@-webkit-keyframes centerShow_1_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-35.6%); transform: translateX(-35.6%) }
}
@keyframes centerShow_1_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-35.6%); transform: translateX(-35.6%) }
}

@-webkit-keyframes centerShow_2_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-34.2%); transform: translateX(-34.2%) }
}
@keyframes centerShow_2_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(-34.2%); transform: translateX(-34.2%) }
}

@-webkit-keyframes centerShow_3_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(36%); transform: translateX(36%) }
}
@keyframes centerShow_3_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(36%); transform: translateX(36%) }
}

@-webkit-keyframes centerShow_4_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(29.8%); transform: translateX(29.8%) }
}
@keyframes centerShow_4_cn {
  0%,50% { -webkit-transform: translateX(0%); transform: translateX(0%) }
  100% { -webkit-transform: translateX(29.8%); transform: translateX(29.8%) }
}

/* 显示框动画 - 包含显示属性变化 */
@keyframes show_box {
  0% { opacity: 0; display: none }
  50% { opacity: 0; display: -webkit-box; display: -ms-flexbox; display: flex }
  100% { opacity: 1; display: -webkit-box; display: -ms-flexbox; display: flex }
}

/* 透明度淡入动画 */
@-webkit-keyframes show_opacity {
  0% { opacity: 0 }
  100% { opacity: 1 }
}
@keyframes show_opacity {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

/* 向左移动动画 */
@-webkit-keyframes move_box_to_left {
  0% { -webkit-transform: translate(50%, 0); transform: translate(50%, 0) }
  100% { -webkit-transform: translate(0%, 0); transform: translate(0%, 0) }
}
@keyframes move_box_to_left {
  0% { -webkit-transform: translate(50%, 0); transform: translate(50%, 0) }
  100% { -webkit-transform: translate(0%, 0); transform: translate(0%, 0) }
}

/* 盒子显示动画 */
@-webkit-keyframes box_show_animation {
  0% { opacity: 0 }
  100% { opacity: 1 }
}
@keyframes box_show_animation {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

/* ===== 基础样式 ===== */
.fr { float: none }

/* ===== 工具按钮样式 ===== */
.new_iam_who_tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16px;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.new_iam_who_tool a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 8.906vw;
  min-height: 2.604vw;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: .729vw;
  line-height: 2.604vw;
  color: #fff;
  background-color: #000;
  border-radius: 1.302vw;
  margin-right: .99vw;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.new_iam_who_tool a:hover {
  -webkit-transform: scaleX(1.1);
  transform: scaleX(1.1);
}

.new_iam_who_tool a:last-child {
  margin-right: 0;
}

/* 工具按钮图标 */
.new_iam_who_tool a::before {
  content: "";
  width: 1.458vw;
  height: 1.458vw;
  margin-right: .469vw;
  background-repeat: no-repeat;
  background-position: center;
}

.new_iam_who_tool a.icon_new_iam_who_0::before {
  width: 1.77vw;
  background-image: url("/static/images/test_car.svg");
  background-size: contain;
}

.new_iam_who_tool a.icon_new_iam_who_1::before {
  background-image: url("/static/images/test_hearder.svg");
  background-size: contain;
}

.new_iam_who_tool a.icon_new_iam_who_1_us::before {
  background-image: url("/static/images/test_hearder.svg");
  background-size: contain;
}

/* ===== 全屏动画容器 ===== */
.full_box_animation {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  width: 100vw;
  height: 56.25vw; /* 16:9宽高比 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-weight: 600;
}

/* 视频背景容器 */
.full_box_animation .page_video_box {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #000;
}

.full_box_animation .page_video_box video {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 响应式显示控制 */
.full_box_animation .page_video_box .mob_show { display: none }
.full_box_animation .page_video_box .pc_show { display: block }

/* 全屏动画中的工具按钮 */
.full_box_animation .new_iam_who_tool {
  -webkit-transform: translate(10%, 0);
  transform: translate(10%, 0);
  margin-top: .781vw;
  opacity: 0;
  gap: 1.563vw;
  -webkit-animation: show_box 2s ease-in-out 2s forwards;
  animation: show_box 2s ease-in-out 2s forwards;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* 美国版特殊样式 */
.full_box_animation .new_iam_who_tool.us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 8%;
  z-index: 3;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.full_box_animation .new_iam_who_tool.us .price_options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.563vw;
}

.full_box_animation .new_iam_who_tool.us .price_options .price_options_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .781vw;
  min-width: 8.854vw;
}

.full_box_animation .new_iam_who_tool.us .price_options .price_options_item:first-child {
  padding-right: 1.563vw;
  border-right: 1px solid #999;
}

.full_box_animation .new_iam_who_tool.us .price_options .price_options_item span {
  font-size: 2.5vw;
  color: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.full_box_animation .new_iam_who_tool.us .price_options .price_options_item a {
  -webkit-filter: invert(0);
  filter: invert(0);
}

/* 全屏动画中的按钮样式 */
.full_box_animation .new_iam_who_tool a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 8.906vw;
  min-height: 2.604vw;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: .729vw;
  line-height: 2.604vw;
  color: #000;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(to right, #fff 0%, #fff 100%);
  background-color: #000;
  border-radius: 1.302vw;
  margin-right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.full_box_animation .new_iam_who_tool a:last-child {
  -webkit-filter: invert(1);
  filter: invert(1);
  border: 1px #000 solid;
}

.full_box_animation .new_iam_who_tool a::before {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.full_box_animation .new_iam_who_tool a:hover {
  -webkit-transform: scaleX(1.1);
  transform: scaleX(1.1);
}

/* 全屏动画文本 */
.full_box_animation_txt {
  font-size: 3vw;
  color: #fff;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
}

/* 响应式显示控制 */
.full_box_animation_pc { display: block; position: relative }
.full_box_animation_mobile { display: none }

/* ===== 新视频区域样式 ===== */
.new_video {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #fff;
}

/* PC版视频区域 */
.new_video_pc {
  height: 41.667vw;
  min-height: 19.323vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  font-weight: 600;
  margin-right: 6.25vw;
}

.new_video_pc .new_video_left {
  position: relative;
  width: 35%;
  height: 100%;
  z-index: 8;
}

.new_video_pc .new_video_left .h_text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  font-size: 1.28vw;
  -webkit-transform: rotate(-90deg) translateY(20%);
  transform: rotate(-90deg) translateY(20%);
  -webkit-transform-origin: center;
  transform-origin: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.new_video_pc .new_video_left .float_text {
  position: absolute;
  left: 6.25vw;
  top: 26%;
  color: #999;
  font-size: 2.8vw;
  min-width: 42vw;
  width: 42vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.new_video_pc .new_video_left .float_icon {
  position: absolute;
  left: 5.573vw;
  bottom: 20%;
  height: 12vw;
  width: 17vw;
  background-image: url("/static/images/PD2024_RD_motorcycle_design_t_1.png");
  background-size: cover;
  background-position: center;
}

.new_video_pc .new_video_left .play_btn {
  position: absolute;
  right: -10%;
  top: 30%;
  width: 8vw;
  height: 8vw;
  background-color: #adff2f;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2.56vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.new_video_pc .new_video_left .IAMLOGO {
  position: absolute;
  left: 6.25vw;
  top: 15%;
  width: 17vw;
}

.new_video_pc .new_video_right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto;
}

.new_video_pc .new_video_right video {
  border-radius: 1.042vw;
  overflow: hidden;
  aspect-ratio: 16/9;
}

/* 移动版视频区域 */
.new_video_mobile {
  display: none;
  margin-top: 1.042vw;
  width: 100%;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  font-weight: 600;
}

.new_video_mobile .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 9.615vw 22.533vw 5vw;
}

.new_video_mobile .float_text {
  color: #000;
  font-size: 3.2vw;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.new_video_mobile .float_icon {
  margin-right: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.new_video_mobile .float_icon img {
  height: 2.813vw;
  width: 2.813vw;
}

/* 中文语言特定样式 */
.lang_cn .new_video_mobile .float_text {
  color: #000;
  font-size: 1.198vw;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.lang_cn .new_video_pc .new_video_left .float_text {
  position: absolute;
  left: 20%;
  top: 20%;
  color: #000;
  font-size: 3vw;
  min-width: 42vw;
  width: 42vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* ===== 视频展示区域 ===== */
.show_video {
  margin: 0 auto;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  height: auto;
}

/* 视频详情按钮 */
.show_video_detail_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 2.604vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.show_video_detail_btn.us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.show_video_detail_btn.us .price_options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.563vw;
}

.show_video_detail_btn.us .price_options .price_options_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .781vw;
  min-width: 8.854vw;
}

.show_video_detail_btn.us .price_options .price_options_item:first-child {
  padding-right: 1.563vw;
  border-right: 1px solid #999;
}

.show_video_detail_btn.us .price_options .price_options_item span {
  font-size: 2.5vw;
  color: #000;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* 视频标题区域 */
.show_video .show_video_title {
  padding: 3.813vw 5.2vw 3.25vw;
}

.show_video .show_video_title .first_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.show_video .show_video_title .second_box {
  margin-top: 1.563vw;
}

.show_video .show_video_title .second_box span {
  font-size: 1.25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  line-height: 2.604vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* 视频描述 */
.show_video .show_video_desc {
  margin: 3.813vw 9vw 3.25vw;
}

.show_video .show_video_desc * {
  text-align: center;
  font-size: .938vw;
  line-height: 1.5;
  margin-bottom: .781vw;
  color: #000;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.show_video .show_video_desc .show_video_desc_title {
  font-size: 3vw;
  color: #000;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.show_video .show_video_title .first_box span {
  text-align: center;
  font-size: 3vw;
  font-weight: bold;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  margin-right: 1.563vw;
}

/* 视频轮播容器 */
.show_video .video_swiper_container {
  height: auto;
  position: relative;
  overflow: hidden;
}

.show_video .video_swiper_container.only_one {
  padding: 0 15vw;
}

/* 视频导航按钮 */
.show_video .video_button {
  height: 100%;
  width: 23%;
  top: 0;
}

.show_video .video_button::after {
  content: ""
}

.show_video .swiper-button-next:after,
.swiper-button-prev:after {
  line-height: 3.125vw;
}

.show_video .swiper-button-next {
  right: 0;
}

.show_video .swiper-button-prev {
  left: 0;
}

/* 视频分页器 */
.show_video .video_swiper_container .show_video_swiper_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.show_video .video_swiper_container .show_video_swiper_pagination .swiper_pagination_item {
  background-color: #fff;
  height: .938vw;
  width: .938vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 5px;
  border-radius: 50%;
}

/* 视频项样式 */
.show_video .video_swiper_container .video_list .video_item {
  background-color: #000;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  min-width: 31.094vw;
  max-width: 80%;
}

/* 激活状态的视频项 */
.show_video .video_swiper_container .video_list .video_item.swiper-slide-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* 视频内容区域 */
.show_video .video_swiper_container .video_list .video_item .content {
  padding: .781vw;
  line-height: 1.354vw;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 0;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.show_video .video_swiper_container .video_list .video_item .content * {
  text-align: left;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.show_video .video_swiper_container .video_list .video_item .content .title {
  font-size: 1.458vw;
  margin-bottom: .781vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* 视频源容器 */
.show_video .video_swiper_container .video_list .video_item .source {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  position: relative;
  padding-top: 56.25%; /* 16:9宽高比 */
}

.show_video .video_swiper_container .video_list .video_item .source::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* 支持aspect-ratio的浏览器 */
@supports (aspect-ratio: 16/9) {
  .show_video .video_swiper_container .video_list .video_item .source {
    padding-top: 0;
    aspect-ratio: 16/9;
  }
}

/* 视频内容控制 */
.show_video .video_swiper_container .video_list .video_item .source .video_content {
  position: relative;
  -webkit-transition: none;
  transition: none;
  width: 100%;
  height: 100%;
}

/* 播放按钮 */
.show_video .video_swiper_container .video_list .video_item .source .video_content .paly {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: none;
  transition: none;
  z-index: 5;
  width: 40px;
  height: 40px;
  background-image: url("/static/themes/t272/images/paly.png");
  background-repeat: no-repeat;
  border-radius: 50%;
  background-size: 80% 80%;
  background-position: center;
  background-color: rgba(0,0,0,.5);
  padding: .521vw;
}

/* 全屏图标 */
.show_video .video_swiper_container .video_list .video_item .source .video_content .full_icon {
  position: absolute;
  top: 90%;
  left: 95%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  background-image: url("/static/images/global/full.svg");
  background-repeat: no-repeat;
  border-radius: 50%;
  background-size: 70% 70%;
  background-position: center;
  background-color: rgba(0,0,0,.5);
  padding: .521vw;
}

/* 播放和全屏按钮激活状态 */
.show_video .video_swiper_container .video_list .video_item .source .video_content .paly.on,
.full_icon.on {
  top: 90%;
  left: 90%;
  background-image: url("/static/themes/t272/images/pause.png");
}

/* 隐藏状态 */
.show_video .video_swiper_container .video_list .video_item .source .video_content .paly.on_show,
.full_icon.on_show {
  opacity: 0;
  display: none;
}

/* 视频iframe */
.show_video .video_swiper_container .video_list .video_item .source iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* 轮播幻灯片盒子 */
.show_video .video_swiper_container .video_list .swiper-slide-box {
  width: 53.333vw;
  min-width: 15.625vw;
  position: relative;
  height: auto;
  min-height: 19.531vw;
  background: #000;
  border-radius: .781vw;
  overflow: hidden;
}

.show_video .video_swiper_container .video_list .swiper-slide-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 视频详情 */
.show_video .show_video_detail {
  height: auto;
  min-height: 7.813vw;
  margin: 1.563vw 30%;
  padding: 2.604vw 1.042vw 1.042vw;
}

.show_video .show_video_detail * {
  color: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.show_video .show_video_detail .show_video_detail_title {
  font-size: large;
  padding: .521vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* ===== 全屏视频覆盖层 ===== */
body .full_video {
  height: 100vh;
  width: 100vw;
  min-height: 31.25vw;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -4;
  opacity: 0;
}

body .full_video .full_video_content {
  height: 34.74vw;
  width: 19.531vw;
  background-color: rgba(0,0,0,0);
  margin: auto;
}

body .full_video .full_video_content::after {
  content: "X";
  position: absolute;
  top: 1.563vw;
  right: 10%;
  color: #fff;
  font-size: 1.042vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

body .full_video .full_video_content iframe {
  height: 100%;
  width: 100%;
  pointer-events: none;
}

/* ===== 工具类 ===== */
.display_none { display: none !important }


/* ===== 新闻区域 ===== */
.news_wrap {
  margin-bottom: 0;
  padding: 4.688vw 6.25vw;
  background-color: #efefef;
}

.news_wrap .news_wrap_title_tips {
  font-size: 1.25vw;
  text-align: center;
  margin-bottom: 2.604vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.news_wrap .news_wrap_title {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  font-size: 2.604vw;
  padding-bottom: 1.042vw;
  font-weight: 600;
  text-align: center;
}

.news_wrap .news_wrap_title span {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
}

.news_wrap .swiper-slide {
  border-radius: 1.042vw;
  overflow: hidden;
}

.news_wrap .news_item .news_item_wz {
  padding: 1.042vw;
}

.news_wrap .news_item .news_item_wz .news_item_title {
  font-size: 1.146vw;
  min-height: 2.708vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.news_wrap .news_item .news_item_wz .news_item_date {
  font-size: .833vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.news_wrap .news_item .img {
  overflow: hidden;
}

.news_wrap .news_item .img:hover img {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(1.1) translate(-50%, -50%);
  transform: scale(1.1) translate(-50%, -50%);
}

.news_wrap .mySwiper .img:hover img {
  -webkit-transform: unset;
  transform: unset;
}

/* 新闻轮播导航 */
.news_wrap .swiper-button-next,
.news_wrap .swiper-button-prev {
  position: relative;
}

.news_wrap .swiper-button-next {
  left: 3.958vw;
  top: 1.458vw;
  z-index: 666;
}

.news_wrap .swiper-button-prev {
  left: 1.927vw;
  z-index: 666;
  bottom: -0.625vw;
}

.news_wrap .swiper-button-next:after {
  color: var(--font-color-512);
  background-color: var(--swiper-white);
  width: 1.563vw;
  height: 1.563vw;
  font-size: .625vw;
  border-radius: 50%;
  line-height: 1.563vw;
  text-align: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.news_wrap .swiper-button-prev:after {
  color: var(--font-color-512);
  background-color: var(--swiper-white);
  width: 1.563vw;
  height: 1.563vw;
  font-size: .625vw;
  border-radius: 50%;
  line-height: 1.563vw;
  text-align: center;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.news_wrap .swiper-pagination {
  width: 90%;
  bottom: .521vw;
  left: 10%;
  position: absolute;
}

.news_wrap .swiper-pagination span {
  margin-right: .885vw;
}

.news_wrap .swiper-pagination-bullet-active {
  background-color: #333;
}

/* Swiper导航尺寸变量 */
:root {
  --swiper-navigation-size: 1.563vw
}

/* ===== 内容盒子列表 ===== */
/* ===== 页面基础布局设置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%; /* 整体页面高度100%适配各类屏幕尺寸 */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ffffff; /* 可自定义背景颜色 */
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* 主内容容器 - 确保内容在页面中间 */
.main-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 垂直居中 */
  align-items: center; /* 水平居中 */
  width: 100%;
  padding: 2.604vw 0; /* 上下内边距 */
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* ===== 基础样式 - PC端 ===== */
.swiper_wrap .mySwiper { 
  display: none; 
}

/* 修改盒子列表为1200px固定宽度区域 */
.box_content_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 23.875vw;
  margin: 0 auto; /* 水平居中 */
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 1200px; /* 固定1200px宽度 */
  max-width: 100%; /* 确保在小屏幕上不会溢出 */
  align-self: center;
}

.box_content_list .box_content_item {
  width: 14.4358333333vw;
  height: 23.875vw;
  margin-left: .521vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 1.042vw;
  overflow: hidden;
  flex-shrink: 0;
}

.box_content_list .box_content_item img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.box_content_list .box_content_item .mengceng {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0);
  z-index: 1;
}

.box_content_list .box_content_item .mengceng img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 悬停效果 */
.box_content_list .box_content_item:hover .mengceng {
  background-color: rgba(0,0,0,.5);
}

.box_content_list .box_content_item:hover .box_content_item_title {
  font-size: 1.458vw;
  font-weight: bold;
  padding-top: 2.604vw;
}

.box_content_list .box_content_item:hover .box_content_item_content {
  font-size: .938vw;
  font-weight: bold;
  padding-top: 10px;
  line-height: 1.5;
}

.box_content_list .box_content_item:hover {
  padding-right: 20.833vw;
  width: 28.8716666667vw;
}

.box_content_list .box_content_item:hover div {
  opacity: 1;
  display: block;
}

.box_content_list .box_content_item:hover .box_content_item_title {
  opacity: 0;
  display: none;
}

.box_content_list .box_content_item * {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.box_content_list .box_content_item .box_content_item_text {
  position: absolute;
  z-index: 2;
  padding: 1.042vw;
}

.box_content_list .box_content_item .box_content_item_content {
  color: #fff;
  opacity: 0;
  display: none;
  width: 25.7466666667vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.box_content_list .box_content_item .box_content_item_title {
  color: #fff;
  font-size: 1.042vw;
  font-weight: bold;
  padding-top: 2.604vw;
  -webkit-transition: none;
  transition: none;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.box_content_list .box_content_item .box_content_item_title_1 {
  color: #fff;
  font-size: 1.042vw;
  font-weight: bold;
  padding-top: 2.604vw;
  opacity: 0;
  display: none;
  width: 25.7466666667vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* ===== PC端底部滑动条 - 修改为1200px区域宽度 ===== */
@media (min-width: 769px) {
  .pc-slider-container {
    display: block;
    width: 1200px; /* 改为1200px固定宽度 */
    margin: 2.604vw auto 0; /* 水平居中 */
    padding: 0;
    max-width: 100%; /* 确保在小屏幕上不会溢出 */
  }
  
  .pc-slider-track {
    position: relative;
    width: 100%;
    height: 0.308vw;
    background: #D3D3D3;
    border-radius: 0.104vw;
    cursor: pointer;
    overflow: hidden; /* 改为hidden防止滑块溢出 */
  }
  
  .pc-slider-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #696969;
    border-radius: 0.104vw;
    width: 0%;
    transition: width 0.3s ease;
  }
  
  .pc-slider-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 14.4358333333vw;
    height: 0.625vw;
    background: #2F4F4F;
    border-radius: 0.313vw;
    cursor: grab;
    transition: left 0.3s ease;
    z-index: 10;
    box-shadow: 0 0.104vw 0.208vw rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
    /* 限制滑块边界 */
    min-width: 14.4358333333vw; /* 确保滑块最小宽度 */
  }
  
  .pc-slider-thumb:active {
    cursor: grabbing;
    background: #1C2C2C;
  }
  
  .pc-slider-container:hover .pc-slider-thumb {
    background: #3A5A5A;
  }
  
  /* PC端隐藏默认滚动条 */
  .box_content_list::-webkit-scrollbar {
    display: none;
  }
  
  .box_content_list {
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    scroll-behavior: smooth;
  }
  
  .box_content_list:active {
    cursor: grabbing;
  }
}

/* ===== 移动端样式调整 ===== */
@media (max-width: 768px) {
  /* 移动端整体页面布局 */
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5vw 0; /* 移动端增加上下内边距 */
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  /* 强制隐藏PC端滑动条 */
  .pc-slider-container {
    display: none !important;
  }
  
  /* 移动端内容盒子 - 保持满屏宽度 */
  .box_content_list {
    display: flex !important;
    height: 60vw; /* 移动端增加高度 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 5vw; /* 移动端保持内边距 */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    cursor: default;
    scroll-behavior: auto;
    width: 100%; /* 移动端保持100%宽度 */
    max-width: 100%;
    align-self: center; /* 保持在中间位置 */
  }
  
  /* 隐藏Webkit浏览器滚动条 */
  .box_content_list::-webkit-scrollbar {
    display: none !important; /* 完全隐藏滚动条 */
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }
  
  .box_content_list::-webkit-scrollbar-track {
    display: none !important;
    background: transparent !important;
  }
  
  .box_content_list::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
  }
  
  .box_content_list:active {
    cursor: default;
  }
  
  .box_content_list .box_content_item {
    width: 50vw !important; /* 移动端使用更大的宽度 */
    height: 75vw !important; /* 移动端使用更大的高度 */
    margin-left: 4vw; /* 移动端增加间距 */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    flex-shrink: 0;
    border-radius: 2vw; /* 移动端增加圆角 */
  }
  
  /* 移动端文字样式调整 - 修复重复标题问题 */
  .box_content_list .box_content_item .box_content_item_text {
    padding: 3vw;
  }
  
  /* 移动端只显示主要标题，隐藏备用标题 */
  .box_content_list .box_content_item .box_content_item_title {
    color: #fff;
    font-size: 4vw !important; /* 移动端增大字体 */
    font-weight: bold;
    padding-top: 5vw !important;
    opacity: 1 !important;
    display: block !important;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .box_content_list .box_content_item .box_content_item_content {
    color: #fff;
    font-size: 3vw !important; /* 移动端增大字体 */
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    padding-top: 2vw;
    line-height: 1.4;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  /* 移动端隐藏备用标题 */
  .box_content_list .box_content_item .box_content_item_title_1 {
    display: none !important;
    opacity: 0 !important;
  }
  
  /* 移动端隐藏悬停效果 */
  .box_content_list .box_content_item:hover .mengceng {
    background-color: rgba(0,0,0,0.3); /* 移动端保持轻微蒙层 */
  }
  
  .box_content_list .box_content_item:hover {
    padding-right: 0;
    width: 70vw !important; /* 保持移动端宽度不变 */
  }
  
  .box_content_list .box_content_item:hover .box_content_item_title {
    opacity: 1 !important;
    display: block !important;
  }
  
  .box_content_list .box_content_item:hover .box_content_item_content {
    opacity: 1 !important;
    display: block !important;
  }
  
  /* 根据提供的代码调整其他移动端样式 */
  .swiper_wrap .mySwiper {
    display: none;
  }
}

/* 小屏幕移动端额外调整 */
@media screen and (max-width: 520px) {
  .main-container {
    padding: 8vw 0; /* 小屏幕增加更多内边距 */
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .box_content_list {
    height: 75vw; /* 小屏幕进一步增加高度 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 3vw; /* 小屏幕调整内边距 */
    width: 100%; /* 小屏幕保持100%宽度 */
  }
  
  .box_content_list .box_content_item {
    width: 55vw !important; /* 小屏幕使用更大宽度 */
    height: 70vw !important;
    margin-left: 3vw;
    border-radius: 3vw;
  }
  
  .box_content_list .box_content_item .box_content_item_text {
    padding: 4vw;
  }
  
  .box_content_list .box_content_item .box_content_item_title {
    font-size: 5vw !important;
    padding-top: 6vw !important;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .box_content_list .box_content_item .box_content_item_content {
    font-size: 4vw !important;
    padding-top: 3vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  /* 小屏幕也确保隐藏备用标题 */
  .box_content_list .box_content_item .box_content_item_title_1 {
    display: none !important;
    opacity: 0 !important;
  }
}

/* 超大移动端屏幕调整 */
@media screen and (max-width: 768px) and (min-width: 500px) {
  .box_content_list {
    padding: 0 5vw; /* 保持内边距 */
    width: 100%; /* 保持100%宽度 */
  }
  
  .box_content_list .box_content_item {
    width: 40vw !important;
    height: 60vw !important;
  }
  
  .box_content_list .box_content_item .box_content_item_title {
    font-size: 3.5vw !important;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .box_content_list .box_content_item .box_content_item_content {
    font-size: 2.8vw !important;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  /* 超大屏幕也确保隐藏备用标题 */
  .box_content_list .box_content_item .box_content_item_title_1 {
    display: none !important;
    opacity: 0 !important;
  }
}

/* 当屏幕宽度小于1200px时的响应式调整 */
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .box_content_list {
    width: 95%; /* 在1200px以下的屏幕上使用百分比宽度 */
    max-width: 1200px; /* 但最大不超过1200px */
  }
  
  .pc-slider-container {
    width: 95%; /* 滑动条容器也相应调整 */
    max-width: 1200px;
  }
}
/* ===== 城市内容区域 ===== */
.urban_content_left {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.urban_wrap { padding: 0 }

.move_left_in {
  -webkit-animation: move_box_to_left 2s ease-in-out 2.5s forwards;
  animation: move_box_to_left 2s ease-in-out 2.5s forwards;
}

.urban_content_right {
  opacity: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transform: translateX(-25%);
  transform: translateX(-25%);
}

.urban_content_left .img {
  height: 16.667vw;
  width: 16.667vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: auto;
}

.urban_content_left .img div {
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.move_left_in .img::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/* 图片网格动画序列 */
.move_left_in .img div:nth-child(1) {
  -webkit-animation: show_opacity .5s ease-in-out .5s forwards;
  animation: show_opacity .5s ease-in-out .5s forwards;
}

.move_left_in .img div:nth-child(2) {
  -webkit-animation: show_opacity .5s ease-in-out 1s forwards;
  animation: show_opacity .5s ease-in-out 1s forwards;
}

.move_left_in .img div:nth-child(4) {
  -webkit-animation: show_opacity .5s ease-in-out 1.5s forwards;
  animation: show_opacity .5s ease-in-out 1.5s forwards;
}

.move_left_in .img div:nth-child(3) {
  -webkit-animation: show_opacity .5s ease-in-out 2s forwards;
  animation: show_opacity .5s ease-in-out 2s forwards;
}

.move_right_in {
  -webkit-animation: show_opacity 1.5s ease-in-out 3.5s forwards;
  animation: show_opacity 1.5s ease-in-out 3.5s forwards;
}

/* ===== 瀑布流布局 ===== */
.hall_farm_warp {
  width: 100vw;
  margin-top: 3.208vw;
  padding: 20px 21.146vw;
}

.hall_farm_warp .hall_farm_warp_tips {
  padding-top: 2.604vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.563vw;
}

.hall_farm_warp .hall_farm_warp_tips .title * {
  text-align: center;
  font-size: .833vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.hall_farm {
  -moz-column-count: 4;
  -webkit-column-count: 4;
  column-count: 4;
  -moz-column-gap: 1.042vw;
  -webkit-column-gap: 1.042vw;
  column-gap: 1.042vw;
  margin: auto;
  width: 100%;
  height: auto;
  max-width: 100vw;
}

.hall_farm::-webkit-scrollbar {
  display: none;
}

.hall_farm .box_item {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-column-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 1.042vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1.042vw;
  overflow: hidden;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: perspective(500px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform: perspective(500px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.hall_farm .box_item:hover {
  -webkit-box-shadow: .208vw .208vw .625vw rgba(0,0,0,.25);
  box-shadow: .208vw .208vw .625vw rgba(0,0,0,.25);
}

.hall_farm .box_item iframe.videoYT_box {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 9/16;
}

.hall_farm .box_item video {
  width: 100%;
  aspect-ratio: 9/16;
  -o-object-fit: cover;
  object-fit: cover;
}

.hall_farm .box_item .item_bottom_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.5);
}

.hall_farm .box_item .item_text_content {
  background-color: #666;
}

.hall_farm .box_item .item_text_content * {
  color: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.hall_farm .box_item .content {
  margin: .521vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-break: break-all;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.hall_farm .box_item .item_bottom_content .content {
  color: #fff;
  line-height: 1.6;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.hall_farm .box_item .content:nth-child(2) {
  margin-top: 0;
}

.hall_farm .box_item .bottom_tips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hall_farm .box_item .item_bottom_content .bottom_tips * {
  color: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.hall_farm .box_item .bottom_tips .Blogger {
  margin-right: 10px;
  font-size: 1.146vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.hall_farm .box_reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.hall_farm_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.083vw 0;
}

.hall_farm_title .show_video_title {
  padding: 0;
}

.hall_farm_title .show_video_title:nth-child(1) {
  margin-right: 1.042vw;
}

/* ===== 加载更多 ===== */
.loading_more {
  text-align: center;
  cursor: pointer;
  margin-top: 20px;
  display: none;
  font-size: .833vw;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* ===== 盒子显示动画 ===== */
.box_show_animation>* {
  -webkit-animation: box_show_animation 1s ease-in-out 1s forwards;
  animation: box_show_animation 1s ease-in-out 1s forwards;
}

/* ===== 响应式设计 - 平板设备 (max-width: 1023px) ===== */
@media screen and (max-width: 1023px) {
  .show_video .video_button {
    height: 100%;
    width: 10%;
    top: 0;
  }
}

/* ===== 响应式设计 - 小平板设备 (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
  .loading_more { 
    font-size: 16px;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .swiper_wrap .box_content_list { display: none }
  .swiper_wrap .mySwiper { display: block }
  
  body .urban_wrap { padding: 5.208vw 0 }
  .urban_content_left .img { height: 26.042vw; width: 26.042vw }
  
  .hall_farm_warp {
    width: 100vw;
    margin-top: 5.208vw;
    padding: 20px 5.333vw;
  }
  
  .hall_farm_warp .hall_farm_warp_tips {
    padding-top: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.953vw;
  }
  
  .hall_farm_warp .hall_farm_warp_tips .title * {
    text-align: center;
    font-size: 2.133vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .grid_box {
    height: 39.063vw;
    width: 77.474vw;
    gap: 2vw;
  }
  
  .show_video .show_video_detail {
    margin: 3.906vw 0;
    padding: 6.51vw 20%;
    width: 100%;
  }
  
  .show_video_detail_btn { padding-bottom: 0px }
  
  .new_video_pc .new_video_left .float_text {
    font-size: 3.125vw;
    width: 50vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .new_video_pc .new_video_left .float_icon { font-size: 3.385vw }
  
  .show_video .video_swiper_container.only_one { padding: 0 6.51vw }
  
  .show_video .video_swiper_container .video_list .video_item {
    min-width: 79.6vw;
    max-width: 79.6vw;
  }
  
  .show_video .video_swiper_container .video_list .video_item .source iframe {
    min-height: 44.25vw;
  }
  
  .show_video .video_swiper_container .video_list .swiper-slide-box {
    max-width: 41.667vw;
  }
  
  .show_video .show_video_title .first_box span { 
    font-size: 4.267vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video .show_video_title {
    margin-top: 1.953vw;
    padding-top: 4.813vw;
  }
  
  .show_video .show_video_title .second_box span {
    font-size: 3.2vw;
    line-height: 4.267vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video .show_video_desc * { 
    font-size: 2.083vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video .show_video_desc .show_video_desc_title {
    font-size: 5vw;
    color: #f7ed00;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .lang_cn .new_video_pc .new_video_left .float_text { top: 30% }
  
  .full_box_animation_pc { display: none }
  .full_box_animation_mobile {
    display: block;
    position: relative;
    margin-left: 10%;
    margin-bottom: 10%;
  }
  
  .full_box_animation .full_box_animation_txt {
    -webkit-animation: show_box 2s ease-in-out 2s forwards;
    animation: show_box 2s ease-in-out 2s forwards;
    text-align: left;
    padding-left: 0;
    margin-bottom: 1.333vw;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 2.4vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  }
  
  .full_box_animation .new_iam_who_tool {
    gap: 1.953vw;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .new_iam_who_tool.us {
    position: absolute;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5.667vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .new_iam_who_tool.us a {
    margin-bottom: 0;
    font-size: 1.4vw;
    line-height: 5.333vw;
    height: 5.333vw;
    min-width: 17vw;
    border-radius: 2.667vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .new_iam_who_tool.us a::before { display: none }
  
  .full_box_animation .new_iam_who_tool a {
    margin-bottom: 0;
    font-size: 1.333vw;
    line-height: 4vw;
    height: 4vw;
    min-width: 13.667vw;
    border-radius: 2vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .new_iam_who_tool a::before {
    width: 0;
    height: 0;
    display: none;
  }
  
  .lang_fr .full_box_animation .new_iam_who_tool a {
    margin-bottom: 0;
    font-size: 2.4vw;
    line-height: 5.333vw;
    height: 5.333vw;
    min-width: 17vw;
    border-radius: 2.667vw;
    padding: 2vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .new_iam_who_tool a::before {
    width: 3.27vw;
    height: 3.267vw;
    margin-right: .667vw;
  }
  
  .new_iam_who_tool a::before {
    width: 3.53vw;
    height: 3.534vw;
    margin-right: 1vw;
  }
  
  .new_iam_who_tool a.icon_new_iam_who_0::before { width: 3.53vw }
  
  .new_iam_who_tool a {
    margin-bottom: 2vw;
    font-size: 1.733vw;
    line-height: 6.667vw;
    height: 6.667vw;
    min-width: 22.667vw;
    border-radius: 3.333vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  body #swiper_wrap .swiper-button-next,
  body #swiper_wrap .swiper-button-prev { top: 3.255vw }
  
  .grid_box>div span { 
    color: #fff; 
    font-size: 1.953vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .hall_farm {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    -moz-column-gap: 2.604vw;
    -webkit-column-gap: 2.604vw;
    column-gap: 2.604vw;
    padding: 0 2.604vw;
  }
  
  .hall_farm .box_item iframe.videoYT_box { height: 52.74vw }
  
  .hall_farm .box_item .content {
    line-height: 1.2;
    font-size: 1.533vw;
    font-weight: 300;
    margin: 2vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .hall_farm .box_item .bottom_tips .Blogger {
    margin-right: 1.302vw;
    font-size: 2.067vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .news_wrap {
    margin-bottom: 0;
    padding: 6.667vw 2.25vw;
    background-color: #efefef;
  }
  
  .news_wrap .news_wrap_title { 
    font-size: 4.267vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  }
  
  .news_wrap .news_wrap_title_tips {
    font-size: 3.2vw;
    text-align: center;
    margin-bottom: 6.51vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  body .home_three_page .banner_swiper_item {
    max-width: 30.067vw;
    overflow: hidden;
    border-radius: 2.667vw;
  }
  
  body .home_three_page #banner_swiper_wz { padding: 5vw 2vw }
  
  body .home_three_page #banner_swiper_wz .banner_swiper_title {
    font-size: 2.733vw;
    text-align: center;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  body .home_three_page #banner_swiper_wz .banner_swiper_span { 
    font-size: 1.833vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .new_video_mobile .float_icon img {
    height: 9.333vw;
    width: 9.333vw;
  }
  
  .news_wrap .news_item .news_item_wz { padding: 2.042vw }
  
  .news_wrap .news_item .news_item_wz .news_item_title { 
    font-size: 2.146vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .news_wrap .news_item .news_item_wz .news_item_date { 
    font-size: 1.833vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video_detail_btn.us .price_options .price_options_item { gap: 2vw }
  
  .show_video_detail_btn.us .price_options .price_options_item span { 
    font-size: 4.4vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video_detail_btn.us .price_options .price_options_item a {
    margin-bottom: 0;
    font-size: 1.82vw;
    line-height: 5.333vw;
    height: 7.33vw;
    min-width: 26vw;
    border-radius: 3.65vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
}

/* ===== 响应式设计 - 手机设备 (max-width: 520px) ===== */
@media screen and (max-width: 520px) {
  .news_wrap .swiper-slide { border-radius: 2.667vw }
  
  .news_wrap .news_item .news_item_wz { padding: 4vw }
  
  .news_wrap .news_item .news_item_wz .news_item_title { 
    font-size: 2.933vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .news_wrap .news_item .news_item_wz .news_item_date { 
    font-size: 2.133vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .new_iam_who_tool a {
    font-size: 2.667vw;
    line-height: 10vw;
    height: 10vw;
    min-width: 35.667vw;
    border-radius: 5vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .new_iam_who_tool a::before {
    display: block;
    width: 4.53vw;
    height: 4.533vw;
    margin-right: 2vw;
  }
  
  .new_iam_who_tool a.icon_new_iam_who_0::before { width: 5.32vw }
  
  .full_box_animation {
    height: 178vw;
    width: 100vw;
  }
  
  .full_box_animation .new_iam_who_tool { gap: 1.953vw }
  
  .full_box_animation .new_iam_who_tool a {
    margin-bottom: 2vw;
    font-size: 2.667vw;
    line-height: 10vw;
    height: 10vw;
    min-width: 35.667vw;
    border-radius: 5vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .new_iam_who_tool a::before {
    display: block;
    width: 4.53vw;
    height: 4.533vw;
    margin-right: 2vw;
  }
  
  .full_box_animation .new_iam_who_tool a.icon_new_iam_who_0::before { width: 5.32vw }
  
  .full_box_animation .page_video_box .pc_show { display: none }
  .full_box_animation .page_video_box .mob_show { display: block }
  
  .full_box_animation .full_box_animation_txt {
    -webkit-animation: show_box 2s ease-in-out 2s forwards;
    animation: show_box 2s ease-in-out 2s forwards;
    text-align: center;
    padding-left: 0;
    margin-bottom: 1.923vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 4.267vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif !important;
  }
  
  .full_box_animation .full_box_animation_mobile {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    margin: 0;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool {
    margin-top: 6.667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    gap: 2vw;
    width: 100%;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool.us {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: static;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool.us .price_options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4vw;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool.us .price_options .price_options_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2vw;
    min-width: 22.667vw;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool.us .price_options .price_options_item:first-child {
    padding-right: 4vw;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool.us .price_options .price_options_item span {
    font-size: 6.4vw;
    color: #fff;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool.us a {
    margin-bottom: 2vw;
    font-size: 2.667vw;
    line-height: 10vw;
    height: 10vw;
    min-width: 36.667vw;
    border-radius: 5vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .full_box_animation .full_box_animation_mobile .new_iam_who_tool.us a::before { display: block }
  
  .lang_fr .full_box_animation .full_box_animation_mobile .new_iam_who_tool.fr a {
    margin-bottom: 2vw;
    font-size: 2.667vw;
    line-height: 10vw;
    height: 10vw;
    min-width: 36.667vw;
    border-radius: 5vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .lang_cn .full_box_animation .new_iam_who_tool a { width: 29.677vw }
  
  .lang_cn .full_box_animation .full_box_animation_mobile .text_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  
  body #swiper_wrap .swiper-button-next,
  body #swiper_wrap .swiper-button-prev { top: 1.923vw }
  
  .show_video .video_swiper_container .video_list .video_item .source .video_content .paly.on {
    top: 85%;
    left: 75%;
    background-image: url("/static/themes/t272/images/pause.png");
  }
  
  .show_video .video_swiper_container .video_list .video_item .source .video_content .full_icon {
    top: 85%;
    left: 90%;
  }
  
  .show_video .video_swiper_container .video_list .video_item .content {
    bottom: 10%;
    left: 3%;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video .video_swiper_container .video_list .video_item .content .title {
    font-size: 4.458vw;
    margin-bottom: 15px;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video .video_swiper_container .video_list .video_item .content * { 
    font-size: 12px;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video .show_video_title .first_box span { 
    font-size: 4.267vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  :root { --swiper-navigation-size: 3.846vw }
  
  body .home_three_page .banner_swiper_item {
    max-width: 50.067vw;
    overflow: hidden;
    border-radius: 2.667vw;
  }
  
  body .home_three_page #banner_swiper_wz { padding: 8vw 4vw }
  
  body .home_three_page #banner_swiper_wz .banner_swiper_title {
    font-size: 4.733vw;
    text-align: center;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  body .home_three_page #banner_swiper_wz .banner_swiper_span { 
    font-size: 3vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .news_wrap .swiper-slide { max-width: 80% }
  
  .news_wrap .swiper-button-prev { bottom: -3.269vw }
  
  .show_video .video_swiper_container { margin: 0 }
  
  .show_video .video_swiper_container.only_one { padding: 0 3.846vw }
  
  .show_video .swiper-button-next:after,
  .swiper-button-prev:after { line-height: 7.692vw }
  
  .show_video_detail_btn {
    padding-bottom: 7.692vw;
    width: 100%;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video_detail_btn.us .price_options { gap: 4vw }
  
  .show_video_detail_btn.us .price_options .price_options_item:first-child { padding-right: 4vw }
  
  body .full_video .full_video_content {
    height: 128.269vw;
    width: 72.115vw;
    background-color: rgba(0,0,0,0);
    margin: auto;
    position: relative;
  }
  
  .news_wrap .swiper-pagination {
    text-align: right;
    padding-right: 1.923vw;
  }
  
  .show_video { margin: 0 auto 2.885vw }
  
  .show_video .show_video_detail {
    margin: 5.769vw 0;
    padding: 9.615vw 3.846vw 3.846vw;
    width: 100%;
  }
  
  .show_video .show_video_detail .show_video_detail_title { display: block }
  
  .show_video .show_video_detail .show_video_detail_title .star { margin-top: 1.923vw }
  
  .new_video_pc { display: none }
  
  .new_video_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 6.667vw;
  }
  
  .new_video_mobile .video {
    margin: auto;
    width: 90%;
    border-radius: 2.667vw;
    overflow: hidden;
  }
  
  .new_video_mobile .video video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .news_wrap .news_wrap_title_tips { margin-bottom: 30px }
  
  .grid_box {
    height: 106.4vw;
    width: 88.933vw;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(7, 1fr);
    margin: 0 5.333vw 55px;
  }
  
  .grid_box>div { border-radius: 2.885vw }
  
  .grid_box>div>span { 
    font-size: 3.2vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .grid_box_wrap { margin: 0 0 }
  
  .show_video .show_video_desc * { 
    font-size: 2.692vw;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .show_video .show_video_desc .show_video_desc_title {
    font-size: 7vw;
    color: #f7ed00;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  }
  
  .hall_farm {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-gap: 3.846vw;
    -webkit-column-gap: 3.846vw;
    column-gap: 3.846vw;
    padding: 0 3.846vw;
  }
  
  .hall_farm .box_item {
    border-radius: 2.667vw;
    margin-bottom: 2.667vw;
  }
  
  .hall_farm .box_item iframe.videoYT_box { height: 75.74vw }
  
  .hall_farm_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .hall_farm_title .show_video_title:nth-child(1) {
    margin-right: 0;
    text-align: left;
    padding-left: 5%;
  }
  
  .hall_farm_title .show_video_title:nth-child(2) {
    text-align: right;
    margin-top: 3.846vw;
    padding-right: 5%;
  }
  
  /* 手机版网格重新布局 */
  .grid_box>div:nth-child(1) { grid-column: 1/3; grid-row: 1/5 }
  .grid_box>div:nth-child(2) { grid-column: 1/4; grid-row: 5/8 }
  .grid_box>div:nth-child(4) { grid-column: 3/4; grid-row: 1/3 }
  .grid_box>div:nth-child(3) { grid-column: 3/4; grid-row: 3/5 }
  
  body .urban_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }
  
  body .urban_content_right {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  body .urban_wrap_mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  body .urban_content_left,
  body .urban_content_right { width: 90% }
  
  body .urban_content_left,
  body .urban_content_right .urban_content_title,
  .urban_content_wz { text-align: center }
  
  .move_left_in {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation: none;
    animation: none;
  }
  
  .move_right_in {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }
  
  .urban_content_left .img {
    height: 25vw;
    width: 25vw;
    margin: 0 auto 3.846vw;
  }
}