@charset "utf-8";
/* ====================公共样式========================= */
body {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}
/* 头部 */
.Header-t {
  width: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background: transparent;
  user-select: none;
  box-shadow: none;
  transition: all .4s ease;
}
.Header-t .contain {
  position: relative;
  width: 100%;
  padding: 0 35px;
}
.Header-t::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}
.Header-logo {
  float: left;
  width: 131px;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
  margin-top: 15px;
}
.Header-logo img {
  max-width: 100%;
  position: absolute;
  transition: opacity .4s ease;
}
.Header-logo img.s {
  opacity: 1;
}
.Header-logo img.h {
  opacity: 0;
}
.Header-apply {
  float: right;
  position: relative;
  z-index: 999;
  height: 80px;
  display: flex;
  align-items: center;
  width: 135px;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: background .4s ease;
}
/*.Header-apply::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
}*/
.Header-navbar {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0;
  top: 0;
}
body.PC .Header-navbar {
  display: block !important;
}
.Header-navbar > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.Header-navbar > ul > li {
  padding: 0 30px;
  position: relative;
  z-index: 9;
}
.Header-menu {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  transition: color .4s ease, background .4s ease;
  padding-left: 20px;
}
.Header-menu::before, .Header-menu::after {
  display: none;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  transition: all .4s ease;
}
.Header-menu::before {
  background: url('../images/menu.png') no-repeat left center/100% auto;
  opacity: 0;
}
.Header-menu::after {
  background: url('../images/menuh.png') no-repeat left center/100% auto;
  opacity: 0;
}
.Header-navbar > ul > li:hover .Header-menu::before, .Header-navbar li.active .Header-menu::before {
  opacity: 1;
}
.Header-navbar > ul > li:hover .Header-menu {
  color: #fff;
}
.Header-navbar > ul > li.active .Header-menu {
  color: #fff;
  font-family: "PingFangSC-Medium", "AM", "noto sans", sans-serif;
  font-weight: 500;
}
.Header-arrow {
  display: none;
}
/* -- */
.Header-navbar-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  transition: background .4s ease;
  left: 0;
  top: 50%;
  margin-top: -6px;
  background: url('../images/menu.png') no-repeat center/100% auto;
  z-index: 4;
  pointer-events: none;
}
.bodyScroll .Header-navbar-dot, .bodyMouse .Header-navbar-dot, .noLucency .Header-navbar-dot {
  background-image: url('../images/menuh.png');
}
.bodyNoDot .Header-navbar-dot {
  display: none;
}
@media all and (max-width:1000px) {
  .Header-navbar-dot {
    display: none !important;
  }
}
/* -- */
/* box-shadow: ; */
.Header-drop {
  display: none;
  position: absolute;
  background: #fff;
  left: 58%;
  width: max-content;
  padding: 12px 0;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 6%), inset 0 17px 10px -8px rgba(0, 0, 0, 0.03);
}
.bodyNoDot .Header-drop {
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(10px)
}
.bodyNoDot .Header-navbar li:nth-child(2) .Header-drop {
  transform: translateX(0)
}
.bodyNoDot .Header-navbar li:nth-child(3) .Header-drop {
  transform: translateX(0)
}
/* .Header-drop::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);} */
.Header-drop > a {
  font-size: 16px;
}
.Header-drop a {
  display: flex;
  width: 100%;
  height: 40px;
  padding-bottom: 1px;
  color: #333;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}
.Header-drop > a.active, .Header-drop > a:hover {
  color: #4880D4;
}
.Header-nav {
  display: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  float: right;
  user-select: none;
  align-items: center;
  justify-content: center;
}
.Header-nav span {
  width: 24px;
  height: 2px;
  background: #333;
  display: block;
  position: relative;
  transition: all .2s linear;
}
.Header-nav span:before, .Header-nav span:after {
  content: "";
  position: absolute;
  height: 2px;
  background: #333;
  display: block;
  left: 0;
  width: 100%;
  transition: all .2s linear;
}
.Header-nav span:before {
  top: -7px;
}
.Header-nav span:after {
  top: 7px;
}
.Header-nav.active span {
  -moz-animation: buttonAnimation 0.3s ease forwards;
  -webkit-animation: buttonAnimation 0.3s ease forwards;
  animation: buttonAnimation 0.3s ease forwards;
}
.Header-nav.active span:before {
  -moz-animation: buttonAnimationBefore 0.3s ease forwards;
  -webkit-animation: buttonAnimationBefore 0.3s ease forwards;
  animation: buttonAnimationBefore 0.3s ease forwards;
}
.Header-nav.active span:after {
  -moz-animation: buttonAnimationAfter 0.3s ease forwards;
  -webkit-animation: buttonAnimationAfter 0.3s ease forwards;
  animation: buttonAnimationAfter 0.3s ease forwards;
}
@-moz-keyframes buttonAnimationBefore {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}
@-webkit-keyframes buttonAnimationBefore {
  0% {
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) 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(7px) rotate(0);
    -ms-transform: translateY(7px) rotate(0);
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}
@-moz-keyframes buttonAnimationAfter {
  0% {
    -moz-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}
@-webkit-keyframes buttonAnimationAfter {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) 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(-7px) rotate(0);
    -ms-transform: translateY(-7px) rotate(0);
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) 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);
  }
}
/* 透明 */
.sxjz {
  display: flex !important;
  align-items: center !important;
}
.zyjz {
  display: flex !important;
  justify-content: center !important;
}
.bodyScroll .nav-container {
  border: 1px solid #999
}
.bodyMouse .nav-container {
  border: 1px solid #999
}
.bodyScroll .Header-t, .bodyMouse .Header-t, .noLucency .Header-t {
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.bodyScroll .Header-apply, .bodyMouse .Header-apply, .noLucency .Header-apply {
  color: #666
}
.bodyScroll .Header-menu, .bodyMouse .Header-menu, .noLucency .Header-menu, .bodyScroll .baizi, .bodyMouse .baizi {
  color: #333;
}
.bodyScroll .Header-logo img.s, .bodyMouse .Header-logo img.s, .noLucency .Header-logo img.s {
  opacity: 0;
}
.bodyScroll .Header-logo img.h, .bodyMouse .Header-logo img.h, .noLucency .Header-logo img.h {
  opacity: 1;
}
.bodyScroll .Header-navbar li:hover .Header-menu, .bodyScroll .Header-navbar li.active .Header-menu, .bodyMouse .Header-navbar li:hover .Header-menu, .bodyMouse .Header-navbar li.active .Header-menu, .noLucency .Header-navbar li:hover .Header-menu, .noLucency .Header-navbar li.active .Header-menu {
  color: #4880D4;
}
.bodyScroll .Header-menu::before, .bodyMouse .Header-menu::before, .noLucency .Header-menu::before {
  opacity: 0;
}
.bodyScroll .Header-navbar li:hover .Header-menu::after, .bodyScroll .Header-navbar li.active .Header-menu::after, .bodyMouse .Header-navbar li:hover .Header-menu::after, .bodyMouse .Header-navbar li.active .Header-menu::after, .noLucency .Header-navbar li:hover .Header-menu::after, .noLucency .Header-navbar li.active .Header-menu::after {
  opacity: 1;
}
/* 不透明 */
.noLucency .Container-wrapper {
  margin-top: 80px;
}
/* 底部 */
.Footer-wrapper {
  width: 100%;
  background: #272727;
  position: relative;
  z-index: 999
}
.Footer-items {
  width: 100%;
  padding: 66px 0 56px;
}
.Footer-info {
  width: 290px;
}
.Footer-info .logo {
  width: 100%;
  display: block;
}
.Footer-info .logo img {
  max-width: 92px;
}
.Footer-info .contact {
  width: 100%;
  color: #fff;
}
.Footer-info .contact p {
  opacity: 0.5;
  line-height: 18px;
}
.Footer-info .contact h6 {
  margin-top: 6px;
  display: flex;
  line-height: 1.4
}
.Footer-info .contact h6 a {
  position: relative;
  text-decoration: none;
}
.Footer-info .more {
  width: 100%;
}
.Footer-info .more p {
  display: flex;
  width: 100%;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
}
.Footer-info .more p span, .Footer-info .more p a {
  opacity: 0.5;
  transition: all .4s ease;
}
.Footer-info .more p a {
  opacity: 1;
  height: 24px;
  padding-top: 1px;
}
.Footer-code {
  width: 120px;
  text-align: center;
}
.Footer-code .image {
  width: 120px;
  margin: 0 auto;
}
.Footer-code .image img {
  width: 100%;
  object-fit: cover;
}
.Footer-code .text {
  color: #fff;
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.5;
  line-height: 18px;
}
.Footer-navbar {
  flex: 1;
  user-select: none;
  padding: 0 116px 0 120px;
}
.Footer-navbar ul {
  justify-content: space-between;
}
.Footer-navbar li {
  width: auto;
}
.Footer-menu {
  font-size: 16px;
  color: #fff;
  display: flex;
  height: 22px;
  align-items: center;
}
.Footer-drop {
  width: 100%;
  margin-top: 20px;
}
body.PC .Footer-drop {
  display: block !important;
}
.Footer-drop a {
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  opacity: 0.5;
  transition: all .4s ease;
}
.Footer-drop a:hover {
  opacity: 1;
}
/* -- */
.Footer-friend {
  width: 100%;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.Footer-friend-hint, .Footer-friend-link a {
  color: #fff;
  line-height: 24px;
  font-size: 12px;
  opacity: 0.5;
}
.Footer-friend-link {
  flex: 1;
  padding-left: 8px;
}
.Footer-friend-link a {
  transition: all .4s ease;
  margin-right: 16px;
}
.Footer-friend-link a:last-of-type {
  margin-right: 0;
}
.Footer-friend-link a:hover {
  opacity: 1;
}
/* -- */
.Footer-copyright {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.Footer-copyright .info p, .Footer-copyright .link a {
  font-size: 12px;
  color: #fff;
  opacity: 0.4;
  line-height: 18px;
  position: relative;
  transition: all .4s ease;
}
.Footer-copyright .info p {
  margin-left: 10px;
}
.Footer-copyright .info p:first-child {
  margin-left: 0;
}
.Footer-copyright .link a {
  margin-left: 14px;
}
.Footer-copyright .link a:first-child {
  margin-left: 0;
}
.Footer-copyright .link a::before {
  content: "";
  position: absolute;
  width: 1px;
  left: -7px;
  height: 12px;
  top: 50%;
  margin-top: -6px;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.Footer-copyright .link a:first-child::before {
  display: none;
}
.Footer-copyright .link a:hover {
  opacity: 1;
}
/* 置顶 */
.backTop {
  display: none;
  right: 40px;
  bottom: 60px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 19px;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 8px) 0%, 100% 8px, 100% 100%, 8px 100%, 0% calc(100% - 8px));
  text-align: center;
  position: fixed;
  cursor: pointer;
  z-index: 9999;
  background: #4880D4;
}
.backTop::after {
  content: "\e684";
  font-family: "icon";
}
@media all and (max-width:1590px) {
  .backTop {
    right: 30px;
    bottom: 40px;
  }
}
@media all and (max-width:640px) {
  .backTop {
    right: 8px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-size: 20px auto;
  }
}
/* 视频弹窗 */
.popVideo {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  top: 0;
  left: 0;
}
.popVideo-items {
  width: 1000px;
  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% 32px);
  margin-left: auto;
}
.popVideo-video iframe {
  width: 100%;
  height: 500px;
}
.popVideo-close {
  width: 40px;
  height: 40px;
  right: -40px;
  top: -40px;
  line-height: 40px;
  opacity: 0.7;
  text-align: center;
  position: absolute;
  z-index: 3;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: all .6s ease;
}
.popVideo-close:hover {
  opacity: 1;
}
.popVideo.active {
  display: flex;
}
.popVideo.active .popVideo-items {
  animation: popVideRun 1s ease both .4s;
}
@keyframes popVideRun {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media all and (max-width:1100px) {
  .popVideo-items {
    width: 92%;
  }
  .popVideo-close {
    right: -8px;
    font-size: 18px;
  }
  .popVideo-video iframe {
    height: 400px;
  }
}
@media all and (max-width:640px) {
  .popVideo-video iframe {
    height: 200px;
  }
}
/* 中间+共用部分 */
.Container-wrapper {
  width: 100%;
  position: relative;
  background: #fff;
  z-index: 4;
}
.contain {
  width: 1560px;
  margin: 0 auto;
}
.section {
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* 咨询 */
.getConsult {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  z-index: 9;
}
.getConsult-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.getConsult .contain {
  position: relative;
  z-index: 4;
  align-items: center;
  justify-content: center;
}
.getConsult .name {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  display: flex;
  align-items: center;
  font-family: "PingFangSC-Medium", "AM", "noto sans", sans-serif;
}
.getConsult .name h2 {
  margin-right: 20px;
}
.getConsult .link {
  margin-left: 30px;
}
/* 加载 */
.loading {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999999;
  overflow: hidden;
}
.loading-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  overflow: hidden;
  transition: background 1s ease-in-out, transform 1s ease-in-out 1s;
}
.loading-mask img {
  width: 3840px;
  height: 2160px;
  position: absolute;
  max-width: none;
  top: 50%;
  left: 50%;
  margin: -1080px 0 0 -1920px;
}
.loading-mix {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-mix-wrap {
  width: 100%;
}
.loading-box {
  position: relative;
  width: 530px;
  height: 612px;
  z-index: 4;
  margin: 0 auto;
}
.loading-line {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: opacity .6s ease;
}
.loading-line > div {
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-line .line1 {
  width: 530px;
  height: 612px;
  margin: -306px 0 0 -265px;
}
.loading-line .line2 {
  width: 356px;
  height: 410px;
  margin: -206px 0 0 -180px;
}
.loading-line > div svg {
  width: 100%;
}
.loading-line > div i {
  position: absolute;
  left: -6px;
  transform: translate3d(0, 0, 0);
  width: 12px;
  height: 14px;
  background: url('../images/loadingicon.png') no-repeat center/100% auto;
}
.loading-line .line1 i {
  top: -5px;
}
.loading-line .line2 i {
  top: -7px;
}
.loading-bar {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity .6s ease;
}
.loading-bar > div {
  position: absolute;
  opacity: 0;
}
.loading-bar > div i {
  position: absolute;
  background: #4880D4;
}
.loading-bar > div i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  top: -6px;
  background: url('../images/loadingicon.png') no-repeat center/100% auto;
}
.loading-bar .bar1 {
  left: 0;
  top: 153px;
  width: 304px;
  height: 1px;
  transform-origin: left center;
  transform: rotate(30deg);
}
.loading-bar .bar1 i {
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
}
.loading-bar .bar1 i::after {
  right: -8px;
  transform: rotate(-30deg);
}
.loading-bar .bar2 {
  right: 2px;
  top: 153px;
  width: 304px;
  height: 1px;
  transform-origin: right center;
  transform: rotate(-30deg);
}
.loading-bar .bar2 i {
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
}
.loading-bar .bar2 i::after {
  left: -8px;
  transform: rotate(30deg);
}
.loading-bar .bar3 {
  left: 263px;
  bottom: 2px;
  width: 1px;
  height: 304px;
}
.loading-bar .bar3 i {
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
}
.loading-bar .bar3 i::after {
  right: -6px;
}
@keyframes loadingBarW {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loadingBarH {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.loading-logo {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 50px;
  text-align: center;
  transition: opacity 1s ease-in-out;
}
.loading-logo svg {
  width: 150px;
}
.loading.active .loading-mask {
  background: transparent;
  transform: scale(4);
}
.loading.active .loading-logo {
  opacity: 0;
}
@media all and (max-width:1590px) {
  .loading-box {
    width: 424px;
    height: 490px;
  }
  .loading-line .line1 {
    width: 424px;
    height: 490px;
    margin: -245px 0 0 -212px;
  }
  .loading-line .line2 {
    width: 285px;
    height: 328px;
    margin: -164px 0 0 -143px;
  }
  .loading-bar .bar1, .loading-bar .bar2 {
    top: 123px;
    width: 242px;
  }
  .loading-bar .bar3 {
    left: 210px;
    height: 243px;
  }
  .loading-mask img {
    width: 3072px;
    height: 1728px;
    margin: -864px 0 0 -1536px;
  }
  .loading-logo {
    margin-top: 40px;
  }
  .loading-logo svg {
    width: 120px;
  }
}
@media all and (max-width:640px) {
  .loading-box {
    width: 318px;
    height: 367px;
  }
  .loading-line .line1 {
    width: 318px;
    height: 367px;
    margin: -184px 0 0 -159px;
  }
  .loading-line .line2 {
    width: 214px;
    height: 246px;
    margin: -123px 0 0 -107px;
  }
  .loading-bar .bar1, .loading-bar .bar2 {
    top: 91px;
    width: 182px;
  }
  .loading-bar .bar3 {
    left: 157px;
    height: 182px;
  }
  .loading-mask img {
    width: 2304px;
    height: 1296px;
    margin: -648px 0 0 -1152px;
  }
  .loading-logo svg {
    width: 100px;
  }
}
/* 按钮 */
.commonLink {
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 7px) 0%, 100% 7px, 100% 100%, 7px 100%, 0% calc(100% - 7px));
  width: 120px;
  line-height: 1;
  height: 40px;
  font-size: 14px;
  color: #666;
  transition: all .4s ease;
  overflow: hidden;
  position: relative;
}
.commonLink::before, .commonLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
.commonLink::before {
  height: 100%;
  background: url('../fonts/bgkk.svg') no-repeat center/100% auto;
  transition: all .4s ease;
}
.commonLink::after {
  height: 0;
  opacity: 0;
  background: #4880D4;
  transition: height .4s ease, opacity .1s ease .4s;
}
.commonLink span {
  position: relative;
  z-index: 3;
}
.commonLink:hover {
  color: #fff;
}
.commonLink:hover::before {
  background-image: url('../fonts/bgkkh.svg');
}
.commonLink:hover::after {
  opacity: 1;
  height: 100%;
  transition: height .4s 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 .4s 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: #4880D4;
}
@media all and (max-width:640px) {
  .commonLink {
    width: 108px;
    height: 36px;
  }
}
.commonLink.other {
  margin-left: 16px;
}
.commonLink.other::after {
  width: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  transition: width .4s ease, opacity .1s ease .4s;
}
.commonLink.other:hover::after {
  opacity: 1;
  width: 100%;
  transition: width .4s ease .1s, opacity .1s ease;
}
.ComXuan {
  position: fixed;
  right: 12px;
  display: flex;
  z-index: 9;
  flex-direction: column;
  justify-content: center;
  bottom: 14%;
}
.ComXuan_b {
  width: 50px;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
  background-color: #969696;
  border-radius: 50%;
  height: 50px;
  margin-top: 15px;
  transition: all .4s ease;
}
.ComXuan_b:hover {
  background-color: #4880D4;
}
.ComXuan_b a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold
}
.ComXuan_b i {
  font-size: 20px;
  font-weight: bold;
}
.ComXuan_T {
  width: 50px;
  height: 50px;
  background: #4880D4;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: all .4s ease;
}
.ComXuan_T:hover {
  background-color: #969696;
}
.ComXuan_T a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.ComXuan_T a > img {
  width: 30px;
  height: 100%;
}
.ComXuan_T_Xing {
  background: url(../fonts/comxuan_t_xing.svg)center no-repeat;
  background-size: contain;
  width: 56px;
  height: 64px;
  position: absolute;
  top: -32px;
  left: 0px;
}
.ComXuan_T_Xing a {
  margin-top: 0px !important;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ComXuan_T_Xing a img {
  height: auto;
  width: auto;
}
.ComXuan_T .ER_max {
  position: absolute;
  left: -170px;
  bottom: -30px;
  display: none;
  width: 180px;
}
.ComXuan_T .ER_max > div {
  width: 156px;
  height: 178px;
  background: #FFFFFF;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
}
.ComXuan_T .ComXuan_T_img > img:nth-child(1) {
  position: absolute;
  opacity: 1;
  transition: all .4s ease;
}
.ComXuan_T .ComXuan_T_img > img:nth-child(2) {
  opacity: 0;
  transition: all .4s ease;
}
.ComXuan_T .ComXuan_T_img:hover > img:nth-child(1) {
  opacity: 0;
}
.ComXuan_T .ComXuan_T_img:hover > img:nth-child(2) {
  opacity: 1;
}
.ER_Phone {
  position: absolute;
  left: -215px;
  top: -10px;
  display: none;
  width: 220px;
}
.ER_Phone > div {
  width: 200px;
  height: 64px;
  background: #FFFFFF;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 10px;
}
.ER_Phone div {
  text-align: center;
}
.ComXuan {
  animation: ComXuan 1s ease;
}
@keyframes ComXuan {
  0% {
    right: -100px;
  }
  100% {
    right: 12px;
  }
}
.huizi {
  color: #B7B7B7 !important;
}
.fex {
  display: flex
}
.yuan5 {
  border-radius: 5px;
  overflow: hidden
}
.link-setion {
  position: relative;
}
.link-setion a {
  display: block;
}
.link-setion .link-img img {
  display: block;
  width: 100%;
}
.link-setion .link-img-noimg {
  min-height: 230px;
  height: auto !important;
  _height: 230px;
  background-color: #dd5189;
}
.link-name-default {
  position: absolute;
  left: 20px;
  top: 20px;
  opacity: 1;
  filter: alpha(opacity=100);
  padding-bottom: 5px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.link-name-a {
  position: absolute;
  left: 0px;
  top: 10%;
  width: 100%
}
.hg0 {
  line-height: 0px;
}
.link-name-default h3 {
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  line-height: normal;
}
.link-setion-text {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  color: #fff;
  text-align: center;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.link-setion-text h3 {
  margin: 0 20px 15px;
  margin-top: -25px;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  line-height: normal;
  transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.link-setion-text p {
  margin: 0 20px 15px;
  margin-top: -55px;
  font-size: 13px;
  font-weight: normal;
  color: #fff;
  line-height: normal;
  transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.link-setion-text .link-more {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-top: 15px;
  padding: 3px 15px;
  border: 1px solid #fff;
  font-size: 13px;
}
.link-setion .opacity-overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  background: #004f99;
  opacity: 0;
  filter: alpha(opacity=0);
  _height: expression((this.parentElement.clientHeight) +'px');
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.link-setion a:hover .link-name-default {
  opacity: 1;
  filter: alpha(opacity=1);
}
.link-setion a:hover .link-setion-text {
  opacity: 1;
  filter: alpha(opacity=100);
}
.link-setion a:hover .link-setion-text h3 {
  margin-top: 0px;
}
.link-setion a:hover .link-setion-text p {
  margin-top: 0px;
}
.link-setion a:hover .opacity-overlay {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.Herader-list {
  display: flex;
  justify-content: center;
}
.Herader-list_title {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}
.Herader-list_title .img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  line-height: 0;
  display: flex;
  align-items: center;
}
.Herader-list_title .text {
  color: #000;
  font-weight: bold;
  font-size: 16px;
}
.Herader-list li {
  padding: 0px 50px;
}
.Herader-list li a {
  color: #333;
  margin-bottom: 0px;
  font-size: 14px;
  height: auto;
  margin-bottom: 20px;
}
.Herader-list li a:hover {
  background-color: #fff;
  color: #4880D4;
}
.Herader-list li a:last-child {
  margin-bottom: 0px;
}
.Herader-list ul {
  display: flex;
}
.Header-drop_mb {
  display: none;
}
.Header-navbar li .Header-drop {
  left: 0vw;
  padding: 40px 190px;
  position: fixed;
  margin-left: 0px;
  width: 100vw;
}
.Header-navbar li .Header-drop a {
  height: auto;
  display: block;
  justify-content: flex-start;
  width: auto;
}
.Header-navbar li .Header-drop a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #4880D4;
}
.Header-drop_btn {
  display: flex;
  align-items: center;
  font-size: 16px !important;
  width: fit-content !important;
}
.Header-drop_btn i {
  margin-left: 10px;
  font-size: 12px;
  transition: all .4s ease;
}
.Header-drop_btn:hover i {
  margin-left: 15px;
}
.Header-drop_list {
  width: 100%;
  position: relative;
  padding-left: 145px;
}
.Header-drop_list .title {
  position: absolute;
  top: 0px;
  left: 0px;
}
.Header-drop_HOT {
  color: #FF0000;
  font-size: 14px;
  margin-left: 6px;
}
.list-cont.lt1 {
  width: 100%;
  background-color: #F0F3F9;
  padding: 12px;
}
.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: 12px 0px 10px 0px;
}
.list-cont.lt1 .list-title .list-title_li li a {
  width: auto;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  display: block;
}
.Header-drop_list .list .name {
  color: #4880D4;
}
.list-title_li.ly1 li {
  margin-bottom: 10px;
  margin-right: 10px;
  width: calc(100% - 10px);
}
.list-title_li.ly2 li {
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc(100%/2 - 10px);
}
.list-title_li.ly1 ul {
  margin-bottom: -10px;
  margin-right: -10px;
}
.list-title_li.ly2 ul {
  margin-bottom: -10px;
  margin-right: -10px;
}
.list-title_li.ly3 ul {
  margin-bottom: -10px;
  margin-right: -10px;
}
.list-title_li.ly3 li {
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc(100%/3 - 10px);
}
.list-title_li.ly4 ul {
  margin-bottom: -10px;
  margin-right: -10px;
}
.list-title_li.ly4 li {
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc(100%/4 - 10px);
}
.list-cont.lt1 .list-title {
  flex-wrap: nowrap;
}
.list-cont.lt1 .list-title .list-title_li {
  margin-right: 50px;
}
.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: #4880D4;
}
.list-cont.lt1 .list-title .list-title_li li a.not {
  pointer-events: none;
}
.Header-drop_list .list2 .list2-muen {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.Header-drop_list .list2 .list2-muen > li {
  margin-right: 10px;
}
.Header-drop_list .list2 .list2-muen > li:last-child {
  margin-right: 0px;
}
.Header-drop_list .list2 .list2-btn {
  color: #4880D4;
}
.Header-drop_list .list2 .list2-btn i {
  font-size: 12px;
  margin-left: 10px;
  transition: all .4s ease;
}
.Header-drop_list .list2 .list2-btn:hover i {
  margin-left: 15px;
}
.Header-drop_list .list2 .list2-btn.not i {
  display: none;
}
.Header-drop_list .list2 .list2-btn.not {
  pointer-events: none;
}
.list-cont .list-title {
  flex-wrap: nowrap;
}
.list-cont .list-title.ly2 {
  margin-right: -24px;
}
.list-cont .list-title.ly2 .list-title_li {
  width: calc(100%/2 - 24px);
  margin-right: 24px;
}
.list-cont .list-title.ly3 {
  margin-right: -24px;
}
.list-cont .list-title.ly3 .list-title_li {
  width: calc(100%/3 - 24px);
  margin-right: 24px;
}
.list-cont .list-title.Dna li {
  margin-right: 50px;
}
.list-cont .list-title.Dna li:last-child {
  margin-right: 0px;
}
.Header-navbar li:nth-child(2) .Header-drop {
  overflow-y: auto;
}
.Header-navbar li:nth-child(2) .Header-drop::-webkit-scrollbar {
  width: 2px;
}
.Header-navbar li:nth-child(2) .Header-drop::-webkit-scrollbar-thumb {
  background: #4880D4;
}
.Header-navbar li:nth-child(2) .Header-drop::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.list-cont_title {
  color: #000 !important;
  font-family: "AM" !important;
}
.list-cont_title a {
  font-family: "AM" !important;
}
a.list-cont_title:hover {
  color: #4880D4 !important;
}
.Header-drop_mb {
  display: none;
}
.Header_gu {
  float: left;
  height: 80px;
  display: flex;
  padding-left: 30px;
  align-items: center;
  opacity: .7;
  color: #fff;
  position: relative;
  font-weight: 300;
  transition: all .4s ease;
}
.Header_gu::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 1px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  transition: all .4s ease;
}
.Footer-navbar li {
  position: relative;
}
.Footer-navbar li.on .Footer-drop {}
.Footer-navbar li .Footer-drop {
  overflow: hidden;
  position: relative;
  transition: all .4s ease;
}
.Footer-navbar li .btn {
  position: absolute;
  bottom: -25px;
  left: 0px;
  font-size: 10px;
  width: 100%;
  height: 25px;
  color: #fff;
  opacity: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  letter-spacing: 10px;
}
.Footer-navbar li.on .btn {
  opacity: 1;
}
.Footer-navbar li.active .btn {
  transform: rotate(-180deg);
}
.Footer-navbar li.active .Footer-drop {
  height: auto !important;
}
.ltbulu {
  color: #4880D4 !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: #4880D4 !important;
}
.pt80 {
  padding-top: 64px;
}
.pb80 {
  padding-bottom: 64px;
}
.pt90 {
  padding-top: 80px;
}
.pb90 {
  padding-bottom: 80px;
}
.pt100 {
  padding-top: 100px;
}
.pb100 {
  padding-bottom: 100px;
}
.bodyScroll .Header_gu {
  color: #333;
}
.bodyScroll .Header_gu::before {
  background-color: #333;
}
.noLucency .Header_gu {
  color: #333;
}
.noLucency .Header_gu::before {
  background-color: #333;
}
.Herader-list li a {
  padding-left: 30px;
  justify-content: flex-start;
}
.Header_gu {
  display: none;
}
.Header-logo img.IMB {
  display: none;
}
.Header-drop > a {
  padding: 0px 32px;
  font-size: 14px;
  color: #333;
  justify-content: flex-start;
}
.Header-navbar li .Header-drop {
  margin-left: 0px !important;
}
.Header-drop_list .list2 .list2-muen > li:last-child {
  width: 280px;
}
.Header-navbar li .Header-drop .Header-drop-cont {
  max-width: 1550px;
  margin: 0px auto;
}
.Header-drop_xiala {
  display: none;
}
.Footer-navbar li .btn {
  font-size: 14px;
  letter-spacing: 3px;
  color: #fff;
  transition: all .4s ease;
  bottom: -18px;
}
.Footer-navbar li .btn:hover {
  color: #fff;
}
.ComXuan_b i {
  transition: all .4s ease;
}
.apply .Header-t {
  box-shadow: none;
}
.apply .Header-t:hover {
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}
/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
  /* 1600 × (900) */
  .list-cont.lt1 .list-title .list-title_li {
    margin-right: 20px;
  }
  .Header-navbar > ul > li {
    padding: 0px 18px;
  }
  .Header-navbar li .Header-drop {
    padding: 20px 120px;
  }
}
@media all and (max-width:1590px) {
  /* 1440 × (700)  */
  .contain {
    width: 1280px;
  }
  .Header-navbar > ul > li {
    padding: 0 16px;
  }
  .getConsult {
    padding: 48px 0;
  }
  .getConsult .name {
    font-size: 28px;
  }
  .Footer-items {
    padding: 60px 0 50px;
  }
  .Footer-navbar {
    padding: 0 70px 0 80px;
  }
  .FooterBlock {
    height: 524px;
  }
  .list-cont.lt1 .list-title {
    margin-bottom: -20px;
  }
  /* .list-cont.lt1 .list-title .list-title_li{width: calc(100%/3 - 20px);margin-bottom: 20px;} */
  .Header-drop_list .list2 .list2-muen > li {
    margin-bottom: 10px;
  }
  .Header-drop-cont > div {
    margin-right: 15px;
  }
  .list-cont.lt1 {
    padding: 12px 12px 30px 12px;
  }
  .Header-drop_list .list2 .list2-btn {
    display: flex !important;
  }
  .Header-navbar > ul {
    padding-left: 120px;
  }
  .Header-navbar li .Header-drop {
    padding: 20px 2.5%;
  }
}
@media all and (max-width:1380px) {
  .Header-navbar li .Header-drop {
    padding: 20px 2%;
  }
}
@media all and (max-width:1350px) {
  /* 1280 */
  .Header-drop_list {
    padding-left: 90px;
  }
  .Header-navbar li:nth-child(2) .Header-drop {
    padding: 40px;
  }
  .Header-logo {
    width: 250px;
  }
  .Header-drop_list .list2 .list2-muen > li:last-child {
    width: 310px;
  }
}
@media all and (max-width:1270px) {
  /* 1152 × (700) */
  .contain {
    width: 960px;
  }
  .Header-navbar > ul > li {
    padding: 0 10px;
  }
  .getConsult {
    padding: 36px 0;
  }
  .getConsult .name {
    font-size: 24px;
  }
  .getConsult .link {
    margin-left: 24px;
  }
  .getConsult .name h2 {
    margin-right: 16px;
  }
  .Footer-items {
    padding: 56px 0 42px;
  }
  .Footer-navbar {
    padding: 0 40px 0 40px;
  }
  .Footer-info .contact {
    margin-top: 24px;
  }
  .Footer-info .more {
    margin-top: 18px;
  }
  .Footer-drop {
    margin-top: 16px;
  }
  .FooterBlock {
    height: 508px;
  }
  .Herader-list li {
    padding: 0px 50px;
  }
  .Header-navbar > ul {
    padding-left: 50px;
  }
  .Header-logo {
    width: 100px;
  }
  .Header-logo img.h {
    display: none;
  }
  .Header-logo img.IMB {
    display: block;
  }
  .Header-navbar > ul {
    padding-left: 0px;
  }
  .Header-logo img.s {
    display: none;
  }
  .Header-drop > a {
    padding: 0px 24px;
  }
}
@media all and (max-width:1140px) {
  /* 1024 */
  .ComXuan {
    display: none;
  }
}
/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
  /* 平板设备 720 适配 */
  .Header-t {
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  }
  .Header-menu {
    color: #333;
  }
  .Header-logo img.s {
    opacity: 0;
  }
  .Header-logo img.h {
    opacity: 1;
  }
  .Header-logo, .Header-menu, .Header-apply {
    height: 60px;
  }
  .noLucency .Container-wrapper {
    margin-top: 60px;
  }
  .Header-apply {
    width: 116px;
  }
  .contain {
    width: 92%;
  }
  .Container-wrapper {
    margin-top: 0px;
  }
  .Header-t .contain {
    width: 100%;
    padding: 0;
  }
  .Header-logo {
    margin-left: 4%;
    width: 90px;
  }
  .Header-nav {
    display: flex;
  }
  .Header-navbar {
    display: none;
    position: absolute;
    width: 100%;
    margin-right: 0;
    height: calc(100vh - 60px);
    top: 60px;
    left: 0;
    background: #fff;
    padding: 0px;
    padding-bottom: 20px;
  }
  .Header-navbar::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .Header-navbar > ul {
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .Header-navbar > ul > li {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(32px);
    transition: all .4s ease;
    padding: 0 4%;
  }
  .Header-navbar > ul > li::after {
    content: "";
    position: absolute;
    width: 92%;
    left: 4%;
    bottom: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    display: none;
  }
  .Header-navbar.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .Header-menu {
    height: 55px;
    padding: 0%;
    font-size: 12px;
  }
  .Header-menu::before, .Header-menu::after {
    display: none !important;
  }
  .Header-arrow {
    display: block;
    width: 32px;
    height: 55px;
    line-height: 55px;
    font-size: 12px;
    font-style: normal;
    color: #333;
    text-align: right;
    position: absolute;
    z-index: 9;
    right: 4%;
    top: 0;
  }
  .Header-arrow::after {
    content: "\e61f";
    font-family: "icon";
    display: none;
  }
  .Header-arrow.active {
    transform: rotate(180deg);
    text-align: left
  }
  .Header-navbar > ul > li:hover .Header-menu {
    color: #333 !important;
  }
  .Header-navbar > ul > li.active .Header-menu {
    color: #4880D4 !important;
  }
  .Header-drop {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    box-shadow: none;
    padding: 0px;
  }
  .Header-drop a {
    height: 55px;
    line-height: 55px;
    justify-content: flex-start;
    padding-left: 10px;
  }
  .Header-drop > a:last-child {
    border-bottom: none;
  }
  .getConsult {
    padding: 24px 0;
  }
  .getConsult .name {
    font-size: 18px;
    width: 100%;
    justify-content: center;
  }
  .getConsult .name h2 {
    margin-right: 10px;
  }
  .getConsult .link {
    margin: 10px 0 0;
  }
  .Footer-items {
    padding: 34px 0 28px;
  }
  .Footer-info {
    width: 100%;
    text-align: left;
  }
  .Footer-info .contact {
    margin-top: 20px;
  }
  .Footer-info .more {
    margin-top: 12px;
  }
  .Footer-code {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .Footer-code .text {
    margin-top: 12px;
  }
  .Footer-navbar {
    width: 100%;
    display: none;
    flex: none;
  }
  .Footer-navbar > ul > li {
    width: 100% !important;
  }
  .Footer-menu {
    height: 40px;
    line-height: 40px;
    padding: 0 4%;
    position: relative;
  }
  .Footer-menu::after {
    content: "\e61f";
    font-family: "icon";
    text-align: center;
    font-weight: 400;
    width: 44px;
    height: 45px;
    line-height: 45px;
    font-size: 12px;
    color: #fff;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
  }
  .Footer-menu.active::after {
    transform: rotate(180deg);
  }
  .Footer-drop a {
    padding: 7px 4%;
  }
  .Footer-drop {
    display: none;
    margin-top: 0;
  }
  .Footer-friend {
    display: none;
  }
  .Footer-copyright {
    padding: 18px 0;
  }
  .Footer-copyright .info p {
    margin-left: 8px;
  }
  .Footer-copyright .info p, .Footer-copyright .link a {
    font-size: 12px;
    line-height: 20px;
  }
  .Footer-copyright .info, .Footer-copyright .link {
    width: 100%;
    justify-content: center;
  }
  .FooterBlock {
    display: none;
  }
  .Footer-wrapper {
    position: relative;
    height: auto;
    opacity: 1 !important;
    z-index: 9;
  }
  .Herader-list_title .img {
    display: none;
  }
  .Header-navbar li:nth-child(3) .Header-drop {
    position: static;
    padding: 0px;
  }
  .Herader-list li {
    padding: 0px 4%;
  }
  .Herader-list li a {
    margin-bottom: 0px;
    font-size: 14px;
  }
  .Herader-list_title {
    margin-bottom: 0px;
  }
  .Herader-list {
    display: block;
  }
  .Herader-list ul {
    display: block;
  }
  .Header-navbar li:nth-child(1) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(2) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(3) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(4) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(5) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(6) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(7) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(8) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(9) .Header-drop {
    position: static;
    padding: 0px;
    padding-left: 0px;
  }
  .Header-drop_btn {
    display: none !important;
  }
  .Header-drop_list .title {
    position: static;
  }
  .Header-drop_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;
  }
  .Header-navbar li:nth-child(2) .Header-drop a {
    padding: 0px;
  }
  .Header-drop_list {
    margin-right: 0px;
  }
  .Header-drop_list .list2 .list2-muen > li {
    width: 100%;
    margin-bottom: 0px;
    margin-right: 0px;
  }
  .Header-drop_list:last-child .list2 {
    display: none;
  }
  .Header-drop_list .list2 {
    margin-top: 0px;
  }
  .Header-drop_list .list2 .list2-muen > li .list-cont {
    display: none;
  }
  .Header-drop-cont > div {
    height: auto;
  }
  .Header-drop_mb {
    display: block;
  }
  .Header-navbar li:nth-child(2) .Header-drop a i {
    display: none;
  }
  .Header-navbar li:nth-child(2) .Header-drop a {
    color: #333 !important;
  }
  .Header-drop_list .list2 .list2-muen > li {
    padding-left: 4% !important;
  }
  .Header-drop_list .list .name {
    padding-left: 4% !important;
    font-size: 12px;
  }
  .Header-drop_mb a {
    padding-left: 4% !important;
  }
  .Header-drop_list {
    margin-top: 0px;
  }
  .Herader-list_title .text {
    font-size: 13px;
    font-weight: 300;
  }
  .Header-drop a {
    font-size: 13px;
  }
  .Header-drop_list .list2 .list2-btn {
    font-size: 12px;
  }
  .Header-drop_mb a {
    font-size: 12px;
  }
  .Herader-list li a {
    font-size: 12px;
  }
  .Header-nav {
    float: left;
  }
  .Header-logo {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
  }
  .Header-apply {
    width: 110px;
  }
  .Header-apply {
    font-size: 12px;
  }
  .Header-apply span {
    padding-left: 15px;
    background: url(../fonts/apply.svg) no-repeat left center/12px auto;
  }
  .Header-logo img.h {
    transform: scale(.7);
  }
  .Header_gu {
    height: 60px;
    display: none;
  }
  .Header-navbar li:nth-child(2) .Header-drop {
    width: 100%;
  }
  .Header-navbar > ul {
    padding-left: 0px;
  }
  .Header-navbar li:nth-child(2) .Header-drop a {
    height: 55px;
  }
  .Header-drop {
    border-top: 1px solid rgba(0, 0, 0, .1);
  }
  .Header-drop_list .list2 .list2-muen {
    flex-wrap: wrap;
  }
  .Header-drop_list .list2 .list2-muen li {
    width: 100%;
  }
  .Header-drop_mb li {
    width: 100%;
  }
  .Herader-list {
    display: none;
  }
  .Header-drop-cont {
    display: none;
  }
  .Header-drop_xiala {
    display: block;
  }
  .Header-navbar li:nth-child(2) .Header-drop {
    height: auto;
    overflow: hidden;
  }
  .Header-drop_xiala li {}
  .Header-drop_xiala li a {
    padding: 0px;
  }
  .Header-drop_xiala li .title {
    position: relative;
    border-bottom: none;
  }
  .Header-drop_xiala li .hide {
    display: none;
  }
  .Header-drop_xiala li .title i {
    display: block !important;
    width: 12px;
    height: 55px;
    font-size: 12px;
    line-height: 55px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
  }
  .Header-drop_xiala li .title i::after {
    content: "\e61f";
    font-family: "icon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .Header-drop_xiala li.active .title i::after {
    content: "\e61e";
  }
  .Header-drop_xiala li .hide > a {
    padding-left: 20px !important;
  }
  .Header-drop_xiala li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .Header-drop_xiala li:last-child {
    border-bottom: 0px;
  }
  .Header-drop_xiala li .hide-not {
    position: relative;
  }
  .Header-drop_xiala li .hide_list {
    position: relative;
  }
  .Header-drop_xiala li .hide_list i {
    display: block !important;
    width: 40px;
    height: 55px;
    font-size: 12px;
    line-height: 55px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 9;
    right: 0px;
    top: 0;
  }
  .Header-drop_xiala li .hide_list i::after {
    content: "\e61f";
    font-family: "icon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .Header-drop_xiala li .hide_list i.active::after {
    content: "\e61e";
  }
  .hide_list a {
    padding-left: 20px !important;
  }
  .Header-drop_xiala li .title i {
    width: 12px;
    height: 50px;
    font-size: 12px;
  }
  .Header-navbar li:nth-child(2) .Header-drop a {
    padding-left: 10px;
  }
  .hide-not_list a {
    padding-left: 30px !important;
  }
  .hide-not_list {
    display: none;
  }
  .hide-not {
    border-bottom: none !important;
    margin-right: 40px;
  }
  .hide-not::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: calc(100% + 40px);
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
  }
  .hide-not .hide-not_list:last-child {
    border-bottom: 0px;
  }
  .Header-drop a {
    font-size: 12px;
  }
  .Header-drop_xiala li .hide {
    border-top: 1px solid rgba(0, 0, 0, .1);
  }
  .Header-drop_xiala li a {
    padding-left: 10px;
  }
  .hide-not_list a.active {
    background-color: #f7f7f7;
  }
  .Header-menu {
    font-size: 13px;
  }
  .bodyNoDot .Header-drop {
    left: 0;
    right: auto;
    margin: 0 auto;
    transform: translateX(0);
  }
}
@media all and (max-width:640px) {
  /* 移动终端以上 360 适配 */
  .getConsult {
    padding: 25px;
  }
  .getConsult .link {
    margin-top: 12px;
  }
  .Footer-items {
    padding: 25px 0 20px;
  }
  .Footer-info .contact {
    margin-top: 15px;
  }
  .Footer-info .more {
    margin-top: 15px;
  }
  .Footer-code {
    margin-top: 15px;
  }
  .Footer-copyright {
    padding: 20px 0;
    padding-bottom: 40px;
  }
  .getConsult .name {
    font-size: 16px;
  }
  .Header-drop_list .list2 .list2-muen {
    flex-wrap: wrap;
  }
  .Header-drop_list .list2 .list2-muen li {
    width: 100%;
  }
  .Header-drop_mb li {
    width: 100%;
  }
  .Herader-list {
    display: none;
  }
  .Header-drop-cont {
    display: none;
  }
  .Header-drop_xiala {
    display: block;
  }
  .Header-navbar li:nth-child(2) .Header-drop {
    height: auto;
    overflow: hidden;
  }
  .Header-drop_xiala li {}
  .Header-drop_xiala li a {
    padding: 0px;
  }
  .Header-drop_xiala li .title {
    position: relative;
    border-bottom: none;
  }
  .Header-drop_xiala li .hide {
    display: none;
  }
  .Header-drop_xiala li .title i {
    display: block !important;
    width: 12px;
    height: 55px;
    font-size: 12px;
    line-height: 55px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
  }
  .Header-drop_xiala li .title i::after {
    content: "\e61f";
    font-family: "icon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .Header-drop_xiala li.active .title i::after {
    content: "\e61e";
  }
  .Header-drop_xiala li .hide > a {
    padding-left: 20px !important;
  }
  .Header-drop_xiala li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .Header-drop_xiala li:last-child {
    border-bottom: 0px;
  }
  .Header-drop_xiala li .hide-not {
    position: relative;
  }
  .Header-drop_xiala li .hide_list {
    position: relative;
  }
  .Header-drop_xiala li .hide_list i {
    display: block !important;
    width: 40px;
    height: 55px;
    font-size: 12px;
    line-height: 55px;
    font-style: normal;
    color: #333;
    text-align: center;
    position: absolute;
    z-index: 9;
    right: 0px;
    top: 0;
  }
  .Header-drop_xiala li .hide_list i::after {
    content: "\e61f";
    font-family: "icon";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
  }
  .Header-drop_xiala li .hide_list i.active::after {
    content: "\e61e";
  }
  .hide_list a {
    padding-left: 20px !important;
  }
  .ComXuan {
    display: block;
    z-index: 99999999999;
    transform: scale(.6);
    bottom: 30px;
    right: 12px;
  }
  .Header-drop_xiala li .hide .hide-not {
    padding-left: 30px;
  }
  .getConsult .name {
    font-size: 17px;
  }
  .getConsult .contain {
    width: 100%;
  }
  .Footer-items {
    padding: 40px 0 20px;
  }
  .Footer-info .contact {
    margin-top: 17px;
  }
  .Footer-info .contact h6 {
    margin-top: 8px;
  }
  .Footer-info .more {
    margin-top: 0px;
  }
  .Footer-info .more p {
    margin-top: 15px;
  }
  .Footer-code .text {
    margin-top: 10px;
  }
  .Footer-copyright .link {
    margin-top: 10px;
  }
  .Header-drop_xiala li .title i {
    width: 32px;
    height: 55px;
    font-size: 12px;
    text-align: right
  }
  .Header-navbar li:nth-child(2) .Header-drop a {
    padding-left: 10px;
  }
  .hide-not_list a {
    padding-left: 30px !important;
  }
  .hide-not_list {
    display: none;
  }
  .hide-not {
    border-bottom: none !important;
    margin-right: 40px;
  }
  .hide-not::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: calc(100% + 40px);
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
  }
  .hide-not .hide-not_list:last-child {
    border-bottom: 0px;
  }
  .Header-drop a {
    font-size: 13px;
  }
  .Header-drop_xiala li .hide {
    border-top: 1px solid rgba(0, 0, 0, .1);
  }
  .Header-drop_xiala li a {
    padding-left: 10px;
  }
  .hide-not_list {
    background-color: #f8f8f8;
    position: relative;
  }
  /* .hide-not_list:nth-child(3){background-color: #4880D4;} */
  .Header-drop_xiala li:nth-child(2) .hide i {
    display: none !important;
  }
  .Header-drop_xiala li:nth-child(3) .hide i {
    display: none !important;
  }
  .Header-drop_xiala li:nth-child(2) .hide {
    background-color: #f8f8f8;
  }
  .Header-drop_xiala li:nth-child(3) .hide {
    background-color: #f8f8f8;
  }
  /* .Header-drop_xiala:nth-child(2) li:nth-child(1) .hide{background-color: #f8f8f8;}
    .Header-drop_xiala:nth-child(2) li:nth-child(1) .hide i{display: none !important;} */
  .Header-navbar > ul > li:nth-child(3) .Header-drop_xiala li .hide {
    background-color: #f8f8f8;
  }
  .Header-navbar > ul > li:nth-child(3) .Header-drop_xiala li .hide i {
    display: none !important;
  }
  /* .commonLink::after{opacity: 1;} */
  /* .hide-not_list::before{content: "";position: absolute;left: -4%;width: 100vw;height: 100%;background-color: #f8f8f8;top: 0px;z-index: 2;} */
  .Header-navbar {
    padding-bottom: 80px;
  }
  .Header-navbar .drop_xiala.active {
    border-bottom: 0px;
  }
  .Header-navbar > ul > li:nth-child(2) .Header-drop_xiala li:last-child .hide_list:last-child a::before {
    display: none
  }
  .Header-navbar > ul > li:nth-child(3) .Header-drop_xiala li:last-child .hide_list:last-child a::before {
    display: none
  }
}
/* 导航容器 */
.nav-container {
  border: 1px solid #fff;
  border-radius: 5px
}
/* 一级导航菜单 */
.main-nav {
  list-style: none;
  display: flex;
}
.main-nav li {
  position: relative;
}
/* 一级菜单项链接 */
.main-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  transition: background-color 0.3s ease;
  font-size: 13px;
}
.main-nav a:hover {}
/* 下拉菜单图标 */
.dropdown-icon {
  margin-left: 8px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
/* 一级下拉菜单 */
.dropdown {
  position: absolute;
  top: 104%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  min-width: 110px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown li {
  border-bottom: 1px solid #f1f1f1;
}
.dropdown li:last-child {
  border-bottom: none;
}
.dropdown a {
  color: #333;
  padding: 7px 12px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.dropdown a:hover {
  background-color: #f8f9fa;
  color: #2c3e50;
}
/* 二级下拉菜单 */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0 4px 4px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 101;
}
/* 触发下拉菜单显示 */
.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover > a .dropdown-icon {
  transform: rotate(180deg);
}
/* 触发二级下拉菜单显示 */
.has-subdropdown:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.has-subdropdown > a {
  position: relative;
}
.has-subdropdown > a:after {
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 0.8em;
  position: absolute;
  right: 10px;
  transition: transform 0.3s ease;
}
.has-subdropdown:hover > a:after {
  transform: translateX(3px);
}
/*-------------------------------------
   Columns - qhd-content & qhd-module
-------------------------------------*/
.qhd-content .column:after, .qhd-module .column:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  min-height: 0;
  visibility: hidden;
  *zoom: 1;
}
.qhd-content .column, .qhd-module .column {
  width: 100%;
}
.qhd-content .column .col-2-1, .qhd-content .column .col-3-1, .qhd-content .column .col-4-1, .qhd-content .column .col-4-2, .qhd-content .column .col-5-1, .qhd-content .column .col-3-2, .qhd-content .column .col-4-3, .qhd-content .column .col-5-2, .qhd-content .column .col-5-3, .qhd-content .column .col-5-4, .qhd-module .column .col-2-1, .qhd-module .column .col-3-1, .qhd-module .column .col-4-1, .qhd-module .column .col-4-2, .qhd-module .column .col-5-1, .qhd-module .column .col-3-2, .qhd-module .column .col-4-3, .qhd-module .column .col-5-2, .qhd-module .column .col-5-3, .qhd-module .column .col-5-4 {
  float: left;
  min-height: 1px;
  height: auto !important;
  _height: 1px;
}
/* default marg-per3 margin right 3% */
.qhd-content .column .col-2-1, .qhd-module .column .col-2-1 {
  width: 48.5%;
  margin-right: 3%;
}
.qhd-content .column .col-3-1, .qhd-module .column .col-3-1 {
  width: 31.3333%;
  margin-right: 3%;
}
.qhd-content .column .col-4-1, .qhd-module .column .col-4-1 {
  width: 22.75%;
  margin-right: 3%;
}
.qhd-content .column .col-5-1, .qhd-module .column .col-5-1 {
  width: 17.6%;
  margin-right: 3%;    z-index: 9999;
    position: relative;
}
.qhd-content .column .col-3-2, .qhd-module .column .col-3-2 {
  width: 65.6666%;
  margin-right: 3%;
}
.qhd-content .column .col-4-2, .qhd-module .column .col-4-2 {
  width: 48.5%;
  margin-right: 3%;
}
.qhd-content .column .col-4-3, .qhd-module .column .col-4-3 {
  width: 74.25%;
  margin-right: 3%;
}
.qhd-content .column .col-5-2, .qhd-module .column .col-5-2 {
  width: 38.2%;
  margin-right: 3%;
}
.qhd-content .column .col-5-3, .qhd-module .column .col-5-3 {
  width: 58.8%;
  margin-right: 3%;
}
.qhd-content .column .col-5-4, .qhd-module .column .col-5-4 {
  width: 79.4%;
  margin-right: 3%;
}
/*margin right 0%*/
.qhd-content .marg-per0 > .col-2-1, .qhd-module .marg-per0 > .col-2-1 {
  width: 50%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-3-1, .qhd-module .marg-per0 > .col-3-1 {
  width: 33.3333%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-4-1, .qhd-module .marg-per0 > .col-4-1 {
  width: 25%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-5-1, .qhd-module .marg-per0 > .col-5-1 {
  width: 20%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-3-2, .qhd-module .marg-per0 > .col-3-2 {
  width: 66.6666%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-4-2, .qhd-module .marg-per0 > .col-4-2 {
  width: 50%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-4-3, .qhd-module .marg-per0 > .col-4-3 {
  width: 75%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-5-2, .qhd-module .marg-per0 > .col-5-2 {
  width: 40%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-5-3, .qhd-module .marg-per0 > .col-5-3 {
  width: 60%;
  margin-right: 0;
}
.qhd-content .marg-per0 > .col-5-4, .qhd-module .marg-per0 > .col-5-4 {
  width: 80%;
  margin-right: 0;
}
/*margin right 2%*/
.qhd-content .marg-per2 > .col-2-1, .qhd-module .marg-per2 > .col-2-1 {
  width: 49%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-3-1, .qhd-module .marg-per2 > .col-3-1 {
  width: 32%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-4-1, .qhd-module .marg-per2 > .col-4-1 {
  width: 23.5%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-5-1, .qhd-module .marg-per2 > .col-5-1 {
  width: 18.4%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-3-2, .qhd-module .marg-per2 > .col-3-2 {
  width: 66%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-4-2, .qhd-module .marg-per2 > .col-4-2 {
  width: 49%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-4-3, .qhd-module .marg-per2 > .col-4-3 {
  width: 74.5%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-5-2, .qhd-module .marg-per2 > .col-5-2 {
  width: 38.8%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-5-3, .qhd-module .marg-per2 > .col-5-3 {
  width: 59.2%;
  margin-right: 2%;
}
.qhd-content .marg-per2 > .col-5-4, .qhd-module .marg-per2 > .col-5-4 {
  width: 79.6%;
  margin-right: 2%;
}
/*margin right 4%*/
.qhd-content .marg-per4 > .col-2-1, .qhd-module .marg-per4 > .col-2-1 {
  width: 48%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-3-1, .qhd-module .marg-per4 > .col-3-1 {
  width: 30.6667%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-4-1, .qhd-module .marg-per4 > .col-4-1 {
  width: 22%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-5-1, .qhd-module .marg-per4 > .col-5-1 {
  width: 16.8%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-3-2, .qhd-module .marg-per4 > .col-3-2 {
  width: 65.3333%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-4-2, .qhd-module .marg-per4 > .col-4-2 {
  width: 48%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-4-3, .qhd-module .marg-per4 > .col-4-3 {
  width: 74%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-5-2, .qhd-module .marg-per4 > .col-5-2 {
  width: 37.6%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-5-3, .qhd-module .marg-per4 > .col-5-3 {
  width: 58.4%;
  margin-right: 4%;
}
.qhd-content .marg-per4 > .col-5-4, .qhd-module .marg-per4 > .col-5-4 {
  width: 79.2%;
  margin-right: 4%;
}
/*margin right 5%*/
.qhd-content .marg-per5 > .col-2-1, .qhd-module .marg-per5 > .col-2-1 {
  width: 47.5%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-3-1, .qhd-module .marg-per5 > .col-3-1 {
  width: 30%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-4-1, .qhd-module .marg-per5 > .col-4-1 {
  width: 21.25%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-5-1, .qhd-module .marg-per5 > .col-5-1 {
  width: 16%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-3-2, .qhd-module .marg-per5 > .col-3-2 {
  width: 65%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-4-2, .qhd-module .marg-per5 > .col-4-2 {
  width: 47.5%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-4-3, .qhd-module .marg-per5 > .col-4-3 {
  width: 73.75%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-5-2, .qhd-module .marg-per5 > .col-5-2 {
  width: 37%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-5-3, .qhd-module .marg-per5 > .col-5-3 {
  width: 58%;
  margin-right: 5%;
}
.qhd-content .marg-per5 > .col-5-4, .qhd-module .marg-per5 > .col-5-4 {
  width: 79%;
  margin-right: 5%;
}
.qhd-content .column .last, .qhd-module .column .last {
  margin-right: 0;
  *float: right;
  *clear: right;
}
.m-0 {
  margin: 0 !important
}
.m-1 {
  margin: .25rem !important
}
.m-2 {
  margin: .5rem !important
}
.m-3 {
  margin: 1rem !important
}
.m-4 {
  margin: 1.5rem !important
}
.m-5 {
  margin: 3rem !important
}
.m-auto {
  margin: auto !important
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important
}
.mx-1 {
  margin-right: .25rem !important;
  margin-left: .25rem !important
}
.mx-2 {
  margin-right: .5rem !important;
  margin-left: .5rem !important
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important
}
.my-1 {
  margin-top: .25rem !important;
  margin-bottom: .25rem !important
}
.my-2 {
  margin-top: .5rem !important;
  margin-bottom: .5rem !important
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important
}
.mt-0 {
  margin-top: 0 !important
}
.mt-1 {
  margin-top: .25rem !important
}
.mt-2 {
  margin-top: .5rem !important
}
.mt-3 {
  margin-top: 1rem !important
}
.mt-4 {
  margin-top: 1.5rem !important
}
.mt-5 {
  margin-top: 3rem !important
}
.mt-auto {
  margin-top: auto !important
}
.me-0 {
  margin-right: 0 !important
}
.me-1 {
  margin-right: .25rem !important
}
.me-2 {
  margin-right: .5rem !important
}
.me-3 {
  margin-right: 1rem !important
}
.me-4 {
  margin-right: 1.5rem !important
}
.me-5 {
  margin-right: 3rem !important
}
.me-auto {
  margin-right: auto !important
}
.mb-0 {
  margin-bottom: 0 !important
}
.mb-1 {
  margin-bottom: .25rem !important
}
.mb-2 {
  margin-bottom: .5rem !important
}
.mb-3 {
  margin-bottom: 1rem !important
}
.mb-4 {
  margin-bottom: 1.5rem !important
}
.mb-5 {
  margin-bottom: 3rem !important
}
.mb-auto {
  margin-bottom: auto !important
}
.ms-0 {
  margin-left: 0 !important
}
.ms-1 {
  margin-left: .25rem !important
}
.ms-2 {
  margin-left: .5rem !important
}
.ms-3 {
  margin-left: 1rem !important
}
.ms-4 {
  margin-left: 1.5rem !important
}
.ms-5 {
  margin-left: 3rem !important
}
.ms-auto {
  margin-left: auto !important
}
.p-0 {
  padding: 0 !important
}
.p-1 {
  padding: .25rem !important
}
.p-2 {
  padding: .5rem !important
}
.p-3 {
  padding: 1rem !important
}
.p-4 {
  padding: 1.5rem !important
}
.p-5 {
  padding: 3rem !important
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important
}
.px-1 {
  padding-right: .25rem !important;
  padding-left: .25rem !important
}
.px-2 {
  padding-right: .5rem !important;
  padding-left: .5rem !important
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important
}
.py-1 {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important
}
.py-2 {
  padding-top: .5rem !important;
  padding-bottom: .5rem !important
}
.py-27 {
  padding-top: .75rem !important;
  padding-bottom: .75rem !important
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important
}
.pt-0 {
  padding-top: 0 !important
}
.pt-1 {
  padding-top: .25rem !important
}
.pt-2 {
  padding-top: .5rem !important
}
.pt-3 {
  padding-top: 1rem !important
}
.pt-4 {
  padding-top: 1.5rem !important
}
.pt-5 {
  padding-top: 3rem !important
}
.pe-0 {
  padding-right: 0 !important
}
.pe-1 {
  padding-right: .25rem !important
}
.pe-2 {
  padding-right: .5rem !important
}
.pe-3 {
  padding-right: 1rem !important
}
.pe-4 {
  padding-right: 1.5rem !important
}
.pe-5 {
  padding-right: 3rem !important
}
.pb-0 {
  padding-bottom: 0 !important
}
.pb-1 {
  padding-bottom: .25rem !important
}
.pb-2 {
  padding-bottom: .5rem !important
}
.pb-3 {
  padding-bottom: 1rem !important
}
.pb-4 {
  padding-bottom: 1.5rem !important
}
.pb-5 {
  padding-bottom: 3rem !important
}
.ps-0 {
  padding-left: 0 !important
}
.ps-1 {
  padding-left: .25rem !important
}
.ps-2 {
  padding-left: .5rem !important
}
.ps-3 {
  padding-left: 1rem !important
}
.ps-4 {
  padding-left: 1.5rem !important
}
.ps-5 {
  padding-left: 3rem !important
}
.gap-0 {
  gap: 0 !important
}
.gap-1 {
  gap: .25rem !important
}
.gap-2 {
  gap: .5rem !important
}
.gap-3 {
  gap: 1rem !important
}
.gap-4 {
  gap: 1.5rem !important
}
.gap-45 {
  gap: 2rem !important
}
.gap-5 {
  gap: 3rem !important
}
.font-655 {
  font-size: 6.55rem
}
.font-555 {
  font-size: 5.55rem
}
.font-455 {
  font-size: 4.55rem
}
.font-355 {
  font-size: 3.55rem
}
.font-255 {
  font-size: 2.55rem
}
.font-245 {
  font-size: 2.45rem
}
.font-235 {
  font-size: 2.25rem
}
.font-225 {
  font-size: 2.25rem
}
.font-215 {
  font-size: 2.15rem
}
.font-200 {
  font-size: 2rem
}
.font-195 {
  font-size: 1.95rem
}
.font-185 {
  font-size: 1.85rem
}
.font-175 {
  font-size: 1.75rem
}
.font-165 {
  font-size: 1.65rem
}
.font-155 {
  font-size: 1.55rem
}
.font-145 {
  font-size: 1.45rem
}
.font-135 {
  font-size: 1.35rem
}
.font-125 {
  font-size: 1.25rem
}
.font-120 {
  font-size: 1.2rem
}
.font-115 {
  font-size: 1.15rem
}
.font-110 {
  font-size: 1.1rem
}
.font-105 {
  font-size: 1.05rem
}
.font-100 {
  font-size: 1rem
}
.font-80 {
  font-size: .8rem
}
.font-85 {
  font-size: .85rem
}
.font-90 {
  font-size: .9rem
}
.font-95 {
  font-size: .95rem
}
.lead {
  font-weight: 300 !important;
  text-decoration: underline !important;
  color: #B7B7B7 !important;
  line-height: 2 !important;
  transition: all .4s ease;
}
.lead:hover {
  color: #666 !important
}
/* 多列图文 */
.portfolio-list {
  min-height: 20px;
}
.portfolio-list li {
  margin-bottom: 25px;
  text-align: center;
}
.portfolio-list-summary li {
  text-align: left;
}
.portfolio-img {
  margin-bottom: 10px;
  overflow: hidden;
}
.portfolio-img a {
  position: relative;
}
.portfolio-img a, .portfolio-img img {
  width: 100%;
  display: block;
  overflow: hidden;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-img .opacity-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
  background-color: #000;
  opacity: 0;
  filter: alpha(opacity=0);
  _height: expression((this.parentElement.clientHeight) +'px');
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.portfolio-img .icon-zoom {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  background: url(../images/icon-zoom.png) no-repeat center;
}
.txt08 {
  opacity: .85 !important
}
.portfolio-img .icon-video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  background: url(../images/icon-video.png) no-repeat center;
}
.portfolio-img a:hover .opacity-overlay {
  filter: alpha(opacity=70);
  opacity: 0.7;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.portfolio-img a:hover img {
  transform: scale(1.2, 1.2) rotate(10deg);
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-item:hover img, .product-item:hover img, .scrollable-item:hover img {
  transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.product-item {
  position: relative;
}
.product-list li {
  margin-bottom: 25px;
  text-align: center;
}
.product-item .portfolio-img {
  overflow: hidden;
  position: relative;
  margin-bottom: 13px;
}
.product-item .portfolio-text {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
.product-item .portfolio-text h2 {
  margin: 80px 20px 20px;
  line-height: normal;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
}
.product-list .col-2-1 .product-item .portfolio-text h2 {
  margin-top: 180px;
}
.product-list .col-3-1 .product-item .portfolio-text h2 {
  margin-top: 80px;
}
.product-list .col-4-1 .product-item .portfolio-text h2 {
  margin-top: 60px;
}
.product-list .col-5-1 .product-item .portfolio-text h2 {
  margin-top: 40px;
}
.product-list .col-5-1 .product-item .portfolio-text .icon-detail {
  width: 30px;
  height: 30px;
}
.product-item .portfolio-text .icon-detail {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 41px;
  height: 41px;
  background: url(../images/icon-detail.gif) no-repeat center;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  -moz-transition: -moz-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
}
.product-item .portfolio-text .icon-detail span {
  display: none;
}
.product-item .portfolio-text .price {
  color: #fff;
  margin-bottom: 20px;
}
.product-item a:hover .portfolio-text {
  display: block;
}
.product-item .portfolio-text:hover .icon-detail {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product-item .opacity-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
  background-color: #e92525;
  opacity: 0;
  filter: alpha(opacity=0);
  _height: expression((this.parentElement.clientHeight) +'px');
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.product-item a:hover .opacity-overlay {
  filter: alpha(opacity=90);
  opacity: 0.9;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.zuoxian {
  border-left: 1px solid #B7B7B7
}
.youxian {
  border-right: 1px solid #B7B7B7
}
.slide-link {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: transform 0.3s ease;
  width: max-content !important;
}
/* 基本的下划线效果，增强视觉反馈 */
.slide-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #4880D4;
  transition: width 0.3s ease;
}
/* 鼠标悬停时的效果 */
.slide-link:hover {
  transform: translateX(8px); /* 向右移动8px */
}
.slide-link:hover::after {
  width: 100%; /* 同时显示下划线 */
}
.wzjz {
  text-align: center !important
}
.yanseb6 {
  color: #B6B6B6;
}
.font-w300 {
  font-weight: 300
}
.module-full-screen-more {
  float: none;
  clear: both;
  margin-top: 20px;
  text-align: center;
}
.module-full-screen-more a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  line-height: 36px;
  padding: 0 50px;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.5s ease 0s;
  margin: 0 5px;
  border-radius: 25px;
}
.module-full-screen-more a:hover, .module-full-screen-more a:active {
  background-color: #4880D4;
  border-color: #4880D4;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}
/* banner轮播控制按钮 */
.swiper-button-prev, .swiper-button-next {
  color: white; /* 按钮颜色 */
  width: 45px;
  height: 95px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-size: 26px;
  font-weight: bold;
  line-height: 95px;
  text-align: center;
  transition: all 0.5s ease 0s;
}
.swiper-button-prev {
  left: -3px;
}
.swiper-button-next {
  right: -3px
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.6);
}
/* 底部标题导航 */
.swiper-title-nav {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 100%;
  display: flex;
  /*  justify-content: center;*/
  gap: 15px;
  z-index: 10;
}
.title-nav-item {
  color: #B6B6B6;
  cursor: pointer;
  padding: 5px 1px;
  /* background: rgba(0, 0, 0, 0.3);
            border-radius: 4px;*/
  transition: all 0.5s ease;
  text-decoration: inherit;
  border-bottom: 1px solid #B6B6B6;
  padding-bottom: 2px;
  display: inline-block;
  margin: 0 5px
}
.title-nav-item:hover, .title-nav-item.active {
  /*background: rgba(0, 0, 0, 0.6);*/ color: #FFF;
  border-bottom: 1px solid #fff;
}
.banner2 {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.swiper-container2 {
  width: 100%;
  height: 100%;
}
.banner-image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 隐藏移动端图片，在移动设备上可通过媒体查询显示 */
.banner-image2 .mb2 {
  display: none;
}
.banner-cont2 {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;z-index: 9999;
}
.white2 {
  color: white;
}
.contain2 {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.title2 {
  margin-bottom: 20px;
  line-height: 1.5;
}
.fs402 {
  font-size: 40px;
}
.title2 span {
  display: block;
}
/* 轮播控制按钮 */
/* 轮播控制按钮 - 固定在图片两侧中间位置 */
.swiper-button-prev2, .swiper-button-next2 {
  color: white; /* 按钮颜色 */
  width: 55px;
  height: 55px;
  border-radius: 50%;
  /* 关键定位设置 */
  position: absolute; /* 绝对定位 */
  top: 50%; /* 垂直方向居中 */
  transform: translateY(-50%); /* 精确居中对齐 */
  z-index: 10; /* 确保在图片上方显示 */
  margin: 0; /* 清除默认边距 */ border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 23px;
  transition: all 0.5s ease 0s;
}
/* 左侧按钮定位到左侧中间 */
.swiper-button-prev2 {
  left: 4%; /* 距离左侧边缘的距离，可根据需要调整 */
}
/* 右侧按钮定位到右侧中间 */
.swiper-button-next2 {
  right: 4%; /* 距离右侧边缘的距离，可根据需要调整 */
}
.swiper-button-prev2:hover, .swiper-button-next2:hover {
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
/* 底部标题导航 */
.swiper-title {
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.swiper-title-xq1 {
  position: absolute;
  top: 9%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.swiper-title-xq2 {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.swiper-title-nav2 {
  position: absolute;
  top: 18%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 45px;
  z-index: 10; /* 禁止换行并添加滚动条 */
  white-space: nowrap; /* 禁止子元素换行 */
  overflow-x: auto; /* 水平方向溢出时显示滚动条 */
  padding: 10px 0; /* 增加上下内边距，让滚动条更美观 */
}
.title-nav-item2 {
  color: #B6B6B6;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}
.title-nav-item2:hover, .title-nav-item2.active2 {
  color: #fff;
}
/* 全局样式 */
/* 整体容器容器样式 */
.sy-001-info {
  display: flex;
  align-items: center;
  justify-content: space-around
}
/* 型号名称部分样式 */
.model-name {
  text-align: left;
}
.model-name h1 {
  font-size: 36px;
  margin-bottom: 0px;
  line-height: 45px;
}
.model-name p {
  font-size: 16px;
}
.wzx {
  font-weight: 300
}
/* 参数项样式 */
.parameter-item {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
/* 右侧分割线 */
.parameter-item:after {
  content: '';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.nye .parameter-item:after{display:none !important}

.nye .parameter-item span {
    font-weight: 700;
}


/* 移除最后一个参数项的分割线 */
.parameter-item:nth-child(5):after {
  display: none; /* 隐藏最后一个的分割线 */
}
.parameter-item span {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
  font-weight: 300;
  text-align: left
}
.parameter-item p {
  font-size: 16px;
  font-weight: 300;
  text-align: left
}
/* 探索链接样式 */
.explore-link {
  display: inline-block;
  padding: 8px 35px;
  border: 1px solid white;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
  font-size: 16px;
}
.explore-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.explore-link2 {
  display: inline-block;
  padding: 5px 35px;
  border: 1px solid white;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
  width: max-content;
  margin: auto
}
.explore-link2:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.gaoduanhover {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.hei000 {
  color: #000 !important
}
.hei999 {
  color: #999 !important
}
.hei666 {
  color: #666 !important
}
.hei333 {
  color: #333 !important
}
.gaoduanhover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.light-hover {
  transition: all 0.3s ease;
}
.light-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
}
/* 主内容区样式 */
.xq-main {
  max-width: 1450px;
  margin: 0 auto;
}
/* 图片容器样式 */
.img-container {
  position: relative;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 1.5rem 0;
}
.img-tab {
  height: 100%;
}
.img-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/* 标签切换按钮样式 */
.tabs {
  border-radius: 0.5rem;
  padding: 0.25rem;
  display: flex;
  gap: 20px;
}
.tab-btn {
  flex: 1;
  padding: 0.75rem 0;
  font-weight: 500;
  border-top: 2px solid #999;
  text-align: left;
  cursor: pointer
}
.tab-btn.active {
  color: #fff;
  border-top-color: #fff;
}
.tab-btn.inactive {
  color: #999;
}
.tab-icon {
  margin-right: 0.25rem;
}
/* 动画效果 */
.fade-in {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 辅助类 */
.hidden {
  display: none;
}
.not-animated {
  opacity: 0;
}
.jiacu {
  font-weight: bold
}
/* 清除浮动的clearfix类 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.boo-xian {
  border-bottom: 1px solid #999;    
}
.font-999 {
  color: #999 !important
}
.feiji-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  z-index: 9999999;
  position: relative
}
.feiji-tab-item {
  cursor: pointer;
  position: relative;
  padding: 8px 8%;
  border-bottom: 2px solid #999;
}
.feiji-tab-item.active {
  border-bottom-color: #fff;
}
.tabs21 li {
  list-style-type: none;
}
.tabs-content21 .item {
  display: none;
  transition: all 0.5s ease 0s;
}
.tabs-content21 .item.active {
  display: block;
}
.youxiajiao {
  position: absolute;
  right: -2%;
  bottom: 10%;
  height: 260px
}
.txtjz {
  text-align: center !important
}
.module-full-screen-bg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lantxt {
  color: #307FD9 !important;
}
.lh12 {
  line-height: 1.2 !important
}
.juzhong {
  text-align: center
}
.pin7050 {
  padding: 70px 65px;
  box-sizing: border-box;
}
.pin30 {
  padding: 30px 20px;
  box-sizing: border-box;
}
.yinhover {
  border-radius: 10px; /* 圆润边角，柔和质感 */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* 基础阴影，轻微悬浮感 */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* 缓动曲线：先慢后快再慢，更自然 */
  cursor: pointer;
  position: relative;
}
.yinhover:hover {
  transform: translateY(-4px); /* 上浮8px，不夸张 */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* 阴影加深，增强浮起感 */
}
.baifff {
  color: #fff !important
}
.fehh {
  display: flex;
  flex-wrap: wrap;
}
/* 弹出层样式：基础隐藏状态 */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease; /* 整体淡入淡出 */
  display: flex;
  align-items: center; /* 辅助垂直居中 */
  justify-content: center; /* 辅助水平居中 */
}
/* 显示状态 */
.image-modal.active {
  visibility: visible;
  opacity: 1;
}
/* 遮罩层 */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: background 0.3s ease;
}
/* 图片容器：核心优化 - 固定最大宽度+精准居中 */
.modal-content {
  position: relative; /* 作为关闭按钮的定位参考 */
  max-width: 550px; /* 固定最大宽度，满足需求 */
  width: 90%; /* 小屏幕时自适应宽度（不超过屏幕90%） */
  max-height: 80vh; /* 限制最大高度，避免超出屏幕 */
  transform: scale(0.9); /* 初始缩放，用于动画 */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* 弹性缩放动画 */
}
/* 显示时的缩放+居中效果（无需额外定位，依赖父级flex居中） */
.image-modal.active .modal-content {
  transform: scale(1);
}
/* 图片样式：适配容器，避免变形 */
.modal-img {
  width: 100%; /* 撑满容器宽度 */
  max-height: 70vh; /* 限制图片最大高度，预留关闭按钮空间 */
  object-fit: contain; /* 保持图片比例，不裁剪（避免关键信息丢失） */
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2); /* 加深阴影，增强层次感 */
}
/* 关闭按钮：优化位置，确保不偏移 */
.modal-close {
  position: absolute;
  top: -40px; /* 位于图片容器上方 */
  right: -25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.2s ease;
  z-index: 1; /* 确保按钮在最上层 */
}
/* 关闭按钮hover效果优化 */
.modal-close:hover {
  transform: scale(1.1);
  color: #f0f0f0; /* 轻微变色，反馈更明显 */
}

.item p {
  /* 将所有文本转换为小写，无论原始大小写 */
    text-transform: uppercase;
}


.lh20{line-height:5px;}
.pin3020s{padding: 15px 15px;}
@media (max-width: 768px) {
.pin3020s{padding:10px;}
  .modal-content {
    width: 85%; /* 占屏幕90%宽度，避免边缘溢出 */
  }
  .modal-close {
    font-size: 38px; /* 小屏幕缩小按钮，避免遮挡 */
    top: -35px;
  }
  .pin30 {
    padding: 15px;
    box-sizing: border-box;
  }
  .pin7050 {
    padding: 20px 15px;
    box-sizing: border-box;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .youxiajiao {
    position: absolute;
    right: 0%;
    bottom: 10%;
    height: 150px;z-index: -1;
  }
  .wapnoflex {
    display: block !important
  }
  .swiper-title-xq2 {
    top: 22%;
  }
  .portfolio-list .column .col-2-1, .portfolio-list .column .col-3-1, .portfolio-list .column .col-4-1, .portfolio-list .column .col-5-1, .link-list .column .col-2-1, .link-list .column .col-3-1, .link-list .column .col-4-1, .link-list .column .col-5-1 {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .column .col-2-1, .column .col-3-1, .column .col-4-1, .column .col-4-2, .column .col-5-1, .column .col-3-2, .column .col-4-3, .column .col-5-2, .column .col-5-3, .column .col-5-4 {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .row2-svar .col-2-1, .row2-svar .col-3-1, .row2-svar .col-4-1, .row2-svar .col-5-1 {
    float: left;
    min-height: 1px;
    clear: right;
  }
  .row2-svar .col-3-1, .row2-svar .col-4-1, .row2-svar .col-5-1 {
    width: 48.5% !important;
    margin-right: 1% !important;
  }
  .swiper-title-nav2 {
    gap: 15px;
    width: 90%;
    justify-content: left;
    margin-left: 5%
  }
  .banner2 {
    margin-top: 55px;
  }
  .wapno {
    display: none !important
  }
  .banner-image2 .pc2 {
    display: none;
  }
  .banner-image2 .mb2 {
    display: block;
  }
  .fs402 {
    font-size: 28px;
  }
  .title-nav-item2 {
    padding: 0px;
  }
  .swiper-button-prev, .swiper-button-next {
    color: white; /* 按钮颜色 */
    width: 35px;
    height: 55px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    line-height: 55px;
    text-align: center;
    transition: all 0.5s ease 0s;
  }
  .swiper-title-nav {
    position: absolute;
    bottom: 10%;
    left: 0%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 1px;
    z-index: 10;
  }
  .font-245 {
    font-size: 1.85rem;
  }
  .banner-image .pc {
    display: none;
  }
  .banner-image .mb {
    display: block;
  }
  .fs40 {
    font-size: 28px;
  }
  .title-nav-item {
    padding: 2px 0px;
    font-size: 14px;
    margin: 0px;
  }
  .module-full-screen-more a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    line-height: 30px;
    padding: 0 25px;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.5s ease 0s;
    margin: 0 5px;
    border-radius: 25px;
  }
  .main-nav a {
    color: #666;
    padding: 4px 6px;
    font-size: 13px;
  }
  .nav-container {
    border: 1px solid #666;
  }
  .Header-apply {
    margin-right: 7px;
  }
  .dropdown {
    top: 120%;
    min-width: 98px;
  }
}
.bh:before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* 透明度可按需调整 */
  position: absolute;
  z-index: 18; display: none;
}
/*分页*/
.pager {
  text-align: center;
  margin: 20px 0;
}
.pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}
.pager ul li {
  display: inline-block;
}
.pager ul li a {
  padding: 5px 15px;
  border: #dddddd solid 1px;
  margin-left: -1px;
  display: inline-block;
}
.pager ul li a:hover {
  border-color: #70c4f3;
  background-color: #70c4f3;
  color: #FFF
}
.pager ul .active a {
  border: #3ea8e2 solid 1px;
  display: inline-block;
  background-color: #3ea8e2;
  color: #fff;
}
.pager ul a:not([href]):not([class]):hover {
  border: #dddddd solid 1px;
  background-color: #fff
}
.pager ul .active a:hover {
  color: #fff;
  border: #3ea8e2 solid 1px !important;
  background-color: #3ea8e2 !important
}