header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header.on {
  background: #ffffff;
  box-shadow: 0px 1px 5px #c2c2c2;
}
header.on > div nav .nav_list ul li a {
  color: #000;
}
header.on > div nav .tools .search i {
  color: #000;
}
header.on > div nav .tools .language p {
  color: #000;
}
header > div {
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  height: 120px;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
header > div .logo > a img {
  width: 484px;
  transition: all 0.5s ease;
  margin-right: 20px;
}
header > div nav {
  height: 100%;
}
header > div nav .nav_list {
  height: 100%;
  float: left;
}
header > div nav .nav_list > ul {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .nav_list > ul > li {
  padding: 0 30px;
  height: 100%;
  line-height: 120px;
  position: relative;
}
header > div nav .nav_list > ul > li:nth-of-type(2) .sub ul {
  margin-top: 20px;
}
header > div nav .nav_list > ul > li:nth-of-type(3) .sub ul {
  margin-top: 20px;
}
header > div nav .nav_list > ul > li:nth-of-type(4) .sub ul {
  margin-top: 20px;
}
header > div nav .nav_list > ul > li::after {
  content: "";
  display: block;
  width: 0%;
  transition: ease 0.5s;
  height: 4px;
  background: #37973d;
  position: absolute;
  left: 50%;
  bottom: 0;
}
header > div nav .nav_list > ul > li:hover::after {
  width: 100%;
  left: 0;
}
header > div nav .nav_list > ul > li:hover a {
  color: #37973d;
}
header > div nav .nav_list > ul > li:hover .sub {
  padding-bottom: 150px;
}
header > div nav .nav_list > ul > li > a {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  text-transform: uppercase;
}
header > div nav .nav_list > ul > li .sub {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s;
  left: 0;
}
header > div nav .nav_list > ul > li .sub ul li {
  line-height: 50px;
  text-align: center;
}
header > div nav .nav_list > ul > li .sub ul li:hover a {
  color: #37973d;
}
header > div nav .nav_list > ul > li .sub ul li a {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
header > div nav .tools {
  float: left;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tools .language {
  padding-left: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tools .language a {
  padding-left: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
header > div nav .tools .search {
  padding-left: 50px;
}
header > div nav .tools .search i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
footer {
  width: 100%;
  background-color: #313131;
  overflow: hidden;
}
footer .foot_top {
  margin-top: 80px;
}
footer .foot_top > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .foot_top > div .ft_top_left {
  width: 52%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .foot_top > div .ft_top_left dl dt {
  margin-bottom: 30px;
}
footer .foot_top > div .ft_top_left dl dt a {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
footer .foot_top > div .ft_top_left dl dd a {
  font-size: 16px;
  color: #999;
  line-height: 2.2;
  font-weight: 400;
  text-align: left;
}
footer .foot_top > div .ft_top_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .foot_top > div .ft_top_right .info {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
footer .foot_top > div .ft_top_right .info h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  margin-bottom: 30px;
}
footer .foot_top > div .ft_top_right .info p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  margin-bottom: 20px;
  opacity: 0.6;
}
footer .foot_top > div .ft_top_right .info p:nth-of-type(3) {
  margin-top: 30px;
}
footer .foot_top > div .ft_top_right .erweima img {
  display: block;
  margin-bottom: 10px;
}
footer .foot_top > div .ft_top_right .erweima p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
footer .foot_bottom {
  margin-top: 50px;
}
footer .foot_bottom > div {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .foot_bottom > div .ft_bottom_left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .foot_bottom > div .ft_bottom_left p {
  font-size: 15px;
  color: #fff;
  line-height: 80px;
  font-weight: 400;
  text-align: center;
}
footer .foot_bottom > div .ft_bottom_left a {
  font-size: 15px;
  color: #fff;
  line-height: 80px;
  font-weight: 400;
  text-align: center;
}
.n_nav_list {
  width: 100%;
  height: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.n_nav_list > div {
  line-height: 90px;
  position: relative;
  overflow: initial;
}
.n_nav_list > div::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  clear: both;
}
.n_nav_list > div::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  clear: both;
}
.n_nav_list > div .list {
  line-height: inherit;
  float: left;
}
.n_nav_list > div .list ul {
  line-height: inherit;
  overflow: hidden;
}
.n_nav_list > div .list ul li {
  float: left;
  padding: 0 36px;
  line-height: inherit;
  height: 90px;
  box-sizing: border-box;
  position: relative;
}
.n_nav_list > div .list ul li::after {
  content: "";
  display: block;
  width: 0%;
  transition: ease 0.5s;
  height: 4px;
  background: #37973d;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.n_nav_list > div .list ul li a {
  font-size: 15px;
  color: #333;
  line-height: inherit;
  font-weight: 400;
  text-align: left;
}
.n_nav_list > div .list ul li:hover::after {
  width: 100%;
  left: 0;
}
.n_nav_list > div .list ul li:hover a {
  color: #37973d;
}
.n_nav_list > div .backhome {
  line-height: inherit;
  float: right;
}
.n_nav_list > div .backhome a {
  font-size: 14px;
  color: #999;
  line-height: inherit;
  font-weight: 400;
  text-align: left;
}
.n_nav_list > div .backhome a i {
  margin-right: 10px;
}
.pageList {
  margin-top: 40px;
  padding-bottom: 100px;
}
.pageList ul {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageList ul li {
  display: inline-block;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  margin: 0 2px;
}
.pageList ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: normal;
  text-align: center;
}
.detailed_page {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.detailed_page .pre {
  margin-top: 20px;
  width: 49%;
  padding: 0 30px;
  box-sizing: border-box;
  background-color: #f4f6f9;
}
.detailed_page .pre a {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
}
.detailed_page .next {
  margin-top: 20px;
  width: 49%;
  padding: 0 30px;
  box-sizing: border-box;
  background-color: #f4f6f9;
}
.detailed_page .next a {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: right;
}
.n_banner {
  overflow: hidden;
  margin-top: 120px;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.n_banner.about_banner {
  background-image: url(../images/about_banner.jpg);
}
.n_banner.news_banner {
  background-image: url(../images/news_banner.jpg);
}
.n_banner.gongneng_banner {
  background-image: url(../images/gongneng_banner.jpg);
}
.n_banner.zhaoshang_banner {
  background-image: url(../images/zhaoshang_banner.jpg);
}
.n_banner.contact_banner {
  background-image: url(../images/contact_banner.jpg);
}
.n_banner > div .banner_title {
  margin-top: 200px;
  margin-left: 60px;
  margin-bottom: 160px;
}
.n_banner > div .banner_title h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-shadow: 1px 1px 0px #666;
}
.n_banner > div .banner_ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0);
  transition: 0.3s ease 0.6s;
  margin-left: 60px;
}
.n_banner > div .banner_ico i {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/down_1.png) no-repeat center;
  animation: downico 1.5s ease-out infinite;
  position: relative;
}
@keyframes downico {
  0% {
    transform: translateY(-40px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
.tanchu {
  width: 100%;
  height: 0;
  padding-bottom: 0;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.tanchu .t_content {
  padding: 10px;
  background: rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tanchu .close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #063190;
  padding: 16px;
  cursor: pointer;
}
@keyframes elementUpDown {
  0% {
    transform: translate(-50%, 10px);
  }
  25% {
    transform: translate(-50%, -10px);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  75% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 10px);
  }
}
.icon {
  width: 8px;
  height: 8px;
  background: #ef7a00;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
.animate-wave {
  width: 34px;
  height: 34px;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@-webkit-keyframes opac {
  from {
    opacity: 1;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  to {
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.animate-wave * {
  background: #ef7a00;
  position: absolute;
  border-radius: 50%;
  animation: opac 6s infinite;
}
.animate-wave .w2 {
  animation-delay: 1s;
}
.animate-wave .w3 {
  animation-delay: 2s;
}
.animate-wave .w4 {
  animation-delay: 3s;
}
.animate-wave .w5 {
  animation-delay: 4s;
}
.animate-wave .w6 {
  animation-delay: 5s;
}
.titleBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  border-bottom: 1px solid #dfdfdf;
  padding: 30px;
  box-sizing: border-box;
  background-color: #f4f6f9;
}
.titleBox .n_title h4 {
  font-size: 24px;
  color: #37973d;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.titleBox .n_title h3 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.titleBox .n_title.center {
  margin-top: 80px;
}
.titleBox .n_title.center h3 {
  text-align: center;
}
.titleBox .n_title.center h4 {
  text-align: center;
}
.titleBox .descriton p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.n_more {
  width: 240px;
  height: 50px;
  background-color: #37973d;
  margin-top: 50px;
}
.n_more a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.pro_title {
  background-color: #37973d;
  width: 250px;
  line-height: 50px;
}
.pro_title h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
  color: #fff;
  line-height: inherit;
  font-weight: 100;
  text-align: center;
}
.pro_title h3::before {
  content: "";
  display: block;
  height: 20px;
  width: 2px;
  background-color: #fff;
  margin-right: 10px;
}
/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 6px;
  /*对垂直流动条有效*/
  height: 6px;
  /*对水平流动条有效*/
}
/*定义滚动条的轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #f6f6f6;
  border-radius: 3px;
}
/*定义滑块颜色、内阴影及圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #063190;
}
/*定义两端按钮的样式*/
/*定义右下角汇合处的样式*/
::-webkit-scrollbar-corner {
  background: khaki;
}
@keyframes xuanzhuan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.index .part01 {
  width: 100%;
  background-image: url(../images/index_part01_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 140px;
}
.index .part01 > div {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part01 > div .left {
  margin-top: 90px;
  width: 37%;
}
.index .part01 > div .left .about_text {
  margin-bottom: 60px;
}
.index .part01 > div .left .about_text h5 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
}
.index .part01 > div .left .about_text h2 {
  font-size: 30px;
  color: #333;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  margin-bottom: 40px;
}
.index .part01 > div .left .about_text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  text-indent: 2em;
}
.index .part01 > div .left .about_num ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 > div .left .about_num ul li .about_num_top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.index .part01 > div .left .about_num ul li .about_num_top h4 {
  font-size: 36px;
  color: #37973d;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.index .part01 > div .left .about_num ul li .about_num_top span {
  font-size: 14px;
  color: #37973d;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part01 > div .left .about_num ul li .about_num_bottom p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part01 > div .left .about_more {
  margin-top: 180px;
  display: inline-block;
  padding: 20px 28px;
  background-color: #37973d;
}
.index .part01 > div .left .about_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part01 > div .left .about_more a img {
  margin-left: 10px;
}
.index .part01 > div .right {
  width: 55%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 > div .right .right_sub1 {
  width: 57%;
  height: 564px;
}
.index .part01 > div .right .right_sub1 .right_sub1_top {
  float: right;
  border-top: 4px solid #37973d;
  box-sizing: border-box;
}
.index .part01 > div .right .right_sub1 .right_sub1_top .img {
  width: 100%;
}
.index .part01 > div .right .right_sub1 .right_sub1_top .img img {
  height: 315px;
  width: 100%;
  display: block;
}
.index .part01 > div .right .right_sub1 .right_sub1_bottom {
  float: right;
}
.index .part01 > div .right .right_sub1 .right_sub1_bottom .img {
  width: 100%;
}
.index .part01 > div .right .right_sub1 .right_sub1_bottom .img img {
  width: 100%;
  height: 248px;
  display: block;
}
.index .part01 > div .right .right_sub2 {
  width: 43%;
  height: 564px;
  border-top: 4px solid #37973d;
  box-sizing: border-box;
}
.index .part01 > div .right .right_sub2 .img {
  width: 100%;
}
.index .part01 > div .right .right_sub2 .img img {
  width: 100%;
}
.index .part02 {
  position: relative;
  z-index: 1;
}
.index .part02 .img {
  position: relative;
  width: 100%;
}
.index .part02 .img .img_box1 {
  width: 100%;
}
.index .part02 .img .img_box1 img {
  width: 100%;
  display: block;
}
.index .part02 .img .img_text {
  position: absolute;
  left: 5%;
  bottom: 80px;
}
.index .part02 .img .img_text p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
  text-shadow: 1px 1px 1px #000;
}
.index .part02 .img .img_text h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  text-shadow: 1px 1px 1px #000;
}
.index .part02 .text {
  height: 200px;
  width: 100%;
  background-color: #37973d;
}
.index .part02 .text > div {
  height: inherit;
}
.index .part02 .text > div .text_sub1 {
  width: 50%;
  position: relative;
  height: inherit;
  padding-right: 50px;
  box-sizing: border-box;
}
.index .part02 .text > div .text_sub1 .icon_xin {
  position: absolute;
  top: -170px;
  right: 0;
  width: 170px;
  height: 170px;
  background-color: #313131;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .text > div .text_sub1 .icon_xin a {
  display: inline-block;
  text-align: center;
}
.index .part02 .text > div .text_sub1 .icon_xin a img {
  margin-bottom: 10px;
}
.index .part02 .text > div .text_sub1 .icon_xin a p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part02 .text > div .text_sub1 ul {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .text > div .text_sub1 ul li:nth-of-type(1) .tel_top i {
  font-size: 24px;
}
.index .part02 .text > div .text_sub1 ul li .tel_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.index .part02 .text > div .text_sub1 ul li .tel_top i {
  margin-right: 10px;
  color: #fff;
  font-size: 20px;
}
.index .part02 .text > div .text_sub1 ul li .tel_top p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part02 .text > div .text_sub1 ul li .tel_bottom p {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.index .part02 .text > div .text_sub1 ul li .line {
  height: 50px;
  width: 1px;
  background-color: #fff;
  opacity: 0.3;
}
.index .part02 .zhaoshang {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: -280px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 116px 136px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
}
.index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 14px;
}
.index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 span {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.index .part02 .zhaoshang .zs_01 .zs_title::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.index .part02 .zhaoshang .zs_01 .zs_text {
  margin-top: 30px;
}
.index .part02 .zhaoshang .zs_01 .zs_text p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.index .part02 .zhaoshang .zs_02 {
  margin-top: 70px;
}
.index .part02 .zhaoshang .zs_02 .zs_title .zs_title_01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .zhaoshang .zs_02 .zs_title .zs_title_01 h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 14px;
}
.index .part02 .zhaoshang .zs_02 .zs_title::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.index .part02 .zhaoshang .zs_02 .zs_text {
  margin-top: 40px;
}
.index .part02 .zhaoshang .zs_02 .zs_text .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 {
  width: 50%;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 p {
  font-size: 15px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
  width: 76px;
}
.index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 input {
  display: block;
  width: calc(100% - 106px);
  font-size: 15px;
  color: #999;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
}
.index .part02 .zhaoshang .zs_02 .zs_text .item:nth-of-type(3) {
  display: block;
  border-bottom: 1px solid #dfdfdf;
}
.index .part02 .zhaoshang .zs_02 .zs_text .item:nth-of-type(3) p {
  margin: 20px 0 10px;
  font-size: 15px;
  color: #333;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
}
.index .part02 .zhaoshang .zs_02 .zs_text .item:nth-of-type(3) textarea {
  font-size: 15px;
  color: #999;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  height: 110px;
}
.index .part02 .zhaoshang .zs_02 .zs_more {
  margin-top: 80px;
  display: inline-block;
  padding: 20px 28px;
  background-color: #37973d;
}
.index .part02 .zhaoshang .zs_02 .zs_more button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  background: none;
}
.index .part02 .zhaoshang .zs_02 .zs_more button img {
  margin-left: 10px;
}
.index .part03 {
  background-image: url(../images/index_part03_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.index .part03 > div {
  margin-top: 120px;
  margin-bottom: 250px;
}
.index .part03 > div .left {
  width: 36%;
}
.index .part03 > div .left .zs_03 .zs_title .zs_title_01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 > div .left .zs_03 .zs_title .zs_title_01 h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 14px;
}
.index .part03 > div .left .zs_03 .zs_title .zs_title_01 span {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.index .part03 > div .left .zs_03 .zs_title::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.index .part03 > div .left .zs_03 .zs_text {
  margin-top: 30px;
}
.index .part03 > div .left .zs_03 .zs_text p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.index .part03 > div .left .zs_04 {
  margin-top: 70px;
}
.index .part03 > div .left .zs_04 .zs_title .zs_title_01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 > div .left .zs_04 .zs_title .zs_title_01 h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 14px;
}
.index .part03 > div .left .zs_04 .zs_title::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.index .part03 > div .left .zs_04 .zs_text {
  margin-top: 40px;
}
.index .part03 > div .left .zs_04 .zs_text .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 > div .left .zs_04 .zs_text .item .item_01 {
  width: 50%;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 > div .left .zs_04 .zs_text .item .item_01 p {
  font-size: 15px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
  width: 76px;
}
.index .part03 > div .left .zs_04 .zs_text .item .item_01 input {
  display: block;
  width: calc(100% - 106px);
  font-size: 15px;
  color: #999;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
  background: none;
}
.index .part03 > div .left .zs_04 .zs_text .item:nth-of-type(3) {
  display: block;
  border-bottom: 1px solid #dfdfdf;
}
.index .part03 > div .left .zs_04 .zs_text .item:nth-of-type(3) p {
  margin: 20px 0 10px;
  font-size: 15px;
  color: #333;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
}
.index .part03 > div .left .zs_04 .zs_text .item:nth-of-type(3) textarea {
  font-size: 15px;
  color: #999;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  height: 110px;
  background: none;
}
.index .part03 > div .left .zs_04 .zs_more {
  margin-top: 80px;
  display: inline-block;
  padding: 20px 28px;
  background-color: #37973d;
}
.index .part03 > div .left .zs_04 .zs_more button {
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part03 > div .left .zs_04 .zs_more button img {
  margin-left: 10px;
}
.index .part03 > div .right {
  width: 57%;
  position: absolute;
  right: 0;
  bottom: 120px;
  border-top: 12px solid #37973d;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
}
.index .part03 > div .right > div {
  width: 100%;
}
.index .part03 > div .right > div ul {
  width: 100%;
}
.index .part03 > div .right > div ul li {
  width: 100%;
  position: relative;
}
.index .part03 > div .right > div ul li .text {
  position: absolute;
  top: 30%;
  left: 10%;
}
.index .part03 > div .right > div ul li .text p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-shadow: 1px 1px 1px #000;
  margin-bottom: 20px;
  margin-left: -10px;
}
.index .part03 > div .right > div ul li .text h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-shadow: 1px 1px 3px #000;
}
.index .part03 > div .right > div ul li .img {
  width: 100%;
}
.index .part03 > div .right > div ul li .img img {
  width: 100%;
}
.index .part03 > div .right > div .part03_btn {
  position: absolute;
  width: 204px;
  bottom: 30px;
  right: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 > div .right > div .part03_btn .btn_left {
  background-color: #fff;
  width: 100px;
  height: 70px;
}
.index .part03 > div .right > div .part03_btn .btn_left i {
  display: block;
  font-size: 30px;
  color: #333;
  line-height: 70px;
  font-weight: 400;
  text-align: center;
}
.index .part03 > div .right > div .part03_btn .btn_right {
  background-color: #37973d;
  width: 100px;
  height: 70px;
}
.index .part03 > div .right > div .part03_btn .btn_right i {
  display: block;
  font-size: 30px;
  color: #fff;
  line-height: 70px;
  font-weight: 100;
  text-align: center;
}
.index .part04 {
  background-color: #f4f4f4;
  width: 100%;
  position: relative;
}
.index .part04::before {
  display: block;
  content: "";
  width: 54%;
  height: 460px;
  background-color: #37973d;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.index .part04::after {
  display: block;
  content: "";
  width: 17%;
  height: 160px;
  background-image: url(../images/index_part04_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 16%;
}
.index .part04 > div {
  overflow: hidden;
}
.index .part04 > div .part04_left {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  padding-bottom: 300px;
}
.index .part04 > div .part04_left .pl04_title h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part04 > div .part04_left .pl04_title h3::after {
  margin-top: 14px;
  margin-bottom: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #fff;
}
.index .part04 > div .part04_left .pl04_title p {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 40px;
}
.index .part04 > div .part04_left .pl_nav {
  width: 202px;
  margin-bottom: 68px;
}
.index .part04 > div .part04_left .pl_nav .pl_nav_item {
  width: 100%;
  margin-bottom: 8px;
}
.index .part04 > div .part04_left .pl_nav .pl_nav_item a {
  display: block;
  font-size: 16px;
  color: #37973d;
  line-height: 50px;
  font-weight: 400;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
}
.index .part04 > div .part04_left .pl04_btn {
  width: 110px;
  position: relative;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 > div .part04_left .pl04_btn .btn_left {
  text-align: center;
  line-height: 54px;
  height: 52px;
  width: 52px;
  border: 1px solid #fff;
  box-sizing: border-box;
  position: initial;
  opacity: 1;
}
.index .part04 > div .part04_left .pl04_btn .btn_left i {
  font-size: 24px;
  color: #fff;
}
.index .part04 > div .part04_left .pl04_btn .btn_left::after {
  display: none;
}
.index .part04 > div .part04_left .pl04_btn .btn_right {
  text-align: center;
  line-height: 54px;
  height: 52px;
  width: 52px;
  border: 1px solid #fff;
  box-sizing: border-box;
  position: initial;
  opacity: 1;
}
.index .part04 > div .part04_left .pl04_btn .btn_right i {
  font-size: 24px;
  color: #fff;
}
.index .part04 > div .part04_left .pl04_btn .btn_right::after {
  display: none;
}
.index .part04 > div .part04_right {
  width: 74%;
  position: absolute;
  right: 0;
  top: 88px;
}
.index .part04 > div .part04_right > div ul li {
  padding: 4px;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
}
.index .part04 > div .part04_right > div ul li a {
  display: block;
  width: 100%;
}
.index .part04 > div .part04_right > div ul li a .img {
  width: 100%;
  height: 0;
  padding-bottom: 290px;
  overflow: hidden;
}
.index .part04 > div .part04_right > div ul li a .img img {
  width: 100%;
  min-height: 290px;
}
.index .part04 > div .part04_right > div ul li a .text {
  padding: 36px 24px 20px;
  box-sizing: border-box;
}
.index .part04 > div .part04_right > div ul li a .text h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.index .part04 > div .part04_right > div ul li a .text p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.index .part04 > div .part04_right > div ul li a .more {
  width: 100%;
  border-top: 1px solid #dfdfdf;
  padding: 16px 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 > div .part04_right > div ul li a .more .date {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part04 > div .part04_right > div ul li a .more .date i {
  font-weight: 400;
}
.index .part04 > div .part04_right > div ul li a .more span {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part05 {
  width: 100%;
  background-image: url(../images/index_part05_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.index .part05 > div {
  overflow: hidden;
}
.index .part05 > div .pt05_title {
  margin-top: 100px;
}
.index .part05 > div .pt05_title h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.index .part05 > div .pt05_title h3::after {
  margin: 20px auto;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.index .part05 > div .pt05_list {
  margin-top: 50px;
  padding-bottom: 90px;
}
.index .part05 > div .pt05_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 > div .pt05_list ul li {
  width: 18%;
}
.index .part05 > div .pt05_list ul li .img {
  margin: 0 auto;
  width: 102px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 > div .pt05_list ul li .img img {
  display: inline-block;
  width: initial;
}
.index .part05 > div .pt05_list ul li .text h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  margin-bottom: 16px;
}
.index .part05 > div .pt05_list ul li .text p {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  font-weight: 100;
  text-align: center;
  opacity: 0.6;
}
.about .main .part01 {
  margin-top: 120px;
  width: 100%;
  overflow: hidden;
  height: auto;
  border-bottom: 28px solid #37973d;
  background-size: cover;
}
.about .main .part01 > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about .main .part01 > div .left {
  width: 48%;
  background-image: url(../images/about_bg1.png);
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 100px;
  padding-top: 60px;
}
.about .main .part01 > div .left .about_text_t {
  margin-bottom: 40px;
}
.about .main .part01 > div .left .about_text_t h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 14px;
}
.about .main .part01 > div .left .about_text_t span {
  display: block;
  font-size: 18px;
  color: #666;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .part01 > div .left .about_text_t::after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #37973d;
}
.about .main .part01 > div .left h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
  line-height: 2;
  font-weight: 700;
  text-align: left;
}
.about .main .part01 > div .left p {
  font-size: 15px;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: left;
  text-indent: 2em;
  margin-bottom: 30px;
}
.about .main .part01 > div .right {
  width: 48%;
  border-radius: 60px 0 0 0;
  overflow: hidden;
}
.about .main .part01 > div .right img {
  width: 100%;
  display: block;
}
.about .main .part02 {
  width: 100%;
  height: 300px;
  background-image: linear-gradient(to right, #3b8e46, #8bae3a);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 ul li {
  width: 20%;
  position: relative;
}
.about .main .part02 ul li:nth-of-type(4)::after {
  display: none;
}
.about .main .part02 ul li .part02_top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.about .main .part02 ul li .part02_top h1 {
  font-size: 50px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: Impact;
}
.about .main .part02 ul li .part02_top h1 span {
  color: #fff;
}
.about .main .part02 ul li .part02_top p {
  margin-left: 14px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
.about .main .part02 ul li .part02_bottom {
  margin-top: 14px;
}
.about .main .part02 ul li .part02_bottom p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.6;
}
.about .main .part02 ul li::after {
  position: absolute;
  right: 0;
  top: 20px;
  display: block;
  content: "";
  height: 40px;
  width: 1px;
  background-color: #fff;
}
.honor .main {
  margin-bottom: 80px;
}
.honor .main .titleBox {
  margin-top: 100px;
  margin-bottom: 60px;
}
.honor .main .n_list ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.honor .main .n_list ul li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 26px;
  transition: all 0.5s ease;
}
.honor .main .n_list ul li a .img {
  width: 100%;
  border: 1px solid #efefef;
  box-sizing: border-box;
}
.honor .main .n_list ul li a .img img {
  width: 100%;
}
.honor .main .n_list ul li a .txt {
  background-color: #f1f1f1;
  box-sizing: border-box;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s ease;
}
.honor .main .n_list ul li a .txt .left {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #333;
}
.honor .main .n_list ul li a .txt .left p {
  font-size: 16px;
  line-height: 1;
  color: #333;
}
.honor .main .n_list ul li a .txt .right {
  display: flex;
  align-items: center;
}
.honor .main .n_list ul li a .txt .right p {
  font-size: 14px;
  line-height: 1;
  color: #999;
}
.honor .main .n_list ul li a .txt .right p i {
  font-size: 36px;
}
.honor .main .n_list ul li:nth-child(3n) {
  margin-right: 0;
}
.zhaoshang .main .part01 {
  background-size: cover;
  background-image: url(../images/zhaoshang_bg1.jpg);
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: 80px;
}
.zhaoshang .main .part01 > div:nth-of-type(1) {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left {
  width: 44%;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .num h1 {
  font-size: 62px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
  background: linear-gradient(to top, #8caf3b, #3b8e46);
  display: inline;
  -webkit-background-clip: text;
  color: transparent;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title {
  margin-bottom: 30px;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 14px;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 span {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left > p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel {
  margin-top: 60px;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li {
  width: 44%;
  height: 120px;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(1) {
  background-color: #8bae3a;
  padding: 30px;
  box-sizing: border-box;
  margin-right: 1%;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) {
  background-color: #37973d;
  padding: 30px;
  box-sizing: border-box;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) .tel_bottom p {
  font-size: 18px;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_top i {
  font-size: 24px;
  margin-right: 10px;
  color: #fff;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_top p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_bottom p {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  text-transform: uppercase;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .right {
  width: 50%;
}
.zhaoshang .main .part01 > div:nth-of-type(1) .right .ms_img_01 img {
  width: 100%;
}
.zhaoshang .main .part02 {
  background-image: url(../images/zhaoshang_bg2.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.zhaoshang .main .part02 > div {
  padding: 80px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.zhaoshang .main .part02 > div .right {
  width: 100%;
}
.zhaoshang .main .part02 > div .right .num h1 {
  font-size: 62px;
  color: #fff;
  line-height: 1.8;
  font-weight: 100;
  text-align: center;
  background: linear-gradient(to top, #8caf3b, #3b8e46);
  display: inline;
  -webkit-background-clip: text;
  color: transparent;
}
.zhaoshang .main .part02 > div .right .ms_title {
  margin-bottom: 30px;
}
.zhaoshang .main .part02 > div .right .ms_title .ms_title_01 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.zhaoshang .main .part02 > div .right .ms_title .ms_title_01 h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 14px;
}
.zhaoshang .main .part02 > div .right .ms_title .ms_title_01 span {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.zhaoshang .main .part02 > div .right .ms_title::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.zhaoshang .main .part02 > div .right > p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.zhaoshang .main .part02 > div .right .tel {
  width: 50%;
  margin-top: 60px;
}
.zhaoshang .main .part02 > div .right .tel ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.zhaoshang .main .part02 > div .right .tel ul li {
  width: 44%;
  height: 120px;
}
.zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(1) {
  background-color: #8bae3a;
  padding: 30px;
  box-sizing: border-box;
  margin-right: 1%;
}
.zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(2) {
  background-color: #37973d;
  padding: 30px;
  box-sizing: border-box;
}
.zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(2) .tel_bottom p {
  font-size: 18px;
}
.zhaoshang .main .part02 > div .right .tel ul li .tel_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.zhaoshang .main .part02 > div .right .tel ul li .tel_top i {
  font-size: 24px;
  margin-right: 10px;
  color: #fff;
}
.zhaoshang .main .part02 > div .right .tel ul li .tel_top p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.zhaoshang .main .part02 > div .right .tel ul li .tel_bottom p {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  text-transform: uppercase;
}
.gongneng .main {
  margin-bottom: 120px;
}
.gongneng .main > div .gn_title {
  margin-top: 100px;
  margin-bottom: 60px;
}
.gongneng .main > div .gn_title .gn_title_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_title .gn_title_01 h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-right: 14px;
}
.gongneng .main > div .gn_title .gn_title_01 span {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.gongneng .main > div .gn_title::after {
  margin: 20px auto;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #37973d;
}
.gongneng .main > div .gn_canshu {
  background-color: #f4f6f9;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_canshu .left {
  width: 48%;
}
.gongneng .main > div .gn_canshu .left h3 {
  font-size: 18px;
  color: #37973d;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_canshu .left h3 em {
  font-weight: normal;
  font-size: 30px;
  margin-right: 10px;
}
.gongneng .main > div .gn_canshu .left p {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.gongneng .main > div .gn_canshu .right {
  width: 48%;
}
.gongneng .main > div .gn_canshu .right h3 {
  font-size: 18px;
  color: #37973d;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_canshu .right h3 em {
  font-weight: normal;
  font-size: 30px;
  margin-right: 10px;
}
.gongneng .main > div .gn_canshu .right p {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.gongneng .main > div .gn_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_list ul li {
  width: 25%;
  background-color: #f4f6f9;
  border: 1px solid #dee3e8;
  box-sizing: border-box;
}
.gongneng .main > div .gn_list ul li.active {
  background-color: #37973d;
}
.gongneng .main > div .gn_list ul li.active a {
  color: #fff;
}
.gongneng .main > div .gn_list ul li a {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
.gongneng .main > div .gn_text {
  margin-top: 80px;
  background-image: linear-gradient(to right, #3b8e46, #8bae3a);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_text .left {
  width: 40%;
  padding-left: 60px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_text .left.hide {
  display: none;
}
.gongneng .main > div .gn_text .left.t2 {
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
}
.gongneng .main > div .gn_text .left.t2 .gn_text_title {
  width: calc(100% - 140px);
}
.gongneng .main > div .gn_text .left .gn_icon {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_text .left .gn_icon img {
  width: 50%;
  display: block;
}
.gongneng .main > div .gn_text .left .gn_text_title {
  width: calc(100% - 150px);
}
.gongneng .main > div .gn_text .left .gn_text_title h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.gongneng .main > div .gn_text .left .gn_text_title p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.gongneng .main > div .gn_text .right {
  width: 56%;
  background-color: #fff;
}
.gongneng .main > div .gn_text .right.t1 {
  width: 100%;
}
.gongneng .main > div .gn_text .right.t1 ul li {
  width: 24%;
}
.gongneng .main > div .gn_text .right.t2 {
  width: 75%;
}
.gongneng .main > div .gn_text .right.t2 ul li {
  width: 32%;
}
.gongneng .main > div .gn_text .right ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.gongneng .main > div .gn_text .right ul li {
  width: 49%;
}
.gongneng .main > div .gn_text .right ul li .img {
  width: 100%;
}
.gongneng .main > div .gn_text .right ul li .img img {
  width: 100%;
}
.gongneng .main > div .gn_img {
  margin-top: 50px;
}
.gongneng .main > div .gn_img img {
  width: 100%;
}
.news .main {
  margin-top: 100px;
}
.news .main .news_list ul li {
  border-bottom: 1px solid #d1d3d4;
  overflow: hidden;
}
.news .main .news_list ul li:hover .img_box img {
  transform: scale(1.1);
}
.news .main .news_list ul li:hover .news_left .title {
  color: #333;
}
.news .main .news_list ul li:hover .news_left .text .ic {
  opacity: 1;
  visibility: visible;
}
.news .main .news_list ul li:hover .news_left .text .ic i {
  background: #333;
}
.news .main .news_list ul li:hover .news_left .text .dt {
  opacity: 0;
  visibility: hidden;
}
.news .main .news_list ul li a {
  display: block;
  padding: 50px 0 40px;
  overflow: hidden;
}
.news .main .news_list ul li a .news_left {
  float: left;
  width: 71%;
}
.news .main .news_list ul li a .news_left .title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 12px 0;
  transition: 0.5s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news .main .news_list ul li a .news_left .content {
  width: 100%;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
}
.news .main .news_list ul li a .news_left .text {
  height: 40px;
  position: relative;
}
.news .main .news_list ul li a .news_left .text .dt {
  color: #333;
  opacity: 1;
  visibility: visible;
  transition: 0.5s ease;
}
.news .main .news_list ul li a .news_left .text .ic {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}
.news .main .news_list ul li a .news_left .text .ic i {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  vertical-align: middle;
  border-radius: 50%;
  background: #063190;
  transition: all 0.5s ease;
}
.news .main .news_list ul li a .news_right {
  float: right;
  width: 22%;
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
}
.news .main .news_list ul li a .news_right .img_box {
  padding-bottom: 62.5%;
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.news .main .news_list ul li a .news_right .img_box img {
  width: 100%;
  transition: all 0.5s ease;
}
.news_detailed .main .n_main_center .news_detailed_title {
  margin-top: 80px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #d1d3d4;
}
.news_detailed .main .n_main_center .news_detailed_title h3 {
  text-align: center;
  font-weight: normal;
  font-size: 24px;
  line-height: 1;
}
.news_detailed .main .n_main_center .news_detailed_outline {
  margin-top: 20px;
}
.news_detailed .main .n_main_center .news_detailed_outline .news_detailed_info {
  display: flex;
  justify-content: center;
}
.news_detailed .main .n_main_center .news_detailed_outline .news_detailed_info .news_info_item {
  font-size: 14px;
  margin: 0 20px;
  color: #999;
}
.news_detailed .main .n_main_center .news_detailed_outline .news_detailed_content {
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #e6e6e6;
}
.news_detailed .main .n_main_center .news_detailed_outline .news_detailed_content h4 {
  font-weight: bold;
  margin-bottom: 8px;
}
.news_detailed .main .n_main_center .news_detailed_outline .news_detailed_content p {
  font-size: 14px;
  color: #666;
}
.news_detailed .main .n_main_center .news_detailed_body {
  margin-bottom: 60px;
}
.news_detailed .main .n_main_center .news_detailed_body p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 15px;
}
.news_detailed .main .n_main_center .news_detailed_body p img {
  width: 60%;
  display: block;
  margin: 0 auto;
}
.contact .main > div {
  margin-top: 120px;
}
.contact .main > div .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .title .n_title {
  width: 30%;
}
.contact .main > div .title .n_title h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main > div .title .n_title h3::after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #37973d;
  margin-top: 20px;
}
.contact .main > div .title .descriton {
  width: 64%;
}
.contact .main > div .title .descriton p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: right;
}
.contact .main > div .top {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left {
  width: 49%;
}
.contact .main > div .top .top_left .title {
  margin-top: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #dfdfdf;
  display: block;
}
.contact .main > div .top .top_left .title h3 {
  font-size: 36px;
  color: #37973d;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact .main > div .top .top_left .title p {
  font-size: 32px;
  color: #37973d;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main > div .top .top_left .content {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left .content .erweima {
  width: 40%;
  margin-right: 4%;
}
.contact .main > div .top .top_left .content .erweima img {
  border: 1px solid #dfdfdf;
  width: 100%;
}
.contact .main > div .top .top_left .content .info {
  width: 56%;
}
.contact .main > div .top .top_left .content .info h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 32px;
}
.contact .main > div .top .top_left .content .info p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 24px;
}
.contact .main > div .top .top_left .content .info .hot_tel {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left .content .info .hot_tel span {
  font-size: 18px;
  color: #37973d;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
  letter-spacing: 4px;
}
.contact .main > div .top .top_left .content .info .hot_tel p {
  margin-left: 20px;
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}
.contact .main > div .top .top_right {
  width: 46%;
}
.contact .main > div .top .top_right h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message {
  margin-top: 20px;
}
.contact .main > div .top .top_right .message .ms1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_right .message .ms1 .ms1_sub1 {
  width: 49%;
  height: 60px;
  background-color: #f4f6f9;
  box-sizing: border-box;
  padding: 10px 20px;
}
.contact .main > div .top .top_right .message .ms1 .ms1_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f4f6f9;
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message .ms2 {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_right .message .ms2 .ms2_sub1 {
  width: 49%;
  height: 60px;
  background-color: #f4f6f9;
  box-sizing: border-box;
  padding: 10px 20px;
}
.contact .main > div .top .top_right .message .ms2 .ms2_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f4f6f9;
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message .ms3 {
  margin-top: 16px;
  background-color: #f4f6f9;
  height: 200px;
  box-sizing: border-box;
  padding: 20px;
}
.contact .main > div .top .top_right .message .ms3 textarea {
  width: 100%;
  height: 100%;
}
.contact .main > div .top .top_right .message .ms4 {
  margin-top: 20px;
  width: 100%;
}
.contact .main > div .top .top_right .message .ms4 button {
  width: 100%;
  height: 56px;
  background-color: #37973d;
  font-size: 16px;
  color: #fff;
  line-height: 56px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .contact .main > div .top .top_left .title p {
    font-size: 22px;
  }
  .contact .main > div .top .top_left .title h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .contact .main > div .top .top_left .content .info h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .contact .main > div .top .top_left .content .info p {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .contact .main > div .top .top_right h3 {
    font-size: 18px;
  }
  .contact .main > div .top .top_right .message .ms3 {
    height: 150px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main > div .top .top_left {
    width: 100%;
  }
  .contact .main > div .top .top_right {
    width: 100%;
  }
  .contact .main > div .top .top_left .content .erweima {
    width: 60%;
    margin: 0 auto;
  }
  .contact .main > div .top .top_left .content .info {
    width: 100%;
    margin-top: 20px;
  }
}
.w90 {
  width: 90%;
  margin: 0 auto;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.h1440-w {
  display: block;
}
.h1440 {
  display: none;
}
@media screen and (max-width: 1440px) {
  header > div {
    height: 100px;
  }
  .about .main .part01 {
    background-image: url(../images/about_bg1.png);
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-bottom: 80px;
  }
  header > div .logo > a img {
    width: 380px;
  }
  header > div nav .nav_list > ul > li > a {
    font-size: 16px;
  }
  header > div nav .nav_list > ul > li {
    line-height: 100px;
  }
  .index .part01 > div .left .about_text h2 {
    font-size: 24px;
  }
  .index .part01 > div .left .about_more {
    margin-top: 90px;
  }
  .index .part01 > div .right .right_sub2 {
    height: 434px;
  }
  .index .part01 > div .right .right_sub2 .img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub2 .img img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 {
    height: 434px;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_top {
    height: 50%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_top .img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_top .img img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_bottom {
    height: 50%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_bottom .img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_bottom .img img {
    height: 100%;
  }
  .index .part02 .zhaoshang {
    padding: 46px 66px;
    bottom: -240px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 h3 {
    font-size: 24px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 span {
    font-size: 24px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_title .zs_title_01 h3 {
    font-size: 24px;
  }
  .index .part02 .zhaoshang .zs_02 {
    margin-top: 50px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text {
    margin-top: 20px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_more {
    margin-top: 50px;
  }
  .index .part02 .text > div .text_sub1 .icon_xin {
    top: -130px;
    width: 130px;
    height: 130px;
  }
  .index .part02 .img .img_text h3 {
    font-size: 28px;
  }
  .index .part02 .text > div .text_sub1 ul li .tel_bottom p {
    font-size: 20px;
  }
  .index .part03 > div .left .zs_03 .zs_title .zs_title_01 h3 {
    font-size: 24px;
  }
  .index .part03 > div .left .zs_03 .zs_title .zs_title_01 span {
    font-size: 24px;
  }
  .index .part03 > div {
    margin-top: 70px;
    margin-bottom: 120px;
  }
  .index .part03 > div .left .zs_04 .zs_title .zs_title_01 h3 {
    font-size: 24px;
  }
  .index .part02 .text {
    height: 150px;
  }
  .index .part03 > div .left .zs_04 {
    margin-top: 50px;
  }
  .index .part03 > div .left .zs_04 .zs_text {
    margin-top: 20px;
  }
  .index .part03 > div .left {
    width: 38%;
  }
  .index .part03 > div .right > div .part03_btn {
    width: 164px;
  }
  .index .part03 > div .right > div .part03_btn .btn_left {
    width: 80px;
    height: 60px;
  }
  .index .part03 > div .right > div .part03_btn .btn_left i {
    line-height: 60px;
    font-size: 24px;
  }
  .index .part03 > div .right > div .part03_btn .btn_right {
    width: 80px;
    height: 60px;
  }
  .index .part03 > div .right > div .part03_btn .btn_right i {
    line-height: 60px;
    font-size: 24px;
  }
  .index .part03 > div .right > div ul li .text h3 {
    font-size: 28px;
  }
  .index .part04 > div .part04_right > div ul li a .img {
    padding-bottom: 230px;
  }
  .index .part04 > div .part04_right > div ul li a .img img {
    min-height: 230px;
  }
  .index .part04 > div .part04_right > div ul li a .text h3 {
    font-size: 16px;
  }
  .index .part04 > div .part04_left .pl04_title h3 {
    font-size: 24px;
  }
  .index .part04 > div .part04_left .pl_nav .pl_nav_item a {
    line-height: 46px;
  }
  .index .part04 > div .part04_left .pl04_btn {
    width: 100px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_left {
    width: 46px;
    height: 46px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_right {
    width: 46px;
    height: 46px;
  }
  .index .part04::before {
    height: 420px;
  }
  .index .part04 > div .part04_left {
    margin-top: 60px;
    padding-bottom: 190px;
  }
  .index .part04 > div .part04_right {
    top: 58px;
  }
  .index .part05 > div .pt05_title h3 {
    font-size: 24px;
  }
  .index .part05 > div .pt05_title {
    margin-top: 60px;
  }
  .index .part05 > div .pt05_list {
    margin-top: 40px;
  }
  .index .part05 > div .pt05_list ul li .text h4 {
    font-size: 18px;
  }
  footer .foot_top > div .ft_top_left dl dt {
    font-size: 16px;
    margin-bottom: 18px;
  }
  footer .foot_top > div .ft_top_left dl dd {
    font-size: 15px;
  }
  footer .foot_top > div .ft_top_right .info h3 {
    font-size: 16px;
  }
  footer .foot_top > div .ft_top_right .info p {
    font-size: 15px;
  }
  footer .foot_top {
    margin-top: 60px;
  }
  footer .foot_bottom > div .ft_bottom_left p {
    line-height: 70px;
    color: #666;
  }
  footer .foot_bottom > div .ft_bottom_left a {
    line-height: 70px;
    color: #666;
  }
  footer .foot_bottom > div .ft_bottom_left a {
    line-height: 70px;
    color: #666;
  }
  .n_banner {
    margin-top: 100px;
    height: 420px;
    background-size: cover !important;
  }
  .n_banner > div .banner_title h3 {
    font-size: 30px;
  }
  .n_banner > div .banner_title {
    margin-bottom: 110px;
  }
  .about .main .part01 > div .left .about_text_t h3 {
    font-size: 24px;
  }
  .about .main .part01 > div .left .about_text_t span {
    font-size: 16px;
  }
  .about .main .part01 {
    margin-top: 90px;
  }
  .about .main .part01 > div .left {
    background-image: none;
    padding-bottom: 20px;
  }
  .about .main .part01 > div:nth-of-type(2) h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
    line-height: 2;
    font-weight: 700;
    text-align: left;
  }
  .about .main .part01 > div:nth-of-type(2) p {
    font-size: 15px;
    color: #333;
    line-height: 2;
    font-weight: 400;
    text-align: left;
    text-indent: 2em;
  }
  .about .main .part02 {
    height: 220px;
  }
  .about .main .part02 ul li .part02_top h1 {
    font-size: 36px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 h3 {
    font-size: 24px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 span {
    font-size: 24px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .num h1 {
    font-size: 42px;
    line-height: 1.5;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left > p {
    font-size: 15px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_bottom p {
    font-size: 20px;
  }
  .zhaoshang .main .part02 > div .right .num h1 {
    font-size: 42px;
  }
  .zhaoshang .main .part02 > div .right .ms_title .ms_title_01 h3 {
    font-size: 24px;
  }
  .zhaoshang .main .part02 > div .right .ms_title .ms_title_01 span {
    font-size: 24px;
  }
  .zhaoshang .main .part02 > div .right > p {
    font-size: 15px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(2) .tel_bottom p {
    font-size: 14px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li .tel_bottom p {
    font-size: 20px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(1) {
    padding: 20px;
    height: 96px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(2) {
    padding: 20px;
    height: 96px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(1) {
    padding: 20px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) {
    padding: 20px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li {
    height: 96px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) .tel_bottom p {
    font-size: 14px;
  }
  .gongneng .main > div .gn_title {
    margin: 80px auto 40px;
  }
  .gongneng .main > div .gn_title .gn_title_01 h3 {
    font-size: 24px;
  }
  .titleBox .n_title h3 {
    font-size: 24px;
  }
  .titleBox .descriton p {
    font-size: 15px;
  }
  .news .main .news_list ul li a .news_left .title {
    font-size: 18px;
  }
  .news .main .news_list ul li a .news_left .content {
    font-size: 15px;
  }
  .contact .main > div .title .n_title h3 {
    font-size: 24px;
  }
  .contact .main > div .title .descriton p {
    font-size: 15px;
  }
  .contact .main > div .title .descriton {
    width: 70%;
  }
  .contact .main > div .ditu .contact_info .infoItem p {
    font-size: 16px;
  }
  .contact .main > div .ditu .contact_info .infoItem h3 {
    font-size: 14px;
  }
  .contact .main > div .ditu .contact_info {
    width: 338px;
    height: 360px;
  }
  .contact .main > div {
    margin-top: 80px;
  }
  #allmap {
    height: 480px !important;
  }
  .h1440-w {
    display: none;
  }
  .h1440 {
    display: block;
  }
}
@media screen and (max-width: 1366px) {
  header > div {
    height: 90px;
  }
  .about .main .part01 {
    background-image: url(../images/about_bg1.png);
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-bottom: 80px;
  }
  header > div .logo > a img {
    width: 350px;
  }
  header > div nav .nav_list > ul > li > a {
    font-size: 15px;
  }
  header > div nav .nav_list > ul > li {
    line-height: 90px;
  }
  .index .part01 {
    padding-bottom: 100px;
    padding-top: 30px;
  }
  .index .part01 > div .left .about_text h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .index .part01 > div .left .about_text p {
    font-size: 14px;
  }
  .index .part01 > div .left .about_text {
    margin-bottom: 40px;
  }
  .index .part01 > div .left .about_more {
    margin-top: 50px;
    padding: 16px 20px;
  }
  .index .part01 > div .left .about_more a {
    font-size: 13px;
  }
  .index .part01 > div .left .about_num ul li .about_num_top h4 {
    font-size: 30px;
  }
  .index .part01 > div .right .right_sub2 {
    height: 434px;
  }
  .index .part01 > div .right .right_sub2 .img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub2 .img img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 {
    height: 434px;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_top {
    height: 50%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_top .img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_top .img img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_bottom {
    height: 50%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_bottom .img {
    height: 100%;
  }
  .index .part01 > div .right .right_sub1 .right_sub1_bottom .img img {
    height: 100%;
  }
  .index .part02 .zhaoshang {
    padding: 40px 60px;
    bottom: -240px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 h3 {
    font-size: 20px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 span {
    font-size: 20px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_title .zs_title_01 h3 {
    font-size: 20px;
  }
  .index .part02 .zhaoshang .zs_02 {
    margin-top: 50px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text {
    margin-top: 20px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_more {
    margin-top: 40px;
    padding: 16px 24px;
  }
  .index .part02 .text > div .text_sub1 .icon_xin {
    top: -130px;
    width: 130px;
    height: 130px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_text p {
    font-size: 14px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_text {
    margin-top: 20px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 p {
    font-size: 14px;
    line-height: 52px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 input {
    line-height: 52px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item:nth-of-type(3) textarea {
    font-size: 14px;
    height: 80px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item:nth-of-type(3) p {
    font-size: 14px;
  }
  .index .part02 .img .img_text h3 {
    font-size: 28px;
  }
  .index .part02 .text > div .text_sub1 ul li .tel_bottom p {
    font-size: 20px;
  }
  .index .part03 > div .left .zs_03 .zs_title .zs_title_01 h3 {
    font-size: 20px;
  }
  .index .part03 > div .left .zs_03 .zs_title .zs_title_01 span {
    font-size: 20px;
  }
  .index .part03 > div {
    margin-top: 80px;
    margin-bottom: 120px;
  }
  .index .part03 > div .left .zs_03 .zs_text p {
    font-size: 14px;
  }
  .index .part03 > div .left .zs_04 .zs_title .zs_title_01 h3 {
    font-size: 20px;
  }
  .index .part02 .text {
    height: 150px;
  }
  .index .part03 > div .left .zs_04 {
    margin-top: 50px;
  }
  .index .part03 > div .left .zs_04 .zs_text {
    margin-top: 20px;
  }
  .index .part03 > div .left {
    width: 40%;
  }
  .index .part03 > div .right > div .part03_btn {
    width: 150px;
  }
  .index .part03 > div .left .zs_04 .zs_text .item .item_01 p {
    font-size: 14px;
    line-height: 52px;
  }
  .index .part03 > div .left .zs_04 .zs_text .item .item_01 input {
    font-size: 14px;
    line-height: 52px;
  }
  .index .part03 > div .left .zs_04 .zs_text .item:nth-of-type(3) textarea {
    height: 80px;
    font-size: 14px;
  }
  .index .part03 > div .left .zs_04 .zs_text .item:nth-of-type(3) p {
    font-size: 14px;
  }
  .index .part03 > div .left .zs_04 .zs_more {
    margin-top: 60px;
    padding: 16px 24px;
  }
  .index .part03 > div .right > div .part03_btn .btn_left {
    width: 70px;
    height: 50px;
  }
  .index .part03 > div .right > div .part03_btn .btn_left i {
    line-height: 50px;
    font-size: 20px;
  }
  .index .part03 > div .right > div .part03_btn .btn_right {
    width: 70px;
    height: 50px;
  }
  .index .part03 > div .right > div .part03_btn .btn_right i {
    line-height: 50px;
    font-size: 20px;
  }
  .index .part03 > div .right > div ul li .text h3 {
    font-size: 28px;
  }
  .index .part04 > div .part04_right > div ul li a .img {
    padding-bottom: 210px;
  }
  .index .part04 > div .part04_right > div ul li a .img img {
    min-height: 210px;
  }
  .index .part04 > div .part04_right > div ul li a .text {
    padding: 16px 18px 18px;
  }
  .index .part04 > div .part04_right > div ul li a .text h3 {
    font-size: 14px;
    font-weight: 700;
  }
  .index .part04 > div .part04_right > div ul li a .text p {
    font-size: 14px;
  }
  .index .part04 > div .part04_left .pl04_title h3 {
    font-size: 20px;
  }
  .index .part04 > div .part04_left .pl04_title p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .index .part04 > div .part04_left .pl_nav .pl_nav_item a {
    line-height: 42px;
    font-size: 14px;
  }
  .index .part04 > div .part04_left .pl04_btn {
    width: 100px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_left {
    width: 46px;
    height: 46px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_right {
    width: 46px;
    height: 46px;
  }
  .index .part04::before {
    height: 360px;
  }
  .index .part04 > div .part04_left {
    margin-top: 60px;
    padding-bottom: 190px;
  }
  .index .part04 > div .part04_right {
    top: 58px;
    width: 70%;
  }
  .index .part04 > div .part04_left .pl_nav {
    margin-bottom: 36px;
    width: 182px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_right i {
    font-size: 16px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_left i {
    font-size: 16px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_right {
    font-size: 42px;
  }
  .index .part04 > div .part04_left .pl04_btn .btn_left {
    font-size: 42px;
  }
  .index .part05 > div .pt05_title h3 {
    font-size: 20px;
  }
  .index .part05 > div .pt05_title {
    margin-top: 60px;
  }
  .index .part05 > div .pt05_list {
    margin-top: 30px;
    padding-bottom: 60px;
  }
  .index .part05 > div .pt05_list ul li .text p {
    font-size: 14px;
  }
  .index .part05 > div .pt05_list ul li .text h4 {
    font-size: 16px;
  }
  footer .foot_top > div .ft_top_left dl dt a {
    font-size: 16px;
  }
  footer .foot_top > div .ft_top_left dl dd a {
    font-size: 14px;
  }
  footer .foot_top > div .ft_top_left dl dt {
    font-size: 16px;
    margin-bottom: 18px;
  }
  footer .foot_top > div .ft_top_left dl dd {
    font-size: 14px;
  }
  footer .foot_top > div .ft_top_right .info h3 {
    font-size: 16px;
  }
  footer .foot_top > div .ft_top_right .info p {
    font-size: 14px;
  }
  footer .foot_top {
    margin-top: 60px;
  }
  footer .foot_bottom > div .ft_bottom_left p {
    line-height: 60px;
    color: #666;
    font-size: 14px;
  }
  footer .foot_bottom > div .ft_bottom_left a {
    line-height: 60px;
    color: #666;
    font-size: 14px;
  }
  .n_banner {
    margin-top: 90px;
    height: 380px;
    background-size: cover !important;
  }
  .n_banner > div .banner_title h3 {
    font-size: 24px;
  }
  .n_banner > div .banner_title {
    margin-bottom: 110px;
    margin-top: 130px;
  }
  .about .main .part01 > div .left .about_text_t h3 {
    font-size: 20px;
  }
  .about .main .part01 > div .left .about_text_t span {
    font-size: 15px;
  }
  .about .main .part01 {
    margin-top: 90px;
    padding-bottom: 50px;
  }
  .about .main .part01 > div .left p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .about .main .part01 > div .left {
    background-image: none;
    padding-bottom: 20px;
    padding-top: 0px;
  }
  .about .main .part01 > div:nth-of-type(2) h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
    line-height: 2;
    font-weight: 700;
    text-align: left;
  }
  .about .main .part01 > div:nth-of-type(2) p {
    font-size: 15px;
    color: #333;
    line-height: 2;
    font-weight: 400;
    text-align: left;
    text-indent: 2em;
  }
  .about .main .part01 > div .left .about_text_t {
    margin-bottom: 20px;
  }
  .about .main .part02 {
    height: 220px;
  }
  .about .main .part02 ul li .part02_top h1 {
    font-size: 30px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 h3 {
    font-size: 20px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 span {
    font-size: 20px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .num h1 {
    font-size: 40px;
    line-height: 1;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left > p {
    font-size: 14px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_bottom p {
    font-size: 20px;
  }
  .zhaoshang .main .part02 > div .right .num h1 {
    font-size: 40px;
    line-height: 1;
  }
  .zhaoshang .main .part02 > div .right .ms_title .ms_title_01 h3 {
    font-size: 20px;
  }
  .zhaoshang .main .part02 > div .right .ms_title .ms_title_01 span {
    font-size: 20px;
  }
  .zhaoshang .main .part02 > div .right > p {
    font-size: 14px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(2) .tel_bottom p {
    font-size: 14px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li .tel_bottom p {
    font-size: 20px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(1) {
    padding: 20px;
    height: 96px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(2) {
    padding: 20px;
    height: 96px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(1) {
    padding: 20px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) {
    padding: 20px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li {
    height: 96px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) .tel_bottom p {
    font-size: 14px;
  }
  .gongneng .main > div .gn_title {
    margin: 80px auto 30px;
  }
  .gongneng .main > div .gn_title .gn_title_01 h3 {
    font-size: 20px;
  }
  .gongneng .main > div .gn_canshu .right h3 {
    font-size: 16px;
  }
  .gongneng .main > div .gn_canshu .left h3 {
    font-size: 16px;
  }
  .gongneng .main > div .gn_text {
    margin-top: 50px;
  }
  .gongneng .main > div .gn_text .left .gn_text_title h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .gongneng .main > div .gn_text .left .gn_text_title p {
    font-size: 13px;
  }
  .gongneng .main > div .gn_text .left .gn_icon {
    width: 100px;
    height: 100px;
  }
  .gongneng .main > div .gn_text .left .gn_text_title {
    width: calc(100% - 124px);
  }
  .gongneng .main > div .gn_text .left {
    padding-left: 30px;
  }
  .n_nav_list > div .list ul li {
    line-height: 80px;
    height: 80px;
  }
  .titleBox .n_title h3 {
    font-size: 20px;
  }
  .titleBox .descriton p {
    font-size: 14px;
  }
  .titleBox {
    padding: 24px;
  }
  .news .main .news_list ul li a {
    padding: 30px 0 24px;
  }
  .news .main {
    margin-top: 80px;
  }
  .news .main .news_list ul li a .news_left .title {
    font-size: 16px;
  }
  .news .main .news_list ul li a .news_left .content {
    font-size: 14px;
  }
  .news .main .news_list ul li a .news_right .img_box img {
    min-height: 170px;
  }
  .news_detailed .main .n_main_center .news_detailed_title h3 {
    font-size: 20px;
  }
  .news_detailed .main .n_main_center .news_detailed_body p {
    font-size: 14px;
  }
  .contact .main > div .title .n_title h3 {
    font-size: 20px;
  }
  .contact .main > div .title .descriton p {
    font-size: 14px;
  }
  .contact .main > div .title .descriton {
    width: 70%;
  }
  .contact .main > div .ditu .contact_info .infoItem p {
    font-size: 16px;
  }
  .contact .main > div .ditu .contact_info .infoItem h3 {
    font-size: 14px;
  }
  .contact .main > div .ditu .contact_info {
    width: 338px;
    height: 360px;
  }
  .contact .main > div {
    margin-top: 80px;
  }
  .gongneng .main > div .gn_canshu .right p {
    font-size: 13px;
  }
  .gongneng .main > div .gn_canshu .left p {
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .gongneng .main > div .gn_list ul li a {
    font-size: 14px;
    line-height: 50px;
  }
  .n_nav_list > div {
    line-height: 80px;
  }
  .n_nav_list > div .backhome a {
    line-height: 80px;
  }
  #allmap {
    height: 480px !important;
  }
  .h1440-w {
    display: none;
  }
  .h1440 {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
  .index .part01 {
    padding-top: 0px;
    padding-bottom: 50px;
  }
  .index .part01 > div .left {
    width: 100%;
    margin-top: 50px;
  }
  .index .part01 > div .right {
    width: 100%;
    margin-top: 30px;
  }
  .index .part01 > div .left .about_text h5 {
    font-size: 15px;
  }
  .index .part01 > div .left .about_text h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .index .part01 > div .left .about_num ul li .about_num_top h4 {
    font-size: 24px;
  }
  .index .part01 > div .left .about_num ul li .about_num_bottom p {
    font-size: 13px;
  }
  .index .part01 > div .left .about_text p {
    font-size: 13px;
  }
  .index .part01 > div .left .about_more {
    margin-top: 40px;
    padding: 14px 18px;
  }
  .index .part01 > div .right .right_sub1 {
    height: 254px;
  }
  .index .part01 > div .right .right_sub2 {
    height: 254px;
  }
  .index .part02 .img .img_box1 img {
    height: 200px;
  }
  .index .part02 .zhaoshang {
    width: 100%;
    position: static;
  }
  .index .part02 .text > div .text_sub1 .icon_xin {
    top: -130px;
    width: 80px;
    height: 80px;
  }
  .index .part02 .text > div .text_sub1 .icon_xin a img {
    width: 30px;
  }
  .index .part02 .text > div .text_sub1 .icon_xin a p {
    font-size: 13px;
  }
  .index .part02 .img .img_text h3 {
    font-size: 14px;
  }
  .index .part02 .img .img_text p {
    font-size: 13px;
  }
  .index .part02 .text > div .text_sub1 {
    width: 100%;
    padding-right: 0;
  }
  .index .part02 .text > div .text_sub1 .icon_xin {
    top: -80px;
    display: none;
  }
  .index .part02 .img .img_text {
    bottom: 60px;
  }
  .index .part02 .text > div .text_sub1 ul li .tel_top p {
    font-size: 13px;
  }
  .index .part02 .text > div .text_sub1 ul li .tel_bottom p {
    font-size: 13px;
  }
  .index .part02 .text > div .text_sub1 ul li .tel_top i {
    font-size: 15px;
  }
  .index .part02 .text > div .text_sub1 ul li:nth-of-type(1) .tel_top i {
    font-size: 18px;
  }
  .index .part02 .text {
    height: 80px;
  }
  .index .part02 .zhaoshang {
    padding: 40px 20px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 span {
    font-size: 16px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_title .zs_title_01 h3 {
    font-size: 16px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_title::after {
    margin-top: 14px;
    height: 3px;
  }
  .index .part02 .zhaoshang .zs_01 .zs_text p {
    font-size: 13px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_title .zs_title_01 h3 {
    font-size: 16px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_title::after {
    margin-top: 14px;
    height: 3px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 {
    width: 100%;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 input {
    font-size: 13px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item .item_01 p {
    font-size: 13px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item:nth-of-type(3) p {
    font-size: 13px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_text .item:nth-of-type(3) textarea {
    font-size: 13px;
    width: 100%;
  }
  .index .part02 .zhaoshang .zs_02 .zs_more button {
    font-size: 13px;
  }
  .index .part02 .zhaoshang .zs_02 .zs_more {
    margin-top: 20px;
    padding: 14px 20px;
  }
  .index .part03 > div {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .index .part03 > div .left {
    width: 100%;
  }
  .index .part03 > div .left .zs_03 .zs_title .zs_title_01 h3 {
    font-size: 16px;
  }
  .index .part03 > div .left .zs_03 .zs_title .zs_title_01 span {
    font-size: 16px;
  }
  .index .part03 > div .left .zs_03 .zs_title::after {
    margin-top: 14px;
    height: 3px;
  }
  .index .part03 > div .left .zs_03 .zs_text p {
    font-size: 13px;
  }
  .index .part03 > div .left .zs_04 .zs_title .zs_title_01 h3 {
    font-size: 16px;
  }
  .index .part03 > div .left .zs_04 .zs_title::after {
    margin-top: 14px;
    height: 3px;
  }
  .index .part03 > div .left .zs_04 .zs_text .item .item_01 {
    width: 100%;
  }
  .index .part03 > div .left .zs_04 .zs_text .item .item_01 p {
    font-size: 13px;
  }
  .index .part03 > div .left .zs_04 .zs_text .item .item_01 input {
    font-size: 13px;
  }
  .index .part03 > div .right {
    display: none;
  }
  .index .part03 > div .left .zs_04 .zs_text .item:nth-of-type(3) p {
    font-size: 13px;
  }
  .index .part03 > div .left .zs_04 .zs_text .item:nth-of-type(3) textarea {
    width: 100%;
    font-size: 13px;
  }
  .index .part03 > div .left .zs_04 .zs_more {
    margin-top: 30px;
    padding: 14px 20px;
  }
  .index .part03 > div .left .zs_04 .zs_more button {
    font-size: 13px;
  }
  .index .part04 > div .part04_right {
    position: static;
    width: 100%;
  }
  .index .part04 > div .part04_left {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 10px;
  }
  .index .part04::before {
    width: 100%;
  }
  .index .part04 > div .part04_left .pl04_title h3 {
    font-size: 16px;
  }
  .index .part04 > div .part04_left .pl04_title h3::after {
    height: 3px;
  }
  .index .part04 > div .part04_left .pl04_title p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .index .part04 > div .part04_left .pl_nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .index .part04 > div .part04_left .pl_nav .pl_nav_item {
    width: 49%;
  }
  .index .part04 > div .part04_right > div ul li a .text p {
    font-size: 13px;
  }
  .index .part04 {
    padding-bottom: 40px;
  }
  .index .part05 {
    display: none;
  }
  footer .foot_top {
    margin-top: 40px;
  }
  footer .foot_top > div .ft_top_left {
    display: none;
  }
  footer .foot_top > div .ft_top_right {
    position: relative;
    width: 100%;
  }
  footer .foot_top > div .ft_top_right .info {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
  footer .foot_top > div .ft_top_right .info p {
    font-size: 13px;
  }
  footer .foot_top > div .ft_top_right .erweima {
    position: absolute;
    top: 0;
    left: 0;
  }
  footer .foot_top > div .ft_top_right .erweima p {
    font-size: 13px;
  }
  footer .foot_top > div .ft_top_right .erweima img {
    width: 100px;
  }
  footer .foot_bottom > div .ft_bottom_left:nth-of-type(1) {
    display: none;
  }
  .n_banner {
    margin-top: 50px;
    height: 200px;
  }
  .n_banner > div .banner_title {
    margin-bottom: 40px;
    margin-top: 80px;
    margin-left: 0;
  }
  .n_banner > div .banner_title h3 {
    text-align: center;
    font-size: 18px;
  }
  .n_banner > div .banner_ico {
    margin: 0 auto;
    width: 30px;
    height: 30px;
  }
  .n_nav_list > div .list {
    display: none;
  }
  .n_nav_list > div {
    line-height: 50px;
  }
  .n_nav_list > div .backhome a {
    line-height: 50px;
    font-size: 12px;
  }
  .about .main .part01 {
    margin-top: 50px;
  }
  .about .main .part01 > div .left {
    width: 100%;
  }
  .about .main .part01 > div .right {
    width: 100%;
  }
  .about .main .part01 > div .left .about_text_t h3 {
    font-size: 16px;
  }
  .about .main .part01 > div .left .about_text_t span {
    font-size: 14px;
  }
  .about .main .part01 > div .left p {
    font-size: 13px;
  }
  .about .main .part02 ul li {
    width: 50%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .about .main .part02 ul li::after {
    display: none;
  }
  .about .main .part02 ul li .part02_top h1 {
    font-size: 24px;
  }
  .about .main .part02 ul li .part02_top p {
    font-size: 14px;
  }
  .about .main .part02 ul li .part02_bottom p {
    font-size: 15px;
  }
  .honor .main .n_list ul li {
    width: 100%;
  }
  .tanchu .t_content {
    width: 90%;
  }
  .tanchu .t_content .img img {
    width: 100%;
  }
  .honor .main .titleBox {
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 20px;
  }
  .titleBox .n_title h3 {
    font-size: 16px;
  }
  .gongneng .main > div .gn_canshu .left {
    width: 100%;
  }
  .gongneng .main > div .gn_canshu .right {
    width: 100%;
  }
  .gongneng .main > div .gn_title .gn_title_01 h3 {
    font-size: 16px;
  }
  .gongneng .main > div .gn_canshu .left h3 em {
    font-size: 18px;
  }
  .gongneng .main > div .gn_canshu .left h3 {
    font-size: 15px;
  }
  .gongneng .main > div .gn_canshu .left p {
    font-size: 13px;
  }
  .gongneng .main > div .gn_canshu .right p {
    font-size: 13px;
  }
  .gongneng .main > div .gn_canshu .right p:nth-of-type(1) {
    line-height: 1.5;
  }
  .gongneng .main > div .gn_canshu .right h3 {
    font-size: 15px;
  }
  .gongneng .main > div .gn_canshu .right h3 em {
    font-size: 18px;
  }
  .gongneng .main > div .gn_list ul li {
    width: 100%;
  }
  .gongneng .main > div .gn_text .left {
    width: 100%;
    padding: 20px;
    justify-content: center;
  }
  .gongneng .main > div .gn_text .left .gn_icon {
    margin-bottom: 20px;
  }
  .gongneng .main > div .gn_text .right {
    width: 100%;
  }
  .gongneng .main > div .gn_text .left .gn_text_title {
    width: 100%;
  }
  .gongneng .main > div .gn_text .left .gn_text_title h3 {
    font-size: 14px;
  }
  .gongneng .main > div .gn_text .right.t1 ul li {
    width: 49%;
    margin-bottom: 10px;
  }
  .gongneng .main > div .gn_text .left.t2 {
    width: 100%;
  }
  .gongneng .main > div .gn_text .left.t2 .gn_text_title {
    width: 100%;
  }
  .gongneng .main > div .gn_text .right.t2 {
    width: 100%;
  }
  .gongneng .main > div .gn_text .right.t2 ul li {
    width: 49%;
    margin-bottom: 10px;
  }
  .news .main .titleBox .descriton {
    display: none;
  }
  .news .main {
    margin-top: 50px;
  }
  .news .main .news_list ul li a {
    padding: 20px 0 14px;
  }
  .news .main .news_list ul li a .news_left .title {
    font-size: 14px;
  }
  .news .main .news_list ul li a .news_right {
    display: none;
  }
  .news .main .news_list ul li a .news_left {
    width: 100%;
  }
  .news .main .news_list ul li a .news_left .content {
    height: 24px;
    font-size: 13px;
    margin-bottom: 16px;
  }
  .news .main .news_list ul li a .news_left .title {
    margin: 4px 0;
  }
  .news_detailed .main .n_main_center .news_detailed_title h3 {
    font-size: 15px;
  }
  .news_detailed .main .n_main_center .news_detailed_title {
    margin-top: 50px;
  }
  .news_detailed .main .n_main_center .news_detailed_outline .news_detailed_info .news_info_item {
    font-size: 13px;
  }
  .news_detailed .main .n_main_center .news_detailed_outline .news_detailed_info .news_info_item:nth-of-type(1) {
    display: none;
  }
  .news_detailed .main .n_main_center .news_detailed_outline .news_detailed_info .news_info_item:nth-of-type(3) {
    display: none;
  }
  .news_detailed .main .n_main_center .news_detailed_outline .news_detailed_content p {
    font-size: 13px;
  }
  .news_detailed .main .n_main_center .news_detailed_body p img {
    width: 100%;
  }
  .detailed_page .pre {
    width: 100%;
    padding: 8px 10px;
  }
  .detailed_page .next {
    width: 100%;
    padding: 8px 10px;
  }
  .detailed_page .pre a {
    font-size: 13px;
    line-height: 1.5;
  }
  .detailed_page .next a {
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
  }
  .contact .main > div .ditu .contact_info {
    display: none;
  }
  .contact .main > div .title .n_title h3 {
    font-size: 16px;
  }
  .contact .main > div .title .n_title h3::after {
    margin-top: 14px;
    height: 3px;
  }
  .contact .main > div .title .descriton {
    width: 100%;
    margin-top: 20px;
  }
  .contact .main > div .title .descriton p {
    text-align: left;
  }
  .contact .main > div .title .descriton p {
    font-size: 13px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left {
    width: 100%;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .right {
    width: 100%;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) {
    margin-top: 50px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 span {
    font-size: 16px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .ms_title .ms_title_01 h3 {
    font-size: 16px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .num h1 {
    font-size: 32px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .num {
    margin-bottom: 10px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li {
    width: 100%;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_top p {
    font-size: 14px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) .tel_bottom p {
    font-size: 13px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(1) {
    margin-right: 0;
    margin-bottom: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_top {
    margin-bottom: 0px;
    margin-right: 10px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li .tel_top i {
    font-size: 20px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li:nth-of-type(2) {
    margin-right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .right {
    margin-top: 30px;
  }
  .zhaoshang .main .part01 > div:nth-of-type(1) .left .tel ul li {
    height: 64px;
  }
  .zhaoshang .main .part02 > div {
    padding: 40px 0;
  }
  .zhaoshang .main .part02 > div .right .num h1 {
    font-size: 32px;
  }
  .zhaoshang .main .part02 > div .right .ms_title .ms_title_01 span {
    font-size: 16px;
  }
  .zhaoshang .main .part02 > div .right .ms_title .ms_title_01 h3 {
    font-size: 16px;
  }
  .zhaoshang .main .part02 > div .right .tel {
    width: 100%;
  }
  .zhaoshang .main .part02 > div .right .tel ul li {
    width: 100%;
    margin-bottom: 8px;
  }
  .zhaoshang .main .part02 > div .right .tel ul li:nth-of-type(1) {
    margin-right: 0;
  }
}
