:root {
  font-size: 16px;
}
@media screen and (min-width: 1680px) {
  :root {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1680px) {
  :root {
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  :root {
    font-size: 14px;
  }
}
@media screen and (min-resolution: 120dpi) and (max-resolution: 140dpi) {
  :root {
    font-size: 13px;
  }
}
@media screen and (min-resolution: 140dpi) and (max-resolution: 160dpi) {
  :root {
    font-size: 12px;
  }
}
header {
  position: fixed;
  top: 2.38rem;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  height: 5.63rem;
}
header > div {
  height: inherit;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0 2.5rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  overflow: visible !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  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 img {
  width: 9rem;
}
header > div .logo .logo_img a:nth-of-type(1) {
  display: block;
}
header > div .logo .logo_img a:nth-of-type(2) {
  display: none;
}
header > div .logo .logo_img a.c:nth-of-type(1) {
  display: none;
}
header > div .logo .logo_img a.c:nth-of-type(2) {
  display: block;
}
header > div .logo .logo_text a h3 {
  font-size: 1.88rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.63rem;
}
header > div .logo .logo_text a p {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  width: 76%;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  height: inherit;
  position: relative;
  width: 14.28%;
  z-index: 999;
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li:hover::after {
  width: 100%;
}
header > div nav ul li::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 5.63rem;
  background-color: #fff;
  transition: all 0.5s ease;
  z-index: -1;
}
header > div nav ul li a {
  display: block;
  font-size: 0.88rem;
  color: #f3b139;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li a span {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.38rem;
  line-height: 1;
  display: block;
}
header > div nav ul li a i {
  line-height: 1;
  display: block;
  opacity: 0.6;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 5.63rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff9ec;
}
header > div nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 1.25rem;
}
header > div nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 1.25rem;
}
header > div nav ul li .menu .menu_item a {
  font-size: 1rem;
  color: #333;
  line-height: 3.13rem;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #f3b139;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav ul li.active::after {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  header > div nav ul li a span {
    font-size: 1.16rem;
  }
}
.title > strong {
  font-size: 6rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.2;
  display: block;
  letter-spacing: 0.5rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), #f3b139);
  /* 将背景裁剪到文字范围 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色透明，以显示背景渐变 */
  color: transparent;
  /* 兼容旧版 WebKit 浏览器（如 Safari） */
  -webkit-text-fill-color: transparent;
}
.title > h2 {
  font-size: 3.2rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-top: -2.5rem;
  /* 设置渐变背景 */
  background: linear-gradient(to bottom, #fce1b2, #dfb25f);
  /* 将背景裁剪到文字范围 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色透明，以显示背景渐变 */
  color: transparent;
  /* 兼容旧版 WebKit 浏览器（如 Safari） */
  -webkit-text-fill-color: transparent;
}
.fp-warning,
.fp-watermark {
  display: none;
}
@keyframes moveRight {
  0% {
    left: 1.88rem;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    left: 4.38rem;
    opacity: 0;
  }
}
@keyframes moveLeft {
  0% {
    left: 4.38rem;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    left: 1.88rem;
    opacity: 0;
  }
}
@keyframes moveTop {
  0% {
    top: 1.25rem;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    top: 3.75rem;
    opacity: 0;
  }
}
footer {
  width: 100%;
  height: auto;
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  box-sizing: border-box;
  background-color: #000;
}
footer .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .w80 .left {
  width: 70%;
}
footer .w80 .left .l_top {
  padding-bottom: 1.88rem;
  border-bottom: 0.06rem solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
footer .w80 .left .l_top .img img {
  width: initial;
}
footer .w80 .left .l_top nav {
  width: calc(100% - 13.75rem);
  margin-bottom: 0.5rem;
}
footer .w80 .left .l_top nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .w80 .left .l_top nav ul li a {
  font-size: 1.13rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
footer .w80 .left .l_bottom {
  margin-top: 3.75rem;
}
footer .w80 .left .l_bottom .l_b_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.88rem;
}
footer .w80 .left .l_bottom .l_b_item p {
  font-size: 1.13rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-left: 5rem;
  opacity: 0.4;
}
footer .w80 .left .l_bottom .l_b_item p:nth-of-type(1) {
  margin-left: 0;
}
footer .w80 .right {
  width: 14%;
}
footer .w80 .right .erweima {
  width: 100%;
}
footer .w80 .right .erweima img {
  width: 100%;
}
footer .w80 .right .txt {
  margin-top: 0.88rem;
}
footer .w80 .right .txt p {
  font-size: 1.13rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  opacity: 0.4;
}
.index .part02 {
  position: relative;
  background-color: #000;
}
.index .part02 .w80 {
  position: relative;
  z-index: 8;
  opacity: 0;
  transition: all 1.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part02 .w80.active {
  opacity: 1;
}
.index .part02 .w80 .left {
  margin-top: 0rem;
  height: 50vh;
}
.index .part02 .w80 .left .p02_title h2 {
  font-size: 4.25rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part02 .w80 .left .btn {
  margin-top: 5rem;
  padding: 1.88rem 0 1.88rem 0.63rem;
  border-left: 0.06rem solid rgba(255, 255, 255, 0.4);
}
.index .part02 .w80 .left .btn .b_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0.5;
  cursor: pointer;
}
.index .part02 .w80 .left .btn .b_item:nth-of-type(3) {
  margin-bottom: 0;
}
.index .part02 .w80 .left .btn .b_item.active {
  opacity: 1;
}
.index .part02 .w80 .left .btn .b_item.active .b_txt h3 {
  font-weight: 700;
}
.index .part02 .w80 .left .btn .b_item.active .s_icon {
  opacity: 1;
}
.index .part02 .w80 .left .btn .b_item .i_icon {
  margin-left: 1.25rem;
}
.index .part02 .w80 .left .btn .b_item .s_icon {
  opacity: 0;
}
.index .part02 .w80 .left .btn .b_item .b_txt {
  margin-left: 1.5rem;
}
.index .part02 .w80 .left .btn .b_item .b_txt h3 {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part02 .w80 .right {
  width: 50%;
  padding: 3.13rem 5rem;
  background-color: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  position: relative;
  height: 50vh;
}
.index .part02 .w80 .right .item {
  position: absolute;
  z-index: -1;
  opacity: 0;
  transform: translateY(3.75rem);
}
.index .part02 .w80 .right .item.active {
  position: static;
  opacity: 1;
  transition: all 0.5s ease;
  transform: translateY(0);
}
.index .part02 .w80 .right .item .r_title h4 {
  font-size: 2.25rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part02 .w80 .right .item .r_title::after {
  display: block;
  content: "";
  width: 8.75rem;
  height: 0.06rem;
  margin-top: 0.88rem;
  margin-bottom: 1.5rem;
  background-color: #f3b139;
}
.index .part02 .w80 .right .item .r_content {
  border-radius: 0.75rem;
}
.index .part02 .w80 .right .item .r_content p {
  font-size: 1.13rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}
.index .part02 .quan {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
}
.index .part02 .quan .img img {
  width: 30rem;
}
.index .part02 .bg .item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
}
.index .part02 .bg .item.active {
  z-index: 1;
  opacity: 1;
  transition: all 2s ease;
  transform: scale(1);
}
.index .part02 .bg .item:nth-of-type(1) {
  background-image: url(/images/indexPart02Bg1.jpg);
}
.index .part02 .bg .item:nth-of-type(2) {
  background-image: url(/images/indexPart02Bg2.jpg);
}
.index .part02 .bg .item:nth-of-type(3) {
  background-image: url(/images/indexPart02Bg3.jpg);
}
.index .part03 {
  position: relative;
}
.index .part03 .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  /* 视频元素 */
}
.index .part03 .video-container #bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index .part04 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/indexPart04Bg.jpg);
}
.index .part04 .w80.active .p04_title {
  transform: translateY(0rem);
  opacity: 1;
  transition: all 1.2s ease;
}
.index .part04 .w80.active .p04_desc {
  transform: translateY(0rem);
  opacity: 1;
  transition: all 1.2s ease;
  transition-delay: 0.2s;
}
.index .part04 .w80.active .p04_content {
  opacity: 1;
  transition: all 1.2s ease;
  transition-delay: 0.4s;
}
.index .part04 .w80 .p04_title {
  transform: translateY(3.75rem);
  opacity: 0;
  margin-top: 5.63rem;
  margin-bottom: 3.2rem;
}
.index .part04 .w80 .p04_title strong {
  font-size: 6.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.2;
  letter-spacing: 0.5rem;
  display: block;
  background: linear-gradient(to bottom, rgba(221, 156, 54, 0.8), rgba(221, 156, 54, 0));
  /* 将背景裁剪到文字范围 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色透明，以显示背景渐变 */
  color: transparent;
  /* 兼容旧版 WebKit 浏览器（如 Safari） */
  -webkit-text-fill-color: transparent;
}
.index .part04 .w80 .p04_title h2 {
  font-size: 4.25rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-top: -2.5rem;
  /* 设置渐变背景 */
  background: linear-gradient(to bottom, #f6c974, #dd9c36);
  /* 将背景裁剪到文字范围 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色透明，以显示背景渐变 */
  color: transparent;
  /* 兼容旧版 WebKit 浏览器（如 Safari） */
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}
.index .part04 .w80 .p04_title h3 {
  font-size: 1.63rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-shadow: 0.06rem 0.06rem 0.13rem #0c0202;
  padding-bottom: 9.6px;
}
.index .part04 .w80 .p04_title h3 span {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffd58b;
  font-style: italic;
  letter-spacing: -0.06rem;
}
.index .part04 .w80 .p04_desc {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  /* 模糊效果 */
  backdrop-filter: blur(10px);
  /* 兼容性前缀 */
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(3.75rem);
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .p04_desc .item {
  width: 33%;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgba(0, 0, 0, 0.02);
  cursor: pointer;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2) {
  background-color: #f3b139;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2) .i_icon {
  border: 1px solid #fff;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2) .i_txt p {
  color: #fff;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2) .i_txt p span {
  color: #fff;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2):hover {
  background-color: #f3b139;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2):hover .i_icon {
  border: 1px solid #fff;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2):hover .i_icon img:nth-of-type(1) {
  display: block;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2):hover .i_icon img:nth-of-type(2) {
  display: none;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2):hover .i_txt p {
  color: #fff;
}
.index .part04 .w80 .p04_desc .item:nth-of-type(2):hover .i_txt p span {
  color: #fff;
}
.index .part04 .w80 .p04_desc .item .i_icon {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 1px solid #f3b139;
  margin: 0 auto;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .p04_desc .item .i_icon img {
  width: 60%;
}
.index .part04 .w80 .p04_desc .item .i_icon img:nth-of-type(2) {
  display: none;
}
.index .part04 .w80 .p04_desc .item .i_txt {
  margin-top: 1.5rem;
  height: 4.625rem;
}
.index .part04 .w80 .p04_desc .item .i_txt p {
  font-size: 1.3rem;
  color: #000;
  line-height: 1.4;
  font-weight: 100;
  text-align: center;
}
.index .part04 .w80 .p04_desc .item .i_txt p span {
  font-weight: 600;
  color: #f3b139;
}
.index .part04 .w80 .p04_desc .item:hover {
  background-color: #f3b139;
  transition: all 0.5s ease;
}
.index .part04 .w80 .p04_desc .item:hover .i_icon {
  border: 1px solid #fff;
  transform: rotateY(180deg);
}
.index .part04 .w80 .p04_desc .item:hover .i_icon img:nth-of-type(1) {
  display: none;
}
.index .part04 .w80 .p04_desc .item:hover .i_icon img:nth-of-type(2) {
  display: block;
}
.index .part04 .w80 .p04_desc .item:hover .i_txt p {
  color: #fff;
}
.index .part04 .w80 .p04_desc .item:hover .i_txt p span {
  color: #fff;
}
.index .part04 .w80 .p04_content {
  width: 100%;
  margin: 3.75rem auto 0;
  opacity: 0;
}
.index .part04 .w80 .p04_content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .p04_content ul li {
  cursor: pointer;
}
.index .part04 .w80 .p04_content ul li:hover .p04_item_top .p04_icon img {
  transform: rotateY(180deg);
}
.index .part04 .w80 .p04_content ul li:hover .p04_item_bottom h3 {
  color: #830101;
}
.index .part04 .w80 .p04_content ul li:hover .p04_item_bottom p {
  color: #830101;
}
.index .part04 .w80 .p04_content ul li .p04_item_top {
  position: relative;
  width: 10rem;
  height: 10rem;
  border: 0.06rem solid #fff088;
  background-image: linear-gradient(to bottom, #f6c974, #dd9c36);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 2px 0px #fff;
}
.index .part04 .w80 .p04_content ul li .p04_item_top .p04_icon {
  width: inherit;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .p04_content ul li .p04_item_top .p04_icon img {
  width: initial;
  transition: all 0.5s ease;
}
.index .part04 .w80 .p04_content ul li .p04_item_top .p04_bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: inherit;
  height: inherit;
}
.index .part04 .w80 .p04_content ul li .p04_item_top .p04_bg .progress-ring {
  transition: transform 0.3s ease;
}
.index .part04 .w80 .p04_content ul li .p04_item_bottom h3 {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.8rem;
  transition: all 0.5s ease;
}
.index .part04 .w80 .p04_content ul li .p04_item_bottom p {
  font-size: 1rem;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  transition: all 0.5s ease;
  border-radius: 3rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid #f3b139;
}
.index .part04 .w80 .p04_content ul li span {
  display: block;
  width: 8rem;
  height: 0.06rem;
  background-color: #f3b139;
}
.index .part05 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/indexPart05Bg.jpg);
}
.index .part05 .w80 {
  margin-top: 7.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 36.25rem;
}
.index .part05 .w80.active .left .p05_title {
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.index .part05 .w80.active .left .p05_content {
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
  transition-delay: 0.3s;
}
.index .part05 .w80.active .left .p05_more {
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
  transition-delay: 0.5s;
}
.index .part05 .w80.active .right .txt {
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.index .part05 .w80 .left {
  width: 44%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 垂直排列 */
  justify-content: space-between;
  /* 平均分布 */
}
.index .part05 .w80 .left .p05_title {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(3.75rem);
}
.index .part05 .w80 .left .p05_title h2 {
  font-size: 4.25rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.13rem;
  /* 设置渐变背景 */
  background: linear-gradient(to bottom, #f6c974, #dd9c36);
  /* 将背景裁剪到文字范围 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色透明，以显示背景渐变 */
  color: transparent;
  /* 兼容旧版 WebKit 浏览器（如 Safari） */
  -webkit-text-fill-color: transparent;
}
.index .part05 .w80 .left .p05_title::after {
  display: block;
  content: "";
  width: 7.5rem;
  height: 0.06rem;
  margin-top: 1rem;
  background-color: #f3b139;
}
.index .part05 .w80 .left .p05_content {
  opacity: 0;
  transform: translateY(3.75rem);
}
.index .part05 .w80 .left .p05_content p {
  font-size: 1.13rem;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.25rem;
}
.index .part05 .w80 .left .p05_more {
  opacity: 0;
  transform: translateY(3.75rem);
}
.index .part05 .w80 .left .p05_more > div {
  width: 15.63rem;
  height: 3.63rem;
  border-radius: 0.38rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .left .p05_more > div.m1 {
  background-color: #f3b139;
  margin-bottom: 0.63rem;
}
.index .part05 .w80 .left .p05_more > div.m2 {
  background-color: #830101;
}
.index .part05 .w80 .left .p05_more > div a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .left .p05_more > div a:hover p {
  margin-right: 0.5rem;
}
.index .part05 .w80 .left .p05_more > div a p {
  font-size: 1.13rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  transition: all 0.5s ease;
}
.index .part05 .w80 .left .p05_more > div a p span {
  font-size: 0.7rem;
  font-weight: 400;
}
.index .part05 .w80 .left .p05_more > div a img {
  margin-left: 0.63rem;
}
.index .part05 .w80 .right {
  width: 50%;
  height: 100%;
  position: relative;
}
.index .part05 .w80 .right .txt {
  position: absolute;
  left: 3.75rem;
  bottom: 3.13rem;
  opacity: 0;
  transform: translateY(3.75rem);
}
.index .part05 .w80 .right .txt h2 {
  font-size: 4.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part05 .w80 .right .txt h3 {
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.index .part05 .w80 .right .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index .part06 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/indexPart06Bg.jpg);
}
.index .part06 .w80 {
  padding-bottom: 1.25rem;
  margin-top: 7.5rem;
}
.index .part06 .w80.active .top {
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
}
.index .part06 .w80.active .bottom {
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s ease;
  transition-delay: 0.4s ease;
}
.index .part06 .w80 .top {
  opacity: 0;
  transform: translateY(3.75rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part06 .w80 .top .p06_title {
  position: relative;
  width: 40%;
  padding-bottom: 1.25rem;
}
.index .part06 .w80 .top .p06_title h2 {
  font-size: 6.13rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.13rem;
  /* 设置渐变背景 */
  background: linear-gradient(to bottom, rgba(221, 156, 54, 0.2), rgba(221, 156, 54, 0.02));
  /* 将背景裁剪到文字范围 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色透明，以显示背景渐变 */
  color: transparent;
  /* 兼容旧版 WebKit 浏览器（如 Safari） */
  -webkit-text-fill-color: transparent;
}
.index .part06 .w80 .top .p06_title h3 {
  position: absolute;
  bottom: 0rem;
  left: 0;
  font-size: 4.25rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.13rem;
  /* 设置渐变背景 */
  background: linear-gradient(to bottom, #f6c974, #dd9c36);
  /* 将背景裁剪到文字范围 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色透明，以显示背景渐变 */
  color: transparent;
  /* 兼容旧版 WebKit 浏览器（如 Safari） */
  -webkit-text-fill-color: transparent;
}
.index .part06 .w80 .top .p06_more {
  width: 15.63rem;
  height: 3.63rem;
  border-radius: 0.38rem;
  background-color: #830101;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part06 .w80 .top .p06_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part06 .w80 .top .p06_more a p {
  font-size: 1.13rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part06 .w80 .top .p06_more a img {
  margin-left: 0.63rem;
}
.index .part06 .w80 .bottom {
  margin-top: 3.75rem;
  padding: 0 0.63rem;
  opacity: 0;
  transform: translateY(3.75rem);
}
.index .part06 .w80 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part06 .w80 .bottom ul li {
  background-color: #fff;
  border-radius: 0.63rem;
  overflow: hidden;
  width: 23%;
  box-shadow: 0 0.25rem 0.63rem rgba(0, 0, 0, 0.2);
}
.index .part06 .w80 .bottom ul li:hover a .img img {
  transform: scale(1.06);
}
.index .part06 .w80 .bottom ul li:hover a .content {
  background-color: #f3b139;
  transition: all 0.5s ease;
}
.index .part06 .w80 .bottom ul li:hover a .content .txt h3 {
  color: #fff;
}
.index .part06 .w80 .bottom ul li:hover a .content .txt p {
  color: #fff;
  opacity: 0.6;
}
.index .part06 .w80 .bottom ul li:hover a .content .n_more p {
  color: #fff;
}
.index .part06 .w80 .bottom ul li a .img {
  overflow: hidden;
  height: 0;
  padding-bottom: 15rem;
}
.index .part06 .w80 .bottom ul li a .img img {
  width: 100%;
  transition: all 0.5s ease;
}
.index .part06 .w80 .bottom ul li a .content {
  padding: 1.5rem 1.25rem;
  box-sizing: border-box;
}
.index .part06 .w80 .bottom ul li a .content .txt {
  margin-bottom: 1.25rem;
}
.index .part06 .w80 .bottom ul li a .content .txt h3 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
  height: 2.88rem;
  margin-bottom: 1.25rem;
}
.index .part06 .w80 .bottom ul li a .content .txt p {
  font-size: 1rem;
  color: #999;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.index .part06 .w80 .bottom ul li a .content .n_more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part06 .w80 .bottom ul li a .content .n_more p {
  font-size: 1.25rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part06 .w80 .bottom ul li a .content .n_more i {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #830101;
  color: #fff;
  text-align: center;
  font-size: 0.88rem;
  line-height: 2.5rem;
}
.index .part07 {
  height: 44vh;
  background-color: #000;
}
.page.fg .main {
  background-image: url(/images/aboutBg2.jpg);
}
.page.fg .main .p01 .w80 .jianjie .right .about_content p.jc {
  font-weight: 600;
}
.page .main {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/aboutBg1.jpg);
  padding-top: 10rem;
  padding-bottom: 8.75rem;
}
.page .main .p01 {
  margin-top: 5rem;
}
.page .main .p01 .w80 .jianjie {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.page .main .p01 .w80 .jianjie .left {
  width: 50%;
  padding: 0 4% 0rem 0;
  box-sizing: border-box;
  border-right: 0.06rem solid #ededed;
}
.page .main .p01 .w80 .jianjie .left h3 {
  font-size: 1.13rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 2.5rem;
}
.page .main .p01 .w80 .jianjie .left .img {
  width: 100%;
  overflow: hidden;
  border-radius: 0 2.5rem;
}
.page .main .p01 .w80 .jianjie .left .img img {
  width: 100%;
  display: block;
}
.page .main .p01 .w80 .jianjie .right {
  width: 46%;
  box-sizing: border-box;
}
.page .main .p01 .w80 .jianjie .right .title {
  width: auto;
  margin-bottom: 3.13rem;
}
.page .main .p01 .w80 .jianjie .right .title p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.13rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.63rem;
}
.page .main .p01 .w80 .jianjie .right .title p span {
  margin-left: 0.88rem;
  display: block;
  width: 2.88rem;
  height: 0.13rem;
  background-color: #f3b139;
}
.page .main .p01 .w80 .jianjie .right .title h3 {
  font-size: 2.63rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.page .main .p01 .w80 .jianjie .right .about_content {
  margin-top: 2.5rem;
}
.page .main .p01 .w80 .jianjie .right .about_content p {
  font-size: 1.38rem;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
  margin-bottom: 1.5rem;
}
.page .main .p01 .w80 .jianjie .right .about_content p.dz {
  font-weight: 600;
}
.page .main .p02 {
  margin-top: 3.13rem;
}
.page .main .p02 .w80 {
  position: relative;
  box-sizing: border-box;
  padding: 0.63rem;
}
.page .main .p02 .w80 .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.page .main .p02 .w80 .content .i {
  width: 46%;
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.4);
  min-height: 13.75rem;
  border-radius: 0.63rem;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(0.63rem);
  backdrop-filter: blur(0.63rem);
  box-shadow: 0 0 0.63rem rgba(0, 0, 8, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page .main .p02 .w80 .content .i .i_box h3 {
  font-size: 1.88rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.page .main .p02 .w80 .content .i .i_box h3 i {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 2.5rem;
  font-weight: 100;
  margin-right: 0.63rem;
  border: 0.06rem solid #f3b139;
}
.page .main .p02 .w80 .content .i .i_box p {
  font-size: 1.38rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.kaoya .main .top {
  margin-top: 8.75rem;
  padding-bottom: 1.88rem;
  border-bottom: 0.06rem solid rgba(0, 0, 0, 0.06);
  width: 80%;
  margin: 8.75rem auto 0;
}
.kaoya .main .top .title {
  margin: 0 auto;
}
.kaoya .main .w80 {
  margin-top: 5rem;
  margin-bottom: 8.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.kaoya .main .w80 .left {
  width: 50%;
}
.kaoya .main .w80 .left .img {
  border-radius: 0 2.5rem 0 0;
  overflow: hidden;
}
.kaoya .main .w80 .left .img img {
  width: 100%;
  display: block;
}
.kaoya .main .w80 .right {
  width: 42%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/aboutBg2.jpg);
}
.kaoya .main .w80 .right .btn .i {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.kaoya .main .w80 .right .btn .i.active h3 {
  color: #f3b139;
  font-weight: 700;
  font-size: 2.25rem;
}
.kaoya .main .w80 .right .btn .i.active span {
  width: 7.5rem;
  background-color: #f3b139;
}
.kaoya .main .w80 .right .btn .i h3 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.kaoya .main .w80 .right .btn .i span {
  margin-left: 1.25rem;
  display: block;
  width: 5rem;
  height: 0.06rem;
  transition: all 0.5s ease;
  background-color: #666;
}
.kaoya .main .w80 .right .line {
  display: flex;
  flex-direction: column;
  /* 纵向排列 */
  align-items: flex-end;
  margin-bottom: 1.88rem;
}
.kaoya .main .w80 .right .line span {
  width: 0.13rem;
  height: 0.63rem;
  background-color: #e9e9e9;
  display: block;
  margin-bottom: 0.25rem;
}
.kaoya .main .w80 .right .content {
  width: 100%;
  height: 10rem;
  padding: 1.88rem 1.25rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  background-color: #f3b139;
}
.kaoya .main .w80 .right .content .c_box {
  position: relative;
}
.kaoya .main .w80 .right .content .c_box .c1 {
  position: absolute;
  z-index: 0;
  opacity: 0;
  transform: translateY(2.5rem);
}
.kaoya .main .w80 .right .content .c_box .c1.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}
.kaoya .main .w80 .right .content .c_box .c1 p {
  font-size: 1.13rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.faguowenhua {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/fgwh_bg.jpg);
}
.faguowenhua .main .top {
  margin-top: 8.75rem;
  padding-bottom: 1.88rem;
  border-bottom: 0.06rem solid rgba(0, 0, 0, 0.06);
  width: 80%;
  margin: 8.75rem auto 0;
}
.faguowenhua .main .top .title {
  margin: 0 auto;
}
.faguowenhua .main .w80 {
  margin-top: 5rem;
  margin-bottom: 8.75rem;
}
.faguowenhua .main .w80 .txt p {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.63rem;
  text-indent: 2em;
}
.faguowenhua .main .w80 .txt p span {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f3b139;
}
.faguowenhua .main .w80 .txt p i {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
}
.faguowenhua .main .w80 .imgBox {
  margin-top: 5rem;
  padding: 0.5rem;
  box-sizing: border-box;
  padding-bottom: 2.5rem;
}
.faguowenhua .main .w80 .imgBox ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.faguowenhua .main .w80 .imgBox ul li {
  width: 23%;
  border: 0.63rem solid #fff;
  border-radius: 0.63rem;
  box-sizing: border-box;
  box-shadow: 0 0 0.5rem rgba(0, 0, 1, 0.1);
}
.faguowenhua .main .w80 .imgBox ul li .img img {
  width: 100%;
}
.meishibiange .main {
  overflow: hidden;
  background: url(/images/msbg.jpg) center center no-repeat;
  -o-background-size: cover;
  background-size: cover;
}
.meishibiange .main .top {
  margin-top: 8.75rem;
  padding-bottom: 1.88rem;
  border-bottom: 0.06rem solid rgba(0, 0, 0, 0.06);
  width: 80%;
  margin: 8.75rem auto 0;
}
.meishibiange .main .top .title {
  margin: 0 auto;
}
.meishibiange .main .content {
  position: relative;
  width: 100%;
  height: 100vh;
}
.meishibiange .main .content .c_box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -18vh;
}
.meishibiange .main .content .c_box .left {
  width: 20%;
  position: absolute;
  left: 10%;
  top: 50%;
  padding: 1.25rem;
  z-index: 9;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  transform: translateY(-20%);
  border-left: 0.06rem solid #f3b139;
}
.meishibiange .main .content .c_box .left .btns {
  cursor: pointer;
}
.meishibiange .main .content .c_box .left .btns a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.75rem;
  opacity: 0.2;
  font-size: 1.88rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.meishibiange .main .content .c_box .left .btns a.active {
  opacity: 1;
}
.meishibiange .main .content .c_box .left .btns a:nth-of-type(2) {
  margin-bottom: 0;
}
.meishibiange .main .content .c_box .left .btns a img {
  width: 2.5rem;
  margin-right: 0.88rem;
}
.meishibiange .main .content .c_box .left .btns a img:nth-of-type(1) {
  width: 0.63rem;
}
.meishibiange .main .content .c_box .right {
  width: 30%;
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  transform: translateY(-20%);
}
.meishibiange .main .content .c_box .right .item {
  display: none;
}
.meishibiange .main .content .c_box .right .item.active {
  display: block;
}
.meishibiange .main .content .c_box .right .item h3 {
  font-size: 2.25rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.88rem;
  padding-left: 1.25rem;
  position: relative;
}
.meishibiange .main .content .c_box .right .item h3::before {
  display: block;
  content: "";
  width: 0.25rem;
  height: 2rem;
  background-color: #f3b139;
  position: absolute;
  left: 0;
  top: 56%;
  transform: translateY(-50%);
}
.meishibiange .main .content .c_box .right .item p {
  font-size: 1.38rem;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1rem;
}
.meishibiange .main .content .c_box .earth-box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -10%;
  top: 0;
}
.hehuoren .main {
  padding-bottom: 7.5rem;
}
.hehuoren .main .top {
  margin-top: 8.75rem;
  padding-bottom: 1.88rem;
  border-bottom: 0.06rem solid rgba(0, 0, 0, 0.06);
  width: 80%;
  margin: 8.75rem auto 0;
}
.hehuoren .main .top .title {
  margin: 0 auto;
}
.hehuoren .main .w80 {
  padding-bottom: 1.25rem;
}
.hehuoren .main .w80 .part01 {
  margin-top: 6.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part01 .left {
  width: 32%;
}
.hehuoren .main .w80 .part01 .left .img img {
  width: 100%;
}
.hehuoren .main .w80 .part01 .right {
  width: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(/images/hzbg.png);
  padding-bottom: 2.5rem;
}
.hehuoren .main .w80 .part01 .right .title {
  margin-bottom: 3.13rem;
}
.hehuoren .main .w80 .part01 .right .title h4 {
  display: inline-block;
  padding: 0.88rem 1.63rem;
  background-color: #fff9ec;
  font-size: 1.13rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  border-radius: 0.25rem;
  margin-bottom: 1.25rem;
}
.hehuoren .main .w80 .part01 .right .title h3 {
  font-size: 2.63rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part01 .right .title h3 > img {
  width: 2.88rem;
  margin-right: 0.63rem;
}
.hehuoren .main .w80 .part01 .right p {
  font-size: 1.13rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.88rem;
}
.hehuoren .main .w80 .part01 .right p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.hehuoren .main .w80 .part02 {
  margin-top: 5rem;
  padding: 0 0.63rem;
}
.hehuoren .main .w80 .part02 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part02 ul li {
  width: 23%;
  border: 0.63rem solid #fff;
  box-sizing: border-box;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.06);
}
.hehuoren .main .w80 .part02 ul li .img img {
  width: 100%;
}
.hehuoren .main .w80 .part03 {
  margin-top: 5rem;
}
.hehuoren .main .w80 .part03 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part03 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part03 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part03 .image-container {
  margin-top: 3.75rem;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
  padding: 0.38rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part03 .image-container > div {
  width: 23%;
  border: 0.63rem solid #fff;
  box-sizing: border-box;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.06);
}
.hehuoren .main .w80 .part03 .image-container > div img {
  width: 100%;
}
.hehuoren .main .w80 .part03 .image-container > div p {
  margin-top: 0.88rem;
  margin-bottom: 0.63rem;
  font-size: 1.13rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part03 .description {
  margin-top: 3.75rem;
}
.hehuoren .main .w80 .part03 .description p {
  font-size: 1.13rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.25rem;
}
.hehuoren .main .w80 .part04 {
  margin-top: 7.5rem;
}
.hehuoren .main .w80 .part04 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part04 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part04 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part04 .description {
  margin-top: 3.75rem;
}
.hehuoren .main .w80 .part04 .description h2 {
  font-size: 2.5rem;
  color: #830101;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}
.hehuoren .main .w80 .part04 .description .image-display img {
  width: 100%;
}
.hehuoren .main .w80 .part05 {
  margin-top: 7.5rem;
  padding-bottom: 6.25rem;
  background-image: url(/images/jxfbg.jpg);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part05 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part05 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part05 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part05 .team-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3.75rem;
}
.hehuoren .main .w80 .part05 .team-section .left {
  width: 40%;
}
.hehuoren .main .w80 .part05 .team-section .left .team-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hehuoren .main .w80 .part05 .team-section .left .team-member .num {
  width: 5rem;
  height: 4.63rem;
  background-color: #830101;
  font-size: 2.63rem;
  color: #fff;
  line-height: 4.63rem;
  font-weight: 600;
  text-align: center;
}
.hehuoren .main .w80 .part05 .team-section .left .team-member .txt {
  width: calc(100% - 5rem);
  background-color: #f3b139;
  height: 4.63rem;
  padding: 0 0.63rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part05 .team-section .left .team-member .txt .box h2 {
  font-size: 1.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.38rem;
}
.hehuoren .main .w80 .part05 .team-section .left .team-member .txt .box h2 span {
  font-weight: 100;
  font-size: 1.13rem;
  margin-left: 0.63rem;
}
.hehuoren .main .w80 .part05 .team-section .left .team-member .txt .box p {
  font-size: 1.13rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part05 .team-section .center {
  width: 40%;
}
.hehuoren .main .w80 .part05 .team-section .center .team-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hehuoren .main .w80 .part05 .team-section .center .team-member .num {
  width: 5rem;
  height: 4.63rem;
  background-color: #830101;
  font-size: 2.63rem;
  color: #fff;
  line-height: 4.63rem;
  font-weight: 600;
  text-align: center;
}
.hehuoren .main .w80 .part05 .team-section .center .team-member .txt {
  width: calc(100% - 5rem);
  background-color: #f3b139;
  height: 4.63rem;
  padding: 0 0.63rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part05 .team-section .center .team-member .txt .box h2 {
  font-size: 1.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.38rem;
}
.hehuoren .main .w80 .part05 .team-section .center .team-member .txt .box h2 span {
  font-weight: 100;
  font-size: 1.13rem;
  margin-left: 0.63rem;
}
.hehuoren .main .w80 .part05 .team-section .center .team-member .txt .box p {
  font-size: 1.13rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part05 .team-section .center .img {
  margin-top: 3.13rem;
  text-align: center;
}
.hehuoren .main .w80 .part05 .team-section .center .img img {
  margin: 0 auto;
  width: 60%;
}
.hehuoren .main .w80 .part05 .team-section .right {
  width: 8%;
}
.hehuoren .main .w80 .part05 .team-section .right h2 {
  margin-bottom: 1.25rem;
  font-size: 2.63rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part06 {
  margin-top: 7.5rem;
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part06 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part06 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part06 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part06 .team-section h3 {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  width: 80%;
  margin: 3.13rem auto;
}
.hehuoren .main .w80 .part06 .team-section .img {
  text-align: center;
}
.hehuoren .main .w80 .part06 .team-section .img img {
  width: 60%;
}
.hehuoren .main .w80 .part07 {
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part07 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part07 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part07 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part07 .team-section {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part07 .team-section .left {
  width: 22%;
}
.hehuoren .main .w80 .part07 .team-section .left .item {
  margin-bottom: 2.5rem;
}
.hehuoren .main .w80 .part07 .team-section .left .item h3 {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.38rem;
}
.hehuoren .main .w80 .part07 .team-section .left .item p {
  font-size: 1.13rem;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part07 .team-section .img {
  text-align: center;
  width: 48%;
}
.hehuoren .main .w80 .part07 .team-section .img img {
  width: 100%;
}
.hehuoren .main .w80 .part07 .team-section .right {
  width: 22%;
}
.hehuoren .main .w80 .part07 .team-section .right .item {
  margin-bottom: 2.5rem;
}
.hehuoren .main .w80 .part07 .team-section .right .item h3 {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.38rem;
}
.hehuoren .main .w80 .part07 .team-section .right .item p {
  font-size: 1.13rem;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part08 {
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part08 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part08 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part08 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part08 .team-section {
  margin-top: 5rem;
}
.hehuoren .main .w80 .part08 .team-section .t h3 {
  font-size: 3rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part08 .team-section .img {
  text-align: center;
  width: 100%;
  margin-top: 1.25rem;
}
.hehuoren .main .w80 .part08 .team-section .img img {
  width: 100%;
}
.hehuoren .main .w80 .part09 {
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part09 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part09 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part09 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part09 .team-section {
  margin-top: 5rem;
}
.hehuoren .main .w80 .part09 .team-section .t h3 {
  font-size: 3rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part09 .team-section .img {
  text-align: center;
  width: 100%;
  margin-top: 1.25rem;
}
.hehuoren .main .w80 .part09 .team-section .img img {
  width: 100%;
}
.hehuoren .main .w80 .part10 {
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part10 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part10 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part10 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part10 .team-section {
  margin-top: 5rem;
}
.hehuoren .main .w80 .part10 .team-section .t h3 {
  font-size: 3rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part10 .team-section .img {
  text-align: center;
  width: 100%;
  margin-top: 1.25rem;
}
.hehuoren .main .w80 .part10 .team-section .img img {
  width: 100%;
}
.hehuoren .main .w80 .part11 {
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part11 .h-header {
  background-color: #f3b139;
  color: white;
  text-align: center;
  padding: 1.13rem 3.13rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part11 .h-header strong {
  font-size: 2.25rem;
  color: #830101;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part11 .h-header span {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part11 .team-section {
  margin-top: 5rem;
}
.hehuoren .main .w80 .part11 .team-section .txt {
  margin-bottom: 3.13rem;
}
.hehuoren .main .w80 .part11 .team-section .txt p {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.hehuoren .main .w80 .part11 .team-section .txt p span {
  font-size: 1.75rem;
  font-weight: 600;
}
.hehuoren .main .w80 .part11 .team-section .img {
  text-align: center;
  width: 100%;
  margin-top: 1.25rem;
}
.hehuoren .main .w80 .part11 .team-section .img img {
  width: 100%;
}
.hehuoren .main .w80 .part12 {
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part12 .team-section {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part12 .team-section .left {
  width: 100%;
}
.hehuoren .main .w80 .part12 .team-section .left .t {
  background-color: #830101;
  box-sizing: border-box;
  padding: 1.88rem 2.75rem;
}
.hehuoren .main .w80 .part12 .team-section .left .t h4 {
  font-size: 1.63rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.38rem;
}
.hehuoren .main .w80 .part12 .team-section .left .t h2 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part12 .team-section .left .img1 {
  margin-top: 5rem;
  margin-bottom: 3.75rem;
}
.hehuoren .main .w80 .part12 .team-section .left .img1 img {
  width: 50%;
}
.hehuoren .main .w80 .part12 .team-section .left .t1 {
  margin-bottom: 6.25rem;
}
.hehuoren .main .w80 .part12 .team-section .left .t1 h3 {
  font-size: 1.88rem;
  color: #af2824;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5rem;
}
.hehuoren .main .w80 .part12 .team-section .left .t1 p {
  font-size: 0.75rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part12 .team-section .left .t2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part12 .team-section .left .t2 .t2_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  background-color: #af2824;
  border-radius: 2.5rem;
  width: 48%;
  margin-bottom: 0.63rem;
}
.hehuoren .main .w80 .part12 .team-section .left .t2 .t2_item .t2_y {
  width: 5rem;
  height: 5rem;
  background-color: #af2824;
  border-radius: 2.5rem;
  border: 0.13rem solid #fff;
}
.hehuoren .main .w80 .part12 .team-section .left .t2 .t2_item .t2_y h3 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 5rem;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part12 .team-section .left .t2 .t2_item .t2_c {
  height: 5rem;
  width: calc(100% - 5.38rem);
  padding-left: 1.25rem;
  box-sizing: border-box;
}
.hehuoren .main .w80 .part12 .team-section .left .t2 .t2_item .t2_c p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 5rem;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part12 .team-section .left .img2 {
  margin-top: 5.63rem;
}
.hehuoren .main .w80 .part12 .team-section .left .img2 img {
  width: 100%;
}
.hehuoren .main .w80 .part12 .team-section .right {
  margin-top: 6.25rem;
  width: 100%;
}
.hehuoren .main .w80 .part12 .team-section .right .r_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part12 .team-section .right .r_top .r_t_item {
  width: 26%;
  height: 7.5rem;
  border-radius: 0.63rem;
  border: 0.13rem solid #830101;
  box-sizing: border-box;
}
.hehuoren .main .w80 .part12 .team-section .right .r_top .r_t_item h2 {
  margin-top: 1.88rem;
  margin-bottom: 0.38rem;
  font-size: 1.63rem;
  color: #af2824;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part12 .team-section .right .r_top .r_t_item p {
  font-size: 1.63rem;
  color: #af2824;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part12 .team-section .right .r_center {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item {
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 50%;
  border: 0.13rem solid #830101;
  box-sizing: border-box;
  background-color: #830101;
}
.hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item p {
  margin-top: 5rem;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item h2 {
  margin-top: 0.88rem;
  margin-bottom: 0.38rem;
  font-size: 3.63rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item span {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part12 .team-section .right .r_bottom {
  margin-top: 5rem;
}
.hehuoren .main .w80 .part12 .team-section .right .r_bottom .t1 {
  margin-bottom: 1.5rem;
}
.hehuoren .main .w80 .part12 .team-section .right .r_bottom .t1 h3 {
  font-size: 1.88rem;
  color: #af2824;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5rem;
}
.hehuoren .main .w80 .part12 .team-section .right .r_bottom .t1 p {
  font-size: 0.75rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part12 .team-section .right .r_bottom .c2 p {
  font-size: 1.13rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.25rem;
}
.hehuoren .main .w80 .part13 {
  padding-bottom: 6.25rem;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hehuoren .main .w80 .part13 .team-section {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part13 .team-section .left {
  width: 100%;
}
.hehuoren .main .w80 .part13 .team-section .left .t {
  background-color: #830101;
  box-sizing: border-box;
  padding: 1.88rem 2.75rem;
}
.hehuoren .main .w80 .part13 .team-section .left .t h4 {
  font-size: 1.63rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.38rem;
}
.hehuoren .main .w80 .part13 .team-section .left .t h2 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part13 .team-section .left .img1 {
  margin-top: 5rem;
  margin-bottom: 3.75rem;
}
.hehuoren .main .w80 .part13 .team-section .left .img1 img {
  width: 50%;
}
.hehuoren .main .w80 .part13 .team-section .left .t1 {
  margin-bottom: 6.25rem;
}
.hehuoren .main .w80 .part13 .team-section .left .t1 h3 {
  font-size: 1.88rem;
  color: #af2824;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5rem;
}
.hehuoren .main .w80 .part13 .team-section .left .t1 p {
  font-size: 0.75rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part13 .team-section .left .t2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part13 .team-section .left .t2 .t2_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  background-color: #af2824;
  border-radius: 2.5rem;
  width: 48%;
  margin-bottom: 0.63rem;
}
.hehuoren .main .w80 .part13 .team-section .left .t2 .t2_item .t2_y {
  width: 5rem;
  height: 5rem;
  background-color: #af2824;
  border-radius: 2.5rem;
  border: 0.13rem solid #fff;
}
.hehuoren .main .w80 .part13 .team-section .left .t2 .t2_item .t2_y h3 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 5rem;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part13 .team-section .left .t2 .t2_item .t2_c {
  height: 5rem;
  width: calc(100% - 5.38rem);
  padding-left: 1.25rem;
  box-sizing: border-box;
}
.hehuoren .main .w80 .part13 .team-section .left .t2 .t2_item .t2_c p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 5rem;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part13 .team-section .left .img2 {
  margin-top: 5.63rem;
}
.hehuoren .main .w80 .part13 .team-section .left .img2 img {
  width: 100%;
}
.hehuoren .main .w80 .part13 .team-section .right {
  margin-top: 6.25rem;
  width: 100%;
}
.hehuoren .main .w80 .part13 .team-section .right .r_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part13 .team-section .right .r_top .r_t_item {
  width: 26%;
  height: 7.5rem;
  border-radius: 0.63rem;
  border: 0.13rem solid #830101;
  box-sizing: border-box;
}
.hehuoren .main .w80 .part13 .team-section .right .r_top .r_t_item h2 {
  margin-top: 1.88rem;
  margin-bottom: 0.38rem;
  font-size: 1.63rem;
  color: #af2824;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part13 .team-section .right .r_top .r_t_item p {
  font-size: 1.63rem;
  color: #af2824;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part13 .team-section .right .r_center {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item {
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 50%;
  border: 0.13rem solid #830101;
  box-sizing: border-box;
  background-color: #830101;
}
.hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item p {
  margin-top: 5rem;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item h2 {
  margin-top: 0.88rem;
  margin-bottom: 0.38rem;
  font-size: 3.63rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item span {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.hehuoren .main .w80 .part13 .team-section .right .r_bottom {
  margin-top: 5rem;
}
.hehuoren .main .w80 .part13 .team-section .right .r_bottom .t1 {
  margin-bottom: 1.5rem;
}
.hehuoren .main .w80 .part13 .team-section .right .r_bottom .t1 h3 {
  font-size: 1.88rem;
  color: #af2824;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5rem;
}
.hehuoren .main .w80 .part13 .team-section .right .r_bottom .t1 p {
  font-size: 0.75rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.hehuoren .main .w80 .part13 .team-section .right .r_bottom .c2 p {
  font-size: 1.13rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.25rem;
}
.jiameng .main .top {
  padding-top: 8.75rem;
  padding-bottom: 1.88rem;
  width: 80%;
  margin: 0 auto;
}
.jiameng .main .top .title {
  margin: 0 auto;
}
.jiameng .main .part01 {
  padding-bottom: 8.75rem;
  background-image: url(/images/zhiliang_bg1.jpg);
  background-size: 100%;
  background-position: bottom center;
}
.jiameng .main .part01 .w80 {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part01 .w80 .left {
  width: 44%;
}
.jiameng .main .part01 .w80 .left .title {
  width: auto;
  margin-bottom: 3.13rem;
}
.jiameng .main .part01 .w80 .left .title p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.13rem;
  color: #f3b139;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.63rem;
}
.jiameng .main .part01 .w80 .left .title p span {
  margin-left: 0.88rem;
  display: block;
  width: 2.88rem;
  height: 0.13rem;
  background-color: #f3b139;
}
.jiameng .main .part01 .w80 .left .title h3 {
  font-size: 2.63rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.jiameng .main .part01 .w80 .left .des {
  padding-left: 2.5rem;
  border-left: 0.06rem solid rgba(0, 0, 0, 0.1);
  margin-left: 1.25rem;
}
.jiameng .main .part01 .w80 .left .des h4 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.88rem;
  position: relative;
}
.jiameng .main .part01 .w80 .left .des h4::before {
  position: absolute;
  top: 0.38rem;
  left: -3.06rem;
  display: block;
  content: "";
  width: 0.63rem;
  height: 0.63rem;
  border: 0.25rem solid #830101;
  border-radius: 50%;
  background-color: #f3b139;
}
.jiameng .main .part01 .w80 .left .des p {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.88rem;
}
.jiameng .main .part01 .w80 .left .des p span {
  font-weight: 700;
}
.jiameng .main .part01 .w80 .left .zj {
  margin-top: 5.63rem;
}
.jiameng .main .part01 .w80 .left .zj ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part01 .w80 .left .zj ul li {
  width: 24%;
  height: 11.88rem;
  background: linear-gradient(180deg, rgba(244, 246, 249, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 0.5rem;
  border: 0.13rem solid #ffffff;
  box-sizing: border-box;
  box-shadow: 0rem 0rem 0.5rem 0rem #daebfd;
  padding: 0.63rem;
  position: relative;
}
.jiameng .main .part01 .w80 .left .zj ul li .img {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 5rem;
  border-radius: 2.81rem;
  border: 0.13rem solid #ffffff;
  box-sizing: border-box;
  box-shadow: 0rem 0rem 0.5rem 0rem #daebfd;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.jiameng .main .part01 .w80 .left .zj ul li .img img {
  height: 100%;
  object-fit: cover;
}
.jiameng .main .part01 .w80 .left .zj ul li .text {
  margin-top: 2.5rem;
}
.jiameng .main .part01 .w80 .left .zj ul li .text h3 {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.38rem;
}
.jiameng .main .part01 .w80 .left .zj ul li .text p {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.jiameng .main .part01 .w80 .right {
  width: 48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part01 .w80 .right .img {
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  position: relative;
  border-radius: 3.13rem 0 3.13rem 0;
}
.jiameng .main .part01 .w80 .right .img img {
  height: inherit;
  display: block;
}
.jiameng .main .part02 {
  background-color: #fff9ec;
  padding-bottom: 7.5rem;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(/images/youshi_bg.jpg);
}
.jiameng .main .part02 .title h5 {
  font-size: 1.38rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 1.25rem;
}
.jiameng .main .part02 .w80 ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part02 .w80 ul li {
  width: 20%;
  height: 31.25rem;
  position: relative;
  cursor: crosshair;
}
.jiameng .main .part02 .w80 ul li.active .top {
  opacity: 1;
  top: 0;
}
.jiameng .main .part02 .w80 ul li.active .bottom {
  height: 18.13rem;
  background-color: #ffffff;
}
.jiameng .main .part02 .w80 ul li.active .bottom .p02_icon .img {
  width: 0;
  height: 0;
}
.jiameng .main .part02 .w80 ul li.active .bottom .line {
  opacity: 1;
  margin-top: 1.25rem;
}
.jiameng .main .part02 .w80 ul li.active .bottom .p02_title {
  margin-top: 1.25rem;
}
.jiameng .main .part02 .w80 ul li.active .bottom .p02_txt p {
  opacity: 1;
}
.jiameng .main .part02 .w80 ul li:nth-of-type(1) .top {
  background-image: url(/images/part02_item_bg.jpg);
}
.jiameng .main .part02 .w80 ul li:nth-of-type(2) .top {
  background-image: url(/images/part02_item_bg2.jpg);
}
.jiameng .main .part02 .w80 ul li:nth-of-type(3) .top {
  background-image: url(/images/part02_item_bg3.jpg);
}
.jiameng .main .part02 .w80 ul li:nth-of-type(4) .top {
  background-image: url(/images/part02_item_bg4.jpg);
}
.jiameng .main .part02 .w80 ul li .top {
  width: 100%;
  height: 15.63rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 12.5rem 12.5rem 0 0;
  position: absolute;
  top: 6.88rem;
  opacity: 0;
  padding-top: 0rem;
  padding-bottom: 0;
  text-align: center;
  transition: all 0.8s linear;
}
.jiameng .main .part02 .w80 ul li .bottom {
  border-radius: 3.13rem 3.13rem 12.5rem 12.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1.63rem;
  box-sizing: border-box;
  overflow: hidden;
  height: 22.5rem;
  position: absolute;
  bottom: 0;
  transition: all 0.8s linear;
  display: flex;
  align-content: flex-end;
  flex-wrap: wrap;
}
.jiameng .main .part02 .w80 ul li .bottom .p02_icon {
  width: 100%;
}
.jiameng .main .part02 .w80 ul li .bottom .p02_icon .img {
  width: 4.69rem;
  height: 4.69rem;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.8s linear;
}
.jiameng .main .part02 .w80 ul li .bottom .p02_icon .img img {
  width: 100%;
}
.jiameng .main .part02 .w80 ul li .bottom .p02_title {
  margin-top: 1.25rem;
  transition: all 0.8s linear;
  width: 100%;
}
.jiameng .main .part02 .w80 ul li .bottom .p02_title h3 {
  font-size: 1.38rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.jiameng .main .part02 .w80 ul li .bottom .line {
  width: 100%;
  height: 0.13rem;
  border-bottom: 0.13rem dashed #f3b139;
  opacity: 0;
  margin-top: 0rem;
  transition: all 0.8s linear;
}
.jiameng .main .part02 .w80 ul li .bottom .p02_txt {
  margin-top: 1.25rem;
  height: 6.38rem;
}
.jiameng .main .part02 .w80 ul li .bottom .p02_txt p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  opacity: 0.7;
  transition: all 0.8s linear;
}
.jiameng .main .part02 .w80 ul li .bottom .jt_more {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #830101;
  line-height: 2.5rem;
  text-align: center;
  margin: 1rem auto 0rem;
}
.jiameng .main .part02 .w80 ul li .bottom .jt_more i {
  font-size: 0.75rem;
  color: #fff;
}
.jiameng .main .part03 {
  padding-bottom: 8.75rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/jmBg.jpg);
  background-color: #fff9ec;
}
.jiameng .main .part03 .w80 {
  margin-top: 2.5rem;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part03 .w80 .item {
  width: 7%;
  height: 35.25rem;
  border-radius: 1rem;
  transition: all 1s ease;
  background: linear-gradient(to bottom, #dfb25f, #fce1b2);
  position: relative;
  cursor: pointer;
}
.jiameng .main .part03 .w80 .item .i_mask {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 垂直排列 */
  justify-content: space-between;
  /* 平均分布 */
  box-sizing: border-box;
  padding: 6.25rem 0;
  position: absolute;
  left: 0;
  top: 0;
}
.jiameng .main .part03 .w80 .item .i_mask h3 {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.88rem;
  background-color: #fff;
  margin: 0 auto;
  font-size: 1.63rem;
  color: #f3b139;
  line-height: 3.75rem;
  font-weight: 700;
  text-align: center;
}
.jiameng .main .part03 .w80 .item .i_mask p {
  width: 1.88rem;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.jiameng .main .part03 .w80 .item .i_mask img {
  width: 3.13rem;
  margin: 0 auto;
}
.jiameng .main .part03 .w80 .item .i_content {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  border-radius: 1rem;
  padding: 6.25rem 3.13rem;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.jiameng .main .part03 .w80 .item .i_content .left {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 垂直排列 */
  justify-content: space-between;
  /* 平均分布 */
}
.jiameng .main .part03 .w80 .item .i_content .left .title {
  display: block;
}
.jiameng .main .part03 .w80 .item .i_content .left .title .t1 {
  background: none;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 3rem;
  width: 17.5rem;
  border-radius: 0.38rem;
}
.jiameng .main .part03 .w80 .item .i_content .left .title .t1 span {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  margin-right: 0.38rem;
  background-color: #fff;
}
.jiameng .main .part03 .w80 .item .i_content .left .title .t1 p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
.jiameng .main .part03 .w80 .item .i_content .left .title .t2 {
  margin-top: 2rem;
  position: absolute;
  left: 3.13rem;
  bottom: 6.25rem;
}
.jiameng .main .part03 .w80 .item .i_content .left .title .t2 h2 {
  font-size: 3rem;
  width: 24rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.jiameng .main .part03 .w80 .item .i_content .left .txt {
  width: 26.88rem;
  height: 8.75rem;
  padding: 0 2.5rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part03 .w80 .item .i_content .left .txt p {
  font-size: 1.13rem;
  color: #000;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
}
.jiameng .main .part03 .w80 .item .i_content .right {
  position: absolute;
  right: 3.13rem;
  top: 6.25rem;
}
.jiameng .main .part03 .w80 .item .i_content .right h3 {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.88rem;
  background-color: #f3b139;
  margin: 0 auto;
  font-size: 1.63rem;
  color: #fff;
  line-height: 3.75rem;
  font-weight: 700;
  text-align: center;
}
.jiameng .main .part03 .w80 .item:nth-of-type(1) .i_content {
  background-image: url(/images/lc_img1.jpg);
}
.jiameng .main .part03 .w80 .item:nth-of-type(2) .i_content {
  background-image: url(/images/lc_img2.jpg);
}
.jiameng .main .part03 .w80 .item:nth-of-type(3) .i_content {
  background-image: url(/images/lc_img3.jpg);
}
.jiameng .main .part03 .w80 .item:nth-of-type(4) .i_content {
  background-image: url(/images/lc_img4.jpg);
}
.jiameng .main .part03 .w80 .item:nth-of-type(5) .i_content {
  background-image: url(/images/lc_img5.jpg);
}
.jiameng .main .part03 .w80 .item:nth-of-type(6) .i_content {
  background-image: url(/images/lc_img6.jpg);
}
.jiameng .main .part03 .w80 .item:nth-of-type(7) .i_content {
  background-image: url(/images/lc_img7.jpg);
}
.jiameng .main .part03 .w80 .item:nth-of-type(8) .i_content {
  background-image: url(/images/lc_img8.jpg);
}
.jiameng .main .part03 .w80 .item.active {
  width: 48%;
}
.jiameng .main .part03 .w80 .item.active .i_mask {
  opacity: 0;
}
.jiameng .main .part03 .w80 .item.active .i_content {
  opacity: 1;
}
.jiameng .main .part04 {
  background-color: #fff;
  padding-bottom: 7.5rem;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.jiameng .main .part04 .title p {
  margin-top: 1.25rem;
  font-size: 1.38rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.jiameng .main .part04 .w80 {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part04 .w80 .right {
  width: 46%;
}
.jiameng .main .part04 .w80 .right .item {
  margin-bottom: 2rem;
}
.jiameng .main .part04 .w80 .right .item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.jiameng .main .part04 .w80 .right .item .txt h3 {
  font-size: 1.38rem;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.63rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.jiameng .main .part04 .w80 .right .item .txt h3 img {
  width: 2.13rem;
  margin-right: 0.63rem;
}
.jiameng .main .part04 .w80 .right .item .txt p {
  font-size: 1.06rem;
  color: #333;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.88rem;
}
.jiameng .main .part04 .w80 .right .item .txt p span {
  font-weight: 600;
}
.jiameng .main .part04 .w80 .left {
  width: 46%;
  border-radius: 0 3.13rem 0 0;
  overflow: hidden;
}
.jiameng .main .part04 .w80 .left .img img {
  width: 100%;
  display: block;
}
.news .main {
  min-height: 31.25rem;
}
.news .main .title {
  margin-top: 8.75rem;
}
.news .main .title h3 {
  justify-content: center;
}
.news .main .title h4 {
  text-align: center;
}
.news .main .title::after {
  margin: 0.75rem auto 0;
}
.news .main .btn {
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
}
.news .main .btn ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .btn ul li {
  width: 14.2%;
  margin: 0 0.13rem;
  background-color: #fff9ec;
}
.news .main .btn ul li a {
  width: 100%;
  display: block;
  font-size: 1rem;
  color: #333;
  line-height: 3.25rem;
  font-weight: 100;
  text-align: center;
}
.news .main .part01 {
  margin-top: 2.5rem;
}
.news .main .part01 ul li {
  border-bottom: 0.06rem solid #fffaf1;
  padding: 1.88rem 0;
  transition: all 1s ease;
}
.news .main .part01 ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part01 ul li a .date {
  width: 10%;
}
.news .main .part01 ul li a .date h2 {
  font-size: 4.75rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}
.news .main .part01 ul li a .date p {
  font-size: 1.5rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news .main .part01 ul li a .text {
  width: 46%;
}
.news .main .part01 ul li a .text h3 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.25rem;
}
.news .main .part01 ul li a .text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 3.75rem;
}
.news .main .part01 ul li a .text span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #f3b139;
}
.news .main .part01 ul li a .text span i {
  margin-right: 0.5rem;
}
.news .main .part01 ul li a .img {
  width: 32%;
  height: 0;
  border-radius: 0.63rem;
  overflow: hidden;
  padding-bottom: 18.75rem;
}
.news .main .part01 ul li a .img img {
  display: block;
  width: 100%;
  transition: all 2s ease;
}
.news .main .part01 ul li:hover {
  background-color: #fff9ec;
}
.news .main .part01 ul li:hover a .img img {
  transform: scale(1.2);
}
@media screen and (max-width: 1440px) {
  .news .main .part01 ul li a .img {
    padding-bottom: 14.63rem;
    width: 32%;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1.13rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
  }
  .news .main .part01 ul li a .text p {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }
  .news .main .part01 ul li a .text span {
    font-size: 0.75rem;
    width: 11.25rem;
    height: 2.5rem;
  }
  .news .main .part01 ul li a .text span img {
    width: 3.13rem;
  }
  .news .main .part01 ul li a .text span::after {
    background-size: contain;
  }
  .news .main .part01 ul li {
    padding: 1.5rem 0;
  }
  .news .main .part01 ul li a .date {
    width: 7%;
  }
  .news .main .part01 ul li a .date h2 {
    font-size: 3.25rem;
  }
  .news .main .part01 ul li a .date p {
    font-size: 0.94rem;
  }
  .news .main .part01 ul li a .text {
    width: 50%;
  }
  .news .main .btn ul li a {
    line-height: 2.88rem;
  }
}
@media screen and (max-width: 992px) {
  .news .main .title {
    margin-top: 6.25rem;
  }
  .news .main .btn {
    display: none;
  }
  .news .main .part01 ul li a .text p {
    display: none;
  }
  .news .main .part01 ul li a .date {
    display: none;
  }
  .news .main .part01 ul li a .img {
    width: 44%;
    padding-bottom: 7.5rem;
  }
  .news .main .part01 ul li a .text span {
    height: 1.13rem;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1rem;
    font-weight: 400;
  }
}
.news_details .main .n_center .ct .detailed > .n_title {
  display: block;
  visibility: visible;
}
.news_details .main .n_center .ct .detailed > .n_title h3 {
  font-size: 2.25rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 1.25rem;
  border-bottom: 0.06rem solid #d6d6d6;
  margin-bottom: 2.5rem;
}
.news_details .main .n_center .ct .detailed .sub2 .share p {
  font-size: 0.88rem;
  margin: 0 0.63rem;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content {
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content img {
  display: block;
  width: initial;
  margin: 0 auto;
}
.news_details .main .n_center .ct .detailed .sub2 .np {
  margin-top: 1.88rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.69rem;
}
.news_details .main .n_center .ct .detailed .sub2 .np div {
  width: 49.4%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
}
.news_details .main .n_center .ct .detailed .sub2 .np div:nth-of-type(1) i {
  margin-right: 0.63rem;
}
.news_details .main .n_center .ct .detailed .sub2 .np div:nth-of-type(2) i {
  margin-left: 0.63rem;
}
.news_details .main .n_center .ct .detailed .sub2 .np div i {
  font-size: 1.5rem;
}
.news_details .main .n_center .ct .detailed .sub2 .np div a {
  padding: 1.25rem 0;
  font-size: 1rem;
  color: #000;
  line-height: 1.3;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news_details .main .ct .detailed > .n_title h3 {
    font-size: 1.5rem;
  }
  .news_details .main .ct .detailed .sub2 .news_content p {
    font-size: 0.88rem;
  }
  .news_details .main .ct .detailed .sub2 .np div a {
    font-size: 0.88rem;
    line-height: 3rem;
  }
  .news_details .main .ct .detailed .sub2 .np div {
    width: 49%;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.5rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    font-size: 0.88rem;
    line-height: 1.2;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 0.88rem;
  }
}
@media screen and (max-width: 992px) {
  .news_details .mt-100 {
    margin-top: 4.38rem;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.13rem;
    line-height: 1.2;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content img {
    width: 100%;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np {
    flex-wrap: wrap;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div {
    width: 100%;
    height: 3rem;
    margin-bottom: 0.63rem;
    justify-content: flex-start;
    padding-left: 1.25rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div i {
    display: none;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    line-height: 1;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 0.94rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .share p:nth-last-of-type(1) {
    display: none;
  }
}
.contact .main {
  overflow: hidden;
}
.contact .main .contact_sub1 .top {
  margin-bottom: 2.5rem;
}
.contact .main .contact_sub1 .w80 {
  padding-bottom: 0.5rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_sub1 .w80 .left {
  width: 34%;
  padding-left: 2.5rem;
  margin-left: 0.56rem;
  border-left: 0.06rem solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.contact .main .contact_sub1 .w80 .left .c_item {
  margin-bottom: 3.13rem;
}
.contact .main .contact_sub1 .w80 .left .c_item:nth-of-type(3) {
  margin-bottom: 0;
}
.contact .main .contact_sub1 .w80 .left .c_item p {
  font-size: 1.13rem;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.75rem;
  position: relative;
}
.contact .main .contact_sub1 .w80 .left .c_item p::after {
  position: absolute;
  top: 0.38rem;
  left: -2.88rem;
  display: block;
  content: "";
  width: 0.63rem;
  height: 0.63rem;
  border-radius: 50%;
  background-color: #f3b139;
}
.contact .main .contact_sub1 .w80 .left .c_item h3 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main .contact_sub1 .w80 .left .c_item .img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_sub1 .w80 .left .c_item .img img {
  width: 2.5rem;
}
.contact .main .contact_sub1 .w80 .left .c_item .img img:nth-of-type(2) {
  width: 7rem;
  margin-left: 1.25rem;
}
.contact .main .contact_sub1 .w80 .right {
  width: 64%;
}
.contact .main .contact_sub1 .w80 .right img {
  width: 100%;
}
.contact .main .contact_sub2 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.contact .main .contact_sub2 .w80 {
  margin-top: 5.63rem;
  margin-bottom: 5.63rem;
  padding: 3.75rem;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 0.63rem;
  backdrop-filter: blur(0.5rem);
  /* 关键属性：模糊强度 */
  -webkit-backdrop-filter: blur(0.5rem);
  /* Safari 兼容 */
  box-sizing: border-box;
}
.contact .main .contact_sub2 .w80 .title {
  margin-bottom: 3rem;
}
.contact .main .contact_sub2 .w80 .title strong {
  color: #dd9c36 !important;
  opacity: 0.2;
}
.contact .main .contact_sub2 .w80 .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_sub2 .w80 .txt .t0 {
  width: 48%;
}
.contact .main .contact_sub2 .w80 .txt .t0 img {
  width: 100%;
}
.contact .main .contact_sub2 .w80 .txt .t1 {
  width: 48%;
}
.contact .main .contact_sub2 .w80 .txt .t1 p {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.6rem;
}
.contact .main .contact_sub2 .w80 .txt .t1 p span {
  font-weight: 600;
}
.contact .main .contact_sub2 .w80 .txt .t1 p.x {
  text-decoration: underline double #f3b139 1px;
  text-underline-offset: 8px;
  font-weight: 600;
}
.contact .main .contact_bottom {
  margin-top: 3.75rem;
  margin-bottom: 7.5rem;
  overflow: hidden;
}
.contact .main .contact_bottom .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .left {
  width: 30%;
  height: 30rem;
  padding: 3.6rem;
  box-sizing: border-box;
  background-color: #f3b139;
}
.contact .main .contact_bottom .w80 .left .tl h4 {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
}
.contact .main .contact_bottom .w80 .left .tl h2 {
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1rem;
}
.contact .main .contact_bottom .w80 .left .tc {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .left .tc .tc_box .item {
  margin-bottom: 3.2rem;
  position: relative;
}
.contact .main .contact_bottom .w80 .left .tc .tc_box .item:nth-of-type(1) p::before {
  position: absolute;
  left: 4px;
  top: 9px;
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #fff;
}
.contact .main .contact_bottom .w80 .left .tc .tc_box .item p {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  letter-spacing: 4px;
  padding-left: 2.4rem;
}
.contact .main .contact_bottom .w80 .left .tc .tc_box .item p::after {
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #fff;
}
.contact .main .contact_bottom .w80 .left .tc .tc_box .item::after {
  position: absolute;
  left: 8px;
  top: 27px;
  display: block;
  content: "";
  width: 1px;
  height: 3.2rem;
  background-color: #fff;
}
.contact .main .contact_bottom .w80 .left .tc .tc_box .item:nth-of-type(3)::after {
  display: none;
}
.contact .main .contact_bottom .w80 .right {
  width: 64%;
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.contact .main .contact_bottom .w80 .right .sub1 p {
  font-size: 1.25rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.88rem;
}
.contact .main .contact_bottom .w80 .right .sub1 h3 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item {
  margin-bottom: 0.88rem;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 input {
  width: 100%;
  box-sizing: border-box;
  border: 0.06rem solid #e7e7e7;
  font-size: 1.13rem;
  color: #333;
  line-height: 3.13rem;
  font-weight: 400;
  text-align: left;
  padding-left: 1.5rem;
  background-color: #f3f3f3;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 input {
  width: 100%;
  box-sizing: border-box;
  border: 0.06rem solid #e7e7e7;
  font-size: 1.13rem;
  color: #333;
  line-height: 3.13rem;
  font-weight: 400;
  text-align: left;
  padding-left: 1.5rem;
  background-color: #f3f3f3;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 input {
  width: 100%;
  box-sizing: border-box;
  border: 0.06rem solid #e7e7e7;
  font-size: 1.13rem;
  color: #333;
  line-height: 3.13rem;
  font-weight: 400;
  text-align: left;
  padding-left: 1.5rem;
  background-color: #f3f3f3;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 input {
  width: 100%;
  box-sizing: border-box;
  border: 0.06rem solid #e7e7e7;
  font-size: 1.13rem;
  color: #333;
  line-height: 3.13rem;
  font-weight: 400;
  text-align: left;
  padding-left: 1.5rem;
  background-color: #f3f3f3;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(3) textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0.06rem solid #e7e7e7;
  font-size: 1.13rem;
  color: #333;
  line-height: 1.2rem;
  font-weight: 400;
  text-align: left;
  padding: 1.5rem;
  height: 10rem;
  background-color: #f3f3f3;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(4) {
  width: 26%;
  position: absolute;
  right: 0;
  bottom: 1.75rem;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(4) button {
  font-size: 1.13rem;
  width: 100%;
  height: 3.13rem;
  border: none;
  background-color: #f3b139;
  color: #fff;
}
.contact .main .contact_bottom .w80 .right .sub3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .right .sub3 .s_ewm img {
  width: 8rem;
  display: block;
  margin-bottom: 0.5rem;
}
.contact .main .contact_bottom .w80 .right .sub3 .s_ewm p {
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.contact .main .contact_bottom .w80 .right .sub3 .s_tel {
  margin-left: 3.75rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub {
  margin-right: 8px;
}
.contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub i {
  text-align: center;
  line-height: 3.75rem;
  font-size: 1.88rem;
  display: block;
  color: #fff;
  width: 3.84rem;
  height: 3.84rem;
  border-radius: 0.5rem;
  margin-bottom: 8px;
  background-color: #f3b139;
}
.contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub p {
  font-size: 1.3rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0.63rem;
  margin-left: 6px;
}
.contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub h4 {
  font-size: 2.2rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .contact .main .contact_sub1 {
    margin-top: 7.5rem;
  }
  .contact .main .contact_sub1 .w80 ul li {
    height: 15.63rem;
  }
  .contact .main .contact_sub1 .w80 ul li .text h3 {
    font-size: 1rem;
  }
  .contact .main .contact_sub1 .w80 ul li .text p {
    font-size: 0.88rem;
  }
  .contact .main .contact_sub1 .w80 ul li:nth-child(5) .text h3 {
    font-size: 1rem;
  }
  .contact .main .contact_sub1 .w80 ul li:nth-child(5) .img img {
    width: 80%;
  }
  .contact .main .contact_bottom .w80 .right .sub1 h3 {
    font-size: 1.5rem;
  }
  .contact .main .contact_bottom .w80 .right .sub1 p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 {
    margin-top: 2.63rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 input {
    font-size: 0.81rem;
    line-height: 2.88rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 input {
    font-size: 0.81rem;
    line-height: 2.88rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 input {
    font-size: 0.81rem;
    line-height: 2.88rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 input {
    font-size: 0.81rem;
    line-height: 2.88rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item button {
    height: 2.88rem;
  }
  .contact .main .contact_bottom .w80 .left .box {
    width: 12.5rem;
    height: 12.5rem;
  }
  .contact .main .contact_bottom .w80 .left .box .box1 {
    width: 12.5rem;
    height: 12.5rem;
  }
  .contact .main .contact_bottom .w80 .left .box .box2 {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 992px) {
  .contact .main .contact_sub1 .w80 ul li {
    width: 100%;
    margin-bottom: 1.25rem;
    height: 12.5rem;
  }
  .contact .main .contact_sub1 .w80 ul li:nth-child(5) .img img {
    width: 50%;
  }
  .contact .main .contact_bottom .w80 .left {
    display: none;
  }
  .contact .main .contact_bottom .w80 .right {
    width: 100%;
  }
  .contact .main .contact_bottom .w80 .right .sub1 h3 {
    font-size: 1.13rem;
  }
  .contact .main .contact_bottom .w80 .right .sub1 p {
    font-size: 0.94rem;
  }
}
.product .main {
  margin-top: 7.5rem;
}
.product .main .part01 {
  margin-bottom: 2.5rem;
}
.product .main .part01 .w80 .title {
  margin-bottom: 3.75rem;
}
.product .main .part01 .w80 .desc {
  margin-bottom: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product .main .part01 .w80 .desc .item {
  width: 48%;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part01 .w80 .desc .item .img {
  width: 30%;
}
.product .main .part01 .w80 .desc .item .img img {
  width: 100%;
  display: block;
}
.product .main .part01 .w80 .desc .item .txt {
  width: 64%;
  padding: 0 1.88rem 0 0;
  box-sizing: border-box;
}
.product .main .part01 .w80 .desc .item .txt img {
  width: 5rem;
  display: block;
}
.product .main .part01 .w80 .desc .item .txt h3 {
  font-size: 1.38rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
}
.product .main .part01 .w80 .desc .item .txt p {
  font-size: 1.25rem;
  color: #000;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}
.product .main .part02 {
  overflow: hidden;
  background: url(/images/msbg.jpg) center center no-repeat;
  -o-background-size: cover;
  background-size: cover;
}
.product .main .part02 .w80 {
  margin-top: 6.25rem;
}
.product .main .part02 .w80 .title {
  margin-bottom: 3.75rem;
}
.product .main .part02 .w80 .center {
  padding: 0.63rem;
  box-sizing: border-box;
}
.product .main .part02 .w80 .center ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part02 .w80 .center ul li {
  width: 23%;
  margin-right: 2.4%;
  margin-bottom: 3.75rem;
  border: 0.06rem solid #fff9ec;
  background-image: url(/images/proBg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  border-radius: 1.25rem;
  overflow: hidden;
}
.product .main .part02 .w80 .center ul li:nth-of-type(4n) {
  margin-right: 0;
}
.product .main .part02 .w80 .center ul li:nth-last-of-type(-n + 4) {
  margin-bottom: 0;
}
.product .main .part02 .w80 .center ul li:hover .img img {
  transform: scale(1.1);
}
.product .main .part02 .w80 .center ul li:hover .txt .d i {
  transform: translate(-50%, -50%) rotate(0deg);
}
.product .main .part02 .w80 .center ul li .img {
  overflow: hidden;
  height: 0;
  padding-bottom: 17.5rem;
}
.product .main .part02 .w80 .center ul li .img img {
  width: 100%;
  transition: all 1s ease;
}
.product .main .part02 .w80 .center ul li .txt {
  box-sizing: border-box;
  padding: 1rem 1rem 1rem;
  background-color: #fff;
}
.product .main .part02 .w80 .center ul li .txt h3 {
  font-size: 1.25rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
.product .main .part02 .w80 .center ul li .txt p {
  height: 2.88rem;
  font-size: 1.13rem;
  color: #333;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .index .part02 .w80 .left .p02_title h2 {
    font-size: 3rem;
  }
  .index .part02 .w80 .left .btn .b_item .i_icon img {
    width: 3.125rem;
  }
  .index .part02 .w80 .right {
    width: 60%;
    padding: 3rem;
  }
  .index .part04 .w80 .p04_title strong {
    font-size: 4.6rem;
  }
  .index .part04 .w80 .p04_title h2 {
    font-size: 3rem;
  }
  .index .part04 .w80 .p04_desc .item .i_icon {
    width: 6rem;
    height: 6rem;
  }
  .index .part05 .w80 .left .p05_title h2 {
    font-size: 3rem;
  }
  .index .part05 .w80 {
    height: 29rem;
  }
  .index .part05 .w80 .left .p05_content p:nth-of-type(3) {
    display: none;
  }
  .index .part06 .w80 .top .p06_title h3 {
    font-size: 3rem;
  }
  .index .part05 .w80 .right .txt {
    left: 2.8rem;
  }
  .index .part05 .w80 .right .txt h2 {
    font-size: 3.8rem;
  }
  .index .part05 .w80 .right .txt h3 {
    font-size: 2.4rem;
  }
  .index .part06 .w80 .bottom ul li a .img {
    padding-bottom: 12rem;
  }
  .index .part06 .w80 .bottom ul li a .content .txt h3 {
    font-size: 1.125rem;
    margin-bottom: 0.8rem;
  }
  .index .part06 .w80 .bottom {
    margin-top: 2.8rem;
  }
  .index .part06 .w80 .top .p06_title h2 {
    font-size: 3.8rem;
  }
  .index .part06 .w80 .bottom ul li a .content .txt {
    margin-bottom: 1rem;
  }
  .index .part06 .w80 .bottom ul li a .content .n_more p {
    font-size: 1.125rem;
  }
  .index .part06 .w80 .bottom ul li a .content .n_more i {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 0.8rem;
  }
  .index .part02 .w80 .right .item .r_title h4 {
    font-size: 1.8rem;
  }
  .index .part02 .w80 .right .item .r_content p {
    line-height: 1.6;
  }
  .index .part04 .w80 .p04_desc .item {
    padding: 1.25rem;
  }
  .index .part07 {
    height: 51vh;
  }
  footer .w80 .left .l_bottom .l_b_item p {
    font-size: 1rem;
  }
  .page .main {
    padding-top: 6rem;
  }
  .title > h2 {
    font-size: 3rem;
  }
  .title > strong {
    font-size: 4.6rem;
  }
  .page .main .p01 {
    margin-top: 4rem;
  }
  .page .main .p01 .w80 .jianjie .right .title h3 {
    font-size: 2.2rem;
  }
  .page .main .p01 .w80 .jianjie .right .about_content p {
    font-size: 1.2rem;
  }
  .page .main .p02 .w80 .content .i .i_box h3 {
    font-size: 1.6rem;
  }
  .page .main .p02 .w80 .content .i .i_box p {
    font-size: 1.2rem;
  }
  .meishibiange .main .content .c_box .right .item p {
    font-size: 1.2rem;
  }
  .hehuoren .main .top {
    margin: 6.75rem auto 0;
  }
  .hehuoren .main .w80 .part01 .right .title {
    margin-bottom: 1.13rem;
  }
  .hehuoren .main .w80 .part01 .right .title h3 {
    font-size: 2rem;
  }
  .hehuoren .main .w80 .part01 .left {
    width: 36%;
  }
  .hehuoren .main .w80 .part01 .right {
    width: 57%;
  }
  .jiameng .main .part01 .w80 .left .title h3 {
    font-size: 2rem;
  }
  .jiameng .main .part01 .w80 .left .des p {
    font-size: 1.125rem;
  }
  .jiameng .main .part01 .w80 .left .des:nth-last-of-type(1) {
    padding-top: 2rem !important;
  }
  .jiameng .main .part02 .w80 ul li {
    width: 22%;
  }
  .jiameng .main .part04 .w80 .right .item {
    margin-bottom: 1rem;
  }
  .jiameng .main .part04 .w80 .left {
    width: 48%;
  }
  .jiameng .main .part03 .w80 {
    margin-top: 1.25rem;
  }
  .product .main .part02 .w80 .center ul li .img {
    padding-bottom: 15.8rem;
  }
  .product .main .part02 .w80 .title {
    margin-bottom: 3rem;
  }
  .product .main .part02 .w80 .center ul li .txt h3 {
    font-size: 1.125rem;
  }
  .product .main .part02 .w80 .title {
    margin-bottom: 2rem;
  }
  .product .main .part01 .w80 .desc .item .txt p {
    font-size: 1.125rem;
  }
  .product .main .part01 .w80 .desc .item .txt h3 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1.25rem;
  }
  .news .main .part01 ul li a .text p {
    font-size: 1.125rem;
  }
  .news .main .part01 ul li a .date h2 {
    font-size: 4.4rem;
  }
  .news .main .part01 ul li a .date p {
    font-size: 1.5rem;
  }
  .news .main .part01 ul li a .date {
    width: 10%;
  }
  .news .main .part01 ul li a .img {
    width: 28%;
  }
  .news .main .part01 ul li a .text span {
    font-size: 1.125rem;
  }
  .news .main .part01 ul li a .text span img {
    width: 5rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 1.125rem;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .contact .main .contact_sub2 .w80 .txt .t1 p {
    font-size: 1.125rem;
  }
  .contact .main .contact_sub1 {
    margin-top: 3rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 {
    margin-top: 0;
  }
  .contact .main .contact_bottom .w80 .left .tl h2 {
    font-size: 2.6rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 input {
    font-size: 1rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 input {
    font-size: 1rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 input {
    font-size: 1rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 input {
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
  .index .part02 {
    overflow: hidden;
  }
  .index .part02 .w80 .left {
    width: 100%;
  }
  .index .part02 .w80 .right {
    width: 100%;
    height: auto;
    padding: 2rem;
    margin-bottom: 6rem;
  }
  .index .part02 .w80 .left .p02_title h2 {
    font-size: 1.3rem;
  }
  .index .part02 .w80 .left .btn {
    margin-top: 2rem;
    padding: 1rem 0 1rem 0.63rem;
  }
  .index .part02 .w80 .left .btn .b_item .b_txt h3 {
    font-size: 1.125rem;
  }
  .index .part02 .w80 .left .btn .b_item .i_icon img {
    width: 2rem;
  }
  .index .part02 .w80 .left .btn .b_item {
    margin-bottom: 1.5rem;
  }
  .index .part02 .w80 .left {
    height: auto;
    margin-top: 3.75rem;
    margin-bottom: 1.875rem;
  }
  .index .part02 .w80 .right .item .r_content p {
    font-size: 1rem;
  }
  .index .part02 .w80 .right .item .r_title h4 {
    font-size: 1.125rem;
  }
  .index .part05 .w80 {
    overflow-y: initial !important;
    height: auto;
  }
  .index .part02 .w80 {
    overflow: initial !important;
    height: auto;
  }
  .index .part02 .bg .item {
    background-size: cover;
    background-position: center;
  }
  .index .part04 .w80 .p04_title h2 {
    font-size: 1.3rem;
    margin-top: -0.5rem;
    letter-spacing: 2px;
  }
  .index .part04 .w80 .p04_title strong {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .index .part04 .w80 .p04_desc .item {
    width: 100%;
  }
  .index .part04 .w80 .p04_desc .item .i_txt {
    height: 4.8rem;
  }
  .index .part04 .w80 .p04_desc .item .i_txt p {
    font-size: 1rem;
  }
  .index .part04 .w80 .p04_content ul li:nth-of-type(2n) {
    display: none;
  }
  .index .part04 .w80.active .p04_content {
    padding-bottom: 6rem;
  }
  .index .part04 .w80 .p04_content ul li {
    width: 44%;
    margin-bottom: 1.5rem;
  }
  .index .part04 .w80 .p04_content ul li .p04_item_bottom h3 {
    font-size: 1.125rem;
  }
  .index .part05 .w80 .left {
    width: 100%;
  }
  .index .part05 .w80 .right {
    width: 100%;
    margin-top: 4rem;
  }
  .index .part05 .w80 .left .p05_title h2 {
    font-size: 1.3rem;
  }
  .index .part05 .w80 .left .p05_title::after {
    width: 6.8rem;
  }
  .index .part05 .w80 .left .p05_more > div a p {
    font-size: 1rem;
  }
  .index .part05 .w80 .left .p05_more > div {
    width: 12.5rem;
  }
  .index .part05 .w80 .left .p05_content p {
    font-size: 1rem;
  }
  .index .part05 .w80 .right .txt h2 {
    font-size: 2.4rem;
  }
  .index .part05 .w80 .right .txt h3 {
    font-size: 1.6rem;
  }
  .index .part06 .w80 .top .p06_title h3 {
    font-size: 1.3rem;
  }
  .index .part06 .w80 .top .p06_title h2 {
    font-size: 2rem;
  }
  .index .part06 .w80 .top .p06_more {
    display: none;
  }
  .index .part06 .w80 .bottom ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .index .part07 {
    height: auto !important;
  }
  footer .w80 .left .l_bottom .l_b_item p {
    margin-bottom: 1rem;
  }
  footer .w80 .left .l_bottom .l_b_item p:nth-last-of-type(1) {
    margin-left: 0;
  }
  footer .w80 {
    overflow-y: initial !important;
  }
  footer .w80 .left {
    width: 100%;
  }
  footer .w80 .left .l_top nav {
    display: none;
  }
  footer .w80 .right {
    display: none;
  }
  .page .main .p01 .w80 .jianjie .left {
    width: 100%;
  }
  .page .main .p01 .w80 .jianjie .right {
    width: 100%;
    margin-top: 4rem;
  }
  .title > strong {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .title > h2 {
    font-size: 1.3rem;
    margin-top: -0.4rem;
  }
  .page .main .p01 {
    margin-top: 2rem;
  }
  .page .main .p01 .w80 .jianjie .right .title h3 {
    font-size: 1.3rem;
  }
  .page .main .p01 .w80 .jianjie .right .title p {
    font-size: 1.125rem;
  }
  .page .main .p01 .w80 .jianjie .right .about_content p {
    font-size: 1rem;
  }
  .page .main .p02 .w80 .content .i {
    width: 100%;
    margin-bottom: 2rem;
  }
  .page .main .p02 .w80 .content .i .i_box p {
    font-size: 1rem;
  }
  .page .main .p02 .w80 .content .i .i_box h3 {
    font-size: 1.3rem;
  }
  .meishibiange .main .content .c_box .right {
    width: 90%;
    right: 5%;
  }
  .meishibiange .main .content .c_box .right .item p {
    font-size: 1rem;
  }
  .meishibiange .main .content .c_box .earth-box {
    left: 0%;
    width: 100%;
    opacity: 0.2;
  }
  .meishibiange .main .top {
    margin: 4.75rem auto 0;
  }
  .meishibiange .main .content .c_box .left {
    width: 70%;
    left: 5%;
    top: 24%;
    padding: 0.25rem 0rem;
  }
  .meishibiange .main .content .c_box .left .btns a {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  .meishibiange .main .content .c_box .left .btns a img {
    width: 2rem;
  }
  .hehuoren .main .w80 .part01 .left {
    width: 100%;
  }
  .hehuoren .main .w80 .part01 .right {
    width: 100%;
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part01 .right .title h3 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part01 .right p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part03 .h-header strong {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
  }
  .hehuoren .main .w80 .part03 .h-header span {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part03 .image-container > div {
    width: 100%;
  }
  .hehuoren .main .w80 .part03 {
    margin-top: 2rem;
  }
  .hehuoren .main .w80 .part03 .image-container {
    margin-top: 2.5rem;
  }
  .hehuoren .main .w80 .part03 .image-container > div {
    margin-bottom: 1rem;
  }
  .hehuoren .main .w80 .part03 .description p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part04 {
    margin-top: 4rem;
  }
  .hehuoren .main .w80 .part04 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part04 .h-header h2 {
    font-size: 1.125rem;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part04 .description h2 {
    font-size: 1.5rem;
  }
  .hehuoren .main .w80 .part05 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part05 .h-header h2 {
    font-size: 1.125rem;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part05 .team-section .left {
    width: 100%;
  }
  .hehuoren .main .w80 .part05 .team-section .center {
    width: 100%;
  }
  .hehuoren .main .w80 .part05 .team-section .right {
    width: 100%;
  }
  .hehuoren .main .w80 .part05 .team-section .right {
    display: none;
  }
  .hehuoren .main .w80 .part05 .team-section .left .team-member .num {
    font-size: 1.8rem;
  }
  .hehuoren .main .w80 .part05 .team-section .left .team-member .txt .box p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part05 .team-section .left .team-member .txt .box h2 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part05 .team-section .left .team-member .txt {
    height: 6rem;
  }
  .hehuoren .main .w80 .part05 .team-section .center .team-member .txt {
    height: 6rem;
  }
  .hehuoren .main .w80 .part05 .team-section .center .team-member .txt .box h2 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part05 .team-section .center .team-member .txt .box p {
    font-size: 1rem;
    line-height: 1.3;
  }
  .hehuoren .main .w80 .part05 .team-section .center .team-member .num {
    font-size: 1.8rem;
  }
  .hehuoren .main .w80 .part05 .team-section .left .team-member .txt .box p {
    line-height: 1.3;
  }
  .hehuoren .main .w80 .part05 .team-section .left .team-member .txt .box h2 span {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part01 {
    margin-top: 4rem;
  }
  .hehuoren .main .w80 .part06 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part06 .h-header h2 {
    font-size: 1.125rem;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part06 .team-section h3 {
    font-size: 1rem;
    width: 90%;
  }
  .hehuoren .main .w80 .part06 .team-section .img img {
    width: 100%;
  }
  .hehuoren .main .w80 .part07 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part07 .h-header h2 {
    font-size: 1.125rem;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part07 .team-section .left {
    width: 100%;
  }
  .hehuoren .main .w80 .part07 .team-section .img {
    display: none;
  }
  .hehuoren .main .w80 .part07 .team-section .right {
    width: 100%;
  }
  .hehuoren .main .w80 .part07 .team-section {
    margin-top: 2rem;
  }
  .hehuoren .main .w80 .part07 .team-section .left .item h3 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part07 .team-section .left .item p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part07 .team-section .right .item p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part07 .team-section .right .item h3 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part07 .team-section .right .item {
    margin-bottom: 1.25rem;
  }
  .hehuoren .main .w80 .part07 .team-section .left .item {
    margin-bottom: 1.25rem;
  }
  .hehuoren .main .w80 .part08 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part08 .h-header h2 {
    font-size: 1.125rem;
    text-align: left;
    line-height: 1.1;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part07 {
    padding-bottom: 4rem;
  }
  .hehuoren .main .w80 .part08 .team-section .t h3 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part09 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part09 .h-header h2 {
    font-size: 1.125rem;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part08 .team-section {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part09 .team-section {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part10 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part10 .h-header h2 {
    font-size: 1.125rem;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part10 .h-header {
    padding: 1.13rem;
  }
  .hehuoren .main .w80 .part10 .team-section {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part10 {
    padding-bottom: 4rem;
  }
  .hehuoren .main .w80 .part11 .h-header strong {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part11 .h-header h2 {
    font-size: 1.125rem;
    margin-top: 0.4rem;
  }
  .hehuoren .main .w80 .part11 .team-section .txt p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part11 .team-section .txt p span {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part11 .team-section {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part11 .team-section .txt {
    margin-bottom: 2rem;
  }
  .hehuoren .main .w80 .part12 .team-section .left .t h2 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part12 .team-section .left .t h4 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part12 .team-section .left .img1 img {
    width: 100%;
  }
  .hehuoren .main .w80 .part12 .team-section .left .img1 {
    margin: 2rem 0rem;
  }
  .hehuoren .main .w80 .part12 .team-section .left .t1 h3 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part12 .team-section .left .t2 .t2_item {
    width: 100%;
  }
  .hehuoren .main .w80 .part12 .team-section .left .t2 .t2_item .t2_c p {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_top .r_t_item {
    width: 100%;
    margin-bottom: 1rem;
    height: 6.4rem;
  }
  .hehuoren .main .w80 .part12 .team-section .left .img2 {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_top .r_t_item h2 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_top .r_t_item p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item {
    width: 7rem;
    height: 7rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item p {
    margin-top: 1.3rem;
    font-size: 0.8rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item h2 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_center .r_c_item span {
    font-size: 0.8rem;
    margin-top: 0.7rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_center {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_bottom .t1 h3 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part12 .team-section .right .r_bottom .c2 p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part12 {
    padding-bottom: 3rem;
  }
  .hehuoren .main .w80 .part13 .team-section .left .t h2 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part13 .team-section .left .t h4 {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part13 .team-section .left .t {
    padding: 1.88rem 2rem;
  }
  .hehuoren .main .w80 .part13 .team-section .left .img1 img {
    width: 100%;
  }
  .hehuoren .main .w80 .part13 .team-section .left .img1 {
    margin: 2rem 0;
  }
  .hehuoren .main .w80 .part13 .team-section .left .t1 h3 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part13 .team-section .left .t2 .t2_item {
    width: 100%;
  }
  .hehuoren .main .w80 .part13 .team-section .left .t2 .t2_item .t2_c p {
    font-size: 1.125rem;
  }
  .hehuoren .main .w80 .part13 .team-section .left .t1 {
    margin-bottom: 3rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_top .r_t_item {
    width: 100%;
    margin-bottom: 1rem;
    height: 6.6rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part13 .team-section .left .img2 {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_top .r_t_item h2 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_top .r_t_item p {
    font-size: 1rem;
    margin-top: 0.6rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item {
    width: 7rem;
    height: 7rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item p {
    margin-top: 1.2rem;
    font-size: 0.8rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item h2 {
    font-size: 1.6rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_center .r_c_item span {
    font-size: 0.8rem;
    margin-top: 0.6rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_center {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_bottom .t1 h3 {
    font-size: 1.25rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_bottom {
    margin-top: 3rem;
  }
  .hehuoren .main .w80 .part13 .team-section .right .r_bottom .c2 p {
    font-size: 1rem;
  }
  .hehuoren .main .w80 .part13 {
    padding-bottom: 3rem;
  }
  .jiameng .main .part01 {
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 6rem;
  }
  .jiameng .main .part01 .w80 .left {
    width: 100%;
  }
  .jiameng .main .part01 .w80 .right {
    width: 100%;
    margin-top: 2rem;
  }
  .jiameng .main .part01 .w80 .right .img {
    height: auto;
  }
  .jiameng .main .part01 .w80 .right .img img {
    width: 100%;
    height: auto;
  }
  .jiameng .main .part01 .w80 {
    margin-top: 1rem;
  }
  .jiameng .main .part01 .w80 .left .title h3 {
    font-size: 1.125rem;
  }
  .jiameng .main .part01 .w80 .left .des h4 {
    font-size: 1.125rem;
  }
  .jiameng .main .part01 .w80 .left .des p {
    font-size: 1rem;
  }
  .jiameng .main .part02 .title h5 {
    font-size: 1rem;
    line-height: 1.3;
  }
  .jiameng .main .part02 .w80 ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .jiameng .main .part04 .title p {
    font-size: 1rem;
    line-height: 1.3;
  }
  .jiameng .main .part04 .w80 .left {
    width: 100%;
  }
  .jiameng .main .part04 .w80 .right {
    width: 100%;
    margin-top: 2rem;
  }
  .jiameng .main .part04 .w80 .right .item .txt h3 {
    font-size: 1.125rem;
  }
  .jiameng .main .part04 .w80 .right .item .txt p {
    font-size: 1rem;
  }
  .jiameng .main .part03 .w80 .item {
    width: 100%;
    height: 15.25rem;
    margin-bottom: 1rem;
  }
  .jiameng .main .part03 .w80 .item.active {
    width: 100%;
  }
  .jiameng .main .part03 .w80 .item .i_content {
    padding: 1.25rem 2rem;
  }
  .jiameng .main .part03 .w80 .item .i_content .left .title .t2 h2 {
    font-size: 1.25rem;
  }
  .jiameng .main .part03 .w80 .item .i_content .left .title .t2 {
    bottom: 2rem;
    left: 2rem;
  }
  .jiameng .main .part03 .w80 .item .i_content .left .title .t1 p {
    font-size: 1rem;
  }
  .jiameng .main .part03 .w80 .item .i_content .right {
    bottom: 2rem;
    right: 2rem;
    top: auto;
  }
  .jiameng .main .part03 .w80 .item .i_content .right h3 {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.2rem;
  }
  .jiameng .main .part03 .w80 .item .i_mask {
    padding: 1.25rem 0;
  }
  .jiameng .main .part03 .w80 .item .i_mask h3 {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.2rem;
  }
  .jiameng .main .part03 .w80 .item .i_mask p {
    font-size: 1.25rem;
  }
  .product .main .part01 .w80 .desc .item {
    width: 100%;
  }
  .product .main .part01 .w80 .desc .item .txt img {
    width: 2.6rem;
  }
  .product .main .part01 .w80 .desc .item .txt h3 {
    font-size: 1.25rem;
  }
  .product .main .part01 .w80 .desc .item .txt p {
    font-size: 1rem;
  }
  .product .main .part01 .w80 .desc .item .txt {
    padding: 1.4rem 2rem;
    width: 100%;
  }
  .product .main .part01 .w80 .desc .item .img {
    width: 100%;
  }
  .product .main .part02 .w80 .center ul li {
    width: 100%;
    border-radius: 0.6rem;
    margin-bottom: 1rem !important;
  }
  .product .main .part02 .w80 .center ul li .txt h3 {
    font-size: 1rem;
  }
  .product .main .part02 .w80 .center ul li .txt {
    padding: 1.4rem 1rem;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.25rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 1rem;
  }
  .contact .main .contact_sub2 .w80 .txt .t0 {
    width: 100%;
  }
  .contact .main .contact_sub2 .w80 .txt .t1 {
    width: 100%;
    margin-top: 1.6rem;
  }
  .contact .main .contact_sub2 .w80 {
    padding: 1.75rem;
  }
  .contact .main .contact_sub2 .w80 .txt .t1 p {
    font-size: 1rem;
  }
  .contact .main .contact_sub2 .w80 .title {
    margin-bottom: 1rem;
  }
  .contact .main .contact_sub1 {
    margin-top: 0;
  }
  .contact .main .contact_bottom .w80 .right .sub3 .s_tel {
    margin-left: 0;
    margin-top: 1rem;
  }
  .contact .main .contact_bottom .w80 .right {
    height: auto;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(4) {
    position: static;
    width: 100%;
  }
  .contact .main .contact_bottom .w80 .right .sub3 {
    margin-top: 3rem;
    justify-content: space-between;
  }
  .contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub i {
    margin-bottom: 0;
  }
  .contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub h4 {
    font-size: 1.4rem;
  }
  .contact .main .contact_bottom .w80 .right .sub3 .s_tel {
    margin-top: 0;
  }
  .contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub i {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
  .contact .main .contact_bottom .w80 .right .sub3 .s_tel .s_t_sub p {
    font-size: 1.125rem;
    margin-bottom: 0.4rem;
    margin-left: 2px;
  }
  .contact .main .contact_bottom .w80 .right .sub3 .s_ewm img {
    width: 7.4rem;
  }
  .contact .main .contact_bottom {
    margin-top: 2.6rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(3) textarea {
    font-size: 0.9rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 input {
    font-size: 0.9rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 input {
    font-size: 0.9rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 input {
    font-size: 0.9rem;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 input {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .fp-section {
    height: auto !important;
    min-height: auto !important;
  }
  .fp-tableCell {
    display: block !important;
  }
  .fp-is-overflow > .fp-overflow {
    overflow-y: initial !important;
  }
}
@media screen and (min-resolution: 120dpi) and (max-resolution: 140dpi) {
  .index .part02 .w80 .left .p02_title h2 {
    font-size: 3.4rem;
  }
  .index .part04 .w80 .p04_title h2 {
    font-size: 3.4rem;
  }
  .index .part04 .w80 .p04_title strong {
    font-size: 5.8rem;
  }
  .index .part04 .w80 .p04_content ul li .p04_item_top {
    width: 10rem;
    height: 10rem;
  }
  .index .part04 .w80 .p04_content ul li .p04_item_top .p04_icon img {
    width: 3.4rem;
  }
  .index .part05 .w80 .left .p05_title h2 {
    font-size: 3.4rem;
  }
}
