body * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrapper {
  width: 1180px;
  margin: 0 auto;
}

.banner {
  height: 334px;
  min-width: 1180px;
  background: url(/images/index/banner.png) no-repeat center center;
  background-size: cover;
}

.banner>.wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.banner .banner-info>h1 {
  font-size: 40px;
  color: #ffffff;
  opacity: 0.88;
}

.banner .banner-info>h3 {
  margin: 24px 0 50px;
  font-size: 24px;
  color: #ef960f;
}

.banner .banner-info>.banner-btn {
  display: inline-block;
  width: 171px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  border-radius: 6px;
  border: solid 1px #ffffff;
}



.main-nav {
  display: flex;
  justify-content: space-between;
  padding: 55px 0;
}

.main-nav>.main-nav-item {
  display: flex;
  flex: 1;
  justify-content: space-between;
  margin-right: 60px;
}

.main-nav>.main-nav-item>.nav-item-icon {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  background: url(/images/index/tab-icon1.png) no-repeat;
}

.main-nav>.main-nav-item:nth-child(2)>.nav-item-icon {
  background: url(/images/index/tab-icon2.png) no-repeat;
}

.main-nav>.main-nav-item:nth-child(3)>.nav-item-icon {
  background: url(/images/index/tab-icon3.png) no-repeat;
}

.main-nav>.main-nav-item:last-child {
  margin-right: 0px;
}

.main-nav>.main-nav-item>.nav-item-info {
  flex: 1;
}

.main-nav>.main-nav-item>.nav-item-info>.nav-info-title {
  font-size: 18px;
  font-weight: bold;
  color: #3f4658;
  margin-bottom: 8px;
}

.main-nav>.main-nav-item>.nav-item-info>.nav-info-desc {
  font-size: 12px;
  line-height: 24px;
}

.main-card {
  display: flex;
  justify-content: space-between;
}

.recommend {
  position: relative;
}

.recommend::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 96px;
  background: url(/images/index/recommend.png) no-repeat;
}

.discount {
  position: relative;
}

.discount::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 96px;
  background: url(/images/index/discount.png) no-repeat;
}

.main-card-item {
  width: 284px;
  box-shadow: 3px 4px 13px 0px rgba(100, 140, 240, 0.11);
}

.card-head {
  height: 153px;
}

.card-body {
  padding: 16px 25px 0;
}

.card-body-title {
  font-weight: bold;
  font-size: 18px;
  color: #3f4658;
  margin-bottom: 30px;
}

.card-body-item>label {
  display: inline-block;
  margin-bottom: 25px;
  width: 6em;
  font-size: 13px;
  color: #000000;
}

.consult {
  display: inline-block;
  width: 105px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #375795;
  color: #fff;
  font-size: 12px;
  margin-right: 15px;
  box-shadow: 3px 4px 9px 0px rgba(60, 111, 239, 0.3), inset 0px 1px 1px 0px rgba(255, 255, 255, 0.23);
  border-radius: 6px;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}

.consult:hover {
  box-shadow: 5px 8px 10px 0px rgba(60, 111, 239, 0.68),
    inset 0px 1px 1px 0px rgba(255, 255, 255, 0.23);
}

.show-desc {
  font-size: 12px;
  color: #375796;
  opacity: 0.87;
  vertical-align: bottom;
}

.main-card-item:nth-child(1) .card-head {
  background: url(/images/index/card1.png) no-repeat;
  background-size: cover;
}

.main-card-item:nth-child(2) .card-head {
  background: url(/images/index/card2.png) no-repeat;
  background-size: cover;
}

.main-card-item:nth-child(3) .card-head {
  background: url(/images/index/card3.png) no-repeat;
  background-size: cover;
}

.main-card-item:nth-child(4) .card-head {
  background: url(/images/index/card4.png) no-repeat;
  background-size: cover;
}

.card-body-foot {
  margin-bottom: 27px;
}

.main-distribution {
  text-align: center;
  padding: 44px 0 0;
}

.main-distribution>h2 {
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #212121;
  margin-bottom: 17px;

}

.main-distribution>p {
  font-size: 12px;
  color: #020121;
  opacity: 0.77;
}

.map {
  position: relative;
  height: 805px;
  background: url(/images/index/map.png) no-repeat;
  background-size: 100% 100%;
}

.map>span {
  position: absolute;
  width: 24px;
  height: 55px;
  background: url(/images/index/ling-blue.png) no-repeat;
  animation: animate 1.5s infinite ease-out;
  -webkit-animation: animate 1.5s infinite ease-out;
}

@keyframes animate {
  50% {
    transform: translatey(-10px);
    -webkit-transform: translatey(-10px);
    -moz-transform: translatey(-10px);
    -ms-transform: translatey(-10px);
    -o-transform: translatey(-10px);
  }

  100% {
    transform: translatey(0);
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
  }
}

.map>span:nth-child(1) {
  left: 925px;
  top: 80px;
}

.map>span:nth-child(2) {
  left: 893px;
  top: 251px;
}

.map>span:nth-child(3) {
  left: 806px;
  top: 190px;
  background: url(/images/index/ling-red.png) no-repeat;
}

.map>span:nth-child(4) {
  left: 575px;
  top: 377px;
}

.map>span:nth-child(5) {
  left: 739px;
  top: 364px;
}

.map>span:nth-child(6) {
  left: 942px;
  top: 371px;
}

.map>span:nth-child(7) {
  left: 802px;
  top: 514px;
}

.map>span:nth-child(8) {
  left: 856px;
  top: 525px;
}

.map>span:nth-child(9) {
  left: 911px;
  top: 488px;
}

section>h2 {
  position: relative;
  margin: 0;
  padding: 45px 0;
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #212121;
}

section .center {
  position: relative;
}

.rzs {
  width: 236px;
  text-align: center;
  float: left;
  cursor: pointer;
}

.zzbanner {
  margin-top: 45px;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
  justify-content: space-between;
}

.client-item {
  position: relative;
  width: 285px;
  height: 416px;
  padding: 60px 0 0;
  margin-bottom: 20px;
  text-align: justify;
}

.client-item:nth-child(1) {
  background: url(/images/index/servies/c1.png) no-repeat;
  background-size: 100% 100%;
}

.client-item:nth-child(2) {
  background: url(/images/index/servies/c2.png) no-repeat;
  background-size: 100% 100%;
}

.client-item:nth-child(3) {
  background: url(/images/index/servies/c3.png) no-repeat;
  background-size: 100% 100%;
}

.client-item:nth-child(4) {
  background: url(/images/index/servies/c4.png) no-repeat;
  background-size: 100% 100%;
}

.client-item:nth-child(5) {
  background: url(/images/index/servies/c5.png) no-repeat;
  background-size: 100% 100%;
}

.client-item:nth-child(6) {
  background: url(/images/index/servies/c6.png) no-repeat;
  background-size: 100% 100%;
}

.client-item:nth-child(7) {
  background: url(/images/index/servies/c7.png) no-repeat;
  background-size: 100% 100%;
}

.client-item:nth-child(8) {
  background: url(/images/index/servies/c8.png) no-repeat;
  background-size: 100% 100%;
}

.client-item>a {
  position: absolute;
  width: 200px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .71);
}

.client-centent {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 244, 244, 1);
  line-height: 18px;
  /*27px;*/
  padding: 0 25px;
}

.client-logo {
  width: 100%;
  text-align: center;
  height: 100px; /*120px;*/
  line-height: 100px;
  padding-bottom: 30px;
}

.client-icon-list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.client-icon-list img {
  /*-webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  */
  /* -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%); */
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}

.client-icon-list img:hover {
  transform: scale(1.2);
  /* -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%); */
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.client-more {
  text-align: center;
  margin-top: 40px;
}

.client-more>a {
  display: inline-block;
  width: 157px;
  height: 31px;
  line-height: 31px;
  color: #fff;
  text-align: center;
  background-color: #375795;
  border-radius: 4px;
}

.news-content {
  padding-top: 70px;
}

section.m6 {
  width: 1180px;
  margin: 0 auto;
  padding: 40px 0px;
}

section.m6 .left {
  position: relative;
  width: 530px;
  float: left;
}

section.m6 .left::before {
  position: absolute;
  left: -24px;
  top: 3px;
  content: '';
  border-width: 10px;
  border-style: solid;
  border-color: transparent #76B325 transparent transparent;
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
}

section.m6 h2 {
  position: relative;
  margin: 0;
  padding: 15px 0;
  font-size: 30px;
  font-weight: normal;
  color: #212121;
}

section.m6 h3 {
  margin: 30px 0;
  font-size: 30px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 1px;
  color: #ebedf0;
}

section.m6 h2::before {
  content: "";
  display: inline-block;
  width: 180px;
  height: 1px;
  left: 0;
  bottom: 3px;
  position: absolute;
  background: #ECEDF1;
}

section.m6 h2::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 0;
  bottom: 3px;
  position: absolute;
  background: #76b325;
}

section.m6 h2 a {
  float: right;
  color: #7F7F7F;
  font-size: 16px;
  margin-top: 10px;
}

section.m6 h2 a::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  width: 13px;
  height: 12px;
  background-image: url(/images/png_list.png);
  background-position: -445px 0px;
}

section.m6 .left .imgBox {
  position: relative;
  float: left;
  width: 260px;
  height: 140px;
}

section.m6 .left .imgBox::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 5px;
  height: 55px;
  background-color: #93c31c;
}

section.m6 .left .imgBox::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 96px;
  height: 5px;
  background-color: #93c31c;
}

section.m6 .left .imgBox img {
  display: block;
  width: 100%;
  height: 100%;
}

section.m6 .left .textBox {
  float: right;
  width: 250px;
  height: 140px;
}

section.m6 .left .textBox .time {
  margin: 0;
  margin-top: -2px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #929292;
}

section.m6 .left .textBox .time span {
  font-size: 30px;
}

section.m6 .left .textBox .title {
  margin: 8px 0;
  height: 36px;
  overflow: hidden;
  font-size: 16px;
  line-height: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #93c31c;
}

section.m6 .left .textBox .des {
  margin: 8px 0;
  height: 72px;
  overflow: hidden;
  text-align: justify;
  line-height: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #AEAEAE;
}

section.m6 .left li {
  margin-top: 30px;
  overflow: hidden;
}

section.m6 .left li .time {
  float: left;
  width: 60px;
  color: #B7B7B7;
  border-right: 1px solid #ececec;
}

section.m6 .left li .text {
  float: right;
  width: 455px;
  color: #9C9C9C;
}

section.m6 .left li .text p:nth-child(1) {
  margin-top: 0;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

section.m6 .left li .text p:nth-child(2) {
  margin-bottom: 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

section.m6 .left li .time p:nth-child(1) {
  margin: 0;
  text-align: center;
  font-size: 30px;
}

section.m6 .left li .time p:nth-child(2) {
  margin: 0;
  text-align: center;
  font-size: 12px;
}

.objective {
  background: #76B325;
}

.objective-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  background: #76B325;
  color: #fff;
}

.objective-content>p {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  line-height: 43px;
}

.objective-content>a {
  display: block;
  width: 223px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
}

.objective-content>span {
  font-size: 14px;
}

.objective-phone>p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(244, 244, 244, 1);
  margin-bottom: 14px;
}

.objective-phone>span {
  display: block;
  margin: auto;
  width: 152px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: rgba(232, 93, 23, 1);
  border-radius: 1px;
}

.objective-phone>span>i {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url(/images/index/servies/phone.png) no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-right: 7px;
}

.objective-phone>p>span {
  font-size: 12px;
}

.form-table {
  display: flex;

}

.table-l {
  width: 520px;
  font-size: 32px;
  line-height: 1.2;
}

.table-r {
  flex: 1;
}

.form-table {
  background: #F7F6F9;
}

.table-content {
  display: flex;
  padding-top: 50px;
  padding-bottom: 80px;
}

.table-group {
  display: flex;
  justify-content: space-between;
}

.table-group.info>input {
  width: 200px;
  height: 44px;
  border: 1px solid #D3D3D3;
  padding: 0 15px;
}

.table-group>label {
  cursor: pointer;
}

.table-group>label>input {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-right: 7px;
}

.table-group>textarea {
  width: 100%;
  padding: 15px;
  resize: none;
  height: 100px;
}

.checklist {
  margin: 20px 0;
  font-size: 13px;
  color: rgba(33, 33, 33, 1);
}

.warn>p {
  font-size: 14px;
  margin: 10px 0 20px;
}

.warn>p>span {
  color: #E7927C;
}

.table-group>a {
  display: block;
  width: 100%;
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  background: rgba(118, 179, 37, 1);
  border-radius: 4px;
}

.background-item .active-bj {
  opacity: 1;
}