/* 公用 */
/* a标签 */
body {
  margin: 0 auto;
  overflow-x: hidden;
  max-width: 1920px;
  min-width: 1280px;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

.ff_12 {
  font-size: 12px;
  font-weight: bold;
}

.ff_16 {
  font-size: 16px;
  font-weight: bold;
}

.ff_18 {
  font-size: 18px;
  font-weight: bold;
}

.ff_20 {
  font-size: 20px;
  font-weight: bold;
}

.ff_22 {
  font-size: 22px;
  font-weight: bold;
}

.ff_24 {
  font-size: 24px;
  font-weight: bold;
}

.ff_26 {
  font-size: 26px;
  font-weight: bold;
}

.ff_28 {
  font-size: 28px;
  font-weight: bold;
}

.ff_30 {
  font-size: 30px;
  font-weight: bold;
}

.ff_32 {
  font-size: 32px;
  font-weight: bold;
}

.ff_34 {
  font-size: 34px;
  font-weight: bold;
}

.ff_36 {
  font-size: 36px;
  font-weight: bold;
}

.ff_38 {
  font-size: 38px;
  font-weight: bold;
}

.ff_40 {
  font-size: 40px;
  font-weight: bold;
}

a {
  color: #666;
  text-decoration: none;
  outline: none;
}

/* 面包屑导航 */

.displaya {
  display: flex;
  align-items: center;
}

.displayt {
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.displayd {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* 分页 */

.ibox .fy {
  margin-top: 40px;
}

.ibox .fy .ul1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ibox .fy .ul1 li {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: relative;
}

.ibox .fy .ul1 li a {
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.ibox .fy .ul1 li a:hover {
  color: #0a9332;
}

.ibox .fy .ul1 li a.act {
  color: #0a9332;
}

.ibox .fy .ul1 li:first-child a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}

.ibox .fy .ul1 li:last-child a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
}

.ibox .fy .ul1 li a img:last-child {
  opacity: 0;
}

.ibox .fy .ul1 li:hover a img:last-child {
  opacity: 1;
}

.ibox .fy .ul1 li:hover a img:first-child {
  opacity: 0;
}

/* 波纹动效 */
.bowen {
  position: absolute;
  right: -525px;
  bottom: -25px;
  z-index: 2;
}

.jjbox {
  width: 1100px;
  border-radius: 5px;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transform: rotate(135deg);
}

.wave {
  opacity: 0.5;
  position: absolute;
  top: 3%;
  left: 50%;
  background: #0a9332;
  width: 600px;
  height: 500px;
  margin-left: -250px;
  margin-top: -250px;
  -webkit-transform-origin: 50% 48%;
  transform-origin: 50% 48%;
  border-radius: 43%;
  -webkit-animation: drift 6000ms infinite linear;
  animation: drift 6000ms infinite linear;
}

.wave.-three {
  -webkit-animation: drift 7000ms infinite linear;
  animation: drift 7000ms infinite linear;
}

.wave.-two {
  -webkit-animation: drift 6000ms infinite linear;
  animation: drift 6000ms infinite linear;
  opacity: 0.8;
  background: #0a9332;
}

@-webkit-keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
p img {
  /* width: 100%; */
  height: auto;
}
/* 首页标题 */
.title {
  font-size: 50px;
  color: #333;
  margin-top: 120px;
}

/* 弹窗 */

.z_tanchuang {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  z-index: 1000;
}

.z_tanchuang .tbox {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
  background: white;
  padding: 50px;
  display: block;
  border-radius: 5px;
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff url(../images/out.png) center no-repeat;
  background-size: 20px;
  color: #000;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  top: 0;
  right: -50px;
  cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
  background: #fff url(../images/out2.png) center no-repeat;
  background-size: 20px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
  padding: 20px;
}

.z_tanchuang .tbox .modal .img {
  max-width: 1200px;
}

/* 弹窗选中 */

.z_tanchuang.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scaleY(0.01) scaleX(0);
  -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(0);
  -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1)
    forwards;
}

.z_tanchuang.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(1);
  -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1)
    forwards;
}

.z_tanchuang.one.out .tbox .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@-webkit-keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

/* 按钮 */
.more {
  display: block;
  width: 190px;
  height: 45px;
  line-height: 45px;
  background-color: #0a9332;
  border-radius: 23px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more img {
  margin-left: 43px;
}

.more:hover img {
  margin-left: 47px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wmore {
  display: block;
  width: 190px;
  height: 45px;
  line-height: 45px;
  background-color: #f3f2f7;
  border: 1px solid #989898;
  border-radius: 23px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wmore img {
  margin-left: 43px;
}

.wmore img:last-child {
  display: none;
}

.wmore:hover {
  background-color: #0a9332;
  border: 1px solid #0a9332;
  color: #fff;
}

.wmore:hover img:first-child {
  display: none;
}

.wmore:hover img:last-child {
  display: block;
}

.wmore:hover img {
  margin-left: 47px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bmore {
  display: block;
  width: 190px;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 23px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bmore img {
  margin-left: 43px;
}

.bmore:hover {
  background-color: #0a9332;
  border: 1px solid #0a9332;
  color: #fff;
}

.bmore:hover img {
  margin-left: 47px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tmore {
  display: block;
  width: 125px;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  border-radius: 23px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}

.tmore img {
  position: absolute;
  left: 110px;
}

.tmore:hover img {
  left: 105px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zuo {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 57.3%;
  left: 8.3%;
  background: url(../images/i_zuo.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.you {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 57.3%;
  left: 13%;
  background: url(../images/i_you.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.zuo1 {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 120px;
  right: 8%;
  background: url(../images/i_zuo.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.you1 {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 120px;
  right: 4%;
  background: url(../images/i_you.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.zuo2 {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 23.7%;
  left: 0;
  background: url(../images/i_zuo1.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.you2 {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 23.7%;
  left: 6%;
  background: url(../images/i_you1.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.zuo3 {
  width: 48px;
  height: 48px;
  position: absolute;
  /* bottom: 0; */
  left: -150px;
  background: url(../images/i_zuo1.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.you3 {
  width: 48px;
  height: 48px;
  position: absolute;
  /* bottom: 0; */
  left: -48px;
  background: url(../images/i_you1.png) center no-repeat;
  cursor: pointer;
  z-index: 5;
}

.dhbtn .svgo {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
}

.dhbtn .svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
}

.dhbtn .svg svg.circle-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  opacity: 1 !important;
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
}

.dhbtn .svg svg.circle-hover circle {
  stroke-dasharray: 150px;
  stroke-dashoffset: 150px;
  transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.dhbtn:hover .svg svg.circle-hover circle {
  stroke-dashoffset: 0;
}

.dhbtn:hover .svg svg.circle-hover.copy circle {
  transition-delay: 0.2s;
}

.zuo:hover {
  background: url(../images/i_zuo.png) center no-repeat;
}

.you:hover {
  background: url(../images/i_you.png) center no-repeat;
}

.zuo2:hover {
  background: url(../images/i_zuo2.png) center no-repeat;
}

.you2:hover {
  background: url(../images/i_you2.png) center no-repeat;
}

.zuo3:hover {
  background: url(../images/i_zuo2.png) center no-repeat;
}

.you3:hover {
  background: url(../images/i_you2.png) center no-repeat;
}

/* 头部 */
.header {
  width: 100%;
  height: 120px;
  /* background-color: royalblue; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.m_header {
  display: none;
}
.header_nav {
  display: none;
}
.header.fixed {
  background-color: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.fixed .ibox .left img:first-child {
  display: none;
}

.header.fixed .ibox .left img:last-child {
  display: block;
}

.header.fixed .ibox .right .ul1 li .ltp a {
  color: #555;
}

.header.fixed .ibox .right .rr .s_img img:first-child {
  display: none;
}

.header.fixed .ibox .right .rr .s_img img:last-child {
  display: block;
}

.header.fixed .ibox .right .rr .ss {
  color: #333;
}

.header.fixed .ibox .right .line {
  background-color: #131313;
}

.header.np {
  background-color: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.np .ibox .left img:first-child {
  display: none;
}

.header.np .ibox .left img:last-child {
  display: block;
}

.header.np .ibox .right .ul1 li .ltp a {
  color: #555;
}

.header.np .ibox .right .rr .s_img img:first-child {
  display: none;
}

.header.np .ibox .right .rr .s_img img:last-child {
  display: block;
}

.header.np .ibox .right .rr .ss {
  color: #333;
}

.header.np .ibox .right .line {
  background-color: #131313;
}

.header:hover {
  background-color: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.ny {
  background-color: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover .ibox .left img:first-child {
  display: none;
}

.header:hover .ibox .left img:last-child {
  display: block;
}

.header:hover .ibox .right .ul1 li .ltp a {
  color: #555;
}

.header:hover .ibox .right .rr .s_img img:first-child {
  display: none;
}

.header:hover .ibox .right .rr .s_img img:last-child {
  display: block;
}

.header:hover .ibox .right .rr .ss {
  color: #333;
}

.header:hover .ibox .right .line {
  background-color: #131313;
}

.header.ny .ibox .left img:first-child {
  display: none;
}

.header.ny .ibox .left img:last-child {
  display: block;
}

.header.ny .ibox .right .ul1 li .ltp a {
  color: #555;
}

.header.ny .ibox .right .rr .s_img img:first-child {
  display: none;
}

.header.ny .ibox .right .rr .s_img img:last-child {
  display: block;
}

.header.ny .ibox .right .rr .ss {
  color: #333;
}

.header.ny .ibox .right .line {
  background-color: #131313;
}
.header .ibox {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .ibox .left {
  line-height: 120px;
}

.header .ibox .left .bl {
  display: block;
}

.header .ibox .left img {
  width: 100%;
  height: 100%;
}

.header .ibox .left img:last-child {
  display: none;
}

.header .ibox .right {
  width: 85%;
  height: 100%;
  line-height: 120px;
  display: flex;
  justify-content: space-between;
}

.header .ibox .right .ul1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .ibox .right .ul1 li {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: url(../images/h_11.png) center no-repeat;
}

.header .ibox .right .ul1 li:hover {
  background: url(../images/h_1.png) center no-repeat;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.header .ibox .right .ul1 li.act {
  background: url(../images/h_1.png) center no-repeat;
}

.header .ibox .right .ul1 li .ltp a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.header .ibox .pfx {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  top: 120px;
  line-height: 2.5;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  border-top: 1px solid #ddd;
}

.header .ibox .pfx .con1 {
  width: 46.3%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-left: 41.3%;
  padding-top: 35px;
  /* padding-bottom: 35px; */
}

.header .ibox .pfx .sbox {
  width: 100%;
  margin-bottom: 35px;
}

.header .ibox .pfx .sbox a {
  /* display: block; */
  font-size: 14px;
  color: #555;
  position: relative;
}

.header .ibox .pfx .sbox a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0a9332;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .ibox .pfx .sbox a:hover::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0a9332;
}

.header .ibox .right .line {
  height: 20px;
  width: 2px;
  background-color: #fff;
  margin: 50px 44px 0 0;
}

.header .ibox .right .rr {
  min-width: 88px;
}

.header .ibox .right .rr .df {
  display: flex;
}

.header .ibox .right .rr a {
  width: 100%;
  display: flex;
}

.header .ibox .right .rr .ss {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 15px;
}

.header .ibox .right .rr .s_img img {
  display: block;
  width: 100%;
  height: 18%;
  margin-top: 49px;
}

.header .ibox .right .rr .s_img img:last-child {
  display: none;
}

/* 头部 */

/* 面包屑导航 */
.mb {
  width: 100%;
  height: 63px;
  background-color: #f0f0f0;
  line-height: 63px;
  z-index: 3;
}

.mb .ibox .ul1 {
  display: flex;
}

.mb .ibox .ul1 li {
  font-size: 16px;
  color: #333;
}

.mb .ibox .ul1 li a {
  color: #333;
  font-size: 12px;
}

.mb .ibox .ul1 li:hover a {
  color: #0a9332;
}

.mb .ibox .ul1 li:hover:last-child a {
  color: #333;
}

.mb .ibox .ul1 li a img {
  margin: 0 1px 2px 0;
}

/* 面包屑导航结束 */
/* 导航 */
.daohang {
  width: 100%;
  height: auto;
  line-height: 64px;
  background-color: #f0f0f0;
  box-sizing: border-box;
}

.daohang .ibox {
  border-top: 1px solid #dddddd;
}

.daohang .ibox .ul2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.daohang .ibox .ul2 li a.act {
  color: #0a9332;
  font-weight: bold;
}

.daohang .ibox .ul2 li {
  width: 100%;
  text-align: center;
  border-right: 1px solid #ddd;
}

.daohang .ibox .ul2 li:last-child {
  border-right: 0;
}

.daohang .ibox .ul2 li a {
  font-size: 18px;
  color: #333;
}

/* .daohang .ibox .ul2 li a.act::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 64px;
  height: 2px;
  background-color: #0a9332;
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  -moz-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
} */
.daohang .ibox .ul2 li a.act {
  border-bottom: 2px solid #0a9332;
}

.daohang .ibox .ul2 li:hover a {
  color: #0a9332;
}

/* 导航结束 */

/* 脚部 */
.footer {
  width: 100%;
  height: auto;
  background: url(../images/f_4.png) center no-repeat;
  background-size: cover;
}
.footer .ibox {
  padding-top: 60px;
}
.footer .ibox .up {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer .ibox .up .left {
}

.footer .ibox .up .left .f_logo img {
  width: 100%;
  height: 100%;
}

.footer .ibox .up .left .f_ewm {
  width: 92px;
  height: 92px;
  margin-top: 68px;
}

.footer .ibox .up .left .f_ewm .f_ei img {
  width: 100%;
  height: 100%;
}

.footer .ibox .up .left .f_ewm .d_text {
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.footer .ibox .up .right {
  width: 63%;
  height: auto;
}

.footer .ibox .up .right ul {
  display: flex;
  justify-content: space-between;
}

.footer .ibox .up .right ul li {
  width: 100%;
}

.footer .ibox .up .right ul li:last-child {
  width: 280px;
}

.footer .ibox .up .right .one {
  margin-top: 20px;
}

.footer .ibox .up .right .one ul li a {
  font-size: 16px;
  color: #fff;
}

.footer .ibox .up .right .two {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 44px 0;
}

.footer .ibox .up .right .three ul li a {
  font-size: 14px;
  color: #fff;
  line-height: 2.6;
}

.footer .ibox .up .right .four .sbox {
  display: flex;
  justify-content: space-between;
  margin: 58px 0;
}

.footer .ibox .up .right .four .sbox img {
  margin-right: 17px;
}

.footer .ibox .up .right .four .sbox a {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}

.footer .ibox .up .right .four .sbox a:hover {
  color: #0a9332;
}

.footer .ibox .up .right .four .sbox .phone,
.footer .ibox .up .right .four .sbox .email,
.footer .ibox .up .right .four .sbox .dizhi {
  display: flex;
}

.footer .ibox .up .right ul li a:hover {
  color: #0a9332;
}

.footer .ibox .down {
  width: 100% !important;
  height: 72px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
  background-color: transparent !important;
  padding: 0 !important;
}

.footer .ibox .down .left,
.footer .ibox .down .right {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer .ibox .down .left a,
.footer .ibox .down .right a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer .ibox .down .left span {
  margin: 0 23px;
}

/* 脚部 */

/* banner开始 */
.banner1 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.banner1 .two_img img {
  width: 100%;
  height: 100%;
}

.banner1 .two_img img:last-child {
  display: none;
}

.banner1 .fp {
  position: absolute;
  top: 50%;
  left: 8%;
  margin-top: -160px;
}

.banner1 .fp .ch {
  font-size: 60px;
  color: #fff;
  line-height: 1.5;
}

.banner1 .fp .en {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 20px 0;
}

.banner1 .img {
  position: absolute;
  bottom: 120px;
  left: 8%;
}

.banner1 .video {
  position: absolute;
  bottom: 250px;
  left: 8%;
  cursor: pointer;
}

.banner1 .video:hover img {
  transform: scale(0.8);
}

/* banner图结束 */

/* product1 */
.allt {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.allt .text {
  color: #333;
}

.allt .line {
  width: 27px;
  height: 3px;
  background-color: #0a9332;
  margin: 30px 0 80px 0;
}

/* product1 结束 */

/* 公共按钮样式结束 */
@media (max-width: 1680px) {
  .header .ibox .pfx .con1 {
    width: 53%;
    height: 325px;
    display: flex;
    justify-content: space-between;
    margin-left: 34.8%;
    padding-top: 45px;
  }
}

@media (max-width: 1440px) {
  .header .ibox .pfx .con1 {
 
    height: 325px;
    display: flex;
    justify-content: space-between;

    padding-top: 45px;
  }

  .header .ibox .pfx .sbox {
    width: 100%;
  }

  .header .ibox .pfx .sbox a {
    /* width: 100%; */
    /* display: block; */
    font-size: 12px;
    color: #555;
  }

  .footer .ibox .up .right {
    width: 70%;
    height: auto;
  }
}
@media (max-width: 1366px) {
  .title {
    margin-top: 90px;
  }
  .banner1 .fp .ch {
    font-size: 50px;
  }
  .about_a .mktitle {
    font-size: 40px;
  }
  #about .title {
    font-size: 40px;
  }
  #about .gsjj .left .two {
    font-size: 40px;
  }
  #about .qyry {
    height: 750px;
  }
}

@media (max-width: 1280px) {
  .header .ibox .pfx .con1 {
    width: 50%;
    height: 325px;
    display: flex;
    justify-content: space-between;
    margin-left: 39%;
    padding-top: 45px;
  }
  .zuo {
    top: 52.3%;
  }
  .you {
    top: 52.3%;
  }
  .zuo1 {
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 120px;
    right: 11%;
    background: url(../images/i_zuo.png) center no-repeat;
    cursor: pointer;
    z-index: 5;
  }

  .you1 {
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 120px;
    right: 6%;
    background: url(../images/i_you.png) center no-repeat;
    cursor: pointer;
    z-index: 5;
  }

  .zuo2 {
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 19.7%;
    left: 0;
    background: url(../images/i_zuo1.png) center no-repeat;
    cursor: pointer;
    z-index: 5;
  }

  .you2 {
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 19.7%;
    left: 6%;
    background: url(../images/i_you1.png) center no-repeat;
    cursor: pointer;
    z-index: 5;
  }
}

@media (max-width: 1030px) {
  body {
    min-width: 100px;
  }

  .bowen {
    display: none;
  }

  .title {
    font-size: 50px;
    color: #333;
    margin-top: 60px !important;
  }

  .header {
    display: none;
  }

  .m_header {
    width: 100%;
    height: 60px;
    display: block;
    overflow: hidden;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .m_header .logo img {
    width: 45%;
  }
  .m_header .sanline {
    width: 50px;
    height: 50px;
  }

  .m_header .sanline img {
    width: 50px;
    height: 50px;
  }

  .header_nav .sancha {
    width: 50px;
    height: 50px;
  }

  .header_nav .sancha img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .header_nav {
    display: block;
    position: fixed;
    z-index: 9999999999999;
    width: 100%;
    height: 100%;
    top: 0%;
    right: -100%;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #fff;
  }

  .header_nav.act {
    right: 0;
  }

  .header_nav li a {
    font-size: 18px;
    color: #666;
    padding: 10px 30px 10px 50px;
    line-height: 30px;
    position: relative;
  }

  .header_nav li a.ltp:after {
    content: "";
    display: block;
    width: 5px;
    height: 20px;
    background: #d4d3d4;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 30px;
  }

  .header_nav li a.ltp.act:after {
    background: #0a9332;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }

  .header_nav li a.ltp.act {
    color: #0a9332;
  }

  .header_nav li .qp .hd {
    display: none;
  }

  .header_nav li .qp .hd .hp a {
    display: block;
    font-size: 16px;
  }

  .header_nav li .qp .hd .hp a:last-child {
    border-bottom: 1px solid #ccc;
  }

  .header_nav li.search {
    position: relative;
  }

  .header_nav li.search span {
    position: absolute;
    top: 17px;
  }

  .header_nav li.search .searchbtn img {
    position: absolute;
    top: 7px;
  }

  .ibox {
    max-width: 1030px;
    min-width: 100px;
    width: 85%;
    margin: 0 auto;
  }

  .footer {
    width: 100%;
    height: auto;
    background: url(../images/f_4.png) center no-repeat;
    padding-top: 0;
  }

  .footer .up {
    display: none !important;
  }

  .footer .ibox .down .left span {
    margin: 0;
  }

  .zuo {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 52%;
    left: 6.3%;
    background: url(../images/i_zuo.png) center no-repeat;
    cursor: pointer;
    z-index: 5;
  }

  .you {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 52%;
    left: 13%;
    background: url(../images/i_you.png) center no-repeat;
    cursor: pointer;
    z-index: 5;
  }

  .daohang .ibox .ul2 li a {
    font-size: 16px;
    color: #333;
  }

  .wow {
    opacity: 1;
  }
  .allt .line {
    margin: 30px 0 20px 0;
  }
  #project1 .yd .allt .line {
    margin: 30px 0 60px 0;
  }
  .banner1 .img {
    bottom: 90px;
  }
  .banner1 .video {
    bottom: 162px !important;
  }
}

@media (max-width: 960px) {
  .zuo3 {
    display: none;
  }

  .you3 {
    display: none;
  }
  .allt .line {
    width: 27px;
    height: 3px;
    background-color: #0a9332;
    margin: 10px 0 15px 0;
  }
  /* 首页标题 */
  .title {
    font-size: 22px !important;
    color: #333;
    margin-top: 20px !important;
  }

  .daohang .ibox .ul2 {
    flex-wrap: wrap;
  }

  .footer {
    width: 100%;
    height: auto;
    background: url(../images/f_4.png) center no-repeat;
    padding: 20px 0;
  }

  .footer .ibox .down {
    width: 100% !important;
    height: 72px !important;
    display: block !important;
    border-top: 0 !important;
    text-align: center !important;
    line-height: 1.7 !important;
  }

  .wow {
    opacity: 1;
  }

  /* 按钮 */
  .more {
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .more img {
    margin-left: 10px;
    width: 10%;
  }

  .more:hover img {
    margin-left: 28px;
  }

  .wmore {
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .wmore img {
    margin-left: 10px;
    width: 10%;
  }

  .wmore img:last-child {
    display: none;
  }

  .wmore:hover {
    background-color: #0a9332;
    border: 1px solid #0a9332;
    color: #fff;
  }

  .wmore:hover img:first-child {
    display: none;
  }

  .wmore:hover img:last-child {
    display: block;
  }

  .wmore:hover img {
    margin-left: 28px;
  }

  .bmore {
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .bmore img {
    margin-left: 10px;
    width: 10%;
  }

  .bmore:hover {
    background-color: #0a9332;
    border: 1px solid #0a9332;
    color: #fff;
  }

  .bmore:hover img {
    margin-left: 28px;
  }

  .tmore {
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .tmore img {
    position: absolute;
    left: 110px;
  }

  .tmore:hover img {
    left: 105px;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .daohang .ibox .ul2 li {
    width: 50%;
    text-align: center;
    border-right: 1px solid #ddd;
  }

  .daohang .ibox .ul2 li:nth-child(2n) {
    border-right: 0;
  }

  .daohang .ibox {
    border-top: 0;
  }

  .banner1 .two_img img:last-child {
    display: block;
  }

  .banner1 .two_img img:first-child {
    display: none;
  }

  .banner1 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
  }

  .banner1 .fp {
    position: absolute;
    top: 63%;
    left: 8%;
    margin-top: -140px;
  }

  .banner1 .fp .ch {
    font-size: 24px !important;
    color: #fff;
    line-height: 1.5;
  }

  .banner1 .fp .en {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 20px 0 63px 0;
  }

  .banner1 .img {
    position: absolute;
    bottom: 73px;
    left: 8%;
  }
  #yyly .banner1 .img {
    position: absolute;
    bottom: 20px;
    left: 8%;
  }

  .z_tanchuang .tbox .modal .out {
    right: 0;
    top: -55px;
  }

  #yyly .banner1 .video {
    bottom: 87px !important;
  }
  #yyly1 .banner1 .video {
    bottom: 87px !important;
  }
  #yyly1 .banner1 .img {
    position: absolute;
    bottom: 20px;
    left: 8%;
  }
  #project1 .yd .allt .line {
    margin: 20px 0 0px 0;
  }

  .footer .ibox {
    padding: 0;
  }
  .daohang .ibox .ul2 li a {
    font-size: 12px;
  }
  .allt .text {
    color: #333;
}
.allt .text {
    color: #333;
    line-height: 1.5;
    text-align: center;
}
.z_tanchuang .tbox .modal {
    padding: 0px;
}
}
