@keyframes fadeIn {
  to {
    opacity: 1;
    /* 最终完全显示 */
    transform: scale(1);
    /* 最终回到原位置 */
  }
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    /* 最终完全显示 */
    transform: translateY(-50%) scale(1);
    /* 最终回到原位置 */
    left: 10%;
    top: 50%;
    filter: blur(0rem);
  }
}
header {
  position: fixed;
  top: 2%;
  left: 0%;
  z-index: 9999;
  width: 100%;
  line-height: 4.375rem;
  height: 4.375rem;
  opacity: 0;
  /* 透明 */
  transform: scale(1.1);
  animation: fadeIn 1.5s ease-out 2s forwards;
  transition: all 0.5s ease-out;
  --after-width: 80%;
  --after-opacity: 0.4;
}
header > div {
  line-height: inherit;
  overflow: auto;
  overflow: hidden;
  padding: 0 0.75rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 36%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img {
  margin-right: 1.25rem;
}
header > div .logo .logo_img a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img a img {
  height: 3.875rem;
}
header > div .logo .logo_text a h3 {
  font-size: 1.875rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.625rem;
}
header > div .logo .logo_text a p {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  width: 64%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: calc(100% - 0rem);
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  line-height: inherit;
  position: relative;
  width: 14.28%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li:hover {
  background-color: #dbb46f;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 112px;
  left: 0;
  background-color: #e6f2f8;
}
header > div nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 20px;
}
header > div nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 20px;
}
header > div nav ul li .menu .menu_item a {
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #dbb46f;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 1.875rem;
  padding-left: 1.25rem;
}
header > div nav .tool > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool > div i {
  color: #fff;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  background-color: #dbb46f;
  line-height: 1.875rem;
  text-align: center;
}
header > div nav .tool > div h3 {
  margin-left: 0.625rem;
  font-size: 0.875rem;
  color: #fff;
  line-height: 0.875rem;
  font-weight: 400;
  text-align: center;
}
header > div nav .tool > p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.875rem;
  font-weight: 600;
  text-align: left;
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--after-width);
  height: 100%;
  background-color: rgba(0, 0, 0);
  opacity: var(--after-opacity);
  backdrop-filter: blur(0.625rem);
  border-radius: 0.25rem;
  z-index: -1;
  transition: width 0.3s ease, opacity 0.3s ease;
}
header.active {
  top: 0;
  --after-width: 100%;
  --after-opacity: 0.9;
}
footer {
  background: #000;
  min-height: 70vh;
  padding-top: 8.75rem;
  box-sizing: border-box;
  position: relative;
  z-index: 9;
}
footer .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .w80 .top .sub1 {
  width: 40%;
}
footer .w80 .top .sub1 .sub1_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .w80 .top .sub1 .sub1_title h4 {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: MyFont;
  background: linear-gradient(to right, #fff, #dbb46f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
footer .w80 .top .sub1 .sub1_title span {
  width: calc(100% - 8.125rem);
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
}
footer .w80 .top .sub1 .sub1_nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .w80 .top .sub1 .sub1_nav .item h3 {
  margin-bottom: 1rem;
}
footer .w80 .top .sub1 .sub1_nav .item h3 a {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
footer .w80 .top .sub1 .sub1_nav .item p {
  margin-bottom: 1rem;
}
footer .w80 .top .sub1 .sub1_nav .item p a {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
footer .w80 .top .sub1 .sub1_nav .item p:nth-last-of-type(1) {
  margin-bottom: 0;
}
footer .w80 .top .sub2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .w80 .top .sub2 .left .sub2_sub1 {
  margin-bottom: 1.2rem;
}
footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon {
  margin-bottom: 0.3rem;
}
footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon img {
  width: 6rem;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_txt p {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.3;
}
footer .w80 .top .sub2 .right {
  margin-right: 4rem;
}
footer .w80 .top .sub2 .right .sub2_sub2 h3 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
  margin-bottom: 1.2rem;
  background: linear-gradient(to right, #fff, #dbb46f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
footer .w80 .top .sub2 .right .sub2_sub2 p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
  margin-right: -0.7rem;
  opacity: 0.6;
}
footer .w80 .top .sub2 .right .sub2_sub3 {
  margin-top: 3.5rem;
}
footer .w80 .top .sub2 .right .sub2_sub3 h3 {
  text-align: left;
  margin-bottom: 1.5rem;
}
footer .w80 .top .sub2 .right .sub2_sub3 h3 img {
  width: initial;
}
footer .w80 .top .sub2 .right .sub2_sub3 p {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.6;
  margin-bottom: 1rem;
}
footer .w80 .top .sub2 .right .sub2_sub3 h4 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
footer .w80 .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
}
footer .w80 .bottom a {
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  display: block;
  margin: 0 0.5rem;
}
@media screen and (max-width: 1440px) {
  footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon img {
    width: 5rem;
  }
}
@media screen and (max-width: 992px) {
  footer {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3.75rem;
    background-position: center;
  }
  footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon img {
    width: 5rem;
  }
  footer .w80 .top .sub1 {
    display: none;
  }
  footer .w80 .top .sub2 .left {
    display: none;
  }
  footer .w80 .top .sub2 .right {
    margin-left: 0;
  }
  footer .w80 .top .sub2 .right .sub2_sub2 h3 {
    font-size: 1.5rem;
    text-align: left;
  }
  footer .w80 .top .sub2 .right .sub2_sub2 p {
    font-size: 1rem;
    text-align: left;
  }
  footer .w80 .top .sub2 .right .sub2_sub3 h3 {
    text-align: left;
    display: none;
  }
  footer .w80 .top .sub2 .right .sub2_sub3 p {
    text-align: left;
  }
  footer .w80 .bottom {
    padding-bottom: 3rem;
  }
  footer .w80 .bottom a {
    line-height: 1.2;
    color: #fff;
    opacity: 0.4;
    font-size: 0.875rem;
  }
}
.more {
  position: relative;
}
.more a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 14rem;
  height: 4rem;
}
.more a p {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.more a span {
  width: 1px;
  height: 1.5rem;
  background-color: #fff;
  opacity: 0.6;
  margin: 0 1.5rem;
}
.more a img {
  width: 1rem;
}
.more a {
  position: relative;
  z-index: 2;
}
@keyframes infiniteRotation {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.index .part01 {
  height: 100vh;
  width: 100%;
  background-color: #000;
}
.index .part01 .banner {
  position: fixed;
  /* 为子元素绝对定位做铺垫 */
  width: 100%;
  height: 100vh;
  /* 可根据需求调整高度 */
  overflow: hidden;
  /* 隐藏视频超出部分 */
  z-index: 3;
}
.index .part01 .banner .videoBg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #000 url(/images/bannerVideo.jpg) no-repeat top center / cover;
  /* 确保视频在最底层 */
}
.index .part01 .banner .videoBg video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  /* 保持视频比例并覆盖容器 */
}
.index .part01 .banner .videoBg img {
  width: 100%;
  display: none;
}
.index .part01 .banner .imgBg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  /* 确保视频在最底层 */
}
.index .part01 .banner .imgBg img {
  width: auto;
  height: 100%;
  object-fit: cover;
  /* 保持视频比例并覆盖容器 */
}
.index .part01 .banner .videoText {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 3;
}
.index .part01 .banner .videoText .w80 .bannerText {
  position: absolute;
  top: 48%;
  left: 12%;
  filter: blur(1rem);
  opacity: 0;
  /* 透明 */
  transform: translateY(-50%) scale(1.2);
  animation: fadeInLeft 1.5s ease-out 2s forwards;
}
.index .part01 .banner .videoText .w80 .bannerText h3 {
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1.25rem;
  font-family: "MyFont";
  letter-spacing: 1rem;
  /* 定义渐变方向和颜色 */
  background-image: linear-gradient(45deg, #fff, #dbb46f);
  /* 将背景裁剪至文字区域，加前缀兼容WebKit内核浏览器 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字设为透明，显示背景渐变 */
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.index .part01 .banner .videoText .w80 .bannerText p {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  display: inline-block;
  letter-spacing: 0.5rem;
  /* 定义渐变方向和颜色 */
  background-image: linear-gradient(45deg, #fff, #dbb46f);
  /* 将背景裁剪至文字区域，加前缀兼容WebKit内核浏览器 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字设为透明，显示背景渐变 */
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.index .part01 .banner .videoText .w80 .bannerBottom {
  position: absolute;
  left: 10%;
  bottom: 4rem;
  width: 80%;
  opacity: 1;
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part01 .banner .videoText .w80 .bannerBottom .t1 {
  width: 30vw;
}
.index .part01 .banner .videoText .w80 .bannerBottom .t1 h4 {
  font-size: 1rem;
  color: #dbb46f;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}
.index .part01 .banner .videoText .w80 .bannerBottom .t1 p {
  font-size: 0.875rem;
  color: #dbb46f;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
  letter-spacing: 0px;
}
.index .part01 .banner .videoText .w80 .bannerBottom .t2 {
  width: 50%;
}
.index .part01 .banner .videoText .w80 .bannerBottom .t2 p {
  font-size: 0.875rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: right;
  letter-spacing: 0px;
}
.index .part01 .bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #f3f3f3;
}
.index .part04 {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fff url(/images/partBg.jpg) no-repeat bottom center / cover;
}
.index .part04 .logo {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%);
  width: 26rem;
  z-index: 3;
}
.index .part04 .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index .part04 .w80 {
  position: absolute;
  z-index: 2;
  bottom: 20vh;
  left: 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part04 .w80 .right {
  width: 100%;
  text-align: center;
}
.index .part04 .w80 .right .txt p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: center;
  opacity: 1;
  margin-bottom: 1rem;
}
.index .part04 .w80 .right .more {
  display: inline-block;
  margin: 1.25rem auto;
  background-color: #000;
}
.index .part04 .w80 .right .more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #dbb46f;
  transition: all 0.3s ease;
}
.index .part04 .w80 .right .more:hover::after {
  width: 100%;
}
.index .part04 .bg {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  background: url(/images/partBg.jpg) no-repeat bottom center / 100%;
}
.index .part04 .bg video {
  width: 100%;
}
.index .part02 {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
  z-index: 3;
  overflow: hidden;
  background: #000 url(/images/part02Bg.jpg) no-repeat center / cover;
}
.index .part02 .textBox {
  position: absolute;
  top: 15vh;
  z-index: 3;
  width: 80%;
  left: 10%;
}
.index .part02 .textBox .buttons-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.index .part02 .textBox .buttons-container .btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.625rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 19%;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.2);
  border-left: 0.25rem solid #efd0a4;
  box-sizing: border-box;
}
.index .part02 .textBox .buttons-container .btn.hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.3);
}
.index .part02 .textBox .buttons-container .btn.active {
  background: #dbb46f;
  transform: translateY(-3px);
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.3);
}
.index .part02 .bgBox {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  z-index: 2;
}
.index .part02 .bgBox .bg-item-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* 核心：通过overflow裁剪实现收缩效果 */
  border-radius: 1.25rem;
  /* 把圆角从.itemBg移到父容器，避免裁剪异常 */
  opacity: 0;
  /* 默认隐藏 */
  transition: opacity 0.5s ease-in-out;
  /* 缓进缓出动画 */
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(1) {
  z-index: 5;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(1) .itemBg {
  background-image: url(/images/part02Img01.jpg);
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(1) .itemBg .content {
  right: 15vw;
  left: auto;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(2) {
  z-index: 4;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(2) .itemBg {
  background-image: url(/images/part02Img02.jpg);
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(3) {
  z-index: 3;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(3) .itemBg {
  background-image: url(/images/part02Img03.jpg);
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(3) .itemBg .content {
  left: 15vw;
  right: auto;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(4) {
  z-index: 2;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(4) .itemBg {
  background-image: url(/images/part02Img04.jpg);
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(4) .itemBg .content {
  right: 15vw;
  left: auto;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(5) {
  z-index: 1;
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(5) .itemBg {
  background-image: url(/images/part02Img05.jpg);
}
.index .part02 .bgBox .bg-item-wrapper:nth-child(5) .itemBg .content {
  left: 15vw;
  right: auto;
}
.index .part02 .bgBox .bg-item-wrapper.active {
  opacity: 1;
  /* 激活状态显示 */
}
.index .part02 .bgBox .bg-item-wrapper.active .itemBg .content {
  filter: blur(0);
  transform: translateX(0rem) translateY(-50%);
}
.index .part02 .bgBox .bg-item-wrapper .itemBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  /* 保持原尺寸，不缩放 */
  height: 100%;
  background-size: cover;
  background-position: left top;
  /* 背景图固定左侧对齐，避免位移变形 */
  overflow: hidden;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.5) !important;
  /* 移除scaleX相关配置，改用translateX */
  transform: translateX(0);
  /* 初始位置：完全显示 */
  will-change: transform;
  /* 仅监听translateX变化，性能更优 */
  border: 0 !important;
  box-sizing: border-box;
  opacity: 1;
  z-index: 6;
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content {
  position: absolute;
  top: 50%;
  right: 15vw;
  z-index: 2;
  width: auto;
  height: 40vh;
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: 0.375rem;
  filter: blur(0.625rem);
  transition: all 1s ease;
  transition-delay: 0.5s;
  transform: translateX(3rem) translateY(-50%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  height: inherit;
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5rem;
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  /* 定义渐变方向和颜色 */
  background-image: linear-gradient(45deg, #fff, #dbb46f);
  /* 将背景裁剪至文字区域，加前缀兼容WebKit内核浏览器 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字设为透明，显示背景渐变 */
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: "MyFont";
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 span {
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 0 0 0.25 rgba(0, 0, 0, 0.2);
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p {
  margin-left: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: white;
  width: auto;
  max-width: 60rem;
  border-radius: 0.5rem;
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 0.125rem;
  position: relative;
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p::after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -2.5rem;
  background-image: linear-gradient(to bottom, #dbb46f, transparent);
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p i {
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: -0.25rem;
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p span {
  font-size: 1rem;
  color: #dbb46f;
}
.index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p span img {
  margin-top: 0.375rem;
  width: 1rem;
  display: inline-block;
  transform: rotate(90deg);
}
.index .part02 .bgBox .bg-item-wrapper .itemBg::after {
  display: block;
  content: "";
  width: 100%;
  height: 30vh;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #000000, transparent);
}
.index .part02 .bgBox .bg-item-wrapper .itemBg::before {
  display: block;
  content: "";
  width: 100%;
  height: 30vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}
.index .part03 {
  background: #090909 url(/images/part04Bg.jpg) no-repeat top left / contain;
  width: 100%;
  position: relative;
  z-index: 6;
  padding-bottom: 8.75rem;
  padding-top: 5rem;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 {
  overflow: visible;
  position: relative;
  z-index: 4;
}
.index .part03 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .top .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.625rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
}
.index .part03 .w80 .top .title p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.8;
}
.index .part03 .w80 .top .more a {
  background: transparent;
  border: 0.125rem solid #dbb46f;
  position: relative;
  z-index: 2;
}
.index .part03 .w80 .top .more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #dbb46f;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.index .part03 .w80 .top .more:hover::after {
  width: 100%;
}
.index .part03 .bottom {
  position: relative;
  z-index: 6;
  margin-top: 3rem;
  padding-bottom: 2rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.index .part03 .bottom .box1 {
  overflow: hidden;
}
.index .part03 .bottom .box1 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: max-content;
}
.index .part03 .bottom .box1 ul li {
  flex-shrink: 0;
  width: 25rem;
  height: 15rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  margin-right: 1%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1.25rem);
  position: relative;
  border-radius: 0.75rem;
  cursor: pointer;
}
.index .part03 .bottom .box1 ul li .img {
  opacity: 1;
}
.index .part03 .bottom .box1 ul li .img img {
  width: 100%;
  transform: scale(1.1);
  transition: all 1s ease;
}
.index .part03 .bottom .box1 ul li .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: self-start;
  padding: 2rem;
  box-sizing: border-box;
}
.index .part03 .bottom .box1 ul li .text .num {
  font-size: 2rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.index .part03 .bottom .box1 ul li .text .t_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part03 .bottom .box1 ul li .text .t_box .t_name span {
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 0.125rem;
  opacity: 0.6;
}
.index .part03 .bottom .box1 ul li .text .t_box .t_name h3 {
  margin-top: 8px;
  font-size: 1.375rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 0.125rem;
}
.index .part03 .bottom .box1 ul li .text .t_box .t_more {
  opacity: 0.6;
}
.index .part03 .bottom .box1 ul li .text .t_box .t_more a {
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .part03 .bottom .box1 ul li::after {
  display: block;
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: 2;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.index .part03 .bottom .box2 {
  overflow: hidden;
}
.index .part03 .bottom .box2 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: max-content;
}
.index .part03 .bottom .box2 ul li {
  flex-shrink: 0;
  width: 25rem;
  height: 15rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  margin-right: 1%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1.25rem);
  position: relative;
  border-radius: 12px;
  cursor: pointer;
}
.index .part03 .bottom .box2 ul li .img {
  opacity: 1;
}
.index .part03 .bottom .box2 ul li .img img {
  width: 100%;
  transform: scale(1.1);
  transition: all 1s ease;
}
.index .part03 .bottom .box2 ul li .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: self-start;
  padding: 2rem;
  box-sizing: border-box;
}
.index .part03 .bottom .box2 ul li .text .num {
  font-size: 2rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.index .part03 .bottom .box2 ul li .text .t_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part03 .bottom .box2 ul li .text .t_box .t_name span {
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 0.125rem;
  opacity: 0.6;
}
.index .part03 .bottom .box2 ul li .text .t_box .t_name h3 {
  margin-top: 0.5rem;
  font-size: 1.375rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 0.125rem;
}
.index .part03 .bottom .box2 ul li .text .t_box .t_more {
  opacity: 0.6;
}
.index .part03 .bottom .box2 ul li .text .t_box .t_more a {
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .part03 .bottom .box2 ul li::after {
  display: block;
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: 2;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.index .part03 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index .part03 .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center / 100%;
}
.index .part03 .bg img {
  display: none;
  width: 100%;
}
.index .part03::before {
  display: block;
  content: "";
  width: 100%;
  height: 30vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to bottom, #000000, transparent);
}
.index .part05 {
  position: relative;
  z-index: 6;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: #000 url(/images/part04Bg.jpg) no-repeat center / 100%;
}
.index .part05 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .top .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.625rem;
  letter-spacing: 0.625rem;
  font-family: "MyFont";
}
.index .part05 .w80 .top .title p {
  font-size: 1.5rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .part05 .w80 .top .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .top .btn .l_btn {
  width: 4rem;
  height: 4rem;
  background-color: #000;
  border: 0.125rem solid #dbb46f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.25rem;
  cursor: pointer;
}
.index .part05 .w80 .top .btn .l_btn img {
  width: 1rem;
}
.index .part05 .w80 .top .btn .l_btn:hover {
  background-color: #dbb46f;
}
.index .part05 .w80 .top .btn .r_btn {
  width: 4rem;
  height: 4rem;
  background-color: #000;
  border: 0.125rem solid #dbb46f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.25rem;
  margin-left: 1rem;
  cursor: pointer;
}
.index .part05 .w80 .top .btn .r_btn img {
  width: 1rem;
}
.index .part05 .w80 .top .btn .r_btn:hover {
  background-color: #dbb46f;
}
.index .part05 .w80 .bottom {
  margin-top: 4rem;
}
.index .part05 .w80 .bottom > div {
  padding-bottom: 2.5rem;
}
.index .part05 .w80 .bottom > div > div .item .img {
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}
.index .part05 .w80 .bottom > div > div .item .img img {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}
.index .part05 .w80 .bottom > div > div .item .txt {
  padding: 2rem 1rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom > div > div .item .txt .l h3 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.index .part05 .w80 .bottom > div > div .item .txt .l p {
  font-size: 0.875rem;
  color: #999;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 1;
}
.index .part05 .w80 .bottom > div > div .item .txt .l p span {
  margin-right: 0.6rem;
}
.index .part05 .w80 .bottom > div > div .item .txt .r img {
  width: 1.125rem;
}
.index .part05 .w80 .bottom > div > div .item .txt .r img:nth-of-type(1) {
  display: block;
}
.index .part05 .w80 .bottom > div > div .item .txt .r img:nth-of-type(2) {
  display: none;
}
.index .part05 .w80 .bottom > div > div .item:hover .img img {
  transform: scale(1.1);
}
.index .part05 .w80 .bottom > div > div .item:hover .txt {
  background-color: #dbb46f;
}
.index .part05 .w80 .bottom > div > div .item:hover .txt .l h3 {
  color: #fff;
}
.index .part05 .w80 .bottom > div > div .item:hover .txt .l p {
  color: #fff;
}
.index .part05 .w80 .bottom > div > div .item:hover .txt .r img:nth-of-type(1) {
  display: none;
}
.index .part05 .w80 .bottom > div > div .item:hover .txt .r img:nth-of-type(2) {
  display: block;
}
.index .part05 .w80 .bottom > div .swiper-pagination {
  top: auto;
  bottom: 0;
  height: 1px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
.index .part05 .w80 .bottom > div .swiper-pagination span {
  height: 1px;
  background-color: #dbb46f;
}
.index .part06 {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 8;
}
.index .part06 .logo-mask-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  overflow: hidden;
}
.index .part06 .logo-mask-container .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/your-bg-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  /* 初始为1 */
  z-index: 1;
}
.index .part06 .logo-mask-container .logo-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("/images/bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transform-origin: center center;
  z-index: 2;
}
.index .part06 .logo-mask-container .join-text {
  position: absolute;
  top: 40%;
  left: 50%;
  opacity: 0;
  text-align: center;
  z-index: 3;
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
}
.index .part06 .logo-mask-container .join-text h3 {
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5rem;
  /* 定义渐变方向和颜色 */
  background-image: linear-gradient(45deg, #fff, #dbb46f);
  /* 将背景裁剪至文字区域，加前缀兼容WebKit内核浏览器 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字设为透明，显示背景渐变 */
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: "MyFont";
}
.index .part06 .logo-mask-container .join-text h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 100;
}
.index .part06 .logo-mask-container .join-text .more {
  display: inline-block;
  margin-top: 3rem;
  background-color: #000;
}
.index .part06 .logo-mask-container .join-text .more a {
  position: relative;
  z-index: 2;
}
.index .part06 .logo-mask-container .join-text .more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #dbb46f;
  transition: all 0.3s ease;
}
.index .part06 .logo-mask-container .join-text .more:hover::after {
  width: 100%;
}
@media (max-width: 480px) {
  header {
    display: none;
  }
  .index .part02 {
    background: #000 url(/images/part02Bg-3.jpg) no-repeat center / cover;
  }
  .index .part01 .banner {
    height: 30vh;
    position: relative;
    margin-top: 3.125rem;
  }
  .index .part01 .banner .videoBg {
    height: 30vh;
  }
  .index .part01 .banner .videoBg video {
    height: 30vh;
  }
  .index .part01 .banner .videoText {
    height: 30vh;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom {
    display: none;
  }
  .index .part01 .banner .videoText .w80 .bannerText h3 {
    font-size: 1.5rem !important;
    letter-spacing: 0.125rem;
    margin-bottom: 0.5rem;
  }
  .index .part01 .banner .videoText .w80 .bannerText p {
    font-size: 1.125rem;
    letter-spacing: 0.125rem;
  }
  .index .part01 .gs_content {
    margin-top: 5rem;
    width: 90vw;
    position: relative;
    top: 0;
    left: 5vw;
    right: 0;
    transform: translateY(0);
  }
  .index .part01 .gs_content .txt h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .index .part01 .gs_content .txt img {
    width: 60vw;
  }
  .index .part01 .gs_content .more {
    margin-top: 3rem;
  }
  .index .part01 {
    height: 28vh;
  }
  .index .part03 .w80 .top .item .text {
    width: 100%;
    margin-bottom: 2rem;
  }
  .index .part03 .w80 .top .item .img {
    width: 100%;
  }
  .index .part03 .w80 .top .item .text .p_t h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .index .part03 .w80 .top .item .text .p_t h2 {
    font-size: 1.5rem;
  }
  .index .part03 .w80 .top .item .text .more {
    display: none;
  }
  .index .part03 .w80 .top {
    margin-top: 0;
    height: 50vh;
  }
  .index .part03 .w80 .bottom {
    height: 30vh;
    margin-top: 4rem;
  }
  .index .part03 .w80 .bottom .item h3 {
    font-size: 1.125rem;
  }
  .index .part03 .w80 .bottom .item p {
    font-size: 0.75rem;
  }
  .index .part03 .w80 .bottom .item {
    padding-left: 2rem;
    width: 50%;
    box-sizing: border-box;
  }
  .index .part03 .w80 .bottom .item::before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .index .part05 .w80 .top .title h2 {
    font-size: 1.5rem;
  }
  .index .part05 .w80 .top .title p {
    font-size: 1.125rem;
  }
  .index .part05 {
    background-size: cover;
    padding-top: 8rem;
  }
  .index .part06 .logo-mask-container .join-text h3 {
    font-size: 1.5rem;
  }
  .index .part06 .logo-mask-container .join-text h4 {
    font-size: 1.125rem;
  }
  .index .part06 .logo-mask-container .join-text {
    top: 50%;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt > h3 {
    font-size: 1.75rem;
    margin-bottom: 0;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item {
    width: 100vw;
    gap: 0.75rem;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .img {
    width: 50%;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt {
    width: 100%;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt p {
    font-size: 1rem;
  }
  .index .part07 {
    background-size: cover;
  }
  .index .part07 .animation-section .battery img {
    width: 40vw;
  }
  .index .part07 .animation-section .text-wrapper {
    width: 100vw;
  }
  .index .part04 .logo {
    width: 14.5rem;
  }
  .index .part04 .w80 {
    left: 5%;
  }
  .more a {
    width: 12rem;
    height: 3rem;
  }
  .more a p {
    font-size: 0.875rem;
  }
  .index .part03 .w80 .top .title h2 {
    font-size: 1.5rem;
  }
  .index .part03 .w80 .top .title p {
    font-size: 1.125rem;
  }
  .index .part03 .w80 .top .more {
    display: none;
  }
  .index .part03 .w80 .top {
    height: auto;
  }
  .index .part03 .w80 .bottom {
    height: auto;
  }
  .index .part03 .w80 .bottom ul li {
    width: 100%;
    height: 13.75rem;
    padding-bottom: 0.75rem;
  }
  .index .part03 {
    padding-bottom: 2rem;
  }
  .index .part03 .w80 .bottom ul li .text .t_box .t_name h3 {
    font-size: 1.25rem;
  }
  .index .part05 .w80 .top .btn {
    display: none;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l h3 {
    font-size: 1rem;
  }
  .index .part04 .bg {
    bottom: -0.5rem;
    top: auto;
    height: auto;
    z-index: -1;
  }
  .index .part04 .logo {
    width: 7.5rem;
    position: relative;
    margin-top: 5rem;
    margin-bottom: 1.5rem;
  }
  .index .part04 .w80 {
    position: static;
  }
  .index .part04 .w80 .right .txt p {
    text-align: left;
    font-weight: normal;
  }
  .index .part04 {
    min-height: 90vh;
  }
  .index .part02 .textBox .buttons-container .btn {
    width: 33%;
    font-size: 1rem;
    padding: 0.375rem 0rem;
    margin-right: 0.5%;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    border-left: 0.125rem solid #efd0a4;
  }
  .index .part02 .textBox .buttons-container .btn:nth-of-type(3n) {
    margin-right: 0;
  }
  .index .part02 .textBox .buttons-container .btn h3 {
    font-size: 1rem;
  }
  .index .part02 .textBox {
    width: 90%;
    left: 5%;
  }
  .index .part02 .textBox .buttons-container {
    justify-content: flex-start;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg {
    background-position: top center;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
    font-size: 1.25rem;
    padding-top: 0;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content {
    width: 90%;
    right: 5%;
    height: auto;
    bottom: 10vh !important;
    top: auto;
    padding: 0;
    transform: translateY(0);
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(4) .itemBg .content {
    right: 5%;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(1) .itemBg .content {
    left: 5%;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(3) .itemBg .content {
    left: 5%;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(5) .itemBg .content {
    left: 5%;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p {
    font-size: 1rem;
    writing-mode: initial;
    margin-left: 0;
    letter-spacing: 0;
    line-height: 1.6;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .index .part02 .bgBox {
    height: 84vh;
  }
  .index .part02 {
    height: 84vh;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a {
    align-items: center;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p::after {
    display: none;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p span img {
    transform: rotate(0deg);
    margin-top: 0;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p i {
    letter-spacing: 0;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p span {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  }
  .index .part03 .bottom .box1 ul li {
    width: 18rem;
    height: 12rem;
    padding: 1rem;
  }
  .index .part03 .bottom .box2 ul li {
    width: 18rem;
    height: 12rem;
  }
  .index .part03 .bottom .box1 ul li .text {
    padding: 1.25rem;
  }
  .index .part03 .bottom .box1 ul li .text .t_box .t_name h3 {
    font-size: 1rem;
    font-weight: normal;
  }
  .index .part03 .bottom .box1 ul li .text .num {
    font-size: 1.25rem;
  }
  .index .part03 .bottom .box1 ul li .text .t_box .t_name span {
    font-size: 0.75rem;
  }
  .index .part03 .bottom .box2 ul li .text {
    padding: 1.25rem;
  }
  .index .part03 .bottom .box2 ul li .text .t_box .t_name h3 {
    font-size: 1rem;
    font-weight: normal;
  }
  .index .part03 .bottom .box2 ul li .text .num {
    font-size: 1.25rem;
  }
  .index .part03 .bottom .box2 ul li .text .t_box .t_name span {
    font-size: 0.75rem;
  }
  .index .part05 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .index .part05 .w80 .top .title p {
    font-size: 1rem;
  }
  .index .part05 .w80 .bottom {
    margin-top: 2rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 span {
    font-size: 1.5rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  header {
    display: none;
  }
  .index .part01 .banner {
    height: 100vh;
    border-radius: 1rem;
    margin-top: 3.125rem;
  }
  .index .part01 .banner .imgBg {
    opacity: 0 !important;
  }
  .index .part01 .banner .videoBg video {
    width: 100%;
    height: 100%;
  }
  .index .part01 .banner .videoText {
    height: 82vh;
  }
  .index .part01 .banner .videoText .w80 .bannerText h3 {
    font-size: 2.25rem !important;
  }
  .index .part01 .banner .videoText .w80 .bannerText p {
    font-size: 1.25rem !important;
    font-weight: 400;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom {
    bottom: 2rem;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t2 {
    display: none;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t1 {
    width: 80vw;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t1 h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t1 p {
    font-size: 0.625rem;
  }
  .index .part01 .banner .imgBg img {
    width: 100%;
  }
  .index .part01 .gs_content {
    width: 90vw;
    right: 5vw;
  }
  .index .part01 .gs_content .txt h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  .index .part02 .textBox .buttons-container .btn {
    font-size: 1.125rem;
  }
  .index .part02 .textBox {
    display: none;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .index .part03 .w80 .top .item .text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .index .part03 .w80 .top .item .img {
    width: 80%;
    margin: 3rem auto 0;
  }
  .index .part03 .w80 .top .item .text .p_t h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .index .part03 .w80 .top .item .text .p_t h2 {
    font-size: 2rem;
  }
  .index .part03 .w80 .top .item .text .more {
    margin-top: 0;
  }
  .index .part03 .w80 .top .item .text .p_icon {
    display: none;
  }
  .index .part03 .w80 .top {
    margin-top: 0;
  }
  .index .part03 .w80 .bottom .item h3 {
    font-size: 1.125rem;
  }
  .index .part03 .w80 .bottom .item p {
    font-size: 0.75rem;
  }
  .index .part03 .w80 .bottom {
    height: 14vh;
  }
  .index .part03 .w80 .bottom .item::before {
    width: 1.25rem;
    height: 1.25rem;
    left: 1rem;
  }
  .index .part03 .w80 .bottom .item {
    padding-left: 3rem;
    box-sizing: border-box;
    width: 33%;
  }
  .more a {
    width: 12rem;
    height: 3.5rem;
  }
  .more a p {
    font-size: 0.875rem;
  }
  .index .part05 .w80 .top .title h2 {
    font-size: 2rem;
  }
  .index .part05 .w80 .top .title p {
    font-size: 1.125rem;
  }
  .index .part05 .w80 .top .more {
    margin-top: 0;
  }
  .index .part05 {
    background-size: cover;
    padding-top: 5rem;
  }
  .index .part03 {
    padding-top: 10rem;
  }
  .index .part06 .logo-mask-container .join-text h3 {
    font-size: 2rem;
  }
  .index .part06 .logo-mask-container .join-text h4 {
    font-size: 1.25rem;
  }
  .index .part06 .logo-mask-container .join-text {
    top: 50%;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item {
    width: 100vw;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .img {
    width: 14rem;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt {
    width: calc(100% - 16rem);
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt > h3 {
    font-size: 2rem;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt p {
    font-size: 1rem;
  }
  .index .part07 .animation-section .battery img {
    width: 36vw;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l {
    width: 90%;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l h3 {
    font-size: 1rem;
  }
  .index .part04 .logo {
    width: 14rem;
  }
  .index .part04 .bg {
    bottom: -0.5rem;
    top: auto;
    height: auto;
  }
  .index .part04 .w80 {
    left: 5%;
  }
  .index .part02 .textBox {
    display: block;
    width: 90%;
    left: 5%;
  }
  .index .part02 .textBox .buttons-container .btn {
    padding: 0.5rem 0rem;
  }
  .index .part02 .textBox .buttons-container .btn h3 {
    font-size: 1rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg {
    background-position: center;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
    font-size: 1.5rem;
    padding-top: 0;
    margin-right: 0.5rem;
    padding-right: 1rem;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(1) .itemBg .content {
    left: 5vw;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p {
    margin-left: 1rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content {
    right: 5vw;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(3) .itemBg .content {
    left: 5vw;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(4) .itemBg .content {
    right: 5vw;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(5) .itemBg .content {
    left: 5vw;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p {
    font-size: 1rem;
  }
  .index .part03 .w80 .top .title h2 {
    font-size: 2rem;
  }
  .index .part03 .w80 .top .title p {
    font-size: 1.125rem;
  }
  .index .part03 .bottom .box1 ul li {
    width: 20rem;
    height: 15rem;
  }
  .index .part05 .w80 .top .btn .l_btn {
    width: 3rem;
    height: 3rem;
  }
  .index .part05 .w80 .top .btn .r_btn {
    width: 3rem;
    height: 3rem;
  }
  .index .part03 .bottom .box1 ul li {
    width: 18rem;
    height: 13rem;
  }
  .index .part03 .bottom .box2 ul li {
    width: 18rem;
    height: 13rem;
  }
  .index .part03 .bottom .box1 ul li .text .t_box .t_more {
    display: none;
  }
  .index .part03 .bottom .box2 ul li .text .t_box .t_more {
    display: none;
  }
  .index .part03 .bottom .box1 ul li .text .t_box .t_name h3 {
    font-size: 1rem;
  }
  .index .part03 .bottom .box2 ul li .text .t_box .t_name h3 {
    font-size: 1rem;
  }
  .index .part03 {
    padding-top: 4rem;
  }
  .index .part01 .banner .videoBg video {
    display: none;
  }
  .index .part01 .banner .videoBg img {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  header {
    height: 4rem;
  }
  header > div nav .tool {
    display: none;
  }
  header > div nav ul {
    width: 100%;
  }
  header > div nav ul li a {
    font-size: 0.875rem;
  }
  header > div .logo .logo_img a img {
    height: 2.875rem;
  }
  .index .part01 .banner {
    border-radius: 1rem;
  }
  .index .part01 .banner .videoText .w80 .bannerText h3 {
    font-size: 2.5rem;
    letter-spacing: 0;
  }
  .index .part01 .banner .videoBg video {
    width: 100%;
    height: 100%;
  }
  .index .part01 .banner .videoText .w80 .bannerText p {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t1 {
    width: 40vw;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t2 p {
    font-size: 0.75rem;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t1 h4 {
    font-size: 0.875rem;
  }
  .index .part01 .banner .videoText .w80 .bannerBottom .t1 p {
    font-size: 0.75rem;
  }
  .index .part01 .banner .imgBg {
    border-radius: 1rem;
  }
  .index .part01 .gs_content .txt h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .index .part01 .gs_content .txt p:nth-of-type(2) {
    display: none;
  }
  .index .part01 .gs_content .txt img {
    width: 10rem;
  }
  .index .part01 .gs_content .more {
    margin-top: 3rem;
  }
  .more a p {
    font-size: 0.875rem;
  }
  .more a {
    width: 12rem;
    height: 3rem;
    box-sizing: border-box;
  }
  .index .part02 .textBox .buttons-container .btn h3 {
    font-size: 1.125rem;
  }
  .index .part02 .textBox .buttons-container .btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content p {
    font-size: 1rem;
  }
  .index .part02 .textBox {
    top: 20vh;
  }
  .index .part03 .w80 .top .item .text .p_t h4 {
    font-size: 1.25rem;
  }
  .index .part03 .w80 .top .item .text .p_t h2 {
    font-size: 2.5rem;
    letter-spacing: 0.25rem;
  }
  .index .part03 .w80 .bottom .item h3 {
    font-size: 1.125rem;
  }
  .index .part03 .w80 .bottom .item p {
    font-size: 0.75rem;
  }
  .index .part03 .w80 .bottom .item::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .index .part03 .w80 .bottom .item {
    padding-left: 2rem;
  }
  .index .part05 {
    padding-top: 3rem;
    background-size: cover;
  }
  .index .part05 .w80 .top .title h2 {
    font-size: 2rem;
  }
  .index .part05 .w80 .top .title p {
    font-size: 1.25rem;
  }
  .index .part05 .w80 .bottom {
    margin-top: 3rem;
  }
  .index .part05 .w80 .top .more {
    margin-top: 0;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l h3 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l {
    width: 80%;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l p {
    font-size: 0.75rem;
  }
  .index .part05 .w80 .bottom > div {
    padding-bottom: 3rem;
  }
  .index .part06 .logo-mask-container .join-text h3 {
    font-size: 2.5rem;
  }
  .index .part06 .logo-mask-container .join-text h4 {
    font-size: 1.125rem;
  }
  .index .part06 .logo-mask-container .join-text {
    top: 50%;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .img {
    width: 13rem;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item {
    width: 50vw;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt {
    width: calc(100% - 14rem);
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .img {
    width: 12rem;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt > h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
  }
  .index .part07 .animation-section .text-wrapper .text-track .text-item .txt p {
    font-size: 1rem;
  }
  .index .part07 .animation-section .battery img {
    width: 25vw;
  }
  footer .w80 .top .sub1 {
    display: none;
  }
  footer .w80 .top .sub2 {
    width: 100%;
  }
  footer .w80 .top .sub2 .right .sub2_sub3 {
    margin-top: 1.75rem;
  }
  footer {
    padding-top: 1rem;
  }
  .index .part04 .logo {
    width: 15.625rem;
  }
  .index .part04 .w80 .right .txt p {
    line-height: 1.5;
    font-size: 0.875rem;
  }
  .index .part04 .bg {
    top: 0;
  }
  .index .part04 .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index .part04 .w80 {
    bottom: 7vh;
  }
  .index .part03 .w80 .top .title h2 {
    font-size: 2rem;
  }
  .index .part03 .w80 .top .title p {
    font-size: 1.125rem;
  }
  .index .part05 .w80 .top .title p {
    font-size: 1.125rem;
  }
  .index .part03 .w80 .bottom ul li {
    height: 7.5rem;
  }
  .index .part03 .w80 .bottom ul li .text {
    padding: 1rem;
  }
  .index .part03 .w80 .bottom ul li .text .t_box .t_name h3 {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
  .index .part03 .w80 .bottom ul li .text .t_box .t_name span {
    font-size: 0.75rem;
  }
  .index .part03 .w80 .bottom ul li .text .t_box .t_more a {
    font-size: 0.75rem;
  }
  .index .part03 .w80 .bottom ul li .text .num {
    font-size: 1.25rem;
  }
  .index .part05 .w80 .top .btn .l_btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .index .part05 .w80 .top .btn .r_btn {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 0.5rem;
  }
  .index .part05 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l h3 {
    font-size: 0.875rem;
  }
  footer {
    padding-top: 6rem;
  }
  footer .w80 .top .sub2 .right .sub2_sub2 h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  footer .w80 .top .sub2 .right .sub2_sub2 p {
    font-size: 1rem;
  }
  footer .w80 .top {
    padding-bottom: 2rem;
  }
  footer .w80 .bottom {
    padding-bottom: 2rem;
  }
  footer .w80 .bottom a {
    font-size: 0.875rem;
  }
  footer .w80 .top .sub2 .right .sub2_sub3 h3 {
    margin-bottom: 1rem;
  }
  footer .w80 .top .sub2 .right .sub2_sub3 p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .index .part01 .banner .videoBg video {
    display: none;
  }
  .index .part01 .banner .videoBg img {
    display: block;
  }
}
@media (min-width: 1201px) and (max-width: 1460px) {
  .index .part04 .logo {
    width: 20rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
    font-size: 2.5rem;
    padding-top: 0;
  }
  .index .part03 .w80 .top .title h2 {
    font-size: 2.5rem;
  }
  .index .part05 .w80 .top .title h2 {
    font-size: 2.5rem;
  }
  .index .part06 .logo-mask-container .join-text h3 {
    font-size: 3rem;
  }
}
.dd_about .main .company_info {
  padding: 10rem 0;
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 94vh;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
}
.dd_about .main .company_info .w80 {
  display: flex;
  gap: 8vw;
}
.dd_about .main .company_info .w80 .c_i_left {
  width: 46%;
  flex: 1;
  border-radius: 2rem 0 2rem 0;
  overflow: hidden;
  background-color: #000;
  position: relative;
}
.dd_about .main .company_info .w80 .c_i_left .c_i_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  cursor: pointer;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #dbb46f;
}
.dd_about .main .company_info .w80 .c_i_left .c_i_icon img {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
}
.dd_about .main .company_info .w80 .c_i_left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 100%;
}
.dd_about .main .company_info .w80 .c_i_right {
  width: 46%;
  flex: 1;
}
.dd_about .main .company_info .w80 .c_i_right .c_i_title {
  width: 100%;
  margin-bottom: 2rem;
}
.dd_about .main .company_info .w80 .c_i_right .c_i_title h2 {
  display: inline-block;
  font-size: 3rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
}
.dd_about .main .company_info .w80 .c_i_right .c_i_title p {
  font-size: 1.75rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.8;
}
.dd_about .main .company_info .w80 .c_i_right .c_i_content {
  width: 100%;
}
.dd_about .main .company_info .w80 .c_i_right .c_i_content p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.dd_about .main .company_info .w80 .c_i_right .c_i_content p span {
  font-weight: 400;
  color: #000;
}
.dd_about .main .company_info .w80 .c_i_right .c_i_content p:last-child {
  margin-bottom: 0;
}
.dd_about .main .company_info .bg {
  position: absolute;
  left: 0;
  top: -4vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
}
.dd_about .main .company_info .bg video {
  width: 100%;
}
.dd_about .main .boss_info {
  padding: 10rem 0;
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  box-sizing: border-box;
  background: #000 url(/images/aboutBg2.jpg) no-repeat center center;
  background-size: cover;
}
.dd_about .main .boss_info .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_about .main .boss_info .w80 .left {
  width: 46%;
  position: relative;
}
.dd_about .main .boss_info .w80 .left .l_text {
  width: 6rem;
  position: absolute;
  top: 6rem;
  right: 4rem;
  box-sizing: border-box;
  padding: 1.5rem 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  background-image: linear-gradient(180deg, #dbb46f, rgba(219, 180, 111, 0));
}
.dd_about .main .boss_info .w80 .left .l_text h4 {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.25rem;
  font-family: "MyFont";
  writing-mode: vertical-rl;
}
.dd_about .main .boss_info .w80 .left .l_text p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 0.25rem;
  margin-left: 0.75rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.25rem;
  opacity: 0.8;
}
.dd_about .main .boss_info .w80 .left .img {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border-left: 2rem solid #dbb46f;
  box-sizing: border-box;
}
.dd_about .main .boss_info .w80 .left .img img {
  width: 100%;
  display: block;
}
.dd_about .main .boss_info .w80 .right {
  width: 48%;
}
.dd_about .main .boss_info .w80 .right .r_box1 {
  width: 100%;
  margin-bottom: 1rem;
}
.dd_about .main .boss_info .w80 .right .r_box1 .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.625rem;
  letter-spacing: 0.3125rem;
  background-image: linear-gradient(45deg, #ffffff, #dbb46f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "MyFont";
}
.dd_about .main .boss_info .w80 .right .r_box1 .title p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.8;
}
.dd_about .main .boss_info .w80 .right .r_box2 {
  width: 100%;
  margin-top: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dbb46f;
}
.dd_about .main .boss_info .w80 .right .r_box2 p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.dd_about .main .honor_box {
  padding: 14rem 0;
  background: #000 url(/images/part04Bg.jpg) no-repeat center center;
  background-size: cover;
}
.dd_about .main .honor_box .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.dd_about .main .honor_box .w80 .top .title {
  width: 20%;
}
.dd_about .main .honor_box .w80 .top .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 3.5rem;
  letter-spacing: 0.625rem;
  font-family: "MyFont";
}
.dd_about .main .honor_box .w80 .top .title .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.dd_about .main .honor_box .w80 .top .title .btn .l_btn {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #000;
  border: 0.125rem solid #dbb46f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.25rem;
  cursor: pointer;
}
.dd_about .main .honor_box .w80 .top .title .btn .l_btn img {
  width: 1rem;
}
.dd_about .main .honor_box .w80 .top .title .btn .l_btn:hover {
  background-color: #dbb46f;
}
.dd_about .main .honor_box .w80 .top .title .btn .r_btn {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #000;
  border: 0.125rem solid #dbb46f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.25rem;
  margin-left: 1rem;
  cursor: pointer;
}
.dd_about .main .honor_box .w80 .top .title .btn .r_btn img {
  width: 1rem;
}
.dd_about .main .honor_box .w80 .top .title .btn .r_btn:hover {
  background-color: #dbb46f;
}
.dd_about .main .honor_box .w80 .top .honorDesc {
  width: 70%;
}
.dd_about .main .honor_box .w80 .top .honorDesc p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.65;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.dd_about .main .honor_box .w80 .top .honorDesc p:last-child {
  margin-bottom: 0;
}
.dd_about .main .honor_box .w80 .top .honorDesc p span {
  font-weight: 400;
  color: #000;
}
.dd_about .main .honor_box .w80 .bottom {
  margin-top: 8rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #dbb46f;
}
.dd_about .main .honor_box .w80 .bottom div ul {
  width: 100%;
}
.dd_about .main .honor_box .w80 .bottom div ul li {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
.dd_about .main .honor_box .w80 .bottom div ul li .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #000 url(/images/honorBg.jpg) no-repeat center center;
  background-size: cover;
}
.dd_about .main .honor_box .w80 .bottom div ul li .mask .m_img {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.dd_about .main .honor_box .w80 .bottom div ul li .mask .m_img.r {
  right: 1rem;
  left: auto;
}
.dd_about .main .honor_box .w80 .bottom div ul li .mask .m_img img {
  width: 2.5rem;
}
.dd_about .main .honor_box .w80 .bottom div ul li .mask .m_text {
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  color: #dbb46f;
  width: 100%;
}
.dd_about .main .honor_box .w80 .bottom div ul li .img {
  width: 100%;
  overflow: hidden;
}
.dd_about .main .honor_box .w80 .bottom div ul li .img img {
  width: 100%;
  display: block;
}
.dd_about .main .honor_box .w80 .bottom div ul li:hover {
  cursor: pointer;
}
.dd_about .main .honor_box .w80 .bottom div ul li:hover .mask {
  opacity: 0;
}
.dd_about .main .culture_box {
  padding: 8rem 0;
  background: #000 url(/images/cultureBg.webp) no-repeat center center;
  background-size: cover;
}
.dd_about .main .culture_box .content .w80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.dd_about .main .culture_box .content .w80 .left {
  width: 20%;
}
.dd_about .main .culture_box .content .w80 .left .l_item {
  cursor: pointer;
  opacity: 0.5;
  padding-left: 2rem;
  background-image: url(/images/moreIcon2.png);
  background-size: 1.375rem;
  background-position: -2rem 0.125rem;
  background-repeat: no-repeat;
}
.dd_about .main .culture_box .content .w80 .left .l_item h3 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 2rem;
  letter-spacing: 0.625rem;
}
.dd_about .main .culture_box .content .w80 .left .l_item:last-child {
  display: inline-block;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dbb46f;
}
.dd_about .main .culture_box .content .w80 .left .l_item.active {
  color: #fff;
  opacity: 1;
  background-position: -0.125rem 0.125rem;
}
.dd_about .main .culture_box .content .w80 .right {
  width: 60%;
  height: 60vh;
  padding: 4rem;
  border-radius: 0 1.5rem 1.5rem 0;
  box-sizing: border-box;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  position: relative;
}
.dd_about .main .culture_box .content .w80 .right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 1.5rem;
  height: 100%;
  border-radius: 1.5rem 0 0 1.5rem;
  background-color: #dbb46f;
}
.dd_about .main .culture_box .content .w80 .right .r_item {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 8%;
  width: 84%;
  height: 80%;
  transition: opacity 0.3s ease-in-out;
}
.dd_about .main .culture_box .content .w80 .right .r_item.active {
  visibility: visible;
  opacity: 1;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_title {
  margin-bottom: 1.5rem;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_title h3 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.625rem;
  letter-spacing: 0.3125rem;
  background-image: linear-gradient(45deg, #ffffff, #dbb46f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "MyFont";
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content {
  height: calc(100% - 5rem);
  overflow-y: auto;
  padding-right: 1.5rem;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content::-webkit-scrollbar {
  width: 0.25rem;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content::-webkit-scrollbar-thumb {
  background: #dbb46f;
  border-radius: 0.25rem;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1.5rem;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content p span {
  color: #dbb46f;
  font-weight: 400;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content p:last-child {
  margin-bottom: 0;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content h4 {
  font-size: 1.25rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1.5rem;
}
.dd_about .main .culture_box .content .w80 .right .r_item .r_item_content h4 span {
  font-weight: 600;
}
@media (max-width: 480px) {
  .dd_about .main .company_info .w80 .c_i_left {
    width: 100%;
  }
  .dd_about .main .company_info .w80 {
    flex-direction: column;
    gap: 13vw;
  }
  .dd_about .main .company_info .w80 .c_i_right {
    width: 100%;
  }
  .dd_about .main .company_info .bg {
    display: none;
  }
  .dd_about .main .company_info {
    padding: 6rem 0;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title p {
    font-size: 1.125rem;
    letter-spacing: 0.125rem;
  }
  .dd_about .main .company_info .w80 .c_i_left video {
    display: block;
  }
  .dd_about .main .company_info .w80 .c_i_left .c_i_icon {
    width: 3rem;
    height: 3rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title {
    margin-bottom: 2rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_content p {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
  }
  .dd_about .main .boss_info .w80 .left {
    width: 100%;
  }
  .dd_about .main .boss_info .w80 .right {
    width: 100%;
    margin-top: 4rem;
  }
  .dd_about .main .boss_info {
    padding: 8rem 0;
  }
  .dd_about .main .boss_info .w80 .left .img {
    border-left: 1rem solid #dbb46f;
  }
  .dd_about .main .boss_info .w80 .left .l_text {
    top: 3.25rem;
    right: 1rem;
    width: 4.375rem;
  }
  .dd_about .main .boss_info .w80 .left .l_text h4 {
    font-size: 1.25rem;
  }
  .dd_about .main .boss_info .w80 .left .l_text p {
    font-size: 1rem;
    margin-left: 0.375rem;
  }
  .dd_about .main .boss_info .w80 .right .r_box1 .title h2 {
    font-size: 1.5rem;
  }
  .dd_about .main .honor_box .w80 .top .title {
    width: 100%;
  }
  .dd_about .main .honor_box .w80 .top .honorDesc {
    width: 100%;
  }
  .dd_about .main .honor_box .w80 .top .title .btn {
    display: none;
  }
  .dd_about .main .honor_box .w80 .top .title h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .dd_about .main .honor_box {
    padding: 8rem 0;
  }
  .dd_about .main .honor_box .w80 .top .honorDesc p {
    font-weight: 400;
    font-size: 1rem;
    color: #666;
  }
  .dd_about .main .honor_box .w80 .bottom {
    margin-top: 3rem;
  }
  .dd_about .main .honor_box .w80 .bottom div ul li .mask {
    display: none;
  }
  .dd_about .main .culture_box .content .w80 .left {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #dbb46f;
  }
  .dd_about .main .culture_box .content .w80 .right {
    width: 100%;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    letter-spacing: 0.125rem;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item {
    width: 33%;
    box-sizing: border-box;
    padding-left: 1.5rem;
    background-size: 1rem;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item:last-child {
    border-bottom: none;
    padding-bottom: 0.75rem;
  }
  .dd_about .main .culture_box .content .w80 .right {
    margin-top: 4rem;
    border-radius: 0 1rem 1rem 0;
    padding: 2rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_title h3 {
    font-size: 1.5rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_title {
    margin-bottom: 0.5rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_content p {
    font-size: 1rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_content {
    height: calc(100% - 2rem);
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_content h4 {
    font-size: 1.125rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title h2 {
    letter-spacing: 0;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item h3 {
    font-size: 1rem;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item {
    padding-left: 1rem;
  }
  .dd_about .main .culture_box .content .w80 .right {
    margin-top: 2rem;
  }
}
.dd_news .main {
  overflow: hidden;
}
.dd_news .main > .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10rem;
}
.dd_news .main > .btns .item {
  background: url(/images/common_bg.jpg) repeat center center;
  width: 33.2%;
  position: relative;
  height: 4.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.dd_news .main > .btns .item::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4.5rem;
  width: 0%;
  background-color: #dbb46f;
  z-index: 1;
  transition: all 0.5s ease;
}
.dd_news .main > .btns .item a {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 1.25rem;
  color: #333;
  line-height: 4.5rem;
  font-weight: 100;
  text-align: center;
}
.dd_news .main > .btns .item:hover::after {
  width: 100%;
}
.dd_news .main > .btns .item:hover a {
  font-weight: 600;
  color: #fff;
}
.dd_news .main .news_part01 {
  padding-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 8rem;
  overflow: hidden;
}
.dd_news .main .news_part01 .left {
  width: 48%;
  border-radius: 1.5rem;
  overflow: hidden;
}
.dd_news .main .news_part01 .left .newsSwiper2 .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 34rem;
}
.dd_news .main .news_part01 .left .newsSwiper2 .swiper-pagination .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  border: 1px solid #fff;
  border-radius: 0.625rem;
  margin: 0 0.5rem;
}
.dd_news .main .news_part01 .left .newsSwiper2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #dbb46f;
}
.dd_news .main .news_part01 .right {
  width: 48%;
  border-bottom: 1px solid #dfdfdf;
}
.dd_news .main .news_part01 .right ul li {
  cursor: pointer;
  height: 10rem;
  margin-top: 1.25rem;
  border-bottom: 1px solid #dfdfdf;
}
.dd_news .main .news_part01 .right ul li:nth-child(3) {
  border-bottom: none;
}
.dd_news .main .news_part01 .right ul li a .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.625rem;
}
.dd_news .main .news_part01 .right ul li a .top .title h3 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.875rem;
  font-weight: 100;
  text-align: left;
  padding-left: 2.25rem;
  background-image: url(/images/newsTop.png);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}
.dd_news .main .news_part01 .right ul li a .top .date p {
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.dd_news .main .news_part01 .right ul li a .center p {
  font-size: 1rem;
  color: #999;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.dd_news .main .news_part01 .right ul li a .more {
  margin-top: 1.6rem;
  opacity: 0.3;
}
.dd_news .main .news_part01 .right ul li a .more span {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.dd_news .main .news_part01 .right ul li a .more span img {
  width: 1.5rem;
  display: block;
}
.dd_news .main .news_part01 .right ul li.current a .top .title h3 {
  color: #dbb46f;
}
.dd_news .main .news_part01 .right ul li.current a .top .date p {
  color: #dbb46f;
}
.dd_news .main .news_part01 .right ul li.current a .more {
  opacity: 1;
}
.dd_news .main .news_part02 {
  padding-top: 8rem;
  background: url(/images/common_bg.jpg) repeat center center;
}
.dd_news .main .news_part02 > .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.dd_news .main .news_part02 > .btns .item {
  background-color: #fff;
  width: 33.2%;
  position: relative;
  height: 4.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.dd_news .main .news_part02 > .btns .item::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4.5rem;
  width: 0%;
  background-color: #dbb46f;
  z-index: 1;
  transition: all 0.5s ease;
}
.dd_news .main .news_part02 > .btns .item a {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 1.25rem;
  color: #333;
  line-height: 4.5rem;
  font-weight: 100;
  text-align: center;
}
.dd_news .main .news_part02 > .btns .item:hover::after {
  width: 100%;
}
.dd_news .main .news_part02 > .btns .item:hover a {
  font-weight: 600;
  color: #fff;
}
.dd_news .main .news_part02 > .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.dd_news .main .news_part02 > .list .item {
  width: 24%;
  margin-right: 1.33%;
  margin-bottom: 1rem;
}
.dd_news .main .news_part02 > .list .item:nth-of-type(4n) {
  margin-right: 0;
}
.dd_news .main .news_part02 > .list .item .img {
  overflow: hidden;
  border-radius: 0.5rem;
}
.dd_news .main .news_part02 > .list .item .img img {
  width: 100%;
  display: block;
}
.dd_news .main .news_part02 > .list .item .txt {
  padding: 2rem 1rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.dd_news .main .news_part02 > .list .item .txt .l h3 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.dd_news .main .news_part02 > .list .item .txt .l p {
  font-size: 0.875rem;
  color: #999;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 1;
}
.dd_news .main .news_part02 > .list .item .txt .l p span {
  margin-right: 0.6rem;
}
.dd_news .main .news_part02 > .list .item .txt .r img {
  width: 1.5rem;
}
@media (max-width: 480px) {
  .dd_news .main > .btns {
    display: none;
  }
  .dd_news .main .news_part02 > .btns {
    display: none;
  }
  .dd_news .main .news_part01 .left {
    width: 100%;
  }
  .dd_news .main .news_part01 .right {
    width: 100%;
  }
  .dd_news .main .news_part01 .right ul li a .top .title h3 {
    background-size: 1.5rem;
    background-position: 0 0.125rem;
    background-repeat: no-repeat;
    font-size: 1.125rem;
  }
  .dd_news .main .news_part01 .left .newsSwiper2 .swiper-wrapper .swiper-slide img {
    height: auto;
  }
  .dd_news .main .news_part01 .right ul li a .top .date {
    margin-top: 0.5rem;
  }
  .dd_news .main .news_part01 .right ul li a .top .date p {
    padding-left: 2.25rem;
    font-size: 0.75rem;
  }
  .dd_news .main .news_part01 .right ul li a .center p {
    padding-left: 2.25rem;
    line-height: 1.2;
  }
  .dd_news .main .news_part01 .right ul li a .more {
    padding-left: 2.25rem;
  }
  .dd_news .main .news_part01 .right ul li {
    height: auto;
    padding-bottom: 1.25rem;
  }
  .dd_news .main .news_part02 > .list .item {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .dd_news .main .news_part02 > .list .item .txt .l h3 {
    font-size: 1rem;
  }
  .dd_news .main .news_part01 {
    display: none;
  }
  .dd_news .main .news_part02 {
    padding-top: 6rem;
  }
}
.dd_news_details .main {
  margin-bottom: 7rem;
  margin-top: 12rem;
}
.dd_news_details .main > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.dd_news_details .main > div .left {
  width: 68%;
}
.dd_news_details .main > div .left .news_title {
  border-bottom: 0.0625rem dashed #dfdfdf;
  padding-bottom: 1.5rem;
}
.dd_news_details .main > div .left .news_title h3 {
  font-size: 1.875rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.dd_news_details .main > div .left .news_attribute {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.dd_news_details .main > div .left .news_attribute .attrItem {
  margin: 0 1.25rem;
}
.dd_news_details .main > div .left .news_attribute .attrItem:first-child {
  margin-left: 0;
}
.dd_news_details .main > div .left .news_attribute .attrItem p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.dd_news_details .main > div .left .news_descrition {
  background-color: #e6f2f8;
  border: 0.0625rem solid #dfdfdf;
  width: 100%;
  box-sizing: border-box;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.dd_news_details .main > div .left .news_descrition p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.dd_news_details .main > div .left .news_Content {
  margin-top: 3.75rem;
}
.dd_news_details .main > div .left .news_Content p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1rem;
  text-indent: 2em;
}
.dd_news_details .main > div .left .news_Content img {
  width: 100%;
}
.dd_news_details .main > div .right {
  width: 28%;
}
.dd_news_details .main > div .right .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #dfdfdf;
}
.dd_news_details .main > div .right .top .back {
  width: 48%;
}
.dd_news_details .main > div .right .top .back a {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.dd_news_details .main > div .right .top .share {
  width: 9.375rem;
}
.dd_news_details .main > div .right .top .share .tit {
  float: left;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.dd_news_details .main > div .right .top .share .txt {
  float: left;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.dd_news_details .main > div .right .bottom {
  background-color: #e6f2f8;
  padding: 0.625rem;
  margin-top: 2.5rem;
}
.dd_news_details .main > div .right .bottom > div {
  background-color: #fff;
  padding: 1.25rem;
}
.dd_news_details .main > div .right .bottom > div ul li {
  margin-bottom: 1.875rem;
  margin-top: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid #dfdfdf;
}
.dd_news_details .main > div .right .bottom > div ul li:last-child {
  border: none;
  margin-bottom: 0;
}
.dd_news_details .main > div .right .bottom > div ul li h3 {
  font-size: 1.125rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.25rem;
}
.dd_news_details .main > div .right .bottom > div ul li p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.25rem;
}
.dd_news_details .main > div .right .bottom > div ul li span {
  font-size: 0.875rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 480px) {
  .dd_news_details .main > div .left {
    width: 100%;
  }
  .dd_news_details .main > div .right {
    width: 100%;
  }
  .dd_news_details .main > div .left .news_title h3 {
    font-size: 1.125rem;
    text-align: left;
    line-height: 1.3;
  }
  .dd_news_details .main {
    margin-top: 7rem;
  }
  .dd_news_details .main > div .left .news_attribute .attrItem:nth-last-child(1) {
    display: none;
  }
}
.dd_fuwu .main #fullpage {
  height: 100vh;
}
.dd_fuwu .main #fullpage .section {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_fuwu .main #fullpage .section#section0 {
  background: url("/images/fuwuImg01.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.dd_fuwu .main #fullpage .section#section0 .w80 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.dd_fuwu .main #fullpage .section#section0 .fp-overflow:after {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}
.dd_fuwu .main #fullpage .section#section1 {
  background: url("/images/fuwuImg02.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.dd_fuwu .main #fullpage .section#section1 .w80 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.dd_fuwu .main #fullpage .section#section1 .fp-overflow:after {
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5));
}
.dd_fuwu .main #fullpage .section#section2 {
  background: url("/images/fuwuImg03.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.dd_fuwu .main #fullpage .section#section2 .w80 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.dd_fuwu .main #fullpage .section#section2 .fp-overflow:after {
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6));
}
.dd_fuwu .main #fullpage .section#section3 {
  background: url("/images/fuwuImg04.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.dd_fuwu .main #fullpage .section#section3 .w80 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.dd_fuwu .main #fullpage .section#section3 .fp-overflow:after {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6));
}
.dd_fuwu .main #fullpage .section#section4 {
  background: url("/images/fuwuImg05.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.dd_fuwu .main #fullpage .section#section4 .fp-overflow:after {
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6));
  mix-blend-mode: normal;
}
.dd_fuwu .main #fullpage .section#section5 {
  height: 70vh;
}
.dd_fuwu .main #fullpage .section .w80 {
  position: relative;
  z-index: 3;
  overflow: visible;
}
.dd_fuwu .main #fullpage .section .w80 .text {
  width: 40%;
  filter: blur(1rem);
  opacity: 0;
  transform: translateY(0%) scale(1);
  transition: all 1s ease-out 1.5s;
}
.dd_fuwu .main #fullpage .section .w80 .text .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
  position: relative;
  padding-left: 1rem;
}
.dd_fuwu .main #fullpage .section .w80 .text .title h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 90%;
  border-radius: 0.125rem;
  background-color: #dbb46f;
}
.dd_fuwu .main #fullpage .section .w80 .text .title p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 100;
  text-align: left;
  opacity: 0.9;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.dd_fuwu .main #fullpage .section .w80 .text .title p:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #dbb46f;
}
.dd_fuwu .main #fullpage .section .w80 .text .more {
  margin-top: 6rem;
}
.dd_fuwu .main #fullpage .section .w80 .text .more a {
  background-color: #000;
}
.dd_fuwu .main #fullpage .section .fp-overflow {
  width: 100%;
}
.dd_fuwu .main #fullpage .section .fp-overflow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 50%, #000000);
  mix-blend-mode: overlay;
}
.dd_fuwu .main #fullpage .section .fp-watermark {
  display: none !important;
}
.dd_fuwu .main #fullpage .section .mouseDown {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_fuwu .main #fullpage .section .mouseDown .mouse {
  width: 1rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 225, 0.7);
  border-radius: 1.5rem;
  margin-right: 1rem;
}
.dd_fuwu .main #fullpage .section .mouseDown .mouse span {
  display: block;
  margin: 0.5rem auto 0;
  width: 0.25rem;
  height: 0.25rem;
  background: #dbb46f;
  border-radius: 50%;
  animation: mouseUpDown 1s linear infinite;
}
.dd_fuwu .main #fullpage .section .mouseDown .m_text {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.6;
}
.dd_fuwu .main #fullpage .section.active .w80 .text {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0%) scale(1);
}
@media (max-width: 480px) {
  .dd_fuwu .main #fullpage .section .w80 .text .title h2 {
    font-size: 1.5rem;
    text-shadow: none;
  }
  .dd_fuwu .main #fullpage .section .w80 .text {
    width: 100%;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title p {
    text-shadow: none;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title p {
    font-size: 1rem;
    text-shadow: none;
  }
}
.dd_mendian .main {
  background: url(/images/common_bg.jpg) repeat center center;
  overflow: hidden;
}
.dd_mendian .main .w80 {
  padding-top: 10rem;
}
.dd_mendian .main .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dbb46f;
}
.dd_mendian .main .w80 .top .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
  position: relative;
  padding-left: 1rem;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.7);
}
.dd_mendian .main .w80 .top .title h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 90%;
  border-radius: 0.125rem;
  background-color: #dbb46f;
}
.dd_mendian .main .w80 .top .title p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 100;
  text-align: left;
  opacity: 0.9;
  text-shadow: 1px 1px 1px #666;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.dd_mendian .main .w80 .top .title p:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #dbb46f;
}
.dd_mendian .main .w80 .top .xuanze {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_mendian .main .w80 .top .xuanze .x_box1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_mendian .main .w80 .top .xuanze .x_box1 h4 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.dd_mendian .main .w80 .top .xuanze .x_box1 i {
  font-size: 1.25rem;
  display: inline-block;
  margin-left: 1rem;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 {
  margin-left: 1rem;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select {
  position: relative;
  width: 100%;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select .custom-select__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid #dbb46f;
  background-color: #fff;
  cursor: pointer;
  border-radius: 0.25rem;
  overflow: hidden;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select .custom-select__trigger .custom-select__value {
  font-size: 1rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select .custom-select__trigger .custom-select__arrow {
  font-size: 1rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  transition: transform 0.3s ease;
  padding-left: 0.5rem;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select.active .custom-select__arrow {
  transform: rotate(180deg);
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select .custom-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #dbb46f;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select .custom-select__options .custom-select__option {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select .custom-select__options .custom-select__option:hover {
  background-color: #dbb46f;
  color: #fff;
}
.dd_mendian .main .w80 .top .xuanze .x_box2 .custom-select.active .custom-select__options {
  display: block;
}
.dd_mendian .main .w80 .bottom {
  min-height: 30vh;
  margin-top: 3rem;
}
.dd_mendian .main .w80 .bottom ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.dd_mendian .main .w80 .bottom ul li {
  width: 24%;
  box-sizing: border-box;
  position: relative;
  border-radius: 0.75rem 0.75rem 0.5rem 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  margin-right: 1.3%;
}
.dd_mendian .main .w80 .bottom ul li:nth-child(4n) {
  margin-right: 0;
}
.dd_mendian .main .w80 .bottom ul li a .img {
  width: 100%;
  overflow: hidden;
}
.dd_mendian .main .w80 .bottom ul li a .img img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.dd_mendian .main .w80 .bottom ul li a .txt {
  padding: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_mendian .main .w80 .bottom ul li a .txt .t_box1 {
  position: relative;
  z-index: 2;
}
.dd_mendian .main .w80 .bottom ul li a .txt .t_box1 h3 {
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 0.5rem;
}
.dd_mendian .main .w80 .bottom ul li a .txt .t_box1 p {
  font-size: 0.75rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.5;
}
.dd_mendian .main .w80 .bottom ul li a .txt .t_box2 {
  position: relative;
  z-index: 2;
}
.dd_mendian .main .w80 .bottom ul li a .txt .t_box2 img {
  width: 1.75rem;
  display: block;
}
.dd_mendian .main .w80 .bottom ul li a .txt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 0%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  background-color: #dbb46f;
}
.dd_mendian .main .w80 .bottom ul li:hover .txt:before {
  width: 100%;
}
.dd_mendian .main .w80 .bottom ul li:hover .img img {
  transform: scale(1.1);
}
@media screen and (max-width: 480px) {
  .dd_mendian .main .w80 .top .title h2 {
    font-size: 1.5rem;
  }
  .dd_mendian .main .w80 .top .xuanze {
    display: none;
  }
  .dd_mendian .main .w80 {
    padding-top: 6rem;
  }
  .dd_mendian .main .w80 .top {
    padding-bottom: 0;
  }
  .dd_mendian .main .w80 .bottom ul li {
    width: 100%;
  }
}
.dd_jiameng .main {
  background: url(/images/common_bg.jpg) repeat center center;
  overflow: hidden;
  padding-top: 10rem;
}
.dd_jiameng .main .part01 {
  padding-bottom: 12rem;
}
.dd_jiameng .main .part01 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part01 .top .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
  position: relative;
  padding-left: 1rem;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.7);
}
.dd_jiameng .main .part01 .top .title h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 90%;
  border-radius: 0.125rem;
  background-color: #dbb46f;
}
.dd_jiameng .main .part01 .top .title p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 100;
  text-align: left;
  opacity: 0.9;
  text-shadow: 1px 1px 1px #666;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.dd_jiameng .main .part01 .top .title p:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #dbb46f;
}
.dd_jiameng .main .part01 .bottom {
  margin-top: 4rem;
}
.dd_jiameng .main .part01 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part01 .bottom ul li {
  width: 24%;
  height: 20rem;
  padding: 2.5rem;
  box-sizing: border-box;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.dd_jiameng .main .part01 .bottom ul li .i_icon {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.dd_jiameng .main .part01 .bottom ul li .i_icon img {
  width: 3.25rem;
  display: block;
}
.dd_jiameng .main .part01 .bottom ul li .text h3 {
  font-size: 2.25rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.25rem;
}
.dd_jiameng .main .part01 .bottom ul li .text p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
}
.dd_jiameng .main .part02 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.dd_jiameng .main .part02 .c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part02 .c .left {
  width: 50%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.dd_jiameng .main .part02 .c .left ul {
  position: absolute;
  height: auto;
  transition: all 1.5s ease;
  bottom: 0;
  left: 0;
  width: 100%;
}
.dd_jiameng .main .part02 .c .left ul li {
  width: 100%;
  height: 100vh;
  transform: translate(0, 0);
  opacity: 1;
  position: relative;
}
.dd_jiameng .main .part02 .c .left ul li:nth-of-type(odd) {
  background: url(/images/part05Bg.jpg) no-repeat center;
  background-size: cover;
}
.dd_jiameng .main .part02 .c .left ul li:nth-of-type(even) {
  background: url(/images/part07Bg.jpg) no-repeat center center;
  background-size: cover;
}
.dd_jiameng .main .part02 .c .left ul li .box {
  position: absolute;
  top: 16vh;
  left: 20%;
  width: 70%;
}
.dd_jiameng .main .part02 .c .left ul li .box .box1 span {
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.6;
  text-transform: uppercase;
}
.dd_jiameng .main .part02 .c .left ul li .box .box1 h2 {
  margin-top: 20vh;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  opacity: 1;
  text-transform: uppercase;
  font-family: "MyFont";
}
.dd_jiameng .main .part02 .c .left ul li .box .box2 {
  margin-top: 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part02 .c .left ul li .box .box2 .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  width: 33%;
}
.dd_jiameng .main .part02 .c .left ul li .box .box2 .item img {
  width: 2.5rem;
  display: block;
}
.dd_jiameng .main .part02 .c .left ul li .box .box2 .item p {
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  opacity: 0.7;
}
.dd_jiameng .main .part02 .c .right {
  width: 50%;
  height: 100vh;
  overflow: hidden;
}
.dd_jiameng .main .part02 .c .right ul {
  position: relative;
  height: auto;
  transition: all 1.5s ease;
  top: 0;
  right: 0;
}
.dd_jiameng .main .part02 .c .right ul li {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
}
.dd_jiameng .main .part02 .c .right ul li.active {
  position: static;
}
.dd_jiameng .main .part02 .c .right ul li.i1 {
  background-image: url(/images/s2_img1.jpg);
}
.dd_jiameng .main .part02 .c .right ul li.i2 {
  background-image: url(/images/s2_img2.jpg);
}
.dd_jiameng .main .part02 .c .right ul li.i3 {
  background-image: url(/images/s2_img3.jpg);
}
.dd_jiameng .main .part02 .c .right ul li.i4 {
  background-image: url(/images/s2_img5.jpg);
}
.dd_jiameng .main .part02 .c .right ul li.i5 {
  background-image: url(/images/s2_img4.jpg);
}
.dd_jiameng .main .part02 .c .right ul li .img img {
  width: 100%;
}
.dd_jiameng .main .part02 .btn {
  position: absolute;
  left: 10%;
  bottom: 16vh;
}
.dd_jiameng .main .part02 .btn > div {
  width: 3.875rem;
  height: 3.875rem;
  background-color: #ffffff;
  float: left;
  border-radius: 0.25rem;
  cursor: pointer;
}
.dd_jiameng .main .part02 .btn > div .img {
  width: inherit;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part02 .btn > div .img img {
  width: 1.875rem;
  display: inline;
}
.dd_jiameng .main .part02 .btn > div.l_btn {
  margin-right: 0.75rem;
}
.dd_jiameng .main .part02 .btn > div.l_btn .img img {
  transform: rotate(180deg);
}
.dd_jiameng .main .part03 {
  padding-bottom: 10rem;
}
.dd_jiameng .main .part03 .top {
  padding-top: 14vh;
}
.dd_jiameng .main .part03 .top .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part03 .top .w80 .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
  position: relative;
  padding-left: 1rem;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.7);
}
.dd_jiameng .main .part03 .top .w80 .title h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 90%;
  border-radius: 0.125rem;
  background-color: #dbb46f;
}
.dd_jiameng .main .part03 .top .w80 .title p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 100;
  text-align: left;
  opacity: 0.9;
  text-shadow: 1px 1px 1px #666;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.dd_jiameng .main .part03 .top .w80 .title p:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #dbb46f;
}
.dd_jiameng .main .part03 .top .w80 .num {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.dd_jiameng .main .part03 .top .w80 .num h2 {
  font-size: 2.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.dd_jiameng .main .part03 .top .w80 .num p {
  font-size: 1.625rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.dd_jiameng .main .part03 .top .w80 .num h3 {
  font-size: 1.625rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.dd_jiameng .main .part03 .swiper-container {
  margin-top: 3.75rem;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide {
  height: 34.375rem;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  background-size: cover;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt {
  display: none;
  position: absolute;
  right: 3.75rem;
  top: 3.125rem;
  border-radius: 1rem;
  padding: 2.5rem 1.875rem;
  box-sizing: border-box;
  width: 44%;
  height: calc(100% - 6.25rem);
  background-color: #fff;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt:hover {
  background-color: #dbb46f;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt:hover .t_title h3 {
  color: #fff;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt:hover .t_content {
  border-bottom: 1px solid #fff;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt:hover .t_content p {
  color: #fff;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt:hover .t_date h3 {
  color: #fff;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt:hover .t_date p {
  color: #fff;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon {
  width: 100%;
  margin-bottom: 3rem;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon img {
  width: 6rem;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_title h3 {
  font-size: 1.75rem;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content {
  margin-top: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #dbb46f;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content span {
  display: block;
  margin-bottom: 0.375rem;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content span img {
  display: block;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content p img {
  margin-left: 1.25rem;
}
.dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .txt {
  display: block;
}
.dd_jiameng .main .part03 .swiper-container .swiper-button-prev {
  top: 50%;
  left: 12%;
  width: 7.5rem;
  height: 7.5rem;
  transform: translateY(-50%);
  background-image: url(/images/news_leftBtn.png);
  background-size: cover;
}
.dd_jiameng .main .part03 .swiper-container .swiper-button-prev:hover {
  transform: translateY(-50%) rotate(360deg);
  transition: all 0.5s ease;
}
.dd_jiameng .main .part03 .swiper-container .swiper-button-prev::after {
  display: none;
}
.dd_jiameng .main .part03 .swiper-container .swiper-button-next {
  right: 12%;
  top: 50%;
  width: 7.5rem;
  height: 7.5rem;
  transform: translateY(-50%);
  background-image: url(/images/news_rightBtn.png);
  background-size: cover;
}
.dd_jiameng .main .part03 .swiper-container .swiper-button-next:hover {
  transform: translateY(-50%) rotate(360deg);
  transition: all 0.5s ease;
}
.dd_jiameng .main .part03 .swiper-container .swiper-button-next::after {
  display: none;
}
.dd_jiameng .main .part03 .swiper-container .swiper-pagination-fraction {
  top: 0;
  display: inline-block;
  font-size: 1.625rem;
  line-height: 1;
  font-weight: 400;
  z-index: -1;
}
.dd_jiameng .main .part03 .swiper-container .swiper-pagination-fraction span {
  color: #999;
  font-size: 1.625rem;
  line-height: 1;
  font-weight: 700;
}
.dd_jiameng .main .part03 .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
  color: #000;
  font-size: 3rem;
}
.dd_jiameng .main .part04 {
  padding-bottom: 10rem;
  padding-top: 10rem;
  background: url(/images/part07Bg.jpg) no-repeat center center;
  background-size: cover;
}
.dd_jiameng .main .part04 .w80 .title {
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.dd_jiameng .main .part04 .w80 .title h2 {
  display: inline-block;
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 1rem;
  margin: 0 auto;
}
.dd_jiameng .main .part04 .w80 .title h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 90%;
  border-radius: 0.125rem;
  background-color: #dbb46f;
}
.dd_jiameng .main .part04 .w80 .title p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 100;
  text-align: left;
  opacity: 0.9;
  text-shadow: 1px 1px 1px #666;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.dd_jiameng .main .part04 .w80 .title p:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #dbb46f;
}
.dd_jiameng .main .part04 .w80 .images {
  width: 100%;
  height: 100%;
  padding: 2rem;
  border-radius: 2rem;
  box-sizing: border-box;
}
.dd_jiameng .main .part04 .w80 .images img {
  width: initial;
  display: block;
  margin: 0 auto;
}
.dd_jiameng .main .part05 {
  padding-bottom: 12rem;
  padding-top: 10rem;
}
.dd_jiameng .main .part05 .w80 {
  background: url("/images/shenqing_bg.jpg") no-repeat center center / 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.dd_jiameng .main .part05 .w80 .box {
  width: 40%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.3125rem);
  padding: 3.125rem;
  box-sizing: border-box;
}
.dd_jiameng .main .part05 .w80 .box h3 {
  font-size: 3.5rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
  letter-spacing: 0.3125rem;
  font-family: "MyFont";
  position: relative;
  padding-left: 1rem;
  margin: 0 auto;
}
.dd_jiameng .main .part05 .w80 .box h3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 90%;
  border-radius: 0.125rem;
  background-color: #dbb46f;
}
.dd_jiameng .main .part05 .w80 .box .message {
  margin-top: 1.25rem;
}
.dd_jiameng .main .part05 .w80 .box .message .ms1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part05 .w80 .box .message .ms1 .ms1_sub1 {
  width: 49%;
  height: 3.25rem;
  background-color: #f2f5f5;
  box-sizing: border-box;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
}
.dd_jiameng .main .part05 .w80 .box .message .ms1 .ms1_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f2f5f5;
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.dd_jiameng .main .part05 .w80 .box .message .ms2 {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dd_jiameng .main .part05 .w80 .box .message .ms2 .ms2_sub1 {
  width: 49%;
  height: 3.25rem;
  border-radius: 0.375rem;
  background-color: #f2f5f5;
  box-sizing: border-box;
  padding: 0.625rem 1.25rem;
}
.dd_jiameng .main .part05 .w80 .box .message .ms2 .ms2_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f2f5f5;
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.dd_jiameng .main .part05 .w80 .box .message .ms3 {
  margin-top: 1rem;
  background-color: #f2f5f5;
  height: 12.5rem;
  box-sizing: border-box;
  padding: 1.25rem;
  border-radius: 0.375rem;
}
.dd_jiameng .main .part05 .w80 .box .message .ms3 textarea {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
}
.dd_jiameng .main .part05 .w80 .box .message .ms4 {
  margin-top: 1.25rem;
  width: 100%;
}
.dd_jiameng .main .part05 .w80 .box .message .ms4 button {
  width: 100%;
  height: 3.5rem;
  border-radius: 0.375rem;
  background-color: #dbb46f;
  font-size: 1.25rem;
  color: #fff;
  line-height: 3.5rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .dd_jiameng .main {
    padding: 6rem 0;
  }
  .dd_jiameng .main .part01 .top .title h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .dd_jiameng .main .part01 .bottom {
    margin-top: 2rem;
    padding: 0 5%;
  }
  .dd_jiameng .main .part01 .bottom ul li {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .dd_jiameng .main .part01 .bottom ul li .text h3 {
    font-size: 1.25rem;
    font-weight: 600;
  }
  .dd_jiameng .main .part01 {
    padding-bottom: 6rem;
  }
  .dd_jiameng .main .part02 .c .left {
    width: 100%;
    height: 50vh;
  }
  .dd_jiameng .main .part02 .c .right {
    width: 100%;
    height: 50vh;
  }
  .dd_jiameng .main .part02 .c .left ul li {
    height: 50vh;
  }
  .dd_jiameng .main .part02 .c .left ul li .box {
    top: 8vh;
    left: 5%;
    width: 90%;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box1 h2 {
    margin-top: 6vh;
    font-size: 1.5rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box1 span {
    font-size: 1.125rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item p {
    font-size: 1rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item img {
    width: 1.5rem;
  }
  .dd_jiameng .main .part02 .btn {
    top: 40vh;
    bottom: auto;
    left: 5%;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 {
    margin-top: 2.5rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item {
    margin-bottom: 0.75rem;
  }
  .dd_jiameng .main .part02 .btn > div {
    width: 3rem;
    height: 3rem;
  }
  .dd_jiameng .main .part02 .btn > div .img img {
    width: 1.5rem;
  }
  .dd_jiameng .main .part02 .c .right ul li {
    height: 50vh;
  }
  .dd_jiameng .main .part03 .top .w80 .title h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-button-next {
    display: none;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-button-prev {
    display: none;
  }
  .dd_jiameng .main .part03 .top .w80 .num h3 {
    font-size: 1.125rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num p {
    font-size: 1.125rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num h2 {
    font-size: 1.5rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt {
    width: 100%;
    right: 0%;
    height: auto;
    top: auto;
    bottom: 0rem;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 0rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon img {
    width: 3rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon {
    margin-bottom: 1.5rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_title h3 {
    font-size: 1.25rem;
    color: #fff;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content p {
    font-size: 1rem;
    margin-top: 0;
    color: #fff;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .txt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content {
    width: 100%;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon {
    width: 3rem;
    margin-bottom: 0;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon img {
    display: block;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_title {
    margin-left: 1rem;
  }
  .dd_jiameng .main .part04 .w80 .title h2 {
    font-size: 1.5rem;
  }
  .dd_jiameng .main .part04 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .dd_jiameng .main .part04 .w80 .images {
    padding: 0;
  }
  .dd_jiameng .main .part04 .w80 .images img {
    width: 100%;
  }
  .dd_jiameng .main .part05 .w80 .box {
    width: 100%;
    padding: 2rem;
  }
  .dd_jiameng .main .part05 .w80 .box h3 {
    font-size: 1.5rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms1 .ms1_sub1 input {
    font-size: 0.875rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms2 .ms2_sub1 input {
    font-size: 0.875rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms3 textarea {
    font-size: 0.875rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms4 button {
    font-size: 0.875rem;
  }
  .dd_jiameng .main .part05 .w80 {
    background: url(/images/shenqing_bg.jpg) no-repeat center center / cover;
  }
  .dd_jiameng .main .part05 {
    padding-top: 6rem;
    padding-bottom: 0rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms1 .ms1_sub1 {
    height: 3rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms2 .ms2_sub1 {
    height: 3rem;
  }
  .dd_jiameng .main .part01 .bottom ul li .text p {
    font-size: 1rem;
  }
}
.contact .main {
  position: relative;
  background: url(/images/common_bg.jpg) repeat center center;
  overflow: hidden;
  padding-bottom: 20vh;
}
.contact .main .w80 {
  position: relative;
  min-height: 60vh;
  padding-top: 12rem;
}
.contact .main .w80 .content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.contact .main .w80 .content .c_title {
  margin-bottom: 3rem;
}
.contact .main .w80 .content .c_title h3 {
  font-size: 2.5rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  letter-spacing: 0.25rem;
  background: linear-gradient(to right, #000, #dbb46f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "MyFont";
}
.contact .main .w80 .content .top ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact .main .w80 .content .top ul li {
  width: 50%;
  box-sizing: border-box;
}
.contact .main .w80 .content .top ul li:nth-of-type(2) {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.contact .main .w80 .content .top ul li .i_icon {
  text-align: center;
}
.contact .main .w80 .content .top ul li .i_icon i {
  color: #dbb46f;
  font-size: 1.5rem;
}
.contact .main .w80 .content .top ul li .text {
  margin-top: 0.5rem;
}
.contact .main .w80 .content .top ul li .text h3 {
  font-size: 1.125rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  margin-bottom: 3rem;
}
.contact .main .w80 .content .top ul li .text p {
  font-size: 3rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.contact .main .w80 .content .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.contact .main .w80 .content .bottom .ewm1 {
  margin: 3rem;
}
.contact .main .w80 .content .bottom .ewm1 img {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
}
.contact .main .w80 .content .bottom .ewm1 p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  opacity: 0.5;
}
.contact .main .w80 .add {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact .main .w80 .add .a_icon {
  margin-right: 0.5rem;
}
.contact .main .w80 .add .a_icon i {
  font-size: 1.75rem;
  color: #dbb46f;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.contact .main .w80 .add .a_txt p {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 448px) {
  .contact .main .w80 {
    padding-top: 6rem;
  }
  .contact .main .w80 .content {
    padding: 0;
  }
  .contact .main .w80 .content .c_title h3 {
    font-size: 1.125rem;
    letter-spacing: 0.125rem;
    font-family: Arial;
    line-height: 1.3;
  }
  .contact .main .w80 .content .top ul li .text p {
    font-size: 1.5rem;
  }
  .contact .main .w80 .content .top ul li .text h3 {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  .contact .main .w80 .content .bottom .ewm1 {
    margin: 1rem;
  }
  .contact .main .w80 .content .bottom .ewm1 img {
    width: 6rem;
  }
  .contact .main .w80 .content .bottom {
    margin-top: 2rem;
  }
  .contact .main .w80 .content .bottom .ewm1 p {
    font-size: 1rem;
  }
  .contact .main .w80 .add .a_txt p {
    font-size: 1.125rem;
  }
  .contact .main .w80 .content .top ul {
    padding: 2rem 0;
  }
  .index .part01 .banner .videoBg video {
    display: none;
  }
  .index .part01 .banner .videoBg img {
    display: block;
    width: 110%;
  }
  .index .part04 .bg video {
    display: none;
  }
  .index .part04 .bg img {
    display: block;
    width: 100%;
  }
  .index .part03 .bg video {
    display: none;
  }
  .index .part03 .bg {
    background: url(/images/partBg1.jpg) no-repeat center / cover;
  }
  .index .part04 .w80 .right .more {
    margin: 1.25rem auto 6rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .dd_about .main .company_info .bg {
    height: auto;
    top: auto;
    bottom: -0.25rem;
  }
  .dd_about .main .company_info .w80 {
    display: block;
  }
  .dd_about .main .company_info .w80 .c_i_left {
    width: 100%;
  }
  .dd_about .main .company_info .w80 .c_i_right {
    width: 100%;
    margin-top: 3rem;
  }
  .dd_about .main .company_info .w80 .c_i_left video {
    display: block;
  }
  .dd_about .main .company_info {
    padding: 8rem 0;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title h2 {
    font-size: 2rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title p {
    font-size: 1.375rem;
  }
  .dd_about .main .boss_info .w80 .left {
    width: 100%;
  }
  .dd_about .main .boss_info .w80 .right {
    width: 100%;
    margin-top: 3rem;
  }
  .dd_about .main .boss_info .w80 .left .img {
    border-left: 1rem solid #dbb46f;
  }
  .dd_about .main .boss_info .w80 .right .r_box1 .title h2 {
    font-size: 2rem;
  }
  .dd_about .main .boss_info .w80 .right .r_box2 p {
    font-size: 1rem;
    font-weight: normal;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_content p {
    font-size: 1rem;
    font-weight: normal;
  }
  .dd_about .main .honor_box .w80 .top .title {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .dd_about .main .honor_box .w80 .top .title h2 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .dd_about .main .honor_box .w80 .top .title .btn {
    display: none;
  }
  .dd_about .main .honor_box .w80 .top .honorDesc {
    width: 100%;
  }
  .dd_about .main .honor_box .w80 .top .honorDesc p {
    font-weight: normal;
  }
  .dd_about .main .honor_box {
    padding: 8rem 0;
  }
  .dd_about .main .honor_box .w80 .bottom {
    margin-top: 5rem;
  }
  .dd_about .main .honor_box .w80 .bottom div ul li .mask .m_text {
    font-size: 1.25rem;
  }
  .dd_about .main .culture_box .content .w80 .left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item {
    background-size: 1.125rem;
    padding-left: 1.25rem;
  }
  .dd_about .main .culture_box .content .w80 .right {
    width: 100%;
    padding: 2rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_title h3 {
    font-size: 2rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_title {
    margin-bottom: 1rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_content p {
    font-size: 1rem;
  }
  .dd_news .main .news_part01 .left {
    width: 100%;
  }
  .dd_news .main .news_part01 .right {
    width: 100%;
  }
  .dd_news .main .news_part01 .left .newsSwiper2 .swiper-wrapper .swiper-slide img {
    height: 24rem;
  }
  .dd_news .main .news_part01 {
    padding-top: 8rem;
  }
  .dd_news_details .main > div .left {
    width: 100%;
  }
  .dd_news_details .main > div .right {
    width: 100%;
  }
  .dd_news_details .main {
    margin-top: 8rem;
  }
  .dd_news_details .main > div .left .news_title h3 {
    font-size: 1.25rem;
    font-weight: normal;
  }
  .dd_fuwu .main #fullpage .section .w80 .text {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
  }
  .dd_fuwu .main #fullpage .section .w80 .text::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    z-index: -1;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title h2 {
    font-size: 2rem;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title p {
    font-size: 1rem;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .more {
    margin-top: 3rem;
  }
  .dd_mendian .main .w80 .top .title h2 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .dd_mendian .main .w80 .top .xuanze .x_box1 h4 {
    font-size: 1rem;
    font-weight: normal;
  }
  .dd_mendian .main .w80 .bottom ul li {
    width: 48%;
  }
  .dd_mendian .main .w80 .bottom ul li a .txt .t_box1 h3 {
    font-size: 1rem;
  }
  .dd_mendian .main .w80 .top .xuanze {
    display: none;
  }
  .dd_mendian .main .w80 {
    padding-top: 8rem;
  }
  .dd_jiameng .main .part01 .top .title h2 {
    font-size: 2rem;
  }
  .dd_jiameng .main {
    padding-top: 8rem;
  }
  .dd_jiameng .main .part01 .bottom {
    margin-top: 1rem;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .dd_jiameng .main .part01 .bottom ul li {
    width: 48%;
    height: 13rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
  .dd_jiameng .main .part01 .bottom ul li .text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .dd_jiameng .main .part01 .bottom ul li .text p {
    font-size: 1rem;
    line-height: 1.4;
  }
  .dd_jiameng .main .part01 {
    padding-bottom: 8rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box1 h2 {
    font-size: 2rem;
    margin-top: 6rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box1 span {
    font-size: 1rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box {
    left: 10%;
    width: 86%;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item p {
    font-size: 1rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item img {
    width: 1.5rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item {
    margin-bottom: 1.25rem;
  }
  .dd_jiameng .main .part02 .btn > div {
    width: 3rem;
    height: 3rem;
  }
  .dd_jiameng .main .part02 .btn > div .img img {
    width: 1.5rem;
  }
  .dd_jiameng .main .part02 .btn {
    bottom: 26vh;
    left: 5%;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide {
    height: 64vh;
  }
  .dd_jiameng .main .part03 .top .w80 .title h2 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num h2 {
    font-size: 1.5rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num p {
    font-size: 1.2rem;
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num h3 {
    font-size: 1.2rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-button-prev {
    width: 3rem;
    height: 3rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt {
    width: 100%;
    height: 36vh;
    right: 0;
    top: auto;
    bottom: 0;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon img {
    width: 4rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_title h3 {
    font-size: 1.25rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon {
    margin-bottom: 1.25rem;
    text-align: center;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt {
    background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
    background-color: transparent;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content p {
    color: #fff;
    font-size: 1rem;
    text-align: center;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_title h3 {
    color: #fff;
    text-align: center;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content {
    margin-top: 0.75rem;
  }
  .dd_jiameng .main .part04 .w80 .title h2 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part04 .w80 .title {
    padding-bottom: 1.5rem;
  }
  .dd_jiameng .main .part04 .w80 .images img {
    width: 100%;
  }
  .dd_jiameng .main .part04 .w80 .images {
    padding: 0;
  }
  .dd_jiameng .main .part05 .w80 .box {
    width: 100%;
  }
  .dd_jiameng .main .part05 .w80 .box h3 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part05 .w80 {
    background-size: cover;
  }
  .dd_jiameng .main .part03 {
    padding-bottom: 8rem;
  }
  .dd_jiameng .main .part04 {
    padding: 8rem 0;
  }
  .dd_jiameng .main .part05 {
    padding: 8rem 0;
  }
  .contact .main .w80 .content .c_box > div {
    width: 100%;
  }
  .contact .main .w80 .content {
    padding: 0;
  }
  .contact .main .w80 .content .c_box > div.l .l_top {
    margin-bottom: 3rem;
  }
  .contact .main .w80 .content .c_box > div.l .l_top .title p {
    font-size: 2.5rem;
  }
  .index .part01 .banner .videoBg video {
    display: none;
  }
  .index .part01 .banner .videoBg img {
    display: block;
    width: 110%;
  }
  .index .part04 .bg video {
    display: none;
  }
  .index .part04 .bg img {
    display: block;
    width: 100%;
  }
  .index .part03 .bg video {
    display: none;
  }
  .index .part03 .bg {
    background-image: url(/images/part03Bg.jpg) no-repeat center / cover;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .index .part04 .w80 {
    bottom: 22vh;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
    font-size: 2.25rem;
    padding-top: 0;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content {
    right: 10vw;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(3) .itemBg .content {
    left: 10vw;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(4) .itemBg .content {
    right: 10vw;
  }
  .index .part02 .bgBox .bg-item-wrapper:nth-child(5) .itemBg .content {
    left: 10vw;
  }
  .index .part03 .bottom .box1 ul li {
    width: 20rem;
    height: 12rem;
  }
  .index .part03 .bottom .box2 ul li {
    width: 20rem;
    height: 12rem;
  }
  .index .part05 .w80 .bottom > div > div .item .txt .l h3 {
    font-size: 1rem;
  }
  .dd_about .main .company_info .bg {
    height: auto;
    top: auto;
    bottom: -0.25rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title h2 {
    font-size: 1.75rem;
    letter-spacing: 0;
    margin-bottom: 0.75rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title p {
    font-size: 1.375rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_content p {
    font-size: 1rem;
  }
  .dd_about .main .company_info {
    padding: 8rem 0;
  }
  .dd_about .main .company_info .w80 {
    gap: 6vw;
  }
  .dd_about .main .boss_info .w80 .right .r_box1 .title h2 {
    font-size: 2rem;
  }
  .dd_about .main .boss_info .w80 .right {
    width: 48%;
    height: 60vh;
    overflow-y: scroll;
  }
  .dd_about .main .boss_info .w80 .right::-webkit-scrollbar {
    width: 0.25rem;
  }
  .dd_about .main .boss_info .w80 .right::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
  }
  .dd_about .main .boss_info .w80 .right::-webkit-scrollbar-thumb {
    background: #dbb46f;
    border-radius: 0.25rem;
  }
  .dd_about .main .boss_info .w80 .left .l_text h4 {
    font-size: 1.25rem;
  }
  .dd_about .main .boss_info .w80 .left .l_text {
    top: 4rem;
    right: 2rem;
    width: 4.5rem;
  }
  .dd_about .main .boss_info .w80 .left .l_text p {
    font-size: 1rem;
  }
  .dd_about .main .boss_info .w80 .left .img {
    border-left: 1rem solid #dbb46f;
  }
  .dd_about .main .honor_box .w80 .top .honorDesc p {
    font-size: 1rem;
  }
  .dd_about .main .honor_box .w80 .top .title h2 {
    font-size: 2rem;
  }
  .dd_about .main .honor_box {
    padding: 8rem 0;
  }
  .dd_about .main .honor_box .w80 .top .title .btn .r_btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .dd_about .main .honor_box .w80 .top .title .btn .l_btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .dd_about .main .honor_box .w80 .bottom {
    margin-top: 4rem;
  }
  .dd_about .main .honor_box .w80 .bottom div ul li .mask .m_text {
    font-size: 1.25rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_title h3 {
    font-size: 2rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_content p {
    font-size: 1rem;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item h3 {
    font-size: 1.25rem;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item {
    background-size: contain;
  }
  .dd_news .main .news_part01 .right ul li a .top .title h3 {
    background-size: 1.125rem;
    font-size: 1.125rem;
    line-height: 1.2;
    padding-left: 2rem;
  }
  .dd_news .main .news_part01 .left .newsSwiper2 .swiper-wrapper .swiper-slide img {
    height: 20rem;
  }
  .dd_news .main .news_part01 .right ul li a .center p {
    display: none;
  }
  .dd_news .main .news_part01 .right ul li a .more {
    display: none;
  }
  .dd_news .main .news_part01 .right ul li:nth-of-type(1) {
    margin-top: 0;
  }
  .dd_news .main .news_part01 .right ul li {
    height: 5.8rem;
  }
  .dd_news .main .news_part01 .right ul li a .top .title {
    width: 100%;
  }
  .dd_news .main .news_part01 .right ul li a .top .date {
    width: 100%;
    box-sizing: border-box;
    padding-left: 2rem;
    margin-top: 1rem;
  }
  .dd_news .main .news_part02 > .list .item .txt .l h3 {
    font-size: 1rem;
  }
  .dd_news .main .news_part02 > .list .item {
    width: 32%;
  }
  .dd_news .main .news_part02 > .list .item .txt {
    padding: 1.5rem 1rem;
  }
  .dd_news_details .main > div .left .news_title h3 {
    font-size: 1.25rem;
  }
  .dd_news_details .main {
    margin-top: 8rem;
  }
  .dd_news_details .main > div .right .bottom {
    margin-top: 1.875rem;
  }
  .dd_news_details .main > div .right .bottom > div ul li h3 {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .dd_news_details .main > div .right .bottom > div {
    padding: 1rem;
  }
  .dd_news_details .main > div .right .bottom > div ul li {
    margin-bottom: 1.5rem;
    margin-top: 1.25rem;
    padding-bottom: 1rem;
  }
  header {
    line-height: 4rem;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title h2 {
    font-size: 2rem;
  }
  .dd_fuwu .main #fullpage .section .w80 .text {
    width: 50%;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title p {
    font-size: 1rem;
  }
  .dd_mendian .main .w80 .top .title h2 {
    font-size: 2rem;
  }
  .dd_mendian .main .w80 .top .xuanze .x_box1 h4 {
    font-size: 1rem;
  }
  .dd_mendian .main .w80 .bottom ul li {
    width: 32%;
  }
  .dd_mendian .main .w80 .bottom ul li:nth-child(3n) {
    margin-right: 0;
  }
  .dd_mendian .main .w80 .bottom ul li:nth-child(4n) {
    margin-right: 2%;
  }
  header > div nav ul li a {
    font-size: 1rem;
  }
  .dd_mendian .main .w80 .bottom ul li a .txt .t_box1 h3 {
    font-size: 1rem;
  }
  .dd_jiameng .main .part01 .bottom ul li .text h3 {
    font-size: 1.25rem;
  }
  .dd_jiameng .main .part01 .top .title h2 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part01 .bottom {
    margin-top: 2rem;
  }
  .dd_jiameng .main .part01 .bottom ul li .text p {
    font-size: 1rem;
    line-height: 1.3;
    height: 4rem;
  }
  .dd_jiameng .main .part01 .bottom ul li {
    height: 15rem;
    padding: 1.25rem;
  }
  .dd_jiameng .main {
    padding-top: 8rem;
  }
  .dd_jiameng .main .part01 {
    padding-bottom: 8rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box1 span {
    font-size: 1rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box1 h2 {
    font-size: 2rem;
    margin-top: 14vh;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item p {
    font-size: 1.25rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item img {
    width: 1.75rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 {
    margin-top: 2rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item {
    margin-bottom: 1rem;
  }
  .dd_jiameng .main .part02 .btn {
    bottom: 20vh;
  }
  .dd_jiameng .main .part02 .btn > div {
    width: 3rem;
    height: 3rem;
  }
  .dd_jiameng .main .part02 .btn > div .img img {
    width: 1.375rem;
  }
  .dd_jiameng .main .part03 .top .w80 .title h2 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num h2 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num p {
    font-size: 1.25rem;
    padding: 0 0.25rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num h3 {
    font-size: 1.25rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide {
    height: 27rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt {
    width: 100%;
    height: calc(100% - 14rem);
    padding: 1.5rem 1.25rem;
    bottom: 0;
    top: auto;
    right: 0;
    background-color: transparent;
    background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon img {
    width: 3.5rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon {
    margin-bottom: 1.5rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_title h3 {
    font-size: 1.25rem;
    color: #fff;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content p {
    font-size: 1rem;
    color: #fff;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content {
    border-bottom: none;
    margin-top: 0.5rem;
  }
  .dd_jiameng .main .part04 .w80 .title h2 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part04 .w80 .images {
    padding: 0;
  }
  .dd_jiameng .main .part04 .w80 .images img {
    margin-left: -10rem;
  }
  .dd_jiameng .main .part05 .w80 .box h3 {
    font-size: 2rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms1 .ms1_sub1 {
    height: 2.5rem;
    padding: 0.5rem 1rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms1 .ms1_sub1 input {
    font-size: 0.875rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms2 .ms2_sub1 {
    height: 2.5rem;
    padding: 0.5rem 1rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms2 .ms2_sub1 input {
    font-size: 0.875rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms3 {
    height: 9.5rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms3 textarea {
    font-size: 0.875rem;
  }
  .dd_jiameng .main .part05 .w80 .box .message .ms4 button {
    font-size: 1rem;
    height: 2.75rem;
    line-height: 2.75rem;
  }
  .dd_jiameng .main .part05 .w80 .box {
    padding: 2rem;
  }
  .dd_jiameng .main .part03 {
    padding-bottom: 8rem;
  }
  .dd_jiameng .main .part04 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .dd_jiameng .main .part05 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .contact .main .w80 .content .c_box > div .item .i_title h3 {
    font-size: 1.25rem;
  }
  .contact .main .w80 .content .c_box > div .item .txt .t_sub1 .t_sub1_sub2 {
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    text-align: center;
  }
  .contact .main .w80 .content .c_box > div .item .txt .t_sub1 .t_sub1_sub2 i {
    font-size: 1rem !important;
  }
  .contact .main .w80 .content .c_box > div .item {
    padding: 2rem;
    height: 14rem;
  }
  .contact .main .w80 .content .c_box > div.l .l_top .title p {
    font-size: 2rem;
  }
  .contact .main .w80 .content .c_box > div.l .l_top .title h2 {
    font-size: 1.5rem;
  }
  .contact .main .w80 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  header {
    --after-width: 90%;
  }
  .index .part04 .w80 {
    left: 5%;
    bottom: 26vh;
  }
  .index .part04 .w80 .right .txt p {
    font-size: 0.9375rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p {
    font-size: 1rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
    font-size: 1.75rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p {
    margin-left: 0.5rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a h2 {
    margin-right: 0rem;
    padding-left: 0rem;
    padding-right: 0.75rem;
  }
  .index .part02 .bgBox .bg-item-wrapper .itemBg .content a > p::after {
    left: -0.5rem;
  }
  .index .part03 .bottom .box1 ul li .text .t_box .t_name h3 {
    font-size: 1.125rem;
  }
  .index .part03 .bottom .box2 ul li .text .t_box .t_name h3 {
    font-size: 1.125rem;
  }
  .index .part03 .bottom {
    margin-top: 1.75rem;
  }
  .dd_about .main .culture_box .content .w80 .left .l_item {
    background-size: 1.2rem;
  }
  .contact .main .w80 .content .c_title h3 {
    font-size: 2rem;
  }
  .contact .main .w80 .content .top ul li .text p {
    font-size: 2rem;
  }
  .contact .main .w80 .content .top ul li .text h3 {
    margin-bottom: 1.5rem;
  }
  .contact .main .w80 .content .bottom .ewm1 {
    margin: 1rem;
  }
  .contact .main .w80 .content .bottom .ewm1 img {
    width: 8rem;
  }
  .contact .main .w80 .content .bottom {
    margin-top: 2rem;
  }
  .contact .main .w80 .add .a_txt p {
    font-size: 1.125rem;
  }
  .contact .main {
    padding-bottom: 0;
  }
  .dd_mendian .main .w80 .bottom ul li a .txt .t_box2 img {
    width: 1rem;
  }
  .dd_jiameng .main .part02 .btn > div .img img {
    width: 0.875rem;
  }
  .index .part01 .banner .videoBg video {
    display: none;
  }
  .index .part01 .banner .videoBg img {
    display: block;
    width: 110%;
  }
  .index .part04 .bg video {
    display: none;
  }
  .index .part04 .bg img {
    display: block;
    width: 100%;
  }
  .index .part03 .bg video {
    display: none;
  }
  .index .part03 .bg img {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1201px) and (max-width: 1460px) {
  .dd_about .main .company_info .w80 .c_i_right .c_i_title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title p {
    font-size: 1.375rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_content p {
    font-size: 1rem;
    font-weight: 400;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_title {
    margin-bottom: 1rem;
  }
  .dd_about .main .company_info .w80 .c_i_right .c_i_content p {
    margin-bottom: 0.5rem;
  }
  .dd_about .main .company_info .bg {
    top: 0;
  }
  .dd_about .main .company_info {
    min-height: 90vh;
  }
  .dd_about .main .boss_info .w80 .right .r_box1 .title h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .dd_about .main .boss_info .w80 .right .r_box2 p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  .dd_about .main .boss_info .w80 .right .r_box2 {
    margin-top: 0;
  }
  .dd_about .main .honor_box {
    padding: 10rem 0;
  }
  .dd_about .main .honor_box .w80 .top .honorDesc p {
    font-size: 1rem;
    font-weight: 400;
  }
  .dd_about .main .honor_box .w80 .top .title h2 {
    font-size: 2.5rem;
  }
  .dd_about .main .honor_box .w80 .bottom {
    margin-top: 5rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_content p {
    font-size: 1rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_title h3 {
    font-size: 2.5rem;
  }
  .dd_about .main .culture_box .content .w80 .right .r_item .r_item_content h4 {
    font-size: 1.125rem;
  }
  .dd_news .main .news_part01 .right ul li a .more span img {
    width: 0.875rem;
  }
  .dd_news .main .news_part01 .right ul li a .top .title h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
  }
  .dd_news .main .news_part01 .right ul li a .more {
    margin-top: 1rem;
  }
  .dd_news .main .news_part01 .left .newsSwiper2 .swiper-wrapper .swiper-slide img {
    height: 26rem;
  }
  .dd_news .main .news_part01 .right ul li a .center p {
    line-height: 1.3;
  }
  .dd_news .main .news_part01 .right ul li {
    height: auto;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  .dd_news .main .news_part01 .right ul li:nth-child(3) {
    margin-bottom: 0;
  }
  .dd_news .main .news_part01 .left {
    border-radius: 1rem;
  }
  .dd_news .main .news_part01 {
    padding-top: 3rem;
  }
  .dd_news .main .news_part02 > .list .item .txt .l h3 {
    font-size: 1rem;
    font-weight: normal;
  }
  .dd_news .main .news_part02 > .list .item .txt .r img {
    width: 1rem;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title h2 {
    font-size: 2.5rem;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .title p {
    font-size: 1rem;
  }
  .dd_fuwu .main #fullpage .section .w80 .text .more a {
    background-color: #000;
  }
  .dd_mendian .main .w80 .bottom ul li a .txt .t_box1 h3 {
    font-size: 1rem;
  }
  .dd_mendian .main .w80 .bottom ul li a .txt .t_box2 img {
    width: 1rem;
  }
  .dd_mendian .main .w80 .bottom ul li a .txt {
    align-items: flex-start;
  }
  .dd_jiameng .main .part01 .top .title h2 {
    font-size: 2.5rem;
  }
  .dd_jiameng .main .part01 .bottom div ul li .text h3 {
    font-size: 1.75rem;
  }
  .dd_jiameng .main .part01 .bottom {
    margin-top: 2rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box1 h2 {
    font-size: 2.5rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item p {
    font-size: 1.25rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item img {
    width: 2rem;
  }
  .dd_jiameng .main .part02 .btn > div {
    width: 3rem;
    height: 3rem;
  }
  .dd_jiameng .main .part02 .btn > div .img img {
    width: 1.125rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 {
    margin-top: 2rem;
  }
  .dd_jiameng .main .part02 .c .left ul li .box .box2 .item {
    margin-bottom: 1rem;
  }
  .dd_jiameng .main .part03 .top .w80 .title h2 {
    font-size: 2.5rem;
  }
  .dd_jiameng .main .part03 .top .w80 .num p {
    margin: 0 0.25rem;
    margin-top: -0.25rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide {
    height: 28.375rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon img {
    width: 4rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_icon {
    margin-bottom: 1rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_title h3 {
    font-size: 1.25rem;
  }
  .dd_jiameng .main .part03 .swiper-container .swiper-wrapper .swiper-slide .txt .t_content p {
    font-weight: 400;
    font-size: 1rem;
  }
  .dd_jiameng .main .part04 .w80 .title h2 {
    font-size: 2.5rem;
  }
  .dd_jiameng .main .part04 .w80 .images img {
    width: 100%;
  }
  .dd_jiameng .main .part05 .w80 .box h3 {
    font-size: 2.5rem;
  }
  .contact .main .w80 .content .top ul li .text p {
    font-size: 2.5rem;
  }
  .contact .main .w80 .content .bottom .ewm1 img {
    width: 7.5rem;
  }
  .contact .main .w80 .content .bottom .ewm1 p {
    font-size: 1rem;
  }
  .contact .main .w80 .content .bottom {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .contact .main .w80 .content .bottom .ewm1 {
    margin: 2rem;
  }
  .index .part04 .w80 {
    bottom: 16vh;
  }
  .index .part04 .logo {
    top: 12%;
  }
  .index .part03 .bottom .box1 ul li {
    width: 21rem;
    height: 13.5rem;
  }
  .index .part03 .bottom .box2 ul li {
    width: 21rem;
    height: 13.5rem;
  }
  .index .part03 .bottom .box1 ul li .text .t_box .t_name h3 {
    font-size: 1.125rem;
  }
  .index .part03 .bottom .box2 ul li .text .t_box .t_name h3 {
    font-size: 1.125rem;
  }
  .index .part05 .w80 .bottom > div > div .item .img {
    height: 16rem;
  }
  .index .part05 .w80 .bottom {
    margin-top: 2.5rem;
  }
  .index .part06 .logo-mask-container .join-text {
    top: 48%;
  }
}
