* {
  box-sizing: border-box;
  outline: 0;
}
body {
  color: #666;
  line-height: 26px;
  font-size: 16px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  word-break: break-word;
  font-family: "arial"; 
}
@media (max-width: 1600px) {
  body {
    font-size: 14px!important;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: #ccc;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.3);
}
::-webkit-input-placeholder {
  color: #333333;
}
:-moz-placeholder {
  color: #333;
  opacity: 1;
}
::-moz-placeholder {
  color: #333;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #333333;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.dw {
  top: -150px;
  z-index: -1;
  position: absolute;
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 640px;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
@keyframes bmove1 {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.header {
  height: 120px;
  background: #fff;
}
.header .logo {
  margin-top: 25px;
  display: inline-block;
}
.header .logo img {
  max-height: 70px;
}
.header .search {
  float: right;
  padding-top: 50px;
  display: inline-block;
}
.header .language {
  float: right;
  position: relative;
  line-height: 120px;
  padding-left: 40px;
  display: inline-block;
}
.header .language:after {
  content: "";
  margin-bottom: 2px;
  display: inline-block;
  border-top: solid 8px #312d2d;
  border-left: solid 7px transparent;
  border-right: solid 7px transparent;
}
.header .language:before {
  content: "";
  width: 1px;
  height: 20px;
  top: 50%;
  left: 20px;
  position: absolute;
  background: #595957;
  transform: translateY(-50%);
}

.header .language span{
	margin-right:5px;
}

.header .language a {
  color: #3e3a39;
}
.header .language .drop {
  top: 120px;
  left: -20px;
  width: 150px;
  z-index: 9;
  padding: 20px 0;
  background: #fff;
  opacity: 0;
  display: none;
  transition: all 500ms ease;
  transform: translateY(-20px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
}
.header .language .drop span {
  font-size: 16px;
  line-height: 30px;
  display: block;
}
.header .language .drop a {
  padding-left: 30px;
}
.header .language .drop a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .header .language .drop {
    top: 58px;
  }
}
.header .language:hover .drop {
  opacity: 1;
  display: block;
  transform: translateY(0px);
}
.header .hmenu {
  display: none;
  width: 40px;
  height: 40px;
  float: right;
  margin-left: 10px;
  margin-top: 13px;
  line-height: 32px;
  text-align: center;
  border-radius: 5px;
  vertical-align: middle;
}
.header .hmenu img {
  vertical-align: middle;
}
@media (max-width: 1200px) {
  .header {
    top: 0;
    height: 60px;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
  }
  .header .logo {
    margin-left: 0;
    margin-top: 17px;
  }
  .header .logo img {
    max-height: 30px;
  }
  .header .hmenu {
    display: block;
  }
  .header .language {
    line-height: 60px;
  }
  .header .search {
    padding-top: 20px;
  }
}
.nav {
  float: right;
}
.nav li {
  float: left;
  position: relative;
  text-align: center;
}
.nav li > a {
  color: #000;
  line-height: 120px;
  display: block;
  padding: 0 20px;
  position: relative;
  text-transform: uppercase;
}
.nav li img {
  margin-right: 5px;
  vertical-align: middle;
}
.nav li .subnav {
  top: 120px;
  left: 0;
  width: 200px;
  z-index: 9;
  left: 50%;
  font-size: 15px;
  display: none;
  background: #fff;
  font-weight: lighter;
  border-top: solid 2px #00923f;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
}
.nav li .subnav a {
  display: block;
  overflow: hidden;
  color: #333;
  padding: 10px 5px;
  transition: all 0s ease;
  border-top: solid 1px #ddd;
}
.nav li .subnav a:first-child {
  border-top: 0;
}
.nav li .subnav a:hover {
  background: #00923f;
  color:#fff;
}
.nav li:first-child {
  margin-left: 0;
}
.nav li:hover > a,
.nav .active > a {
  color: #00923f;
}
.nav li:hover > a:after,
.nav .active > a:after {
  opacity: 1;
  width: 100%;
  left: 0;
}
.nav li:hover .subnav {
  display: block;
}
@media (max-width: 1200px) {
  .nav {
    display: none;
  }  
}
.fixed {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  position: fixed;
  -webkit-animation: 1s dong;
  animation: 1s dong;
}
.banner {
  overflow: hidden;
}
.banner .pic {
  position: relative;
}
.banner .txtbox {
	top: 35%;
	left: 9%;
  width: 100%;
  z-index: 2;
  position: absolute;
}

.banner .txtbox2{
	top: 42%;
	left: -1%;
}

.banner .txtbox3{
	top: 38%;
	left: -3%;
}

.banner .tit,
.banner .txt {
  color: #25262b;
  max-width: 580px;
  width: 100%;
}
.banner .tit {
  font-size: 40px;
  line-height: 80px;
  text-transform: uppercase;
}
.banner .txt {
  font-size: 20px;
  line-height: 40px;
}
.banner .lern {
  margin-top: 60px;left:52%;position:relative;
}

.banner .txtbox2 .lern{
	float:left;
	position: relative;
	left: 0%;
}

.banner .txtbox3 .lern {
	left: 0%;
	position: relative;
}

.banner .lern a {
  height: 45px;
  color: #fff;
  padding: 0 18px;
  vertical-align: top;
  line-height: 45px;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  background: #00923f;
  transition: all 500ms ease;
  border-radius: 30px;
}
.banner .lern a:hover {
  background: #000;
}
.banner .lern img {
  margin-left: 15px;
  vertical-align: top;
  margin-top: 8px;
  border-radius: 100%;
  display: inline-block;
  border: dashed 1px #fff;
  transition: all 335ms ease;
}
.banner .slick-active .tit {
  animation: 1.5s ease fadeInUp2;
}
.banner .slick-active .txt {
  animation: 1.5s ease fadeInUp2;
}
.banner .slick-active .lern {
  animation: 1.6s ease fadeInUp2;
}
.banner .slick-dots {
  bottom: 10%;
  left: 50%;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  transform: translateX(-50%);
}
.banner .slick-dots li {
  margin: 0 6px;
}
.banner .slick-dots li button {
  width: 30px;
  height: 4px;
  border-radius: 0;
  background: #b4b4b5;
  transition: all 334ms ease;
}
.banner .slick-dots li.slick-active button {
  background: #00923f;
}
@media (max-width: 1600px) {
  .banner .tit {
    font-size: 40px;
    line-height: 50px;
  }
  .banner .txt {
    font-size: 16px;
    line-height: 26px;
  }
  .banner .slick-dots {
    transform: translateX(-42%);
  }
}
@media (max-width: 1200px) {
  .banner {
    height: 100%;
    margin-top: 60px;
  }
  .banner .tit {
    font-size: 24px;
    line-height: 30px;
  }
  .banner .lern {
    margin-top: 30px;
    display: none;
  }
  .banner .slick-dots {
    left: auto;
    bottom: 20px;
    text-align: center;
    transform: translate(0);
  }
}
@media (max-width: 640px) {
  .banner .txtbox {
    top: 30%;
    text-align: center;
  }
  .banner .tit {
    font-size: 16px;
  }
  .banner .txt {
    display: none;
  }
  .banner .lern a {
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    padding: 0 10px;
  }
}
.index-product {
  padding: 90px 0 200px 0;
}
.index-product .leftTxt {
  width: 40%;
  float: left;
  color: #737373;
  font-size: 24px;
  line-height: 32px;
  padding-top: 150px;
  position: relative;
}
.index-product .leftTxt .tit {
  color: #000;
  font-size: 28px;
  line-height: 44px;
  z-index: 1;
  position: relative;
}
.index-product .leftTxt .txt {
  margin-top: 20px;
  z-index: 1;
  position: relative;
}
.index-product .leftTxt .lern {
  margin-top: 30px;
  position: relative;
}
.index-product .leftTxt .lern img {
  border-radius: 100%;
  border: dashed 1px #00923f;
  transition: all 1000ms ease;
}
.index-product .leftTxt .lern:hover img {
  transform: rotate(360deg);
}
.index-product .leftTxt .shuidi {
  top: 90px;
  left: 0;
  position: absolute;
}
.index-product .leftTxt .shuidi img {
  max-height: 200px;
}
.index-product .rightPic {
  width: 50%;
  float: right;
  text-align: center;
}
.index-product .rightPic .item {
  position: relative;
}
.index-product .rightPic .tit {
  color: #727171;
  font-size: 16px;
  position: absolute;
}
.index-product .rightPic .tit span {
  display: block;
}
.index-product .rightPic .bt {
  padding-right: 50px;
}
.index-product .rightPic .pic {
  position: relative;
}
.index-product .rightPic .pic:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.index-product .rightPic .arrow {
  width: 25px;
  height: 25px;
  right: 0;
  top: 45px;
  z-index: 5;
  position: absolute;
}
.index-product .rightPic .arrow:before {
  content: "";
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 100%;
  background: rgba(242, 189, 27, 0.5);
  animation: 1.5s bmove1 ease infinite;
}
.index-product .rightPic .arrow:after {
  content: "";
  width: 13px;
  height: 13px;
  top: 50%;
  left: 50%;
  position: absolute;
  border-radius: 100%;
  background: #00923f;
  margin-top: -6px;
  margin-left: -6px;
  animation: 1.7s bmove1 ease infinite;
}
.index-product .rightPic .tit-1 {
  top: 270px;
  left: 30px;
  position: absolute;
  text-transform: uppercase;
}
.index-product .rightPic .tit-1 .line {
  padding-left: 195px;
}
.index-product .rightPic .tit-2 {
  top: 270px;
  right: 0px;
  position: absolute;
  text-transform: uppercase;
}
.index-product .rightPic .tit-2 .line {
  padding-right: 90px;
}
.index-product .rightPic .tit-2 .bt {
  padding-left: 50px;
  padding-right: 0;
}
.index-product .rightPic .tit-2 .arrow {
  left: -18px;
  right: auto;
}
.index-product .rightPic .tit-3 {
  left: 340px;
  bottom: 40px;
  position: absolute;
  text-transform: uppercase;
}
.index-product .rightPic .tit-3 .line {
  text-align: left;
}
.index-product .rightPic .tit-3 .arrow {
  top: -24px;
  left: -12px;
  position: absolute;
}
.index-product .slick-dots {
  bottom: -60px;
}
.index-product .slick-dots li {
  margin: 0 5px;
}
.index-product .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #00923f;
  transition: all 334ms ease;
}
.index-product .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
}
@media (max-width: 1600px) {
  .index-product .leftTxt {
    font-size: 16px;
    line-height: 26px;
  }
  .index-product .leftTxt .tit {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 1200px) {
  .index-product .leftTxt {
    width: 100%;
    float: none;
    padding-top: 0;
  }
  .index-product .leftTxt .shuidi {
    top: 0;
  }
  .index-product .leftTxt .shuidi img {
    max-height: 100px;
  }
  .index-product .rightPic {
    width: 100%;
    float: none;
  }
}
@media (max-width: 640px) {
  .index-product {
    padding-top: 60px;
  }
  .index-product .leftTxt .tit {
    font-size: 20px;
    line-height: 30px;
  }
  .index-product .rightPic .tit {
    display: none;
  }
}

.index-title {
  color: #221815;
  text-align: center;
  position: relative;
}
.index-title .tit {
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
}
.index-title .tit,
.index-title .txt {
  z-index: 5;
  position: relative;
}
.index-title .txt {
  opacity: 0.8;
}
.index-title .shuidi {
  top: -60px;
  width: 100%;
  opacity: 0.5;
  text-align: center;
  position: absolute;
}
.index-title .shuidi img {
  max-height: 200px;
}


@media (max-width: 1600px) {
  .index-title .tit {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 1200px) {
  .index-title .tit {
    font-size: 20px;
    line-height: 30px;
  }
  .index-title .shuidi {
    top: -30px;
  }
  .index-title .shuidi img {
    max-height: 100px;
  }
}

@media (max-width: 756px) {
  .index-title .tit {
    font-size: 16px;
    line-height: 30px;
  }
  .index-title .shuidi {
    top: -30px;
  }
  .index-title .shuidi img {
    max-height: 100px;
  }
}


.index-product-2 {
  min-height: 600px;
  position: relative;
  margin-top: -350px;
  padding-top: 380px;
  padding-bottom: 120px;
  background: url(../images/pro-bg.jpg) no-repeat top center #f2f5f8;
}
.index-product-2 .list ul {
  margin: 0 -55px;
  margin-top: 50px;
}
.index-product-2 .list li:nth-child(2n) .pic:before {
  background: #dbe2eb;
}
.index-product-2 .list li:hover .pic img {
  transform: scale(0.95);
}
.index-product-2 .list li:hover .tit {
  background: rgba(255, 255, 255, 0.3);
}
.index-product-2 .list li:hover .tit span {
  border-color: #00923f;
  background: url(../images/arrow-3.png) no-repeat center center;
}
.index-product-2 .list li:hover .picBox:after {
  background: rgba(255, 255, 255, 0.3);
}
.index-product-2 .list li {
  float: left;
  width: 33.333%;
  padding: 0 55px;
  margin-top: 20px;
}
.index-product-2 .list li .item {
  position: relative;
}
.index-product-2 .list li .picBox:after {
  content: "";
  height: 78%;
  bottom: 0;
  right: -33px;
  width: 100%;
  width: 33px;
  position: absolute;
  background: #fff;
  transition: all 700ms ease;
}
.index-product-2 .list li .hot {
  width: 58px;
  height: 48px;
  color: #fff;
  top: 58px;
  left: 0;
  line-height: 42px;
  z-index: 9;
  position: absolute;
  text-align: center;
  background: url(../images/hot.png) no-repeat top center;
}

.index-product-2 .list li .hot0{
	display:none !important;
}
@media (max-width: 1440px) {
  .index-product-2 .list li .hot {
    top: 50px;
  }
}
@media (max-width: 1210px) {
  .index-product-2 .list li .hot {
    top: 41px;
  }
}
@media (max-width: 480px) {
  .index-product-2 .list li .hot {
    top: 26px;
  }
}
.index-product-2 .list li .pic {
  z-index: 2;
  overflow: hidden;
  position: relative;
}
.index-product-2 .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 79%;
}
.index-product-2 .list li .pic:before {
  content: "";
  height: 82%;
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  background: #eaecf1;
}
.index-product-2 .list li .pic img {
  transition: all 700ms ease;
}
.index-product-2 .list li .tit {
  color: #161617;
  height: 80px;
  margin-left: 30px;
  line-height: 80px;
  background: #fff;
  overflow: hidden;
  padding-left: 30px;
  transition: all 334ms ease;
  position: relative;
}
.index-product-2 .list li .tit span {
  margin-top: 22px;
  display: inline-block;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: dashed 1px #bababb;
  background: url(../images/arrow-2.png) no-repeat center center;
}
.index-product-2 .list li .tit span img {
  display: none;
}
@media (max-width: 1600px) {
  .index-product-2 {
    overflow: hidden;
  }
  .index-product-2 .list ul {
    margin: 0 -30px;
  }
  .index-product-2 .list li {
    padding: 0 30px;
  }
  .index-product-2 .list li .tit {
    margin-left: 15px;
  }
  .index-product-2 .list li .picBox::after {
    right: -15px;
  }
}
@media (max-width: 1200px) {
  .index-product-2 .list li {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .index-product-2 .list ul {
    margin: 0 -5px;
  }
  .index-product-2 .list li {
    width: 50%;
    padding: 0 5px;
  }
  .index-product-2 .list li .tit {
    margin-left: 0;
  }
  .index-product-2 .list li .picBox::after {
    display: none;
  }
  .index-product-2 .list li .tit span {
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
		.index-product-2 .list li{
			 width:100%;
		}
}

.more1 {
  text-align: center;
}
.more1 a {
  display: inline-block;
  height: 42px;
  line-height: 40px;
  color: #31280c;
  border-radius: 30px;
  padding: 0 15px;
  position: relative;
  margin: 0 auto;
  background: none;
  padding-right: 50px;
  border: 2px solid #31280c;
}
.more1 a:after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url("../images/arrow-4.png") no-repeat center center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 6px;
  transition: 0.5s;
  border: dashed 1px #31280c;
}
@media (min-width: 1025px) {
  .more1 a:hover {
    color: #31280c;
    background: #fff;
    border: 1px solid #fff;
  }
}
.more2 {
  text-align: center;
}
.more2 a {
  display: inline-block;
  height: 42px;
  line-height: 40px;
  color: #fff;
  border-radius: 30px;
  padding: 0 15px;
  position: relative;
  margin: 0 auto;
  background: none;
  padding-right: 50px;
  background: #00923f;
  border: 2px solid #00923f;
}
.more2 a:after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url("../images/arrow.png") no-repeat center center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 6px;
  transition: 0.5s;
  border: dashed 1px #fff;
}
@media (min-width: 1025px) {
  .more2 a:hover {
    color: #fff;
    background: #000;
    border: 1px solid #000;
  }
}
.index-about {
  min-height: 2000px;
  padding-bottom: 10px;
  background: url(../images/about-bg.jpg) no-repeat top center #f2f5f8;
  /*background-size: cover;*/
}


@media (max-width: 1200px) {
  .index-about {
  padding-bottom: 10px;
  background: url(../images/about-bg2.jpg) no-repeat top center #f2f5f8;
  /*background-size: cover;*/

}

}



.index-about .nr1 .video {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 1200px) {
  .index-about .nr1 .video {
    margin-top: 40px;
  }
}
.index-about .nr1 .shipin {
  position: relative;
}
.index-about .nr1 .shipin:before {
  content: "";
  width: 0%; 
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  position: absolute;
  background: rgba(0, 0, 0, 0.36);
}
.index-about .nr1 .spbtn {
  top: 50%;
  left: 50%;
  z-index: 3;
  position: absolute;
  transform: translate(-50%, -50%);
}
.index-about .nr1 .spbtn .icon {
  fill: #fff;
  width: 200px;
  height: 200px;
}
.index-about .nr1 .list {
  margin: 0 -13px;
  margin-top: 26px;
}
.index-about .nr1 .list li {
  float: left;
  width: 33.3333%;
  padding: 0 13px;
}
.index-about .nr1 .list li .pic {
  position: relative;
  text-align: center;
  overflow: hidden;
  border: solid 10px #c7fe7b;
}
.index-about .nr1 .list li .pic img {
  transition: all 700ms ease;
}
.index-about .nr1 .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 61%;
}
.index-about .nr1 .list li:hover .pic img {
  transform: scale(1.05);
}
.index-about .nr1 .list2 {
  margin-top: 40px;
  padding-top: 50px;
  min-height: 170px;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background: #00923f;
}
.index-about .nr1 .list2 li {
  width: 20%;
  float: left;
  text-align: center;
}
.index-about .nr1 .list2 li em {
  vertical-align: top;
  display: inline-block;
  font-style: normal;
}
.index-about .nr1 .list2 li span {
  font-size: 60px;
  line-height: 60px;
}
.index-about .nr1 .list2 li .font18 {
  font-size: 16px;
  margin-top: 10px;
  text-transform:uppercase;
}
.index-about .nr1 .text {
  color: #000;
  font-size: 20px;
  line-height: 40px;
  margin-top: 40px;
}
.index-about .nr1 .more1 {
  margin-top: 50px;
}
.index-about .nr2 {
  padding-top: 220px;
}
.index-about .nr2 .box {
  margin-top: 80px;
  padding: 0 110px;
  padding-bottom: 120px;
  background: url(../images/honor-bg1.png) no-repeat bottom center;
}
.index-about .nr2 .box li {
  padding: 0 25px;
}
.index-about .nr2 .box li .item {
  text-align: center;
  position: relative;
}
.index-about .nr2 .box li .pic {
  top: 50%;
  left: 0%;
  z-index: 1;
  width: 100%;
  text-align: center;
  transform: translateY(-52%);
  position: absolute;
}
.index-about .nr2 .box li .pic:after {
  content: "";
  display: block;
  padding-bottom: 108%;
}
.index-about .nr2 .box li .pic img {
  display: inline-block;
}
.index-about .nr2 .box .slick-prev,
.index-about .nr2 .box .slick-next {
  width: 36px;
  height: 36px;
  margin-top: -15px;
  border-radius: 100%;
  opacity: 0.5;
  background-size: 20px;
  border: dashed 1px #000;
}
.index-about .nr2 .box .slick-prev {
  left: -110px;
  background: url(../images/arrow-4.png) no-repeat center center;
  transform: rotate(180deg);
}
.index-about .nr2 .box .slick-prev:hover {
  opacity: 1;
  border-color: #00923f;
  background: url(../images/arrow.png) no-repeat center center #00923f;
}
.index-about .nr2 .box .slick-next {
  right: -110px;
  background: url(../images/arrow-4.png) no-repeat center center;
}
.index-about .nr2 .box .slick-next:hover {
  opacity: 1;
  border-color: #00923f;
  background: url(../images/arrow.png) no-repeat center center #00923f;
}
.index-about .nr2 .more2 {
  margin-top: 40px;
}
.index-about .nr2 .slick-dots {
  bottom: -150px;
}
.index-about .nr2 .slick-dots li {
  margin: 0 5px;
  padding: 0;
}
.index-about .nr2 .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #00923f;
  transition: all 334ms ease;
}
.index-about .nr2 .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
}

@media (max-width:1200px){
	.index-about .nr2 .slick-dots{
		display:none !important;
	}
}

.index-about .nr3 {
  padding-top: 120px;
}
.index-about .nr3 .list {
  padding: 60px 0;
}
.index-about .nr3 .list li {
  padding: 0 10px;
}
.index-about .nr3 .list li .pic {
  display: block;
  text-align: center;
  position: relative;
}
.index-about .nr3 .list li .pic img {
  display: inline-block;
}
.index-about .nr3 .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 40%;
}
.index-about .nr3 .list .slick-dots {
  bottom: -50px;
}
.index-about .nr3 .list .slick-dots li {
  margin: 0 5px;
  padding: 0;
}
.index-about .nr3 .list .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #00923f;
  transition: all 334ms ease;
}
.index-about .nr3 .list .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
}
@media (max-width: 1600px) {
  .index-about .nr1 .list2 li span {
    font-size: 32px;
    line-height: 40px;
  }
  .index-about .nr1 .list2 li .font18 {
    margin-top: 0;
    font-size: 14px;
  }
  .index-about .nr1 .text {
    font-size: 16px;
    line-height: 30px;
  }
  .index-about .nr1 .more1 {
    margin-top: 30px;
  }
}
@media (max-width: 1200px) {
  .index-about .nr1 .spbtn .icon {
    width: 50px;
    height: 50px;
  }
  .index-about .nr1 .list2 li {
    width: 33.333%;
    padding: 10px;
  }
  .index-about .nr1 .list2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .index-about .nr1 .list2 li span {
    font-size: 16px;
    line-height: 30px;
  }
  .index-about .nr1 .list2 li .font18 {
    font-size: 12px;
  }
  .index-about .nr2 {
    padding-top: 100px;
  }
  .index-about .nr2 .box li {
    padding: 0 10px;
  }
  
 .index-about .nr1 .list2 li em {
	  font-size: 12px;
	} 
}
@media (max-width: 640px) {
  .index-about .nr1 .list {
    margin: 0 -5px;
    margin-top: 20px;
  }
  .index-about .nr1 .list li {
    padding: 0 5px;
  }
  .index-about .nr2 .box .slick-prev {
    left: -60px;
  }
  .index-about .nr2 .box .slick-next {
    right: -60px;
  }
  .index-about .nr2 .more2 {
    margin-top: 0;
  }
}
@media (max-width: 640px) and (max-width: 640px) {
  .index-about .nr2 .box {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.index-info {
  background: #f2f5f8;
  overflow: hidden;
  padding-top: 100px;
}
.index-info ul {
  margin: 0 -10px;
  padding-top: 40px;
}
.index-info li {
  float: left;
  padding: 0 10px;
  margin-top: 20px;
}
.index-info li .item {
  position: relative;
}
.index-info li .txtbox {
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 3;
  color: #fff;
  padding-left: 70px;
  position: absolute;
  text-transform: uppercase;
}
.index-info li .tit {
  font-size: 24px;
  position: relative;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
}
.index-info li .tit span {
  position: relative;
  display: inline-block;
}
.index-info li .tit span:before {
  content: "";
  width: 100%;
  bottom: 0;
  z-index: 2;
  height: 1px;
  position: absolute;
  background: #efc43a;
}
.index-info li .tit:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}
.index-info li .txt {
  height: 26px;
  overflow: hidden;
  margin-top: 15px;
}
.index-info .li01 {
  width: 42.7%;
}
.index-info .li01 .pic {
  overflow: hidden;
  position: relative;
}
.index-info .li01 .pic img {
  transition: all 700ms ease;
}
.index-info .li01 .pic:after {
  content: "";
  display: block;
  padding-bottom: 62.5%;
}
.index-info .li01 .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
.index-info .li01:hover .pic img {
  transform: scale(1.05);
}
.index-info .li02 {
  width: 57.3%;
}
.index-info .li02 .pic {
  overflow: hidden;
  position: relative;
}
.index-info .li02 .pic img {
  transition: all 700ms ease;
}
.index-info .li02 .pic:after {
  content: "";
  display: block;
  padding-bottom: 46.3%;
}
.index-info .li02 .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
.index-info .li02:hover .pic img {
  transform: scale(1.05);
}
@media (max-width: 1200px) {
  .index-info li .txtbox {
    padding-left: 30px;
    bottom: 20px;
  }
  .index-info li .tit {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .index-info li .txt {
    margin-top: 5px;
  }
}
@media (max-width: 640px) {
  .index-info {
    padding: 0 20px;
  }
  .index-info li {
    width: 100%!important;
    float: none!important;
  }
}
.index-news {
  padding: 100px 0;
  background: #f6f9fb;
}
.index-news .more {
  margin-top: 25px;
  line-height: 40px;
  position: relative;
}
.index-news .more:before {
  width: 40px;
  height: 40px;
  content: "";
  margin-right: 15px;
  vertical-align: top;
  display: inline-block;
  border-radius: 100%;
  border: dashed 1px #00923f;
  background: url(../images/arrow-2.png) no-repeat center center;
}
.index-news .more a {
  color: #00923f;
}
.index-news .more:hover:before {
  background: url(../images/arrow-3.png) no-repeat center center;
}
.index-news .list {
  margin-top: 20px;
}
.index-news .list ul {
  margin: 0 -14px;
}
.index-news .list li {
  padding: 0 14px;
  float: left;
  width: 33.333%;
}
.index-news .list li a {
  color: #221815;
  text-transform: uppercase;
}
.index-news .list li .item {
  background: #fff;
  border-radius: 5px;
}
.index-news .list li:hover .pic img {
  transform: scale(1.05);
}
.index-news .list li:hover .lern:after {
  border-color: #00923f;
  background: url(../images/arrow-3.png) no-repeat center center;
}
.index-news .list li:hover .item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.index-news .list .pic {
  overflow: hidden;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: solid 1px #e6e9ea;
}
.index-news .list .pic img {
  transition: all 700ms ease;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.index-news .list .pic:after {
  content: "";
  display: block;
  padding-bottom: 71.8%;
}
.index-news .list .tit {
  font-size: 22px;
  height: 52px;
  overflow: hidden;
  margin: 30px;
}
.index-news .list .lern {
  padding: 30px;
  line-height: 40px;
  color: #00923f;
  position: relative;
  transition: all 500ms ease;
}
.index-news .list .lern:after {
  content: "";
  width: 40px;
  height: 40px;
  right: 30px;
  top: 30px;
  position: absolute;
  border-radius: 100%;
  border: dashed 1px #bababb;
  background: url(../images/arrow-2.png) no-repeat center center;
}
@media (max-width: 1600px) {
  .index-news {
    padding: 120px 0;
  }
  .index-news .list {
    margin-top: 40px;
  }
  .index-news .list .tag {
    font-size: 14px;
  }
  .index-news .list .tit {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .index-news .list .txt {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .index-news {
    padding: 60px 0;
  }
}
@media (max-width: 500px) {
  .index-news .list li {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
  .index-news .list li .lern {
    display: none;
  }
  .index-news .list li:first-child {
    margin-top: 0;
  }
}
.footer {
  background: #ff0000;
  padding-top: 80px;
}
.footer li {
  float: left;
  width: 16%;
  color: #000;
  font-weight: lighter;
}
.footer li a {
  display: block;
  color: #000;
  margin-top: 15px;
}
.footer li a:hover {
  color: #fff;
}
.footer li h3 {
  color: #000;
  font-weight: normal;
  font-size: 20px;
}
.footer li h3 a {
  color: #000;
  margin-top: 0;
  padding-bottom: 15px;
  display: inline-block;
  position: relative;
}
.footer li h3 a:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #4d370c;
}
.footer li:nth-child(3) {
  width: 9%;
}
.footer li.from {
  width: 20%;
}
.footer li.from h3 {
  position: relative;
  padding-bottom: 15px;
  font-weight: normal;
  margin-bottom: 7px;
  font-size: 20px;
}
.footer li.from h3:after {
  content: "";
  width: 113px;
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #4d370c;
}
.footer li.from input[type="text"],
.footer li.from textarea[type="text"] {
  background: #f8f9f9;
  padding: 0 10px;
  color: #000;
  height: 46px;
  width: 100%;
  font-size: 18px;
  margin-top: 15px;
  font-family: arial;
  border: solid 1px #edeeee;
}
.footer li.from textarea[type="text"] {
  height: 130px;
  padding-top: 10px;
}
.footer li.from input[type="submit"] {
  width: 76px;
  height: 33px;
  line-height: 31px;
  font-size: 18px;
  color: #fff;
  border: 0;
  font-family: arial;
  border-radius: 30px;
  background: #000;
}
.footer li.from input[type="submit"]:hover {
  background: #333;
  color: #fff;
}

.footer li.from button[type="submit"] {
  width: 76px;
  height: 33px;
  line-height: 31px;
  font-size: 16px;
  color: #fff;
  border: 0;
  font-family: arial;
  border-radius: 30px;
  background: #959595;
}
.footer li.from button[type="submit"]:hover {
  background: #00923f;
  color: #fff;
  cursor:pointer;
}

.footer li.from .info {
  margin-top: 15px;
  border: solid 1px #000;
  padding: 10px 20px;
  text-align: center;
}
.footer li.from .info .bt {
  color: #000;
}
.footer li.from .info .bt span {
  color: #fff;
}
.footer li.from .info .xz {
  margin-top: 10px;
  display: block;
}
.footer li.from .info .xz a {
  margin: 0 10px;
  display: inline-block;
  border: solid 1px #efbf32;
  cursor:pointer;
}
.footer li.from .info .xz a:hover,.footer li.from .info .xz a.cur {
  border: solid 1px #000;
}
.footer li.from .btn {
  margin-top: 15px;
}
.footer li.last {
  padding-left: 70px;
  width: 34%;
  float: right;
  min-height: 490px;
  border-left: solid 1px #4d370c;
}
.footer li.last .bt {
  color: #000;
  font-size: 20px;
  position: relative;
  padding-bottom: 17px;
}
.footer li.last .bt:after {
  content: "";
  width: 124px;
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #4d370c;
}
.footer li.last .yx,
.footer li.last .tel,
.footer li.last .add {
  letter-spacing: 2px;
  padding-left: 30px;
  position: relative;
  margin-top: 17px;
}
.footer li.last .yx a,
.footer li.last .tel a,
.footer li.last .add a {
  display: inline-block;
  margin-top: 0;
}
.footer li.last .yx a:hover,
.footer li.last .tel a:hover,
.footer li.last .add a:hover {
  text-decoration: underline;
}
.footer li.last .yx img,
.footer li.last .tel img,
.footer li.last .add img {
  top: 5px;
  left: 0;
  position: absolute;
}
.footer li.last .add img {
  top: 50%;
  transform: translateY(-50%);
}
.footer li.last .share {
  margin-top: 40px;
}
.footer li.last .share a:first-child {
  margin-left: 0;
}
.footer li.last .share a {
  width: 46px;
  height: 46px;
  margin: 0 4px;
  text-align: center;
  border-radius: 100%;
  line-height: 42px;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #d7ab2b;
}
.footer li.last .share a .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  fill: #01172c!important;
}
.footer li.last .share a:nth-child(5) .icon {
  width: 24px;
  height: 24px;
}
.footer li.last .share a:hover {
  background: #010c18;
  border-color: #010c18;
}
.footer li.last .share a:hover .icon {
  fill: #fff!important;
}
.footer li.last .dow {
  margin-top: 40px;
}
.footer li.last .dow .item {
  margin-top: 15px;
}
.footer li.last .dow .item span {
  width: 16.5%;
  float: left;
  display: block;
  padding: 4px;
  background: #fff;
  position: relative;
  box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.35);
}
.footer li.last .dow .item span:after {
  content: "";
  display: block;
  padding-bottom: 136%;
}
.footer li.last .dow .item .txt {
  width: 30%;
  float: left;
  color: #221815;
  font-size: 16px;
  padding-top: 7px;
  padding-left: 15px;
}
.footer .copy {
  margin-top: 35px;
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  color: #000;
  border-top: solid 1px #4d370c;
}



.rightfix {
  top: auto;
  transform: translateY(0);
  bottom: 5%;
  right: 1.875rem;
}




.fix_ul li {
  border: none;
  width: 2.875rem;
  height: 2.875rem;
  margin-bottom: .9375rem;
  background: #686868;
  padding: 0;
  line-height: 2.875rem;
  border-radius: 50%;
}

.fix_ul li {
  background: #FFFFFF;
  box-shadow: 2px 4px 12px rgba(176, 176, 176, 0.25);
}

.fix_ul li:last-child {
  margin-bottom: 0;
}

.fix_ul li:hover .right_div {
  right: 72px;
  min-height: 72px;
  line-height: 72px;
}

.fix_ul li i {
  display: block;
  font-size: 1.4rem;
  color: #000;
}
.fix_ul li i.icon-weixin{
  color: #555;
}
.fix_ul li i.icon-weixin:hover{
  color: #fff;
}




.rightfix ul li:hover .rightfix_right {
  opacity: 1;
  right: 3.125rem;
  transition: all .5s;
  
}

.rightfix_right {
  position: absolute;
  top: 0;
  right: -100%;
  border-radius: 5.5rem;
  opacity: 0;
  transition: all .5s;
  width: 7.5rem;
  height: 100%;
  background: #fff;
  text-align: center;
  font-size: 0.875rem;
  color: #000;
  z-index: -1;
}


.rightfix_right2 {
 
  width: 10rem;
}




.fix_ul li:last-child {
  display: none;
}

@media (max-width: 1600px) {
  .footer li a {
    margin-top: 10px;
  }
  .footer li.from textarea[type="text"] {
    height: 100px;
  }
  .footer li.last .share a {
    width: 40px;
    height: 40px;
    line-height: 36px;
  }
  .footer li.last .yx,
  .footer .li.last .tel,
  .footer li.last .add {
    margin-top: 10px;
  }
  .footer li.last .share {
    margin-top: 20px;
  }
  .footer li.last .dow .item .txt {
    width: 40%;
  }
  .footer li.last .dow {
    margin-top: 20px;
  }
  .footer li.last {
    min-height: 400px;
  }
}
@media (max-width: 1200px) {
  .footer {
    padding-top: 30px;
  }
  .footer .logo {
    display: none;
  }
  .footer ul {
    padding: 0 0 30px 0;
    border-top: 0;
  }
  .footer li {
    display: none;
  }
  .footer li.last {
    display: block;
    width: 100%;
    float: none;
    border-left: 0;
    padding-left: 20px;
  }
  .footer .copy {
    font-size: 12px;
    margin-top: 0;
    padding: 10px 0;
  }
  .footer .copy .tag {
    padding: 0 5px;
  }
}
.footer-home {
  background: #fff;
}
.footer-home li {
  color: #4a4a4a;
}
.footer-home li a {
  color: #4a4a4a;
}
.footer-home li a:hover {
  color: #00923f;
}
.footer-home li h3 a:after {
  background: #00923f;
}
.footer-home li.from h3:after {
  background: #00923f;
}
.footer-home li.last .bt::after {
  background: #00923f;
}
.footer-home li.from .info .xz a {
  border-color: #fff;
}
.footer-home li.from .info .xz a:hover {
  border-color: #00923f;
}
.footer-home li.from input[type="submit"] {
  background: #00923f;
}
.footer-home li.from input[type="submit"]:hover {
  background: #000;
}
.footer-home li.last .share a {
  border: solid 1px #d8d8d8;
}
.footer-home li.last .share a .icon {
  fill: #d8d8d8!important;
}
.footer-home li.last .share a:hover {
  background: #00923f;
  border-color: #00923f;
}
.footer-home li.last .share a:hover .icon {
  fill: #fff!important;
}
.footer-home li.last {
  border-color: #d9d9d9;
}
.footer-home .copy {
  color: #777;
  border-top: solid 1px #d9d9d9;
}
.transparent {
  display: none;
  position: fixed;
  z-index: 998;
  top: 0;
  margin: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.navM .navMCon {
  background-color: #fff;
  width: 60%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: auto;
  right: -100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.navM .navMWrap {
  overflow-y: auto;
  padding: 30px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.navM.open .transparent {
  display: block;
}
.navM.open .closeBtn {
  display: block;
}
.navM.open .navMCon {
  right: 0;
}
.navM .closeBtn {
  display: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  /*background: #27456b;*/
  color: #666;
  position: absolute;
  z-index: 999;
  left: -60px;
  top: 40px;
}
.navM .closeBtn:before,
.navM .closeBtn:after {
  content: "";
  display: block;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navM .closeBtn:before {
  width: 30px;
  height: 1px;
}
.navM .closeBtn:after {
  width: 1px;
  height: 30px;
}
.navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.navM .navMWrap > .list .title {
  margin-bottom: 10px;
  padding: 10px 5px;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
  position: relative;
}
.navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.navM .navMWrap > .list .title .icon:before,
.navM .navMWrap > .list .title .icon:after {
  content: "";
  /*background: #2047a3;*/
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.navM .navMWrap > .list .title .icon:before {
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #2047a3;
  border-left: solid 2px #2047a3;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
/*.navM .navMWrap > .list .title .icon:after {
  width: 10px;
  height: 2px;
}*/
.navM .navMWrap > .list .has .title .icon {
  display: block;
}
.navM .navMWrap > .list .active .title .icon:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.navM .child {
  padding: 0 5px 20px 5px;
  display: none;
  position: relative;
}
.navM .child a {
  color: #666;
  display: block;
  font-size: 14px;
  line-height: 28px;
  padding: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: relative;
}
.navM .child a:hover {
  color: #000;
  margin-left: 10px;
}
.navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  height: 56px;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.navM .mSearch .btn {
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  right: 15px;
}
.navM .mSearch .btn .iconfont {
  font-size: 18px;
}
.navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 30px 5px 15px;
  border-radius: 2px;
  font-size: 16px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
.navM .other {
  padding: 10px ;
}
.navM .languageBtn {
  padding: 10px 0;
}
.navM .languageBtn a {
  display: block;
  width: 50%;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px #ccc solid;
  margin-right: -1px;
  background: #fff;
}
.inside-map {
  padding: 80px 0;
}
.inside-map li {
  padding: 30px 0;
  font-size: 16px;
  border-bottom: solid 1px #eee;
}
.inside-map li h3 {
  padding-bottom: 10px;
}
.inside-map li a {
  display: inline-block;
  padding-right: 20px;
}
.inside-map li:first-child {
  padding-top: 0;
}
.inside-map li:last-child {
  border-bottom: 0;
}
@media (max-width: 1025px) {
  .inside-map {
    padding: 30px 0;
  }
  .inside-map li {
    font-size: 14px;
  }
}
.inside-banner {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inside-banner .pc {
  position: relative;
}
.inside-banner .pc img {
  vertical-align: middle;
  width: 100%;
}
.inside-banner .txtbox {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 1;
  text-align: left;
  position: absolute;
  transform: translateY(-50%);
}
.inside-banner .txtbox img {
  vertical-align: middle;
}
.inside-banner .tit {
  font-size: 47px;
  line-height: 50px;
  color: #00923f;
  vertical-align: middle;
  display: inline-block;
  margin-left: -160px;
  font-weight: lighter;
}
.inside-banner .vbtn {
  text-align: center;
  display: block;
}
.inside-banner .vbtn .icon {
  fill: rgba(255, 255, 255, 0.8);
  width: 200px;
  height: 200px;
}
@media (max-width: 1600px) {
  .inside-banner .vbtn .icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1200px) {
  .inside-banner {
    margin-top: 60px;
  }
  .inside-banner .vbtn .icon {
    width: 50px;
    height: 50px;
  }
}
.current {
  text-transform: uppercase;
  font-size: 16px;
  color: #3e3a39;
  padding: 27px 0;
}
.current a {
  color: #3e3a39;
}
.current span {
  position: relative;
  background: url(../images/home.png) no-repeat 0 1px;
  background-size: 15px;
  padding-left: 22px;
}
.current b {
  font-weight: normal;
}
@media (max-width: 1200px) {
  .current {
    font-size: 12px;
    padding: 0;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
  }
}
.second-nav ul {
  font-size: 0;
  text-align: center;
}
.second-nav ul li {
  display: inline-block;
  vertical-align: top;
  width:15%;
  line-height: 48px;
  background: #fff;
  margin-left: -1px;
}
.second-nav ul li a {
  font-size: 19px;
  text-transform: uppercase;
  display: block;
  color: #323232;
  text-align: center;
  padding: 0 5px;
  overflow: hidden;
  border: 1px solid #d2d2d2;
}
.second-nav ul li a:hover{ color:#fff !important;}
.second-nav ul li.active a{ color:#fff;}


@media (min-width: 1025px) {
  .second-nav ul li:hover a {
    background: #00923f;
    border-color: #00923f;
    color: #221815;
  }
}
.second-nav ul .active a {
  border-color: #00923f;
  background: #00923f;
  color: #221815;
}
@media (max-width: 1200px) {
  .second-nav ul li a {
    font-size: 16px;
  }
}
.news {
  padding-top: 40px;
  padding-bottom: 60px;
 background:rgb(204,204,204,0.05)
}
.news-list {
  overflow: hidden;
  padding-top: 45px;
}
.news-list li {
  margin-bottom: 38px;
  overflow: hidden;
}
.news-list li .box {
  position: relative;
  padding-left: 257px;
  cursor: pointer;
}
.news-list li .pic {
  width: 238px;
  position: absolute;
  top: 0;
  left: 0;
}
.news-list li .pic img {
  transition: 0.5s;
}
.news-list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 53.36134454%;
}
.news-list li .text {
  position: relative;
  padding-right: 128px;
  padding-top: 6px;
}
.news-list li .text .bt {
  color: #000000;
  font-size: 19px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 6px;
}
.news-list .info span {
  color: #999999;
  font-size: 13px;
  margin-right: 44px;
}
.news-list li .text .jsh {
  font-size: 16px;
  color: #999999;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-bottom: 10px;
}
.news-list li .text .date {
  position: absolute;
  top: 0;
  right: 0;
  padding-bottom: 106px;
  width: 72px;
}
.news-list li .text .date div {
  font-size: 43px;
  color: #999999;
  line-height: 43px;
  text-align: center;
}
.news-list li .text .date p {
  font-size: 12px;
  color: #999999;
  text-align: center;
}
.news-list li .text .date .more {
  display: block;
  width: 72px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  font-size: 10px;
  color: #999999;
  border: 1px solid #999999;
  margin-top: 5px;
  transition: 0.3s;
}
@media (min-width: 1025px) {
  .news-list li:hover .date .more {
    background: #00923f;
    color: #ffffff;
    transition: 0.3s;
    border-color: #00923f;
  }
  .news-list li:hover .pic img {
    transform: scale(1.03);
  }
  .news-list li:hover .text .bt {
    color: #00923f;
  }
}
@media (max-width: 1200px) {
  .news-list li {
    width: 33.333%;
    float: left;
    padding: 0 10px;
  }
  .news-list li .pic {
    top: auto;
    left: auto;
	width: auto;
    position: relative;
  }
  /*.news-list li .pic img {
    width: 100%;
  }*/
.news-list li .pic:after {

  padding-bottom: 70.361%;
}  
  .news-list li .box {
    padding-left: 0;
	width: auto;
  }
  .news-list li .text {
    padding-right: 0;
  }
  .news-list li .text .date {
    display: none;
  }
  .news-list li .text .bt {
    font-size: 14px;
  }
  .news-list li .text .jsh {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
  }
  .news-list .info span {
    display: none;
  }
}
@media (max-width: 500px) {
  .news-list {
    padding-top: 20px;
  }
  .news-list ul {
    margin: 0 -10px;
  }
  .news-list li {
    width: 50%;
    float: left;
    margin-bottom: 20px;
  }
}
.page a {
  color: #999999;
  display: inline-block;
  font-size: 14px;
  line-height: 28px;
  min-width: 30px;
  height: 28px;
  width: 30px;
  font-family: arial;
  border: 1px #dddddd solid;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
}
.page a.prev,
page a.next {
  color: #999999;
  width: auto;
}
.page .fr {
  border: 1px #dddddd solid;
}
.page .fl a {
  margin-right: 10px;
}
.page a.prev {
  width: 65px;
  height: 28px;
  line-height: 28px;
  float: left;
  border: none;
}
.page a.next {
  border: none;
  float: left;
  width: 65px;
  height: 28px;
  line-height: 28px;
  background: #9fa0a0;
  color: #ffffff;
}
.page .fl a.cur,
.page .fl a:hover,
.page .fl a.active {
  background: #9fa0a0;
  border: 1px #9fa0a0 solid;
  color: #fff;
}
.page span {
  display: inline-block;
}
@media (max-width: 1200px) {
  .page .fl a {
    margin-right: 0;
  }
  .page a.prev,
  .page a.next {
    width: 50px;
  }
}
.new-show .news-title {
  font-size: 36px;
  color: #333333;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.new-show .more {
  margin-top: 25px;
  text-align: center;
  width: 100%;
  margin-bottom: 35px;
}
.new-show .more span {
  display: inline-block;
  font-size: 14px;
  color: #999999;
  line-height: 14px;
}
.new-show .more .time {
  background: url(../images/riqi.png) no-repeat left center;
  padding-left: 22px;
  padding-right: 30px;
  border-right: 1px solid #999999;
}
.new-show .more .liulan {
  background: url(../images/yanj.png) no-repeat left center;
  padding-left: 22px;
  margin: 0 30px;
  padding-right: 30px;
  border-right: 1px solid #999999;
}
.new-show .more .laiyuan {
  background: url(../images/laiyuan.png) no-repeat left center;
  padding-left: 15px;
}
.new-show .news-c p {
  color: #999999;
  font-size: 15px;
  margin: 30px 0;
  line-height: 34px;
}
.new-show .news-c p:nth-child(1) {
  margin-top: 0;
}
.new-show .prev-next {
  font-size: 16px;
  color: #666666;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.new-show .prev-next div {
  width: 110px;
  height: 35px;
  background: #f5f5f5;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
}
.new-show .prev-next div a:hover {
  color: #fff;
  display: block;
  background: #00923f;
}
.new-show .news2 {
  background: #f1f4ff;
  padding-top: 90px;
  padding-bottom: 100px;
}
.new-show .news2 .title {
  color: #333333;
  font-size: 40PX;
  font-weight: bold;
  text-align: center;
}
.new-show .news2 .eng-title {
  color: #666666;
  font-size: 24PX;
  text-align: center;
}
.new-show .news2 ul {
  margin-top: 56px;
}
.new-show .news2 ul li:last-child {
  margin-bottom: 0;
}
.news .title-title {
  font-size: 38px;
  color: #000;
  text-transform: capitalize;
  padding-top: 100px;
}
.news .line-line {
  height: 1px;
  width: 100%;
  background: #cccccc;
  margin-bottom: 15px;
  margin-top: 15px;
}
.inside-news-show {
  font-size: 16px;
  line-height: 32px;
  padding: 50px 0 70px 0;
  background:rgb(204,204,204,0.05)
}
.inside-news-show h1 {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
}
.prev-next {
  overflow: hidden;
  color: #666;
  margin-top: 60px;
  font-size: 18px;
}
.prev-next .return {
  line-height: 90px;
  height: 90px;
  overflow: hidden;
  position: relative;
  padding-left: 95px;
  float: left;
  margin-bottom: 0;
  width: 17%;
  margin: 0 0.5%;
  background: #f7f7f7 url(../images/mumu.png) no-repeat 60px center;
}
@media (max-width: 1650px) {
  .prev-next .return {
    height: 50px;
    line-height: 50px;
    padding-left: 40px;
    padding-right: 30px;
    font-size: 12px;
  }
  .prev-next .return a {
    padding-left: 40px;
  }
}
.prev-next .news-prev {
  line-height: 90px;
  height: 90px;
  position: relative;
  padding-left: 85px;
  float: left;
  margin-bottom: 0;
  width: 41%;
  background: #f7f7f7;
  padding-right: 70px;
  overflow: hidden;
}
@media (max-width: 1650px) {
  .prev-next .news-prev {
    height: 50px;
    line-height: 50px;
    padding-left: 60px;
    padding-right: 30px;
    font-size: 12px;
  }
}
.prev-next .news-next {
  line-height: 90px;
  height: 90px;
  position: relative;
  padding-right: 85px;
  float: left;
  margin-bottom: 0;
  width: 41%;
  background: #f7f7f7;
  padding-left: 70px;
  text-align: right;
  overflow: hidden;

}
@media (max-width: 1650px) {
  .prev-next .news-next {
    height: 50px;
    line-height: 50px;
    padding-right: 60px;
    font-size: 12px;
  }
}
.prev-next .news-prev span {
  position: absolute;
  left: 30px;
  top: 0;
  display: inline-block;
  width: 60px;
  font-family: 瀹嬩綋;
  text-align: center;
}
@media (max-width: 1650px) {
  .prev-next .news-prev span {
    width: 40px;
    left: 15px;
  }
}
.prev-next .news-next span {
  position: absolute;
  right: 30px;
  top: 0;
  display: inline-block;
  width: 60px;
  font-family: 瀹嬩綋;
  text-align: center;
}
@media (max-width: 1650px) {
  .prev-next .news-next span {
    width: 40px;
    right: 15px;
  }
}
.prev-prev li a,
.prev-next li a {
  color: #999999;
  display: block;
}
.prev-next li .tit {
  display: block;
  overflow: hidden;
}
.prev-next li:hover {
  background-color: #e7e7e7;
}
.prev-next li:hover a {
  color: #666;
}
@media (max-width: 1200px) {
  .inside-news-show {
    font-size: 14px;
    line-height: 24px;
  }
  .inside-news-show h1 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .prev-next .news-prev,
  .prev-next .news-next {
    width: 100%;
    float: none;
    text-align: left;
    padding: 0 50px!important;
  }
  .prev-next .news-next {
    margin-top: 1px;
    padding-left: 30px!important;
  }
  .prev-next .return {
    display: none;
  }
}
.inside-case {
  padding-top: 30px;
}
.inside-case li {
  position: relative;
  background: #f0f4f7;
}
.inside-case li .picbox {
  width: 50%;
  float: left;
}
.inside-case li .picbox .tu {
  overflow: hidden;
  position: relative;
}
.inside-case li .picbox .tu img {
  transition: all 1500ms ease;
}
.inside-case li .picbox .tu:after {
  content: "";
  display: block;
  padding-bottom: 95.8%;
}
.inside-case li .picbox .tu:hover img {
  transform: scale(1.05);
}
.inside-case li .txtbox {
  width: 50%;
  float: left;
  top: 50%;
  right: 0;
  color: #221815;
  line-height: 30px;
  transform: translateY(-50%);
  padding: 40px 5% 40px  70px;
  position: absolute;
}
.inside-case li .tit {
  font-size: 38px;
  line-height: 50px;
}
.inside-case li .txt {
  margin-top: 20px;
}
.inside-case li:nth-child(2n) .picbox {
  float: right;
}
.inside-case li:nth-child(2n) .txtbox {
  left: 0;
  right: auto;
}
.inside-case .slick-dots {
  bottom: 30px;
}
.inside-case .slick-dots li {
  margin: 0 5px;
  background: none;
}
.inside-case .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #00923f;
  transition: all 334ms ease;
}
.inside-case .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
}
@media (max-width: 1200px) {
  .inside-case li .txtbox {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 640px) {
  .inside-case {
    padding-top: 0;
  }
  .inside-case li .picbox {
    width: 100%!important;
    float: none!important;
  }
  .inside-case li .txtbox {
    top: auto;
    left: auto;
    width: 100%;
    right: auto;
    padding: 30px;
    line-height: 24px;
    transform: translateY(0);
    position: relative;
  }
  .inside-case li .tit {
    font-size: 20px;
    line-height: 30px;
  }
  .inside-case li .txt {
    margin-top: 10px;
  }
}
.inside-gc {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 0;
}
.inside-gc .list {
  margin-top: 60px;
}
.inside-gc .list li {
  width: auto;
  margin-bottom: 110px;
}
.inside-gc .list li .item {
  border: solid 1px #e5e6e5;
}
.inside-gc .slick-dots {
  bottom: 50px;
}
.inside-gc .slick-dots li {
  margin: 0 5px;
  float: none;
  padding: 0;
  background: none;
}
.inside-gc .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #00923f;
  transition: all 334ms ease;
}
.inside-gc .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
}
@media (max-width: 640px) {
  .inside-gc .list {
    margin-top: 0px;
  }
  .inside-gc .list li {
    float: left!important;
  }
  .inside-gc .list .tit {
    margin: 10px 20px;
  }
  .inside-gc .slick-dots {
    margin: 0!important;
  }
  .inside-gc .slick-dots li {
    float: none!important;
  }
}
.inside-faq {
  position: relative;
  padding: 40px 0 70px 0;
  background:rgb(204,204,204,0.05)
}
.inside-faq .sd-top {
  right: 0;
  top: 0;
  position: absolute;
}
.inside-faq .sd-bot {
  bottom: 10px;
  left: 0;
  position: absolute;
}
.inside-faq .container {
  z-index: 1;
  position: relative;
}
.inside-faq li {
  color: #221815;

  transition: all 500ms ease;
  background: #f5f8fa;
}
.inside-faq li .tit {
  font-size: 20px;
}
.inside-faq li .txt {
  opacity: 0.8;
}
.inside-faq li:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}
.inside-faq li:hover .tit {
  color: #00923f;
}
.inside-faq li:first-child {
  margin-top: 0;
}
.inside-about {
  padding-top: 20px;
}
.inside-about .ca01 {
  padding: 70px 0 90px 0;
}
.inside-about .ca01 .left {
  float: left;
  width: 48.5%;
  padding-left: 44px;
  padding-bottom: 20px;
  position: relative;
}
.inside-about .ca01 .left:after {
  content: '';
  display: block;
  width: 640px;
  height: 390px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffffff;
  z-index: 1;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.17);
}
.inside-about .ca01 .left .slick-list {
  z-index: 3;
}
.inside-about .ca01 .left .slick-dots {
  z-index: 4;
  position: absolute;
  bottom: auto;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 16px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.inside-about .ca01 .left .slick-dots li {
  width: 16px;
  height: 16px;
  padding: 3px;
  margin: 4px 0;
}
.inside-about .ca01 .left .slick-dots li button {
  height: 10px;
  width: 10px;
  background: #00923f;
}
.inside-about .ca01 .left .slick-dots .slick-active {
  padding: 0;
}
.inside-about .ca01 .left .slick-dots .slick-active button {
  height: 16px;
  width: 16px;
  background: #00923f;
}
.inside-about .ca01 .left .item {
  position: relative;
  z-index: 2;
}
.inside-about .ca01 .left .item .pic {
  display: block;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.inside-about .ca01 .left .item .pic img {
  transition: 0.5s;
}
.inside-about .ca01 .left .item .pic:after {
  content: '';
  display: block;
  padding-bottom: 61.00151745%;
}
.inside-about .ca01 .right {
  color: #0d0408;
  float: right;
  width: 48%;
  padding-top: 30px;
  line-height: 32px;
}
.inside-about .ca01 .right .tit {
  font-size: 28px;
  line-height: 48px;
  text-transform: uppercase;
}
.inside-about .ca01 .right .txt {
  padding-top: 20px;
}
@media (max-width: 1600px) {
  .inside-about .ca01 .right {
    line-height: 26px;
    padding-top: 0;
    padding-left: 60px;
  }
  .inside-about .ca01 .right .tit {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1200px) {
  .inside-about .ca01 {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .inside-about .ca01 .left {
    width: 100%;
    float: none;
    padding-bottom: 0;
    padding-left: 0;
  }
  .inside-about .ca01 .left:after {
    display: none;
  }
  .inside-about .ca01 .left .item .pic {
    padding: 0;
  }
  .inside-about .ca01 .left .item .pic img {
    width: 100%;
  }
  .inside-about .ca01 .left .slick-dots {
    left: 0;
    width: 100%;
    top: auto;
    bottom: 30px;
    margin-top: auto;
    transform: translate(0);
  }
  .inside-about .ca01 .right {
    width: 100%;
    float: none;
    padding: 30px 0;
  }
}
.inside-about .nr2 {
  padding: 110px 0;
}
.inside-about .nr2 .list {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 1200px) {
  .inside-about .nr2 .list {
    margin-top: 40px;
  }
}
.inside-about .nr2 .box {
  padding-left: 20px;
  position: relative;
}
.inside-about .nr2 .txtbox {
  width: 50%;
  float: left;
  color: #000;
  padding: 50px 100px;
  padding-bottom: 50px;
  position: absolute;
  top: 50%;
  min-height: 550px;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .inside-about .nr2 .txtbox {
    min-height: 200px;
  }
}
.inside-about .nr2 .txtbox .logo {
  text-align: center;
}
.inside-about .nr2 .txtbox .logo img {
  display: inline-block;
}
.inside-about .nr2 .txtbox .tit {
  color: #3f3f3f;
  font-size: 32px;
  line-height: 42px;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.inside-about .nr2 .txtbox .tit:after {
  content: "";
  height: 1px;
  width: 40px;
  left: 50%;
  bottom: 0;
  position: absolute;
  background: #3f3f3f;
  transform: translateX(-50%);
}
@media (max-width: 1200px) {
  .inside-about .nr2 .txtbox .tit {
    font-size: 20px;
    line-height: 30px;
  }
}
.inside-about .nr2 .txtbox .txt {
  margin-top: 20px;
  line-height: 30px;
  margin-bottom: 50px;
  height: 150px;
  overflow: hidden;
}
.inside-about .nr2 .picitem {
  width: 50%;
  float: right;
  z-index: 3;
  position: relative;
}
@media (max-width: 1200px) {
  .inside-about .nr2 {
    padding: 60px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .inside-about .nr2 .txtbox {
    width: 100%;
    float: none;
    top: auto;
    left: auto;
    padding: 0px;
    margin-top: auto;
    position: relative;
    transform: translate(0);
    box-shadow: none;
  }
  .inside-about .nr2 .txtbox .txt {
    height: auto;
  }
  .inside-about .nr2 .box {
    padding: 0;
  }
  .inside-about .nr2 .picitem {
    width: 100%;
    float: none;
  }
}
.inside-about .slick-dots {
  bottom: 120px;
  width: 50%;
  text-align: center;
}
.inside-about .slick-dots li {
  margin: 0 5px;
}
.inside-about .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #00923f;
  transition: all 334ms ease;
}
.inside-about .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
}
.about04 {
  padding: 80px 0 69px 0;
  background: url("../images/bg5.jpg") no-repeat top center;
  background-size: cover;
}

.about04 .index-title .tit{ color:rgb(255,255,255,1)}
.about04 .index-title .txt{ color:rgb(255,255,255,1)}

.about04 .inmain-title {
  color: #fff;
}
.about04 .inmain-title:after {
  background: #fff;
}
.about04 .about-bottom {
  margin: 69px 50px 0 114px;
  position: relative;
}
.about04 .about-bottom ul {
  padding: 52px 0;
  width: 16%;
  float: left;
  text-align: center;
}
.about04 .about-bottom ul li {
  color:rgb(255,255,255,.5);
  font-size: 28px;

  cursor: pointer;
  line-height: 60px;
  margin-bottom: 20px;
}
.about04 .about-bottom ul .slick-current {
  opacity: 1;
  color: #fff;
}
.about04 .about-bottom ul .slick-prev,
.about04 .about-bottom ul .slick-next {
  width: 100%;
  height: 28px;
  margin-top: 0;
  z-index: 5;
  left: auto;
  right: auto;
  top: 0;
  border: 0;
  opacity: 0.5;
}
.about04 .about-bottom ul .slick-prev:before,
.about04 .about-bottom ul .slick-next:before {
  content: '';
}
@media (min-width: 1025px) {
  .about04 .about-bottom ul .slick-prev:hover,
  .about04 .about-bottom ul .slick-next:hover {
    opacity: 1;
  }
}
.about04 .about-bottom ul .slick-prev {
  background: url("../images/left2.png") no-repeat center center;
}
.about04 .about-bottom ul .slick-next {
  top: auto;
  bottom: 0;
  background: url("../images/right2.png") no-repeat center center;
}
.about04 .about-bottom .show {
  width: 76.7%;
  float: right;
}
.about04 .about-bottom .show .info .pic {
  position: relative;
}
.about04 .about-bottom .show .info .pic:after {
  content: "";
  display: block;
  padding-bottom: 34.45807771%;
}
.about04 .about-bottom .show .info .text {
  padding: 23px 0;
}
.about04 .about-bottom .show .info .text .bt {
  font-size: 24px;
  color: #fff;
  height: 26px;
  overflow: hidden;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.about04 .about-bottom .show .info .text .jsh {
  font-size: 20px;
  color: #fff;
  /*height: 98px;*/
  overflow: hidden;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .about04 {
    padding: 60px 0 20px 0;
  }
  .about04 .about-bottom {
    margin-left: 0;
    margin-right: 0;
    margin: 0px 0;
  }
  .about04 .about-bottom ul {
    width: 100%;
    float: none;
    padding: 20px 40px;
  }
  .about04 .about-bottom ul li {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
  }
  .about04 .about-bottom ul .slick-prev {
    left: 0;
    width: 48px;
    top: 20px;
    transform: rotate(-90deg);
    background-size: 20px 10px;
  }
  .about04 .about-bottom ul .slick-next {
    right: 0;
    left: auto;
    width: 48px;
    top: 20px;
    transform: rotate(-90deg);
    background-size: 20px 10px;
  }
  .about04 .about-bottom .show {
    width: 100%;
    float: none;
  }
  .about04 .about-bottom .show .info .text .jsh {
    font-size: 14px;
    height: auto;
    line-height: 22px;
  }
}
.home-adv {
  padding: 90px 0 0 0;
}

@media (max-width:1400px){	
	.home-adv {
	    transform: scale(0.9);
	}
}

.home-adv .home-bottom {
  position: relative;
  height: 717px;
  background: url("../images/bg8.png") no-repeat bottom center;
  margin-top: 49px;
  padding-top: 175px;
}
.home-adv .home-bottom ul li {
  position: absolute;
}
.home-adv .home-bottom ul li a {
  font-size: 24px;
  color: #221815;
  line-height: 32px;
  display: block;
}
.home-adv .home-bottom ul li:nth-child(1) {
	left: 90px;
	bottom: 196px;
}
.home-adv .home-bottom ul li:nth-child(1) a {
  /*background: url("../images/d.png") no-repeat right 8px;
  padding-right: 40px;*/
  
  background: url("../images/d.png") no-repeat bottom center;
  padding-bottom: 23px;
}
.home-adv .home-bottom ul li.active:nth-child(1) a {
  background: url("../images/dh.png") no-repeat bottom center;
}
.home-adv .home-bottom ul li:nth-child(2) {
	left: 257px;
	top: 140px;
}
.home-adv .home-bottom ul li:nth-child(2) a {
  background: url("../images/d.png") no-repeat bottom center;
  
  padding-bottom: 23px;
}
.home-adv .home-bottom ul li.active:nth-child(2) a {
  background: url("../images/dh.png") no-repeat bottom center;
}
.home-adv .home-bottom ul li:nth-child(3) {
  left: 50%;
  top: 0;
  margin-left: -102px;
}
.home-adv .home-bottom ul li:nth-child(3) a {
  background: url("../images/d.png") no-repeat bottom center;
  padding-bottom: 23px;
}
.home-adv .home-bottom ul li.active:nth-child(3) a {
  background: url("../images/dh.png") no-repeat bottom center;
}
.home-adv .home-bottom ul li:nth-child(4) {
  right: 230px;
  top: 140px;
}
.home-adv .home-bottom ul li:nth-child(4) a {
  background: url("../images/d.png") no-repeat bottom center;
  padding-bottom: 23px;
}
.home-adv .home-bottom ul li.active:nth-child(4) a {
  background: url("../images/dh.png") no-repeat bottom center;
}
.home-adv .home-bottom ul li:nth-child(5) {
  right: 25px;
  bottom: 194px;
}
.home-adv .home-bottom ul li:nth-child(5) a {
  background: url("../images/d.png") no-repeat bottom center;
  padding-bottom: 23px;
}
.home-adv .home-bottom ul li.active:nth-child(5) a {
  background: url("../images/dh.png") no-repeat bottom center;
}
.home-adv .home-bottom .show {
  width: 643px;
  margin: 0 auto;
}
.home-adv .home-bottom .show .info {
  padding-bottom: 35px;
  position: relative;
  display: none;
}
.home-adv .home-bottom .show .info:after {
  content: '';
  display: block;
  width: 104px;
  height: 50px;
  background: url("../images/bg3.png") no-repeat center center;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -52px;
  z-index: 5;
}
.home-adv .home-bottom .show .info:before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url("../images/jiaa.png") no-repeat center center;
  position: absolute;
  bottom: 6px;
  left: 50%;
  margin-left: -16px;
  z-index: 6;
}
.home-adv .home-bottom .show .info .box {
  padding: 32px 40px 15px 40px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.home-adv .home-bottom .show .info .box .pic {
  position: relative;
}
.home-adv .home-bottom .show .info .box .pic:after {
  content: "";
  display: block;
  padding-bottom: 23.21428571%;
}
.home-adv .home-bottom .show .info .box .jsh {
  margin-top: 21px;
  padding: 0 42px;
  line-height: 21px;
  /*height: 63px;*/
  overflow: hidden;
  margin-bottom: 16px;
}
.home-adv .home-bottom .show .info .box .more a {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #00923f;
  font-weight: bold;
  display: block;
}

@media (max-width: 1600px) {
	.home-adv .home-bottom ul li:nth-child(1){
		left: -30px;
	}
	
	.home-adv .home-bottom ul li:nth-child(2){
		left: 145px;
	}
	
	.home-adv .home-bottom ul li:nth-child(4){
		right:118px;
	}
	
	.home-adv .home-bottom ul li:nth-child(5){
		right:-95px;
	}
}

@media (max-width: 1200px) {
  .home-adv {
    padding-top: 40px;
  }
  .home-adv .home-bottom {
    padding-top: 0;
    background: none;
    height: auto;
    padding-bottom: 30px;
  }
  .home-adv .home-bottom ul li {
    bottom: auto!important;
    top: auto!important;
    left: auto!important;
    right: auto!important;
    width: 100%!important;
    margin-right: 0!important;
    margin-left: 0!important;
    position: relative!important;
    border: solid 1px #eee;
    padding: 10px;
    background: #fff;
    margin-bottom: 10px;
    text-align: center;
  }
  .home-adv .home-bottom ul li a {
    font-size: 16px;
    padding-bottom: 0!important;
    padding-right: 0!important;
    padding-left: 0!important;
    background: none!important;
  }
  .home-adv .home-bottom .show {
    width: 100%;
  }
  .home-adv .home-bottom .show .info .box {
    padding: 15px;
  }
}
.home-other {
  padding: 50px 0;
  background: url("../images/bg.jpg") no-repeat top center;
  background-size:cover;
}
.home-other .text {
  float: left;
  width: 35%;
  color: #fff;
}
.home-other .text .bt {
  font-size: 26px;
  font-weight: bold;
  line-height: 36px;
}
@media (max-width: 1200px) {
	.home-other{
		padding:30px 0;
	}
  .home-other .text .bt {
    font-size:16px;
    line-height:20px;
  }
  .home-other ul{
  	padding-top:20px;
  }
  .home-other ul li .bt{
  	font-size: 12px;
		line-height: 16px;
  }
  
}
.home-other .text .p {
  margin: 10px 0;
  width: 81%;
  line-height: 22px;
}
.home-other .text .tel {
  margin-top: 20px;
}
.home-other .text .tel .zx {
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  padding: 0 15px;
  border-radius: 10px;
  font-weight: 700;
  background: #f1ca0f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 1025px) {
  .home-other .text .tel .zx:hover {
    background: #00923f;
    color: #fff;
  }
}
.home-other ul {
  float: right;
  width: 65%;
  padding-top: 30px;
}
.home-other ul li:first-child:before {
  display: none;
}
.home-other ul li {
  width: 25%;
  float: left;
  text-align: center;
  color: #fff;
  position: relative;
  font-size: 18px;
}
.home-other ul li:before {
  content: "";
  width: 1px;
  height: 45px;
  left: 0;
  top: 25px;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}
.home-other ul li .pic {
  width: 90px;
  margin: 0 auto;
  transition: 0.5s;
}
.home-other ul li .bt {
  margin-top: 10px;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .home-other ul li:hover .pic {
    transform: rotateY(360deg);
  }
}
@media (max-width: 1200px) {
  .home-other {
    padding: 10px 0;
  }
  .home-other .text {
    width: 100%;
    float: none;
    text-align: center;
  }
  .home-other .text .p {
    width: 100%;
    margin: 0;
  }
  .home-other ul {
    width: 100%;
    float: none;
    padding-top: 10px;
  }
  .home-other ul li {
    font-size: 12px;
    line-height: 20px;
  }
  .home-other ul li:before {
    display: none;
  }
  .home-other ul li .pic {
    width: 45px;
  }
}
.ad2 {
  text-align: center;
}
.ad2 img {
  width: 100%;
}
.inside-product {
  padding: 40px 0 70px 0;
}
.inside-proleft {
  width: 24.35%;
  float: left;
}
.inside-proleft .list {
  text-transform: uppercase;
}
.inside-proleft .list .bt {
  color: #fff;
  height: 80px;
  line-height: 80px;
  padding-left: 20px;
  font-size: 40px;
  font-weight: normal;
  background: #00923f;
  border-top-right-radius: 30px;
}
.inside-proleft .list ul {

  border: solid 1px #c8cacb;
}
.inside-proleft .list ul li {
  padding: 25px 20px;
  border-bottom: solid 1px #c8cacb;
}
.inside-proleft .list ul li:last-child {
  border-bottom: 0;
}
.inside-proleft .list ul .yiji {
  height: 26px;
  overflow: hidden;
  position: relative;
  display: block;
  text-transform: uppercase;
}
.inside-proleft .list ul .yiji:after {
  content: "";
  width: 9px;
  height: 9px;
  right: 5px;
  top: 5px;
  z-index: 5;
  position: absolute;
  border-right: solid 2px #4b4341;
  border-bottom: solid 2px #4b4341;
  transform: rotate(45deg);
}
.inside-proleft .list ul .yiji a {
  color: #221815;
  display: block;
}
.inside-proleft .list ul .yiji:hover a,
.inside-proleft .list ul .cur a {
  color: #00923f;
}
.inside-proleft .list ul .yiji:hover:after,
.inside-proleft .list ul .cur:after {
  border-right: solid 2px #00923f;
  border-bottom: solid 2px #00923f;
}
.inside-proleft .list ul .erji {
  display: none;
  padding-top: 10px;
}


.inside-proleft .list ul .erji span {
  display: block;
  margin: 10px 0;
  position: relative;
}
.inside-proleft .list ul .erji span:after {
  content: "";
  width: 8px;
  height: 8px;
  right: 8px;
  top: 7px;
  z-index: 5;
  position: absolute;
  border-right: solid 1px #4b4341;
  border-top: solid 1px #4b4341;
  transform: rotate(45deg);
}
.inside-proleft .list ul .erji span:hover a,
.inside-proleft .list ul .erji .cur1 a {
  color: #00923f;
}
.inside-proleft .list ul .erji span:hover:after,
.inside-proleft .list ul .erji .cur1:after {
  border-right: solid 1px #00923f;
  border-top: solid 1px #00923f;
}
.inside-proleft .list2 {
  margin-top: 30px;
}
.inside-proleft .list2 .bt {
  color: #00923f;
  text-transform: uppercase;
  font-size: 18px;
}
.inside-proleft .list2 .bt img {
  float: right;
  margin-top: 5px;
}
.inside-proleft .list2 .pic {
  overflow: hidden;
  margin-top: 10px;
  position: relative;
}
.inside-proleft .list2 .pic img {
  transition: all 700ms ease;
}
.inside-proleft .list2 .pic:after {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.inside-proleft .list2 .pic:hover img {
  transform: scale(1.05);
}
.inside-proleft .list2 ul {
  padding-bottom: 10px;
  padding-left: 12px;
  padding-top: 10px;
  border-bottom: solid 1px #00923f;
}
.inside-proleft .list2 ul li {
  font-size: 12px;
  height: 26px;
  overflow: hidden;
  position: relative;
}
.inside-proleft .list2 ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 100%;
  border: solid 1px #909191;
}
.inside-proleft .list2 ul li:hover a {
  color: #00923f;
}
.inside-proleft .list2 ul li:hover:before {
  border-color: #00923f;
}
.inside-proleft .btn {
  margin-top: 20px;
}
.inside-proleft .btn a {
  padding: 0 13px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  border-radius: 30px;
  background: #00923f;
  display: inline-block;
}
.inside-proleft .btn img {
  background: #fff;
  border-radius: 100%;
  max-height: 20px;
  margin: 10px 0px 0 10px;
}
.inside-proleft .btn a:hover {
  background: #000;
}
@media (max-width: 1200px) {
  .inside-proleft {
    display: none;
  }
}
.inside-right {
  width: 73%;
  float: right;
  min-height: 400px;
}
.inside-right .list ul {
  margin: 0 -8px;
}
.inside-right .list li {
  padding: 0 8px;
  width: 25%;
  float: left;
  margin-bottom: 45px;
}
.inside-right .list li .pic {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.inside-right .list li .pic img {
  transition: all 700ms ease;
}
.inside-right .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.inside-right .list li .tit {
  padding-left: 20px;
  margin-top: 20px;
  color: #161617;
  font-size: 14px;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
}
.inside-right .list li .tit span {
  margin-left: 20px;
  display: inline-block;
  float: right;
}
.inside-right .list li .tit span img {
  border-radius: 100%;
  border: dashed 1px #bababb;
  max-height: 30px;
}
.inside-right .list li:hover .pic img {
  transform: scale(1.05);
}
.inside-right .list li:hover .tit {
  color: #00923f;
}
.inside-right .list li:hover .tit span img {
  border: dashed 1px #00923f;
}
@media (max-width: 1200px) {
  .inside-right {
    width: 100%;
    float: none;
    padding: 0 20px;
  }
  .inside-right .list li {
    width: 33.333%;
  }
}
@media (max-width: 640px) {
  .inside-right .list li {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .inside-right .list li {
    width: 100%;
  }
}
.inside-proshow {
  padding: 40px 0 70px 0;
  background:rgb(204,204,204,0.05);
  
}
.inside-proshow .nr1 .left {
  width: 50%;
  float: left;
}
.inside-proshow .nr1 .right {
  width: 50%;
  float: right;
  padding-left: 70px;
}
.inside-proshow .nr1 .right .item table tr{
	background-color: #fff;
}
.inside-proshow .nr1 .right .item table tr:nth-child(2n){
	background-color: #e3e3e3;  
}
.inside-proshow .nr1 .right .item table td{
	/*border: 1px solid #666;*/
    padding: 3px 5px;
}

.inside-proshow .nr1 .smimg {
  width: 18.1%;
  float: left;
}
.inside-proshow .nr1 .smimg span {
  display: block;
  position: relative;
  background: #fff;
  margin: 5px 0;
  cursor: pointer;
  border: solid 1px #e6e6e6;
}
.inside-proshow .nr1 .smimg span:after {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.inside-proshow .nr1 .smimg .slick-current {
  border-color: #00923f;
}
.inside-proshow .nr1 .smimg .slick-prev {
  width: 60px;
  height: 20px;
  border: 0;
  top: auto;
  margin-top: auto;
  bottom: -50px;
  left: 0;
  background: url(../images/ptop.png) no-repeat center center #e6e6e6;
}
.inside-proshow .nr1 .smimg .slick-next {
  width: 60px;
  height: 20px;
  border: 0;
  top: auto;
  margin-top: auto;
  bottom: -50px;
  right: 0;
  background: url(../images/pbot.png) no-repeat center center #00923f;
}
.inside-proshow .nr1 .bigimg {
  width: 79%;
  float: right;
  background: #fff;
  text-align: center;
  margin-top: 5px;
  border: solid 1px #e6e6e6;
}
.inside-proshow .nr1 .bigimg span {
  position: relative;
  display: block;
}
.inside-proshow .nr1 .bigimg span:after {
  content: "";
  display: block;
  padding-bottom: 80%;
}
.inside-proshow .nr1 h1 {
  font-weight: normal;
  padding-bottom: 10px;
  padding-top: 5px;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: solid 1px #ddd;
}
/*.inside-proshow .nr1 .item p {
  width: 50%;
  float: left;
  padding: 10px 10px 0 0;
}*/
.inside-proshow .nr1 .item p {
  width: 100%;
  line-height:30px;
}
.inside-proshow .nr1 .btn {
  margin-top: 30px;
}
.inside-proshow .nr1 .btn a {
  padding: 0 13px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  border-radius: 30px;
  background: #00923f;
  display: inline-block;
}
.inside-proshow .nr1 .btn img {
  background: #fff;
  border-radius: 100%;
  max-height: 20px;
  margin: 10px 0px 0 10px;
}
.inside-proshow .nr1 .btn a:hover {
  background: #000;
}
.inside-proshow .nr2 {
  padding-top: 50px;
}
.inside-proshow .nr2 .item {
  padding: 40px 0 30px 0;
  font-size: 14px;
  border-bottom: solid 1px #cccbcc;
}
.inside-proshow .bt {
  font-size: 26px;
  line-height: 36px;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.inside-proshow .tu {
  margin-top: 20px;
}
.inside-proshow .inside-product {
  padding-bottom: 0;
  padding-top: 80px;
}
.inside-proshow .inside-product .bt {
  text-align: center;
  padding-bottom: 40px;
}
.inside-proshow .inside-product .inside-right .list li .tit {
  height: 40px;
  line-height: 40px;
  font-size: 18px;
}
.inside-proshow .inside-product .inside-right .list li .tit span img {
  max-height: 40px;
}
@media (max-width: 1200px) {
  .inside-proshow {
    padding-bottom: 30px;
  }
  .inside-proshow .bt {
    font-size: 20px;
  }
  .inside-proshow .nr1 h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .inside-proshow .nr1 .smimg .slick-next,
  .inside-proshow .nr1 .smimg .slick-prev {
    bottom: -40px;
  }
  .inside-proshow .nr1 .left {
    width: 100%;
    float: none;
    overflow: hidden;
  }
  .inside-proshow .nr1 .right {
    width: 100%;
    float: none;
    padding: 30px 0 0 0;
  }
  .inside-proshow .nr2 {
    padding-top: 0;
  }
}
@media (max-width: 640px) {
  .inside-proshow .nr1 .item p {
    width: 100%;
    float: none;
  }
}
.inside-contact {
  padding: 40px 0 70px 0;
  background:rgb(204,204,204,0.05)
}

.inside-contact .bt {
  color: #221815;
  font-size: 30px;
  text-align:center;
}

.inside-contact .left {
  width: 47%;
  float: left;
}
.inside-contact .left .bt {
  font-size: 32px;
  color: #221815;
  line-height: 42px;
  font-weight: 700;
  text-align:left;
}
.inside-contact .left .txt {
  margin-top: 10px;
}
.inside-contact .left .box2 {
  padding-top: 60px;
}
.inside-contact .left .box2 li {
  width: 100%;
  color: #000;
  margin-bottom:20px;
  padding-right: 30px;
  position: relative;
}

.inside-contact .left .box2 li:first-child{margin-top:50px;}

.inside-contact .left .box2 li .tb {
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  line-height: 38px;
  text-align: center;
  position: absolute;
  background: #e8e7e5;
  border-radius: 100%;
}
.inside-contact .left .box2 li .tb .icon {
  width: 24px;
  height: 24px;
  fill: #000;
  vertical-align: middle;
}
.inside-contact .left .box2 li .info {
}
.inside-contact .left .box2 li .t1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.inside-contact .left .box2 li .t2{ line-height:34px;}
.inside-contact .left .box2 li .t2 span{ float:left; padding-top:2px;width:30px; text-align:center;}
.inside-contact .left .box2 li .t2 p{}
.inside-contact .left .box2 li .t2 a{ color:#000;}

@media (max-width: 1200px) {
  .inside-contact .left {
    width: 100%;
    float: none;
  }
  .inside-contact .left .bt {
    font-size: 20px;
    line-height: 30px;
  }
  
  .inside-contact .bt {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .inside-contact .left .box2 li {
    padding: 30px;
    margin-top: 20px;
    border: solid 1px #eee;
    width: 100%;
    float: none;
  }
  .inside-contact .left .box2 li .tb {
    left: 30px;
    top: 30px;
  }
  .inside-contact .left .box2 li .t1 {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.inside-contact .message {
  width: 50%;
  float: right;
  position: relative;
  min-height: 400px;
  border-radius: 10px;
  padding: 60px;
  color: #221815;
  margin-top:60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.inside-contact .message .t1 {
  font-size: 20px;
  font-weight: 700;
}
.inside-contact .message .t2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 20px;
}
.inside-contact .message ul {
  padding-top: 20px;
}
.inside-contact .message li {
  margin-top: 30px;
}
.inside-contact .message li label {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}
.inside-contact .message li input[type="text"],
.inside-contact .message li button[type="submit"],
.inside-contact .message li textarea {
  height: 48px;
  width: 100%;
  padding: 0 15px;
  line-height: 46px;
  background: #f7f8f8;
  font-size: 16px;
  color: #333;
  border: solid 1px #edeeee;
}
.inside-contact .message li textarea {
  height: 140px;
}
.inside-contact .message .info {
  padding: 15px 30px;
  text-align: center;
  border: solid 1px #000f23;
}
.inside-contact .message .info .bt span {
  color: #00923f;
}
.inside-contact .message .info .xz {
  padding-top: 10px;
}
.inside-contact .message .info .xz a {
  margin: 0 5px;
  display: inline-block;
  border: solid 1px #fff;
  cursor:pointer;
}
.inside-contact .message .info .xz a:hover,.inside-contact .message .info .xz a.cur {
  border-color: #00923f;
}
.inside-contact .message input[type="submit"],
.inside-contact .message button[type="submit"]
 {
  width: 100px;
  height: 40px;
  line-height: 39px;
  font-size: 18px;
  color: #fff;
  border: 0;
  font-family: arial;
  border-radius: 30px;
  background: #000;
}
.inside-contact .message input[type="submit"]:hover,
.inside-contact .message button[type="submit"]:hover
 {
  background: #00923f;
  cursor:pointer;
  color:#fff;
}
@media (max-width: 1200px) {
  .inside-contact .message {
    width: 100%;
    float: none;
    margin-top: 30px;
    padding: 30px 20px;
    border-radius: 0;
  }
  .inside-contact .message .t2 {
    font-size: 20px;
    line-height: 30px;
    margin-top: 0;
  }
}
.tk {
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.7);
}
.tk .close1 {
  right: 40px;
  top: 20px;
  position: absolute;
}
.tk .close1 img {
  max-height: 20px;
}
@media (max-width: 640px) {
  .tk .close1 {
    right: 20px;
    top: 10px;
  }
}
.message1 {
  width: 460px;
  top: 50%;
  background: #fff;
  margin: 0 auto;
  transform: translateY(-45%);
  position: relative;
  min-height: 200px;
  border-radius: 10px;
  padding: 30px 40px;
  color: #221815;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.message1 .t1 {
  font-size: 20px;
  font-weight: 700;
}
.message1 .t2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 0px;
}
.message1 li:first-child {
  margin-top: 0;
}
.message1 li {
  margin-top: 10px;
}
.message1 li label {
  font-size: 14px;
  display: block;
}
.message1 li input[type="text"],
.message1 li textarea {
  height: 40px;
  width: 100%;
  padding: 0 15px;
  line-height: 38px;
  background: #f7f8f8;
  font-size: 16px;
  color: #333;
  border: solid 1px #edeeee;
}
.message1 li textarea {
  height: 80px;
}
.message1 .info {
  padding: 10px;
  text-align: center;
  border: solid 1px #000f23;
}
.message1 .info .bt {
  font-size: 14px;
}
.message1 .info .bt span {
  color: #00923f;
}
.message1 .info .xz {
  padding-top: 10px;
}
.message1 .info .xz a {
  margin: 0 5px;
  display: inline-block;
  border: solid 1px #fff;
  cursor:pointer;
}
.message1 .info .xz a:hover,.message1 .info .xz a.cur {
  border-color: #00923f;
}
.message1 .info .xz img {
  max-height: 30px;
}
.message1 input[type="submit"] {
  width: 70px;
  height: 30px;
  line-height: 29px;
  font-size: 14px;
  color: #fff;
  border: 0;
  font-family: arial;
  border-radius: 30px;
  background: #000;
}
.message1 input[type="submit"]:hover {
  background: #00923f;
}
@media (max-width: 640px) {
  .message1 {
    width: 300px;
    padding: 15px;
  }
}
#mapContainer {
  width: 100%;
  height: 600px;
}

#mapContainer img{ max-width:none;}

@media (max-width: 1200px) {
  #mapContainer {
    height: 200px;
  }
}
.inside-about-4 {
  padding: 40px 0 0 0;
}
.inside-about-4 .index-title img {
  margin-right: 20px;
  vertical-align: top;
  margin-top: -5px;
}
.inside-about-4 .index-title .tit {
  line-height: 77px;
}
.inside-about-4 .bt {
  font-size: 20px;
  color: #221815;
  font-weight: 700;
  padding: 70px 0 20px 0;
  text-transform: uppercase;
}
.inside-about-4 .tu {
  text-align: center;
}

.inside-about-4 .xz-pics{
	width:33.3333%;	
	float: left;
	overflow:hidden;
}

.inside-about-4 .xz-pics .pic {
    display: block;
    position: relative;
}

.inside-about-4 .xz-pics .pic:after {
    content: "";
    display: block;
    padding-bottom: 118%;
}

.inside-about-4 .xz-pics .tit {
    color: #000;
    height: 26px;
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}


.inside-about-4 .xz-pics .slick-prev, .inside-about-4 .xz-pics .slick-next {
    width: 36px;
    height: 36px;
    margin-top: -15px;
    border-radius: 100%;
    opacity: 0.5;
    background-size: 20px;
    border: dashed 1px #000;
}

.inside-about-4 .xz-pics .slick-prev {
    left: 50px;
    background: url(../images/arrow-4.png) no-repeat center center;
    transform: rotate(180deg);
}

.inside-about-4 .xz-pics .slick-next {
    right: 50px;
    background: url(../images/arrow-4.png) no-repeat center center;
}

.inside-about-4 .xz-pics .slick-prev:hover {
  opacity: 1;
  border-color: #00923f;
  background: url(../images/arrow.png) no-repeat center center #00923f;
}

.inside-about-4 .xz-pics .slick-next:hover {
  opacity: 1;
  border-color: #00923f;
  background: url(../images/arrow.png) no-repeat center center #00923f;
}

.inside-lc {
  padding: 100px 0 70px 0;
  min-height: 688px;
  background: url(../images/abg.jpg) no-repeat center bottom;
}
.inside-lc .index-title img {
  margin-right: 20px;
  vertical-align: top;
  margin-top: -5px;
}
.inside-lc .index-title .tit {
  line-height: 77px;
}
.inside-lc .item {
  position: relative;
}

.inside-lc .item-ph{display:none;}

.inside-lc .lc {
  top: 0;
  left: 0;
  position: absolute;
}
.inside-lc ul {
  z-index: 2;
  position: relative;
  margin-top: 160px;
}
.inside-lc ul li {
  width: 19.5%;
  color: #999;
  display: inline-block;
  text-align: center;
}
.inside-lc ul li .num {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  font-size: 72px;
  line-height: 110px;
  background: #e1e5e8;
  border-radius: 100%;
  border: solid 5px #f3f5f6;
  transition: all 700ms ease;
}
.inside-lc ul li .tit {
  margin-top: 20px;
  height: 26px;
  overflow: hidden;
}
.inside-lc ul li .txt {
  line-height: 20px;
  margin-top: 10px;
  height: 60px;
  overflow: hidden;
  opacity: 0;
}
.inside-lc ul li:hover {
  color: #000;
}
.inside-lc ul li:hover .num {
  color: #fff;
  border-color: #fecca9;
  background: #00923f;
}
.inside-lc ul li:hover .tit {
  color: #00923f;
}
.inside-lc ul li:hover .txt {
  opacity: 1;
}
.inside-lc .list2 {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
.inside-lc .list2 li {
  width: 33.333%;
}
.inside-lc .list2 li:last-child .num {
  font-size: 14px;
  color: #00923f;
  line-height: 20px;
  padding-top: 30px;
}
.inside-lc .list2 li:last-child .num {
  background: #e1e5e8;
  border: solid 5px #f3f5f6;
}
@media (max-width: 1600px) {
  .inside-lc ul {
    margin-top: 60px;
  }
  .inside-lc .list2 {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .inside-lc {
    padding: 60px 0;
  }
  .inside-lc ul {
    margin-top: 30px;
  }
  .inside-lc ul li {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .inside-lc ul li .num {
    font-size: 30px;
    border-radius: 0;
  }
  .inside-lc ul li .txt {
    opacity: 1;
    display: none;
  }
  .inside-lc .lc {
    display: none;
  }
  
  .inside-lc .item{
	  display: none;
  }
  
  .inside-lc .item-ph{
	  display: block;
  }
}
@media (max-width: 640px) {
  .inside-lc ul li {
    float: left;
    width: 50%;
  }
  .inside-lc .list2 {
    display: block;
  }
  .inside-lc .list2 li {
    float: left;
    width: 50%;
  }
}
.inside-about-2 {
  padding: 40px 0 70px 0;
}
.inside-about-2 .nr1 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 70px;
}
.inside-about-2 .nr1 .left {
  width: 45%;
  float: left;
}
.inside-about-2 .nr1 .left ul {
  padding-left: 50px;
}
.inside-about-2 .nr1 .left li:hover span {
  background: #f8f8f8;
}
.inside-about-2 .nr1 .left li {
  margin-top: 50px;
  position: relative;
}
.inside-about-2 .nr1 .left li span {
  top: 0;
  left: 0;
  position: absolute;
  background: #ededeb;
  transition: all 700ms ease;
}
.inside-about-2 .nr1 .left li span img {
  transition: all 700ms ease;
}
.inside-about-2 .nr1 .left li .txtbox {
  padding-left: 110px;
}
.inside-about-2 .nr1 .left li .tit {
  font-size: 20px;
  color: #332c2b;
}
.inside-about-2 .nr1 .left li .txt {
  margin-top: 10px;
  font-size: 18px;
}
.inside-about-2 .nr1 .video {
  width: 52%;
  float: right;
  position: relative;
  
}
.inside-about-2 .nr1 .video img{

	
	}
.inside-about-2 .nr1 .video .vbtn {
  top: 50%;
  left: 50%;
  z-index: 1;
  position: absolute;
  transform: translate(-50%, -50%);
}
.inside-about-2 .nr1 .video .vbtn .icon {
  fill: #fff;
  width: 100px;
  height: 100px;
}


@media (max-width: 1200px) {
  .inside-about-2 .nr1 .left {
    width: 100%;
    float: none;
    padding: 30px;
    padding-top: 10px;
  }
  .inside-about-2 .nr1 .left ul {
    padding-left: 0;
  }
  .inside-about-2 .nr1 .left li {
    margin-top: 20px;
  }
  .inside-about-2 .nr1 .left li .txt {
    font-size: 14px;
    line-height: 20px;
  }
  .inside-about-2 .nr1 .left li .txtbox {
    padding-left: 80px;
  }
  .inside-about-2 .nr1 .video {
    width: 100%;
    float: none;
  }
}
.inside-about-2 .nr2 {
  display: flex;
  margin-top: 80px;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
}
.inside-about-2 .nr2 .left {
  width: 68%;
  float: left;
  padding: 50px;
  border-radius: 5px;
  border: solid 2px #dcb241;
}
.inside-about-2 .nr2 .right {
  width: 29%;
  float: right;
  padding: 20px;
  margin-left: 40px;
  text-align: center;
  border-radius: 5px;
  border: solid 2px #00923f;
}
.inside-about-2 .nr2 .right .tu {
  margin-top: 20px;
  border-radius: 5px;
  border: solid 2px #00923f;
}
.inside-about-2 .nr2 .right .tu img {
  border-radius: 5px;
}
.inside-about-2 .nr2 .right .tu:first-child {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .inside-about-2 .nr2 {
    margin-top: 40px;
  }
  .inside-about-2 .nr2 .left {
    border-width: 1px;
  }
  .inside-about-2 .nr2 .right {
    margin-left: 10px;
    padding: 10px;
    border-width: 1px;
  }
}
.inside-about-2 .nr3 {
  color: #221815;
  padding: 40px 0 0px 0;
  text-align: center;
  font-size: 20px;
  max-width: 1290px;
}
@media (max-width: 1200px) {
  .inside-about-2 .nr3 {
    font-size: 16px;
  }
}
.inside-about-2 .nr4 {
  flex-wrap: nowrap;
  display: flex;
  margin-top: 70px;
  width: 100%;
  justify-content: space-between;
}
.inside-about-2 .nr4 .left {
  width: 68%;
  float: left;
  padding: 30px;
  border-radius: 5px;
  border: solid 2px #00923f;
}
.inside-about-2 .nr4 .item:first-child {
  margin-top: 0;
}
.inside-about-2 .nr4 .item {
  padding: 30px;
  text-align: center;
  margin-top: 30px;
  border-radius: 5px;
  background: #00923f;
}
.inside-about-2 .nr4 .item .bt {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.inside-about-2 .nr4 .item .tag ul {
  margin: 0 -25px;
}
.inside-about-2 .nr4 .item .tag li {
  width: 25%;
  float: left;
  padding: 0 25px;
  text-align: center;
  margin-top: 20px;
}
.inside-about-2 .nr4 .item .tag li span {
  display: block;
  background: #fff;
  height: 54px;
  color: #221815;
  font-size: 20px;
  line-height: 54px;
  overflow: hidden;
  border-radius: 5px;
}
.inside-about-2 .nr4 .item .tag-2 li {
  width: 20%;
}
.inside-about-2 .nr4 .item .tag-3 li {
  width: 16.66667%;
}
.inside-about-2 .nr4 .item .tu {
  margin-top: 20px;
}
.inside-about-2 .nr4 .item .tu span {
  display: inline-block;
  padding: 0 12px;
}
.inside-about-2 .nr4 .item .tu span img {
  max-height: 104px;
}

@media (max-width:1440px){
	.inside-about-2 .nr4 .item .tu span img{
		max-height: 80px;
	}
	
}

.inside-about-2 .nr4 .right {
  width: 29%;
  float: right;
  padding: 20px;
  margin-left: 40px;
  padding-top: 30px;
  text-align: center;
  border-radius: 5px;
  border: solid 2px #00923f;
}
.inside-about-2 .nr4 .right .tu {
  margin-top: 20px;
}
.inside-about-2 .nr4 .right .tu:first-child {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .inside-about-2 .nr4 {
    margin-top: 40px;
    display: block;
  }
  .inside-about-2 .nr4 .left {
    width: 100%;
    float: none;
    border-width: 1px;
    padding: 20px;
  }
  .inside-about-2 .nr4 .left .item {
    overflow: hidden;
    margin-top: 20px;
  }
  .inside-about-2 .nr4 .left .tag ul {
    margin: 0 -5px;
  }
  .inside-about-2 .nr4 .left .tag li {
    font-size: 14px;
    padding: 0 5px;
    width: 50%!important;
  }
  .inside-about-2 .nr4 .left .tag li span {
    font-size: 16px;
  }
  .inside-about-2 .nr4 .left .tu span {
    padding: 5px;
  }
  .inside-about-2 .nr4 .right {
    width: 100%;
    float: none;
    overflow: hidden;
    margin-left: 0;
    margin-top: 20px;
  }
  .inside-about-2 .nr4 .right .tu {
    width: 50%;
    float: left;
    padding: 0 5px;
  }
}
.inside-about-2 .nr5 {
  margin-top: 80px;
}
.inside-about-2 .nr5 ul {
  margin: 0 -15px;
}
.inside-about-2 .nr5 li {
  padding: 0 15px;
}
.inside-about-2 .nr5 li span {
  display: block;
  padding: 20px;
  position: relative;
  border: solid 2px #dddddd;
}
.inside-about-2 .nr5 li span:after {
  content: "";
  display: block;
  padding-bottom: 156%;
}

.inside-about-2 .nr6 li span:after {
  content: "";
  display: block;
  padding-bottom: 62% !important;
}

.inside-about-2 .nr5 li .tit {
  color: #000;
  height: 26px;
  overflow: hidden;
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
}
.inside-about-2 .nr5 .slick-prev,
.inside-about-2 .nr5 .slick-next {
  width: 36px;
  height: 36px;
  margin-top: -15px;
  border-radius: 100%;
  opacity: 0.3;
  background-size: 20px;
  border: dashed 1px #000;
}
.inside-about-2 .nr5 .slick-prev {
  left: -60px;
  background: url(../images/arrow-4.png) no-repeat center center;
  transform: rotate(180deg);
}
.inside-about-2 .nr5 .slick-prev:hover {
  opacity: 1;
  border-color: #00923f;
  background: url(../images/arrow.png) no-repeat center center #00923f;
}
.inside-about-2 .nr5 .slick-next {
  right: -60px;
  background: url(../images/arrow-4.png) no-repeat center center;
}
.inside-about-2 .nr5 .slick-next:hover {
  opacity: 1;
  border-color: #00923f;
  background: url(../images/arrow.png) no-repeat center center #00923f;
}

@media (max-width:1400px){
	.inside-about-2 .nr5 .slick-prev,
	.inside-about-2 .nr5 .slick-next {
		display:none !important;
	}
}

@media (max-width: 640px) {
  .inside-about-2 .nr5 {
    margin-top: 40px;
  }
  .inside-about-2 .nr5 ul {
    margin: 0;
  }
  .inside-about-2 .nr5 li {
    padding: 0 5px;
  }
  .inside-about-2 .nr5 li .tit {
    font-size: 14px;
    margin-top: 10px;
  }
  .inside-about-2 .nr5 .slick-prev {
    left: 20px;
	display:block !important;
  }
  .inside-about-2 .nr5 .slick-next {
    right: 20px;
	display:block !important;
  }
}
.inside-about-2 .nr7 {
  padding-top: 90px;
}
.inside-about-2 .nr7 .left {
  width: 50%;
  float: left;
}
.inside-about-2 .nr7 .left .txt {
  padding: 50px 70px;
  background: #fff;
  color: #221815;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.inside-about-2 .nr7 .right {
  width: 50%;
  float: left;
  padding-top: 15px;
  padding-left: 50px;
}
.inside-about-2 .nr7 .right li {
  min-height: 200px;
  position: relative;
}
.inside-about-2 .nr7 .right li span {
  top: 0;
  left: 0;
  position: absolute;
}
.inside-about-2 .nr7 .right li span img {
  border-radius: 100%;
  border: solid 3px #00923f;
  transition: all 500ms ease;
}
.inside-about-2 .nr7 .right li span .icoh {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
}
.inside-about-2 .nr7 .right li .txtbox {
  color: #333;
  padding-top: 10px;
  padding-left: 180px;
}
.inside-about-2 .nr7 .right li .txtbox .t1 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.inside-about-2 .nr7 .right li .txtbox .t2 {
  margin-top: 15px;
  font-size: 18px;
}
.inside-about-2 .nr7 .right li:hover span img {
  background: #00923f;
}
.inside-about-2 .nr7 .right li:hover .ico {
  opacity: 0;
}
.inside-about-2 .nr7 .right li:hover .icoh {
  opacity: 1;
}
@media (max-width: 1600px) {
  .inside-about-2 .nr7 .right li .txtbox {
    padding-top: 0;
    padding-left: 130px;
  }
  .inside-about-2 .nr7 .right li span img {
    max-height: 100px;
  }
}
@media (max-width: 1200px) {
  .inside-about-2 .nr7 {
    padding-top: 20px;
  }
  .inside-about-2 .nr7 .left {
    width: 100%;
    float: none;
  }
  .inside-about-2 .nr7 .left .txt {
    font-size: 14px;
    padding: 20px;
  }
  .inside-about-2 .nr7 .right {
    width: 100%;
    float: none;
    padding-left: 0;
    margin-top: 30px;
  }
  .inside-about-2 .nr7 .right li {
    min-height: 120px;
    margin-bottom: 30px;
  }
  .inside-about-2 .nr7 .right li span img {
    max-height: 67px;
    border-width: 1px;
  }
  .inside-about-2 .nr7 .right li .txtbox {
    padding-left: 100px;
  }
  .inside-about-2 .nr7 .right li .txtbox .t1 {
    font-size: 16px;
  }
  .inside-about-2 .nr7 .right li .txtbox .t2 {
    font-size: 14px;
    margin-top: 0;
  }
}
.inside-about-2 .nr8 {
  padding: 110px 0;
}
.inside-about-2 .nr8 .list {
  margin-top: 80px;
  position: relative;
}
.inside-about-2 .nr8 .box {
  padding-left: 20px;
  position: relative;
}
@media (max-width: 1200px) {
  .inside-about-2 .nr8 .box {
    padding-left: 0;
  }
}
.inside-about-2 .nr8 .txtbox {
  width: 50%;
  float: left;
  color: #000;
  padding: 50px 100px;
  padding-bottom: 200px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.inside-about-2 .nr8 .txtbox .logo {
  color: #f7f7f7;
  font-size: 100px;
  line-height: 100px;
  font-weight: 700;
  letter-spacing: -10px;
  text-align: center;
  text-transform: uppercase;
}
.inside-about-2 .nr8 .txtbox .tit {
  color: #3f3f3f;
  font-size: 32px;
  line-height: 42px;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-top: -30px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.inside-about-2 .nr8 .txtbox .tit:after {
  content: "";
  height: 1px;
  width: 40px;
  left: 50%;
  bottom: 0;
  position: absolute;
  background: #3f3f3f;
  transform: translateX(-50%);
}
.inside-about-2 .nr8 .txtbox .txt {
  text-transform: uppercase;
  line-height: 30px;
  overflow: hidden;
}
.inside-about-2 .nr8 .txtbox .txt span {
  color: #00923f;
}
.inside-about-2 .nr8 .picitem {
  width: 50%;
  float: right;
  z-index: 2;
  position: relative;
}
.inside-about-2 .nr8 .slick-dots {
  bottom: 60px;
  width: 50%;
  text-align: center;
}
.inside-about-2 .nr8 .slick-dots li {
  margin: 0 5px;
}
.inside-about-2 .nr8 .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #00923f;
  transition: all 334ms ease;
}
.inside-about-2 .nr8 .slick-dots li.slick-active button {
  width: 16px;
  height: 16px;
}
@media (max-width: 1600px) {
  .inside-about-2 .nr8 .txtbox .logo {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1200px) {
  .inside-about-2 .nr8 {
    padding: 40px 0;
  }
  .inside-about-2 .nr8 .list {
    margin-top: 0;
  }
  .inside-about-2 .nr8 .txtbox {
    width: 100%;
    float: none;
    top: auto;
    left: auto;
    padding: 30px 0;
    box-shadow: none;
    position: relative;
    transform: translate(0);
  }
  .inside-about-2 .nr8 .txtbox .logo {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 1px;
  }
  .inside-about-2 .nr8 .txtbox .tit {
    font-size: 20px;
    line-height: 30px;
  }
  .inside-about-2 .nr8 .picitem {
    width: 100%;
    float: none;
  }
}
.inside-about-2 .nr9 {
  margin-bottom: 70px;
  position: relative;
}
.inside-about-2 .nr9:after {
  content: "";
  top: 50%;
  right: -30px;
  width: 95px;
  height: 121px;
  z-index: 5;
  position: absolute;
  transform: translateY(-7%);
  background: url(../images/yj.png);
}
.inside-about-2 .nr9 ul {
  margin-top: 65px;
  overflow: hidden;
  position: relative;
}
.inside-about-2 .nr9 li {
  width: 12.5%;
  float: left;
  z-index: 3;
  position: relative;
  text-align: center;
}
.inside-about-2 .nr9 li:after {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 45px;
  position: absolute;
  background: #00923f;
}
.inside-about-2 .nr9 li .ico {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 2;
  opacity: 0;
  text-align: center;
  position: absolute;
  transform: translateY(-100%);
}
.inside-about-2 .nr9 li .tu {
  position: relative;
}
.inside-about-2 .nr9 li .tu:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.inside-about-2 .nr9 li .tu:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  transition: all 500ms ease;
}
.inside-about-2 .nr9 li .tit {
  margin-top: 30px;
  color: #00923f;
  font-weight: 700;
  position: relative;
}
.inside-about-2 .nr9 li .tit:after {
  content: "";
  width: 16px;
  height: 16px;
  top: -29px;
  left: 50%;
  z-index: 5;
  background: #fff;
  margin-left: -8px;
  border-radius: 100%;
  position: absolute;
  border: solid 1px #00923f;
}
.inside-about-2 .nr9 li:hover .ico {
  opacity: 1;
}
.inside-about-2 .nr9 li:hover .tu:before {
  opacity: 1;
}
@media (max-width: 1600px) {
  .inside-about-2 .nr9:after {
    transform: translateY(-11%);
  }
}
@media (max-width: 1200px) {
  .inside-about-2 .nr9:after {
    display: none;
  }
}
@media (max-width: 640px) {
  .inside-about-2 .nr9 ul {
    margin-top: 30px;
  }
  .inside-about-2 .nr9 li {
    width: 33.3333%;
  }
  .inside-about-2 .nr9 .list2 {
    display: block;
  }
}
.inside-about-2 .nr10 .left {
  padding-bottom: 28px;
  padding-top: 28px;
}
.inside-about-2 .nr10 .left .tit {
  color: #221815;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}
.inside-about-2 .nr10 .right {
  margin-left: 0;
  background: #00923f;
}
@media (max-width: 640px) {
  .inside-about-2 .nr10 {
    display: block;
  }
  .inside-about-2 .nr10 .left {
    display: block;
    width: 100%;
  }
  .inside-about-2 .nr10 .right {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
}
.inside-about-2 .list2 {
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.inside-about-2 .list2 li:after {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: 9px;
  bottom: auto;
  position: absolute;
  background: #00923f;
}
.inside-about-2 .list2 li .ico {
  transform: translateY(10%);
}
.inside-about-3 .nr1 {
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  .inside-about-3 .nr1 {
    padding-bottom: 40px;
  }
}
.inside-about-3 .nr1 .bt {
  font-size: 200px;
  line-height: 200px;
  text-align: center;
  color: #f6f6f6;
}
@media (max-width: 1200px) {
  .inside-about-3 .nr1 .bt {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 640px) {
  .inside-about-3 .nr1 .bt {
    font-size: 50px;
    line-height: 60px;
    height: 100px;
  }
}
.inside-about-3 .nr1 .txt {
  max-width: 800px;
  color: #2f2f2f;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 640px) {
  .inside-about-3 .nr1 .txt {
    font-size: 20px;
    line-height: 30px;
    margin-top: 40px;
  }
}
.inside-about-3 .nr1 ul {
  z-index: 6;
  margin-top: -60px;
  position: relative;
}
.inside-about-3 .nr1 li {
  width: 25%;
  float: left;
  overflow: hidden;
  position: relative;
}
.inside-about-3 .nr1 li img {
  transition: all 700ms ease;
}
.inside-about-3 .nr1 li:after {
  content: "";
  display: block;
  padding-bottom: 71%;
}
.inside-about-3 .nr1 li:hover img {
  transform: scale(1.05);
}
@media (max-width: 640px) {
  .inside-about-3 .nr1 li {
    width: 50%;
  }
}
.inside-about-3 .nr2 {
  background: #f4f4f4;
  position: relative;
  min-height: 750px;
  padding: 80px 0 130px 0;
}
@media (max-width: 1200px) {
  .inside-about-3 .nr2 {
    min-height: auto;
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .inside-about-3 .nr2 {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.inside-about-3 .nr2 .tu {
  top: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  position: absolute;
}
@media (max-width: 1200px) {
  .inside-about-3 .nr2 .tu {
    display: none;
  }
}
.inside-about-3 .nr2 .bt {
  color: #fff;
  z-index: 2;
  padding: 50px 0;
  text-align: center;
  position: relative;
}
.inside-about-3 .nr2 .bt .t1 {
  font-size: 32px;
  line-height: 42px;
}
.inside-about-3 .nr2 .bt .t2 {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .inside-about-3 .nr2 .bt {
    color: #000;
    padding: 0 0 40px 0;
  }
}
.inside-about-3 .nr2 .list {
  overflow: hidden;
}
.inside-about-3 .nr2 .list ul {
  margin: 0 -15px;
  margin-bottom: 120px;
}
.inside-about-3 .nr2 .list li {
  padding: 0 15px;
}
.inside-about-3 .nr2 .list li .item {
  height: 290px;
  padding: 50px;
  background: #fff;
  padding-top: 80px;
  border-radius: 20px;
  transition: all 700ms ease;
  position: relative;
}
.inside-about-3 .nr2 .list li .item:before {
  content: "";
  width: 39px;
  height: 36px;
  top: 20px;
  left: 20px;
  position: absolute;
  background: url(../images/dian.png) no-repeat top left;
}
.inside-about-3 .nr2 .list li .item:after {
  content: "";
  width: 39px;
  height: 36px;
  bottom: 20px;
  right: 20px;
  position: absolute;
  background: url(../images/dian2.png) no-repeat top left;
}
@media (max-width: 640px) {
  .inside-about-3 .nr2 .list li .item {
    border-radius: 0;
  }
}
.inside-about-3 .nr2 .list li .itemL:hover {
  background: rgba(255, 255, 255, 0.8);
}
.inside-about-3 .nr2 .list li .tit {
  color: #000;
  font-size: 20px;
  line-height: 30px;
}
.inside-about-3 .nr2 .list li .txt {
  color: #585858;
  margin-top: 10px;
  font-size: 18px;
  height: 78px;
  overflow: auto;
}

@media (max-width:1366px){
	.inside-about-3 .nr2 .list li .txt {
	  font-size: 16px;
	}	
}

.inside-about-3 .nr2 .list .slick-prev,
.inside-about-3 .nr2 .list .slick-next {
  width: 110px;
  height: 50px;
  border: 0;
  top: auto;
  margin-top: auto;
  bottom: -110px;
}
.inside-about-3 .nr2 .list .slick-prev {
  left: 45%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background: url(../images/j1.png) no-repeat center center #00923f;
}
.inside-about-3 .nr2 .list .slick-next {
  right: 45%;
  border-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: url(../images/j1-02.png) no-repeat center center #00923f;
}
@media (max-width: 1600px) {
  .inside-about-3 .nr2 .list .slick-prev {
    left: 44%;
  }
  .inside-about-3 .nr2 .list .slick-next {
    right: 44%;
  }
}

@media (max-width: 1366px) {
  .inside-about-3 .nr2 .list .slick-prev {
    left: 43%;
  }
  .inside-about-3 .nr2 .list .slick-next {
    right: 43%;
  }
}

@media (max-width: 1200px) {
  .inside-about-3 .nr2 .list .slick-prev,
  .inside-about-3 .nr2 .list .slick-next {
    width: 48px;
    bottom: -80px;
    border-radius: 0;
  }
  .inside-about-3 .nr2 .list .slick-prev {
    left: 35%;
  }
  .inside-about-3 .nr2 .list .slick-next {
    right: 35%;
  }
}
.phone-nav .box::-webkit-scrollbar {
  width: 2px;
  height: 1px;
}
.phone-nav .box::-webkit-scrollbar-thumb {
  background: #000;
  width: 2px;
}
.phone-nav .box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.phone-nav {
  top: 0;
  z-index: 1999;
  position: fixed;
  right: -150%;
  width: 60%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.phone-nav .close {
  position: absolute;
  z-index: 99;
  top: 40px;
  right: 20px;
}
.phone-nav .close img {
  max-height: 40px;
}
.phone-nav .box {
  height: 100%;
  overflow-y: auto;
  padding: 0px 20px 0 20px;
  -webkit-overflow-scrolling: touch;
  background: url(../images/bg-2.png) no-repeat bottom center #ffffff;
}
.phone-nav .list-menu {
  padding-top: 100px;
  background: url(../images/pbg.png) no-repeat top center rgba(255, 255, 255, 0.5);
}
.phone-nav .list-menu li {
  font-size: 16px;
  position: relative;
  border-bottom: solid 1px rgba(179, 179, 179, 0.3);
}
.phone-nav .list-menu li h3 {
  color: #00923f;
  padding-left: 20px;
  font-size: 16px;
  margin: 20px 0 10px 0;
}
.phone-nav .list-menu li a {
  padding: 15px 20px;
  display: block;
  position: relative;
  color: #000;
}
.phone-nav .list-menu li a span {
  z-index: 9;
  display: inline-block;
  position: relative;
}
.phone-nav .list-menu li i {
  position: absolute;
  right: 0;
  top: 10px;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 30px;
  display: block;
  font-style: inherit;
  cursor: pointer;
}
.phone-nav .list-menu li i:after {
  content: "+";
  color: #666;
  font-size: 28px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  text-align: center;
  line-height: 38px;
  font-family: arial;
}
.phone-nav .list-menu .submenu {
  display: none;
  padding-bottom: 20px;
}
.phone-nav .list-menu .submenu a {
  color: #555;
  font-size: 14px;
  padding: 0px 0px 0 20px;
}
.header-search .pull-right {
  width: 28px;
  height: 28px;
}
.header-search .pull-right a {
  display: block;
  width: 28px;
  height: 28px;
  text-align: center;
  background: url("../images/search.png") no-repeat center center;
  background-size: 16px;
}
.header .header-search .search {
  z-index: 9;
  position: relative;
}
.header-search .search .btn-search-max {
  z-index: 2;
  -webkit-transition: All 0.2s ease-in-out;
  transition: All 0.2s ease-in-out;
  position: relative;
}
.header-search .search .btn-search-max * {
  display: inline-block;
  vertical-align: middle;
}
.header-search .search .search-main {
  top: 20px;
  right: -20px;
  z-index: 9;
  width: 340px;
  display: none;
  padding: 20px;
  position: absolute;
}
@media (max-width: 640px) {
  .header-search .search .search-main {
    right: -140px;
    width: 280px;
  }
}
.header-search .search-container {
  background-color: #fff;
  padding-left: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.header-search .search-container .form-control {
  text-align: left;
  border: 0;
  width: 100%;
  font-size: 14px;
  color: #999;
  line-height: 20px;
  height: 42px;
  vertical-align: top;
  padding: 10px 86px 10px 10px;
  -webkit-appearance: none;
  background-color: #ffffff;
}
.header-search .search-container .btn {
  top: 0;
  right: 0;
  color: #043b83;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  position: absolute;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  background: url(../images/search.png) no-repeat center center #00923f;
  background-size: 20px;
}
.header-search #search-closed {
  right: 0;
  top: 15px;
  max-width: 30px;
  position: absolute;
  cursor: pointer;
}
.pro3_bottom {
  text-align: center;
  padding: 30px 0 0 0;
  color: #666;
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}
.pro3_bottom a {
  display: inline-block;
  color: #666;
  font-size: 14px;
  border: 1px solid #d9d9d9;
  text-align: center;
  text-transform: capitalize;
  padding: 0 10px;
  line-height: 28px;
  background-color: #fff;
  margin: 0 2px 2px 2px;
}
.pro3_bottom a:hover {
  color: #fff;
  background-color: #00923f;
  border: 1px solid #00923f;
}
.pro3_bottom a.active {
  display: inline-block;
  color: #fff;
  background-color: #00923f;
  border: 1px solid #00923f;
}
.pro3_bottom span {
  color: #898989;
  font-size: 14px;
}
.pro3_bottom span input {
  color: #666;
  border: 1px solid #d9d9d9;
  text-align: center;
  height: 28px;
  line-height: 28px;
  background-color: #fff;
  margin: 0 10px;
  width: 50px;
}
.pro3_bottom button.zxfokbtn {
  display: inline-block;
  background: #fff;
  color: #282828;
  margin: 0 10px;
  width: 50px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #d9d9d9;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .pro3_bottom a {
    margin: 0;
    padding: 0 3px;
    font-size: 12px;
  }
  .pro3_bottom span {
    display: none;
  }
  .pro3_bottom button.zxfokbtn {
    display: none;
  }
}



.inside-faq {
  padding-bottom: 110px;
  position: relative;
}
.inside-faq .sd-top {
  right: 0;
  top: 0;
  position: absolute;
}
.inside-faq .sd-bot {
  bottom: 0;
  left: 0;
  position: absolute;
}
.inside-faq .nr {
  padding-top: 60px;
}
.inside-faq .bt {
  color: #221815;
  font-size: 30px;
  text-align: center;
}
.inside-faq .box {
  color: #221815;
  margin-top: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border: solid 1px #e6e7e9;
}
.inside-faq .box:first-child {
  margin-top: 0;
}
.inside-faq #open:after {
  transform: rotateX(-180deg);
}
.inside-faq .list_dt {
  padding: 0 40px;
  height: 95px;
  line-height: 95px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
  padding-right: 100px;
  position: relative;
  text-transform: uppercase;
}
.inside-faq .list_dt:after {
  width: 90px;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  position: absolute;
  transition: all 500ms ease;
  background: url(../images/arrow-top.png) no-repeat center center #00923f;
}
.inside-faq .list_dd {
  padding: 40px;
  display: none;
  padding-top: 30px;
}
.inside-faq .nr2 {
  padding-top: 60px;
}
.inside-faq .nr2 ul {
  margin: 0 -14px;
  margin-top: 60px;
}
.inside-faq .nr2 li {
  width: 50%;
  float: left;
  padding: 0 14px;
}
.inside-faq .nr2 .pic {
  position: relative;
}
.inside-faq .nr2 .pic:before {
  top: 0;
  left: 0;
  z-index: 3;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
}
.inside-faq .nr2 .item {
  position: relative;
}
.inside-faq .nr2 .vbtn {
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  position: absolute;
}
.inside-faq .nr2 .vbtn .icon {
  width: 100px;
  height: 100px;
  fill: #fff;
}
.inside-faq .nr3 {
  color: #221815;
  padding-top: 60px;
}
.inside-faq .nr3 .bt {
  margin-bottom: 50px;
}
.inside-faq .nr3 .pic {
  width: 49%;
  float: right;
}
.inside-faq .nr3 .wz {
  width: 48%;
  float: left;
  padding-top: 60px;
}
@media (max-width: 1200px) {
  .inside-faq {
    padding-bottom: 50px;
  }
  .inside-faq .bt {
    font-size: 20px;
  }
  .inside-faq .list_dt {
    padding: 0 15px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    padding-right:45px;
   overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .inside-faq .list_dt:after {
    width: 40px;
  }
  .inside-faq .list_dd {
    padding: 20px;
    line-height: 20px;
  }
  .inside-faq .nr2 ul {
    margin-top: 30px;
  }
  .inside-faq .nr2 .vbtn .icon {
    width: 40px;
    height: 40px;
  }
  .inside-faq .nr3 {
    padding-top: 30px;
  }
  .inside-faq .nr3 .pic {
    width: 100%;
    float: none;
  }
  .inside-faq .nr3 .wz {
    width: 100%;
    float: none;
    padding-top: 30px;
  }
  .inside-faq .nr3 .bt {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .inside-faq .nr2 li {
    width: 100%;
    margin-top: 20px;
  }
  .inside-faq .nr2 li:first-child {
    margin-top: 0;
  }
}

.inside-news-show .news-content p {margin:15px 0px;line-height:1.8;}
.footer .container{
	position: relative;
}
.topxz-logo{float: right;padding-top: 28px;padding-left: 10px;}
.topxz-logo img{max-height:60px;}
.bottomxz-logo{
	position: absolute;
	left: 0;
	margin-top: -13%;
}

.bottomxz-logo img{max-height:65px;}

@media (max-width: 1200px) {

	.topxz-logo {
	  padding-top: 15px;
	}  
	.topxz-logo img{
	  max-height: 30px;
	} 
	.bottomxz-logo{
		position: relative;
		left: 0;
		margin-top: 0;
		padding-bottom: 20px;
	}	
}

@media (max-width:480px ) {
	 .inside-about-4 .xz-pics{
	 		width:100%;
	 		float:none;
	 		margin-bottom:20px;
	 }
	 
	 .inside-lc ul li .num{
	 	  line-height:20px;
	 	  padding-top:30px;
	 	  color:#00923f;
	 }
}