@font-face {
  font-family: Conv_DIN-Bold;
  src: url(/nuxt/resouces/fonts/DIN-Bold.35bec3e.eot);
  src: local("☺"), url(/nuxt/resouces/fonts/DIN-Bold.55d65d7.woff) format("woff"), url(/nuxt/resouces/fonts/DIN-Bold.75f4e07.ttf) format("truetype"), url(/nuxt/resouces/img/DIN-Bold.20720c3.svg) format("svg");
  font-weight: 400;
  font-style: normal
}

/* 公共颜色 */
:root{
  --main-color: #c6b180;
}

/* 间距 */
.main-pad-top-40 {
  padding-top: 40px;
}

.main-pad-bot-40 {
  padding-bottom: 40px;
}

/* 背景色 */
.main-background {
  background-color: #f5f5f5;
}
.main-background-2 {
  background-color: #f8f8f8;
}

/* 内容区域 */
.page-container {
  width: 100%;
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* 二级标题 */
.main-title{
  margin-bottom: 40px;
}
.main-title ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-title ul li {
  margin: 0 20px;
}

.main-title ul li a {
  display: block;
  font-size: 20px;
  color: #b8b8b8;
  transition: all 0.3s;
}

.main-title ul li:hover a,
.main-title ul li.active a {
  color: #373737;
}

/* 头部 */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 #eeeeee;
  transition: all linear .4s;
}

.header-placeholder {
  height: 80px;
}

.fullpage-header header {
  position: relative;
}

.fullpage-header .header-placeholder {
  display: none;
}

header .top {
  display: none;
  color: #ffffff;
  background-color: #1d1d1f;
}

header.showTop .top {
  display: block;
}

header.showTop+.header-placeholder {
  height: 110px;
}

header .top ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  height: 30px;
}

header .top ul li:nth-child(n+2) {
  margin-left: 25px;
}

header .top ul li a{
  display: flex;
  align-items: center;
}

header .top ul li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 0;
}

header .top ul li a .icon img{
  width: 14px;
  height: 14px;
}

header .top ul li a b {
  margin-left: 5px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 100;
}

header .bot {
  position: relative;
}

header .bot .page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .bot .showTopBtn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  overflow: hidden;
  cursor: pointer;
}

header .bot .showTopBtn:before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 70px;
  background-color: var(--main-color);
  border-radius: 50%;
  transform: translate(-50%, 0);
}

header .bot .showTopBtn span {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  transition: all .3s ease;
}

header .bot .showTopBtn span i {
  display: block;
  margin-top: -8px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #ffffff;
  border-right: 2px solid transparent;
  border-top: 2px solid transparent;
  border-bottom: 2px solid #ffffff;
  border-radius: 1px;
  transform: rotate(-45deg);
  transition: all .3s ease;
}

header.showTop .bot .showTopBtn span {
  transform: rotate(180deg);
}

header .bot .left-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .bot .left-wrap .logo img {
  width: 100px;
}

header .bot .left-wrap .logo:hover img{
  opacity: 0.9;
}

header .bot .left-wrap .logo img:nth-child(2){
  display: none;
}
 
header .bot .left-wrap ul{
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 55px;
}

header .bot .left-wrap ul li {
    position: relative;
}

header .bot .left-wrap ul li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background-color: var(--main-color);
    opacity: 0;
    transition: all 0.3s;
}

header .bot .left-wrap ul li.active:before{
    opacity: 1;
}

header .bot .left-wrap ul li.active a{
    color: var(--main-color) !important;
}

header .bot .left-wrap ul li.active a span{
    border-left-color: var(--main-color);
    border-bottom-color: var(--main-color);
}

header .bot .left-wrap ul li a {
    display: block;
    padding: 0 38px;
    font-size: 16px;
    color: #333;
    line-height: 80px;
    transition: all 0.3s;
}
 
header .bot .language {
  position: relative;
}

header .bot .language .wrap {
  display: flex;
  align-items: center;
  height: 80px;
}

header .bot .language .wrap span {
  font-size: 16px;
  color: var(--main-color);
}

header .bot .language .wrap i {
  display: block;
  margin-left: .6em;
  margin-top: -2px;
  width: .6em;
  height: .6em;
  border-left: 2px solid #5a5a5a;
  border-bottom: 2px solid #5a5a5a;
  transform: rotate(-45deg);
}

header .bot .language .wrap.active i {
  border-left-color: var(--main-color);
  border-bottom-color: var(--main-color);
}
 
/* 底部 */
footer{
  box-shadow: inset 0 1px 0 #eeeeee;
}
footer .top {
  padding-top: 40px;
  padding-bottom: 40px;
}

footer .top .page-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .top h2 {
  display: flex;
  margin-bottom: 30px;
}

footer .top h2 span {
  padding-bottom: 5px;
  font-size: 16px;
  border-bottom: 2px solid #646361;
}

footer .top .nav > ul{
  display: flex;
}

footer .top .nav > ul > li:nth-child(n+2){
  margin-left: 40px;
}

footer .top .nav > ul > li p{
  display: flex;
  align-items: center;
}

footer .top .nav > ul > li p a {
  font-size: 14px;
  color: #646361;
}

footer .top .nav > ul > li ul {
  margin-top: 15px;
}

footer .top .nav > ul > li ul li {
  display: flex;
}

footer .top .nav > ul > li ul li:nth-child(n+2) {
  margin-top: 10px;
}

footer .top .nav > ul > li ul li a {
  font-size: 12px;
  color: #a9aaac;
  line-height: 14px;
  transition: all 0.3s;
}

footer .top .nav > ul > li ul li a:hover {
  color: var(--main-color);
}

footer .top .contact ul li{
  display: flex;
  align-items: flex-start;
}

footer .top .contact ul li:nth-child(n+2){
  margin-top: 10px;
}

footer .top .contact ul li .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
  width: 16px;
  height: 16px;
  font-size: 0;
}

footer .top .contact ul li img {
  width: 16px;
  height: 16px;
}

footer .top .contact ul li b {
  font-size: 12px;
  font-weight: normal;
}

footer .bot {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1d1d1f;
}

footer .bot .txt{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  line-height: 20px;
}

footer .bot .txt p:nth-child(n+2){
  margin-left: 10px;
}

footer .bot .txt p a{
  color: #ffffff;
}
 
/* 首页头屏遮罩层 */
.index-onePage .header_nav_bg {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: .4s;
}

.index-onePage .header_nav_bg.header_nav_bg_on {
  opacity: 1
}

.index-onePage .home_banner_bg{
  height: 100vh;
}

.index-onePage video {
  -o-object-fit: cover;
  object-fit: cover
}


.index-onePage .home_banner {
  background: #465d73;
  position: fixed;
  top: 0;
  width: 100%
}

.index-onePage .home_banner .video_bg {
  z-index: 1
}

.index-onePage .home_banner .video_bg,
.index-onePage .home_banner .video_bg:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0
}

.index-onePage .home_banner .video_bg:before {
  content: "";
  z-index: 2;
  background: url(/nuxt/resouces/img/vidue_bg.dde93a2.png) repeat-y 0;
  background-size: 100% auto
}

.index-onePage .home_banner .video_bg video {
  z-index: 1
}

.index-onePage .home_banner .swiper_bg,
.index-onePage .home_banner .video_bg video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.index-onePage .home_banner .swiper_bg {
  padding: 0 190px;
  z-index: 3;
  box-sizing: border-box
}

.index-onePage .home_banner .swiper_bg .swiper-container {
  position: absolute;
  top: 50%;
  margin-top: -80px;
  width: 500px
}

.index-onePage .home_banner .swiper-slide {
  font-size: 70px;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  width: 100%
}

.index-onePage .home_banner .btn {
  padding-top: 40px
}

.index-onePage .home_banner .btn .index_newsarrow {
  transition: all .6s;
  float: left;
  margin-right: 24px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 58px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative
}

.index-onePage .home_banner .btn .index_newsarrow .iconfont {
  font-size: 12px;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 54px;
  border: 1px solid hsla(0, 0%, 100%, .3);
  border-radius: 50%;
  transition: all .4s
}

.index-onePage .home_banner .btn .index_newsarrow:hover {
  transform: scale(1.1)
}

.content_body {
  overflow: auto;
  height: 100%;
  width: 100%
}

.load_body {
  position: absolute
}

.load,
.load_body {
  width: 100%;
  height: 100%;
  overflow: hidden
}

.load {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5000;
  background: #fff
}

.load .icon {
  width: 200px;
  height: 150px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -75px 0 0 -100px
}

.load .icon .logo {
  background: url('../images/lo.gif') no-repeat 50%;
  width: 100%;
  height: 150px;
  margin-bottom: 12px
}

@-webkit-keyframes loadi1 {
  0% {
      transform: scale(1);
      transform-origin: right top
  }

  20% {
      transform: scaleX(0);
      transform-origin: right top
  }

  30% {
      transform: scaleX(0);
      transform-origin: left top
  }

  50% {
      transform: scale(1);
      transform-origin: left top
  }

  to {
      transform: scale(1);
      transform-origin: left top
  }
}

@keyframes loadi1 {
  0% {
      transform: scale(1);
      transform-origin: right top
  }

  20% {
      transform: scaleX(0);
      transform-origin: right top
  }

  30% {
      transform: scaleX(0);
      transform-origin: left top
  }

  50% {
      transform: scale(1);
      transform-origin: left top
  }

  to {
      transform: scale(1);
      transform-origin: left top
  }
} 
   
.home_banner .swiper-slide>div {
  transform: translateX(0);
  transition: all 1s;
  opacity: 0
}

.home_banner .swiper-slide>div:first-child {
  transition-delay: .6s
}

.home_banner .swiper-slide>div:nth-child(2) {
  transition-delay: .9s
}

.home_banner .swiper-slide-active>div {
  transform: translateX(0);
  opacity: 1
}

.home_banner .swiper-slide-next>div {
  transform: translateX(30px);
  opacity: 0;
  transition: all 1s 1s
}

.home_banner .swiper-slide-chu>div {
  transform: translateX(0);
  opacity: 1;
  transition: all 1s
}

.home_banner .swiper-slide-chu>div:first-child {
  transition-delay: 0s
}

.home_banner .swiper-slide-chu>div:nth-child(2) {
  transition-delay: .3s
}

.home_banner .swiper-container {
  overflow: visible
}

.home_banner .shu {
  width: 50px;
  height: 100px;
  position: fixed;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  z-index: 5
}

.home_banner .shu.on {
  transition: all 1s;
  transform: translateY(150px)
}

.home_banner .shu b {
  background: url(../images/shu.png) center;
  width: 50px;
  height: 64px;
  animation: top 1.2s infinite cubic-bezier(0.5, 2.00, 0.85, 2.10);
  -webkit-animation: top 1.2s infinite cubic-bezier(0.5, 2.00, 0.85, 2.10);
  display: inline-block;
}

@keyframes top {
  0% {
      transform: translateY(-10px);
  }

  60% {
      transform: translateY(-20px);
  }

  100% {
      transform: translateY(-10px);
  }
}

@-webkit-keyframes top {
  0% {
      -webkit-transform: translateY(-10px);
  }

  60% {
      -webkit-transform: translateY(-20px);
  }

  100% {
      -webkit-transform: translateY(-10px);
  }
}

@-webkit-keyframes home_banner_shu {
  0% {
      transform: translateY(0) scale(1);
      opacity: 0
  }

  30% {
      opacity: 1
  }

  60% {
      opacity: 1
  }

  to {
      transform: translateY(120px) scale(.5);
      opacity: 0
  }
}

@keyframes home_banner_shu {
  0% {
      transform: translateY(0) scale(1);
      opacity: 0
  }

  30% {
      opacity: 1
  }

  60% {
      opacity: 1
  }

  to {
      transform: translateY(120px) scale(.5);
      opacity: 0
  }
}

.home_banner2 {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  pointer-events: none
}

.home_banner2 .logo_bg_box,
.home_banner2a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0
}

.home_banner2 .logo_bg_box {
  transform: scale(1);
  z-index: 5
}

.home_banner2 .logo_bg {
  transform: scale(14);
  width: 1906px;
  height: 1300px;
  left: 50%;
  top: 50%;
  margin: -700px 0 0 -953px;
  position: absolute;
  background: url(../images/logo2c.8155b3d.svg) no-repeat 50%;
  background-size: 100% auto;
  z-index: 5
}

.home_banner2 .logo_bga {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-size: 100% auto;
  z-index: 5
}

.home_banner2 .logo_bg:after {
  left: 0
}

.home_banner2 .logo_bg:after,
.home_banner2 .logo_bg:before {
  content: "";
  position: absolute;
  width: 44%;
  height: 100%;
  background: #fff;
  z-index: 10;
  opacity: 1;
  transition: all .8s
}

.home_banner2 .logo_bg:before {
  right: 0
}

.home_banner2 .logo_bg.on:after,
.home_banner2 .logo_bg.on:before {
  opacity: 0;
  transition: all .8s .6s
}

.home_banner2 .logo {
  width: 100%;
  height: 240px;
  left: 0;
  top: 50%;
  margin: -140px 0 0;
  position: absolute;
  z-index: 10
}

.home_banner2 .logo .logo1 {
  width: 184px;
  margin: -2px auto;
  height: 184px;
  position: relative;
  overflow: hidden;
  border-radius: 50%
}

.home_banner2 .logo .logo1 .logo1a {
  transform: scale(1.2);
  opacity: 0;
  width: 100%;
  height: 100%;
  background: url(../images/logo_img1a.daf4014.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0
}

.home_banner2 .logo .logo1 .logo1b {
  transform: scale(.8);
  opacity: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  margin: 90px auto 0
}

.home_banner2 .logo .logo2 {
  transform: translateY(0);
  opacity: 0;
  width: 0;
  height: 25px;
  margin: 30px auto 170px;
  background: url(/nuxt/resouces/img/logo_img2.5813bb1.png) no-repeat 50%;
  overflow: hidden
}

.home_banner2 .logo .logo3 {
  transform: translateY(0);
  opacity: 0;
  text-align: center;
  height: 55px;
  margin: 0 auto;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #54585a
}

.home_banner2 .logo .logo4 {
  transform: translateY(20px);
  opacity: 0;
  width: 100%;
  height: 72px;
  margin: 30px auto 0;
  overflow: hidden
}

.home_banner2 .logo.on .logo1 .logo1a,
.home_banner2 .logo.on .logo1 .logo1b {
  opacity: 1;
  transform: scale(1);
  transition: all .8s ease
}

.home_banner2 .logo.on .logo2 {
  width: 160px;
  transition: .6s 0s
}

.home_banner2 .logo.on2 .logo3,
.home_banner2 .logo.on .logo2,
.home_banner2 .logo.on .logo4 {
  transform: translateY(0);
  opacity: 1
}

.home_banner2 .logo.on .logo4 {
  transition: .8s 1.6s;
  pointer-events: all
}

.home_banner2 .logo .logo3 span {
  display: block;
  opacity: 0;
  transform: scale(1.5) translate3d(0, 50px, 0) skewX(60deg) rotateX(-80deg)
}

.home_banner2 .logo .logo3 span img {
  width: 150px;
  margin-bottom: 15px;
}

.home_banner2 .logo.on2 .logo3 span {
  opacity: 1;
  transform: scale(1) translateZ(0) skewX(0deg) rotateX(0deg)
}

.home_banner2 .logo.on2 .logo3>div {
  display: inline-block
}

.home_banner2.one1 {
  background: #fff
}

.home_banner2 .logo1_bg {
  transform-origin: center 38%
}

.home_banner2 .logo4 a span {
  position: relative;
  z-index: 1
}

.home_banner2 .logo4 a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .4s
}

.home_banner2 .logo4 a:hover:before {
  transform: scaleX(1);
  transform-origin: 0 50%
}

.home_banner2 .logo4 a:hover {
  color: #fff
}

.home_part1 {
  height: 2000px;
  position: relative;
  z-index: 20;
  pointer-events: none
}

#banner {
  margin-top: 102px;
  width: 100%;
  min-width: 1400px;
}

#banner .swiper-pagination-clickable .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 18px;
  background-color: #505050;
  transition: transform .2s;
  cursor: pointer;
  border-radius: 50%;
  margin-left: 4px;
}

/*分页符整体位置*/
#banner .swiper-pagination-bullets {
  padding: 0 10px;
  left: 97%;
  bottom: 40% !important;
}

#banner .swiper-pagination-clickable .swiper-pagination-bullet-active {
  background-color: #ffffff;
  width: 16px;
  height: 16px;
  border: 5px solid #505050;
  margin-left: 0;
}

#banner .swiper-wrapper {
  min-width: 1200px
}

#banner .swiper-slide .img-responsive {
  min-width: 1200px
}

/*轮播左右*/
#banner .swiper-button-prev,
#banner .swiper-button-next {
  width: 52px;
  height: 94px;
  top: 45%;
  position: absolute;
}

#banner .swiper-button-prev {
  left: 75px;
  background: url(../images/index/left_click.png) no-repeat;
  animation: left_arrow_flash 2s linear infinite;
}

#banner .swiper-button-next {
  right: 75px;
  background: url(../images/index/right_click.png) no-repeat;
  animation: right_arrow_flash 2s linear infinite;
}

@keyframes right_arrow_flash {
  0% {
      right: 75px;
      opacity: 1.0;
  }

  100% {
      right: 55px;
      opacity: 0.2;
  }
}

@keyframes left_arrow_flash {
  0% {
      left: 75px;
      opacity: 1.0;
  }

  100% {
      left: 55px;
      opacity: 0.2;
  }
}

/*第一块banner图*/
#banner .swiper-slide .bone_aa {
  position: absolute;
  left: 26.6%;
  top: 53.5%;
}

#banner .swiper-slide .bone_bb {
  position: absolute;
  left: 29%;
  bottom: 14.2%;
}

#banner .swiper-slide .bone_cc {
  position: absolute;
  left: 61.2%;
  top: 4.1%;
}

#banner .swiper-slide .bone_more {
  position: absolute;
  left: 50%;
  top: 60%;
}

#banner .swiper-slide .bone_more a {
  font-size: 14px;
  background-color: #646361;
  color: #ffffff;
  display: inline-block;
  width: 190px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

#banner .swiper-slide .bone_more a:hover {
  background-color: #c6b180;
}

#banner .swiper-slide .bone_more a i {
  display: inline-block;
  width: 18px;
  height: 5px;
  background: url(../images/index/you.png) no-repeat;
  margin-left: 15px;
}

#banner .swiper-slide b {
  display: none;
  font-family: "微软雅黑", "宋体", Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}

#banner .sw_one b {
  margin-left: 20px;
}

#banner .swiper-slide .bone_cc b {
  margin-left: 0;
  padding-top: 20px;
}

#banner span.breath {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/index/final.gif) no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
}

#banner .bone_cc span.breath {
  vertical-align: baseline;
}

/*第二块banner图*/
#banner .swiper-wrapper .sw_two h2 {
  font-size: 32px;
  position: absolute;
  left: 48%;
  top: 15px;
}

#banner .swiper-wrapper .sw_two .btwo_txt {
  font-size: 15px;
  position: absolute;
  color: #bfbfbf;
  width: 100%;
  top: 70px;
}

#banner .swiper-wrapper .sw_two h2 a {
  display: inline-block;
  color: #ffffff;
  position: relative;
}

#banner .swiper-wrapper .sw_two h2 a:after {
  content: '';
  position: absolute;
  height: 2px;
  left: 20%;
  top: 100%;
  width: 60%;
  margin-top: 10px;
  background-color: #ffffff;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all linear .3s;
}

#banner .swiper-wrapper .sw_two h2 a:hover:after {
  width: 100%;
  left: 0;
}

#banner .swiper-wrapper .sw_two b {
  color: #ffffff;
  font-weight: 500;
}

#banner .swiper-slide .btwo_bor {
  display: none;
  position: absolute;
  height: 20px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

#banner .swiper-slide .btwo_aa {
  position: absolute;
  left: 28.1%;
  bottom: 33.4%;
}

#banner .btwo_aa span.breath {
  vertical-align: baseline;
}

#banner .swiper-slide .btwo_aa b {
  margin-left: -83px;
  position: absolute;
  top: 5px;
  border-bottom: 1px solid #ffffff;
}

#banner .swiper-slide .btwo_bb {
  position: absolute;
  left: 50%;
  bottom: 43%;
}

#banner .swiper-slide .btwo_bb b {
  position: absolute;
  top: -15px;
  left: -64px;
}

#banner .swiper-slide .btwo_bb div {
  width: 87px;
  top: 4px;
  left: -62px;
  border-left: 0;
  border-right: 1px solid #ffffff;
}

#banner .swiper-slide .btwo_cc {
  position: absolute;
  right: 46.8%;
  top: 33.2%;
}

#banner .swiper-slide .btwo_cc b {
  width: 87px;
  position: absolute;
  top: -15px;
  left: 22px;
}

#banner .swiper-slide .btwo_cc div {
  width: 76px;
  top: 4px;
  left: 21px;
}

#banner .swiper-slide .btwo_dd {
  position: absolute;
  right: 39.5%;
  top: 34%;
}

#banner .swiper-slide .btwo_dd b {
  width: 87px;
  position: absolute;
  top: -15px;
  left: 22px;
}

#banner .swiper-slide .btwo_dd div {
  width: 76px;
  top: 4px;
  left: 21px;
}

#banner .swiper-slide .btwo_ee {
  position: absolute;
  right: 30.2%;
  top: 39.3%;
}

#banner .swiper-slide .btwo_ee b {
  width: 93px;
  position: absolute;
  top: 5px;
  left: 32px;
  border-bottom: 1px solid #ffffff;
}

/*第三块banner图*/
#banner .swiper-wrapper .sw_three .bthree_lf {
  position: absolute;
  left: 15%;
  top: 13%;
  width: 40%;
}

#banner .swiper-wrapper .sw_three .bthree_rt {
  position: absolute;
  left: 59.2%;
  top: 13%;
  width: 25.2%;
}

#banner .swiper-wrapper .sw_three .bthree_rt img {
  width: auto;
  min-width: 320px;
}

#banner .swiper-wrapper .sw_three h2 {
  font-size: 32px;
  color: #535353;
  padding-top: 30px;
}

#banner .swiper-wrapper .sw_three .bthree_lf p {
  font-size: 16px;
  padding-top: 40px;
}

/*第四块banner图*/
#banner .swiper-wrapper .sw_four .sfour {
  position: absolute;
  width: 100%;
  top: 15%;
}

#banner .swiper-wrapper .sw_four .sfour h2 {
  font-size: 40px;
  color: #ffffff;
  text-align: center;
}

#banner .swiper-wrapper .sw_four .sfour p {
  font-size: 16px;
  padding-top: 25px;
  color: #ffffff;
  text-align: center;
}

#banner .swiper-wrapper .sw_four .sfour .sfour_list {
  padding-top: 90px;
  width: 1024px;
  margin: 0 auto;
  overflow: hidden;
}

#banner .sw_four .sfour .sfour_list li {
  margin-bottom: 19px;
  width: 33%;
  float: left;

}

#banner .sw_four .sfour .sfour_list span {
  display: inline-block;
  width: 35px;
  height: 25px;
  background: url(../images/index/sfour_mark.png) no-repeat;
  vertical-align: middle;
}

#banner .sw_four .sfour .sfour_list i {
  display: inline-block;
  font-size: 20px;
  padding-left: 14px;
  color: #ffffff;
  font-style: normal;
  cursor: default;
}

#banner .sw_four .sfour .sfour_list i:hover {
  color: #c6b180;
}

/*第5块banner图*/
#banner .swiper-wrapper .sw_five .sfive_txt {
  position: absolute;
  left: 15%;
  top: 15%;
}

#banner .swiper-wrapper .sw_five .sfive_txt h2 {
  font-size: 36px;
  color: #000000;
}

#banner .swiper-wrapper .sw_five .sfive_txt p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 24px;
  padding-top: 40px;
}

#banner .swiper-wrapper .sw_five .sfive_hx {
  position: absolute;
  left: 48.3%;
  bottom: 26%;
}

#banner .swiper-wrapper .sw_five .sfive_hx b {
  position: absolute;
  top: -5px;
  color: #646361;
  width: 91px;
  font-size: 14px;
  margin-left: 24px;
}

/*产品区域*/
.product {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
  min-width: 1400px;
}

.product .pro_list {
  background-color: #ffffff;
  margin: 0 auto;
  position: absolute;
  left: 18.7%;
  width: 60%;
  top: -60px;
  z-index: 10;
  -webkit-box-shadow: 0 2px 10px #bcb9b2;
  -moz-box-shadow: 0 2px 10px #bcb9b2;
  box-shadow: 0 2px 10px #bcb9b2;
}

.product .pro_list h2 {
  font-size: 22px;
  color: #000000;
  padding-top: 20px;
  margin-bottom: 40px;
}

.product .pro_list ul:after {
  content: '';
  display: table;
  clear: both;
}

.product .pro_list ul {
  margin-bottom: 20px;
  width: 100%;
}

.product .pro_list ul li {
  float: left;
  padding: 0 20px;
  width: 12.5%;
  text-align: center;
}

.product .pro_list ul li a {
  text-align: center;
  display: inline-block;
}

.product .pro_list ul li a:hover {
  color: #c6b180;
}

.product .pro_list ul li b {
  font-weight: 500;
  display: block;
  font-size: 16px;
}
 
/* 首页惊世之作 */
.index-jszz {
  position: relative;
  padding-top: calc(825 / 1920 * 100%);
  overflow: hidden;
}

.index-jszz #video {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 100%;
  transform: translateY(-50%);
}

.index-jszz .js_bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}

.index-jszz .text-center {
  position: absolute;
  top: 25%;
  z-index: 50;
  margin-left: 2%;
  width: 95%;
}

.index-jszz h1 {
  font-size: 42px;
  color: #ffffff;
}

.index-jszz p {
  padding-top: 30px;
  font-size: 18px;
  color: #ffffff;
}

/* 首页技术区域 */
.index-jishu {
  position: relative;
  background-image: url(../images/index/jishu_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index-jishu .txt{
  margin-bottom: 100px;
}

.index-jishu .txt h1 {
  /* margin-bottom: 30px; */
  font-size: 42px;
}

.index-jishu .txt p {
  padding-top: 30px;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}

.index-jishu .wrap ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.index-jishu .wrap ul li {
  width: calc(100% / 6);
  cursor: default;
  opacity: 0;
}

.index-jishu .wrap ul li p {
  position: relative;
  margin-bottom: 50px;
  font-size: 22px;
}

.index-jishu .wrap ul li h2 {
  margin-bottom: 25px;
  font-size: 42px;
  transition: all 0.3s;
}

.index-jishu .wrap ul li h2:hover {
  color: var(--main-color);
}

.index-jishu .wrap ul li h2 span {
  font-size: 24px;
  color: #ffffff;
}

.index-jishu .wrap ul li b {
  font-size: 16px;
  font-weight: normal;
}

.index-jishu .wrap ul li p:before {
  position: absolute;
  top: -20px;
  left: 50%;
  display: block;
  content: '';
  margin-left: -66px;
  width: 132px;
  height: 3px;
  transition: all ease .3s;
}

.index-jishu .wrap ul li p.shuzihua-top:before{
  background: linear-gradient(to right, #ff0404 0%, #b49064 100%);
}

.index-jishu .wrap ul li p.p_aa:before {
  background-color: #ffffff;
}

.index-jishu .wrap ul li p.p_bb:before {
  background-color: #ee0303;
}

.index-jishu .wrap ul li h2 span.sp_bb {
  vertical-align: text-top;
}

.index-jishu .wrap ul li p.p_cc:before {
  height: 20px;
  background: url(../images/index/jishu01.png) no-repeat;
}

.index-jishu .wrap ul li p.p_dd:before {
  background-color: rgba(255, 255, 255, .5);
}

.index-jishu .wrap ul li p.p_ee:before {
  height: 20px;
  background: url(../images/index/jishu02.png) no-repeat;
}
 
/* 首页合作伙伴 */
.index-hezuo .wrapper{
  position: relative;
  padding: 0 10px;
}

.index-hezuo .swiper-slide {
  border: 1px solid transparent;
}

.index-hezuo .swiper-button{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background: none;
}

.index-hezuo .swiper-button.swiper-button-prev{
  left: -10px;
}

.index-hezuo .swiper-button.swiper-button-next{
  right: -10px;
}

.index-hezuo .swiper-button span{
  width: 10px;
  height: 10px;
  border-top: solid 1px #333;
  transition: all 0.3s;
}

.index-hezuo .swiper-button.swiper-button-prev span{
  border-left: solid 1px #333;
  transform: rotate(-45deg);
}

.index-hezuo .swiper-button.swiper-button-next span{
  border-right: solid 1px #333;
  transform: rotate(45deg);
}

.index-hezuo .swiper-button:hover span{
  border-color: var(--main-color);
}

.index-hezuo .swiper-slide .pic{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
}

.index-hezuo img{
  max-width: 100%;
}

/*首页数据*/
.index-shuju {
  padding: 50px 0;
}

.index-shuju .page-container{
  display: flex;
  justify-content: space-between;
}

.index-shuju .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  transition: all 0.3s;
}

.index-shuju .item h1 {
  margin-bottom: 15px;
  font-size: 36px;
}

.index-shuju .item h1 b {
  font-weight: 500;
}

.index-shuju .item h1 span {
  font-size: 22px;
  color: #666;
  vertical-align: text-top;
  transition: all 0.3s;
}

.index-shuju .item:hover,
.index-shuju .item:hover span {
  color: var(--main-color);
}

.hezuo .swiper-slide img:last-child {
  display: none;
}

/*canvas拖拽进度条*/
#canvas {
  background-color: #f8f8f8;
  margin: 60px 0 0 50px;
}


/*主页浮动起来的css*/
.pro_choose h2 {
  margin-top: 100px;
}

.pro_choose .my_list {
  margin-top: 100px;
}

.pro_choose .tab-content,
.case,
.jszz,
.jishu,
.shuju,
.hezuo {
  margin-top: 100px;
}

.jszz h1,
.jishu h1 {
  margin-top: 150px;
}


/*侧边栏*/
.y_aside {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 10000;
}

.y_aside ul li {
  position: relative;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}

.y_aside ul li:nth-child(4) {
  border: 1px solid #eeeeee;
}

.y_aside ul li:last-child {
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}

.y_aside ul li a {
  margin: 12px;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.y_aside ul li:hover {
  background-color: var(--main-color);
}

.y_aside ul li:first-child a {
  background: url("../images/index/aside.png") 0 0 no-repeat;
}

.y_aside ul li:hover:first-child a {
  background: url("../images/index/aside.png") -18px 0 no-repeat;
}

.y_aside ul li:nth-child(2) a {
  background: url("../images/index/aside.png") 0 -36px no-repeat;
}

.y_aside ul li:hover:nth-child(2) a {
  background: url("../images/index/aside.png") -18px -36px no-repeat;
}

/* .y_aside ul li:nth-child(3) a {
  background: url("../images/index/aside.png") 0 -54px no-repeat;
}

.y_aside ul li:hover:nth-child(3) a {
  background: url("../images/index/aside.png") -18px -54px no-repeat;
} */

.y_aside ul li:nth-child(3) a {
  background: url("../images/index/aside.png") 0 -18px no-repeat;
}

.y_aside ul li:hover:nth-child(3) a {
  background: url("../images/index/aside.png") -18px -18px no-repeat;
}

.y_aside ul li:last-child a {
  background: url("../images/index/aside.png") 0 -72px no-repeat;
}

.y_aside ul li:hover:last-child a {
  background: url("../images/index/aside.png") -18px -72px no-repeat;
}

.y_aside ul li div {
  padding: 10px;
  background-color: #ffffff;
  display: none;
  position: absolute;
  overflow: hidden;
  top: 0;
}

.y_aside ul li:first-child div {
  left: -238px;
  min-height: 54px;
}

.y_aside ul li:nth-child(2) div {
  left: -234px;
}

.y_aside ul li:nth-child(3) div {
  left: -210px;
}

.y_aside ul li:nth-child(4) div {
  left: -189px;
  width: 189px;
}

.y_aside ul li:first-child div {
  box-shadow: 0 3px 9px 0 #999999;
  -moz-box-shadow: 0 3px 9px 0 #999999;
  -webkit-box-shadow: 0 3px 9px 0 #999999;
}

.y_aside ul li:first-child div input {
  border: 0;
  padding-bottom: 6px;
  outline: none;
  min-width: 200px;

}

.y_side .y_aside ul .ding {
  display: none;
}

.ding {
  cursor: pointer;
}

.y_aside ul li:first-child div span {
  cursor: pointer;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/index/aside.png) no-repeat;
}

.y_aside ul li div b {
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
}

.y_aside ul li div b span {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}

/* .y_aside ul li:nth-child(3) div b span {
  background: url(../images/headfoot/foot_qq.png) no-repeat;
} */

.y_aside ul li:nth-child(3) div b span {
  background: url(../images/headfoot/foot_tel.png) no-repeat;
}

.y_aside ul li.active div {
  display: block;
}

.wx {
  position: relative;
}

.wx img {
  position: absolute;
  width: 120px;
  z-index: 10001;
  top: 35px;
  left: -28px;
  padding: 5px;
  background-color: #dddddd;
  display: none;
}

.wx-b {
  position: relative;
}

.wx-b img {
  position: absolute;
  width: 120px;
  z-index: 10001;
  bottom: 30px;
  left: -28px;
  padding: 5px;
  background-color: #dddddd;
  display: none;
}

.con_navlist li {
  margin-bottom: 10px;
}

.top_mark {
  display: none;
}

.bottom .in p {
  width: 100%;
  text-align: center;
}


.y_side .y_aside ul .ding {
  display: none;
}

.y_side .active .y_aside ul .ding {
  display: none;
}

.panel {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* 分页 */
.page {
  margin-top: 30px;
}

.page ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page ul li:nth-child(2){
  margin-left: 20px;
  margin-right: 30px;
}

.page ul li:nth-child(6){
  margin-left: 30px;
  margin-right: 20px;
}

.page ul li a,
.page ul li span {
  display: block;
  color: #999999;
  transition: all 0.3s;
}

.page ul li.active a,
.page ul li:hover a {
  color: #333333;
}

/* 精英招聘 */
.jyzp-container .text{
  min-height: 185px;
  font-size: 20px;
  color: #242424;
  line-height: 32px;
  text-align: center;
}

.jyzp-container .list-wrapper{
  position: relative;
  min-height: 210px;
  border-top: 1px solid #eeeeee;
}

.jyzp-container .subnav {
  position: absolute;
  left: -65px;
  top: 0;
  width: 60px;
}

.jyzp-container .subnav li {
  margin-bottom: 40px;
}

.jyzp-container .subnav li a {
  padding: 5px 0;
  font-size: 20px;
  color: #373737;
  transition: all 0.3s;
}

.jyzp-container .subnav li.active a {
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

/* .jyzp_bg {
  background: url(../images/second/jyzp_bg.jpg);
  background-position: center 0;
} */

.jyzp-container .panel {
  padding-top: 15px;
  border: none;
  padding-bottom: 15px;
}

.jyzp-container .panel .panel-heading {
  border: none;
}

.jyzp-container .panel .panel-heading h4 {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
}

.jyzp-container .panel .panel-heading h4 b {
  font-weight: 500;
  display: inline-block;
  width: 262px;
}

.jyzp-container .panel .panel-heading h4 i {
  font-style: normal;
  font-size: 18px;
  display: inline-block;
  padding-left: 14px;
}

.jyzp-container .panel .panel-heading h4 a {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/second/xmal_down.png) no-repeat;
}

.jyzp-container .panel .panel-heading h4 a.active {
  background: url(../images/second/xmal_up.png) no-repeat;
}

.jyzp-container .panel .panel-body {
  border: none;
}

.jyzp-container .panel .panel-body .tab_zpyq {
  padding-bottom: 15px;
}

.jyzp-container .panel .panel-body p {
  font-size: 14px;
  line-height: 22px;
  color: #646361;
}


/*二级页的布局*/
.main {
  width: 100%;
  min-width: 1200px;
  margin-top: 102px;
}

.pro_bg {
  background: url(../images/second/produ_bg.jpg);
}

.gsjj_bg {
  background: url(../images/second/gsjj.jpg);
}

.main_h {
  width: 100%;
  height: 425px;
  max-width: 100%;
  overflow: hidden;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center 0;
  background-repeat: repeat-x;
  animation: animatedBackground 20s linear infinite alternate;
  -o-animation: animatedBackground 20s linear infinite alternate;
  -webkit-animation: animatedBackground 20s linear infinite alternate;
  -moz-animation: animatedBackground 20s linear infinite alternate;
}

/*****产品列表******/
.pro_im {
  display: flex;
  flex-wrap: wrap;
}

.pro_im li {
  width: 33.3%;
}

.im_intro h3{
  font-size: 16px;
}

.pro_im li .im_intro {
  margin: 0 15px;
}

.pro_im li .im_intro a{
  display: block;
}

.pro_im li .im_intro a .cho_im{
  font-size: 0;
}

.pro_im li .im_intro a .cho_im img{
  display: block;
  width: 100%;
}

.im_intro h2 {
  font-size: 18px;
  color: #747474;
  margin-top: 20px;
}

.im_intro h3 {
  font-size: 18px;
}

.im_intro h4 {
  font-size: 14px;
  color: #86878b;
  height: 22px;
  line-height: 22px;
  overflow: hidden;
}

.im_txt {
  padding: 2px 0;
}

.im_txt a {
  color: #646361;
  font-size: 14px;
  margin-right: 5px;
}

.im_txt span {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 3px;
}

.im_txt a:first-child span {
  background: url(../images/second/icon_de01.png) no-repeat;
}

.im_txt a:last-child span {
  background: url(../images/second/icon_de02.png) no-repeat;
}

.im_intro p a {
  font-size: 16px;
  color: #aaabaf;
}

.im_intro p a:hover {
  color: var(--main-color);
}

.im_intro p {
  margin-top: 15px;
}

.cho_im {
  position: relative;
}

.cho_im a {
  display: none;
  position: absolute;
  top: 42%;
  left: 42%;
  z-index: 200;
}

.cho_im.active>img {
  opacity: 0.6;
}

.cho_im.active a {
  display: block;
}

/*产品左侧切换栏*/
.pro_nav {
  position: absolute;
  left: -60px;
  top: 42px;
}

.pro_nav h1 {
  font-size: 20px;
  color: #373737;
  margin-bottom: 10px;
}

.pro_nav ul {
  margin-bottom: 10px;
}

.pro_nav ul li a {
  color: #86878b;
  font-size: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.pro_nav ul li {
  padding: 8px 0;
}

.pro_nav ul li.active a {
  border-bottom-color: var(--main-color);
  color: var(--main-color);
}

/*产品详情*/
.zd_middle_bottom>p {
  font-size: 16px;
  color: #717171;
  padding-top: 29px;
}

.chose span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 2px solid #e9e9e9;
  position: relative;
}

.chose span b {
  position: absolute;
  top: 3px;
  left: 3px;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.chose span:first-child b {
  background-color: #f3f3f3;
}

.chose span:nth-child(2) b {
  background-color: #605a50;
}

.chose span:last-child b {
  background-color: #b3c3b2;
}

.midle_bottom2 span.on {
  border: 2px solid #c7b383;
}

.xq_con {
  position: relative;
}

.xq_page_box {
  border-top: 1px solid #eeeeee;
}

.xq_txt {
  position: absolute;
  top: 20%;
}

.xq_txt_a {
  left: 41%;
}

.xq_txt_b {
  left: 24%;
}

.xq_txt_c {
  left: 40%;
}

.xq_nb {
  padding-top: 30px;
  width: 515px;
  margin: 0 auto;
}

.xq_txt h1 {
  font-size: 24px;
  width: 48px;
  margin: 0 auto;
  border-bottom: 2px solid #967f6d;
  padding-bottom: 6px;
  color: #656565;
}

.xq_txt h2 {
  font-size: 60px;
  color: #585858;
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}

.xq_txt p {
  text-align: center;
  font-size: 16px;
  color: #727272;
  line-height: 24px;
}

.xq_txt .xq_nb span {
  display: inline-block;
  font-size: 16px;
  color: #5e5e5e;
  padding: 0 30px;
}

.xq_txt .xq_nb span b {
  font-size: 50px;
  font-weight: 500;
}

.xq_txt .xq_nb span i {
  font-style: normal;
  display: block;
  margin: 0 auto;
  width: 32px;
}

.xq_txt_c h1,
.xq_txt_c h2,
.xq_txt_c p {
  color: #ffffff;
}

.xq_txt_c h1 {
  border-bottom: 2px solid #ffffff;
}
 
/*购买二维码模态框*/
.buy-er {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10001;
  display: none;
}

.buy-con {
  background-color: #f5f5f5;
  position: absolute;
  top: 30%;
  left: 45%;
  width: 215px;
}

.buy-con a {
  font-size: 40px;
  color: #000;
  margin-left: 180px;
}

.buy-con img {
  width: 80%;
  margin-left: 10%;
}

.buy-con p {
  text-align: center;
  margin: 25px 8px;
  font-size: 18px;
  line-height: 24px;
}

/********产品规格********/
.xq_cpgg {
  width: 1200px;
  margin: 0 auto;
}

.xq_cpgg li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.cpgg_list>li {
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.cpgg_list>li:last-child {
  border-bottom: none;
}

.xq_cpgg li .cp_title {
  width: 180px;
  padding-top: 30px;
}

.xq_cpgg li b {
  font-size: 18px;
  color: #242424;
}

.cp_con {
  padding-top: 25px;
}

.cp_con p {
  padding: 8px 0;
  font-size: 16px;
  color: #242424;
}

/*设计详情*/
.sj_bottom .sj_tit {
  padding-top: 30px;
}

.sj_bottom .sj_tit span {
  padding-right: 30px;
  font-size: 14px;
  color: #86878b;
}

.sj_icon {
  border-bottom: 1px solid #eeeeee;
}

.sj_icon .im_txt span:first-child {
  background: url(../images/second/icon_de01.png) no-repeat;
}

.sj_icon .im_txt span:nth-child(3) {
  background: url(../images/second/icon_de02.png) no-repeat;
}

.sj_icon .im_txt {
  font-size: 14px;
  color: #646361;
}

.sj_icon .im_txt i {
  font-style: normal;
}

.sj_icon .im_txt span:last-child {
  margin-left: 20px;
}

.sj_txt p {
  font-size: 14px;
  color: #646361;
  padding-top: 20px;
}

.sj_con {
  padding: 15px;
}

.sj_con a span {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 15px;
}

.sj_con a:first-child {
  background: url(../images/second/sj_wx.png) no-repeat;
}

.sj_con a:nth-child(2) {
  background: url(../images/second/sj_wb.png) no-repeat;
}

.sj_con a:last-child {
  background: url(../images/second/sj_qq.png) no-repeat;
}

.sjxq {
  width: 1200px;
  margin: 0 auto;
}

.xq_bg img {
  width: 100%;
  min-width: 1200px;
}

/**************************公司简介************************/
.gsjj {
  max-width: 870px;
  margin: 0 auto;
}

.gsjj h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}

.gsjj p {
  color: #242424;
  font-size: 14px;
  margin-bottom: 20px;
}

.gsjj_wh {
  padding-top: 25px;
}

.gsjj_wh .lf img {
  width: 752px;
}

.gsjj_wh .gsjj_t h1 {
  font-size: 22px;
  margin-bottom: 60px;
}

.gsjj_wh .gsjj_t p {
  font-size: 14px;
  color: #242424;
  margin-bottom: 30px;
}

.gsjj_wh .gsjj_t {
  margin: 70px 0 0 60px;
}

.fzlc h1 {
  text-align: center;
  padding-top: 45px;
  padding-bottom: 40px;
  font-size: 22px;
}

.fzlc_nf,
.fzlc_inner {
  padding-bottom: 30px;
}

.fzlc_nf span {
  display: inline-block;
  width: 15px;
  height: 12px;
  margin: 0 10px;
  cursor: pointer;
  vertical-align: text-top;
  transform: scale(2.5);
  -o-transform: scale(2.5);
  -ms-transform: scale(2.5);
  -moz-transform: scale(2.5);
  -webkit-transform: scale(2.5);
}

.fzlc_nf b {
  font-size: 20px;
  font-weight: 500;
  margin-right: 5px;
}

.fzlc_nf span:first-child.active {
  background: url(../images/second/left_sm.png) no-repeat;
  background-size: contain;
}

.fzlc_nf span:first-child {
  background: url(../images/second/left_sm.png) no-repeat;
  background-size: contain;
}

.fzlc_nf span:last-child {
  background: url(../images/second/right_smb.png) no-repeat;
  background-size: contain;
}

.fzlc_nf span:last-child.active {
  background: url(../images/second/right_smb.png) no-repeat;
  background-size: contain;
}

.fzlc_con {
  padding-top: 30px;
  border-top: 1px solid #e3e3e3;
}

.gsjj_year h1 {
  font-size: 22px;
}

.gsjj_year p {
  font-size: 14px;
  color: #646361;
  height: 50px;
  margin: 18px 0;
}

.gsjj_year p a {
  color: #646361;
}

/******公司发展历程轮播***/
.gsjj_lb .swiper-button-prev,
.gsjj_lb .swiper-button-next {
  width: 8px;
  height: 12px;
  top: 25px;
  position: absolute;
}

.gsjj_lb .swiper-wrapper {
  padding-top: 30px;
}

.gsjj_lb .swiper-button-prev {
  right: 4%;
  left: auto;
  background: url(../images/second/left_sm.png) no-repeat;
}

.gsjj_lb .swiper-button-prev:hover {
  background: url(../images/second/left_smb.png) no-repeat;
}

.gsjj_lb .swiper-button-next {
  right: 2%;
  background: url(../images/second/right_sm.png) no-repeat;
}

.gsjj_lb .swiper-button-next:hover {
  background: url(../images/second/right_smb.png) no-repeat;
}

.fzlc_inner>div {
  display: none;
}

.fzlc_inner>div.active {
  display: block;
}

/*知识产权、获奖证书*/
.fzlc_bot {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  margin-bottom: 20px;
}

.fz_zscq {
  width: 678px;
  height: 500px;
  margin-right: 25px;
  background-color: #f8f8f8;
  padding: 80px 50px;
}

.fzlc_bot h1 {
  font-size: 22px;
}

.fz_zscq p {
  font-size: 14px;
  color: #242424;
  padding-top: 25px;
}

.fz_zscq hr {
  opacity: 0;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #646361;
  padding: 0;
  margin: 60px 0 40px 0;
  text-align: left;
}

.fz_bzrz {
  width: 497px;
  height: 500px;
  font-size: 0;
  background-color: #f8f8f8;
  padding: 80px 50px 50px 50px;
}

.fz_shu span {
  width: 32%;
  display: inline-block;
  font-size: 30px;
}

.fz_shu span b {
  display: inline-block;
  font-size: 54px;
  font-weight: 500;
}

.fz_shu span i {
  display: block;
  color: #5e5e5e;
  font-size: 16px;
  font-style: normal;
  margin-left: 5px;
}

.fz_rz {
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
}

.fz_rz span {
  text-align: center;
}

.fz_rz i {
  display: block;
  font-style: normal;
  color: #5e5e5e;
  font-size: 16px;
  padding-top: 10px;
  text-align: center;
  width: 114px;
}

.fz_rz b {
  display: block;
  width: 114px;
}

.fz_rz b img {
  max-width: 100%;
}

.gs_ryzs {
  padding-top: 20px;
}

.gs_ryzs {
  width: 397px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.gs_ryzs img {
  width: 156px;
}

.gs_ryzs .swiper-container {
  box-sizing: border-box;
  margin: 0 10px;
}

.gs_ryzs .swiper-button-prev,
.gs_ryzs .swiper-button-next {
  margin-top: 48px;
  position: static;
  display: inline-block;
  width: 50px;
  height: 30px;
  flex:0 0 12px;
}

.gs_ryzs .swiper-button-prev {
  background: url(../images/index/hz_lf.png) no-repeat;
}

.gs_ryzs .swiper-button-prev:hover {
  background: url(../images/index/hz_lfb.png) no-repeat;
}

.gs_ryzs .swiper-button-next {
  background: url(../images/index/hz_rt.png) no-repeat;
}

.gs_ryzs .swiper-button-next:hover {
  background: url(../images/index/hz_rtb.png) no-repeat;
}

.fz_rz {
  width: 397px;
  /* padding-top: 20px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
.fz_rzsw .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fz_rz .swiper-container {
  box-sizing: border-box;
  margin: 0 10px;
}

.fz_rz .swiper-button-prev,
.fz_rz .swiper-button-next {
  margin-top: 80px;
  position: static;
  display: inline-block;
  width: 50px;
  height: 30px;
}
.fz_rz .swiper-button-prev {
  background: url(../images/index/hz_lf.png) no-repeat;
}

.fz_rz .swiper-button-prev:hover {
  background: url(../images/index/hz_lfb.png) no-repeat;
}

.fz_rz .swiper-button-next {
  background: url(../images/index/hz_rt.png) no-repeat;
}

.fz_rz .swiper-button-next:hover {
  background: url(../images/index/hz_rtb.png) no-repeat;
}

/*专利证书*/
.fz_zlzs {
  background-color: #f8f8f8;
  padding: 50px 25px;
  margin: 20px 0;
}

.fz_zlzs h1 {
  font-size: 22px;
  margin-bottom: 30px;
}

.gs_zlzs {
  padding-top: 20px;
}

.gs_zlzs {
  width: 1150px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.gs_zlzs .swiper-container {
  box-sizing: border-box;
  margin-left: 25px;
}

.gs_zlzs .swiper-button-prev,
.gs_zlzs .swiper-button-next {
  margin-top: 144px;
  position: static;
  display: inline-block;
  width: 50px;
  height: 30px;
}

.gs_zlzs .swiper-button-prev {
  background: url(../images/index/hz_lf.png) no-repeat;
}

.gs_zlzs .swiper-button-prev:hover {
  background: url(../images/index/hz_lfb.png) no-repeat;
}

.gs_zlzs .swiper-button-next {
  background: url(../images/index/hz_rt.png) no-repeat;
}

.gs_zlzs .swiper-button-next:hover {
  background: url(../images/index/hz_rtb.png) no-repeat;
}

.news_head .lf {
  height: 420px;
  width: 720px;
}

.news_head .rt>div {
  height: 205px;
  width: 470px;
}

.news_txt:after,
.news_head:after {
  content: "";
  display: table;
  clear: both;
}

.news_showc {
  margin-top: 10px;
}

.news_re {
  display: block;
  position: relative;
}

.news_head .news_re .news_mb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  opacity: 0.4;
  display: none;
}

.news_con {
  position: absolute;
  color: #ffffff;
  left: 25px;
  bottom: 26px;
}

.news_con h1 {
  font-size: 20px;
  margin-bottom: 16px;
  height: 22px;
}

.news_con h1:hover {
  color: var(--main-color);
}

.news_con h2 {
  font-size: 12px;
}

.news_con p {
  font-size: 14px;
  margin-top: 30px;
}

.news_conr {
  left: 15px;
  bottom: 20px;
}

.news_year {
  margin-top: 25px;
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}

.search_f {
  margin-top: 25px;
  padding-top: 40px;
}

.news_vedio {
  border: 0;
}

.news_year h2 {
  font-size: 24px;
  color: #5e5e5e;
  margin-bottom: 20px;
}

.news_txt {
  position: relative;
}

.news_txt>ul {
  overflow: hidden;
  z-index: 100;
}

.dong_list {
  overflow: hidden;
}

.news_txt .ved_list ul li,
.news_txt .dong_list ul li {
  width: 25%;
  float: left;
  padding-right: 10px;
  margin-bottom: 25px;
}

.news_txt ul li .news_dis {
  display: block;
  position: relative;
}

.news_txt ul li .news_dis p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 22px;
  display: none;
  color: #747474;
}

.news_txt ul li .news_dis img {
  width: 100%;
}

.news_txt ul li .news_dis .news_mb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  opacity: 0.7;
  display: none;
}

.news_txt h3 {
  font-size: 16px;
  padding: 18px 0 10px 0;
}

.tx {
  height: 86px;
}

.news_txt p {
  font-size: 14px;
  color: #646361;
}

.year_list {
  position: absolute;
  top: -5px;
  left: -110px;
  width: 110px;
}

.fzlc_nf_two {
  width: 110px;
}

.year {
  display: inline-block;
}

.year b {
  display: none;
}

.year b.active {
  display: block;
}

.list_month {
  margin-left: 38px;
}

.list_month li {
  text-align: center;
  width: 20px;
  padding: 0 0;
}

.list_month li a {
  font-size: 14px;
  line-height: 24px;
  color: #a19c98;
}

.list_month li.active a {
  color: var(--main-color);
  font-size: 16px;
}

.v_play {
  position: relative;
  display: block;
}

.ved_play {
  position: absolute;
  left: 109px;
  top: 62px;
}

.news_txt .ved_list ul {
  display: none;
}

.news_txt .ved_list ul.active {
  display: block;
}

.news_vedio {
  padding-top: 0;
}

/*视频播放*/
.news_shi {
  display: none;
}

.xxkc_video {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

.xxkc_video .xx_video {
  position: absolute;
  width: 854px;
  height: 586px;
  left: 50%;
  top: 50%;
  margin-left: -427px;
  margin-top: -300px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 4px;
}

.xxkc_video .xx_video .v_ctrl {
  position: relative;
  margin: 20px 0;
}

.xxkc_video .xx_video .v_ctrl video {
  width: 854px;
}

.xxkc_video .xx_video .v_ctrl a {
  position: absolute;
  left: 50%;
  margin-left: -50px;
  top: 50%;
  margin-top: -50px;
}

.xxkc_video .xx_close {
  width: 824px;
  height: 20px;
  text-align: center;
  margin: 15px 0;
}

.xxkc_video .xx_close b {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 26px;
  cursor: pointer;
}

.xx_lf,
.xx_rt {
  position: absolute;
  top: 50%;
  margin-top: -35px;
  cursor: pointer;
}

.xx_lf {
  left: -101px;
}

.xx_rt {
  right: -101px;
}

.xx_lf span,
.xx_rt span {
  display: inline-block;
  width: 71px;
  height: 71px;
}

.xx_lf span {
  background: url(../images/second/vedio_lf.png) no-repeat;
}

.xx_lf span:hover {
  background: url(../images/second/vedio_lfb.png) no-repeat;
}

.xx_rt span {
  background: url(../images/second/vedio_rt.png) no-repeat;
}

.xx_rt span:hover {
  background: url(../images/second/vedio_rtb.png) no-repeat;
}

/***************新闻详情*******/
.product {
  position: relative;
}

.back {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 199;
  font-size: 0;
}

.ny-title .back {
 top: 11px;
}

.back span {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/second/goback.png) no-repeat;
}

.detail {
  position: relative;
}

.det_title {
  font-size: 14px;
}

.det_title a {
  font-size: 14px;
  color: #aaabaf;
}

.det_title a:hover {
  color: var(--main-color);
}

.det_ti {
  padding-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.det_ti h1 {
  font-size: 22px;
}

.det_time {
  font-size: 16px;
  color: #aaabaf;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.det_time div {
  margin-right: 60px;
}

.det_time b {
  display: inline-block;
  width: 20px;
  height: 14px;
  background: url(../images/second/icon_de01.png) no-repeat;
  margin-right: 8px;
}

.det_icon a {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: cover;
}

.det_icon a:first-child {
  background: url(../images/second/sj_wxb.png) no-repeat;
}

.det_icon a:nth-child(2) {
  background: url(../images/second/sj_wbb.png) no-repeat;
}

.det_icon a:last-child {
  background: url(../images/second/sj_qqb.png) no-repeat;
}

.wxx {
  position: relative;
}

.wxx img {
  position: absolute;
  width: 120px;
  z-index: 10001;
  top: 35px;
  left: -28px;
  padding: 5px;
  background-color: #dddddd;
  display: none;
}

.det_con {
  padding-top: 30px;
}

.det_con p {
  font-size: 14px;
  color: #646361;
  margin-bottom: 10px;
}

.det_con {
  margin-bottom: 25px;
}

.det_cor {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #eeeeee;
}

.det_corr {
  border-top: none;
}

.det_cor h1 {
  font-size: 18px;
  margin-bottom: 20px;
}

.det_cor b {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  background: url(../images/second/sx.png) no-repeat;
  margin-left: 6px;
}

.xgxw li {
  width: 22%;
  margin-right: 3%;
  float: left;
}

.go_prev,
.go_next {
  position: fixed;
}

.go_prev span,
.go_next span {
  display: inline-block;
  width: 71px;
  height: 71px;
}

.go_prev {
  left: 50px;
}

.go_next {
  right: 50px;
}

.go_prev span {
  background: url(../images/second/vedio_lf.png) no-repeat;
}

.go_next span {
  background: url(../images/second/vedio_rt.png) no-repeat;
}

.go_prev span:hover {
  background: url(../images/second/vedio_lfb.png) no-repeat;
}

.go_next span:hover {
  background: url(../images/second/vedio_rtb.png) no-repeat;
}

/*********************联系我们*********/
.lxwm_title {
  padding: 35px 0;
}

.lxwm_title h1 {
  width: 230px;
  margin: 0 auto;
  font-size: 22px;
  color: #373737;
}

.lxwm_title h1 a {
  padding-right: 20px;
  color: #b8b8b8;
}

.lxwm_title h1 a.active {
  color: #333;
}

.lxwm {
  padding: 50px 0;
  background-color: #f8f8f8;
}

.lxwm_inner {
  padding: 5px;
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
}

.lxwm_con {
  width: 310px;
  padding: 50px;
  background-color: #ffffff;
  box-shadow: 2px 2px 10px 0 #a9aaac;
}

.lxwm_con h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}

.lxwm_con h1 b {
  display: block;
  width: 88px;
  height: 88px;
  margin: 10px auto;
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.lxwm_con p {
  font-size: 16px;
  color: #646361;
  margin-bottom: 15px;
  text-align: center;
}

.lxwm_con p:hover {
  color: var(--main-color);
}

.lxwm_con p span {
  display: inline-block;
  width: 23px;
  height: 22px;
  margin-right: 10px;
  vertical-align: top;
}

.lxwm_bg>img {
  width: 100%;
}

.lxwm_bg {
  width: 100%;
  position: relative;
  padding-bottom: 50px;
  min-height: 500px;
}

.lxwm_bot {
  position: absolute;
  left: 50%;
  width: 400px;
  margin-left: -174px;
  bottom: 20px;
}

.lxwm_bot p {
  font-size: 20px;
  text-align: center;
  color: #373737;
}

.lxwm_bot h4 {
  font-size: 18px;
  color: #898887;
  text-align: center;
  margin-bottom: 15px;
}

.lx_zx {
  padding: 15px 0;
}

/*项目详情页*/
.xx_bg {
  background: url("../images/second/xx_bg.jpg");
  background-position: center 0;
}

.xm_title h1 {
  width: 400px;
}

.xm_title h1 a {
  color: #b8b8b8;
}

.xm_title h1 a.active {
  color: #373737;
}
 
.xm_detail img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 15px;
}

.xm_detail h1 {
  font-size: 18px;
  padding: 20px 0;
}

.xm_detail p {
  font-size: 14px;
  color: #86878b;
  margin-bottom: 15px;
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
  border: none;
}

.zp_btn {
  margin: 15px 0;
}

.zp_btn h2 {
  font-size: 16px;
  color: #6c6b6a;
  line-height: 28px;
}

.zp_btn h2 span {
  color: #3a3a3a;
  font-weight: bold;
}

.zp_fy {
  padding: 20px 0;
}

/****************************技术-技术简介****************/
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: none;
  background-color: #aab3b7;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  height: 12px;
  width: 12px;
  margin: -2px 0 0 -2px;
  border-radius: 100%;
}

#fp-nav ul li .fp-tooltip {
  color: #333333;
}

/*fullpage首页*/
.section {
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
}

.section1-content {
  position: relative;
  left: 100%;
  transition: all linear 0.5s;
}

.active {
  color: #333333;
}

.jsjz_title {
  height: 50px;
  margin-top: 30px;
}

.jsjz_title h1 {
  width: 230px;
  margin: 0 auto;
}

.jsjz_title h1 a {
  line-height: 50px;
  font-size: 18px;
  color: #cdcdcd;
}

.jsjz_title h1 a:first-child {
  margin-right: 30px;
}

.jsjz_title h1 a.active {
  color: #ffffff;
}

.jsjz_con {
  margin-bottom: 20px;
}

.jsjz_con h1 {
  font-size: 32px;
}

.jj_01 h1 {
  padding-top: 60px;
  width: 154px;
  margin: 0 auto 45px;
}

.tdxg {
  width: 100%;
  margin-top: 20px;
}

.tdxg h2 {
  font-size: 16px;
  text-align: center;
  color: #999;
}

.section3 .tdxg {
  margin-top: 0;
  margin-bottom: 40px;
}

.section1 .tdxg {
  margin-top: 0;
  margin-bottom: 30px;
}

/*首屏*/
.section1 .jj_01 h1 {
  padding-top: 0;
}

.section5 .jj_01 h1 {
  padding-top: 100px;
}

.jj_01 h1 span {
  display: block;
  width: 130px;
  margin: 0 auto;
  background-color: #000000;
  height: 2px;
  margin-top: 8px;
}

.jsjz_con p {
  text-align: center;
  font-size: 14px;
  color: #242424;
  line-height: 24px;
}

.jj_can01 {
  width: 925px;
  height: 390px;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
}

.jj_lf,
.jj_rt,
#cva_01 {
  position: absolute;
  top: 0;
}

.jj_lf,
.jj_rt {
  left: 26px;
}

.jj_can01 .jj_lf,
.jj_can01 .jj_rt {
  top: 80px;
  margin-left: 240px;
}

#cva_01 {
  left: 0;
  cursor: pointer;
  z-index: 200;
}

.jj_lf {
  background: url(../images/second/jj/jj01.jpg) no-repeat;
  width: 237px;
  height: 336px;
  z-index: 100;
}

.jj_rt {
  background: url(../images/second/jj/jj02.png) no-repeat;
  width: 475px;
  height: 336px;
  z-index: 10;
}

/*技术简介02*/
.section2-content {
  position: relative;
  right: 100%;
  top: 90px;
  transition: all linear 0.5s;
}

.jj_02 h1 {
  width: 64px;
}

.jj_02 h1 span {
  width: 65px;
}

.jj_can02 {
  width: 860px;
  height: 272px;
  margin: 0 auto;
  position: relative;
}

.jj_lf_02 {
  background: url(../images/second/jj/gp02.png) no-repeat;
  width: 311px;
  height: 272px;
  margin-left: 90px;
}

.jj_rt_02 {
  background: url(../images/second/jj/gp01.png) no-repeat;
  width: 622px;
  height: 272px;
  margin-left: 90px;
}

#cva_02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  width: 772px;
}

/*技术简介03*/
.section3-content {
  position: relative;
  left: 100%;
  top: 62px;
  transition: all linear 0.5s;
  height: 100%;
}

.jj_can03 {
  width: 100%;
  height: 525px;
  margin: 0 auto;
  position: absolute;
  bottom: 62px;
}

.jj_lf_03 {
  background-image: url(../images/second/jj/sc01.jpg);
  background-size: 100vw auto;
  background-repeat: no-repeat;
  background-position: bottom left;
  width: 960px;
  height: 525px;
  left: 0;
}

.jj_rt_03 {
  background-image: url(../images/second/jj/sc02.jpg);
  background-size: 100vw auto;
  background-repeat: no-repeat;
  background-position: bottom left;
  width: 100%;
  height: 525px;
  left: 0;
}

#cva_03 {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 101;
  width: 1960px;
}

/*技术简介04*/
.section4-content {
  position: relative;
  right: 100%;
  top: 100px;
  transition: all linear 0.5s;
}

.jg_list {
  width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
}

.jg_one h2 {
  width: 360px;
  text-align: center;
  color: #242424;
  font-size: 30px;
  padding-bottom: 160px;
  border-bottom: 1px solid #000000;
}

.jg_list p {
  color: #242424;
  font-size: 18px;
  padding: 20px 0;
}

.jg_two，.jg_three {
  padding-top: 55px;
}

.jg_two {
  margin-top: 56px;
}

.jg_three {
  margin-right: 171px;
}

.jg_three h2 {
  width: 204px;
  text-align: center;
  color: #242424;
  font-size: 30px;
  padding-bottom: 33px;
}

/*技术简介05*/
.section5-content .jsjz_con {
  margin-bottom: 0;
}

.section5-content .jj_01 h1 {
  margin: 0 auto;
}

.section5-content {
  position: relative;
  left: 100%;
  transition: all linear 0.5s;
}

.section5-content h1 {
  padding-bottom: 35px;
}

.section5-content h1,
.section5-content h2 {
  text-align: center;
}

.section5-content .jj_01 h1,
.section3-content .jj_01 h1 {
  width: 130px;
}

.section5-content .jj_01 h1 span,
.section3-content .jj_01 h1 span {
  width: 110px;
}

.wd_lf,
.wd_rt {
  width: 370px;
}

.jj_wd {
  padding-top: 12vh;
}

.wd_di,
.wd_gao {
  width: 61px;
  height: 179px;
  margin: 0 auto;
  position: relative;
}

.wd_bg {
  position: absolute;
  left: 27px;
  bottom: 39px;
  width: 4px;
  height: 122px;
  background-color: #e4e4e4;
}

.wd_lan {
  width: 4px;
  position: absolute;
  height: 0;
  bottom: 0;
  background-color: #70bbb7;
  transition: all linear 1s;
  -moz-transition: all linear 1s;
  -webkit-transition: all linear 1s;
}

.wd_hong {
  width: 4px;
  position: absolute;
  height: 0;
  bottom: 0;
  background-color: #cb3340;
  transition: all linear 1s;
  -moz-transition: all linear 1s;
  -webkit-transition: all linear 1s;
}

.wd_di {
  background: url(../images/second/jj/wd01.png) no-repeat;
}

.wd_gao {
  background: url(../images/second/jj/wd02.png) no-repeat;
}

.wd_lf h2,
.wd_rt h2 {
  font-size: 30px;
  text-align: center;
  padding-top: 20px;
}

.wd_lf h2 {
  color: #70bbb7;
}

.wd_rt h2 {
  color: #cb3340;
}

/********************技术成果********/
/*01*/
.section1-con {
  position: relative;
}

.cg_bai {
  background: url(../images/second/cg_bg01.png) no-repeat;
  background-size: 100% auto;
  height: 852px;
  background-position: center 0;
}

.bai_inner {
  opacity: 0;
  transition: all linear 1s;
  -moz-transition: all linear 1s;
  -webkit-transition: all linear 1s;
}

.cg_01 h1 {
  width: 250px;
  color: #ffffff;
  font-size: 32px;
}

.cg_01 h1 span {
  background-color: #ffffff;
  width: 194px;
}

.bai_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  width: 980px;
  margin: 0 auto;
  padding-top: 70px;
}

.bai_02 {
  margin-right: 87px;
}

.bai_02 p {
  color: #ffffff;
  font-size: 12px;
}

.bai_02 .p2 {
  padding-top: 3px;
}

.bai_02 .p3 {
  padding: 6px 0;
}

.bai_03 {
  margin-right: 30px;
}

.bai_04 {
  color: #ffffff;
  padding-top: 16px;
}

.bai_04 h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bai_04 h3 {
  font-size: 48px;
}

.bai_04 h3 span {
  font-size: 20px;
}

/*柔光02*/
.cg_rou {
  padding-top: 135px;
  opacity: 0;
  transition: all linear 1s;
  -moz-transition: all linear 1s;
  -webkit-transition: all linear 1s;
}

.rou_con {
  width: 911px;
  margin: 0 auto;
}

.cg_02 h1 {
  color: #000;
}

.cg_02 h1 span {
  background-color: #000;
}

.rou_txt {
  position: relative;
  left: 578px;
  bottom: 90px;
}

.rou_txt p {
  font-size: 18px;
  color: #242424;
}

.rou_txt h1 {
  font-size: 48px;
  color: #242424;
}

.rou_txt h1 sup {
  font-size: 20px;
  vertical-align: top;
}

.rou_txt h1 span {
  font-size: 20px;
}

/*03*/
.cg_tm {
  position: relative;
  height: 100vh;
  background: url(../images/second/cg_bg02.jpg) no-repeat;
  background-size: cover;
  background-position: center 0;
}

.tm_inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 934px;
  right: 0;
  background: rgba(255, 255, 255, 0.3);
}

.tm_txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background-color: transparent;
}

#cva_04 {
  cursor: pointer;
}

/***增***/
.section5 .cg_01 h1 {
  padding-top: 60px;
}

/*********项目方式二***************/

#cg_btn {
  padding-left: 908px;
  overflow: hidden;
}

#cg_btn span {
  font-size: 22px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
  color: #000000;
}

#cg_btn03 {
  padding-left: 876px;
}

#cg_btn03 span {
  font-size: 22px;
  vertical-align: middle;
  display: inline-block;
  color: #000000;
}

#cg_btn01 {
  padding-left: 237px;
}

#cg_btn02 {
  padding-left: 253px;
}

#cg_btn02 span {
  font-size: 22px;
  vertical-align: middle;
  display: inline-block;
  color: #000000;
}

/************方式二结束*******************/

.cg_02 p {
  text-align: center;
  font-size: 14px;
  color: #242424;
  line-height: 24px;
}

.ds_im {
  padding-top: 6px;
  padding-bottom: 20px;
  width: 614px;
  margin: 0 auto;
}

.cg_tm {
  opacity: 0;
  transition: all linear 1s;
  -moz-transition: all linear 1s;
  -webkit-transition: all linear 1s;
}

.section4-con {
  opacity: 0;
  transition: all linear 1s;
  -moz-transition: all linear 1s;
  -webkit-transition: all linear 1s;
}

/**********************项目***********/
.dian-list {
  position: absolute;
  right: 25px;
  top: 35%;
}

.dian-list li {
  margin: 2px 0;
}

.dian-list li .dian-txt {
  color: #333;
  font-size: 14px;
  margin-right: 3px;
  opacity: 0;
  display: inline-block;
}

.dian-list li a {
  display: inline-block;
  width: 12px;
}

.dian-list li:hover .dian-txt {
  opacity: 1;
}

.dian-list li span {
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #aab3b7;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-left: 2px;
}

.dian-list li.active span {
  width: 12px;
  height: 12px;
  background-color: #333333;
  margin-left: 0;
}

.dian-list a:target {
  padding-top: 102px;
}

.qcc {
  overflow: hidden;
}

#qc,
#zhu,
#jd,
#sy {
  position: relative;
}

.xm_inner {
  position: absolute;
  top: 0;
  width: 100%;
}

.xm_01 {
  color: #ffffff;
  width: 1200px;
  margin: 0 auto;
  margin-top: 150px;
  opacity: 0;
}

.xm_01 h1 {
  width: 65px;
}

.xm_01 h1 a {
  color: #ffffff;
}

.xm_01 h1 span {
  width: 55px;
  background-color: #ffffff;
}

.xm_01 p {
  color: #ffffff;
}

/*汽车*/
#qc img {
  width: 100%;
}

#qc .btwo_bor {
  display: none;
  position: absolute;
  height: 20px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

#qc .btwo_aa {
  position: absolute;
  left: 28.1%;
  bottom: 33.4%;
}

#qc .btwo_aa span.breath {
  vertical-align: baseline;
}

#qc .btwo_aa b {
  margin-left: -83px;
  position: absolute;
  top: 5px;
  border-bottom: 1px solid #ffffff;
}

#qc .btwo_bb {
  position: absolute;
  left: 50%;
  bottom: 43%;
}

#qc .btwo_bb b {
  position: absolute;
  top: -15px;
  left: -64px;
}

#qc .btwo_bb div {
  width: 87px;
  top: 4px;
  left: -62px;
  border-left: 0;
  border-right: 1px solid #ffffff;
}

#qc .btwo_cc {
  position: absolute;
  right: 46.8%;
  top: 33.2%;
}

#qc .btwo_cc b {
  width: 87px;
  position: absolute;
  top: -15px;
  left: 22px;
}

#qc .btwo_cc div {
  width: 76px;
  top: 4px;
  left: 21px;
}

#qc .btwo_dd {
  position: absolute;
  right: 39.5%;
  top: 34%;
}

#qc .btwo_dd b {
  width: 87px;
  position: absolute;
  top: -15px;
  left: 22px;
}

#qc .btwo_dd div {
  width: 76px;
  top: 4px;
  left: 21px;
}

#qc .btwo_ee {
  position: absolute;
  right: 30.2%;
  top: 39.3%;
}

#qc .btwo_ee b {
  width: 104px;
  position: absolute;
  top: 5px;
  left: 32px;
  border-bottom: 1px solid #ffffff;
}

span.breath {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/index/final.gif) no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
}

/*02住宅*/
#qc b,
#zhu b,
#sy b,
#jd b,
.fiv b {
  color: #ffffff;
  font-family: "微软雅黑", "宋体", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

#zhu .btwo b {
  border-bottom: 1px solid #ffffff;
  position: absolute;
  top: 5px;
}
 
#zhu img {
  width: 100%;
}

#zhu .btwo_aa {
  position: absolute;
  left: 11.5%;
  top: 24%;
}

#zhu .btwo_aa span.breath {
  vertical-align: baseline;
}

#zhu .btwo_aa b {
  padding-left: 29px;
  width: 110px;
  left: 26px;
}

#zhu .btwo_bb {
  position: absolute;
  left: 31.5%;
  bottom: 13%;
}

#zhu .btwo_bb b {
  padding-left: 5px;
  width: 99px;
  left: -80px;
}

#zhu .btwo_cc {
  position: absolute;
  right: 31.5%;
  bottom: 32%;
}

#zhu .btwo_cc b {
  padding-left: 29px;
  width: 110px;
  left: 26px;
}

#zhu .btwo_dd {
  position: absolute;
  right: 15%;
  top: 32.1%;
}

#zhu .btwo_dd b {
  padding-left: 5px;
  width: 99px;
  left: -80px;
}

/*03商用*/
#sy img {
  width: 100%;
}

#sy .btwo_aa {
  position: absolute;
  right: 11.5%;
  top: 41.4%;
}

#sy .btwo_aa span.breath {
  vertical-align: baseline;
}

#sy .btwo b {
  border-bottom: 1px solid #ffffff;
  position: absolute;
  top: 5px;
}

#sy .btwo_aa b {
  padding-left: 5px;
  width: 120px;
  left: -100px;
}

/*04酒店*/
#jd img {
  width: 100%;
}

#jd .btwo_aa {
  position: absolute;
  left: 38.8%;
  bottom: 42%;
}

#jd .btwo_aa span.breath {
  vertical-align: baseline;
}

#jd .btwo b {
  border-bottom: 1px solid #ffffff;
  position: absolute;
  top: 5px;
}

#jd .btwo_aa b {
  padding-left: 15px;
  width: 110px;
  left: 26px;
}

#jd .btwo_bb {
  position: absolute;
  left: 48.2%;
  bottom: 7%;
}

#jd .btwo_bb b {
  padding-left: 5px;
  width: 99px;
  left: -80px;
}

/*05定制*/
#dz img {
  width: 100%;
}

#dz .fiv_inner {
  position: relative;
}

#dz .fiv_inner>a {
  display: block;
}

.dz_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.dz_list {
  width: 1200px;
  margin: 0 auto;
}

.dz_list ul {
  overflow: hidden;
  background: url("../images/second/dz_n.png") no-repeat;
}

.dz_list ul li {
  float: left;
}

.dz_list ul li {
  margin-left: -16px;
}

.dz_list ul li:first-child {
  margin-left: 0;
}

.dz_list ul li span {
  display: block;
  width: 176px;
  height: 176px;
  position: relative;
}

.dz_list ul li span b {
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 56px;
  top: 60px;
  left: 50px;
  transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
}

.dz_list ul li span:hover b {
  top: 52px;
}

.dz_list ul li:first-child span b {
  background: url(../images/second/dz_01.png) no-repeat;
}

.dz_list ul li:nth-child(2) span b {
  background: url(../images/second/dz_02.png) no-repeat;
}

.dz_list ul li:nth-child(3) span b {
  background: url(../images/second/dz_03.png) no-repeat;
}

.dz_list ul li:nth-child(4) span b {
  background: url(../images/second/dz_04.png) no-repeat;
}

.dz_list ul li:nth-child(5) span b {
  background: url(../images/second/dz_05.png) no-repeat;
}

.dz_list ul li:nth-child(6) span b {
  background: url(../images/second/dz_06.png) no-repeat;
}

.dz_list ul li:last-child span b {
  background: url(../images/second/dz_07.png) no-repeat;
}

.dz_list ul li p {
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  padding-top: 40px;
}
 

/*浮动效果CSS*/
.fzlc,
.fzlc_con,
.fzlc_bot {
  margin-top: 100px;
}
 
/*新闻视频尺寸控制*/
.det_conn video {
  width: 95%;
  margin: 0 2%;
}

/*搜索页面*/
.y_sou {
  border-top: 1px solid #eeeeee;
}

.y_sou .jyzp {
  border: none;
}

.y_sou .lxwm_title h2 {
  font-size: 24px;
  color: #5e5e5e;
  padding-left: 15px;
}

.y_sou .product {
  padding-top: 0;
}

.y_sou .product .lxwm_title {
  padding: 15px 0;
}

.y_sou .product .pro_con {
  padding-top: 5px;
}

.y_sou .product {
  min-height: 448px;
}

.y_sou .y_t {
  width: 198px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.y_sou .y_t h4 {
  margin-top: 20px;
  font-size: 16px;
  color: #5e5e5e;
}

.y_t {
  width: 198px;
  margin: 0 auto;
  text-align: center;
  padding: 15px 0;
}

.y_t h4 {
  margin-top: 20px;
  font-size: 16px;
  color: #5e5e5e;
}

.heder_navli a span {
  display: none !important;
}

/* 新闻 */
.news-list ul {
  display: flex;
  flex-wrap: wrap;
}

.news-list ul li {
  margin-right: 5%;
  width: 30%;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s;
}

.news-list ul li:hover{
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-list ul li:nth-child(3n+3) {
  margin-right: 0;
}

.news-list ul li:nth-child(n+4) {
  margin-top: 35px;
}

.news-list ul li .pic {
  position: relative;
  width: 100%;
}

.news-list ul li .pic:before{
  display: block;
  content: "";
  padding-top: 62.5%;
}

.news-list ul li .pic img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-list ul li:hover .pic img{
  opacity: 0.9;
}

.news-list ul li .cont {
  padding: 20px;
  line-height: 25px;
  border: 1px solid #f5f5f5;
}

.news-list ul li .cont p {
  font-size: 14px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}

.news-list ul li .cont p:hover{
  color: var(--main-color);
}

.news-list ul li .cont span {
  color: #666666;
  font-size: 13px;
}
 
.ny-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


.ny-title .ny_nav {
  line-height: 47px;
  font-size: 12px;
  color: #64656A;
  cursor: default;
}

.ny-title .ny_nav a {
  color: #64656A;
}

.ny-title .ny_nav span {
  color: #000000;
}

.ny-title .ny_nav a:hover {
  text-decoration: underline;
  color: #c6b180;
}

.ny_c1_box{
  display: flex;
  align-items: flex-start;
}

.ny_c1_box>div{
  width: 50%;
}

.ny_c1_left_top {
  height: 510px;
  border: 1px solid #E4E4E4;
  width: 100%;
}

.ny_c1_left_top img {
  height: 508px;
  width: 100%;
}

.ny_c1_left_bottom img {
  display: block;
  cursor: pointer;
}

.ny_c1_left_bottom_box {
  width: 525px;
  position: relative;
  height: 100px;
  overflow: hidden;
}

.ny_c1_left_bottom_box {
  margin-top: 30px;
  margin-left: 30px;
}

.left, .lf {
  float: left;
}

.ny_c1_left_bottom_box ul {
  position: absolute;
}

.ny_c1_left_bottom_box ul li {
  margin: 0 5px;
  width: 94px;
  height: 85px;
  border: 1px solid #E4E4E4;
  overflow: hidden;
  float: left;
}

.ny_c1_left_bottom_box ul li img {
  width: 94px;
  height: 85px;
  display: block;
}

.ny_c1_left_bottom img {
  display: block;
  cursor: pointer;
}

.ny_c1_box>div.zd_middle {
  margin-top: 30px;
  width: 100%;
  max-width: 488px;
  margin-left: 30px;
  color: #333;
  line-height: 24px;
}

.zd_middle_header {
  font-size: 30px;
  color: #c6b180;
  padding-top: 10px;
}

.zd_middle_bottom ul li {
  margin: 15px 0;
  overflow: hidden;
}

.middle_bottom1 {
  width: 100%;
  color: #838383;
  font-size: 12px;
  line-height: 28px;
}

.middle_bottom1 i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #646361;
  margin-right: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: rgba(0,0,0,.7);
  width: 100%;
  display: none;
  z-index: 100000;
}

.modal-dialog {
  width: 70%;
  max-width: 1200px;
  background: #fff;
  margin-left: 15%;
  margin-top: 120px;
}

.modal-content {
  border-radius: 0;
}

.modal .modal-header>button span {
  font-size: 38px;
  color: #000;
}

.modal .modal-header h4 {
  font-size: 22px;
  color: #646361;
  padding-top: 25px;
  padding-bottom: 10px;
  padding-left: 80px;
}

.modal .modal-body ul {
  overflow: hidden;
}

.modal .modal-body li {
  float: left;
  width: 50%;
  margin: 10px 0;
}

.modal .modal-body li label {
  font-size: 16px;
  color: #79797b;
  font-weight: 500;
  text-align: right;
}

.modal .modal-body li label span {
  width: 130px;
  text-align: right;
  display: inline-block;
  vertical-align: top;
}

.modal .modal-body li label input {
  width: 260px;
  height: 36px;
  vertical-align: middle;
  display: inline-block;
}

.modal .modal-body li.mo_txt {
  width: 100%;
}

.modal .modal-body .mo_txt textarea {
  resize: none;
  height: 200px;
  width: 740px;
  padding: 3px 0 0 6px;
}

.mo_btn {
  padding: 8px 100px;
  background-color: #c6b180;
  color: #FFFFFF;
  margin-top: 42px;
  margin-bottom: 53px;
  display: inline-block;
}

.ny_c1_left_bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

.ny_c1_left_bottom_box{
  margin-top: 0;
  height: 85px;
}


.zd_middle_header p {
  font-size: 14px;
  color: #86878b;
  padding-top: 15px;
  border-bottom: 1px solid #eeeeee;
}

.middle_bottom1{
  font-size: 14px !important;
}

.zd_middle_bottom ul li{
  margin-bottom: 0;
}

/* 媒体查询 */
@media screen and (max-width:1430px){
  .jyzp-container .list-wrapper{
    padding-top: 30px;
    min-height: initial;
  }
  .jyzp-container .subnav{
    position: initial;
    left: initial;
    top: initial;
    margin-bottom: 30px;
    width: auto;
  }
  .jyzp-container .subnav ul{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .jyzp-container .subnav ul li{
    margin: 0 15px;
  }
}

@media screen and (max-width:1340px){
  .page-container{
    max-width: 1230px !important;
  }
  .home_banner2 .logo .logo1,
  .home_banner2 .logo .logo2{
    margin-bottom: 80px;
  }
  .home_banner2 .logo.on2 .logo3>div{
    transform: scale(0.8);
  }
  .index-hezuo .swiper-button{
    display: none;
  }
}

@media screen and (min-width:1231px){
  footer .top .page-container {
    padding-right: 65px;
  }
}

@media screen and (max-width:1230px){
  header .bot .left-wrap ul{
    margin-left: 30px;
  }
  header .bot .left-wrap ul li a{
    padding: 0 30px;
  }
  .index-jishu .wrap ul li{
    width: calc(100% / 3);
    text-align: center;
    opacity: 1;
  }
  .index-jishu .wrap ul li:nth-child(n+4){
    margin-top: 60px;
  }
  .index-jishu .wrap ul li p{
    margin-bottom: 20px;
    font-size: 18px;
  }
  .index-jishu .wrap ul li h2{
    margin-bottom: 20px;
    font-size: 30px;
  }
  .index-jszz h1,
  .index-jishu .txt h1{
    font-size: 36px;
  }
  .ny_c1_left_bottom{
    margin-top: 40px;
  }
  .jsjz_con h1{
    margin-bottom: 30px;
    font-size: 26px;
  }
  .fzlc_bot{
    width: auto;
  }
  .fz_zscq{
    padding: 40px 30px;
    width: 100%;
    height: auto;
  }
  .fz_zscq hr{
    margin: 30px 0;
  }
  .fz_bzrz{
    padding: 40px 30px;
    width: 100%;
    height: auto;
    border-top: solid 20px #ffffff;
  }
  .fz_rz span{
    /* margin-right: 20px;
    width: calc((100% - 40px) / 3); */
    text-align: center;
  }
  .fz_rz span:nth-child(3n+3){
    margin-right: 0;
  }
  .gs_ryzs{
    width: 100%;
  }
  .fz_zlzs{
    padding: 40px 30px;
  }
  .gs_zlzs{
    width: auto;
  }
  .gs_zlzs .swiper-container{
    margin-right: 25px;
  }
  .fz_rz b{
    width: 100%;
  }
  .fz_rz b img{
    max-width: initial;
    width: 100%;
  }
  .fz_rz i{
    width: auto;
  }
  .lxwm{
    padding: 40px 0;
  }
  .lxwm_inner{
    flex-direction: column;
    padding: 0 15px;
    width: auto;
  }
  .lxwm_con{
    padding: 30px;
    width: 100%;
    height: auto;
    box-shadow: none;
  }
  .lxwm_con:nth-child(n+2){
    margin-top: 20px;
  }
  .news-list ul li{
    margin-right: 30px;
    width: calc((100% - 60px) / 3);
  }
  .news-list ul li:nth-child(3n+3){
    margin-right: 0;
  }
  .news-list ul li:nth-child(n+4){
    margin-top: 30px;
  }
}

@media screen and (min-width:992px){
  header .bot .left-wrap {
    margin-right: 30px;
  }
    
  header.on{
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  }

  header.on .bot .left-wrap .logo img:nth-child(1){
    display: none;
  }

  header.on .bot .left-wrap .logo img:nth-child(2){
    display: block;
  }

  header.on .bot .left-wrap ul li a{
    color: #fff;
  }

  header .bot .left-wrap ul li:hover a {
    color: var(--main-color) !important;
}

  header.on2 .bot ul li a {
    color: #000 !important;
  }

  header.on2 .bot .left-wrap .logo img:nth-child(1){
    display: block;
  }

  header.on2 .bot .left-wrap .logo img:nth-child(2){
    display: none;
  }
  header .bot .language ul {
    display: none;
    position: absolute;
    top: 100%;
    right: -20px;
    z-index: 1000;
    margin: 0;
    width: 80px;
    background-color: rgba(255, 255, 255, .7);
  }
  
  header .bot .language:hover ul{
    display: block;
  }
  
  header .bot .language ul li a {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    transition: all 0.3s;
  }
  
  header .bot .language ul li:hover a {
    color: var(--main-color);
    background-color: #fff;
  }
    
  .index-jishu:before{
    display: block;
    content: "";
    padding-top: calc(825 / 1920 * 100%);
  }

  .index-jishu .js-wrapper{
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    color: #ffffff;
    text-align: center;
    transform: translateY(-50%);
  }
  .newtext{
    display: none;
  }
}

@media screen and (max-width:991px){
  .index-jishu .js-wrapper{
    color: #ffffff;
    text-align: center;
  }
  .index-jishu .txt p{
    padding-top: 20px;
    font-size: 14px;
    line-height: 36px;
  }
  header .bot .left-wrap .logo img{
    display: block;
  }
  header .bot .page-container{
    height: 80px;
  }
  header .bot .left-wrap ul{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    z-index: 999999;
    margin-left: 0;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  header .bot .left-wrap ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 10px;
  }
  header .bot .left-wrap ul li:before{
    height: 1px;
    opacity: 1;
    background-color: #f7f7f7;
  }
  header .bot .left-wrap ul li.active:before{
    background-color: var(--main-color);
  }
  header .bot .left-wrap ul li a{
    flex: 1;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
    line-height: 50px;
  }
  header .bot .left-wrap ul li i{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
  }
  header .bot .left-wrap ul li i:before,
  header .bot .left-wrap ul li i:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -8px;
    width: 16px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s;
  }
  header .bot .left-wrap ul li i:before{
    transform: rotate(90deg);
  }
  header .bot .left-wrap ul li i.active:before{
    transform: rotate(0deg);
  }
  header .bot .left-wrap ul .xiala{
    display: none;
    background-color: #f7f7f7;
  }
  header .bot .left-wrap ul .xiala .items:nth-child(n+2){
    border-top: solid 1px #eee;
  }
  header .bot .left-wrap ul .xiala .items a{
    display: block;
    padding-left: 40px;
    font-size: 14px;
    color: #666;
    line-height: 40px;
  }
  header .bot .left-wrap ul .xiala .items.active a{
    color: var(--main-color);
  }
  header .bot .right-wrap{
    display: flex;
    align-items: center;
  }
  header .bot .ShowNavBtn{
    position: relative;
    width: 34px;
    height: 34px;
    transition: all 0.2s;
    background-color: #000;
  }
  header .bot .ShowNavBtn i{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -8px;
    width: 16px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
  }
  header .bot .ShowNavBtn i:nth-child(1){
    margin-top: -7px;
  }
  header .bot .ShowNavBtn i:nth-child(3){
    margin-top: 5px;
  }
  header .bot .ShowNavBtn.active{
    background-color: var(--main-color);
  }
  header .bot .ShowNavBtn.active i:nth-child(1){
    margin-top: 0;
    margin-left: -10px;
    width: 20px;
    transform: rotate(45deg);
  }
  header .bot .ShowNavBtn.active i:nth-child(2){
    margin-left: 0;
    width: 0;
  }
  header .bot .ShowNavBtn.active i:nth-child(3){
    margin-top: 0;
    margin-left: -10px;
    width: 20px;
    transform: rotate(-45deg);
  }
  header .bot .language ul{
    display: flex;
    align-items: center;
    margin-right: 30px;
  }
  header .bot .language ul li:nth-child(n+2){
    position: relative;
    margin-left: 10px;
    padding-left: 11px;
  }
  header .bot .language ul li:nth-child(n+2):before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -6px;
    width: 1px;
    height: 12px;
    background-color: #f7f7f7;
  }
  header .bot .language ul li a{
    display: block;
    font-size: 14px;
    color: #333;
  }
  header .bot .language ul li.active a{
    color: var(--main-color);
  }
  .index-onePage{
    height: calc(100vh - 80px);
    overflow: hidden;
  }
  .index-onePage .home_banner{
    position: relative;
    height: auto !important;
  }
  .index-onePage .home_banner .video_bg{
    position: initial;
  }
  .index-onePage .home_banner .video_bg video{
    position: initial;
    display: block;
    height:auto;
  }
  .index-onePage .home_banner .video_bg:before{
    display: none;
  }
  .index-onePage .home_banner .video_bg img{
    display: block;
    width: 100%;
    /* animation: move4 linear 53s alternate infinite; */
  }
  .index-jszz{
    padding-top: 0;
  }
  .index-jszz img{
    width: 100%;
  }
  .index-jszz .text-center{
    top: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .index-jszz h1, .index-jishu .txt h1{
    font-size: 22px;
  }
  .index-jszz p{
    padding-top: 20px;
    font-size: 14px;
    line-height: 36px;
  }
  .index-jszz p span{
    font-size: 14px !important;
  }
  .index-hezuo .wrapper{
    padding: 0;
  }
  .index-jishu .txt{
    margin-bottom: 50px;
  }
  .index-jszz #video{
    left: 50%;
    top: 0;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
  }
  .home_banner .shu{
    position: absolute;
    bottom: 0px;
    transform: scale(0.8);
  }
  footer .top .page-container{
    flex-direction: column;
    justify-content: flex-start;
  }
  footer .top .nav{
    width: 100%;
  }
  footer .top .nav > ul > li{
    flex: 1;
  }
  footer .top .nav > ul > li:nth-child(n+2){
    margin-left: 0;
  }
  footer .top .contact{
    margin-top: 30px;
    width: 100%;
  }
  footer .top h2{
    margin-bottom: 20px;
  }
  .ny_c1_box{
    flex-direction: column;
  }
  .ny_c1_box>div{
    width: 100%;
  }
  .ny_c1_left_top{
    height: 90vw;
  }
  .ny_c1_left_top img{
    display: block;
    position: relative;
    height: 100%;
    object-fit: contain;
  }
  .ny_c1_left_bottom{
    margin-top: 30px;
  }
  .ny_c1_box>div.zd_middle{
    max-width: initial;
    margin-left: 0;
  }
  .zd_middle_header{
    padding-top: 0;
    font-size: 24px;
  }
  .js-wrapper:nth-child(n+2){
    border-top: solid 1px #f8f8f8;
  }
  .js-container .text-wrapper{
    font-size: 14px;
    line-height: 30px;
  }
  .js-container .img-wrapper{
    margin-top: 20px;
    font-size: 0;
    text-align: center;
  }
  .js-container .img-wrapper img{
    max-width: 100%;
  }
  .cg_bai{
    padding: 0 !important;
    height: auto !important;
    background: none;
  }
  .result-container .section1 .cg_bai .bai_innerr .jj_01 h1{
    margin-bottom: 30px;
  }
  .result-container .section1 .bai_con{
    position: initial !important;
    padding: 0;
    margin: 0;
    bottom:initial !important;
  }
  .result-container .section1 .bai_con .rou_txt{
    bottom:initial !important;
    text-align: center;
  }
  .result-container .section1 .bai_con .rou_txt p{
    font-size: 14px;
  }
  .result-container .section1 .bai_con .rou_txt h1{
    font-size: 24px;
  }
  .result-container .section2 .cg_rou{
    padding-top: 40px;
    padding-bottom: 40px;
    opacity: 1;
  }
  .result-container .section2 .cg_rou .jj_01 h1{
    padding-top: 0;
  }
  .result-container .section2 .cg_rou .rou_txt{
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
  }
  .result-container .section2 .rou_txt p{
    font-size: 14px;
  }
  .result-container .section2 .rou_txt h1{
    font-size: 24px;
  }
  .result-container .cg_01 h1{
    padding-top: 0;
    font-size: 24px;
    text-align: center;
  }
  .result-container .section3 {
    overflow: initial;
  }
  .result-container .section3 .cg_tm{
    opacity: 1;
    padding-top: 40px;
    padding-bottom: 40px;
    height: 62.5vw;
  }
  .result-container .section3 .jj_01 h1{
    padding-top: 0;
  }
  .result-container .section3 .tm_txt{
    height: 100%;
  }
  .result-container .section{
    overflow: initial;
  }
  .result-container .bai_inner{
    opacity: 1;
  }
  .result-container .section1-con > div{
    padding-top: 40px;
    padding-bottom: 40px;
    height: 62.5vw !important;
    background-image: url(../images/cxcg2.png) !important;
    background-position: top !important;
    background-size: auto 100% !important;
  }
  .gs_zlzs img{
    width: 100%;
  }
  .gsjj_wh .gsjj_t{
    width: 100%;
  }
  .gsjj_wh .gsjj_t h1{
    margin-bottom: 30px;
    font-size: 18px;
  }
  .gsjj_wh .gsjj_t p{
    margin-bottom: 20px;
  }
  .fzlc, .fzlc_con, .fzlc_bot{
    margin-top: 30px;
  }
  .ydd-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
  }
  .ydd-menu .items{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 50px;
    font-size: 16px;
    color: #b8b8b8;
  }
  .ydd-menu .items.active{
    color: var(--main-color);
  }
  .ydd-menu .items:nth-child(n+2){
    border-left: 1px solid #e4e4e4;
  }
  .fzlc_bot{
    padding-top: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
  .fz_zlzs{
    margin-top: 10px;
  }
  .fz_bzrz{
    padding: 0;
    border: none;
  }
  .fz_rz{
    padding: 30px 15px;
  }
  .gs_ryzs,.fz_rz{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
  }
  .gs_ryzs .swiper-container{
    margin: 0;
    width: calc(100% - 60px);
  }
  .fz_rz .swiper-container{
    margin: 0;
    width: calc(100% - 60px);
  }
  .lxwm_con h1 b{
    margin-top: 0;
  }
  .lxwm_con h1{
    margin-bottom: 30px;
    font-size: 18px;
  }
  .lxwm_con p{
    margin-bottom: 10px;
    font-size: 14px;
  }
  .lxwm_conn h1 b span{
    font-size: 18px !important;
  }
  .lxwm_conn h1 span{
    font-size: 18px !important;
  }
  .lxwm_conn p span{
    font-size: 18px !important;
  }
  .jyzp-container .text{
    padding-bottom: 30px;
    min-height: initial;
    font-size: 16px;
    line-height: 30px;
  }
  .jyzp-container .panel .panel-heading h4 b{
    width: 35%;
    font-size: 16px;
  }
  .jyzp-container .panel .panel-heading h4 i{
    font-size: 16px;
  }
  .jyzp-container .panel .panel-heading h4 a{
    width: 20px;
    height: 20px;
    background-size: 100% auto;
    background-position: center center;
  }
  .jyzp-container .panel .panel-heading{
    padding: 0;
  }
  .jyzp-container .panel .panel-heading h4 b{
    width: 25%;
  }
  .jyzp-container .panel .panel-heading h4 i{
    width: 25%;
  }
  .news-list ul li {
    margin-right: 20px;
    width: calc((100% - 20px) / 2);
  }
  .news-list ul li:nth-child(3n+3) {
    margin-right: 20px;
  }
  .news-list ul li:nth-child(2n+2) {
    margin-right: 0;
  }
  .news-list ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  .cg_tm{
    background-image: url(../images/cxcg1.png);
  }
  .section5-con{
    padding-top: 40px;
  }
  .ds_im img{
    width: 100% !important;
  }
  .detail .det_con img{
    max-width: 100% !important;
    height: auto !important;
  }
  .xgxw li{
    margin-right: 20px;
    width: calc(50% - 10px);
  }
  .xgxw li:nth-child(2n+2){
    margin-right: 0;
  }
  .xgxw li:nth-child(n+3){
    margin-top: 20px;
  }
  .det_title{
    font-size: 12px;
  }
  .det_ti{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .news_txt h3{
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow:ellipsis;
  }
  .det_ti h1{
    font-size: 18px;
  }
  .det_con,
  .det_con span,
  .det_con p{
    font-size: 14px !important;
  }
  .det_cor h1{
    font-size: 14px;
  }
  .det_cor h1{
    font-size: 14px;
  }
  .det_cor b{
    width: 16px;
    height: 16px;
    background-size: 100% auto;
    background-position: center;
  }
  .news_txt p{
    font-size: 12px;
  }
  .det_time{
    align-items: center;
  }
  .det_time div{
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 20px;
  }
  .bdshare-button-style2-24 a, .bdshare-button-style2-24 .bds_more{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .det_time b{
    display: block;
  }
  .shipin-vid{
    position: relative;
    height: 62.5vw;
  }
  .shipin-vid video{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    display: block;
  }
  .shipin-vid-con{
    padding: 20px 15px;
  }
  .shipin-vid-cons h5{
    font-size: 16px;
    line-height: 24px;
  }
  .shipin{
    padding-top: 0;
    padding-bottom: 0;
  }
  .shipin-tuijian{
    padding-bottom: 0;
  }
  .shipin-tuijian h5{
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
  }
  .shipin-tuijian ul{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .shipin-tuijian ul li{
    margin-right: 20px;
    width: calc(50% - 10px);
  }
  .shipin-tuijian ul li:nth-child(4){
    margin-right: 20px;
  }
  .shipin-tuijian ul li:nth-child(even){
    margin-right: 0;
  }
  .shipin-tuijian ul li:nth-child(n+3){
    margin-top: 20px;
  }
  .shipin-vo{
    height: calc((100vw - 50px) / 2 * 0.625);
  }
  .shipin-vo img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .shipin-vo-con{
    padding: 10px;
  }
  .shipin-vo-con p{
    font-size: 14px;
    line-height: 24px;
  }
  .shipin-vo-con span{
    font-size: 12px;
    line-height: 24px;
  }
  .cg_01 h1 span{
    width: 60px;
  }
  .m-cxcg-wrap img{
    display: block;
    width: 100%;
  }
  .section3 .section3-con .cg_tm .jj_01 {
    display: none;
  }
  .section4 .section1-con .bai_inner .jj_01{
    display: none;
  }
  .section2-con .cg_rou .page-container{
    padding-left: 0;
    padding-right: 0;
  }
  .newtext{
    display: block;
    padding: 26px;
  }
  .newtext h1{
    text-align: center;
    font-size: 18px;
    color: #000;
  }
  .newtext h1 span{
    display: block;
    width: 60px;
    margin: 0 auto;
    background-color: #000000;
    height: 2px;
    margin-top: 8px;
  }
}

@media screen and (max-width:767px){
  .main-pad-top-40{
    padding-top: 30px;
  }
  .main-pad-bot-40{
    padding-bottom: 30px;
  }
  header .bot .page-container{
    height: 68px;
  }
  header .bot .left-wrap .logo img{
    width: 90px;
  }
  header .bot .language ul{
    margin-right: 24px;
  }
  header .bot .left-wrap ul{
    position: fixed;
    top: 68px;
    bottom: 0px;
    overflow-y: auto;
  }
  header .bot .left-wrap ul li a{
    font-size: 14px;
  }
  header .bot .ShowNavBtn{
    width: 30px;
    height: 30px;
  }
  header .bot .ShowNavBtn i{
    margin-left: -7px;
    width: 14px;
  }
  .header-placeholder{
    height: 68px;
  }
  .index-onePage{
    height: auto;
  }
  .index-onePage .m-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vw;
    background-color: #fff;
  }
  .index-onePage .m-cont img{
    width: 80%;
    max-width: 100%;
    max-height: 100%;
  }
  .index-shuju{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .main-title{
    margin-bottom: 30px;
  }
  .index-jszz h1, 
  .index-jishu .txt h1{
    margin-bottom: 0;
    font-size: 18px;
  }
  .index-jszz p,
  .index-jishu .txt p{
    font-size: 12px;
    line-height: 24px;
  }
  .index-jishu .txt p{
    color: #666666;
    text-align: justify;
    letter-spacing: 0;
  }
  .index-jszz p span{
    font-size: 12px !important;
  }
  .index-jishu .txt{
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
    color: #000;
    background-color: #fff;
  }
  .index-jishu .txt h1 + span{
    background-color: #000 !important;
  } 
  .index-jishu .wrap{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .index-jishu .wrap ul li{
    text-align: center;
  }
  .index-jishu .wrap ul li p{
    margin-bottom: 10px;
    padding-top: 10px;
    font-size: 12px;
  }
  .index-jishu .wrap ul li p:before{
    top: 0;
    margin-left: -50px;
    width: 100px;
  }
  .index-jishu .wrap ul li:nth-child(n+4){
    margin-top: 40px;
  }
  .index-jishu .wrap ul li p.p_cc:before{
    top: -5px;
    height: 10px;
    background-size: auto 100%;
    background-position: top;
  }
  .index-jishu .wrap ul li h2{
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
  }
  .index-jishu .wrap ul li h2 span{
    font-size: 18px;
  }
  .index-jishu .wrap ul li b{
    font-size: 12px;
  }
  .index-shuju .page-container{
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .index-shuju .page-container .item{
    flex: initial;
    width: 50%;
  }
  .index-shuju .item:nth-child(n+3){
    margin-top: 20px;
  }
  .index-shuju .item h1{
    margin-bottom: 10px;
    font-size: 20px;
  }
  .pro_im li {
    width: 50%;
  }
  
  .im_intro h3{
    font-size: 14px;
  }
  footer .top{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  footer .bot .txt{
    flex-direction: column;
    justify-content: flex-start;
  }
  footer .top .nav > ul{
    flex-wrap: wrap;
  }
  footer .top .nav > ul > li{
    flex: initial;
    width: calc(100% / 3);
  }
  footer .top .nav > ul > li:nth-child(n+4){
    margin-top: 20px;
  }
  footer .top .nav > ul > li ul{
    margin-top: 10px;
  }
  .back{
    right: 0;
  }
  
  .ny-title .ny_nav{
    line-height: 30px;
  }

  .ny-title .back{
    top: 4px;
    transform: scale(0.8);
  }

  .ny_c1_left_bottom{
    margin-top: 20px;
  }

  .ny_c1_left_bottom_box{
    margin-left:10px;
    height: 60px;
  }

  .ny_c1_left_bottom_box ul li{
    width: 80px;
    height: 60px;
  }

  .ny_c1_left_bottom_box ul li img{
    width: 80px;
    height: 60px;
  }

  .zd_middle_header{
    font-size: 18px;
  }

  .zd_middle_bottom ul li{
    margin-top: 5px;
  }

  .zd_middle_header p{
    margin-bottom: 10px;
  }

  .middle_bottom1{
    font-size: 12px !important;
  }

  .js-container .text-wrapper{
    font-size: 12px;
    line-height: 24px;
  }

  .gsjj_wh .gsjj_t{
    margin: 20px 0 0;
  }
  .fzlc, .fzlc_con, .fzlc_bot{
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .fzlc h1{
    padding-top: 0;
    padding-bottom: 30px;
  }
  .fzlc_nf, .fzlc_inner{
    padding-bottom: 0;
    text-align: center;
  }
  .fzlc_con{
    margin-top: 0;
  }
  .fz_zscq{
    padding:30px 20px;
  }
  .fzlc_bot h1{
    font-size: 18px;
  }
  .fz_zscq p{
    padding-top: 20px;
  }
  .fz_zscq hr{
    margin: 20px 0;
  }
  .fz_shu{
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .fz_shu span{
    width: 33%;
    font-size: 14px;
    text-align: center;
  }
  .fz_shu span b{
    font-size: 24px;
  }
  .fz_shu span i{
    font-size: 14px;
  }
  .fzlc_bot h1{
    font-size: 16px;
  }
  .gs_ryzs .swiper-button-prev, .gs_ryzs .swiper-button-next{
    margin-top: 0;
    width: 30px;
    background-position: center center !important;
  }
  .fz_rz .swiper-button-prev, .fz_rz .swiper-button-next{
    margin-top: 0;
    width: 30px;
    background-position: center center !important;
  }
  .fz_zlzs{
    padding: 30px 20px;
  }
  .fz_zlzs h1{
    margin-bottom: 20px;
    font-size: 18px;
  }
  .gs_zlzs{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
  }
  .gsjj_lb .swiper-wrapper{
    padding-top: 0;
  }
  .fz_rz i{
    font-size: 12px;
  }
  .gs_ryzs img{
    width: 100%;
  }
  .fz_rz img{
    max-width: 140px !important;
  }
  .gs_zlzs .swiper-container{
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% - 70px);
  }
  .gs_zlzs .swiper-button-prev, .gs_zlzs .swiper-button-next{
    margin-top: 0;
    width: 30px;
    background-position: center center !important;
  }
  .gsjj p{
    font-size: 12px;
    color: #666;
    line-height: 24px;
  }
  .gsjj_t{
    text-align: center;
  }
  .gsjj_wh .gsjj_t p{
    font-size: 12px;
    color: #666;
    line-height: 24px;
  }
  .gsjj h1{
    margin-bottom: 20px;
    font-size: 18px;
  }
  .gsjj_wh .gsjj_t h1{
    margin-bottom: 20px;
    font-size: 18px;
  }
  .fzlc h1{
    font-size: 18px;
  }
  .gsjj_wh{
    padding-top: 0;
  }
  .fz_zscq p{
    font-size: 12px;
    color: #666;
    line-height: 24px;
  }
  .fz_zscq hr{
    display: none;
  }
  .gsjj_year h1{
    font-size: 16px;
    text-align: left;
  }
  .gsjj_year p{
    height: auto;
    font-size: 12px;
    line-height: 24px;
    text-align: left;
    overflow: hidden;				 
    text-overflow: ellipsis;		 
    display: -webkit-box;		 
    -webkit-line-clamp: 2;		 
    line-clamp: 2;					
    -webkit-box-orient: vertical;
  }
  .gsjj_year a{
    display: block;
  }
  .gsjj_year a img{
    display: block;
    width: 100%;
  }
  .lxwm_con h1 b{
    width: 70px;
    height: 70px;
  }
  .lxwm_con h1{
    font-size: 16px;
  }
  .lxwm_con h1 b img{
    width: 100%;
  }
  .lxwm_conn h1 b span {
    font-size: 16px !important;
  }
  .lxwm_conn h1 span {
    font-size: 16px !important;
  }
  .lxwm_conn p span {
    font-size: 16px !important;
  }
  .jyzp-container .text{
    font-size: 12px;
    color: #666;
    line-height: 24px;
  }
  .jyzp-container .subnav li a{
    padding-top: 0;
    font-size: 16px;
  }
  .jyzp-container .panel .panel-heading h4 b{
    font-size: 14px;
  }
  .jyzp-container .panel .panel-heading h4 i{
    font-size: 14px;
  }
  .jyzp-container .panel .panel-heading h4 a{
    background-size: 14px auto;
  }
  .jyzp-container .panel .panel-body p{
    font-size: 12px;
  }
  .panel-title span{
    font-size: 14px;
  }
  .y_t h4{
    font-size: 12px;
  }
  .panel-title span,
  .panel-title b,
  .jyzp-container .panel .panel-heading h4 i{
    overflow: initial !important;
    white-space: initial !important;
  }
  .lxwm{
    padding: 30px 0;
  }
  .news-list ul li .cont{
    padding: 10px;
    line-height: 24px;
  }
  .result-container .cg_01 h1{
    font-size: 18px;
  }
  .result-container .section1 .bai_con .rou_txt p{
    font-size: 12px;
  }
  .result-container .section1 .bai_con .rou_txt h1{
    font-size: 16px;
  }
  .result-container .section2 .cg_rou{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .result-container .section2 .rou_txt p{
    font-size: 12px;
  }
  .result-container .section2 .rou_txt h1{
    font-size: 18px;
  }
  .section5-con{
    padding-top: 30px;
  }
  .jj_01 h1{
    margin-bottom: 30px;
  }
  .cg_02 p{
    padding-left: 15px;
    padding-right: 15px;
  }
  .result-container .section1-con > div{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ds_im{
    padding-top: 30px;
  }
  .ds_im img{
    margin-top: 0 !important;
  }
  .result-container .section3 .cg_tm{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .det_time div{
    margin-right: 20px;
  }
  .det_con, .det_con span, .det_con p {
    font-size: 12px !important;
  }
  .news_txt h3{
    padding-top: 10px;
    font-size: 14px;
  }
  .news_txt .tx{
    height: auto;
  }
  .det_ti h1{
    font-size: 16px;
  }
  .shipin-vid-con{
    padding: 15px;
  }
  .shipin-vid-cons h4{
    font-size: 12px;
    line-height: 24px;
  }
  .shipin-vid-cons h5{
    font-size: 14px;
  }
  .shipin-tuijian ul{
    padding-top: 20px;
  }
  .shipin-vo-con{
    padding: 10px;
  }
  .index-hezuo .swiper-button {
      display: block;
      background: none;
  }
  .index-hezuo .swiper-button span{
    display: block;
    position: absolute;
    margin-left: -5px;
    margin-top: -5px;
    left: 50%;
    top: 50%;
  }
}