.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;
}
.donghua {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.fangda {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.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);
}
ul,
li {
  list-style: none;
}
header {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: transparent;
  height: 80px;
  font-size: 16px;
}
header.scroll {
  background: rgba(255, 255, 255);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
header.scroll * {
  color: #000;
}
header.scroll .auto .logo img.img1 {
  display: none;
}
header.scroll .auto .logo img.img2 {
  display: block;
}
header.scroll .auto .right .searchbox a.open-search {
  background: url(../image/search_2.png) no-repeat center center;
  background-size: 100%;
}
header.scroll .auto .right .searchbox a.open-search.on:before,
header.scroll .auto .right .searchbox a.open-search.on:after {
  background: #000;
}
header.scroll .auto .right .tel_a {
  background: url(../image/tel_2.png) no-repeat left center;
  background-size: 16px;
}
header.scroll .auto .right .wap_nav span {
  background: #000;
}
header.scroll .auto .right .wap_nav span:before,
header.scroll .auto .right .wap_nav span:after {
  background: #000;
}
header.scroll .auto .right nav {
  background: rgba(255, 255, 255, 0.8);
}
header.scroll .auto .right nav ul li a {
  color: #000;
}
header.scroll .auto .right nav ul li a:hover {
  color: #47a0ec;
}
header * {
  color: #fff;
}
header .auto {
  height: 100%;
  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;
}
header .auto .logo {
  width: 150px;
}
header .auto .logo img {
  max-width: 100%;
  max-height: 80px;
}
header .auto .logo img.img2 {
  display: none;
}
header .auto .right {
  width: calc(100% - 150px);
  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;
}
header .auto .right .searchbox {
  position: relative;
  margin-right: 21px;
  margin-left: 48px;
}
header .auto .right .searchbox a.open-search {
  display: block;
  width: 16px;
  height: 50px;
  line-height: 50px;
  background: url(../image/search.png) no-repeat center;
  background-size: 100%;
}
header .auto .right .searchbox a.open-search.on {
  background: none!important;
  position: relative;
}
header .auto .right .searchbox a.open-search.on:before,
header .auto .right .searchbox a.open-search.on:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  background: #fff;
  /* transform: rotate(45deg); */
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0;
  top: 50%;
  margin-top: -1.5px;
}
header .auto .right .searchbox a.open-search.on:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .auto .right .searchbox .search-box {
  position: absolute;
  z-index: 100;
  top: 100%;
  right: 0;
  display: none;
  border: 10px solid transparent;
  border-right-width: 0;
  width: 300px;
}
header .auto .right .searchbox .search-box .text {
  line-height: 45px;
  height: 45px;
  padding: 0 45px 0 10px;
  border: 1px solid #eee;
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  color: #333;
}
header .auto .right .searchbox .search-box a {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45px;
  background: url(../image/icon_search_hover.png) no-repeat center center;
}
header .auto .right .tel_a {
  display: block;
  /* line-height: 50px; */
  padding-left: 25px;
  background: url(../image/tel.png) no-repeat left center;
  white-space: nowrap;
  overflow: hidden;
  background-size: 16px;
  line-height: 25px;
}
header .auto .right nav {
  line-height: 50px;
}
header .auto .right nav ul {
  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;
}
header .auto .right nav ul li {
  margin-left: 30px;
  position: relative;
}
header .auto .right nav ul li > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  white-space: nowrap;
}
header .auto .right nav ul li#m3 section {
  width: 200px;
}
header .auto .right nav ul li.aon > a {
  color: #1798fc;
}
header .auto .right nav ul li.on section {
  z-index: 0;
  opacity: 1;
  top: 100%;
  padding: 10px 0;
  height: auto;
  overflow: visible;
}
header .auto .right nav ul li section {
  z-index: -1;
  opacity: 0;
  position: absolute;
  width: 120px;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  padding: 0px 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .auto .right nav ul li section:after {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  content: '';
  border: solid transparent;
  border-width: 10px;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
}
header .auto .right nav ul li section a {
  line-height: 35px;
  color: #000;
  display: block;
  text-align: center;
}
header .auto .right nav ul li section a:hover {
  color: #47a0ec;
}
header .auto .right nav ul li#m139 section {
  width: 200px;
}
header .auto .right .wap_nav {
  width: 30px;
  height: 30px;
  display: block;
  line-height: 30px;
  position: relative;
  display: none;
}
header .auto .right .wap_nav.on span {
  background: transparent;
}
header .auto .right .wap_nav.on span:before {
  transform: rotate(45deg);
  top: 0px;
  height: 2px;
}
header .auto .right .wap_nav.on span:after {
  transform: rotate(-45deg);
  top: 0px;
  height: 2px;
}
header .auto .right .wap_nav span {
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
}
header .auto .right .wap_nav span:before,
header .auto .right .wap_nav span:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #fff;
}
header .auto .right .wap_nav span:before {
  top: -10px;
}
header .auto .right .wap_nav span:after {
  top: 10px;
}
.header_div {
  height: 80px;
}
.banner_index .swiper-pagination {
  bottom: 30px;
}
.banner_index .swiper-slide a img.pcimg {
  display: block;
}
.banner_index .swiper-slide a img.wapimg {
  display: none;
}
.banner_index .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px!important;
  background: #fff;
  opacity: 1;
}
.banner_index .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 42px;
  border-radius: 6px;
}
.banner_index .swiper-slide a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.banner_index .swiper-slide a .art{
  position: absolute;
  width: 53%;
  height: auto;
  left: 0;
  top: 42.75%;
}
.banner_index .swiper-slide a .art h2{
  font-size: 49px;
  color: #fff;
  font-weight: normal;
  padding-bottom: 30px;
  position: relative;
  margin: 0;
  text-align: right;
}
.banner_index .swiper-slide a .art h2:before{
  content: '';
  position: absolute;
  width: 320px;
  height: 1px;
  background: #fff;
  right: 0;
  bottom: 0;
  margin: 0;
}
.banner_index .swiper-slide a .art p{
  margin: 0;
  margin-top: 15px;
  font-size: 42px;
  color: #ffffff;
  text-align: right;
}
.banner_index .swiper-slide a .art p span{
  padding-left: 25px;
  background: url(../image/pjt.png)no-repeat left 10px;
}

@media (max-width: 1680px) {
  .banner_index .swiper-slide a .art h2{font-size: 40px;}
  .banner_index .swiper-slide a .art p{font-size: 34px;}
}
@media (max-width: 1600px) {
  .banner_index .swiper-slide a .art h2{font-size: 34px;}
  .banner_index .swiper-slide a .art p{font-size: 30px;}
}
@media (max-width: 1440px) {
  .banner_index .swiper-slide a .art h2{font-size: 30px;}
  .banner_index .swiper-slide a .art p{font-size: 24px;}
}
@media (max-width: 1366px) {
  .banner_index .swiper-slide a .art h2{font-size: 24px;}
  .banner_index .swiper-slide a .art p{font-size: 20px;}
}
@media (max-width: 1024px) {
  .banner_index .swiper-slide a .art h2{font-size: 20px;padding-bottom: 15px;}
  .banner_index .swiper-slide a .art p{font-size: 16px;margin-top: 5px;}
  .banner_index .swiper-slide a .art p span{background-size: 5px;background-position-y: 5px;padding-left: 10px;}
  .banner_index .swiper-slide a .art h2:before{width: 120px;}
  .banner_index .swiper-slide a .art{top: 38%;width: 50%;}

}
@media (max-width: 768px) {
  .banner_index .swiper-slide a .art{width: 50%;}
  .banner_index .swiper-slide a .art h2{font-size: 18px;padding-bottom: 15px;}
  .banner_index .swiper-slide a .art h2 span{display: block;}
}


.title_index {
  text-align: center;
  background-position: right top;
  background-size: cover;
}
.title_index h2 {
  margin: 0 auto 10px;
  font-size: 30px;
  color: #222222;
  font-weight: normal;
}
.title_index p {
  font-size: 16px;
  line-height: 34px;
  color: #555555;
  margin: 0;
}
.ylqx_index {
  padding: 70px 0;
}
.ylqx_index .ylqx_swiper {
  position: relative;
  padding: 20px 0;
}
.ylqx_index .ylqx_swiper .swiper-pagination {
  bottom: 0;
}
.ylqx_index .ylqx_swiper .swiper-pagination-bullet {
  background: #e7e7e7;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.ylqx_index .ylqx_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../image/d.png) no-repeat center;
  background-size: cover;
}
.ylqx_index .ylqx_swiper .swiper-slide 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;
}
.ylqx_index .ylqx_swiper .swiper-slide section .imgbox {
  width: 64%;
  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;
}
.ylqx_index .ylqx_swiper .swiper-slide section .imgbox:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ylqx_index .ylqx_swiper .swiper-slide section .imgbox img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ylqx_index .ylqx_swiper .swiper-slide section .art {
  width: 36%;
  padding-right: 6%;
}
.ylqx_index .ylqx_swiper .swiper-slide section .art h3 {
  font-size: 26px;
  color: #333333;
  margin: 0;
  font-weight: normal;
}
.ylqx_index .ylqx_swiper .swiper-slide section .art span {
  font-size: 16px;
  color: #c5c5c5;
}
.ylqx_index .ylqx_swiper .swiper-slide section .art p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  height: 90px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.ylqx_index .ylqx_swiper .swiper-slide section .art a {
  display: block;
  font-size: 16px;
  color: #ffffff;
  background: #30a1fc;
  width: 160px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 3px;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  padding-bottom: 10px;
}
.ylqx_index .ylqx_swiper .swiper-slide section .art a:hover {
  top: -10px;
}
.zhyl_index {
  padding: 70px 0;
  background: #f5fbff;
}
.zhyl_index .zhyl_swiper {
  position: relative;
  padding: 20px 0;
}
.zhyl_index .zhyl_swiper .swiper-pagination {
  bottom: 0;
}
.zhyl_index .zhyl_swiper .swiper-pagination-bullet {
  background: #e7e7e7;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.zhyl_index .zhyl_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../image/d.png) no-repeat center;
  background-size: cover;
}
.zhyl_index .zhyl_swiper .swiper-slide 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;
}
.zhyl_index .zhyl_swiper .swiper-slide section .imgbox {
  width: 50%;
  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;
}
.zhyl_index .zhyl_swiper .swiper-slide section .imgbox:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.zhyl_index .zhyl_swiper .swiper-slide section .imgbox img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.zhyl_index .zhyl_swiper .swiper-slide section .art {
  width: 50%;
  padding-left: 6%;
  padding-right: 6%;
}
.zhyl_index .zhyl_swiper .swiper-slide section .art h3 {
  font-size: 26px;
  color: #333333;
  margin: 0;
  font-weight: normal;
}
.zhyl_index .zhyl_swiper .swiper-slide section .art span {
  font-size: 16px;
  color: #c5c5c5;
}
.zhyl_index .zhyl_swiper .swiper-slide section .art p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  height: 90px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.zhyl_index .zhyl_swiper .swiper-slide section .art a {
  display: block;
  font-size: 16px;
  color: #ffffff;
  background: #30a1fc;
  width: 160px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 3px;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  padding-bottom: 10px;
}
.zhyl_index .zhyl_swiper .swiper-slide section .art a:hover {
  top: -10px;
}
.qyjs_index {
  padding: 90px 0 0px;
  background-size: 100% 500px;
  background-repeat: no-repeat;
  position: relative;
}
.qyjs_index #particles-js {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 495px;
  background: rgba(0, 43, 90);
}
.qyjs_index h2 {
  color: #fff;
  margin: 0;
  font-size: 30px;
}
.qyjs_index p {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  margin: 26px 0 50px;
}
.qyjs_index a {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 48px;
  width: 160px;
  border: 1px solid #fff;
  display: block;
  margin: 0 auto;
}
.qyjs_index a:hover {
  background: #fff;
  color: #000;
}
.qyjs_index .auto {
  position: relative;
  z-index: 2;
}
.qyjs_index .auto .qyjs_box {
  margin-top: 85px;
  width: 100%;
  background: #fff;
  padding: 60px;
  box-shadow: 0 0 30px rgba(0, 144, 255, 0.08);
  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;
}
.qyjs_index .auto .qyjs_box .item {
  width: 300px;
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.qyjs_index .auto .qyjs_box .item:nth-child(2):after,
.qyjs_index .auto .qyjs_box .item:nth-child(2):before {
  position: absolute;
  content: '';
  width: 1px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  background: #f0f0f0;
}
.qyjs_index .auto .qyjs_box .item:nth-child(2):after {
  right: 0;
}
.qyjs_index .auto .qyjs_box .item:nth-child(2):before {
  left: 0;
}
.qyjs_index .auto .qyjs_box .item h3 {
  margin: 0;
  text-align: center;
  display: inline-block;
  font-weight: normal;
  position: relative;
}
.qyjs_index .auto .qyjs_box .item h3 i {
  font-style: normal;
  top: 0;
  right: -20px;
  position: absolute;
  font-size: 18px;
  color: #1798fc;
}
.qyjs_index .auto .qyjs_box .item h3 span {
  font-size: 54px;
  color: #2d2d2d;
  font-family: 'Myriad Pro';
}
.qyjs_index .auto .qyjs_box .item p {
  color: #666666;
  font-size: 16px;
  margin: 0;
}
.news_index {
  padding: 80px 0;
}
.news_index .title_index {
  margin-bottom: 30px;
}
.hzhb_index {
  background: #f5fbff;
  padding: 60px 0 70px;
}
.hzhb_index .hzhb_swiper {
  padding: 30px 0 50px;
}
.hzhb_index .hzhb_swiper .swiper-pagination {
  bottom: 0;
}
.hzhb_index .hzhb_swiper .swiper-pagination-bullet {
  background: #e7e7e7;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.hzhb_index .hzhb_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../image/d.png) no-repeat center;
  background-size: cover;
}
.hzhb_index .hzhb_swiper .swiper-slide {
  margin-bottom: 20px;
  margin-top: 0!important;
}
.hzhb_index .hzhb_swiper .swiper-slide a {
  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;
  background: #fff;
  height: 95px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
}
.hzhb_index .hzhb_swiper .swiper-slide a img {
  max-height: 100%;
  max-width: 100%;
}
footer {
  background: #3f3f3f;
  padding: 50px 0 0;
}
footer .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;
  padding-bottom: 15px;
  border-bottom: 1px solid #a3a3a3;
}
footer .top p {
  margin: 0 0 15px;
  font-size: 18px;
  color: #fff;
}
footer .top nav {
  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;
  max-width: 770px;
  width: 64%;
}
footer .top nav ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 30px;
}
footer .top nav ul li a:hover {
  color: #fff;
}
footer .top .contact {
  width: 250px;
}
footer .top .contact span {
  color: #fff;
  font-size: 15px;
}
footer .top .contact h4 {
  color: #30a1fc;
  font-size: 32px;
  margin: 0 0 20px;
  font-weight: normal;
}
footer .top .contact .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;
  width: 100%;
}
footer .top .contact .items .item {
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
footer .top .contact .items .item .imgbox {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}
footer .top .contact .items .item p {
  font-size: 12px;
  font-family: '思源黑体 CN';
  color: rgba(255, 255, 255, 0.6);
}
footer .bottom2 {
  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: 20px 0 25px;
}
footer .bottom2 .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
footer .bottom2 .copyright a {
  color: rgba(255, 255, 255, 0.6);
}
footer .bottom2 .copyright a:hover {
  color: #fff;
}
footer .bottom2 .links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-left: 11px;
  margin-left: 10px;
  position: relative;
}
footer .bottom2 .links a:hover {
  color: #fff;
}
footer .bottom2 .links a:first-child:before {
  display: none;
}
footer .bottom2 .links a:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
}
@keyframes menu_circle {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  33% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  66% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}
.section_Outlets .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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.section_Outlets .auto .mapbox {
  width: 719px;
  position: relative;
}
.section_Outlets .auto .mapbox .d {
  position: absolute;
  right: 25.9%;
  bottom: 13.2%;
  width: 4.2%;
  height: 5.1%;
  display: none;
}
.section_Outlets .auto .mapbox .d:after {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border: 4px solid #1798fc;
  border-radius: 50%;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-name: menu_circle;
  animation-name: menu_circle;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.section_Outlets .auto .mapbox .p1 {
  width: 18%;
  height: 12%;
  position: absolute;
  right: 14.5%;
  bottom: 29.5%;
  font-size: 22px;
  color: #000;
  text-align: center;display: none;
  margin: 0;
}
.section_Outlets .auto .mapbox .p1 span {
  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;
}
.section_Outlets .auto .art {
  width: calc(100% - 719px);
  max-width: 370px;
  text-align: left;
}
.section_Outlets .auto .art h2 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 35px;
  padding-bottom: 10px;
  position: relative;
  font-weight: normal;
}
.section_Outlets .auto .art h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #fff;
}
.section_Outlets .auto .art p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
}
.hlwyy {
  background-repeat: no-repeat;
  background-position: center;
}
.hlwyy .auto .title_index+img{margin: 0 auto;display: block;}
.hlwyy .title_index h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
.hlwyy .box1 {
  padding: 80px 0;
}
.hlwyy .box1 p {
  font-size: 16px;
  color: #666666;
  text-align: center;
  line-height: 34px;
  padding: 0 8.5%;
}
.hlwyy .box1 .img1 {
  margin: 40px auto;
}
.hlwyy .box1 .tabs {
  text-align: center;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.hlwyy .box1 .tabs a {
  display: inline-block;
  padding: 18px 30px;
  background: #d3e7fc;
  border-radius: 8px;
  color: #333;
  font-size: 16px;
  margin: 0 14px 25px;
}
.hlwyy .box1 .tabs a:nth-child(5),
.hlwyy .box1 .tabs a:nth-child(6),
.hlwyy .box1 .tabs a:nth-child(7),
.hlwyy .box1 .tabs a:nth-child(8) {
  padding: 18px 35px;
}
.tsbox {
  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;
  position: relative;
}
.tsbox .title_index {
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.tsbox .title_index h2 {
  color: #fff;
}
.tsbox .left,
.tsbox .right {
  width: 50%;
  height: 650px;
  background-size: cover;
  position: relative;
}
.tsbox .left section,
.tsbox .right section {
  width: 600px;
  max-width: 100%;
  margin-top: 140px;
}
.tsbox .left section h3,
.tsbox .right section h3 {
  font-size: 24px;
  color: #ffffff;
  padding-left: 75px;
  position: relative;
  margin: 0;
}
.tsbox .left section h3:before,
.tsbox .right section h3:before {
  width: 60px;
  height: 1px;
  left: 0;
  top: 50%;
  background: #fff;
  content: '';
  position: absolute;
}
.tsbox .left section p,
.tsbox .right section p {
  font-size: 18px;
  color: #fff;
  margin: 0;
}
.tsbox .left section table,
.tsbox .right section table {
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 25px;
}
.tsbox .left section table td,
.tsbox .right section table td {
  width: 145px;
  height: 158px;
  text-align: center;
}
.tsbox .left section table td p,
.tsbox .right section table td p {
  font-size: 15px;
  line-height: 22px;
  height: 44px;
}
.tsbox .left section table td img,
.tsbox .right section table td img {
  margin: 20px auto 10px;
}
.tsbox .left section {
  float: right;
}
.tsbox .right section {
  float: left;
  padding-left: 60px;
}
.ldbox {
  padding: 80px 0;
}
.ldbox .box {
  margin-top: 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;
}
.ldbox .box .left,
.ldbox .box .right {
  width: 49%;
  padding: 50px 25px 30px;
  background: #f9f8f6;
}
.ldbox .box .left h3,
.ldbox .box .right h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #333333;
  font-weight: normal;
}
.ldbox .box .left .art p,
.ldbox .box .right .art p {
  font-size: 16px;
  color: #666;
  line-height: 30px;
  margin: 0;
  padding-left: 12px;
  position: relative;
}
.ldbox .box .left .art p:before,
.ldbox .box .right .art p:before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 20px;
}
.ldbox .box .left .imgbox {
  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-bottom: 30px;
}
.ldbox .box .left .imgbox .item {
  width: 250px;
  margin-right: 25px;
}
.ldbox .box .left .imgbox .item img {
  width: 250px;
}
.ldbox .box .left .imgbox .item p {
  font-size: 16px;
  color: #333333;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.ldbox .box .right .img1 {
  margin-bottom: 30px;
}
.glbox {
  overflow: hidden;
  background: #f5fbff;
  padding-top: 80px;
}
.glbox .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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 85px auto 0;
}
.glbox .auto .art {
  width: 447px;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-top: 100px;
}
.glbox .auto .imgbox {
  width: calc(100% - 447px);
}
.glbox .auto .imgbox img {
  max-width: 135.8%;
  width: auto;
}
.zhtj_box {
  padding: 70px 0 85px;
}
.zhtj_box .items img{display: block;margin: 0 auto;}
.zhtj_box .title_index {
  margin-bottom: 60px;
}
.zhtj_box .wap_img {
  display: none;
}
.zhtj_box .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;
  margin-bottom: 45px;
}
.zhtj_box .item:nth-child(2n) .art {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.zhtj_box .item:nth-child(2n) .art p {
  margin-bottom: 10px;
}
.zhtj_box .item:nth-child(2n) section:before {
  display: none;
}
.zhtj_box .item:nth-child(2n) section:after {
  display: block;
}
.zhtj_box .item:nth-child(2) .art {
  background: #e6eef9;
  padding-bottom: 25px;
}
.zhtj_box .item:nth-child(3) .art {
  background: #f4f0e9;
}
.zhtj_box .item:nth-child(4) .art {
  background: #e6eef9;
}
.zhtj_box .item .art,
.zhtj_box .item section {
  width: 50%;
}
.zhtj_box .item .art {
  padding: 60px 110px 60px 60px;
  background: #eff7f6;
}
.zhtj_box .item .art h3 {
  font-size: 24px;
  color: #333333;
  font-weight: normal;
  margin: 0;
}
.zhtj_box .item .art p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin: 20px 0 50px;
}
.zhtj_box .item section {
  background: url(../image/bg7.png) no-repeat center;
  background-size: cover;
  padding: 60px;
  position: relative;
}
.zhtj_box .item section:before,
.zhtj_box .item section:after {
  content: '';
  position: absolute;
  width: 39px;
  height: 62px;
  top: 50%;
  margin-top: -31px;
  background: url(../image/bg.png) no-repeat center;
}
.zhtj_box .item section:before {
  left: -39px;
}
.zhtj_box .item section:after {
  right: -39px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  display: none;
}
.zhtj_box .item section h3 {
  font-size: 24px;
  color: #fff;
  font-weight: normal;
  margin: 0;
}
.zhtj_box .item section .cont {
  margin-top: 20px;
}
.zhtj_box .item section .cont p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  margin: 0px ;
  padding-left: 15px;
  position: relative;
}
.zhtj_box .item section .cont p:before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 20px;
}
.zhtj_box .item section .cont p.p1 {
  padding-left: 0;
}
.zhtj_box .item section .cont p.p1:before {
  display: none;
}
.rongyubox {
  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;
}
.rongyubox .imgbox,
.rongyubox .art {
  width: 50%;
}
.rongyubox .imgbox {
  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-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.rongyubox .imgbox div {
  padding-right: 65px;
}
.rongyubox .imgbox div h1 {
  text-align: center;
  font-size: 30px;
  color: #333333;
  font-weight: normal;
  margin: 0 0 30px 0;
}
.rongyubox .art {
  padding-left: 24px;
}
.rongyubox .art p {
  font-size: 17px;
  line-height: 44px;
  color: #333333;
  margin: 0;
  position: relative;
  padding-left: 20px;
}
.rongyubox .art p:after {
  content: '';
  width: 5px;
  height: 5px;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: #a0a0a0;
  position: absolute;
}
@media (max-width: 1440px) {
  .glbox .auto .imgbox img {
    max-width: 120%;
  }
}
@media (max-width: 1200px) {
  header .auto .right nav ul li {
    margin-left: 20px;
  }
  header .auto .right .searchbox {
    margin-left: 20px;
  }
  .glbox .auto .imgbox img {
    max-width: 110%;
  }
}
@media (max-width: 1024px) {
  header {
    height: 65px;
  }
  header .auto .right .searchbox .search-box {
    top: 90%;
  }
  header .auto .right .searchbox,
  header .auto .right .open-search,
  header .auto .right .tel_a,
  header .auto .right .wap_nav {
    position: relative;
    z-index: 999;
  }
  header .auto .right .searchbox .search-box {
    right: -150px;
  }
  header.scroll .auto .right nav ul li a {
    color: #fff;
  }
  header .auto .right nav,
  header .auto .right nav.on {
    position: fixed;
    right: -50%;
    top: 0px;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .auto .right nav.on,
  header .auto .right nav.on.on {
    right: 0;
  }
  header .auto .right nav ul,
  header .auto .right nav.on ul {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 60px;
  }
  header .auto .right .wap_nav {
    display: block;
    margin-left: 15px;
  }
  header .auto .right .wap_nav.on span:before,
  header.scroll .auto .right .wap_nav.on span:before,
  header .auto .right .wap_nav.on span:after,
  header.scroll .auto .right .wap_nav.on span:after {
    background: #fff;
  }
  header .auto .right nav ul li {
    width: 100%;
    text-align: center;
    margin-left: 0;
    line-height: 40px;
  }
  header .auto .right nav ul li a {
    color: #fff;
  }
  header .auto .right nav ul li section a {
    color: #000;
  }
  header.scroll .auto .right nav ul li section a {
    color: #000;
  }
  header .auto .right nav ul li#m3 section {
    width: 100%;
    left: 0;
  }
  header .auto .right nav ul li section {
    width: 100%!important;
    left: 0;
    transform: translateX(0);
    position: relative;
    display: none;
    background: rgba(255, 255, 255, 0.8);
  }
  header .auto .right nav ul li section:after {
    border-bottom-color: rgba(255, 255, 255, 0.8);
  }
  header .auto .right nav ul li.on section {
    height: auto;
    display: block;
  }
  footer .top nav {
    display: none;
  }
  footer .top .contact {
    margin: 0 auto;
    text-align: center;
  }
  footer .bottom2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  footer .bottom2 .links {
    width: 100%;
    text-align: center;
  }
  footer .bottom2 .copyright {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
  footer .top .contact h4 {
    margin-bottom: 10px;
  }
  .section_Outlets {
    padding: 5% 0;
  }
  .section_Outlets .auto {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .section_Outlets .auto .mapbox {
    max-width: 100%;
    margin: 0 auto 10px;
  }
  .section_Outlets .auto .mapbox .p1 {
    font-size: 14px;
  }
  .section_Outlets .auto .art {
    width: 100%;
    max-width: 100%;
  }
  .section_Outlets .auto .art h2 {
    margin-top: 10px;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .tsbox {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .tsbox .title_index {
    position: relative;
    top: 0;
  }
  .tsbox .title_index h2 {
    color: #000;
  }
  .tsbox .left,
  .tsbox .right {
    width: 100%;
    height: auto;
    padding: 30px 0;
  }
  .tsbox .left section,
  .tsbox .right section {
    margin-top: 0;
    padding: 10px;
    float: left;
  }
  .hlwyy .box1 .tabs a {
    font-size: 12px;
    padding: 10px;
    margin: 5px 10px 10px;
  }
  .hlwyy .box1 .tabs a:nth-child(5),
  .hlwyy .box1 .tabs a:nth-child(6),
  .hlwyy .box1 .tabs a:nth-child(7),
  .hlwyy .box1 .tabs a:nth-child(8) {
    padding: 10px;
  }
  .hlwyy .box1 {
    padding: 30px 0;
  }
  .ldbox {
    padding: 30px 0;
  }
  .ldbox .box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .ldbox .box .left,
  .ldbox .box .right {
    width: 100%;
    padding: 25px;
  }
  .ldbox .box .left {
    margin-bottom: 10px;
  }
  .ldbox .box .left .imgbox .item {
    margin-right: 10px;
  }
  .ldbox .box .left .imgbox .item:last-child {
    margin-right: 0;
  }
  .ldbox .box .left h3,
  .ldbox .box .right h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .ldbox .box .left .imgbox,
  .ldbox .box .right .img1 {
    margin-bottom: 15px;
  }
  .glbox {
    padding-top: 30px;
  }
  .glbox .auto {
    margin: 20px auto;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .glbox .auto .art,
  .glbox .auto .imgbox {
    width: 100%;
  }
  .glbox .auto .art {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .glbox .auto .imgbox {
    width: 90%;
  }
  .zhtj_box .item .art,
  .zhtj_box .item section {
    padding: 30px;
  }
}
.RighInfo002125 .box .wap {
  display: none;
}
.hlwyy .wap {
  display: none;
}
@media (max-width: 768px) {
  .banner_index .swiper-slide a img.pcimg {
    display: none;
  }
  .banner_index .swiper-slide a img.wapimg {
    display: block;
    min-height: 250px;
    object-fit: cover;
  }
  .banner_index .swiper-pagination {
    bottom: 10px;
  }
  .ylqx_index .ylqx_swiper,
  .zhyl_index .zhyl_swiper {
    padding-bottom: 50px;
  }
  .ylqx_index .ylqx_swiper .swiper-slide section,
  .zhyl_index .zhyl_swiper .swiper-slide section {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ylqx_index .ylqx_swiper .swiper-slide section .imgbox,
  .zhyl_index .zhyl_swiper .swiper-slide section .imgbox,
  .ylqx_index .ylqx_swiper .swiper-slide section .art,
  .zhyl_index .zhyl_swiper .swiper-slide section .art {
    width: 100%;
  }
  .ylqx_index .ylqx_swiper .swiper-slide section .imgbox img,
  .zhyl_index .zhyl_swiper .swiper-slide section .imgbox img {
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto 20px;
  }
  .ylqx_index .ylqx_swiper .swiper-slide section .art,
  .zhyl_index .zhyl_swiper .swiper-slide section .art {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 0 5%;
  }
  .ylqx_index .ylqx_swiper .swiper-slide section .art p,
  .zhyl_index .zhyl_swiper .swiper-slide section .art p {
    margin-bottom: 20px;
  }
  .qyjs_index {
    padding: 50px 0 30px;
  }
  .news_index,
  .hzhb_index,
  .zhyl_index,
  .ylqx_index {
    padding: 30px 0;
  }
  .title_index h2 {
    font-size: 24px;
  }
  .ylqx_index .ylqx_swiper .swiper-slide section .art h3,
  .zhyl_index .zhyl_swiper .swiper-slide section .art h3 {
    font-size: 20px;
  }
  .qyjs_index .auto .qyjs_box {
    padding: 30px 10px;
    margin-top: 60px;
  }
  .qyjs_index .auto .qyjs_box .item h3 i {
    right: -15px;
    font-size: 14px;
  }
  .qyjs_index .auto .qyjs_box .item h3 span {
    font-size: 30px;
  }
  .PicList001 .list li {
    width: 100%;
    margin-right: 0;
    height: auto;
    padding-bottom: 30px;
  }
  .PicList001 .list li:nth-child(3n) {
    margin-right: 0;
  }
  .zhtj_box .item {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zhtj_box .item .art,
  .zhtj_box .item section {
    width: 100%;
  }
  .zhtj_box .item .art {
    padding: 20px;
  }
  .zhtj_box .item .art p {
    margin: 10px 0;
  }
  .zhtj_box .item section {
    padding: 20px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .zhtj_box .item section:before,
  .zhtj_box .item section:after {
    display: none!important;
  }
  .rongyubox {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .rongyubox .imgbox {
    width: 100%;
    -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;
  }
  .rongyubox .imgbox div {
    padding-right: 10px;
  }
  .rongyubox .imgbox div h1 {
    font-size: 24px;
  }
  .rongyubox .art {
    width: 100%;
    padding: 10px 10px 15px;
  }
  .rongyubox .art p {
    line-height: 40px;
  }
  header .auto .right .searchbox {
    margin: 0 10px;
  }
  header .auto .right .tel_a {
    padding-left: 20px;
    font-size: 14px;
    line-height: 20px;
  }
  header .auto .logo{
    width: 100px;
  }
  header .auto .right{
    width: calc(100% - 100px);
  }
  header .auto .right .wap_nav{
    width: 25px;
    height: 25px;
  }
  header .auto .right .wap_nav span{width: 25px;}
  header .auto .right .wap_nav span:before, header .auto .right .wap_nav span:after{width: 25px;}
  header .auto .right .wap_nav span:before{top: -8px;}
  header .auto .right .wap_nav span:after{top: 8px;}
  .zhtj_box {
    padding: 30px 0;
  }
  .hzhb_index .hzhb_swiper .swiper-slide a {
    height: 75px;
  }
  footer {
    padding-top: 30px;
  }
  .zhtj_box .wap_img {
    display: block;
  }
  .zhtj_box .pc_img {
    display: none;
  }
  .RighInfo002125 .box .wap {
    display: block;
  }
  .RighInfo002125 .box .pc {
    display: none;
  }
  .hlwyy .pc {
    display: none !important;
  }
  .hlwyy .wap {
    display: block;
  }
  .header .auto .logo img{
    max-height: 40px;
  }
}
.Timeline000913 .inner:hover .pic img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.Timeline000913 .inner .pic {
  overflow: hidden;
}
.Timeline000913 .inner .pic img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.PicList001646 dl dt a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.PicList001646 dl dt a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.PicList001646 dl dt a img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.PicList002045 li div {
  overflow: hidden;
}
.PicList002045 li:hover figure {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.PicList002045 li figure {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media(max-width:768px){
  .header .auto .logo img{
    max-height: 65px;
  }  
  .zhyl_index .zhyl_swiper .swiper-slide section .art a,
  .ylqx_index .ylqx_swiper .swiper-slide section .art a{margin: 0 auto;}
  .Floor002986{padding-top: 15px;}
  .PicList001646 dd figure pre{height: auto;}
  .about-text p{font-size: 14px;}
}
/*---------------------------*/
.Banner002848 .pc {
    display: block
}
.Banner002848 .wap {
    display:none
}

@media (max-width: 768px) {
    .Banner002848 .wap {
        display: block;
    }
    .Banner002848 .pc {
        display: none;
    }
}
