@font-face {
  font-family: "SHRegular";
  src: url(../fonts/SourceHanSansCN-Regular.eot) format('embedded-opentype'), url(../fonts/SourceHanSansCN-Regular.otf) format('otf'), url(../fonts/SourceHanSansCN-Regular.ttf) format('truetype');
}
@font-face {
  font-family: "SHLight";
  src: url(../fonts/SourceHanSansCN-Light.eot) format('embedded-opentype'), url(../fonts/SourceHanSansCN-Light.otf) format('otf'), url(../fonts/SourceHanSansCN-Light.ttf) format('truetype');
}
@font-face {
  font-family: "HKGrotesk";
  src: url(../fonts/HKGrotesk-Regular-9.eot) format('embedded-opentype'), url(../fonts/HKGrotesk-Regular-9.otf) format('otf'), url(../fonts/HKGrotesk-Regular-9.ttf) format('truetype');
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.fleximportant {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
}
.inlineflex {
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
}
.d_flex > * {
  display: block;
}
/*伸缩流方向*/
.f_direction_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_direction_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/*主轴对齐*/
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/*侧轴对齐*/
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
/*伸缩性*/
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/*显示顺序*/
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/*单行溢出*/
.ord1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ord2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ord3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.donghua {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.fangda {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.xuanzhuan {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}
.mark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  display: none;
}
.dszzcbox {
  width: 1480px;
  height: 100%;
  z-index: 999;
  max-width: 80%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  padding: 90px 40px 0px 58px;
  display: none;
}
.dszzcbox .article {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 0 30px;
}
.dszzcbox .article::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.dszzcbox .article::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 5px;
}
.dszzcbox .article::-webkit-scrollbar-track {
  background: #fff;
}

.dszzcbox p {
  font-size: 18px;
  color: #000;
  line-height: 38px;
  margin-bottom: 35px;
  text-align: justify;
}
.dszzcbox section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.dszzcbox section div {
  margin-right: -10%;
}
.dszzcbox section img {
  max-width: 50%;
}
.dszzcbox a.close_dszzc {
  position: absolute;
  /* right: -75px; */
  right: -16%;
  top: 28px;
  width: 50px;
  height: 50px;
  background: url(../images/close.png) no-repeat center;
}
.ljdybox {
  width: 790px;
  height: 100%;
  z-index: 999;
  max-width: 80%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  display: none;
}
.ljdybox form {
  padding: 80px 20% 120px 9.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  height: 100%;
  overflow-y: scroll;
}
.ljdybox form::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.ljdybox form::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 5px;
}
.ljdybox form::-webkit-scrollbar-track {
  background: #fff;
}
.ljdybox form h3 {
  font-size: 36px;
  margin-bottom: 36px;
  font-weight: 600;
}
.ljdybox form p {
  font-size: 20px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 60px;
}
.ljdybox form .inputs {
  margin-bottom: 60px;
}
.ljdybox form .inputs input {
  border: none;
  border-bottom: 1px solid #000;
  line-height: 40px;
  height: 40px;
  margin-bottom: 15px;
  width: 100%;
}
.ljdybox form .inputs input::-webkit-input-placeholder {
  color: #000;
}
.ljdybox form .inputs input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #000;
}
.ljdybox form .inputs input::-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #000;
}
.ljdybox form .inputs input::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}
.ljdybox form label {
  font-size: 16px;
  color: #000000;
  position: relative;
  margin-bottom: 25px;
  display: block;
}
.ljdybox form label input {
  width: 20px;
  margin-right: 8px;
  opacity: 0;
}
.ljdybox form label input:checked + span::after {
  display: inline-block;
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  bottom: 0;
  border: none;
  background: url(../images/gou.png) no-repeat center;
}
.ljdybox form label span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 2px;
}
.ljdybox form .btna {
  width: 160px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #000;
  color: #fff;
  font-size: 18px;
  margin-top: 50px;
  display: block;
}
.ljdybox a.close_ljdy {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 25px;
  top: 30px;
  background: url(../images/closeb.png) no-repeat center;
}
.horNav .swiper-wrapper {
  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;
}
.horNav .swiper-slide {
  width: 160px;
  height: 50px;
  background: #f7f7f7;
  color: #000000;
  margin: 0 2px;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.horNav .swiper-slide.cur {
  background: #000000;
  color: #fff;
}
.honnors {
  margin-top: 68px;
}
.honnors .listSwiper {
  z-index: 0;
  opacity: 0;
  height: 0;
}
.honnors .listSwiper.cur {
  z-index: 1;
  opacity: 1;
  height: auto;
}
.honnors .listSwiper .dots2 {
  margin-top: 45px;
  text-align: center;
}
.honnors .listSwiper .dots2 .dot {
  display: inline-block;
  vertical-align: middle;
  width: 11px;
  height: 11px;
  background: #e5e5e5;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}
.honnors .listSwiper .dots2 .dot.on {
  background: #8e1010;
}
.honnors .listSwiper .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.honnors .listSwiper .swiper-slide a .imgbox {
  width: 47.6%;
  background: #f2f2f2;
  padding: 75px 0 70px;
}
.honnors .listSwiper .swiper-slide a .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 47.6%;
}
.honnors .listSwiper .swiper-slide a .text h3 {
  font-size: 36px;
  margin-bottom: 54px;
}
.honnors .listSwiper .swiper-slide a .text .txt {
  text-align: left;
}
.ab6 {
  padding: 120px 0;
  background: #f7f7f7;
}
.ab6 .auto_1460 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -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;
}
.ab6 h3 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 49px;
}
.ab6 .btn {
  width: 280px;
  height: 60px;
  display: block;
  text-align: center;
  line-height: 60px;
  background: #000;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.ab6 .btn:hover {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}
.bannerbox {
  margin-bottom: 0;
}
.bannerbox .pbannerText p {
  text-transform: uppercase;
  font-family: "HKGrotesk";
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.8px;
}
.bannerbox2 .pbannerText p {
  text-transform: uppercase;
  font-family: "HKGrotesk";
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.8px;
}
.sectop2 {
  background: #f7f7f7;
  margin-bottom: 120px;
}
.sectop2 .auto_1460 {
  padding-top: 32px;
  padding-bottom: 32px;
  background: transparent;
}
.ywfw_index section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 84px;
}
.ywfw_index section img {
  width: 47%;
}
.ywfw_index section .art {
  width: 46%;
}
.ywfw_index section .art h3 {
  font-size: 40px;
  font-weight: bold;
  padding-left: 50px;
  background: url(../images/textbefore.png) no-repeat left 10px;
  margin-bottom: 10px;
}

.ywfw_index section.s2 .art h3{
  padding-left: 0;
  background: none;
  font-size: 30px;
}
.ywfw_index.zxns_ywfw section .art h3{
  padding-left: 0;
  background: none;
}

.ywfw_index section .art p {
  font-size: 16px;
  color: #333333;
  line-height: 32px;
  font-family: "SHLight";
  text-align: justify;
}
.ywfw_index section .art li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  margin: 50px 0;
  border-bottom: 1px solid #999999;
}
.ywfw_index section:nth-child(odd) img {
  order: 2;
}
.ywfw_index section:nth-child(odd) .art {
  order: 1;
}
.ywfw_index .info_banner {
  height: 520px;
  min-height: 520px;
  background-repeat: no-repeat;
  background-size: cover;
}
.ywfw_index .info_banner .auto_1460 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ywfw_index .info_banner .auto_1460 .art {
  width: 730px;
  max-width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  font-family: "SHLight";
  position: relative;
  text-align: justify;
}
.ywfw_index .info_banner .auto_1460 .art p{
  display: inline;
  text-align: justify;
}
.ywfw_index .info_banner .auto_1460 .art:before {
  content: '';
  width: 26px;
  height: 22px;
  background: url(../images/textbefore.png) no-repeat center;
  position: absolute;
  top: -26px;
  left: 0;
}
.ywfw_index .info_banner .auto_1460 .art i {
  position: relative;
}
.ywfw_index .info_banner .auto_1460 .art i:after {
  content: '';
  width: 26px;
  height: 22px;
  background: url(../images/textafter.png) no-repeat center;
  position: absolute;
  bottom: -20px;
  right: -26px;
}
.ywfw_index .section3 {
  padding: 80px 0 180px;
}
.ywfw_index .section3.section4 {
  padding-bottom: 130px;
}
.ywfw_index .section3 h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 25px;
}
.ywfw_index .section3 p {
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  text-align: justify;
}
.ywfw_index .section3 h4 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 30px 0 15px;
}
.ywfw_index .section3 h5 {
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  text-align: center;
}
.ywfw_index .section3 .certify {
  width: 100%;
  position: relative;
  margin-top: 80px;
}
.ywfw_index .section3 .certify .swiper-slide {
  width: 570px;
  height: 380px;
  cursor: pointer;
}
.ywfw_index .section3 .certify .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.ywfw_index .section3 .certify .swiper-slide h4,
.ywfw_index .section3 .certify .swiper-slide h5 {
  display: none;
}
.ywfw_index .section3 .certify .swiper-button-prev,
.ywfw_index .section3 .certify .swiper-button-next {
  width: 50px;
  height: 50px;
  color: #fff;
  background: none;
  line-height: 50px;
  outline: none;
}
.ywfw_index .section3 .certify .swiper-button-prev i,
.ywfw_index .section3 .certify .swiper-button-next i {
  font-size: 50px;
}
.ywfw_index .section3 .certify .swiper-button-prev {
  left: 60px;
}
.ywfw_index .section3 .certify .swiper-button-next {
  right: 60px;
}
.ywfw_index .section3 .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: 50px;
}
.ywfw_index .section3 .items .item {
  width: 350px;
  max-width: 24%;
}
.ywfw_index .section3 .items .item .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 117%;
  position: relative;
}
.ywfw_index .section3 .items .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ywfw_index .section3 .items .item h4 {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
  text-align: left;
}
.ywfw_index .section3 .items .item p {
  font-size: 16px;
  line-height: 30px;
  font-family: "SHLight";
  color: #333333;
  text-align: justify;
}
.bgf7 {
  background: #f7f7f7;
}
.hhr_index {
  padding: 120px 0;
}
.hhr_index ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.hhr_index ul li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 65px;
}
.hhr_index ul li:nth-child(4n) {
  margin-right: 0;
}
.hhr_index ul li .other {
  display: none;
}
.hhr_index ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.hhr_index ul li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 64.7%;
  border-bottom: 1px solid #ff0000;
  position: relative;
}
.hhr_index ul li .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hhr_index ul li h3 {
  font-size: 22px;
  margin: 10px 0 0px;
}
.hhr_index ul li p {
  font-size: 16px;
  color: #999999;
}
.hhrbox {
  width: 1480px;
  height: 100%;
  max-width: 80%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
  display: none;
}
.hhrbox a.close_hhr {
  position: absolute;
  /* right: -75px; */
  right: -16%;
  top: 28px;
  width: 50px;
  height: 50px;
  background: url(../images/close.png) no-repeat center;
}
.hhrbox .otherbox{
  height: 100%;
  overflow-y: scroll;
}

.hhrbox .otherbox::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.hhrbox .otherbox::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 5px;
}
.hhrbox .otherbox::-webkit-scrollbar-track {
  background: #fff;
}


.hhrbox .otherbox > img {
  width: 100%;
}
.hhrbox .otherbox > img.pcimg{display: block;}
.hhrbox .otherbox > img.wapimg{display: none;}

.hhrbox .art {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  height: auto;
  background: #f7f7f7;
}
.hhrbox .art .name {
  position: absolute;
  left: 0;
  top: -50px;
  width: 430px;
  max-width: 80%;
  height: 170px;
  background: rgba(142, 16, 16, 0.95);
  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;
  color: #fff;
}
.hhrbox .art .name section {
  padding-left: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  height: 76px;
}
.hhrbox .art .name section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 76px;
  margin-top: -38px;
  background: #fff;
  width: 1px;
}
.hhrbox .art .name section h3 {
  font-size: 40px;
  line-height: 40px;
}
.hhrbox .art .name section p {
  font-size: 20px;
}
.hhrbox .art .left {
  width: 74%;
  padding: 130px 80px 0 230px;
  background: #fff;
}
.hhrbox .art .left p {
  font-size: 16px;
  line-height: 36px;
  margin-top: 40px;
  text-align: justify;
}
.hhrbox .art .right {
  width: 26%;
  height: 100%;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 50px;
}
.hhrbox .art .right h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}
.hhrbox .art .right p {
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin-top: 20px ;
}
.tzal_index {
  padding: 20px 0 150px;
}
.tzal_index .title {
  margin-top: 100px;
}
.tzal_index .title h3 {
  font-size: 40px;
  font-weight: bold;
}
.tzal_index section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.tzal_index section a {
  width: 14%;
  margin-right: 3.2%;
  height: 80px;
  line-height: 60px;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 60px;
}
.tzal_index section a:nth-child(6n) {
  margin-right: 0;
}
.tzal_index section a img {
  display: inline-block;
  vertical-align: bottom;
}
.tzal_index section a img.hide {
  display: none;
}
.tzal_index section a:hover img.show {
  display: none;
}
.tzal_index section a:hover img.hide {
  display: inline-block !important;
}
.tzal_info {
  padding: 130px 0 160px;
}
.tzal_info section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 100px;
  border-bottom: 1px solid #dcdcdc;
}
.tzal_info section > img {
  width: 48%;
}
.tzal_info section .art {
  width: 50%;
  padding-left: 88px;
}
.tzal_info section .art img {
  max-height: 60px;
}
.tzal_info section .art h3 {
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 50px;
}
.tzal_info section .art p {
  margin-top: 25px;
  font-size: 16px;
  line-height: 32px;
  font-family: "SHLight";
  color: #000000;
  text-align: justify;
}
.newspages {
  margin: 30px 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.newspages a {
  font-size: 16px;
  font-family: "SHLight";
  color: #000000;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pages {
  font-size: 0;
  text-align: center;
  line-height: normal;
  padding: 90px 0;
}
.pages em {
  font-style: normal;
}
.pages a {
  display: inline-block;
  line-height: 28px;
  border: 1px solid transparent;
  font-size: 16px;
  color: #000;
  padding: 10px 19.3px;
  margin: 1px 3px;
}
.pages a.a_prev i,
.pages a.a_next i {
  font-size: 16px;
  text-align: center;
}
.pages a.a_cur,
.pages a:hover {
  background-color: #000000;
  border-color: #000000;
  color: #fff;
}
.pages .a_btn {
  padding: 0 15px;
}
.zryyx_index .title h3 {
  font-size: 40px;
}
.zryyx_index section.s1 {
  padding: 125px 0 155px;
}
.zryyx_index section.s1 .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.zryyx_index section.s1 .items .item {
  width: 30.8%;
  display: block;
}
.zryyx_index section.s1 .items .item .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  position: relative;
}
.zryyx_index section.s1 .items .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.zryyx_index section.s1 .items .item h3 {
  font-size: 40px;
  color: #000000;
  margin: 25px 0 15px;
}
.zryyx_index section.s1 .items .item p {
  font-size: 16px;
  line-height: 32px;
  color: #000000;
  font-family: "SHLight";
  text-align: justify;
}
.zryyx_index section.s2 {
  padding: 140px 0 320px;
}
.zryyx_index section.s2.s3 {
  padding: 80px 0 200px;
}
.zryyx_index section.s2 .esgbox {
  margin: 50px 0 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.zryyx_index section.s2 .esgbox .imgbox {
  width: 60.6%;
}
.zryyx_index section.s2 .esgbox .imgbox img {
  display: block;
  width: 100%;
}
.zryyx_index section.s2 .esgbox .art {
  width: 35.6%;
}
.zryyx_index section.s2 .esgbox .art h4 {
  font-size: 30px;
  line-height: 40px;
  text-align: justify;
}
.zryyx_index section.s2 .esgbox .art span {
  font-size: 14px;
  color: #808080;
  margin: 10px 0;
  display: block;
}
.zryyx_index section.s2 .esgbox .art p {
  font-size: 16px;
  line-height: 32px;
  color: #000000;
  font-family: "SHLight";
  margin: 38px 0;
  text-align: justify;
}
.zryyx_index section.s2 .esgbox .art em {
  font-style: normal;
  font-size: 16px;
  color: #8e1010;
  padding-right: 30px;
  background: url(../images/eye.png) no-repeat right center;
}
.zryyx_index section.s2 .esglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.zryyx_index section.s2 .esglist .esglista {
  width: 32.2%;
  margin-bottom: 70px;
  display: none;
}
.zryyx_index section.s2 .esglist .esglista .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 57.5%;
  position: relative;
}
.zryyx_index section.s2 .esglist .esglista .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.zryyx_index section.s2 .esglist .esglista .art h4 {
  font-size: 20px;
  line-height: 28px;
  height: 56px;
  overflow: hidden;
  color: #000000;
  padding-right: 10%;
  margin: 28px 0 5px;
  text-align: justify;
}
.zryyx_index section.s2 .esglist .esglista .art span {
  font-size: 14px;
  color: #808080;
}
.zryyx_index .info_banner {
  height: 450px;
  min-height: 450px;
  background: #000;
  background-size: cover;
  background-repeat: no-repeat;
}
.zryyx_index .info_banner .auto_1460 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.zryyx_index .info_banner .auto_1460.art2 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.zryyx_index .info_banner .auto_1460.art2 .art {
  width: 77%;
  padding-left: 0;
  padding-right: 20px;
}
.zryyx_index .info_banner .auto_1460.art2 .art:after {
  content: '';
  width: 26px;
  height: 22px;
  background: url(../images/textafter.png) no-repeat center;
  position: absolute;
  top: -26px;
  right: -26px;
}
.zryyx_index .info_banner .auto_1460.art2 .art:before {
  left: -26px;
}
.zryyx_index .info_banner .auto_1460 img {
  width: 47%;
  position: absolute;
  left: 0;
  top: -120px;
}
.zryyx_index .info_banner .auto_1460 .art {
  width: 50%;
  max-width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  font-family: "SHLight";
  position: relative;
  text-indent: 36px;
  padding-left: 3%;
  text-align: justify;
}
.zryyx_index .info_banner .auto_1460 .art:before {
  content: '';
  width: 26px;
  height: 22px;
  background: url(../images/textbefore.png) no-repeat center;
  position: absolute;
  top: -26px;
  left: 0;
}
.zryyx_index .info_banner .auto_1460 .art i {
  position: relative;
}
.zryyx_index .info_banner .auto_1460 .art i:after {
  content: '';
  width: 26px;
  height: 22px;
  background: url(../images/textafter.png) no-repeat center;
  position: absolute;
  bottom: -20px;
  right: -26px;
}
.zryyx_index .hzhb {
  padding: 155px 0 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -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;
}
.zryyx_index .hzhb h3 {
  text-align: center;
}
.zryyx_index .hzhb p.p1 {
  padding: 0 157px;
  text-align: center;
  font-size: 16px;
  font-family: "SHLight";
  line-height: 32px;
  margin: 52px auto 40px;
  text-align: justify;
}
.zryyx_index .hzhb .list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.zryyx_index .hzhb .list a {
  width: 16.5%;
  height: 95px;
  border: 1px solid #c6c6c6;
  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;
  margin-right: 0.2%;
  margin-bottom: 5px;
}
.zryyx_index .hzhb .list a:nth-child(6n){
  margin-right: 0;
}
.zryyx_index .hzhb .list a img{
  max-width: 100%;
  max-height: 100%;
}

.zryyx_index .ab6 {
  background: #fff;
}
.morea {
  position: relative;
  display: block;
  width: 210px;
  height: 56px;
  border: 1px solid #000;
  text-align: center;
  line-height: 56px;
  margin: 0px auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.morea i {
  font-size: 20px;
  margin-left: 10px;
}
.morea:hover {
  background: #000;
  color: #fff;
}
.news_index {
  padding: 120px 0 ;
}
.news_index .news_meun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #e5e5e5;
}
.news_index .news_meun a {
  display: block;
  width: 160px;
  height: 50px;
  background: #f7f7f7;
  text-align: center;
  line-height: 50px;
  color: #000000;
  font-size: 18px;
  margin-right: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.news_index .news_meun a.cur {
  background: #000;
  color: #fff;
}
.news_index .zryyx_index section.s2 {
  padding: 90px 0 68px;
}
.news_index .zryyx_index section.s2 .esgbox {
  margin: 0;
}
.news_index .news_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}
.news_index .news_list li a .imgbox {
  width: 22%;
}
.news_index .news_list li a .imgbox .img {
  width: 100%;
  height: 0;
  padding-bottom: 57%;
}
.news_index .news_list li a .art {
  width: 65%;
}
.news_index .news_list li a .art h4 {
  font-size: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_index .news_list li a .art p {
  font-size: 14px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-family: "SHLight";
  margin: 13px 0 12px;
  text-align: justify;
}
.news_index .news_list li a .art em {
  font-size: 16px;
  color: #999999;
  padding-right: 30px;
  font-style: normal;
  background: url(../images/eye2.png) no-repeat right center;
}
.news_index .news_list li a .time {
  width: 7.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -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;
  height: 180px;
  background: #f7f7f7;
}
.news_index .news_list li a .time span {
  font-size: 44px;
  color: #8e1010;
}
.news_index .news_list li a .time em {
  font-style: normal;
  font-size: 16px;
  color: #808080;
}
.news_info {
  padding: 120px 0;
}
.news_info .news_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.news_info .news_title .left {
  width: calc(100% - 110px);
}
.news_info .news_title .left h4 {
  font-size: 32px;
  color: #000;
  margin-bottom: 5px;
}
.news_info .news_title .left p {
  font-size: 14px;
  color: #808080;
  font-family: "SHLight";
}
.news_info .news_title .left p span {
  margin-right: 38px;
}
.news_info .news_title a {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-family: "SHLight";
}
.news_info .news_content {
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e5e5e5;
}

.news_info .news_content .items{
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  
}
.news_info .news_content .items .item{
  width: 710px;
  margin-bottom: 30px;
}
.news_info .news_content .items .item img{
  width: 100%;
}

.news_info .news_content p {
  font-size: 16px;
  color: #000000;
  line-height: 32px;
  font-family: "SHLight";
  margin-bottom: 40px;
}
.contact_index section.s1 {
  padding: 110px 0 150px;
}
.contact_index section.s1.s3 {
  padding: 155px 0;
}
.contact_index section.s1.s3 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.contact_index section.s1.s3 .item p {
  width: calc(100% - 240px);
}
.contact_index section.s1.s3 .item div {
  width: 200px;
  margin-top: 30px;
}
.contact_index section.s1.s3 .item div a {
  margin-left: 15px;
}
.contact_index section.s1.s3 .item div a img{
  max-width: 82px;
  max-height: 82px;
}

.contact_index section.s1 h3 {
  font-size: 40px;
  font-weight: bold;
}
.contact_index section.s1 p {
  font-size: 16px;
  color: #000000;
  line-height: 32px;
  font-family: "SHLight";
  margin-top: 30px;
  text-align: justify;
}
.contact_index section.s1 p a {
  color: #8e1010;
}
.contact_index section.s1 .gwxqa {
  display: block;
  width: 210px;
  height: 56px;
  text-align: center;
  line-height: 56px;
  border: 2px solid #000;
  color: #000;
  margin: 70px auto -25px;
}
.contact_index section.s1 .gwxqa:hover {
  background: #000;
  color: #fff;
}
.contact_index section.s2 {
  height: 900px;
  overflow: hidden;
  background-size: cover;
}
.contact_index section.s2 .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}
.contact_index section.s2 .contacts .left h4 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}
.contact_index section.s2 .contacts .left .tabtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 600px;
  max-width: 100%;
  margin: 70px 0 65px;
}
.contact_index section.s2 .contacts .left .tabtitle a {
  width: 190px;
  height: 60px;
  border: 1px solid #313131;
  color: #fff;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact_index section.s2 .contacts .left .tabtitle a.cur {
  background: #8e1010;
}
.contact_index section.s2 .contacts .left .tabbox1 > div {
  display: none;
}
.contact_index section.s2 .contacts .left .tabbox1 .linka{display: none;}
.contact_index section.s2 .contacts .left .tabbox1 > div.cur {
  display: block;
}
.contact_index section.s2 .contacts .left .tabbox1 > div .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 45px;
}
.contact_index section.s2 .contacts .left .tabbox1 > div .item .img {
  width: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.contact_index section.s2 .contacts .left .tabbox1 > div .item .img img {
  max-width: 50px;
}
.contact_index section.s2 .contacts .left .tabbox1 > div .item .art p {
  font-size: 16px;
  color: #fff;
}
.contact_index section.s2 .contacts .right.tabbox {
  width: 50%;
}
.contact_index section.s2 .contacts .right.tabbox > div {
  display: none;
  width: 100%;
  height: 0;
  padding-bottom: 86%;
  position: relative;
}
.contact_index section.s2 .contacts .right.tabbox > div > div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.contact_index section.s2 .contacts .right.tabbox > div > div#map img{
  max-width: none;
}
.contact_index section.s2 .contacts .right.tabbox > div.cur {
  display: block;
}
.zxns_index .title {
  padding: 145px 0 0px;
  margin-bottom: 30px;
}
.zxns_index .title h3 {
  font-size: 40px;
  text-align: center;
}
.zxns_index .search_form {
  width: 730px;
  height: 60px;
  border: 1px solid #000;
  max-width: 100%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 70px auto 60px;
}
.zxns_index .search_form input {
  width: calc(100% - 160px);
  height: 100%;
  border: none;
  line-height: 60px;
  text-indent: 20px;
  font-size: 16px;
  color: #999999;
}
.zxns_index .search_form a {
  width: 160px;
  height: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 60px;
  display: block;
}
.news_index .zxns_index .search_form{
  margin: 70px auto 0;
}

.zxns_index section.s1 {
  padding: 60px 40px;
}
.zxns_index section.s1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: 30px;
  padding: 0 40px;
}
.zxns_index section.s1 ul:first-child {
  margin-top: 0;
}
.zxns_index section.s1 ul li:first-child {
  margin-right: 25px;
}
.zxns_index section.s1 ul li a {
  display: block;
  padding: 5px 20px;
}
.zxns_index section.s1 ul li a.cur {
  background: #000;
  color: #fff;
}
.zxns_index h5 {
  font-size: 16px;
  font-family: "SHLight";
  color: #000000;
  margin: 10px 0 65px;
}
.zxns_index h5 b {
  font-size: 30px;
}
.zxns_index .zw_list li a{
  border: 1px solid #ebebeb;
  padding: 50px 30px 40px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.zxns_index .zw_list li .art {
  width: calc(100% - 100px);
}
.zxns_index .zw_list li .art h4 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
}
.zxns_index .zw_list li .art p {
  font-size: 16px;
  font-family: "SHLight";
}
.zxns_index .zw_list li .art p span {
  margin-right: 19px;
  padding-right: 20px;
  position: relative;
  float: left;
  min-width: 52px;
}
.zxns_index .zw_list li .art p span:last-child:after {
  display: none;
}
.zxns_index .zw_list li .art p span:after {
  content: '';
  width: 1px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  background: #dddddd;
}

.zxns_index .zw_list li i{
  width: 90px;
  font-size: 14px;
  font-family: "SHLight";
  font-style: normal;
}
.zxns_info {
  padding: 130px 0 140px;
}
.zxns_info .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 45px;
  border-bottom: 1px solid #999999;
}
.zxns_info .top .art h3 {
  font-size: 40px;
  color: #000000;
  margin-bottom: 10px;
}
.zxns_info .top .art p {
  font-size: 16px;
  font-family: "SHLight";
}
.zxns_info .top .art p span {
  margin-right: 19px;
  padding-right: 20px;
  position: relative;
}
.zxns_info .top .art p span:last-child:after {
  display: none;
}
.zxns_info .top .art p span:after {
  content: '';
  width: 1px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  background: #dddddd;
}
.zxns_info .top p.right {
  font-size: 16px;
  font-family: "SHLight";
}
.zxns_info .top p.right a {
  color: #8e1010;
}
.zxns_info .con h4 {
  margin: 90px 0 20px;
  font-size: 26px;
  font-weight: bold;
}
.zxns_info .con p {
  font-size: 16px;
  color: #333333;
  font-family: "SHLight";
  line-height: 36px;
  text-align: justify;
}
@media (max-width: 1400px) {
  .sectop .item {
    width: 240px;
    padding: 0 20px;
  }
  .title h3 {
    font-size: 34px;
  }
  .ptop .pbannerText h3 {
    font-size: 50px;
  }
  .ywfw_index .section3 h3,
  .contact_index section.s1 h3,
  .zxns_info .top .art h3 {
    font-size: 30px;
  }
  .ywfw_index section .art h3,
  .ywfw_index .section3 .items .item h4,
  .zxns_info .con h4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title h3,
  .ptop .pbannerText h3 {
    font-size: 24px;
  }
  .ptop .pbannerText {
    margin-top: -20px;
    font-size: 24px;
  }
  .sectop .item {
    width: auto;
    padding: 0 10px;
  }
  .title {
    margin-bottom: 30px;
  }
  .habout .l .text,
  .fullLine .text {
    margin-bottom: 40px;
  }
  .bannerbox,
  .bannerbox2 {
    height: 220px;
    overflow: hidden;
  }
  .bannerbox .pbanner,
  .bannerbox2 .pbanner {
    height: 100%;
  }
  .bannerbox .pbanner img,
  .bannerbox2 .pbanner img {
    height: 100%;
    object-fit: cover;
  }
  .sectop2 {
    margin-bottom: 0px;
  }
  .sectop2 .item {
    width: 48%;
    max-width: 50%;
    margin-bottom: 10px;
  }
  .ywfw_index section {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .ywfw_index section img {
    width: 100%;
  }
  .ywfw_index section .art {
    width: 100%;
  }
  .ywfw_index section .art h3 {
    background: url(../images/textbefore.png) no-repeat left 5px;
  }
  .ywfw_index section .art li a {
    margin: 30px 0;
  }
  .ywfw_index .info_banner .auto_1460 .art {
    font-size: 14px;
    line-height: 24px;
  }
  .ywfw_index .section3 {
    padding: 30px 0 50px;
  }
  .ywfw_index .section3 .certify {
    margin-top: 50px;
  }
  .ywfw_index .section3 .certify .swiper-slide{
    height: 250px;
  }
  .ywfw_index .section3 .certify .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  .ywfw_index .section3 .certify .swiper-button-next {
    right: 20px;
  }
  .ywfw_index .section3 .certify .swiper-button-prev {
    left: 20px;
  }
  .ywfw_index .section3 .items {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-top: 30px;
  }
  .ywfw_index .section3 .items .item {
    max-width: 49%;
    margin-bottom: 10px;
  }
  .ywfw_index .section3 .items .item h4 {
    font-size: 18px;
  }
  .ywfw_index .section3.section4 {
    padding-bottom: 30px;
  }
  .ywfw_index .section3 h3,
  .contact_index section.s1 h3,
  .zxns_info .top .art h3,
  .ywfw_index .section3 h4 {
    font-size: 24px;
  }
  .hhr_index {
    padding: 30px 0;
  }
  .hhr_index ul li {
    width: 49.5%;
    margin-right: 1%;
    margin-bottom: 30px;
  }
  .hhr_index ul li:nth-child(4n) {
    margin-right: 1%;
  }
  .hhr_index ul li:nth-child(2n) {
    margin-right: 0%;
  }
  .hhrbox > img {
    height: 200px;
  }
  .hhrbox a.close_hhr {
    width: 40px;
    height: 40px;
    background-size: 40px;
    right: -50px;
  }
  .hhrbox .art {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .hhrbox .art .left {
    margin-top: 40px;
    padding: 10px;
    width: 100%;
  }
  .hhrbox .art .left p {
    margin-top: 20px;
    line-height: 1.5;
  }
  .hhrbox .art .right {
    width: 100%;
    padding: 10px;
  }
  .hhrbox .art .name {
    height: 60px;
    top: -30px;
    width: 60%;
  }
  .hhrbox .art .name section {
    height: 60px;
  }
  .hhrbox .art .name section::before {
    height: 50px;
    margin-top: -25px;
  }
  .hhrbox .art .name section h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .hhrbox .art .name section p {
    font-size: 16px;
    line-height: 30px;
  }
  .tzal_index {
    padding: 20px 0 30px;
  }
  .tzal_index .title {
    margin-top: 30px;
  }
  .tzal_index .title h3 {
    font-size: 24px;
  }
  .tzal_index section a {
    width: 31.5%;
    margin-right: 2.5%;
    margin-bottom: 30px;
  }
  .tzal_index section a:nth-child(6n) {
    margin-right: 2.5%;
  }
  .tzal_index section a:nth-child(3n) {
    margin-right: 0%;
  }
  .tzal_info {
    padding: 30px 0;
  }
  .tzal_info section {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .tzal_info section > img {
    width: 100%;
  }
  .tzal_info section .art {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .tzal_info .newspages {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .tzal_info .newspages a {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .zryyx_index section.s1 {
    padding: 30px 0;
  }
  .zryyx_index section.s1 .items {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zryyx_index section.s1 .items .item {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .zryyx_index section.s1 .items .item h3 {
    font-size: 24px;
    margin: 15px 0 5px;
  }
  .zryyx_index section.s2 {
    padding: 30px 0;
  }
  .zryyx_index section.s2 .esgbox {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 30px 0;
  }
  .zryyx_index section.s2 .esgbox .imgbox {
    width: 100%;
  }
  .zryyx_index section.s2 .esgbox .art {
    width: 100%;
    margin-top: 30px;
  }
  .zryyx_index section.s2 .esgbox .art p {
    margin: 25px 0;
  }
  .zryyx_index section.s2 .esglist .esglista {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .zryyx_index section.s2 .esglist .esglista .art h4 {
    font-size: 18px;
    margin: 10px 0 5px;
    padding-right: 5%;
  }
  .morea {
    width: 150px;
    height: 50px;
    line-height: 50px;
  }
  .zryyx_index .info_banner .auto_1460 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .zryyx_index .info_banner .auto_1460 img {
    width: 70%;
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
  .zryyx_index .info_banner .auto_1460 .art {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .zryyx_index section.s2.s3 {
    padding: 30px 0;
  }
  .zryyx_index .title h3 {
    font-size: 24px;
  }
  .zryyx_index .hzhb {
    padding: 30px 0;
  }
  .zryyx_index .hzhb p.p1 {
    padding: 0 10px;
    margin: 20px 0;
  }
  .zryyx_index .hzhb .list {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zryyx_index .hzhb .list a {
    width: 49%;
    margin-bottom: 10px;
    margin-right: 2%;
  }
  .zryyx_index .hzhb .list a:nth-child(2n){
    margin-right: 0;
  }
  .ab6 {
    padding: 50px 0;
  }
  .ab6 h3 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .ab6 .btn {
    width: 200px;
    height: 50px;
    line-height: 50px;
  }
  .ljdybox form h3 {
    font-size: 24px;
  }
  .ljdybox a.close_ljdy {
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
  .news_index {
    padding: 30px 0;
  }
  .news_index .zryyx_index section.s2 {
    padding: 30px 0;
  }
  .zryyx_index section.s2 .esgbox .art h4 {
    font-size: 24px;
  }
  .news_index .news_list li a {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    position: relative;
  }
  .news_index .news_list li a .art p{
    -webkit-line-clamp: 2;
  }
  .news_index .news_list li a .imgbox {
    width: 49%;
    display: none;
  }
  .news_index .news_list li a .art {
    width: 100%;
  }
  .news_index .news_list li a .art h4 {
    font-size: 20px;
  }
  .news_index .news_list li a .time {
    width: 49%;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 40px;
    position: absolute;
    left: 0;
    bottom: 40px;
    display: none;
  }
  .news_index .news_list li a .time em {
    margin-right: 10px;
  }
  .news_index .news_list li a .time span {
    order: 2;
    font-size: 20px;
    margin-top: -5px;
  }
  .pages {
    padding: 40px 0;
  }
  .pages a {
    padding: 0px 8px;
    font-size: 14px;
  }
  .news_info {
    padding: 30px 0;
  }
  .news_info .news_title {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .news_info .news_title .left {
    width: 100%;
  }
  .news_info .news_title .left h4 {
    font-size: 24px;
  }
  .news_info .news_title .left p span {
    margin-right: 15px;
  }
  .news_info .news_title a {
    margin-top: 20px;
  }
  .news_info .news_content p,
  .news_info .news_content img {
    margin-bottom: 30px;
  }
  .newspages {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .newspages a {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
  .contact_index section.s1 {
    padding: 30px 0;
  }
  .contact_index section.s2 {
    height: 750px;
    overflow: hidden;
    background-size: cover;
  }
  .contact_index section.s2 .contacts {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .contact_index section.s2 .contacts .left {
    width: 100%;
  }
  .contact_index section.s2 .contacts .left h4 {
    font-size: 24px;
  }
  .contact_index section.s2 .contacts .left .tabtitle {
    margin: 10px 0;
  }
  .contact_index section.s2 .contacts .left .tabtitle a {
    width: 32.5%;
    margin-right: 0.5%;
    height: 50px;
    line-height: 50px;
  }
  .contact_index section.s2 .contacts .left .tabbox1{
    margin: 5px 0;
  }
  .contact_index section.s2 .contacts .left .tabbox1 > div .item {
    margin-bottom: 10px;
  }
  .contact_index section.s2 .contacts .left .tabbox1 > div .item .img{
    width: 40px;
  }
  .contact_index section.s2 .contacts .left .tabbox1 > div .item .img img {
    max-width: 30px;
  }
  .contact_index section.s2 .contacts .right.tabbox {
    width: 100%;
  }
  .contact_index section.s1.s3 {
    padding: 30px 0;
  }
  .contact_index section.s1.s3 .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .contact_index section.s1.s3 .item p {
    width: 100%;
  }
  .contact_index section.s1 .gwxqa {
    margin: 50px auto 25px;
  }
  .zxns_index .title {
    padding: 30px 0;
    margin-bottom: 0;
  }
  .zxns_index .title h3 {
    font-size: 24px;
  }
  .zxns_index .search_form a {
    width: 100px;
  }
  .zxns_index .search_form input {
    width: calc(100% - 100px);
    text-indent: 10px;
  }
  .news_index .zxns_index .search_form{
    margin: 25px 4% 0;
    width: 92%;
  }
  .zxns_index section.s1 {
    padding: 30px 10px;
  }
  .zxns_index section.s1 ul {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 0;
    padding-left: 90px;
    position: relative;
  }
  .zxns_index section.s1 ul li:first-child {
    position: absolute;
    left: 0;
    margin-right: 0;
    text-align: left;
  }
  .zxns_index section.s1 ul li a{
    min-width: 105px;
    text-align: center;
  }
  .zxns_index section.s1 ul li:first-child a {
    padding: 5px;
    width: 80px;
    text-align: left;
  }
  .zxns_index h5 {
    margin: 10px 0 15px;
  }
  .zxns_index .zw_list li a{
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 30px;
  }
  .zxns_index .zw_list li .art {
    width: 100%;
  }
  .zxns_index .zw_list li i {
    margin-top: 15px;
  }
  .zxns_info {
    padding: 30px 0;
  }
  .zxns_info .top {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-bottom: 30px;
  }
  .zxns_info .top .right {
    margin-top: 10px;
  }
  .zxns_info .con h4 {
    margin: 30px 0 15px;
  }

  .ab1 {
    margin-bottom: 80px;
    margin-top: -100px;
  }
  .ab2 .text {
    width: 100%;
  }
  .marginbt130 {
    margin-bottom: 30px;
  }
  .slideText .swiper-slide .text h3 {
    font-size: 24px;
  }
  .slideText .swiper-slide .imgbox {
    max-width: 100%;
  }
  .slideText .swiper-slide .text {
    width: 100%;
  }
  .newsSlide.swiperSlide .prev,
  .newsSlide.swiperSlide .next {
    margin-top: -60px;
    background: #f7f7f7;
  }

  .ab3 .swiperSlide .prev,
  .ab3 .swiperSlide .next {
    margin-top: 400px;
    top: 0%;
    background: #fff;
  }

  .ab3 .swiperSlide .dots2{
    margin-top: 25px;
  }

  .ab4 .flex {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 50px 0;
  }
  .ab4 .sec {
    width: 100%;
    padding: 0;
  }
  .ab4 .sec .title {
    margin-bottom: 30px;
  }
  .ab4 .sec:nth-child(2) {
    padding-top: 30px;
  }
  .horNav .swiper-slide {
    max-width: 32%;
  }
  .honnors .listSwiper .swiper-slide a .imgbox {
    padding: 30px 25px;
  }
  .honnors .listSwiper .swiper-slide a .text h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .ab4 .sec .text{
    padding-top: 25px;
    margin-top: 20px;
    line-height: 1.5;
    font-size: 16px;
  }
  .ab4 .sec .text p{
    white-space:pre-wrap!important;
  }
  .slideText .swiper-slide .text li{
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .slideText .swiper-slide .text li:after{
    width: 30px;
    height: 30px;
    left: 5px;
    margin-top: -15px;
  }
}


#Inves,#Angle,#fund,#investment5{
  margin-top: -130px;
  padding-top: 130px;
}

.bshare-custom a{
  padding-left: 0!important;
  display: inline-block!important;
  height: auto!important;
}
#bsWXBox{
    margin-left: -116px!important;
    margin-top: -128px!important;
    position: fixed;
    height: 256px!important;
    width: 232px!important;
}

@media (max-width: 768px) {
  #Inves,#Angle,#fund,#investment5{
    margin-top: -80px;
    padding-top: 80px;
  }
  .target-fix {
    display: block;
    height: 1px;
    visibility: hidden;
    margin-top: -80px;
    padding-top: 80px;
  }
  .dszzcbox{
    padding:20px 10px;
  }
  .dszzcbox .article{
    padding: 0;
  }
  .dszzcbox section{
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    position: relative;
  }
  .dszzcbox p{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .dszzcbox p:last-child{
    margin-bottom: 0;
  }
  .dszzcbox section img{
    max-width: 100%;
  }
  .dszzcbox section div{
    margin-right: 0;
  }
  #platform{
    left: 0!important;
    top: 0!important;
  }
  .contact_index section.s2 .contacts .left .tabbox1 > div{
    position: relative;
  }
  .contact_index section.s2 .contacts .left .tabbox1 .linka{
    position: absolute;
    right: 5px;
    bottom: 0;
    width: auto;
    height:35px;
    line-height: 35px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    display: block;
    padding: 0 8px;
  }
}

.BMap_stdMpCtrl div{
  opacity: 0;
}

.ul_sitemap{
  margin: 30px auto 50px;
}
.ul_sitemap li{
  margin-bottom: 10px;
}

/* 20210127 */
.news_index .news_list li a .imgbox .img{
  position: relative;
}
.news_index .news_list li a .imgbox .img img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zryyx_index section.s2 .esglist{
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.zryyx_index section.s2 .esglist a{
  margin-right: 1.7%;
} 
.zryyx_index section.s2 .esglist a:nth-child(3n){
  margin-right: 0;
}
.zryyx_index .info_banner .auto_1460 .art{
  text-indent: 0;
}
.pages a.a_prev,.pages a.a_next{
  position: relative;
}
.pages a.a_next{
  padding-right: 30px;
}
.pages a.a_next i{
  position: absolute;
  right: 10px;
}
.pages a.a_prev{
  padding-left: 30px;
}
.pages a.a_prev i{
  position: absolute;
  left: 10px;
}

.videoitems{
  margin: 30px auto 0;
  text-align: center;
}
.videoitems .openvideo{
  display: inline-block;
  position: relative;
  width: 50%;
}
.videoitems .openvideo video{
  width: 100%;
}
.videoitems .openvideo:before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
}
.videoitems .openvideo:after{
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  background: url(../images/play.png)no-repeat center;
  background-size: 100%;
}
.videobox{
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
}
.videobox .close_video{
  width: 40px;
  height: 40px;
  position: absolute;
  right: 5%;
  top: 5%;
  background: url(../images/close.png) no-repeat center;
  background-size: 100%;
}
.videobox .video{
  width: 100%;
  height: 100%;
  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;
}
.videobox .video video{
  width: 80%;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .videobox .video video{
    width: 90%;
  }
  .zryyx_index .info_banner .auto_1460.art2 .art{
    width: 90%;
    padding-right: 0;
    font-size: 16px;
  }
  .pages a.a_prev{
    padding-left: 15px;
  }
  .pages a.a_prev i{
    left: 0;
  }
  .pages a.a_next{
    padding-right: 15px;
  }
  .pages a.a_next i{
    right: 0;
  }
  .ywfw_index section .art p,
  .ywfw_index .info_banner .auto_1460 .art,
  .ywfw_index .section3 p,
  .ywfw_index .section3 h5,
  .ywfw_index .section3 .items .item p,
  .hhrbox .art .right p,
  .zryyx_index section.s1 .items .item p,
  .zryyx_index section.s2 .esgbox .art p,
  .zryyx_index .info_banner .auto_1460 .art,
  .zryyx_index .info_banner .auto_1460.art2 .art,
  .zryyx_index .hzhb p.p1,
  .contact_index section.s1 p
  {
    font-size: 16px;
    line-height: 1.5;
  }
  .news_index .news_list li a .art p{
    font-size: 16px;
    line-height: 1.5;
  }
  .contact_index section.s1 p a{
    display: inherit;
  }
  .ab1 .imgbox{margin-right: 4%;}
  .zryyx_index .info_banner2{
    padding: 30px 0;
    height: auto;
  }
  .zryyx_index .info_banner2 .auto_1460 img{width: 100%;}
  .zryyx_index .info_banner2 .auto_1460 .art{padding-right: 3%;}
  .dszzcbox a.close_dszzc,.hhrbox a.close_hhr{right: -21%;}
  .ab2 .imgbox{max-width: 75%;}
  .more2{padding-top: 40px;}
  .ab2{padding: 95px 0 50px;}
  .hhrbox .otherbox > img.pcimg{display: none;}
  .hhrbox .otherbox > img.wapimg{display: block;}
}