@charset "utf-8";

/* CSS Document */
body {
  margin: 0;
  padding: 0;
  font: 12px Arial, "microsoft yahei";
  color: #333;
  background: #fff;
  min-width: 1200px;
  overflow-x:hidden;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

ul,
li,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #06b025;
}

input,
textarea,
select,
button {
  font-family: Arial, "Microsoft YaHei";
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

::-moz-selection {
  background: #aaa;
  color: #FFF;
}

::selection {
  background: #aaa;
  color: #FFF;
}

img {
  border: 0
}

.clear {
  zoom: 1;
  clear: both;
}

.clear:after {
  content: '';
  display: block;
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input,
textarea,
select {
  font-family: "Microsoft YaHei";
  font-size: 12px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

@font-face {
  font-family: 'BebasNeue-Regular';
  src: url("./BebasNeue-Regular-3.ttf")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/fonts/BebasNeue-Regular-3.ttf*/
  ;
}

.scrollbar::-webkit-scrollbar {
  width: 6px;
  background: #f4f4f4;
}

/* 滚动条整体部分 */
.scrollbar::-webkit-scrollbar-button {
  display: none;
}

/*  滚动条两端的按钮 */
.scrollbar::-webkit-scrollbar-track {
  display: none;
}

/*  外层轨道 */
.scrollbar::-webkit-scrollbar-track-piece {
  display: none;
}

/*  内层轨道 */
.scrollbar::-webkit-scrollbar-thumb {
  background: #06b025;
}

/*  滚动条里面可以拖动的那部分 */
.scrollbar::-webkit-scrollbar-corner {
  display: none;
}

/* 边角 */
.scrollbar::-webkit-resizer {
  display: none;
}

/*  定义右下角拖动块的样式 */

.chevron {
  -webkit-animation: pul 2s infinite;
  animation: pul 2s infinite;
  display: block;
}

@-webkit-keyframes pul {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes pul {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.iconT {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.c1200 {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.wrap {
  width: 81.25%;
  margin: 0 auto;
  min-width: 1200px;
}

/*header*/
.header {
  width: 100%;
  min-width: 1200px;
  background-color: #fff;
  transition: all 0.6s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.header .box {
  width: 80%;
  margin: 0 auto;
  min-width: 1200px;
  display: flex;
  justify-content: space-between;
}

.header .headerLogo {
  float: left;
  padding: 10px 0;
  /*margin-left: 150px;*/
  /*margin-left: 20px;*/
  transition: all 0.6s ease;
}

.header .headerLogo img {
  display: block;
  width: 100%;
  /*height: 60px;*/
}

.header .nav {
  /*float: right;*/
  padding: 20px 0;
  /*margin-right: 3%;*/
  /*width: 66%;*/
  width: 100%;
  display: table;
  text-align: right;
  font-size: 0;
  transition: all 0.6s ease;
}

.header .nav .nLi:hover>.sub {
  display: block;
}

.header .nav .nLi {
  display: inline-block;
  vertical-align: top;
  margin-left: 7%;
  position: relative;
}

.header .nav .nLi:first-child {
  margin-left: 0;
}

.header .nav .nLi h3 {
  padding: 18px 0;
  box-sizing: border-box;
}

.header .nav .nLi h3 a {
  display: block;
  line-height: 24px;
  font-size: 18px;
  color: #333;
  font-weight: normal;
}

.header .nav .sub {
  display: none;
  position: absolute;
  top: 50px;
  z-index: 999;
  transform: translateX(-50%);
  left: 50%;
  width: 130px;
  background-color: #FFFFFF;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

.header .nav .sub li {
  border-bottom: 1px solid #eee;
}

.header .nav .sub li:last-child {
  border-bottom: 0;
}

.header .nav .sub a {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #666;
  padding: 12px 10px;
  box-sizing: border-box;
  text-transform: uppercase;
}

.header .nav .sub a:hover {
  color: #fff;
  background-color: #06b025;
}

.header .nav .nLi:hover h3 a,
.header .nav .nLi#on h3 a {
  color: #06b025;
}

/*.header .sing {*/

/*  float: right;*/
/*  border-left: 1px solid #eee;*/
/*  height: 100%;*/
/*  padding: 30px 0 30px 2%;*/
/*  box-sizing: border-box;*/
/*  font-size: 16px;*/
/*  line-height: 40px;*/
/*  color: #06b025;*/
/*  transition: all 0.6s ease;*/
/*}*/

/*.header .sing .iconfont {*/
/*  float: left;*/
/*  font-size: 36px;*/
/*  line-height: 40px;*/
/*  color: #06b025;*/
/*}*/

/*.header .sing p {*/
/*  float: right;*/
/*  font-size: 16px;*/
/*  line-height: 40px;*/
/*  color: #06b025;*/
/*}*/

/*.header .sing:hover .iconfont,*/
/*.header .sing:hover p {*/
/*  color: #e91211;*/
/*}*/

.is-fixed {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.is-fixed .nav {
  padding: 10px 0 !important;
}

.is-fixed .headerLogo {
  padding: 0px 0 !important;
}

.is-fixed .sing {
  padding: 20px 0 20px 2% !important;
}

@media (max-width: 1440px) {
  .header .nav .nLi {
    margin-left: 5%;
  }
}

/*indexBanner*/
.indexBanner {
  width: 100%;
  position: relative;
  height: calc(100vh - 100px);
  margin: 100px auto 0;
  z-index: 1;
}

.indexBanner .bd {
  position: relative;
  height: 85vh;
  box-sizing: border-box;
  z-index: 0;
  overflow: hidden;
}

.indexBanner .bd li {
  zoom: 1;
  vertical-align: middle;
  width: 100%;
  float: left;
  height: 85vh;
  background-size: 100% auto !important;
}

.indexBanner .bd li a {
  display: block;
  width: 100% !important;
  height: 100%;
  position: relative;
}

.indexBanner .bd li a .c1200 {
  height: 100%;
}

.indexBanner .bd li a .cont {
  position: absolute;
  right: 0;
  top: 25%;
}

.indexBanner .bd li a .cont .txt {
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 15px;
  text-transform: uppercase;
}

.indexBanner .bd li a .cont .txt1 {
  font-size: 70px;
  color: #ffffff;
  position: relative;
  padding-bottom: 50px;
}

.indexBanner .bd li a .cont .txt1 p {
  font-weight: bold;
}

.indexBanner .bd li a .cont .txt1::after {
  content: '';
  width: 90px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.indexBanner .hd {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 81.25%;
  min-width: 1200px;
  height: 100px;
  background-color: #fff;
  box-shadow: 0 19px 21px 0 rgba(65, 65, 65, 0.1);
  -webkit-box-shadow: 0 19px 21px 0 rgba(65, 65, 65, 0.1);
  -moz-box-shadow: 0 19px 21px 0 rgba(65, 65, 65, 0.1);
}

.indexBanner .hd ul {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.indexBanner .hd ul li {
  display: inline-block;
  margin-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  font-size: 18px;
  height: 20px;
  line-height: 20px;
  color: #06b025;
  position: relative;
  transition: all 0.6s ease;
}

.indexBanner .hd ul li::after {
  content: '';
  width: 0;
  height: 1px;
  background-color: #06b025;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  margin: auto;
  transition: all 0.6s ease;
}

.indexBanner .hd ul li.on {
  padding-right: 60px;
}

.indexBanner .hd ul li.on::after {
  width: 50px;
}

.indexBanner .arrow {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

.indexBanner .arrow a {
  color: #666;
  font-size: 30px;
  padding-left: 10px;
  box-sizing: border-box;
  display: block;
  float: left;
}

.indexBanner .prev {
  border-left: 1px solid #eee;
  transform: rotate(-180deg);
}

.indexBanner .arrow a:hover {
  color: #06b025;
}

.indexBanner .chevron {
  width: 50px;
  height: 60px;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.indexBanner .chevron a {
  width: 50px;
  height: 60px;
  display: block;
}

.indexBanner .chevron div {
  font-size: 40px;
  color: #06b025;
  transform: rotate(180deg);
}

.indexBanner .chevron p {
  color: #06b025;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

/*indexTitle*/
.indexTitle {
  display: inline-block;
  border-bottom: solid 1px #ddd;
  padding-right: 10px;
  
}

.indexTitle h1 {
  font-size: 36px;
  font-weight: normal;
  color: #333333;
}

.indexTitle p {
  font-size: 18px;
  color: #babcc6;
  text-transform: uppercase;
  margin-top: 4px;
  padding-bottom: 20px;
  position: relative;
}

.indexTitle p::before {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #0b8421;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}

/*indexAbout*/
.indexAbout {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.indexAbout .cont {
  float: left;
  width: 46%;
}

.indexAbout .cont .text {
  font-size: 16px;
  line-height: 36px;
  color: #555;
  margin-top: 6%;
}

.indexAbout .cont .box {
  margin: 8% 0;
}

.indexAbout .cont .box a {
  display: block;
  float: left;
  margin-right: 10%;
}

.indexAbout .cont .box a:last-child {
  margin-right: 0;
}

.indexAbout .cont .box a .txt {
  width: 80px;
  height: 80px;
  border: 1px solid #aaa;
  border-radius: 50%;
  position: relative;
  transition: all 0.6s ease;
}

.indexAbout .cont .box a .iconfont {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #333;
  font-size: 40px;
  background-color: #fff;
  transition: all 0.6s ease;
}

.indexAbout .cont .box a .tit {
  width: 80px;
  text-align: center;
  color: #333;
  font-size: 16px;
  margin-top: 10px;
  transition: all 0.6s ease;
}

.indexAbout .cont .box a:hover .iconfont {
  transform: scale(0.8);
  background-color: #06b025;
  color: #FFFFFF;
}

.indexAbout .cont .box a:hover .txt {
  border-color: rgba(1, 87, 206, 0.1);
  border-color: #06b025;
}

.indexAbout .cont .box a:hover .tit {
  color: #06b025;
}

.indexAbout .img {
  width: 50%;
  height: 520px;
  float: right;
  overflow: hidden;
  position: relative;
  background: url("../images/index_about_img.jpg")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/index_about_img.jpg*/
    center center no-repeat;
  background-size: auto 100%;
}

.indexAbout .img .iconfont {
    display: none;
  width: 80px;
  height: 80px;
  background-color: #06b025;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  color: #fff;
  font-size: 46px;
  transition: all 0.6s ease;
}

.indexAbout .img .iconfont:hover {
  transform: scale(1.2);
}

.more {
  display: block;
  /*border: 1px solid rgba(0, 0, 0, 0.1);*/
  border-radius: 2px;
  width:100px;
  /*height: 48px;*/
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.index_more::after {
  content: '';
  width: 0;
  height: 100%;
  border-radius: 2px;
  background-color: #06b025;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s ease;
}

.more p {
  float: left;
  color: #06b025;
  font-size: 14px;
  /*line-height: 48px;*/
  line-height: 20px;
  /*margin-left: 38px;*/
  transition: all 0.6s ease;
}

.more .iconfont {
  float: left;
  color: #06b025;
  font-size: 20px;
  line-height: 20px;
  margin-left: 20px;
  transition: all 0.6s ease;
}

.more:hover::after {
  width: 100%;
}

.index_more:hover p,
.index_more:hover .iconfont {
  color: #FFFFFF;
}
.index_more{
  height: 48px;
  width: 180px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.index_more p{
  height: 48px;
  line-height: 48px;
  margin-left: 38px;
}
.index_more .iconfont{
  font-size: 38px;
  line-height: 48px;
}



/*video*/
.popoverBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}

.popover_video {
  width: 1014px;
  height: 600px;
  z-index: 1000000;
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  margin: -300px 0 0 -600px;
  box-shadow: 1px 1px 6px 3px rgba(0, 0, 0, .2);
  display: none;
  text-align: center;
}

.popover_video video {
  width: 974px;
  height: 560px;
  background-color: #333;
  margin: 20px;
  overflow: hidden;
}

.popover_video .close {
  position: absolute;
  bottom: -50px;
  left: 50%;
  margin-left: -20px;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
}

.popover_video .close:hover {
  color: #e91211;
}


/*indexNumber*/
.indexNumber {
  width: 100%;
  height: 270px;
  background: url("../images/index_number_bg.jpg")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/index_number_bg.jpg*/
    center center no-repeat;
}

.indexNumber .box {
  width: 100%;
  display: table;
  text-align: center;
  font-size: 0;
  padding-top: 90px;
  box-sizing: border-box;
}

.indexNumber .box dl {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  box-sizing: border-box;
  padding: 0 2%;
}

.indexNumber .box dl:last-child {
  margin-right: 0;
}

.indexNumber .box dl dt {
  color: #fff;
  font-size: 36px;
  text-align: center;
  
}

.indexNumber .box dl dt .counter {
  font-size: 50px;
  line-height: 50px;
}

.indexNumber .box dl dt sup {
  font-size: 20px;
}

.indexNumber .box dl dt b {
  font-size: 14px;
  font-weight: normal;
}

.indexNumber .box dl dd {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-top: 4px;
  text-align: center;
}


/*indexBusiness*/
.indexBusiness {
  width: 100%;
  background-color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.business {
  width: 90.625%;
  float: right;
  min-width: 1200px;
  overflow: hidden;
  padding-top: 150px;
  margin-top: -90px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list {
  background: #edf2f6;
  /*height: 354px;*/
  width: 25%;
  margin-right: 2%;
  position: relative;
  padding: 40px 30px;
  margin-top: 2%;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list:nth-child(3n) {
  margin-right: 0px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_title {
  font-size: 28px;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  z-index: 25;
  display: inline-block;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_title p:last-child {
  font-size: 22px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_txt p {
  margin-bottom: 5px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_txt p:last-child {
  margin-bottom: 0px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_txt a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  padding-left: 14px;
  position: relative;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_txt a:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 9px;
  height: 10px;
  background: url(../images/bn9.png) no-repeat 0% 50%;
  left: -5px;
  top: 25%;
  opacity: 0;
  transition: all 0.3s ease;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_more {
  color: #bfbfbf;
  font-size: 14px;
  text-transform: uppercase;
  /*position: absolute;*/
  /*bottom: 14%;*/
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_more img {
  margin-right: 15px;
}

/*.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_img {*/
/*  position: absolute;*/
/*  right: 10%;*/
/*  bottom: 6%;*/
/*}*/

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_txt a:hover {
  color: #06b025;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_txt a:hover:before {
  left: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_title:hover {
  color: #06b025;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list:nth-child(4) .top_list_img {
  right: 4%;
  bottom: 12%;
}

/* .IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list:last-child {
  width: 66%;
  margin-right: 0px;
} */

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content {
  text-align: center;
  position: absolute;
  top: 8%;
  left: 0;
  width: 67%;
  right: 0;
  margin: 0 auto;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .list_content_li {
  outline: none;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .list_content_li .content_li_top {
  margin-bottom: 15px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .list_content_li .content_li_top dt {
  font-size: 24px;
  color: #06b025;
  margin-top: 25px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .list_content_li .content_li_bottom {
  color: #555555;
  line-height: 23px;
  font-size: 14px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-dots {
  bottom: -10%;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-dots li {
  margin: 0px 1px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-dots li button:before {
  font-size: 30px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-dots li.slick-active button:before {
  opacity: .45;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-prev {
  left: 95px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-next {
  right: 95px;
}

.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-prev:before,
.IndexProduct .IndexProduct_content .IndexProduct_content_top .content_top_list .top_list_content .slick-next:before {
  color: #bfbfbf;
}
.IndexProduct .IndexProduct_content .IndexProduct_content_bottom a{width:10%; display: inline-block; margin:0 0.5%; text-align: center; line-height: 150px;}
.IndexProduct .IndexProduct_content .IndexProduct_content_bottom a:last-child{ margin-right: 0px;}
.IndexProduct_content_bottom img:hover{transform: scale(1.1);transition:transform 0.3s linear;}
/*黑白照片*/
.gray { 
-webkit-filter: grayscale(100%); 
   -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
     -o-filter: grayscale(100%); 
        filter: grayscale(100%); 
        filter: gray; 
}

.gray:hover { 
-webkit-filter: grayscale(0%); 
   -moz-filter: grayscale(0%); 
    -ms-filter: grayscale(0%); 
     -o-filter: grayscale(0%); 
        filter: grayscale(0%); 
        filter: gray; 
}

.team-container {
  width: 76% !important;
  overflow: hidden;
  margin: 60px;
  /*background-color: red;*/
  /*background-color: #f5f8fd;*/
  /* overflow: visible !important; */
}

.team-container .swiper-slide {
  width: 29% !important;
  height: 220px;
  position: relative;
  cursor: pointer;
  margin: 0 15px;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #ddd;
}
.go_lr{
    width:81%;
    margin:0 auto;
    margin-top:-312px;
    margin-bottom:100px;
    
}

.go_l,.go_r{
    width: 35px;
    height: 250px;
}
.go_l img:nth-child(2),.go_r img:nth-child(2){
    display: none;
}
.go_l:hover img:first-child,.go_r:hover img:first-child{
    display: none;
}
.go_l:hover img:nth-child(2),.go_r:hover img:nth-child(2){
    display: block;
}

.team-container a:hover{
    color: #333;
}

/* .business .swiper-container {
  width: 100% !important;
  overflow: visible !important;
}

.business .swiper-slide {
  width: 80% !important;
  position: relative;
  cursor: pointer;
}

.business .swiper-container .swiper-slide .img {
  width: 60%;
  overflow: hidden;
}

.business .swiper-container .swiper-slide .img img {
  width: 100%;
  display: block;
  margin: 0 auto;
  transition: all 0.6s ease;
}

.business .swiper-container .swiper-slide .cont {
  width: 36%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.business .swiper-container .swiper-slide .cont h4 {
  font-size: 24px;
  font-weight: normal;
  color: #333333;
}

.business .swiper-container .swiper-slide .cont .tit {
  font-size: 16px;
  color: #999999;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 16px;
  margin-top: 10px;
}

.business .swiper-container .swiper-slide .cont .tit::after {
  content: '';
  width: 48px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
}

.business .swiper-container .swiper-slide .cont .txt {
  font-size: 16px;
  line-height: 36px;
  color: #666666;
  margin: 5% 0 16%;
}

.business .swiper-container .box {
  width: 90%;
  position: absolute;
  top: -125px;
  left: 0;
  height: 38px;
  min-width: 1200px;
}

.business .swiper-container .box .button {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(1, 87, 206, 0.2);
  border-radius: 50%;
  float: right;
  top: 0 !important;
  margin-top: 0;
  position: relative !important;
  transition: all 0.6s ease;
}

.business .swiper-button-next {
  right: 0 !important;
}

.business .swiper-button-prev {
  left: 0 !important;
}

.business .swiper-button-next:after,
.business .swiper-button-prev:after {
  font-size: 20px !important;
  color: rgba(1, 87, 206, 0.4) !important;
  transition: all 0.6s ease;
}

.business .swiper-container .box .button:hover {
  border-color: #06b025;
}

.business .swiper-button-next:hover:after,
.business .swiper-button-prev:hover:after {
  color: #06b025 !important;
}

.business .swiper-container .box .swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  top: 12px;
  right: 0 !important;
  width: auto !important;
  height: 38px !important;
  float: right;
  margin: 0 10px;
}

.business .swiper-pagination-bullet {
  margin: 0 5px;
  background: #06b025 !important;
  opacity: 0.4 !important;
  filter: Alpha(opacity=40) !important;
}

.business .swiper-pagination-bullet-active {
  opacity: 1 !important;
  filter: Alpha(opacity=100) !important;
}

.business .swiper-container .swiper-slide:hover .cont h4 {
  color: #06b025;
}

.business .swiper-container .swiper-slide:hover .img img {
  transform: scale(1.1);
} */

@media (max-width: 1440px) {
  .business {
    width: 91.6% !important;
  }
}

@media (max-width: 1366px) {
  .business {
    width: 93.8% !important;
  }
}

@media (max-width: 1280px) {
  .business {
    width: 96.8% !important;
  }
}

/*indexService*/
.indexService {
  width: 100%;
  /*background-color: #f5f8fd;*/
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.indexService .more {
  margin-top: 20px;
}

.indexService ul {
  width: 100%;
  display: table;
  text-align: left;
  font-size: 0;
  margin-top: 60px;
}

.indexService ul li {
  width: 23.5%;
  margin-right: 2%;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
  box-shadow: 0 19px 21px 0 rgba(65, 65, 65, 0.1);
  -webkit-box-shadow: 0 19px 21px 0 rgba(65, 65, 65, 0.1);
  -moz-box-shadow: 0 19px 21px 0 rgba(65, 65, 65, 0.1);
  transition: all 0.6s ease;
}

.indexService ul li::after {
  content: '';
  width: 100%;
  height: 100%;
  transform-origin: bottom;
  transform: perspective(200px) rotateX(90deg);
  background-color: #06b025;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s ease;
}

.indexService ul li:nth-of-type(4n) {
  margin-right: 0;
}

.indexService ul li a {
  display: block;
  width: 100%;
  /*padding: 18% 0;*/
}

.indexService ul li .iconfont {
  color: #06b025;
  font-size: 70px;
  transition: all 0.6s ease;
}

.indexService ul li h4 {
  font-size: 20px;
  font-weight: normal;
  color: #555;
  text-align: left;
  margin: 6px 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.indexService ul li:hover {
  background-color: #06b025;
}

.indexService ul li:hover .iconfont,
.indexService ul li:hover h4,
.indexService ul li:hover p{
  color: #FFFFFF;
}

.indexService ul li p {
  font-size: 16px;
  font-weight: normal;
  margin: 8px ;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* indexTeam */
.indexTeam {
  width: 100%;
  background-color: #f5f8fd;
  height: 550px;
  padding: 80px 0 0px;
}

/*indexNews*/
.indexNews {
  width: 100%;
  background: #fff url("../images/index_news_bg.png")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/index_news_bg.png*/
    bottom 10px right 20px no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

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

.newsBox .hd {
  width: 100%;
  min-width: 1200px;
}

.newsBox .hd ul {
  float: right;
  margin-top: 20px;
}

.newsBox .hd ul li {
  cursor: pointer;
  display: inline-block;
  width: 140px;
  height: 48px;
  border-radius: 2px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 48px;
  text-align: center;
  margin-left: 30px;
}

.newsBox .hd ul li a {
  display: block;
  width: 100%;
  color: #06b025;
}

.newsBox .hd ul li.on {
  background-color: #06b025;
  border-color: #06b025;
}

.newsBox .hd ul li.on a {
  color: #fff;
}

/* .newsBox .ulBox{overflow-x: auto;overflow-y:hidden;padding: 60px 2px 80px; }
.newsBox .ulBox::-webkit-scrollbar{height: 5px;background: url("../images/solid.jpg") center center repeat-x; }
.newsBox .ulBox::-webkit-scrollbar-button{ display:none;}
.newsBox .ulBox::-webkit-scrollbar-track{ display:none;}
.newsBox .ulBox::-webkit-scrollbar-track-piece{ display:none;}
.newsBox .ulBox::-webkit-scrollbar-thumb{ background:#06b025;height: 5px; }
.newsBox .ulBox::-webkit-scrollbar-corner{display:none;}
.newsBox .ulBox::-webkit-resizer{display:none;} */
.newsBox .bd {}

.newsBox .bd ul {
  display: flex;
  flex-wrap: wrap;
  /* display: table; */
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  font-size: 0;
  margin-top: 40px;
  white-space: nowrap;
}

.newsBox .bd ul li {
  width: 28%;
  height: 400px;
  /* margin-right: 2%; */
  margin: 20px 10px 0;
  border: solid 1px #eee;
  overflow: hidden;
  position: relative;
  display: inline-block;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  transition: all 0.6s ease;
}

/* .newsBox .bd ul li:last-child {
  margin-right: 0;
} */

.newsBox .bd ul li .box {
  transition: all 0.6s ease;
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.newsBox .bd ul li .cont {
  width: 100%;
}

.newsBox .bd ul li .cont h6 {
  width: 100%;
  line-height: 24px;
  font-size: 22px;
}

.newsBox .bd ul li .cont h6 a {
  font-weight: normal;
  color: #333333;
  white-space: normal;
}

.newsBox .bd ul li .cont h6 a:hover {
  color: #06b025;
}

.newsBox .bd ul li .cont .time {
  font-size: 16px;
  line-height: 24px;
  color: #06b025;
  margin-top: 10px;
  transition: all 0.6s ease;
}

.newsBox .bd ul li .text {
  font-size: 16px;
  line-height: 26px;
  color: #999999;
  white-space: normal;
  margin: 5px 0 0;
}

.newsBox .bd ul li .more {
  width: 50%;
  display: none;
  text-align: center;
}

.newsBox .bd ul li .more p {}

.newsBox .bd ul li .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  transition: all 0.6s ease;
}

.newsBox .bd ul li .img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.6s ease;
}

.newsBox .bd ul li .img:hover img {}

.newsBox .bd ul li.select {
  width: 40% !important;
}

.newsBox .bd ul li.select .img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.newsBox .bd ul li.select .box {
  width: 80%;
  height: 230px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}

.newsBox .bd ul li.select .text {
  margin: 15px 0 0 0;
}

.newsBox .bd ul li.select .cont .time {
  font-size: 16px;
  color: #fff !important;
  line-height: 16px;
  width: 100px;
  height: 100px;
  background-color: #06b025;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  padding-top: 63px;
  box-sizing: border-box;
  margin-top: 0;
}

.newsBox .bd ul li.select .cont .time .s1 {
  display: none;
}

.newsBox .bd ul li.select .cont .time .s2 {
  display: block;
  font-size: 36px;
  line-height: 56px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
}

.newsBox .bd ul li.select .cont h6 {
  color: #06b025 !important;
  width: 100% !important;
}

.newsBox .bd ul li.select .more {
  display: block;
  margin-top: 20px;
}

@media (max-width: 1560px) {
  .newsBox .bd ul li {
    height: 320px;
    padding: 20px;
  }

  .newsBox .bd ul li .cont h6 {
    width: 100%;
    line-height: 24px;
    font-size: 20px;
  }

  .newsBox .bd ul li.select .box {
    padding: 20px;
    height: 200px;
  }

  .newsBox .bd ul li .box {
    height: 120px;
  }

  .newsBox .bd ul li .img {
    height: 160px;
  }

  .newsBox .bd ul li .text {
    font-size: 16px;
    line-height: 24px;
    margin: 5px 0 0;
  }
}



/*indexCustomer*/
.indexCustomer {
  width: 100%;
  background: url("../images/index_customer_bg.jpg")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/index_customer_bg.jpg*/
    bottom center no-repeat;
  padding: 70px 0 50px;
  overflow: hidden;
}

.indexCustomer .indexTitle h1 {
  color: #fff;
}

.indexCustomer .indexTitle p {
  color: #fff;
}

.indexCustomer ul {
  float: right;
  width: 54%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.indexCustomer ul li {
  /*float: left;*/
  width: 36%;
  margin: 0 2% 2% 0;
  overflow: hidden;
  border: 1px solid #FFFFFF;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.6s ease;
}
.indexCustomer ul li:nth-child(1),
.indexCustomer ul li:nth-child(4),
.indexCustomer ul li:nth-child(5),
.indexCustomer ul li:nth-child(8){
  width: 60%;
  height: 108px;
  overflow: hidden;
}
/*.indexCustomer ul li:nth-child(1){*/
/*  width: 56%;*/
/*  height:150px;*/
/*}*/
/*.indexCustomer ul li:nth-child(2){*/
/*    width: 39%;*/
/*  height:80px;*/
/*}*/

.indexCustomer ul li:nth-of-type(2n) {
  margin-right: 0;
}
.indexCustomer ul li img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.6s ease;
}

.indexCustomer ul li:hover {
  border-color: #06b025;
}

.indexCustomer ul li:hover img {
  transform: scale(1.1);
}

/*产品详情*/
  .pc-slide {
    width: 590px;
  }

  .view {
    padding-left: 50px;
  }

  .view .swiper-container {
    height: 350px;
  }

  .preview {
    height: 350px;
    width: 70px;
  }

  .preview .swiper-container {
    width: 72px;
    height: 245px;
  }

  .preview .swiper-slide {
    width: 70px;
    height: 50px !important;
    padding: 5px 0;
    margin-bottom: -1px;
    border: 1px solid rgba(0,0,0,0.1);
  }

  .preview .arrow-left {
    width: 70px;
    height: 40px;
  }

  .preview .arrow-right {
    width: 70px;
    height: 40px;
  }
  .active-nav{
      border:1px solid #06b025 !important;
    
  }

  .preview img {
    width: 100%;
    /*height: 70px;*/
  }

  .prodtxt {
    padding-left: 680px;
  }

  .prodtxt h1 {
    font-size: 30px;
  }

  .prodtxt .info {
    font-size: 20px;
    line-height: 40px;
    color: #000;
    margin: 20px 0;
  }

  .prodnav li {
    line-height: 50px;
    font-size: 16px;
    padding: 0 50px;
  }

  .prodmain {
    font-size: 15px;
  }

  .prodmain b {
    font-size: 16px;
  }
  .preview .arrow-left {
  background: url(../images/arrow-left.png) no-repeat center center;
  background-size: cover;
  /*width: 85px;*/
  /*height: 50px;*/
  display: block;
}

.preview .arrow-right {
  background: url(../images/arrow-right.png) no-repeat center center;
  background-size: cover;
  /*width: 85px;*/
  /*height: 50px;*/
  display: block;
}

  /*产品详情*/

/*footer*/
footer {
  width: 100%;
  background-color: #f3f3f3;
  box-sizing: border-box;
  overflow: hidden;
}

.footer {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  font-size: 0;
  display: table;
}

.footer .title {
  width: 100%;
  padding-bottom: 20px;
  text-align: left;
  font-size: 0;
  display: table;
  position: relative;
  margin-bottom: 30px;
}

.footer .title::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer .title .iconfont {
  display: inline-block;
  width: 18%;
  vertical-align: middle;
  color: #06b025;
  font-size: 40px;
  line-height: 40px;
  margin-right: 2%;
}

.footer .title .tit {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  font-size: 20px;
  color: #333;
  line-height: 20px;
}

.footer .title .tit p {
  font-size: 14px;
  color: #858585;
  text-transform: uppercase;
  margin-top: 6px;
}

.footer .item {
  display: inline-block;
  width: 26%;
  vertical-align: top;
  text-align: left;
}

.footer .item:nth-child(2) {
  margin: 0 14%;
}

.footer .item:nth-child(3) {
  width: 20%;
}

.footer .footerTel {
  width: 100%;
}

.footer .footerTel p {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  margin-bottom: 10px;
  line-height: 24px;
}

.footer .footerNav {
  width: 100%;
  display: table;
  text-align: left;
  font-size: 0;
}

.footer .footerNav li {
  margin-bottom: 20px;
  width: 32%;
  margin-right: 2%;
  display: inline-block;
  vertical-align: top;
}

.footer .footerNav li:nth-of-type(3n) {
  margin-right: 0;
}

.footer .footerNav li a {
  color: #999;
  font-size: 16px;
  line-height: 20px;
}

.footer .footerNav li a:hover {
  color: #06b025;
}

.footer .footerRwm {
  width: 110px;
}

.footer .footerRwm .img {
  width: 110px;
}

.footer .footerRwm .img img {
  width: 100%;
}

.footer .footerRwm p {
  text-align: center;
  font-size: 16px;
  color: #999;
  margin-top: 8px;
}

.copyRight {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #999;
  font-size: 16px;
  text-align: center;
}

.copyRight a {
  color: #999;
  font-size: 16px;
}

.copyRight a:hover {
  color: #06b025;
}

.copyRight1 {
  color: #666;
  margin-top: 0;
  position: fixed;
  bottom: 0;
  left: 0;
}

.copyRight1 a {
  color: #666;
}


/* fdkefu */
.fdkefu {
  width: 180px;
  background-color: #fff;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.fdkefu .title {
  text-align: center;
  width: 100%;
  font-size: 18px;
  padding: 15px 0;
  color: #fff;
  background-color: #06b025;
}

.fdkefu .qq {
  width: 100%;
  border-bottom: solid 1px #eee;
}

.fdkefu .qq a {
  display: block;
  color: #333;
  width: 75px;
  margin: 10px auto;
  padding-left: 45px;
  border-radius: 17px;
  text-align: left;
  line-height: 34px;
  font-size: 14px;
  background: rgba(1, 87, 206, 0.3) url("../images/fdqq.gif")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/fdqq.gif*/
    center left 15px no-repeat;
}

.fdkefu .qq a:hover {
  background-color: #06b025;
  color: #fff;
}

.fdkefu .wx {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
}

.fdkefu .wx img {
  width: 100%;
}

.fdkefu .wx p {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}

/*pageBanner*/
.pageBanner {
  width: 100%;
  height: 580px;
/*padding-bottom: 20px;*/
  /*padding-top: 240px;*/
  box-sizing: border-box;
  margin-top: 100px;
}
.pageBanner img{
    /*width: 100%;*/
}

.pageBanner h1 {
  font-size: 36px;
  color: #ffffff;
  font-weight: normal;
}

.pageBanner p {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  margin-top: 4px;
}

/*pageNav*/
.pageNav {
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.pageNav .dw {
  float: left;
  width: 30%;
  font-size: 16px;
}

.pageNav .dw span {
  color: #999;
  font-size: 18px;
  margin-right: 4px;
  display: inline-block;
}

.pageNav .dw a {
  color: #333333;
}

.pageNav .dw a.on,
.pageNav .dw a:hover {
  color: #06b025;
}

.pageNav ul {
  float: right;
  width: 68%;
  display: table;
  text-align: right;
  font-size: 0;
}

.pageNav ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: 7%;
}

.pageNav ul li a {
  display: block;
  color: #333;
  font-size: 16px;
}

.pageNav ul li.on a,
.pageNav ul li:hover a {
  color: #06b025;
  font-weight: bold;
}

/*pageTitle*/
.pageTitle {}

.pageTitle h2 {
  font-size: 36px;
  font-weight: normal;
  color: #333333;
}

.pageTitle p {
  font-size: 18px;
  color: #bbb;
  margin-top: 4px;
  text-transform: uppercase;
}

/*pageAbout*/
.pageAbout {
  width: 100%;
  background-color: #f7f7f7;
  padding: 80px 0;
  overflow: hidden;
}

.pageAbout .cont {
  width: 100%;
  margin-top: 60px;
  position: relative;
  padding-left: 52%;
  box-sizing: border-box;
}

.pageAbout .cont .img {
  width: 48%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/about_img.jpg")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/index_about_img.jpg*/
    top 0 right 20% no-repeat;
  background-size: auto 100%;
}

.pageAbout .cont .text {
  color: #333333;
  font-size: 16px;
  line-height: 34px;
}

.pageAbout .cont .text img {
  max-width: 100%;
}

@media (max-width: 1600px) {
  .pageAbout .cont {
    padding-left: 46%;
  }

  .pageAbout .cont .img {
    width: 42%;
  }

  .pageAbout .cont .text {
    line-height: 32px;
  }
}


/*pageDevelopment*/
.pageDevelopment {
  width: 100%;
  background-color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.pageDevelopment .box {
  width: 100%;
  margin-top: 60px;
  position: relative;
  height: 274px;
  z-index: 1;
}

.pageDevelopment .box::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.development {
  width: 90.625%;
  float: right;
  min-width: 1200px;
}

.development .hd {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
}

.development .hd a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: solid 1px rgba(0, 0, 0, 0.12);
  margin: 0 50px;
  position: absolute;
  top: 0;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.12);
  transition: all 0.6s ease;
}

.development .hd a:hover {
  border-color: #06b025;
  color: #06b025;
}

.development .hd .prev {
  right: 50%;
  transform: rotate(-180deg) translateX(-50%);
}

.development .hd .next {
  left: 50%;
  transform: translateX(-50%);
}

.development .bd ul li {
  float: left;
  position: relative;
  cursor: pointer;
  /*width: 230px;*/
  width: 17%;
  margin-right: 10px;
  height: 154px;
  box-sizing: border-box;
}

.development .bd ul li:nth-of-type(2n-1) {
  margin-top: 0px;
  padding: 0 0 34px;
}

.development .bd ul li:nth-of-type(2n) {
  margin-top: 120px;
  padding: 34px 0 0;
}

.development .bd ul li::after {
  content: '';
  width: 32px;
  height: 32px;
  background-color: #f7f8f9;
  border: dashed 1px #cdcfd2;
  border-radius: 50%;
  position: absolute;
  left: 0;
  transition: all 0.6s ease;
}

.development .bd ul li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #cdcfd2;
  border-radius: 50%;
  position: absolute;
  left: 12px;
  z-index: 1;
  transition: all 0.6s ease;
}

.development .bd ul li:nth-of-type(2n-1)::after {
  bottom: 0;
}

.development .bd ul li:nth-of-type(2n)::after {
  top: 0;
}

.development .bd ul li:nth-of-type(2n-1)::before {
  bottom: 12px;
}

.development .bd ul li:nth-of-type(2n)::before {
  top: 12px;
}

.development .bd ul li .cont {
  position: relative;
  padding: 26px 0;
  width: 100%;
}

.development .bd ul li:nth-of-type(2n-1) .cont {
  position: absolute;
  bottom: 34px;
  left: 0;
}

.development .bd ul li .cont::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #cdcfd2;
  position: absolute;
  left: 17px;
  transition: all 0.6s ease;
}

.development .bd ul li:nth-of-type(2n) .cont::after {
  top: 0;
}

.development .bd ul li:nth-of-type(2n-1) .cont::after {
  bottom: 0;
}

.development .bd ul li h6 {
  font-family: BebasNeue-Regular;
  font-size: 24px;
  color: #333;
  line-height: 24px;
  font-weight: normal;
  transition: all 0.6s ease;
}

.development .bd ul li .text {
  color: #333;
  font-size: 16px;
  margin-top: 10px;
  line-height: 20px;
  max-height: 60px;
  overflow-y: auto;
}

.development .bd ul li:hover::after {
  background-color: #FFFFFF;
  border-color: #06b025;
}

.development .bd ul li:hover::before {
  background-color: #06b025;
}

.development .bd ul li:hover .cont::after {
  background-color: rgba(1, 87, 206, 0.39);
}

.development .bd ul li:hover h6 {
  color: #06b025;
}

@media (max-width: 1440px) {
  .development {
    width: 91.6% !important;
  }
}

@media (max-width: 1366px) {
  .development {
    width: 93.8% !important;
  }
}

@media (max-width: 1280px) {
  .development {
    width: 96.8% !important;
  }
}

/*pageAdvantage*/
.pageAdvantage {
  width: 100%;
  background-color: #f7f7f7;
  padding: 80px 0;
  overflow: hidden;
}

.pageAdvantage ul {
  width: 100%;
  display: table;
  text-align: left;
  font-size: 0;
  margin-top: 60px;
}

.pageAdvantage ul li {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  height: 640px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}

.pageAdvantage ul li .cont {
  width: 100%;
  height: 320px;
  position: absolute;
  left: 0;
  z-index: 3;
  padding: 30px 8% 0;
  box-sizing: border-box;
  background: #fff url("../images/about/advantage_bg.png")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/about/advantage_bg.png*/
    bottom center no-repeat;
  transition: all 0.6s ease;
}

.pageAdvantage ul li .cont .iconfont {
  width: 56px;
  height: 56px;
  background-color: #06b025;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 56px;
}

.pageAdvantage ul li .cont .tit {
  font-size: 24px;
  line-height: 36px;
  color: #333333;
  margin: 10px 0 14px;
  transition: all 0.6s ease;
}

.pageAdvantage ul li .cont .txtBox {
  height: 90px;
  overflow-y: hidden;
  transition: all 0.6s ease;
}

.pageAdvantage ul li .cont .txt {
  font-size: 16px;
  line-height: 30px;
  color: #999999;
  height: 480px;
  overflow-y: auto;
  transition: all 0.6s ease;
}

.pageAdvantage ul li .cont .scrollbar::-webkit-scrollbar {
  width: 4px;
  background-color: #999999;
}

.pageAdvantage ul li .cont .scrollbar::-webkit-scrollbar-thumb {
  background: #fff;
}

.pageAdvantage ul li .img {
  width: 100%;
  height: 320px;
  position: absolute;
  left: 0;
  overflow: hidden;
}

.pageAdvantage ul li .img img {
  width: 100%;
  display: block;
  height: 100%;
}

.pageAdvantage ul li:nth-of-type(2n-1) .cont {
  top: 0;
}

.pageAdvantage ul li:nth-of-type(2n) .cont {
  bottom: 0;
}

.pageAdvantage ul li:nth-of-type(2n-1) .img {
  bottom: 0;
}

.pageAdvantage ul li:nth-of-type(2n) .img {
  top: 0;
}

.pageAdvantage ul li:hover .cont {
  height: 640px;
  background-color: #06b025;
}

.pageAdvantage ul li:hover .cont .tit {
  color: #fff;
}

.pageAdvantage ul li:hover .cont .txtBox {
  height: 480px;
}

.pageAdvantage ul li:hover .cont .txt {
  color: #fff;
}

@media (max-width: 1440px) {
  .pageAdvantage ul li .cont .iconfont {
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 24px;
  }

  .pageAdvantage ul li .cont .tit {
    font-size: 20px;
    line-height: 30px;
    margin: 10px 0;
  }

  .pageAdvantage ul li .cont .txt {
    font-size: 14px;
    line-height: 28px;
    height: 84px;
  }

  .pageAdvantage ul li {
    height: 560px;
  }

  .pageAdvantage ul li .cont {
    height: 280px;
  }

  .pageAdvantage ul li .img {
    height: 280px;
  }

  .pageAdvantage ul li .img img {
    width: auto;
  }

  .pageAdvantage ul li .cont .txt {
    height: 420px;
  }

  .pageAdvantage ul li:hover .cont {
    height: 560px;
  }

  .pageAdvantage ul li:hover .cont .txtBox {
    height: 420px;
  }
}

/*pageHonor*/
.pageHonor {
  width: 100%;
  background-color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.pageHonor .swiper-container {
  width: 100%;
  margin-top: 60px;
  padding-bottom: 110px;
}

.pageHonor .swiper-slide {
  width: 23.9% !important;
  margin: 0 10px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.pageHonor .swiper-slide a {
  width: 100%;
  display: block;
}

.pageHonor .swiper-slide .img {
  width: 100%;
  padding: 5%;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #f7f7f7;
}

.pageHonor .swiper-slide .img img {
  width: 100%;
  display: block;
}

.pageHonor .swiper-slide .tit {
  text-align: center;
  width: 100%;
  font-size: 16px;
  color: #333333;
  margin-top: 14px;
}

.pageHonor .box {
  position: absolute;
  bottom: 0;
  left: 0;
  display: table;
  margin: auto;
  width: 100%;
}

.pageHonor .box div {
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  top: 0 !important;
  position: relative !important;
  transition: all 0.6s ease;
}

.pageHonor .swiper-button-next {
  right: -50% !important;
  transform: translateX(-50px);
  margin-left: 40px;
  background-image: none;
}

.pageHonor .swiper-button-prev {
  left: 50% !important;
  transform: translateX(-50px);
  margin-left: -20px;
  background-image: none;
}

.pageHonor .swiper-button-next:after,
.pageHonor .swiper-button-prev:after {
  font-size: 24px !important;
  color: rgba(0, 0, 0, 0.12) !important;
  transition: all 0.6s ease;
}

.pageHonor .swiper-container .box div:hover {
  border-color: rgba(1, 87, 206, 0.12);
}

.pageHonor .swiper-button-next:hover:after,
.pageHonor .swiper-button-prev:hover:after {
  color: #06b025 !important;
}

.pageHonor .swiper-button-next:hover,
.pageHonor .swiper-button-prev:hover {
  border-color: #06b025 !important;
}

.pageHonor .swiper-slide:hover .tit {
  color: #06b025;
}



/*pageBusiness*/
.pageBusiness {
  width: 100%;
  padding: 60px 0 20px;
}

.pageBusiness ul {
  width: 100%;
}

.pageBusiness ul li {
  width: 100%;
  background-color: #f7f7f7;
  position: relative;
  margin-bottom: 60px;
  cursor: pointer;
}

.pageBusiness ul li:nth-of-type(2n-1) .cont {
  float: right;
}

.pageBusiness ul li:nth-of-type(2n) .cont {
  float: left;
}

.pageBusiness ul li .img {
  width: 54%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: 100% 100% !important;
}

.pageBusiness ul li:nth-of-type(2n-1) .img {
  left: 0;
}

.pageBusiness ul li:nth-of-type(2n) .img {
  right: 0;
}

.pageBusiness ul li .cont {
  width: 46%;
  padding: 7% 3%;
  box-sizing: border-box;
}

.pageBusiness ul li .cont h4 {
  font-size: 30px;
  font-weight: normal;
  color: #333333;
}

.pageBusiness ul li .cont .tit {
  font-size: 16px;
  color: #bbb;
  text-transform: uppercase;
  margin-top: 4px;
}

.pageBusiness ul li .cont .txt {
  font-size: 16px;
  line-height: 36px;
  color: #333333;
  margin: 4% 0 6%;
  min-height: 144px;
  overflow-y: auto;
}

.pageBusiness ul li:hover .cont h4 {
  color: #06b025;
}


.pageDetails {
  width: 100%;
  padding: 60px 0;
}

.pageDetails .pageTitle {
  text-align: center;
}

.pageDetails .cont {
  width: 100%;
  padding: 40px 0;
  border-bottom: dashed 1px #ddd;
  font-size: 16px;
  color: #333;
  line-height: 34px;
}

.pageDetails .back {
  text-align: center;
  margin: 40px auto 0;
}

.pageDetails .back a {
  display: inline-block;
  font-size: 16px;
  line-height: 40px;
  padding: 0 30px;
  color: #999;
  border: solid 1px #ddd;
  transition: all 0.8s ease;
}

.pageDetails .back a:hover {
  background-color: #06b025;
  border-color: #06b025;
  color: #fff;
}

/*pageService*/
.pageService {
  width: 100%;
  padding: 60px 0 20px;
}

.pageService ul {
  width: 100%;
}

.pageService ul li {
  width: 100%;
  background-color: #f7f7f7;
  position: relative;
  margin-bottom: 60px;
}

.pageService ul li:nth-of-type(2n-1) .img {
  left: 0;
}

.pageService ul li:nth-of-type(2n) .img {
  right: 0;
}

.pageService ul li .img {
  width: 54%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: 100% 100% !important;
}

.pageService ul li:nth-of-type(2n-1) .cont {
  float: right;
}

.pageService ul li:nth-of-type(2n) .cont {
  float: left;
}

.pageService ul li .cont {
  width: 46%;
  padding: 7% 3%;
  box-sizing: border-box;
}

.pageService ul li .cont h4 {
  font-size: 30px;
  font-weight: normal;
  color: #333333;
}

.pageService ul li .cont .tit {
  font-size: 16px;
  color: #bbb;
  text-transform: uppercase;
  margin-top: 4px;
}

.pageService ul li .cont .txt {
  font-size: 16px;
  line-height: 36px;
  color: #333333;
  margin: 4% 0 6%;
  min-height: 144px;
  max-height: 288px;
  overflow-y: auto;
}

.pageService ul li:hover .cont h4 {
  color: #06b025;
}

.pageService ul li:nth-of-type(2) .img {
  width: 49%;
}

.pageService ul li:nth-of-type(2) .cont {
  width: 49%;
}

.pageService ul li:nth-of-type(3) .img {
  width: 49%;
  top: -10%;
  height: 110%;
}

.pageService ul li:nth-of-type(3) .cont {
  width: 49%;
  padding: 6% 3%;
}

.pageService ul li:nth-of-type(3) {
  margin-top: -10%;
}



/*pageNews*/
.pageNews {
  width: 100%;
  margin: 60px 0;
}

.sort{
    width: 81.25%;
    padding:  0 ;
    font-size: 14px !important;
    margin: -10px auto 50px;
    /*border: solid 1px #ddd;*/
}
.sort dl{
    display:flex;
    /*padding: 5px;*/
    /*border-bottom: dashed 1px #bbb;*/
}
.sort dl:last-child{
    /*border-bottom:none;*/
}
.sort dt{
    line-height: 35px;
    width: 50px;
    text-align: left;
}
.sort dd a{
    line-height: 35px;
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #fff;
}
.sort dd a:hover{
    color: #fff;
    background: #21ad4c;
}
.sort .active{
    color: #fff;
    background: #21ad4c;
}
.store_choice select{
    width: 10%;
    height: 30px;
    line-height: 30px;
}
.query input{
    border:1px solid #ddd;
    line-height:30px;
    margin:0 0 0 10px;
    padding:0 10px;
}
.query button{
    background:#21ad4c;
    width:30px;
    line-height:31px;
    text-align: center;
    border: solid 1px #ddd;
    display: inline-block;
    color: #fff;
    margin: 0 0 20px -30px;
}
.store_choice{
    width: 81.25%;
    margin: 0 auto;
     height: 35px;
     /*padding: 20px;*/
 }
 #prov,#city,#country{
    width: 150px;
    line-height: 30px;
    color: #666;
    padding: 0 10px;
    margin: 0 10px 0 0;
    border: 1px solid #ddd;
}
.btn {
    width: 80px;
    line-height: 32px;
    border: 1px solid #ccc;
    outline: none;
    color: #fff;
    background-color: #21ad4c;
    margin: 0 10px 0 10px;
}

.reset{
    width: 80px;
    line-height: 30px;
    text-align: center;
    background: #F0F0F0;
    border: solid 1px #ddd;
    display: inline-block;
    margin: 0 20px 0 0;
}

.pageNews ul {
  width: 100%;
  display: table;
  text-align: left;
  font-size: 0;
}

.pageNews ul li {
  display: inline-block;
  vertical-align: top;
  width: 32%;
  margin: 0 2% 2% 0;
  position: relative;
  cbox-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
}

.pageNews ul li:nth-of-type(3n) {
  margin-right: 0;
}

.pageNews ul li .img {
  width: 100%;
  height: 365px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  /*padding-bottom: 110px;*/

}
.fenye {
  overflow: hidden;
  text-align: center;
  margin: 3% 0;
}

.fenye p,
.fenye span,
.fenye a {
  display: inline-block;
  font-size: 14px;
  color: #666666;
  padding: 12px 15px;
  line-height: 1;
  margin: 0 1px;
  border: 1px solid #dddddd;
}
.fenye a.cur {
    background-color: #06b025 !important;
    color: #fff;
}
.fenye a:hover {
    color: #06b025 !important;
    background: white;
    border: 1px #06b025 solid !important;
}

.pageNews ul li .img img {
  width: 100%;
  transition: all 0.6s ease;
  display: block;
}

.pageNews ul li .cont {
  width: 100%;
  padding: 3% 5% 0 5%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.6s ease;
}

.pageNews ul li .cont h6 a {
  color: #333;
  font-size: 18px;
  line-height: 26px;
  height: 26px;
  font-weight: normal;
  overflow: hidden;
}

.pageNews ul li .cont .time {
  color: #666;
  font-size: 16px;
  line-height: 20px;
  margin: 10px 0;
}

.pageNews ul li .cont .text {
  width: 100%;
  color: #333;
  font-size: 16px;
  line-height: 30px;
  /*margin-bottom: 20px;*/
  height: 60px;
  overflow: hidden;
  transition: all 0.6s ease;
}

.pageNews ul li .cont .more {
  opacity: 0;
  filter: Alpha(opacity=0);
  transition: all 0.6s ease;
}

.pageNews ul li:hover .img img {
  transform: scale(1.1);
}

.pageNews ul li:hover .cont {
  padding: 3% 5%;
  margin-top: -5%;
}

.pageNews ul li:hover .cont h6 a {
  color: #06b025;
}

.pageNews ul li:hover .cont .more {
  opacity: 1;
  filter: Alpha(opacity=100);
}


/*pageNewsD*/
.pageNewsD {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
}

.pageNewsD h2 {
  color: #333;
  font-weight: normal;
  font-size: 30px;
  text-align: center;
  margin-bottom: 16px;
}

.pageNewsD .time {
  font-size: 16px;
  color: #999;
  padding: 20px 0;
  border-bottom: dashed 1px #ddd;
  text-align: center;
}

.pageNewsD .time span {
  margin: 0 10px;
}

.pageNewsD .abstract {
  margin: 20px 0;
  padding: 20px 80px;
  background-color: #f8f8f8;
  font-size: 16px;
  color: #999;
  line-height: 34px;
}

.pageNewsD .abstract span {
  font-weight: bold;
  color: #444;
}

.pageNewsD .text {
  width: 100%;
  margin: 30px auto 60px;
  font-size: 16px;
  color: #333;
  line-height: 34px;
}

.pageNewsD .text img {
  max-width: 100%;
  margin: 0 auto;
}

.pageNewsD .link {
  width: 100%;
  padding: 30px 0;
  border-top: dashed 1px #ddd;
  border-bottom: dashed 1px #ddd;
}

.pageNewsD .link p {
  max-width: 48%;
}

.pageNewsD .link p a {
  font-size: 16px;
  color: #999;
  line-height: 30px;
}

.pageNewsD .link p a:hover {
  color: #06b025;
  text-decoration: underline;
}

.pageNewsD .link a:hover {
  color: #06b025;
  text-decoration: underline;
}



/*pageContact*/
.pageContact {
  width: 100%;
  background-color: #fff;
  margin: 80px 0;
}

.pageContact .cont {
  float: left;
  width: 44%;
}

.pageContact .cont .text {
  margin-top: 40px;
}

.pageContact .cont .text .txt {
  font-size: 18px;
  color: #333333;
  margin-bottom: 25px;
}

.pageContact .cont .imgBox {
  width: 100%;
  position: relative;
}

.pageContact .cont .imgBox .img {
  width: 120px;
  height: 120px;
  border: 1px solid #eee;
}

.pageContact .cont .imgBox .img img {
  width: 120px;
  height: 120px;
}

.pageContact .cont .imgBox p {
  color: #666;
  font-size: 16px;
  position: absolute;
  left: 130px;
  bottom: 0;
}

.pageContact .box {
  float: right;
  width: 52%;
}

.pageContact h6 {
  font-size: 26px;
  color: #333;
  margin: 30px 0 40px;
  font-weight: normal;
}

.pageContact form {
  width: 100%;
}

.pageContact form .row {
  width: 48%;
  height: 50px;
  float: left;
  line-height: 50px;
  border-bottom: 1px solid #ddd;
  padding: 0 1%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.pageContact form .row:nth-of-type(2n) {
  margin-left: 4%;
}

.pageContact form label {
  display: block;
  position: relative;
}

.pageContact form label span {
  font-size: 16px;
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
}

.pageContact form .txt.w1 {
  border: 0;
  font-size: 16px;
  color: #333;
  width: 100%;
  line-height: 18px;
  padding: 14px 0;
  background-color: rgba(0, 0, 0, 0);
}

.pageContact form .row1 {
  width: 100%;
  float: left;
  border-bottom: 1px solid #ddd;
  padding: 10px 1%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.pageContact form .txt.w2 {
  height: 100px;
  resize: none;
  width: 100%;
  font-size: 16px;
  color: #333;
  line-height: 18px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

.pageContact form .btn {
  width: 200px;
  height: 50px;
  cursor: pointer;
  background-color: #06b025;
  transition: all 0.6s ease;
  border: 1px solid #06b025;
  color: #fff;
  font-size: 16px;
}

/*.pageContact form .btn:hover {*/
/*  background-color: #e91211;*/
/*  border-color: #e91211;*/
/*}*/

.map {
  width: 100%;
  height: 450px;
  margin-bottom: 80px;
}

.map #map {
  width: 100%;
  height: 450px;
}


/*pageRecruit*/
.pageRecruit {
  width: 100%;
  margin: 80px 0;
}

.searchBox {
  width: 600px;
  margin: 0 auto 60px;
}

.searchBox form {
  width: 100%;
  height: 46px;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 0 10px 0 20px;
  box-sizing: border-box;
  border: 1px solid #06b025;
}

.searchBox form .inputBox {
  width: 90%;
  height: 40px;
  float: left;
  font-size: 16px;
  border: none;
}

.searchBox form .search {
  background: rgba(0, 0, 0, 0);
  border: none;
  width: 46px;
  height: 46px;
  color: #06b025;
  font-size: 30px;
  float: right;
  cursor: pointer;
}

.searchBox form .search:hover {
  color: #e91211;
}

.pageRecruit .postTitle {
  width: 100%;
  background-color: #f7f7f7;
  padding: 20px 20px;
  box-sizing: border-box;
  font-size: 0;
}

.pageRecruit .postTitle p {
  color: #333;
  font-size: 16px;
}

.pageRecruit p {
  display: inline-block;
  vertical-align: top;
  min-height: 20px;
  line-height: 20px;
}

.pageRecruit .p1 {
  width: 28%;
}

.pageRecruit .p2,
.pageRecruit .p3,
.pageRecruit .p4,
.pageRecruit .p5 {
  width: 18%;
  text-align: center;
}

.pageRecruit ul {
  width: 100%;
}

.pageRecruit ul li {
  padding: 20px 20px;
  border-bottom: solid 1px #eee;
  font-size: 0;
  box-sizing: border-box;
}

.pageRecruit ul li p {
  color: #666;
  font-size: 16px;
}

.pageRecruit ul li p a {
  color: #666;
  font-size: 16px;
}

.pageRecruit ul li.a {
  display: none;
  line-height: 32px;
  border-bottom: solid 1px #eee;
  padding: 20px 20px;
  font-size: 14px;
  color: #333;
}

.pageRecruit ul li p a:hover {
  color: #06b025;
}

.pageRecruit ul li:hover .iconfont {
  transform: rotate(90deg);
  color: #06b025;
}

/*pageJobNews*/
.pageJobNews {
  width: 100%;
  margin: 80px 0;
}

.pageJobNews p {
  display: inline-block;
  vertical-align: top;
  min-height: 20px;
  line-height: 20px;
}

.pageJobNews .p1 {
  width: 64%;
}

.pageJobNews .p2,
.pageJobNews .p3 {
  width: 18%;
  text-align: center;
}

.pageJobNews ul {
  width: 100%;
}

.pageJobNews ul li {
  padding: 20px 20px;
  border-bottom: solid 1px #eee;
  font-size: 0;
  background-color: #f7f7f7;
  box-sizing: border-box;
}

.pageJobNews ul li p {
  color: #666;
  font-size: 16px;
}

.pageJobNews ul li p a {
  color: #666;
  font-size: 16px;
}

.pageJobNews ul li.a {
  display: none;
  line-height: 32px;
  border-bottom: solid 1px #eee;
  padding: 20px 20px;
  font-size: 16px;
  color: #333;
}

.pageJobNews ul li p a:hover {
  color: #06b025;
}

.pageJobNews ul li:hover .iconfont {
  transform: rotate(90deg);
  color: #06b025;
}

/*pagePolicy*/
.pagePolicy {
  width: 100%;
  margin: 80px 0;
}

.pagePolicy p {
  display: inline-block;
  vertical-align: top;
  min-height: 20px;
  line-height: 20px;
}

.pagePolicy .p1 {
  width: 64%;
}

.pagePolicy .p2,
.pagePolicy .p3 {
  width: 18%;
  text-align: center;
}

.pagePolicy ul {
  width: 100%;
}

.pagePolicy ul li {
  padding: 20px 20px;
  border-bottom: solid 1px #eee;
  font-size: 0;
  background-color: #f7f7f7;
  box-sizing: border-box;
}

.pagePolicy ul li p {
  color: #666;
  font-size: 16px;
}

.pagePolicy ul li p a {
  color: #666;
  font-size: 16px;
}

.pagePolicy ul li.a {
  display: none;
  line-height: 32px;
  border-bottom: solid 1px #eee;
  padding: 20px 20px;
  font-size: 16px;
  color: #333;
}

.pagePolicy ul li p a:hover {
  color: #06b025;
}

.pagePolicy ul li:hover .iconfont {
  transform: rotate(90deg);
  color: #06b025;
}


/*pageRecruitD*/
.pageRecruitD {
  width: 100%;
  padding-bottom: 80px;
  margin-top: 100px;
  overflow: hidden;
}

.pageRecruitD .box {
  width: 100%;
  background-color: #333333;
  padding: 40px 0;
}

.pageRecruitD .box .tit {
  color: #fff;
  font-size: 32px;
}

.pageRecruitD .box .tit span {
  color: #e91211;
  font-size: 28px;
  margin-left: 20px;
}

.pageRecruitD .box .address {
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}

.pageRecruitD .box .time {
  color: #fff;
  font-size: 16px;
  margin-left: 50px;
}

.pageRecruitD .box1 {
  width: 100%;
}

.pageRecruitD .contBox {
  width: 60%;
  margin-top: 40px;
  float: left;
}

.pageRecruitD .contBox .text {
  color: #666;
  font-size: 16px;
  line-height: 40px;
}

.pageRecruitD .contBox .text img {
  max-width: 100%;
}

.pageRecruitD .contBox .tit {
  color: #333;
  font-size: 20px;
  position: relative;
  padding-bottom: 14px;
  margin: 20px 0;
}

.pageRecruitD .contBox .tit::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #06b025;
  position: absolute;
  bottom: 0;
  left: 0;
}

.pageRecruitD .formBox {
  float: right;
  width: 300px;
  margin-top: 100px;
  position: sticky;
  top: 120px;
  background-color: rgba(1, 87, 206, 0.04);
  padding: 25px;
  border: solid 1px #eee;
}

.pageRecruitD .formBox h6 {
  text-align: center;
  font-size: 22px;
  color: #333;
  margin-bottom: 26px;
  font-weight: normal;
}

.pageRecruitD .formBox form .row {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  float: left;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding-left: 90px;
  position: relative;
}

.pageRecruitD .formBox form div label .tit {
  font-size: 16px;
  color: #333;
  background-color: rgba(1, 87, 206, 0.1);
  height: 32px;
  width: 80px;
  line-height: 32px;
  padding-left: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.pageRecruitD .formBox form div label input {
  width: 188px;
  height: 32px;
  line-height: 32px;
  color: #333;
  font-size: 16px;
  border: none;
  padding: 0 10px;
}

.pageRecruitD .formBox form div label select {
  width: 208px;
  height: 32px;
  line-height: 32px;
  color: #333;
  font-size: 16px;
  border: none;
  padding: 0 10px;
}

.pageRecruitD .formBox form .row2 .tit {
  height: 100px;
}

.pageRecruitD .formBox form .row2 .txt {
  width: 188px;
  border: 0;
  border: 0;
  padding: 10px 10px;
  line-height: 22px;
  height: 80px;
}

.pageRecruitD .formBox form button {
  width: 160px;
  height: 40px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  background-color: #06b025;
  border: none;
  margin: 0 auto 10px;
  display: block;
  transition: all 0.6s ease;
}

.pageRecruitD .formBox form button:hover {
  background-color: #e91211;
}

.pageRecruitD .cont {
  width: 100%;
  padding: 80px 0 40px 0;
  font-size: 16px;
  line-height: 36px;
  color: #333;
}

.pageRecruitD .cont img {
  max-width: 100%;
}

.pageRecruitD .link {
  width: 100%;
  padding: 20px 0;
  border-top: dashed 1px #ddd;
  border-bottom: dashed 1px #ddd;
}

.pageRecruitD .link p {
  max-width: 48%;
}

.pageRecruitD .link p a {
  font-size: 16px;
  color: #999;
  line-height: 30px;
}

.pageRecruitD .link p a:hover {
  color: #06b025;
  text-decoration: underline;
}

.pageRecruitD .link a:hover {
  color: #06b025;
  text-decoration: underline;
}

.pageRecruitD .back {
  text-align: center;
  margin: 40px auto 0;
  padding-top: 40px;
  border-top: dashed 1px #ddd;
}

.pageRecruitD .back a {
  display: inline-block;
  font-size: 16px;
  line-height: 40px;
  padding: 0 30px;
  color: #999;
  border: solid 1px #ddd;
  transition: all 0.8s ease;
}

.pageRecruitD .back a:hover {
  background-color: #06b025;
  border-color: #06b025;
  color: #fff;
}


/*pageJob*/
.pageJob {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
}

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

.pageJob .cont {
  color: #333;
  font-size: 30px;
}

.pageJob .box {
  width: 100%;
  margin-top: 60px;
}

.pageJob .box form .row {
  float: left;
  border: 1px solid #ddd;
  float: left;
  position: relative;
  padding: 0 20px 0 140px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.pageJob .box form .row label p {
  font-size: 16px;
  color: #666;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(1, 87, 206, 0.1);
  height: 60px;
  width: 100px;
  line-height: 60px;
  padding-left: 20px;
}

.pageJob .box form .row label input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #333;
  font-size: 16px;
  border: none;
}

.pageJob .box form .row label select {
  width: 100%;
  height: 60px;
  line-height: 40px;
  color: #333;
  font-size: 16px;
  border: none;
}

.pageJob .box form .row1 {
  width: 32%;
  margin-right: 2%;
}

.pageJob .box form .row1:nth-child(3n) {
  margin-right: 0;
}

.pageJob .box form .row2 {
  width: 100%;
}

.pageJob .box form .row3 {
  width: 100%;
}

.pageJob .box form .row3 .tit {
  height: 100px;
}

.pageJob .box form .row3 .txt {
  width: 100%;
  border: 0;
  border: 0;
  padding: 10px 0;
  line-height: 22px;
  height: 80px;
}

.pageJob .box form button {
  width: 220px;
  height: 48px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  background-color: #06b025;
  border: none;
  margin: 20px auto;
  display: block;
  transition: all 0.6s ease;
}

.pageJob .box form button:hover {
  background-color: #e91211;
}



/*pageSing*/
.pageSing {
  width: 100%;
  height: calc(60vh - 100px);
  margin: 100px auto 0;
  background: url("../images/sing_bg.jpg")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/sing_bg.jpg*/
    center center no-repeat fixed;
  overflow: hidden;
  position: relative;
}

.pageSing .box {
  display: table;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  box-sizing: border-box;
  font-size: 0;
}

.pageSing .box a {
  display: inline-table;
  vertical-align: top;
  width: 200px;
  height: 50px;
  border-radius: 2px;
  line-height: 50px;
  text-align: center;
  background-color: #06b025;
  color: #FFFFFF;
  font-size: 16px;
  margin: 0 50px;
  transition: all 0.6s ease;
}

.pageSing .box a:hover {
  background-color: #e91211;
}

/*pageDownload*/
.pageDownload {
  width: 100%;
  padding: 60px 0;
}

.pageDownload .postTitle {
  width: 100%;
  background-color: #f8f8f8;
  padding: 20px 20px;
  border-bottom: solid 1px #eee;
  box-sizing: border-box;
}

.pageDownload .postTitle p {
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.pageDownload p {
  float: left;
}

.pageDownload .p1 {
  width: 60%;
}

.pageDownload .p2 {
  width: 20%;
  text-align: center;
}

.pageDownload .p3 {
  width: 20%;
  text-align: center;
}

.pageDownload ul {
  width: 100%;
}

.pageDownload ul li {
  padding: 20px 20px;
  border-bottom: solid 1px #eee;
  box-sizing: border-box;
  cursor: pointer;
}

.pageDownload ul li p {
  color: #666;
  font-size: 16px;
  text-transform: uppercase;
}

.pageDownload ul li p a {
  color: #666;
  font-size: 16px;
}

.pageDownload ul li p span {
  margin-left: 10px;
}

.pageDownload ul li:hover p,
.pageDownload ul li:hover p a {
  color: #06b025;
}


/* pageResult */
.pageResult {
  width: 100%;
  padding: 50px 0;
  border-top: solid 1px #eee;
  margin: 100px auto 0;
}

.pageResult .name {
  width: 100%;
  text-align: center;
  display: table;
  font-size: 0;
}

.pageResult .name i,
.pageResult .name span {
  display: inline-block;
  margin: 0 20px;
  vertical-align: top;
}

.pageResult .name i {
  width: 52px;
  height: 52px;
  background: url("../images/ResultIcon.png")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/ResultIcon.png*/
    center center no-repeat;
}

.pageResult .name span {
  margin: 0;
  font-size: 34px;
  color: #333;
}

.pageResult .img {
  width: 260px;
  height: 215px;
  margin: 40px auto;
  background: url("../images/ResultImg.png")
    /*tpa=http://www.ahdeqinhr.com/schtml/default/images/ResultImg.png*/
    center center no-repeat;
}

.pageResult .slogan {
  width: 100%;
  text-align: center;
  font-size: 28px;
  color: #333;
  line-height: 46px;
}

.pageResult .link {
  width: 100%;
  text-align: center;
  margin: 40px auto;
  display: table;
  font-size: 0;
}

.pageResult .link a {
  display: inline-block;
  margin: 0 20px;
  line-height: 50px;
  width: 260px;
  border-radius: 5px;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  transition: all 0.8s ease;
}

.pageResult .link a:nth-child(1) {
  background-color: #333;
}

.pageResult .link a:nth-child(2) {
  background-color: #06b025;
}

.pageResult .link a:hover {
  background-color: #e91211;
}


/* fenye */
.pages {
  margin: 60px 0 0;
  font-size: 16px;
  text-align: center;
}

.pages a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
  color: #333;
  padding: 0 12px;
  margin: 0 2px;
}

.pages a:hover {
  background: #06b025;
  border: 1px solid #06b025;
  color: #fff;
  text-decoration: none
}

.pages span {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  background: #06b025;
  color: #fff;
  text-align: center;
  padding: 0 14px;
  margin: 0 2px;
}

