@charset "utf-8";
/* ====================公共样式========================= */
/* 基础样式重置 */
.banner-cont.white {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* 文字阴影增强可读性 */
}
/* 左右切换按钮样式（Swiper 5.4.5兼容） */
.banner .swiper-button-prev, .banner .swiper-button-next {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  /* 基于按钮高度居中 */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 按钮图标（使用Swiper 5.4.5内置图标） */
.swiper-button-prev {
  left: 20px;
}
.swiper-button-next {
  right: 20px;
}
/* 按钮悬停效果 */
.banner .swiper-button-prev:hover, .banner .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
/* 分页指示器样式（Swiper 5.4.5兼容） */
.banner .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  /* 取消默认透明度 */
}
.banner .swiper-pagination-bullet-active {
  background: #fff;
  width: 36px;
  border-radius: 6px;
  /* 激活状态为圆角矩形 */
}
/* 文字切换动画 */
.banner-cont .title, .banner-cont p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* 当前激活幻灯片的文字动画 */
.banner .swiper-slide-active .banner-cont .title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.banner .swiper-slide-active .banner-cont p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
@media (max-width: 768px) {
  .banner .swiper-button-prev, .banner .swiper-button-next {
    display: none;
  }
  .banner .swiper-pagination {
    bottom: 20px;
  }
  .banner-cont {
    padding: 0 5%;
  }
}
.yz-head {
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: transparent;
  user-select: none;
  box-shadow: none;
  transition: all .25s ease;
}
.yz-head .yz-contain {
  position: relative;
  width: 100%;
  padding: 0 0 0 15px;
  max-width: 100%;
}
.yz-head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
}
.yztop-logo {
  float: left;
  width: 150px;
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 99;
}
.yztop-logo img {
  max-width: 100%;
  position: absolute;
  transition: opacity .25s ease;
}
.yztop-logo img.s {
  opacity: 1;
}
.yztop-logo img.h {
  opacity: 0;
}
.yz-topdl {
  float: right;
  position: relative;
  z-index: 99;
  height: 75px;
  display: flex;
  align-items: center;
  width: 135px;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: background .25s ease;
}
.yz-topdl span {
  padding-left: 24px;
  background: url('../images/cxbai.png') no-repeat left center/15px auto;
}
.yz-topdl::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.15);
}
.yzr-topnav {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  top: 0;
}
body.DN .yzr-topnav {
  display: block !important;
}
.yzr-topnav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.yzr-topnav > ul > li {
  padding: 0 28px;
  position: relative;
  z-index: 8;
}
.yz-head-me {
  position: relative;
  height: 75px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color .25s ease, background .25s ease;
  padding-left: 18px;
}
.yz-head-me::before, .yz-head-me::after {
  display: none;
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: 0;
  top: 50%;
  margin-top: -5px;
  transition: all .25s ease;
}
.yz-head-me::before {
  background: url('../images/menu.png') no-repeat left center/100% auto;
  opacity: 0;
}
.yz-head-me::after {
  background: url('../images/menuh.png') no-repeat left center/100% auto;
  opacity: 0;
}
.yzr-topnav > ul > li:hover .yz-head-me::before, .yzr-topnav li.active .yz-head-me::before {
  opacity: 1;
}
.yzr-topnav > ul > li:hover .yz-head-me {
  color: #fff;
}
.yzr-topnav > ul > li.active .yz-head-me {
  color: #fff;
  font-weight: 500;
}
.Header-arrow {
  display: none;
}
/* -- */
.yzr-topnav-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  transition: background .25s ease;
  left: 0;
  top: 50%;
  margin-top: -5px;
  background: url('../images/menu.png') no-repeat center/100% auto;
  z-index: 3;
  pointer-events: none;
}
.baibj .yzr-topnav-dot, .shubiao .yzr-topnav-dot, .notou .yzr-topnav-dot {
  background-image: url('../images/menuh.png');
}
.bodyNoDot .yzr-topnav-dot {
  display: none;
}
@media all and (max-width:1000px) {
  .yzr-topnav-dot {
    display: none !important;
  }
}
/* -- */
/* box-shadow: ; */
.yz-head-pu {
  display: none;
  position: absolute;
  background: #fff;
  left: 57%;
  width: max-content;
  padding: 11px 0;
  box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 8%), inset 0 15px 8px -6px rgba(0, 0, 0, 0.02);
}
.bodyNoDot .yz-head-pu {
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(8px)
}
.bodyNoDot .yzr-topnav li:nth-child(2) .yz-head-pu {
  transform: translateX(0)
}
.bodyNoDot .yzr-topnav li:nth-child(3) .yz-head-pu {
  transform: translateX(0)
}
/* .yz-head-pu::before{content: "";position: absolute;left: 0px;bottom: 0px;width: 100%;height: 100%;z-index: -1;box-shadow: inset 0 17px 10px -8px rgba(0, 0, 0, 0.03);} */
.yz-head-pu > a {
  font-size: 15px;
}
.yz-head-pu a {
  display: flex;
  width: 100%;
  height: 38px;
  padding-bottom: 1px;
  color: #333;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.yz-head-pu > a.active, .yz-head-pu > a:hover {
  color: #2A54D5;
}
.yz-nav {
  display: none;
  width: 58px;
  height: 58px;
  cursor: pointer;
  float: right;
  user-select: none;
  align-items: center;
  justify-content: center;
}
.yz-nav span {
  width: 28px;
  height: 2px;
  background: #333;
  display: block;
  position: relative;
  transition: all .18s linear;
}
.yz-nav span:before, .yz-nav span:after {
  content: "";
  position: absolute;
  height: 2px;
  background: #333;
  display: block;
  left: 0;
  width: 100%;
  transition: all .18s linear;
}
.yz-nav span:before {
  top: -8px;
}
.yz-nav span:after {
  top: 8px;
}
.yz-nav.active span {
  -moz-animation: buttonAnimation 0.28s ease forwards;
  -webkit-animation: buttonAnimation 0.28s ease forwards;
  animation: buttonAnimation 0.28s ease forwards;
}
.yz-nav.active span:before {
  -moz-animation: buttonAnimationBefore 0.28s ease forwards;
  -webkit-animation: buttonAnimationBefore 0.28s ease forwards;
  animation: buttonAnimationBefore 0.28s ease forwards;
}
.yz-nav.active span:after {
  -moz-animation: buttonAnimationAfter 0.28s ease forwards;
  -webkit-animation: buttonAnimationAfter 0.28s ease forwards;
  animation: buttonAnimationAfter 0.28s ease forwards;
  top: 4px;
}
@-moz-keyframes buttonAnimationBefore {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
}
@-webkit-keyframes buttonAnimationBefore {
  0% {
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
}
@keyframes buttonAnimationBefore {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    -ms-transform: translateY(0px) rotate(0);
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(6px) rotate(0);
    -ms-transform: translateY(6px) rotate(0);
    -webkit-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
}
@-moz-keyframes buttonAnimationAfter {
  0% {
    -moz-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(-6px) rotate(0);
    transform: translateY(-6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
}
@-webkit-keyframes buttonAnimationAfter {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
    transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
}
@keyframes buttonAnimationAfter {
  0% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(-6px) rotate(0);
    -ms-transform: translateY(-6px) rotate(0);
    -webkit-transform: translateY(-6px) rotate(0);
    transform: translateY(-6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
}
@-moz-keyframes buttonAnimation {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(255, 255, 255, 0);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes buttonAnimation {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(255, 255, 255, 0);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes buttonAnimation {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(255, 255, 255, 0);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
/* 透明 */
.baibj .yz-head, .shubiao .yz-head, .notou .yz-head {
  background: #fff;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
}
.baibj .yz-topdl, .shubiao .yz-topdl, .notou .yz-topdl {
  background: #2A54D5;
}
.baibj .yz-head-me, .shubiao .yz-head-me, .notou .yz-head-me {
  color: #333;
}
.baibj .yztop-logo img.s, .shubiao .yztop-logo img.s, .notou .yztop-logo img.s {
  opacity: 0;
}
.baibj .yztop-logo img.h, .shubiao .yztop-logo img.h, .notou .yztop-logo img.h {
  opacity: 1;
}
.baibj .yzr-topnav li:hover .yz-head-me, .baibj .yzr-topnav li.active .yz-head-me, .shubiao .yzr-topnav li:hover .yz-head-me, .shubiao .yzr-topnav li.active .yz-head-me, .notou .yzr-topnav li:hover .yz-head-me, .notou .yzr-topnav li.active .yz-head-me {
  color: #2A54D5;
}
.baibj .yz-head-me::before, .shubiao .yz-head-me::before, .notou .yz-head-me::before {
  opacity: 0;
}
.baibj .yzr-topnav li:hover .yz-head-me::after, .baibj .yzr-topnav li.active .yz-head-me::after, .shubiao .yzr-topnav li:hover .yz-head-me::after, .shubiao .yzr-topnav li.active .yz-head-me::after, .notou .yzr-topnav li:hover .yz-head-me::after, .notou .yzr-topnav li.active .yz-head-me::after {
  opacity: 1;
}
/* 不透明 */
.notou .yz-container {
  margin-top: 75px;
}
/* 底部 */
.yz-footBlock {
  width: 100%;
  height: 520px;
}
.yz-foot {
  width: 100%;
  background: #0E1D2C;
}
.yz-foot-items {
  width: 100%;
  padding: 62px 0 52px;
}
.yz-foot-info {
  width: 250px;
}
.yz-foot-info .logo {
  width: 70%;
  display: block;
}

.yz-foot-info .contact {
  width: 100%;
  margin-top: 10px;
  color: #fff;
}
.yz-foot-info .contact p {
  opacity: 0.5;
}
.yz-foot-info .contact h6 {
  line-height: 1;
  font-size: 17px;
  margin-top: 5px;
  display: flex;
}
.yz-foot-info .contact h6 a {
  position: relative;
}
.yz-foot-info .contact h6 a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all .25s ease;
}
.yz-foot-info .contact h6 a:hover::after {
  opacity: 1;
}
.yz-foot-info .more {
  width: 100%;
  margin-top: 10px;
}
.yz-foot-info .more p {
  display: flex;
  width: 100%;
  color: #fff;
  font-size: 14px;
  padding-bottom: 8px;
}
.yz-foot-info .more p span, .yz-foot-info .more p a {
  opacity: 0.5;
  transition: all .25s ease;
}
.yz-foot-info .more p a {
  opacity: 1;
  height: 22px;
  padding-top: 1px;
}
.yz-foot-code {
  width: 115px;
  text-align: center;
}
.yz-foot-code .image {
  width: 115px;
  margin: 0 auto;
}
.yz-foot-code .image img {
  width: 100%;
  object-fit: cover;
}
.yz-foot-code .text {
  color: #fff;
  font-size: 13px;
  margin-top: 9px;
  opacity: 0.5;
  line-height: 17px;
}
.yz-foot-navbar {
  flex: 1;
  user-select: none;
  padding: 0 110px 0 115px;
}
.yz-foot-navbar ul {
  justify-content: space-between;
}
.yz-foot-navbar li {
  width: auto;
}
.yz-foot-menu {
  font-size: 15px;
  color: #fff;
  display: flex;
  height: 21px;
  align-items: center;
}
.yz-foot-drop {
  width: 100%;
  margin-top: 18px;
}
body.DN .yz-foot-drop {
  display: block !important;
}
.yz-foot-drop a {
  display: block;
  font-size: 13px;
  color: #fff;
  line-height: 30px;
  opacity: 0.5;
  transition: all .25s ease;
}
.yz-foot-drop a:hover {
  opacity: 1;
}
/* -- */
.yz-foot-friend {
  width: 100%;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
}
.yz-foot-friend-hint, .yz-foot-friend-link a {
  color: #fff;
  line-height: 22px;
  font-size: 11px;
  opacity: 0.5;
}
.yz-foot-friend-link {
  flex: 1;
  padding-left: 7px;
}
.yz-foot-friend-link a {
  transition: all .25s ease;
  margin-right: 15px;
}
.yz-foot-friend-link a:last-of-type {
  margin-right: 0;
}
.yz-foot-friend-link a:hover {
  opacity: 1;
}
/* -- */
.yz-foot-copyright {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.yz-foot-copyright .info p, .yz-foot-copyright .link a {
  font-size: 11px;
  color: #fff;
  opacity: 0.4;
  line-height: 17px;
  position: relative;
  transition: all .25s ease;
}
.yz-foot-copyright .info p {
  margin-left: 9px;
}
.yz-foot-copyright .info p:first-child {
  margin-left: 0;
}
.yz-foot-copyright .link a {
  margin-left: 13px;
}
.yz-foot-copyright .link a:first-child {
  margin-left: 0;
}
.yz-foot-copyright .link a::before {
  content: "";
  position: absolute;
  width: 1px;
  left: -6px;
  height: 11px;
  top: 50%;
  margin-top: -5px;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.yz-foot-copyright .link a:first-child::before {
  display: none;
}
.yz-foot-copyright .link a:hover {
  opacity: 1;
}
/* 置顶 */
.yztop {
  display: none;
  right: 38px;
  bottom: 58px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 18px;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 7px) 0%, 100% 7px, 100% 100%, 7px 100%, 0% calc(100% - 7px));
  text-align: center;
  position: fixed;
  cursor: pointer;
  z-index: 999;
  background: #2A54D5;
}
@media all and (max-width:1590px) {
  .yztop {
    right: 28px;
    bottom: 38px;
  }
}
@media all and (max-width:640px) {
  .yztop {
    right: 7px;
    bottom: 18px;
    width: 38px;
    height: 38px;
    background-size: 19px auto;
  }
}
/* 视频弹窗 */
.popVideo {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  top: 0;
  left: 0;
}
.popVideo-items {
  width: 980px;
  position: relative;
  opacity: 0;
}
.popVideo-video {
  width: 100%;
}
.popVideo-video video {
  width: 100%;
}
/* 屏蔽视频的下载按钮 */
video::-internal-media-controls-overflow-button {
  display: none;
}
video::-webkit-media-controls {
  overflow: hidden !important;
}
video::-webkit-media-controls-enclosure {
  width: calc(100% 30px);
  margin-left: auto;
}
.popVideo-video iframe {
  width: 100%;
  height: 480px;
}
.popVideo-close {
  width: 38px;
  height: 38px;
  right: -38px;
  top: -38px;
  line-height: 38px;
  opacity: 0.7;
  text-align: center;
  position: absolute;
  z-index: 3;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
  transition: all .5s ease;
}
.popVideo-close:hover {
  opacity: 1;
}
.popVideo.active {
  display: flex;
}
.popVideo.active .popVideo-items {
  animation: popVideRun 0.9s ease both .25s;
}
@keyframes popVideRun {
  0% {
    opacity: 0;
    transform: translateY(-180px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media all and (max-width:1100px) {
  .popVideo-items {
    width: 90%;
  }
  .popVideo-close {
    right: -7px;
    font-size: 17px;
  }
  .popVideo-video iframe {
    height: 380px;
  }
}
@media all and (max-width:640px) {
  .popVideo-video iframe {
    height: 190px;
  }
}
/* 中间+共用部分 */
.yz-container {
  width: 100%;
  position: relative;
  background: #fff;
  z-index: 3;
}
.yz-contain {
  max-width: 93%;
  margin: 0 auto;
  width: 93%;
}
.section {
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* 咨询 */
.yzindex5 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 65px 0;
  z-index: 8;
}
.yzindex5-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.yzindex5 .yz-contain {
  position: relative;
  z-index: 3;
  align-items: center;
  justify-content: space-around;
}
.yzindex5 .name {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
}
.yzindex5 .name h2 {
  margin-right: 18px;
}
.yzindex5 .link {
  margin-left: 28px;
}
/ /* 按钮 */
.commonLink {
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 6px) 0%, 100% 6px, 100% 100%, 6px 100%, 0% calc(100% - 6px));
  width: 115px;
  line-height: 1;
  height: 38px;
  font-size: 13px;
  color: #666;
  transition: all .25s ease;
  overflow: hidden;
  position: relative;
}
.commonLink span {
  position: relative;
  z-index: 2;
}
.commonLink:hover {
  color: #fff;
}
.commonLink:hover::before {
  background-image: url('../fonts/bgkkh.svg');
}
.commonLink:hover::after {
  opacity: 1;
  height: 100%;
  transition: height .25s ease .1s, opacity .1s ease;
}
.commonLink.active {
  color: #fff;
}
.commonLink.active::before {
  background-image: url('../fonts/bgkkh.svg');
}
.commonLink.active::after {
  opacity: 1;
  height: 100%;
  transition: height .25s ease .1s, opacity .1s ease;
}
.commonLink.white {
  color: #fff;
}
.commonLink.white::before {
  background-image: url('../fonts/bgkkw.svg');
}
.commonLink.white::after {
  background: #fff;
}
.commonLink.white:hover {
  color: #2A54D5;
}
@media all and (max-width:640px) {
  .commonLink {
    width: auto;
    height: auto;
  }
}
.commonLink.other {
  margin-left: 15px;
}
.commonLink.other::after {
  width: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  transition: width .25s ease, opacity .1s ease .25s;
}
.commonLink.other:hover::after {
  opacity: 1;
  width: 100%;
  transition: width .25s ease .1s, opacity .1s ease;
}
.zuogg {
  position: fixed;
  right: 11px;
  display: flex;
  z-index: 8;
  flex-direction: column;
  justify-content: center;
  bottom: 38px;
}
.yzzuogg_b {
  width: 54px;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 5px;
  height: 48px;
  margin-top: 14px;
}
.yzzuogg_b a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #90909A;
}
.yzzuogg_b i {
  font-size: 22px;
  font-weight: bold;
}
.yzzuogg_T {
  width: 54px;
  height: 200px;
  background: #FFFFFF;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.yzzuogg_T a {
  display: flex;
  width: 100%;
  height: 28px;
  position: relative;
  justify-content: center;
}
.yzzuogg_T a > img {
  width: 28px;
  height: 100%;
}
.yzzuogg_T a:nth-child(1) {
  margin-top: 68px;
}
.yzzuogg_T a:nth-child(2) {
  margin-top: 45px;
}
.yzzuogg_T_Xing {
  background: url(../images/comxuan_t_xing.svg)center no-repeat;
  background-size: yz-contain;
  width: 54px;
  height: 62px;
  position: absolute;
  top: -30px;
  left: 0px;
}
.yzzuogg_T_Xing a {
  margin-top: 0px !important;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yzzuogg_T_Xing a img {
  height: auto;
  width: auto;
}
.yzzuogg_T .ER_max {
  position: absolute;
  left: -165px;
  bottom: -28px;
  display: none;
  width: 175px;
}
.yzzuogg_T .ER_max > div {
  width: 152px;
  height: 172px;
  background: #FFFFFF;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 9px;
}
.yzzuogg_T .yzzuogg_T_img > img:nth-child(1) {
  position: absolute;
  opacity: 1;
  transition: all .25s ease;
}
.yzzuogg_T .yzzuogg_T_img > img:nth-child(2) {
  opacity: 0;
  transition: all .25s ease;
}
.yzzuogg_T .yzzuogg_T_img:hover > img:nth-child(1) {
  opacity: 0;
}
.yzzuogg_T .yzzuogg_T_img:hover > img:nth-child(2) {
  opacity: 1;
}
.ER_Phone {
  position: absolute;
  left: -210px;
  top: -9px;
  display: none;
  width: 215px;
}
.ER_Phone > div {
  width: 195px;
  height: 62px;
  background: #FFFFFF;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 9px;
}
.ER_Phone div {
  text-align: center;
}
.zuogg {
  animation: zuogg 0.9s ease;
}
@keyframes zuogg {
  0% {
    right: -95px;
  }
  100% {
    right: 11px;
  }
}
.yzr-topnav li:nth-child(3) .yz-head-pu {
  left: 0vw;
  padding: 38px 0;
  position: fixed;
  margin-left: 0px;
  width: 100%;
}
.Herader-list {
  display: flex;
  justify-content: center;
}
.Herader-list_title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.Herader-list_title .img {
  margin-right: 9px;
  width: 19px;
  height: 19px;
  line-height: 0;
  display: flex;
  align-items: center;
}
.Herader-list_title .text {
  color: #000;
  font-weight: bold;
  font-size: 15px;
}
.Herader-list li {
  padding: 0px 48px;
}
.Herader-list li a {
  color: #333;
  margin-bottom: 0px;
  font-size: 13px;
  height: auto;
  margin-bottom: 18px;
}
.Herader-list li a:hover {
  background-color: #fff;
  color: #2A54D5;
}
.Herader-list li a:last-child {
  margin-bottom: 0px;
}
.Herader-list ul {
  display: flex;
}
.yz-head-pu_mb {
  display: none;
}
.yzr-topnav li:nth-child(2) .yz-head-pu {
  left: 0vw;
  padding: 30px 150px 55px 150px;
  position: fixed;
  margin-left: 0px;
  width: 100vw;
}
.yzr-topnav li:nth-child(2) .yz-head-pu a {
  height: auto;
  display: block;
  justify-content: flex-start;
  width: auto;
}
.yzr-topnav li:nth-child(2) .yz-head-pu a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #2A54D5;
}
.yzr-topnav li:nth-child(3) .yz-head-pu {
  left: 0vw;
  padding: 30px 150px 55px 150px;
  position: fixed;
  margin-left: 0px;
  width: 100vw;
}
.yzr-topnav li:nth-child(3) .yz-head-pu a {
  height: auto;
  display: block;
  justify-content: flex-start;
  width: auto;
}
.yzr-topnav li:nth-child(3) .yz-head-pu a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #2A54D5;
}
.yz-head-pu_btn {
  display: flex;
  align-items: center;
  font-size: 15px !important;
  width: fit-content !important;
}
.yz-head-pu_btn i {
  margin-left: 9px;
  font-size: 11px;
  transition: all .25s ease;
}
.yz-head-pu_btn:hover i {
  margin-left: 14px;
}
.yz-head-pu_list {
  width: 100%;
  position: relative;
  padding-left: 140px;
}
.yz-head-pu_list .title {
  position: absolute;
  top: 0px;
  left: 0px;
}
.yz-head-pu_HOT {
  color: #FF0000;
  font-size: 12px;
  margin-left: 5px;
}
.list-cont.lt1 {
  width: 100%;
  background-color: #f9f9f9;
  padding: 15px;
}
.list-cont.lt1 .list-title {
  display: flex;
  justify-content: space-between;
}
.list-cont .list-title .list-title_li .line {
  width: 100%;
  height: 1px;
  background-color: #D6DBE3;
  margin: 11px 0px 9px 0px;
}
.list-cont.lt1 .list-title .list-title_li li a {
  width: auto;
  color: #000;
  font-size: 13px;
  line-height: 19px;
  display: block;
}
.yz-head-pu_list .list .name {
  color: #2A54D5;
}
.list-title_li.ly1 li {
  margin-right: 10px;
  margin-bottom: 12px;
  margin-top: 5px;
  width: calc(100%/1 - 10px);
}
.list-title_li.ly2 li {
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
  width: calc(100%/2 - 10px);
}
.list-title_li.ly1 ul {
  margin-bottom: -9px;
  margin-right: -9px;
}
.list-title_li.ly2 ul {
  margin-bottom: -9px;
  margin-right: -9px;
}
.list-title_li.ly3 ul {
  margin-bottom: -9px;
  margin-right: -9px;
}
.list-title_li.ly3 li {
  margin-right: 10px;
  margin-bottom: 12px;
  width: calc(100%/2 - 10px);
}
.list-title_li.ly4 ul {
  margin-bottom: -9px;
  margin-right: -9px;
}
.list-title_li.ly4 li {
  margin-right: 9px;
  margin-bottom: 9px;
  width: calc(100%/4 - 9px);
}
.list-cont.lt1 .list-title {
  flex-wrap: nowrap;
}
.list-cont.lt1 .list-title .list-title_li {
  margin-right: 48px;
}
.list-cont.lt1 .list-title .list-title_li:last-child {
  margin-right: 0px;
}
.list-cont.lt1 .list-title .list-title_li li a:hover {
  color: #2A54D5;
}
.list-cont.lt1 .list-title .list-title_li li a.not {
  pointer-events: none;
}
.yz-head-pu_list .list2 .list2-muen {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.yz-head-pu_list .list2 .list2-muen > li {
  margin-right: 9px;
}
.yz-head-pu_list .list2 .list2-muen > li:last-child {
  margin-right: 0px;
}
.yz-head-pu_list .list2 .list2-btn {
  color: #2A54D5;
}
.yz-head-pu_list .list2 .list2-btn i {
  font-size: 11px;
  margin-left: 9px;
  transition: all .25s ease;
}
.yz-head-pu_list .list2 .list2-btn:hover i {
  margin-left: 14px;
}
.yz-head-pu_list .list2 .list2-btn.not i {
  display: none;
}
.yz-head-pu_list .list2 .list2-btn.not {
  pointer-events: none;
}
.list-cont .list-title {
  flex-wrap: nowrap;
}
.list-cont .list-title.ly2 {
  margin-right: -22px;
}
.list-cont .list-title.ly2 .list-title_li {
  width: calc(100%/2 - 22px);
  margin-right: 22px;
}
.list-cont .list-title.ly3 {
  margin-right: -22px;
}
.list-cont .list-title.ly3 .list-title_li {
  width: calc(100%/3 - 22px);
  margin-right: 22px;
}
.list-cont .list-title.Dna li {
  margin-right: 48px;
}
.list-cont .list-title.Dna li:last-child {
  margin-right: 0px;
}
.yzr-topnav li:nth-child(2) .yz-head-pu {
  overflow-y: auto;
}
.yzr-topnav li:nth-child(2) .yz-head-pu::-webkit-scrollbar {
  width: 1px;
}
.yzr-topnav li:nth-child(2) .yz-head-pu::-webkit-scrollbar-thumb {
  background: #2A54D5;
}
.yzr-topnav li:nth-child(2) .yz-head-pu::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.list-cont_title {
  color: #000 !important;
}
.list-cont_title a {}
a.list-cont_title:hover {
  color: #2A54D5 !important;
}
.yz-head-pu_mb {
  display: none;
}
.yz-topgg {
  float: left;
  height: 75px;
  display: flex;
  padding-left: 28px;
  align-items: center;
  opacity: .8;
  color: #fff;
  position: relative;
  font-weight: 300;
  transition: all .25s ease;
}
.yz-topgg::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 1px;
  height: 38px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  transition: all .25s ease;
}
.yz-foot-navbar li {
  position: relative;
}
.yz-foot-navbar li .yz-foot-drop {
  overflow: hidden;
  position: relative;
  transition: all .25s ease;
}
.yz-foot-navbar li .btn {
  content: "\e61f";
  position: absolute;
  bottom: -23px;
  left: 0px;
  font-size: 9px;
  width: 100%;
  height: 23px;
  color: #fff;
  opacity: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  letter-spacing: 9px;
}
.yz-foot-navbar li.on .btn {
  opacity: 1;
}
.yz-foot-navbar li.active .btn {
  transform: rotate(-180deg);
}
.yz-foot-navbar li.active .yz-foot-drop {
  height: auto !important;
}
.ltbulu {
  color: #2A54D5 !important;
}
/* .ltbuluUl li:nth-child(1) .list-cont_title a{color: #000 !important;display: flex !important;} */
.ltbuluUl li:nth-child(1) .list-cont_title a {
  color: #000 !important;
}
.ltbuluUl li:nth-child(1) .list-cont_title a:hover {
  color: #2A54D5 !important;
}
.pt80 {
  padding-top: 60px;
}
.pb80 {
  padding-bottom: 60px;
}
.baibj .yz-topgg, .shubiao .yz-topgg {
  color: #333 !important;
}
.baibj .yz-topgg::before, .shubiao .yz-topgg::before {
  background-color: #333 !important;
}
.lanzi {
  color: #3059DA !important;
}
.notou .yz-topgg {
  color: #333;
}
.notou .yz-topgg::before {
  background-color: #333;
}
.Herader-list li a {
  padding-left: 28px;
  justify-content: flex-start;
}
.yztop-logo img.cailogo {
  display: none;
}
.yz-head-pu > a {
  padding: 0px 30px;
  font-size: 13px;
  color: #333;
  justify-content: flex-start;
}
.yzr-topnav li:nth-child(2) .yz-head-pu {
  margin-left: 0px !important;
}
.yzr-topnav li:nth-child(3) .yz-head-pu {
  margin-left: 0px !important;
}
.yz-head-pu_list .list2 .list2-muen > li:last-child {
  width: 270px;
}
.yzr-topnav li:nth-child(2) .yz-head-pu .yz-head-pu-cont {
  max-width: 1500px;
  margin: 0px auto;
}
.yzr-topnav li:nth-child(3) .yz-head-pu .yz-head-pu-cont {
  max-width: 1500px;
  margin: 0px auto;
}
.yz-head-pu_xiala {
  display: none;
}
.yz-foot-navbar li .btn {
  font-size: 13px;
  letter-spacing: 2px;
  color: #bababa;
  transition: all .25s ease;
  bottom: -17px;
}
.yz-foot-navbar li .btn:hover {
  color: #fff;
}
.yzzuogg_b i {
  transition: all .25s ease;
}
.yzzuogg_b:hover i {
  color: #2A54D5;
}
.apply .yz-head {
  box-shadow: none;
}
.apply .yz-head:hover {
  box-shadow: 0 0 18px 0 rgb(0 0 0 / 8%);
}
/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
  /* 1600 × (900) */
  .list-cont.lt1 .list-title .list-title_li {
    margin-right: 18px;
  }
  .yzr-topnav > ul > li {
    padding: 0px 17px;
  }
}
@media all and (max-width:1590px) {
  /* 1440 × (700)  */
  .yz-contain {
    max-width: 90%;
  }
  .yzr-topnav > ul > li {
    padding: 0 10px;
  }
  .yzindex5 {
    padding: 45px 0;
  }
  .yzindex5 .name {
    font-size: 26px;
  }
  .yz-foot-items {
    padding: 58px 0 48px;
  }
  .yz-foot-navbar {
    padding: 0 65px 0 75px;
  }
  .yz-footBlock {
    height: 500px;
  }
  .list-cont.lt1 .list-title {
    margin-bottom: -18px;
  }
  /* .list-cont.lt1 .list-title .list-title_li{width: calc(100%/3 - 18px);margin-bottom: 18px;} */
  .yz-head-pu_list .list2 .list2-muen > li {
    margin-top: 3px;
  }
  .yz-head-pu-cont > div {
    margin-right: 14px;
  }
  .list-cont.lt1 {
    padding: 11px 11px 28px 11px;
  }
  .yz-head-pu_list .list2 .list2-btn {
    display: flex !important;
  }
  .yzr-topnav > ul {
    padding-left: 145px;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu {
    padding: 38px 50px;
  }
  .yzr-topnav li:nth-child(3) .yz-head-pu {
    padding: 38px 50px;
  }
}
@media all and (max-width:1490px) {
  .yz-contain {
    max-width: 96%;width: 96%;
  }
  
  .yz-foot-navbar li:last-child {
    display: none; /* 完全隐藏（不占据页面空间） */
    /* 若需保留占位，可改用：visibility: hidden; */
}
  
  
}
@media all and (max-width:1350px) {
  /* 1280 */
  .yz-head-pu_list {
    padding-left: 85px;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu {
    padding: 30px;
  }
  .yzr-topnav li:nth-child(3) .yz-head-pu {
    padding: 30px;
  }
  .yztop-logo {
    width: 240px;
  }
  .yz-head-pu_list .list2 .list2-muen > li:last-child {
    width: 300px;
  }
}
@media all and (max-width:1270px) {
  /* 1152 × (700) */
  .yz-contain {
    max-width: 88%;
  }
  .yzr-topnav > ul > li {
    padding: 0 9px;
  }
  .yzindex5 {
    padding: 34px 0;
  }
  .yzindex5 .name {
    font-size: 22px;
  }
  .yzindex5 .link {
    margin-left: 22px;
  }
  .yzindex5 .name h2 {
    margin-right: 15px;
  }
  .yz-foot-items {
    padding: 54px 0 40px;
  }
  .yz-foot-navbar {
    padding: 0 38px 0 38px;
  }
  .yz-foot-info .contact {
    margin-top: 22px;
  }
  .yz-foot-info .more {
    margin-top: 17px;
  }
  .yz-foot-drop {
    margin-top: 15px;
  }
  .yz-footBlock {
    height: 495px;
  }
  .Herader-list li {
    padding: 0px 48px;
  }
  .yzr-topnav > ul {
    padding-left: 48px;
  }
  .yztop-logo {
    width: 95px;
  }
  .yztop-logo img.h {
    display: none;
  }
  .yztop-logo img.cailogo {
    display: block;
  }
  .yzr-topnav > ul {
    padding-left: 0px;
  }
  .yztop-logo img.s {
    display: none;
  }
  .yz-head-pu > a {
    padding: 0px 22px;
  }
}
@media all and (max-width:1140px) {
  /* 1024 */
  .zuogg {
    display: none;
  }
}
/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
  /* 平板设备 720 适配 */
  .yz-head {
    background: #fff;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
  }
  .yz-head-me {
    color: #333;
    font-size: 16px;
  }
  .yztop-logo img.s {
    opacity: 0;
  }
  .yztop-logo img.h {
    opacity: 1;
  }
  .yztop-logo, .yz-head-me, .yz-topdl {
    height: 58px;
  }
  .notou .yz-container {
    margin-top: 58px;
  }
  .yz-topdl {
    background: #2A54D5;
    width: 110px;
  }
  .yz-contain {
    max-width: 96%;
  }
  .yz-container {
    margin-top: 58px;
  }
  .yz-head .yz-contain {
    width: 100%;
    padding: 0;
  }
  .yztop-logo {
    margin-left: 3%;
    width: 85px;
  }
  
      .yz-foot-info .logo {
  
    margin: auto;width: 120px;
}
  
  .yz-nav {
    display: flex;
  }
  .yzr-topnav {
    display: none;
    position: absolute;
    width: 100%;
    margin-right: 0;
    height: calc(100vh - 58px);
    top: 58px;
    left: 0;
    background: #fff;
    padding: 0px;
    padding-bottom: 18px;
  }
  .yzr-topnav::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .yzr-topnav > ul {
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .yzr-topnav > ul > li {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all .25s ease;
    padding: 0 3%;
  }
  .yzr-topnav > ul > li::after {
    content: "";
    position: absolute;
    width: 90%;
    left: 3%;
    bottom: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1)
  }
  .yzr-topnav.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .yz-head-me {
    height: 52px;
    padding: 0%;
  }
  .yz-head-me::before, .yz-head-me::after {
    display: none !important;
  }
  .Header-arrow {
    display: block;
    width: 30px;
    height: 52px;
    line-height: 52px;
    color: #333;
    position: absolute;
    z-index: 8;
    right: 3%;
    top: 0;
  }
  .Header-arrow.active {
    transform: rotate(180deg);
    text-align: right;
  }
  .yzr-topnav > ul > li:hover .yz-head-me {
    color: #333 !important;
  }
  .yzr-topnav > ul > li.active .yz-head-me {
    color: #2A54D5 !important;
  }
  .yz-head-pu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    box-shadow: none;
    padding: 0px;
  }
  .yz-head-pu a {
    height: 52px;
    line-height: 52px;
    justify-content: flex-start;
    padding-left: 9px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .yz-head-pu > a:last-child {
    border-bottom: none;
  }
  .yzindex5 {
    padding: 22px 0;
  }
  .yzindex5 .name {
    font-size: 17px;
    width: 100%;
    flex-wrap: wrap;
  }
  .yzindex5 .name h2 {
    margin-right: 9px;
  }
  .yzindex5 .link {
    margin: 9px 0 0;
  }
  .yz-foot-items {
    padding: 32px 0 26px;
  }
  .yz-foot-info {
    width: 100%;
    text-align: center;
  }
  .yz-foot-info .contact h6 {
    justify-content: center;
  }
  .yz-foot-info .more p {
    justify-content: center;
  }
  .yz-foot-info .contact {
    margin-top: 18px;
  }
  .yz-foot-info .more {
    margin-top: 11px;
  }
  .yz-foot-code {
    width: 100%;
    text-align: center;
    margin-top: 18px;
  }
  .yz-foot-code .text {
    margin-top: 11px;
  }
  .yz-foot-navbar {
    width: 100%;
    display: none;
    flex: none;
  }
  .yz-foot-navbar > ul > li {
    width: 100% !important;
  }
  .yz-foot-menu {
    height: 38px;
    line-height: 38px;
    padding: 0 3%;
    position: relative;
  }
  .yz-foot-menu::after {
    text-align: center;
    font-weight: 400;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 11px;
    color: #fff;
    position: absolute;
    z-index: 8;
    right: 0;
    top: 0;
  }
  .yz-foot-menu.active::after {
    transform: rotate(180deg);
  }
  .yz-foot-drop a {
    padding: 6px 3%;
  }
  .yz-foot-drop {
    display: none;
    margin-top: 0;
  }
  .yz-foot-friend {
    display: none;
  }
  .yz-foot-copyright {
    padding: 17px 0;
  }
  .yz-foot-copyright .info p {
    margin-left: 7px;
  }
  .yz-foot-copyright .info p, .yz-foot-copyright .link a {
    font-size: 13px;
    line-height: 22px;
  }
  .yz-foot-copyright .info, .yz-foot-copyright .link {
    width: 100%;
    justify-content: center;
  }
  .yz-footBlock {
    display: none;
  }
  .yz-foot {
    position: relative;
    height: auto;
    opacity: 1 !important;
    z-index: 8;
  }
  .Herader-list_title .img {
    display: none;
  }
  .yzr-topnav li:nth-child(3) .yz-head-pu {
    position: static;
    padding: 0px;
  }
  .Herader-list li {
    padding: 0px 3%;
  }
  .Herader-list li a {
    margin-bottom: 0px;
    font-size: 13px;
  }
  .Herader-list_title {
    margin-bottom: 0px;
  }
  .Herader-list {
    display: block;
  }
  .Herader-list ul {
    display: block;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .yz-head-pu_btn {
    display: none !important;
  }
  .yz-head-pu_list .title {
    position: static;
  }
  .yz-head-pu_list {
    padding-left: 0px;
  }
  .list-cont.lt1 {
    display: none;
  }
  .list-cont .list-title.ly2 {
    display: none;
  }
  .list-cont .list-title.ly3 {
    display: none;
  }
  .list-cont .list-title {
    display: none;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu a {
    padding: 0px;
  }
  .yz-head-pu_list {
    margin-right: 0px;
  }
  .yz-head-pu_list .list2 .list2-muen > li {
    width: 100%;
    margin-bottom: 0px;
    margin-right: 0px;
  }
  .yz-head-pu_list:last-child .list2 {
    display: none;
  }
  .yz-head-pu_list .list2 {
    margin-top: 0px;
  }
  .yz-head-pu_list .list2 .list2-muen > li .list-cont {
    display: none;
  }
  .yz-head-pu-cont > div {
    height: auto;
  }
  .yz-head-pu_mb {
    display: block;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu a i {
    display: none;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu a {
    color: #333 !important;
  }
  .yz-head-pu_list .list2 .list2-muen > li {
    padding-left: 3% !important;
  }
  .yz-head-pu_list .list .name {
    padding-left: 3% !important;
    font-size: 11px;
  }
  .yz-head-pu_mb a {
    padding-left: 3% !important;
  }
  .yz-head-pu_list {
    margin-top: 0px;
  }
  .Herader-list_title .text {
    font-size: 12px;
    font-weight: 300;
  }
  .yz-head-pu a {
    font-size: 12px;
  }
  .yz-head-pu_list .list2 .list2-btn {
    font-size: 11px;
  }
  .yz-head-pu_mb a {
    font-size: 11px;
  }
  .Herader-list li a {
    font-size: 11px;
  }
  .yz-nav {
    float: right !important;
    ;
  }
  .yztop-logo {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
  }
  .yz-topdl {
    width: 95px;
  }
  .yz-topdl {
    font-size: 14px;
    float: left !important;
  }
  .yz-topdl span {
    padding-left: 16px;
    background: url(../images/cxbai.png) no-repeat left center/14px auto;
  }
  .yztop-logo img.h {
    transform: scale(.65);
  }
  .yz-topgg {
    height: 58px;
    display: none;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu {
    width: 100%;
  }
  .yzr-topnav > ul {
    padding-left: 0px;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu a {
    height: 52px;
  }
  .yz-head-pu {
    border-top: 1px solid rgba(0, 0, 0, .1);
  }
  .yz-head-pu_list .list2 .list2-muen {
    flex-wrap: wrap;
  }
  .yz-head-pu_list .list2 .list2-muen li {
    width: 100%;
  }
  .yz-head-pu_mb li {
    width: 100%;
  }
  .Herader-list {
    display: none;
  }
  .yz-head-pu-cont {
    display: none;
  }
  .yz-head-pu_xiala {
    display: block;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu {
    height: auto;
    overflow: hidden;
  }
  .yz-head-pu_xiala li {}
  .yz-head-pu_xiala li a {
    padding: 0px;
  }
  .yz-head-pu_xiala li .title {
    position: relative;
    border-bottom: none;
  }
  .yz-head-pu_xiala li .hide {
    display: none;
  }
  .yz-head-pu_xiala li .title i {
    display: block !important;
    width: 11px;
    height: 52px;
    font-size: 11px;
    line-height: 52px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 8;
    right: 0;
    top: 0;
  }
  .yz-head-pu_xiala li .title i::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .yz-head-pu_xiala li .hide > a {
    padding-left: 18px !important;
  }
  .yz-head-pu_xiala li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .yz-head-pu_xiala li:last-child {
    border-bottom: 0px;
  }
  .yz-head-pu_xiala li .hide-not {
    position: relative;
  }
  .yz-head-pu_xiala li .hide_list {
    position: relative;
  }
  .yz-head-pu_xiala li .hide_list i {
    display: block !important;
    width: 38px;
    height: 52px;
    font-size: 11px;
    line-height: 52px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 8;
    right: 0px;
    top: 0;
  }
  .yz-head-pu_xiala li .hide_list i::after {
    content: "\e61f";
    font-family: "icon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .hide_list a {
    padding-left: 18px !important;
  }
  .yz-head-pu_xiala li .title i {
    width: 11px;
    height: 48px;
    font-size: 11px;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu a {
    padding-left: 9px;
  }
  .hide-not_list a {
    padding-left: 28px !important;
  }
  .hide-not_list {
    display: none;
  }
  .hide-not {
    border-bottom: none !important;
    margin-right: 38px;
  }
  .hide-not::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: calc(100% + 38px);
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
  }
  .hide-not .hide-not_list:last-child {
    border-bottom: 0px;
  }
  .yz-head-pu a {
    font-size: 11px;
  }
  .yz-head-pu_xiala li .hide {
    border-top: 1px solid rgba(0, 0, 0, .1);
  }
  .yz-head-pu_xiala li a {
    padding-left: 9px;
  }
  .hide-not_list a.active {
    background-color: #f7f7f7;
  }
  .bodyNoDot .yz-head-pu {
    left: 0;
    right: auto;
    margin: 0 auto;
    transform: translateX(0);
  }
}
@media all and (max-width:640px) {
  /* 移动终端以上 360 适配 */
  .yzindex5 {
    padding: 23px;
  }
  .yzindex5 .link {
    margin-top: 11px;
  }
  .yz-foot-items {
    padding: 23px 0 18px;
  }
  .yz-foot-info .contact {
    margin-top: 14px;
  }
  .yz-foot-info .more {
    margin-top: 14px;
  }
  .yz-foot-code {
    margin-top: 14px;
  }
  .yz-foot-copyright {
    padding: 18px 0;
    padding-bottom: 38px;
  }
  .yzindex5 .name {
    font-size: 15px;
  }
  .yz-head-pu_list .list2 .list2-muen {
    flex-wrap: wrap;
  }
  .yz-head-pu_list .list2 .list2-muen li {
    width: 100%;
  }
  .yz-head-pu_mb li {
    width: 100%;
  }
  .Herader-list {
    display: none;
  }
  .yz-head-pu-cont {
    display: none;
  }
  .yz-head-pu_xiala {
    display: block;
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu {
    height: auto;
    overflow: hidden;
  }
  .yz-head-pu_xiala li {}
  .yz-head-pu_xiala li a {
    padding: 0px;
    font-size: 15px;
  }
  .yz-head-pu_xiala li .title {
    position: relative;
    border-bottom: none;
  }
  .yz-head-pu_xiala li .hide {
    display: none;
  }
  .yz-head-pu_xiala li .title i {
    display: block !important;
    width: 11px;
    height: 52px;
    font-size: 11px;
    line-height: 52px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 8;
    right: 0;
    top: 0;
  }
  .yz-head-pu_xiala li .title i::after {
    content: "\e61f";
    font-family: "icon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .yz-head-pu_xiala li.active .title i::after {
    content: "\e61e";
  }
  .yz-head-pu_xiala li .hide > a {
    padding-left: 18px !important;
  }
  .yz-head-pu_xiala li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .yz-head-pu_xiala li:last-child {
    border-bottom: 0px;
  }
  .yz-head-pu_xiala li .hide-not {
    position: relative;
  }
  .yz-head-pu_xiala li .hide_list {
    position: relative;
  }
  .yz-head-pu_xiala li .hide_list i {
    display: block !important;
    width: 38px;
    height: 52px;
    font-size: 11px;
    line-height: 52px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 8;
    right: 0px;
    top: 0;
  }
  .yz-head-pu_xiala li .hide_list i::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .hide_list a {
    padding-left: 18px !important;
  }
  .zuogg {
    display: block;
    z-index: 99999999;
    transform: scale(.55);
    bottom: 28px;
    right: 0px;
  }
  .yz-head-pu_xiala li .hide .hide-not {
    padding-left: 28px;
  }
  .yzindex5 .name {
    font-size: 19px;
    margin-bottom: 5px;
  }
  .yzindex5 .yz-contain {
    width: 100%;
  }
  .yz-foot-items {
    padding: 38px 0 18px;
  }
  .yz-foot-info .contact {
    margin-top: 16px;
  }
  .yz-foot-info .contact h6 {
    margin-top: 7px;
  }
  .yz-foot-info .more {
    margin-top: 0px;
  }
  .yz-foot-info .more p {
    margin-top: 14px;
  }
  .yz-foot-code .text {
    margin-top: 9px;
  }
  .yz-foot-copyright .link {
    margin-top: 9px;
  }
  .yz-head-pu_xiala li .title i {
    width: 30px;
    height: 52px;
    font-size: 11px;
    text-align: right
  }
  .yzr-topnav li:nth-child(2) .yz-head-pu a {
    padding-left: 9px;
  }
  .hide-not_list a {
    padding-left: 28px !important;
  }
  .hide-not_list {
    display: none;
  }
  .hide-not {
    border-bottom: none !important;
    margin-right: 38px;
  }
  .hide-not::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: calc(100% + 38px);
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
  }
  .hide-not .hide-not_list:last-child {
    border-bottom: 0px;
  }
  .yz-head-pu a {
    font-size: 15px;
  }
  .yz-head-pu_xiala li .hide {
    border-top: 1px solid rgba(0, 0, 0, .1);
  }
  .yz-head-pu_xiala li a {
    padding-left: 9px;
  }
  .hide-not_list {
    background-color: #f8f8f8;
    position: relative;
  }
  /* .hide-not_list:nth-child(3){background-color: #2A54D5;} */
  .yz-head-pu_xiala li:nth-child(2) .hide i {
    display: none !important;
  }
  .yz-head-pu_xiala li:nth-child(3) .hide i {
    display: none !important;
  }
  .yz-head-pu_xiala li:nth-child(2) .hide {
    background-color: #f8f8f8;
  }
  .yz-head-pu_xiala li:nth-child(3) .hide {
    background-color: #f8f8f8;
  }
  /* .yz-head-pu_xiala:nth-child(2) li:nth-child(1) .hide{background-color: #f8f8f8;}
    .yz-head-pu_xiala:nth-child(2) li:nth-child(1) .hide i{display: none !important;} */
  .yzr-topnav > ul > li:nth-child(3) .yz-head-pu_xiala li .hide {
    background-color: #f8f8f8;
  }
  .yzr-topnav > ul > li:nth-child(3) .yz-head-pu_xiala li .hide i {
    display: none !important;
  }
  /* .commonLink::after{opacity: 1;} */
  /* .hide-not_list::before{content: "";position: absolute;left: -3%;width: 100vw;height: 100%;background-color: #f8f8f8;top: 0px;z-index: 2;} */
  .yzr-topnav {
    padding-bottom: 75px;
  }
  .yzr-topnav .drop_xiala.active {
    border-bottom: 0px;
  }
  .yzr-topnav > ul > li:nth-child(2) .yz-head-pu_xiala li:last-child .hide_list:last-child a::before {
    display: none
  }
  .yzr-topnav > ul > li:nth-child(3) .yz-head-pu_xiala li:last-child .hide_list:last-child a::before {
    display: none
  }
}