@charset "utf-8";
@font-face {
  font-family: 'din-r';
  src: url(../fonts/DIN-Regular.otf) format('truetype');
}
/*全局初始化样式*/
body {
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.75;
  font-family: '思源黑体 CN';
  color: #000;
  min-width: 320px;
  width: 100%;
  zoom: 1;
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*控制文本可选性*/
  /*设置字体的抗锯齿或者说光滑度*/
  -webkit-font-smoothing: antialiased;
}
* {
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
table {
  background-color: transparent;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 0.75em;
  width: 100%;
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
  box-sizing: border-box;
}
table th {
  background-color: #f9f9f9;
  text-align: center;
  box-sizing: border-box;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
/*html5设置*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
html,
body,
div,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
p {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  outline: none;
  color: #333;
  cursor: pointer;
}
a:focus {
  outline: none;
  -moz-outline: none;
}
a:hover {
  color: #000;
}
a img {
  border: none;
}
/*强制去除表单自带的样式*/
select,
input,
textarea {
  border-radius: 0;
  -webkit-border-radius: 0;
}
input:focus {
  outline: none;
}
input,
button,
select,
textarea {
  outline: none;
  /*-webkit-appearance:none;*/
}
textarea {
  resize: none;
  /*-webkit-appearance:none;*/
}
textarea,
input,
select {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
/*清楚浮动*/
.clear {
  clear: both;
  overflow: hidden;
}
/*该设置跟后台编辑器有关*/
.ul,
.ul li,
.dl,
.dl dd,
ul,
ul li,
ol,
ol li,
dl,
dl dd {
  list-style: none;
  margin: 0;
  padding: 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px;
  font-weight: normal;
}
.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;
}
/*单行溢出*/
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.text3 {
  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.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.xuanzhuan {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -moz-transform: rotate(45deg);
  /* Firefox */
  -webkit-transform: rotate(45deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(45deg);
}
.xuanzhuan2 {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1680px) {
  .w1600 {
    padding: 0 2%;
  }
  .index_banner .banner-pa {
    padding: 0 2%;
  }
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1480px) {
  .w1440 {
    padding: 0 2%;
  }
}
.w1200 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .w1200 {
    padding: 0 2%;
  }
}
.pc {
  display: block;
}
.wap {
  display: none;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .wap {
    display: block;
  }
}
h1 {
  font-size: 70px;
}
h3 {
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: #333333;
}
h4 {
  font-size: 36px;
  line-height: 1;
}
h5 {
  font-size: 30px;
  line-height: 1;
}
h6 {
  font-size: 24px;
  line-height: 1;
}
img {
  max-width: 100%;
}
a.more {
  padding: 12px 80px 12px 30px;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  background: url('../images/r.png') no-repeat right 35px center;
}
header {
  position: fixed;
  width: 100%;
  padding-top: 35px;
  z-index: 9999;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.h_fixed {
  background: #fff;
  top: 0px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(54, 54, 54, 0.1);
}
header.h_fixed .w1600 .logo img.img1 {
  display: none;
}
header.h_fixed .w1600 .logo img.img2 {
  display: block;
}
header.h_fixed .w1600 .right .nav li > a {
  color: #333;
}
header.h_fixed .w1600 .right .lanopen a {
  color: #333;
  background: url('../images/xl2.png') no-repeat right 2px center;
  background-size: 8px 6px;
}
header.h_fixed .w1600 .right .searchopen > a {
  background: url(../images/search2.png) no-repeat center;
}
header.h_fixed .w1600 .right .searchopen form {
  background: #fff;
  border-color: #333;
}
header.h_fixed .w1600 .right .searchopen form input {
  color: #333;
}
header.h_fixed .w1600 .right .searchopen form a {
  background: url(../images/search2.png) no-repeat center;
}
header .w1600 {
  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 .w1600 .logo {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .w1600 .logo img.img2 {
  display: none;
}
header .w1600 .right {
  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;
  height: 100%;
}
header .w1600 .right .nav {
  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;
  height: 50px;
  line-height: 50px;
}
header .w1600 .right .nav.on li > a {
  color: #fff;
}
header .w1600 .right .nav li {
  position: relative;
}
header .w1600 .right .nav li.hassub:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -moz-transform: rotate(45deg);
  /* Firefox */
  -webkit-transform: rotate(45deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(45deg);
  bottom: -12px;
  left: 50%;
  margin-left: -6px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .w1600 .right .nav li.hassub.on:before {
  opacity: 1;
  bottom: -6px;
}
header .w1600 .right .nav li > a {
  color: #fff;
  margin: 0 15px;
  height: 100%;
  display: block;
  white-space: nowrap;
}
header .w1600 .right .nav .sub {
  display: none;
  width: 160px;
  position: absolute;
  left: 50%;
  margin-left: -80px;
  background: #fff;
  padding-bottom: 25px;
}
header .w1600 .right .nav .sub a {
  color: #666666;
  border-bottom: 1px solid #e2e2e2;
  display: block;
  text-align: center;
  line-height: 54px;
}
header .w1600 .right .nav .sub a:hover {
  color: #e5212b;
}
header .w1600 .right .nav .sub a:last-child {
  border: none;
}
header .w1600 .right .lanopen {
  margin: 0 26px 0 40px;
}
header .w1600 .right .lanopen a {
  padding-right: 15px;
  color: #fff;
  background: url('../images/xl.png') no-repeat right 2px center;
  background-size: 8px 6px;
}
header .w1600 .right .searchopen {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: relative;
}
header .w1600 .right .searchopen > a {
  width: 100%;
  height: 100%;
  display: block;
  background: url(../images/search.png) no-repeat center;
}
header .w1600 .right .searchopen form {
  position: absolute;
  right: 0;
  width: 200px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #fff;
  padding: 0 10px;
  display: none;
}
header .w1600 .right .searchopen form input {
  width: 160px;
  height: 40px;
  line-height: 40px;
  border: none;
  color: #fff;
}
header .w1600 .right .searchopen form a {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/search.png) no-repeat center;
  position: absolute;
  right: 0;
  top: 0;
}
.header_div {
  height: 81px;
}
.index_banner {
  overflow: hidden;
}
.index_banner.banner {
  position: relative;
}
.index_banner.banner .art .w1600 .info {
  margin: 30px 0 0;
}
.index_banner .art {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.index_banner .art .w1600 {
  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;
  height: auto;
  color: #fff;
}
.index_banner .art .w1600 h1 {
  line-height: 1;
}
.index_banner .art .w1600 .info {
  margin: 33px 0 85px;
  font-size: 24px;
  line-height: 36px;
}
.index_banner .banner-pa {
  max-width: 1600px;
  text-align: left;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 70px;
}
.index_banner .banner-pa .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: transparent;
  border: 1px solid #ebebeb;
  opacity: 1;
  margin: 0 10px 0 0;
  outline: none;
}
.index_banner .banner-pa .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #e5212b;
  background: #e5212b;
}
a:hover .imgbox .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
a .imgbox {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
}
a .imgbox .img {
  position: absolute;
  left: 0;
  top: 0;
  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;
}
a .imgbox .img img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pro_index {
  padding: 115px 0;
  background: #fcfcfc;
}
.pro_index .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: 60px;
  position: relative;
}
.pro_index .items .item {
  width: 45%;
}
.pro_index .items .item a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 104%;
  background: #e2e6ee;
  position: relative;
}
.pro_index .items .item a:hover .art h4 {
  color: #e5212b;
}
.pro_index .items .item a .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 76.5%;
}
.pro_index .items .item a .imgbox .img {
  padding: 10%;
}
.pro_index .items .item a .imgbox .img img {
  max-width: 100%;
  max-height: 100%;
}
.pro_index .items .item a .art {
  text-align: center;
}
.pro_index .items .item a .art h4 {
  color: #333333;
  font-size: 24px;
}
.pro_index .items .item a .art .info {
  color: #333333;
  font-size: 18px;
  line-height: 30px;
  margin-top: 10px;
}
.pro_index .items .item:first-child .art h4 {
  font-size: 36px;
}
.pro_index .items .item:first-child .art .info {
  font-size: 24px;
  margin-top: 15px;
}
.pro_index .items .item:nth-child(2),
.pro_index .items .item:nth-child(3) {
  width: 26.875%;
}
.pro_index .items .item:nth-child(2) a,
.pro_index .items .item:nth-child(3) a {
  padding-bottom: 86%;
}
.pro_index .items .item:nth-child(2) a .imgbox,
.pro_index .items .item:nth-child(3) a .imgbox {
  padding-bottom: 60%;
}
.pro_index .items .item:nth-child(4) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54.375%;
}
.pro_index .items .item:nth-child(4) a {
  padding-bottom: 42.53%;
}
.pro_index .items .item:nth-child(4) a .imgbox {
  display: none;
}
.pro_index .items .item:nth-child(4) a .art {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.case_index .swiper-slide {
  line-height: 0;
}
.case_index .box {
  position: relative;
  margin-top: 60px;
}
.case_index .box .list {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  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;
}
.case_index .box .list li {
  width: 16.66%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.case_index .box .list li:last-child {
  border: none;
}
.case_index .box .list li:hover {
  background: rgba(0, 0, 0, 0.5);
}
.case_index .box .list li h1 {
  font-size: 72px;
  line-height: 1;
  font-family: 'Arial';
  padding-bottom: 45px;
  margin-bottom: 45px;
  position: relative;
}
.case_index .box .list li h1:before {
  width: 30px;
  height: 2px;
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -15px;
  background: #e5212b;
}
.jjfa_index {
  padding: 110px 0 100px;
  overflow: hidden;
}
.jjfa_index h3 {
  margin-bottom: 55px;
}
.jjfa_index .swiper-container {
  overflow: visible;
}
.jjfa_index .swiper-container .jjfa_sp {
  width: 170px;
  left: 88px;
  top: auto;
  bottom: 60px;
}
.jjfa_index .swiper-container .jjfa_sp span {
  width: 11px;
  height: 11px;
  background: transparent;
  border: 1px solid #ebebeb;
  opacity: 1;
  margin: 0 10px 0 0;
  outline: none;
}
.jjfa_index .swiper-container .jjfa_sp span.swiper-pagination-bullet-active {
  border: 1px solid #e5212b;
  background: #e5212b;
}
.jjfa_index .swiper-container .jjfa_text,
.jjfa_index .swiper-container .jjfa_text2 {
  position: absolute;
  left: 50px;
  bottom: 40px;
  color: #fff;
  z-index: 9;
  font-size: 24px;
  display: none;
}
.jjfa_index .swiper-container .jjfa_text i,
.jjfa_index .swiper-container .jjfa_text2 i {
  font-style: normal;
}
.jjfa_index .swiper-container .jjfa_text2 {
  left: 280px;
  opacity: 0.3;
}
.jjfa_index .swiper-container .swiper-button-next,
.jjfa_index .swiper-container .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.jjfa_index .swiper-container .swiper-button-next:after,
.jjfa_index .swiper-container .swiper-button-prev:after {
  display: none;
}
.jjfa_index .swiper-container .swiper-button-next:hover,
.jjfa_index .swiper-container .swiper-button-prev:hover {
  background-color: #e5212b;
}
.jjfa_index .swiper-container .swiper-button-prev {
  left: -190px;
  background: url(../images/jl.png) no-repeat center rgba(255, 255, 255, 0.2);
}
.jjfa_index .swiper-container .swiper-button-next {
  right: -190px;
  background: url(../images/jr.png) no-repeat center rgba(255, 255, 255, 0.2);
}
.jjfa_index .swiper-container .swiper-slide {
  height: 0;
  padding-bottom: 45.14%;
  position: relative;
}
.jjfa_index .swiper-container .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.jjfa_index .swiper-container .swiper-slide .art {
  width: 400px;
  max-width: 90%;
  height: 280px;
  background: #fff;
  box-shadow: 3px 0 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 50px;
  display: none;
}
.jjfa_index .swiper-container .swiper-slide .art h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.jjfa_index .swiper-container .swiper-slide .art .info {
  margin: 25px auto;
  line-height: 30px;
  font-size: 16px;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.jjfa_index .swiper-container .swiper-slide .art .more {
  background-color: #e5212b;
  padding: 16px 80px 16px 30px;
}
.jjfa_index .swiper-container .swiper-slide.swiper-slide-active img {
  width: 88.88%;
}
.jjfa_index .swiper-container .swiper-slide.swiper-slide-active .art {
  display: block;
}
.ryzz_index .tabtitle {
  text-align: center;
  margin: 45px 0 60px;
}
.ryzz_index .tabtitle a {
  display: inline-block;
  padding: 6px 33px;
  color: #333333;
  font-size: 16px;
  border-radius: 20px;
}
.ryzz_index .tabtitle a.on {
  background: #e5212b;
  color: #fff;
}
.ryzz_index .tabbox {
  margin-bottom: 100px;
}
.ryzz_index .tabbox .item {
  padding: 0 115px;
  height: 0;
  overflow: hidden;
  position: relative;
  background: url(../uploadfiles/bg.png) no-repeat center bottom;
  background-size: 100% 70px;
}
.ryzz_index .tabbox .item.on {
  padding-bottom: 70px;
  height: auto;
}
.ryzz_index .tabbox .item .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ryzz_index .tabbox .item .swiper-slide img {
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ryzz_index .tabbox .item .swiper-button-next,
.ryzz_index .tabbox .item .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 40%;
  outline: none;
}
.ryzz_index .tabbox .item .swiper-button-next:after,
.ryzz_index .tabbox .item .swiper-button-prev:after {
  display: none;
}
.ryzz_index .tabbox .item .swiper-button-next:hover,
.ryzz_index .tabbox .item .swiper-button-prev:hover {
  background-color: #e5212b;
}
.ryzz_index .tabbox .item .swiper-button-prev {
  background: url(../images/jl.png) no-repeat center #acacac;
}
.ryzz_index .tabbox .item .swiper-button-next {
  background: url(../images/jr.png) no-repeat center #acacac;
}
.zjdl_index {
  position: relative;
}
.zjdl_index:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.zjdl_index video {
  width: 100%;
  position: relative;
}
.zjdl_index img {
  width: 100%;
}
.zjdl_index .art {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  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;
  color: #fff;
  z-index: 2;
}
.zjdl_index .art h3 {
  color: #fff;
  margin-bottom: 50px;
}
.zjdl_index .art .info {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}
.zjdl_index .art a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: url(../images/zt.png) no-repeat center;
}
.zjdl_index .art a.on {
  background: url(../images/bf.png) no-repeat center;
}
.news_index {
  padding: 120px 0;
}
.news_index .w1600 {
  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;
}
.news_index .w1600 h3 {
  text-align: left;
  margin-bottom: 40px;
}
.news_index .w1600 .zhxw {
  width: 25%;
}
.news_index .w1600 .zhxw a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 135%;
  position: relative;
  overflow: hidden;
}
.news_index .w1600 .zhxw a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news_index .w1600 .zhxw a img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news_index .w1600 .zhxw a .art {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  padding: 25px 35px;
}
.news_index .w1600 .zhxw a .art .time {
  font-size: 16px;
  font-family: 'Arial';
  color: #fff;
}
.news_index .w1600 .zhxw a .art .info {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 24px;
  color: #fff;
}
.news_index .w1600 .gsdt {
  width: 72.5%;
}
.news_index .w1600 .gsdt .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;
  width: 100%;
}
.news_index .w1600 .gsdt .box a.a_img {
  width: 50.86%;
}
.news_index .w1600 .gsdt .box a.a_img:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news_index .w1600 .gsdt .box a.a_img .imgbox {
  padding-bottom: 91.52%;
  position: relative;
}
.news_index .w1600 .gsdt .box a.a_img .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news_index .w1600 .gsdt .box .ul_list {
  width: 45.86%;
}
.news_index .w1600 .gsdt .box .ul_list li a {
  display: block;
  padding: 45px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: url(../images/r2.png) no-repeat right bottom 60px;
}
.news_index .w1600 .gsdt .box .ul_list li a:hover h6 {
  color: #e5212b;
}
.news_index .w1600 .gsdt .box .ul_list li a h6 {
  margin-bottom: 25px;
  color: #333333;
}
.news_index .w1600 .gsdt .box .ul_list li a .time {
  color: #333333;
  font-size: 16px;
  font-family: 'Arial';
}
footer {
  padding-top: 80px;
  background: #1d2f45;
}
footer .foot1 {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .foot1 .w1600 {
  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;
}
footer .foot1 .w1600 ul {
  width: 65%;
  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;
}
footer .foot1 .w1600 ul li a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  line-height: 36px;
}
footer .foot1 .w1600 ul li a:hover {
  color: #fff;
}
footer .foot1 .w1600 ul li a:first-child {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}
footer .foot1 .w1600 .right {
  width: 25%;
  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;
}
footer .foot1 .w1600 .right .item a {
  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;
  color: #fff;
  margin-bottom: 15px;
}
footer .foot1 .w1600 .right .item a img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
footer .foot1 .w1600 .right .item p {
  color: #fff;
  margin: 25px 0 5px;
}
footer .foot1 .w1600 .right .item h5 {
  font-size: 30px;
  color: #e5212b;
  font-family: 'din-r';
}
footer .foot1 .w1600 .right .ewm {
  width: 110px;
}
footer .foot1 .w1600 .right .ewm img {
  width: 110px;
  height: 110px;
}
footer .foot1 .w1600 .right .ewm p {
  color: #fff;
  text-align: center;
}
footer .foot2 {
  padding: 20px 0;
}
footer .foot2 .w1600 {
  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;
  color: rgba(255, 255, 255, 0.5);
}
footer .foot2 .w1600 a {
  color: rgba(255, 255, 255, 0.5);
}
footer .foot2 .w1600 a:hover {
  color: #fff;
}
footer .foot2 .w1600 .links a {
  margin-left: 20px;
}
.locations {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
}
.locations .w1600 {
  height: 70px;
  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;
}
.locations .w1600 .nav_a a {
  line-height: 70px;
  border-bottom: 1px solid transparent;
  font-size: 16px;
  color: #333333;
  display: inline-block;
  margin-right: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.locations .w1600 .nav_a a.on,
.locations .w1600 .nav_a a:hover {
  color: #e5212b;
  border-color: #e5212b;
}
.locations .w1600 .location {
  color: #999999;
}
.locations .w1600 .location a {
  margin-left: 5px;
  position: relative;
  color: #999999;
}
.locations .w1600 .location a:hover {
  color: #e5212b;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.pro_info {
  padding: 120px 0;
  background: #f7f7f7;
}
.pro_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-bottom: 35px;
}
.pro_list li {
  width: 48%;
  height: 350px;
  margin-right: 2%;
  background: #fff;
  margin-bottom: 55px;
}
.pro_list li:nth-child(3n-1) {
  margin-right: 0;
}
.pro_list li:first-child {
  width: 48%;
}
.pro_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;
  width: 100%;
  height: 100%;
}
.pro_list li:first-child a .art {
  width: 40%;
}
.pro_list li:first-child a .imgbox {
  width: 60%;
  height: 100%;
}
.pro_list li a:hover .art h4,
.pro_list li a:hover .art span {
  color: #e5212b;
}
.pro_list li a .art {
	padding: 45px;
	width: 40%;
}
.pro_list li a .art h4 {
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro_list li a .art .info {
  font-size: 18px;
  line-height: 36px;
  color: #333333;
  height: 72px;
  margin: 20px 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pro_list li a .art span {
  color: #333333;
}
.pro_list li a .imgbox {
  height: 360px;
  background: #d6dee8;
    width: 60%;
  height: 100%;
 
}
.pro_list li a .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.Pages {
  text-align: center;
  min-height: 50px;
  line-height: 50px;
}
.Pages em {
  font-style: normal;
}
.Pages a {
  padding: 15px 19px;
  font-size: 18px;
  color: #888888;
  border: 1px solid #dedede;
  box-sizing: border-box;
  margin: 10px;
}
.Pages a:hover,
.Pages a.on {
  background-color: #e5212b;
  color: #fff;
  border-color: #e5212b;
}
.Pages a.a_prev {
  padding: 15px 45px;
  background: url(../images/syy.png) no-repeat center;
}
.Pages a.a_prev:hover {
  background: url(../images/syy_1.png) no-repeat center #e5212b;
}
.Pages a.a_next {
  padding: 15px 45px;
  background: url(../images/xyy.png) no-repeat center;
}
.Pages a.a_next:hover {
  background: url(../images/xyy_1.png) no-repeat center #e5212b;
}
.pro_items .item {
  padding: 0px 0;
}
.pro_items .item:nth-child(2n) {
  background: url(../../uploadfiles/image/pbg2.jpg) no-repeat center;
  line-height: 0;
}
.pro_items .item:nth-child(2n) .w1600 .img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.pro_items .item:nth-child(2n) .w1600 .art {
  padding-left: 0;
}
.pro_items .item:nth-child(2n) .w1600 .art h3,
.pro_items .item:nth-child(2n) .w1600 .art .info {
  color: #fff;
}
.pro_items .item .w1600 {
  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;
}
.pro_items .item .w1600 .img {
  width: 50%;
  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;
}
.pro_items .item .w1600 .art {
  width: 50%;
  padding-left: 113px;
}
.pro_items .item .w1600 .art h3 {
  margin-bottom: 50px;
  text-align: left;
}
.pro_items .item .w1600 .art .info {
  font-size: 18px;
  color: #333333;
  line-height: 32px;
}
.case_info {
  padding: 120px 0;
}
.case_info .info_con .jj {
  max-width: 1200px;
  margin: 60px auto;
/*  text-align: center;*/
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
.case_info .info_con .swiper-container .swiper-pagination-bullets {
  bottom: 50px;
}
.case_info .info_con .swiper-container .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: transparent;
  border: 1px solid #ebebeb;
  opacity: 0.5;
  margin: 0 10px 0 0;
  outline: none;
}
.case_info .info_con .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #e5212b;
  background: #e5212b;
  opacity: 1;
}
.case_list {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-bottom: 30px;
}
.case_list li {
  width: 31.25%;
  margin-right: 3.125%;
  margin-bottom: 45px;
}
.case_list li:nth-child(3n) {
  margin-right: 0;
}
.case_list li a {
  display: block;
  width: 100%;
  height: auto;
}
.case_list li a:hover .art h6,
.case_list li a:hover .art span {
  color: #e5212b;
}
.case_list li a .imgbox {
  padding-bottom: 66%;
}
.case_list li a .art {
  background: #f8f8f8;
  padding: 25px;
}
.case_list li a .art h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333333;
}
.case_list li a .art .info {
  font-size: 16px;
  line-height: 30px;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 10px 0 20px;
  color: #666666;
}
.case_list li a .art span {
  color: #333333;
}
.jjfa_info {
  padding: 120px 0;
}
.jjfa_info .box1 {
  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;
}
.jjfa_info .box1 .left {
  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;
  width: 46%;
}
.jjfa_info .box1 .left .art h3 {
  text-align: left;
  margin: 10px 0 40px;
}
.jjfa_info .box1 .left .art .info {
  max-width: 690px;
}
.jjfa_info .box1 .left .img {
  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;
}
.jjfa_info .box1 .left .img img {
  width: 49%;
}
.item.wow.fadeInUp.animated .img img{
	
	/*height: 620px;*/
}
.jjfa_info .box1 .imgs {
  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: 50%;
}
.jjfa_info .box1 .imgs img {
  width: 49%;
}
.jjfa_list {
  margin-bottom: 80px;
}
.jjfa_list li {
  margin-bottom: 60px;
}
.jjfa_list li:nth-child(2n) a .img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.jjfa_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;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
}
.jjfa_list li a:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.jjfa_list li a:hover .art h6,
.jjfa_list li a:hover .art span {
  color: #e5212b;
}
.jjfa_list li a .img {
  width: 50%;
  height: 100%;
  line-height: 0;
  overflow: hidden;
}
.jjfa_list li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.jjfa_list li a .art {
  width: 50%;
  padding: 0 75px;
}
.jjfa_list li a .art h6 {
  color: #333;
}
.jjfa_list li a .art .info {
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 90px;
  margin: 35px 0 100px;
  color: #666666;
}
.jjfa_list li a .art span {
  color: #333;
}
.xgal {
  padding: 115px 0 25px;
  background: #f8f8f8;
}
.xgal h3 {
  text-align: left;
  margin-bottom: 40px;
}
.xgal .case_list li a .art {
  background: #fff;
}
.xgcp {
  padding: 115px 0 25px;
  background: #fff;
}
.xgcp h3 {
  text-align: left;
  margin-bottom: 40px;
}
.xgcp .pro_list li:first-child {
  width: 32%;
  margin-right: 2%;
}
.xgcp .pro_list li:first-child a {
  display: block;
}
.xgcp .pro_list li:first-child a .art {
  width: 100%;
}
.xgcp .pro_list li:first-child a .imgbox {
  width: 100%;
  height: 360px;
}
.xgcp .pro_list li:nth-child(3n-1) {
  margin-right: 2%;
}
.xgcp .pro_list li:nth-child(3n) {
  margin-right: 0%;
}
.xgcp .pro_list li a {
  display: block;
  padding-bottom: 20px;
  background: #d6dee8;
}
.about_info {
  padding: 120px 0;
}
.about_info .info_con {
  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: 70px;
  border-bottom: 1px solid #e5e5e5;
}
.about_info .info_con .left {
  width: 50%;
}
.about_info .info_con .art {
  width: 46%;
}
.about_info .info_con .art h3 {
  text-align: left;
  margin-bottom: 30px;
}
.about_info .info_con .art .info {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}
.about_info .info_con .art .info p {
  margin-bottom: 20px;
  text-indent: 32px;
}
.about_info .info_con .imgbox {
  padding-bottom: 78.85%;
  width: 100%;
  height: 0;
  position: relative;
}
.about_info .info_con .imgbox > a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  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;
  z-index: 9;
  background: rgba(0, 0, 0, 0.4);
}
.about_info .info_con .imgbox > a img {
  max-width: 100px;
}
.about_info .info_con .imgbox > a p {
  color: #fff;
  font-size: 20px;
  margin-top: 30px;
  text-align: center;
}
.about_info .info_con .imgbox .img,
.about_info .info_con .imgbox video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_info .info_con .imgbox .img {
  z-index: 2;
}
.about_info .info_con .imgbox video {
  z-index: 1;
}
.about_info .items {
  margin-top: 70px;
  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;
}
.about_info .items .item {
  width: 31.875%;
  background: #ecf0f6;
  padding: 60px;
  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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.about_info .items .item img {
  max-width: 124px;
}
.about_info .items .item h5 {
  margin: 30px 0 40px;
}
.about_info .items .item p {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  text-align: center;
}
.ryzz_info {
  padding: 120px 0;
}
.ryzz_info .tabtitle {
  margin-top: 0;
}
.ryzz_info .tabtitle a {
  position: relative;
}
.ryzz_info .tabtitle a.on:after,
.ryzz_info .tabtitle a:last-child:after {
  display: none;
}
.ryzz_info .tabtitle a:after {
  content: '';
  width: 1px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  background: #d8d8d8;
}
.ryzz_info .tabbox {
  margin-bottom: 0;
}
.ryzz_info .tabbox .list {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 0 80px;
}
.ryzz_info .tabbox .list li {
  width: 25%;
  padding: 0 25px;
  background: url(../uploadfiles/bg.png) no-repeat center bottom;
  background-size: auto 71px;
  margin-bottom: 100px;
  position: relative;
}
.ryzz_info .tabbox .list li:first-child:after,
.ryzz_info .tabbox .list li:nth-child(4n+1):after {
  content: '';
  width: 80px;
  height: 71px;
  position: absolute;
  bottom: 0;
  left: -80px;
  background: url(../uploadfiles/bg.png) no-repeat left bottom;
  background-size: auto 71px;
}
.ryzz_info .tabbox .list li:last-child:after,
.ryzz_info .tabbox .list li:nth-child(4n):after {
  content: '';
  width: 80px;
  height: 71px;
  position: absolute;
  bottom: 0;
  right: -80px;
  background: url(../uploadfiles/bg.png) no-repeat right bottom;
  background-size: auto 71px;
}
.ryzz_info .tabbox .list a {
  display: block;
  width: 100%;
  height: 100%;
}
.ryzz_info .tabbox .list a .imgbox {
  padding-bottom: 139%;
}
.ryzz_info .tabbox .list a .imgbox img {
  width: 100%;
}
.ryzz_info .tabbox .list a .art {
  text-align: center;
  padding-top: 40px;
  height: 71px;
  font-size: 18px;
  color: #333333;
}
.news_info {
  padding: 120px 0;
}
.news_info .news_s .swiper-pagination-bullets {
  width: auto;
  left: auto;
  right: 80px;
  bottom: 110px;
  text-align: right;
}
.news_info .news_s .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  position: relative;
  margin: 0;
  opacity: 1;
  outline: none;
}
.news_info .news_s .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #e5212b;
}
.news_info .news_s .swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -2px;
  background: #e5212b;
  border-radius: 50%;
}
.news_info .news_s .swiper-slide a {
  padding: 20px;
  background: #f8f8f8;
  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;
}
.news_info .news_s .swiper-slide a:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news_info .news_s .swiper-slide a .img {
  width: 50%;
  overflow: hidden;
  line-height: 0;
}
.news_info .news_s .swiper-slide a .img img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news_info .news_s .swiper-slide a .art {
  width: 50%;
  padding: 0 5%;
}
.news_info .news_s .swiper-slide a .art .time {
  font-size: 16px;
  color: #e5212b;
}
.news_info .news_s .swiper-slide a .art h5 {
  color: #333333;
  margin: 25px 0;
}
.news_info .news_s .swiper-slide a .art p {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}
.news_info .news_s .swiper-slide a .art span {
  margin-top: 70px;
  color: #e5212b;
  position: relative;
  display: inline-block;
}
.news_info .news_s .swiper-slide a .art span:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: #e5212b;
}
.news_info .list {
  margin-top: 60px;
  margin-bottom: 80px;
}
.news_info .list li {
  margin-bottom: 30px;
}
.news_info .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: 30px 50px 30px 30px;
  background: #f8f8f8;
}
.news_info .list li a:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news_info .list li a:hover .art h5 {
  color: #e5212b;
}
.news_info .list li a .img {
  width: 280px;
  height: 200px;
  overflow: hidden;
}
.news_info .list li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news_info .list li a span {
  width: 100px;
  text-align: right;
  color: #e5212b;
  font-size: 16px;
}
.news_info .list li a .art {
  width: calc(100% - 380px);
  padding: 0 50px;
}
.news_info .list li a .art h5 {
  font-size: 22px;
}
.news_info .list li a .art .time {
  color: #e5212b;
  margin: 10px 0 20px;
}
.news_info .list li a .art p {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}
.news_info .w1200 .sub {
  font-size: 16px;
  color: #666666;
  margin: 15px 0 30px;
  text-align: center;
}
.news_info .w1200 .sub span {
  margin: 0 15px;
}
.news_info .w1200 .info {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 60px;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}
.news_info .w1200 .info > * {
  margin-bottom: 30px;
}
.news_info form {
  width: 1000px;
  max-width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #fff;
  padding: 0 10px;
  margin: 0 auto;
  border: 1px solid #ebebeb;
  position: relative;
}
.news_info form input {
  width: calc(100% - 50px);
  height: 50px;
  line-height: 50px;
  border: none;
  color: #333;
}
.news_info form a {
  width: 50px;
  height: 50px;
  display: block;
  background: url(../images/search2.png) no-repeat center;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #ebebeb;
}
.sxy {
  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: 10px 0;
}
.sxy .left {
  width: calc(100% - 100px);
}
.sxy .left a {
  display: block;
  font-size: 16px;
  color: #666666;
}
.sxy .left a:hover {
  color: #e5212b;
}
.sxy .fh {
  color: #666666;
  font-size: 16px;
  padding-left: 30px;
  background: url(../images/fh.png) no-repeat left center;
}
.sxy .fh:hover {
  color: #e5212b;
  background: url(../images/fh2.png) no-repeat left center;
}
.ffzx_info {
  padding: 120px 0 185px;
}
.ffzx_info .w1600 {
  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;
}
.ffzx_info .map {
  width: 61.9%;
}
.ffzx_info .right {
  width: 30%;
}
.ffzx_info .right h3 {
  text-align: left;
  margin-bottom: 50px;
}
.ffzx_info .right .item {
  padding: 40px;
  margin-top: 1px;
  background: #f8f8f8;
  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;
}
.ffzx_info .right .item .img {
  width: 80px;
  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;
}
.ffzx_info .right .item .art {
  width: calc(100% - 80px);
}
.ffzx_info .right .item .art span {
  font-size: 16px;
  color: #666666;
  margin-bottom: 20px;
}
.ffzx_info .right .item .art p {
  line-height: 32px;
  font-size: 18px;
  color: #333333;
}
.ffzx_info .right .item .art p.p1 {
  font-size: 30px;
  color: #e5212b;
  font-family: 'Arial';
}
.cjwt_info {
  padding: 120px 0;
}
.cjwt_info .list {
  margin-bottom: 70px;
}
.cjwt_info .list li {
  margin-bottom: 10px;
}
.cjwt_info .list li a {
  display: block;
  padding: 30px 60px 30px 75px;
  color: #333333;
  font-size: 18px;
  background: #f8f8f8;
  position: relative;
}
.cjwt_info .list li a.on:after {
  background: url(../images/x2.png) no-repeat center;
}
.cjwt_info .list li a:before {
  content: '';
  width: 28px;
  height: 25px;
  position: absolute;
  left: 28px;
  top: 32px;
  background: url(../images/w.png) no-repeat center;
}
.cjwt_info .list li a:after {
  content: '';
  width: 28px;
  height: 28px;
  position: absolute;
  right: 28px;
  top: 32px;
  background: url(../images/x.png) no-repeat center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cjwt_info .list li .info {
  padding: 40px 60px 30px 75px;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  position: relative;
  border-top: 1px solid #eff0ef;
  border-bottom: 1px solid #eff0ef;
  display: none;
}
.cjwt_info .list li .info:before {
  content: '';
  width: 28px;
  height: 25px;
  position: absolute;
  left: 28px;
  top: 42px;
  background: url(../images/d.png) no-repeat center;
}
.xzzx_info {
  padding: 120px 0;
}
.xzzx_info .list {
  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;
  margin-bottom: 60px;
}
.xzzx_info .list li {
  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;
  width: 49.375%;
  height: 130px;
  background: #f8f8f8;
  margin-bottom: 20px;
}
.xzzx_info .list li .art {
  width: 75%;
  padding-left: 50px;
}
.xzzx_info .list li .art h6 {
  font-size: 18px;
  color: #2e312c;
  position: relative;
  margin-bottom: 20px;
}
.xzzx_info .list li .art h6:before {
  content: '';
  width: 7px;
  height: 3px;
  position: absolute;
  left: -22px;
  top: 50%;
  margin-top: -1.5px;
  background: #e5212b;
}
.xzzx_info .list li .art .time {
  font-size: 16px;
  color: #888888;
}
.xzzx_info .list li a {
  width: 24%;
  min-width: 110px;
  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;
  border-left: 1px solid #ebebeb;
}
.xzzx_info .list li a:hover {
  background: #e5212b;
  border-left: 1px solid #e5212b;
}
.xzzx_info .list li a:hover span {
  color: #fff;
  background: url(../images/xz2.png) no-repeat center right;
}
.xzzx_info .list li a span {
  font-size: 16px;
  color: #e5212b;
  padding-right: 30px;
  background: url(../images/xz.png) no-repeat center right;
}
.lxfs_info {
  padding: 120px 0;
}
.lxfs_info .w1600 {
  background: #f8f8f8;
  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;
}
.lxfs_info .w1600 .map {
  width: calc(100% - 600px);
  min-width: 50%;
  height: 540px;
}
.lxfs_info .w1600 .map #mapcontent {
  width: 100%;
  height: 100%;
}
.lxfs_info .w1600 .art {
  width: 600px;
  padding: 0 5%;
}
.lxfs_info .w1600 .art h5 {
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 30px;
}
.lxfs_info .w1600 .art h5:before {
  content: '';
  width: 56px;
  height: 2px;
  background: #e5212b;
  position: absolute;
  left: 0;
  bottom: 0;
}
.lxfs_info .w1600 .art .info {
  font-size: 16px;
  line-height: 40px;
  color: #2e312c;
}
.lxfs_info .w1600 .art .info span {
  font-size: 30px;
  color: #e5212b;
}
.lxfs_info .w1600 .art .ewm {
  width: 123px;
  height: auto;
  margin-top: 10px;
}
.lxfs_info .w1600 .art .ewm img {
  width: 123px;
  height: 123px;
}
.lxfs_info .w1600 .art .ewm p {
  text-align: center;
}
.jrwm_info {
  padding: 120px 0;
}
.jrwm_info .list {
  margin-bottom: 80px;
}
.jrwm_info .list li {
  background: #ecf0f6;
}
.jrwm_info .list li .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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 22px 0;
  margin-bottom: 1px;
  cursor: pointer;
}
.jrwm_info .list li .info {
  padding: 50px;
  background: #fbfbfb;
  display: none;
}
.jrwm_info .list li .info h6 {
  font-size: 18px;
  margin-bottom: 30px;
}
.jrwm_info .list li .info .info_d {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-bottom: 45px;
}
.jrwm_info .list li .info .jl_a {
  display: block;
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background: #e5212b;
  border-radius: 25px;
  font-size: 18px;
  margin-top: 100px;
}
.jrwm_info .list li .cz_a {
  display: block;
  width: 100%;
  height: 28px;
  background: url(../images/t1.png) no-repeat center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.jrwm_info .list li .cz_a.on {
  background: url(../images/t2.png) no-repeat center;
}
.jrwm_info .list li.li_top {
  background: #e5212b;
}
.jrwm_info .list li.li_top title {
  margin-bottom: 0;
}
.jrwm_info .list li.li_top span {
  color: #fff;
}
.jrwm_info .list li span {
  text-align: center;
  font-size: 16px;
  color: #333;
}
.jrwm_info .list li span:first-child {
  width: 11.25%;
}
.jrwm_info .list li span:nth-child(2) {
  width: 25%;
}
.jrwm_info .list li span:nth-child(3) {
  width: 13.75%;
}
.jrwm_info .list li span:nth-child(4) {
  width: 18.75%;
}
.jrwm_info .list li span:nth-child(5) {
  width: 18.75%;
}
.jrwm_info .list li span:nth-child(6) {
  width: 10%;
  padding-left: 2.5%;
}
.mark {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}
.markbox {
  position: fixed;
  max-width: 95%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
  background: #fff;
  height: auto;
  padding: 70px 250px 80px;
}
.markbox .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/close.png) no-repeat center #fff;
  z-index: 99999;
}
.markbox .labTit {
  margin-bottom: 20px;
}
.form_box {
  width: 300px;
}
.form_box label {
  border: none;
  padding: 0;
  float: none;
  width: 100%;
  display: block;
}
.form_box label.file {
  border-bottom: 1px solid #dfdfdf;
  font-size: 16px;
  color: #bcbcbc;
  line-height: 35px;
  position: relative;
}
.form_box label.file i {
  font-style: normal;
}
.form_box label.file input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.form_box label.file .lla {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: calc(100% - 10px);
  z-index: 999;
  padding-left: 20px;
}
.form_box label.file .lla:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  background: #dfdfdf;
}
.form_box span {
  display: block;
  font-size: 14px;
  color: #333333;
  margin-bottom: 10px;
}
.form_box input {
  border-bottom: 1px solid #dfdfdf;
  font-size: 16px;
  color: #bcbcbc;
  line-height: 35px;
  width: 100%;
}
.form_box .file_div {
  position: relative;
}
.form_box .file_div p {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #bcbcbc;
}
.form_box .btn input {
  display: block;
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #e5212b;
  color: #fff;
  font-size: 16px;
  border-radius: 25px;
  margin: 20px auto;
  cursor: pointer;
}
.zxly_info {
  padding: 120px 0;
}
.zxly_info .w1600 {
  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;
  background: #f8f8f8;
}
.zxly_info .w1600 form {
  width: 50%;
  padding: 0 5%;
}
.zxly_info .w1600 form .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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.zxly_info .w1600 form .items label {
  display: block;
  width: 49%;
  margin-bottom: 20px;
}
.zxly_info .w1600 form .items label.w100 {
  width: 100%;
}
.zxly_info .w1600 form .items label span {
  font-size: 16px;
  line-height: 30px;
  height: 30px;
  display: block;
  color: #333;
}
.zxly_info .w1600 form .items label textarea {
  width: 100%;
  height: 130px;
  padding: 10px;
  font-size: 16px;
  line-height: 30px;
  background: #ebebeb;
  border: none;
}
.zxly_info .w1600 form .items label input {
  width: 100%;
  height: 46px;
  line-height: 46px;
  background: #ebebeb;
  border: none;
  padding: 0 10px;
  font-size: 16px;
}
.zxly_info .w1600 form .items label input#code {
  width: 120px;
  background: #e5212b;
  color: #fff;
  font-style: italic;
  letter-spacing: 2px;
}
.zxly_info .w1600 form .btn {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #e5212b;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.zxly_info .w1600 img {
  width: 50%;
}
@media (max-width: 1440px) {
  .pro_list li a .imgbox {
    height: 240px;
  }
  .xgcp .pro_list li:first-child a .imgbox {
    height: 240px;
  }
  .jjfa_list li a .art .info {
    margin: 15px 0 50px;
  }
  .news_info .news_s .swiper-pagination-bullets {
    bottom: 15px;
  }
  .ffzx_info .right .item .img {
    width: 50px;
  }
  .ffzx_info .right .item .img img {
    max-width: 30px;
  }
  .ffzx_info .right .item .art {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1680px) {
  .jjfa_index .swiper-container .swiper-button-prev {
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .jjfa_index .swiper-container .swiper-button-next {
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 1024px) {
  header .w1600 .right .nav li > a {
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  a.more {
    padding: 6px 40px 6px 15px;
    background: url(../images/r.png) no-repeat right 25px center;
  }
  .index_banner .art .w1600 .info {
    margin: 10px 0 15px;
    font-size: 18px;
  }
  .index_banner .banner-pa {
    bottom: 20px;
  }
  header {
    padding-top: 0px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  header .w1600 .logo {
    max-width: 40%;
  }
  header.h_fixed {
    padding: 0px 0 0 0;
  }
  header.h_fixed .menu img.img1 {
    display: none;
  }
  header.h_fixed .menu img.img2 {
    display: block;
  }
  header .menu {
    margin-left: 20px;
    width: 20px;
    height: 20px;
  }
  header .menu img.img1 {
    display: block;
  }
  header .menu img.img2 {
    display: none;
  }
  header .w1600 .right .nav {
    position: fixed;
    width: 50%;
    left: -50%;
    top: 60px;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.8);
    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: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .w1600 .right .nav.on {
    left: 0;
  }
  header .w1600 .right .nav li {
    width: 100%;
  }
  header .w1600 .right .nav li.hassub:before {
    display: none!important;
  }
  header .w1600 .right .nav .sub {
    display: none!important;
  }
  .pro_index {
    padding: 50px 0px;
  }
  .pro_index .items {
    margin-top: 30px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .pro_index .items .item {
    width: 100%!important;
    margin-bottom: 10px;
  }
  .pro_index .items .item:first-child .art h4 {
    font-size: 24px;
  }
  .pro_index .items .item:first-child .art .info {
    font-size: 18px;
    margin-top: 10px;
  }
  .pro_index .items .item:nth-child(4) {
    position: relative;
  }
  .pro_index .items .item:nth-child(4) a {
    padding-bottom: 100%!important;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .pro_index .items .item:nth-child(4) a .art {
    width: 100%;
  }
  .pro_index .items .item a {
    padding: 20px 0!important;
    height: auto;
  }
  .case_index .box {
    margin-top: 30px;
  }
  .case_index .box .swiper-slide img {
    min-height: 360px;
    object-fit: cover;
  }
  .case_index .box .list {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .case_index .box .list li {
    width: 33.33%;
    height: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .case_index .box .list li:nth-child(4),
  .case_index .box .list li:nth-child(5),
  .case_index .box .list li:nth-child(6) {
    border-bottom: none;
  }
  .case_index .box .list li h1 {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .case_index .box .list li .info {
    font-size: 14px;
  }
  .jjfa_index {
    padding: 50px 0;
  }
  .jjfa_index .jjfa_s {
    padding-bottom: 200px;
  }
  .jjfa_index .swiper-container .jjfa_text,
  .jjfa_index .swiper-container .jjfa_text2 {
    bottom: 200px;
  }
  .jjfa_index .swiper-container .jjfa_sp {
    bottom: 220px;
  }
  .jjfa_index .swiper-container .swiper-button-prev,
  .jjfa_index .swiper-container .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 100px;
    opacity: 1;
  }
  .jjfa_index .swiper-container .swiper-button-prev {
    left: 0;
  }
  .jjfa_index .swiper-container .swiper-button-next {
    right: 0;
  }
  .jjfa_index .swiper-container .swiper-slide.swiper-slide-active img {
    width: 100%;
  }
  .jjfa_index .swiper-container .swiper-slide .art {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    height: 200px;
    bottom: -200px;
  }
  .jjfa_index .swiper-container .swiper-slide .art h5 {
    margin-top: 15px;
  }
  .jjfa_index .swiper-container .swiper-slide .art .info {
    margin: 15px 0 20px;
  }
  .jjfa_index .swiper-container .swiper-slide .art .more {
    padding: 10px 40px 10px 15px;
    background: url(../images/r.png) no-repeat right 25px center #e5212b;
  }
  .ryzz_index .tabtitle {
    margin: 25px 0 30px;
  }
  .ryzz_index .tabtitle a {
    padding: 5px 10px;
    font-size: 14px;
  }
  .ryzz_index .tabbox {
    margin-bottom: 30px;
  }
  .ryzz_index .tabbox .item {
    padding: 0;
  }
  .ryzz_index .tabbox .item.on {
    padding-bottom: 20px;
    background-size: 100% 20px;
  }
  .ryzz_index .tabbox .item .swiper-button-prev,
  .ryzz_index .tabbox .item .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .zjdl_index video,
  .zjdl_index img {
    min-height: 300px;
    object-fit: cover;
  }
  .zjdl_index .art h3 {
    margin-bottom: 20px;
  }
  .news_index {
    padding: 50px 0;
  }
  .news_index .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news_index .w1600 h3 {
    margin-bottom: 15px;
    text-align: center;
  }
  .news_index .w1600 .zhxw {
    width: 100%;
  }
  .news_index .w1600 .zhxw a {
    padding-bottom: 80%;
  }
  .news_index .w1600 .gsdt {
    width: 100%;
    margin-top: 30px;
  }
  .news_index .w1600 .gsdt .box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news_index .w1600 .gsdt .box a.a_img {
    width: 100%;
  }
  .news_index .w1600 .gsdt .box a.a_img .imgbox {
    padding-bottom: 80%;
  }
  .news_index .w1600 .gsdt .box .ul_list {
    width: 100%;
  }
  .news_index .w1600 .gsdt .box .ul_list li a {
    padding: 25px 0;
    background: url(../images/r2.png) no-repeat right bottom 30px;
  }
  .news_index .w1600 .gsdt .box .ul_list li a h6 {
    margin-bottom: 15px;
  }
  footer {
    padding-top: 50px;
  }
  footer .foot1 {
    padding-bottom: 30px;
  }
  footer .foot1 .w1600 ul {
    display: none;
  }
  footer .foot1 .w1600 .right {
    width: 100%;
  }
  footer .foot2 .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  footer .foot2 .w1600 .copyright {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  footer .foot2 .w1600 .links {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  footer .foot2 .w1600 .links a {
    margin: 0 15px;
  }
  .locations.locations2 .w1600 {
    height: auto;
  }
  .locations .w1600 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    height: 80px;
  }
  .locations .w1600 .nav_a {
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .locations .w1600 .nav_a a {
    line-height: 49px;
  }
  .locations .w1600 .location {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
  }
  .pro_info {
    padding: 50px 0;
  }
  .pro_list li {
    width: 100%!important;
    margin-right: 0!important;
  }
  .pro_list li a .art {
    padding: 20px;
  }
  .pro_list li a .art .info {
    font-size: 16px;
  }
  .pro_list li a .imgbox {
    height: 200px;}
    .pro_list li a .imgbox {

    width: 100%;

 

  }
  .pro_list li:first-child a {
    display: block;
  }
  .pro_list li:first-child a .art {
    width: 100%;
  }
  .pro_list li:first-child a .imgbox {
    width: 100%;
    height: 200px;
  }
  .Pages a {
    padding: 10px;
    margin: 0 3px;
    font-size: 14px;
  }
  .Pages a.a_prev,
  .Pages a.a_next {
    padding: 10px 20px;
  }
  .pro_list {
    margin-bottom: 20px;
  }
  .pro_list li {
    margin-bottom: 25px;
    height: auto;
  }
  .index_banner.banner .art .w1600 .info {
    margin: 10px 0 15px;
    font-size: 18px;
    line-height: 30px;
  }
  .pro_items .item {
    padding: 0px 0;
  }
  .pro_items .item .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .pro_items .item .w1600 .img {
    width: 100%;
    margin-bottom: 30px;
  }
  .pro_items .item .w1600 .art {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    padding-left: 0;
  }
  .pro_items .item .w1600 .art h3 {
    margin-bottom: 15px;
  }
  .case_info {
    padding: 50px 0;
  }
  .case_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .case_info .info_con .jj {
    margin: 25px auto;
  }
  .case_info .info_con .swiper-container .swiper-pagination-bullets {
    bottom: 10px;
  }
  .jjfa_info {
    padding: 50px 0;
  }
  .jjfa_list {
    margin-bottom: 30px;
  }
  .jjfa_list li a {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .jjfa_list li a .img {
    width: 100%;
  }
  .jjfa_list li a .art {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    padding: 20px;
  }
  .jjfa_list li a .art .info {
    margin: 15px 0;
  }
  .pro_list li a,
  .xgcp .pro_list li a,
  .pro_list li:first-child a,
  .xgcp .pro_list li:first-child a {
    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;
  }
  .pro_list li a .art {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    width: 100%;
  }
  
  .pro_items .item:nth-child(2n) {
    background: none;
    line-height: 0;
}
.item.wow.fadeInUp.animated .img img {
    height: auto;
}
  .jjfa_info .box1 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .jjfa_info .box1 .left {
    width: 100%;
    margin-bottom: 10px;
  }
  .jjfa_info .box1 .left .art h3 {
    margin-bottom: 15px;
  }
  .jjfa_info .box1 .left .art .info {
    margin-bottom: 10px;
  }
  .jjfa_info .box1 .imgs {
    width: 100%;
  }
  .xgal,
  .xgcp {
    padding: 50px 0 10px;
  }
  .xgcp .pro_list li:first-child a .imgbox {
    height: 200px;
  }
  .pro_list li a {
    padding-top: 20px;
  }
  .about_info {
    padding: 50px 0;
  }
  .about_info .items {
    margin-top: 30px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .about_info .items .item {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px;
  }
  .about_info .items .item img {
    max-width: 80px;
  }
  .about_info .info_con {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .about_info .info_con .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .about_info .info_con .art {
    width: 100%;
  }
  .about_info .info_con .imgbox > a img {
    max-width: 50px;
  }
  .about_info .info_con .imgbox > a p {
    margin-top: 15px;
  }
  .ryzz_info {
    padding: 50px 0;
  }
  .ryzz_info .tabtitle {
    margin-top: 0;
  }
  .ryzz_info .tabbox .list {
    padding: 0 20px;
  }
  .ryzz_info .tabbox .list li {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .ryzz_info .tabbox .list li:first-child:after,
  .ryzz_info .tabbox .list li:nth-child(2n+1):after {
    content: '';
    width: 20px;
    height: 71px;
    position: absolute;
    bottom: 0;
    left: -20px;
    background: url(../uploadfiles/bg.png) no-repeat left bottom;
    background-size: auto 71px;
  }
  .ryzz_info .tabbox .list li:last-child:after,
  .ryzz_info .tabbox .list li:nth-child(2n):after {
    content: '';
    width: 20px;
    height: 71px;
    position: absolute;
    bottom: 0;
    right: -20px;
    background: url(../uploadfiles/bg.png) no-repeat right bottom;
    background-size: auto 71px;
  }
  .ryzz_info .tabbox .list li a .art {
    padding-top: 20px;
    font-size: 16px;
    line-height: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .news_info {
    padding: 50px 0 30px;
  }
  .news_info .news_s .swiper-pagination-bullets {
    bottom: 20px;
    right: 20px;
  }
  .news_info .news_s .swiper-slide a {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news_info .news_s .swiper-slide a .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .news_info .news_s .swiper-slide a .art {
    width: 100%;
    padding: 0;
  }
  .news_info .news_s .swiper-slide a .art h5 {
    margin: 10px 0;
  }
  .news_info .news_s .swiper-slide a .art span {
    margin-top: 30px;
  }
  .news_info .list {
    margin-bottom: 20px;
  }
  .news_info .list li a {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 20px;
  }
  .news_info .list li a .img {
    width: 100%;
  }
  .news_info .list li a .art {
    width: 100%;
    padding: 20px 0;
  }
  .news_info .list li a .art h5 {
    line-height: 1.4;
    font-size: 20px;
  }
  .news_info .list li a span {
    text-align: left;
  }
  .sxy {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .sxy .left {
    width: 100%;
  }
  .sxy .fh {
    width: 100%;
    margin-top: 10px;
  }
  .ffzx_info {
    padding: 50px 0 60px;
  }
  .ffzx_info .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .ffzx_info .w1600 .map {
    width: 100%;
    margin-bottom: 20px;
  }
  .ffzx_info .w1600 .right {
    width: 100%;
  }
  .ffzx_info .w1600 .right h3 {
    margin-bottom: 20px;
  }
  .ffzx_info .w1600 .right .item {
    padding: 20px;
  }
  .ffzx_info .w1600 .right .item .art p {
    font-size: 16px;
    line-height: 30px;
  }
  .ffzx_info .w1600 .right .item .art p.p1 {
    font-size: 22px;
  }
  .cjwt_info {
    padding: 50px 0;
  }
  .cjwt_info .list li a {
    padding: 20px 40px 20px 45px;
  }
  .cjwt_info .list li a:before {
    left: 10px;
    top: 25px;
  }
  .cjwt_info .list li a:after {
    right: 10px;
    top: 25px;
  }
  .cjwt_info .list li .info {
    padding: 20px 20px 20px 45px;
  }
  .cjwt_info .list li .info:before {
    left: 10px;
    top: 25px;
  }
  .cjwt_info .list {
    margin-bottom: 30px;
  }
  .xzzx_info {
    padding: 50px 0;
  }
  .xzzx_info .list {
    margin-bottom: 30px;
  }
  .xzzx_info .list li {
    width: 100%;
  }
  .lxfs_info {
    padding: 50px 0;
  }
  .lxfs_info .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .lxfs_info .w1600 .map {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }
  .lxfs_info .w1600 .art {
    width: 100%;
    padding-bottom: 20px;
  }
  .lxfs_info .w1600 .art .info span {
    font-size: 22px;
  }
  .jrwm_info {
    padding: 50px 0;
  }
  .jrwm_info .list li span:nth-child(6) {
    padding-left: 0;
  }
  .jrwm_info .list li .info {
    padding: 20px;
  }
  .jrwm_info .list li .info h6 {
    margin-bottom: 20px;
  }
  .jrwm_info .list li .info .info_d {
    margin-bottom: 30px;
  }
  .jrwm_info .list li .info .jl_a {
    margin-top: 30px;
  }
  .markbox {
    padding: 20px;
  }
  .markbox .close {
    top: 10px;
    right: 10px;
  }
  .jrwm_info .list {
    margin-bottom: 30px;
  }
  .zxly_info {
    padding: 50px 0;
  }
  .zxly_info .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zxly_info .w1600 form {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .zxly_info .w1600 img {
    width: 100%;
    margin-bottom: 20px;
  }
  .swiper-container-3d {
    perspective: none;
  }
}


.pro_index .items .item a .imgbox .img{
  padding: 2%;
}
.pro_items .item .w1600 .img{
  width: 100%;
}

.a_cur{
  background-color: #e5212b;
    color: #fff !important;
    border-color: #e5212b;
}

.index_banner .art .more {
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 84vw;
  opacity: 0 !important;
  transition: none !important;
  -webkit-animation-duration: inherit !important;
  -webkit-animation-delay: inherit !important;
  border: none !important;
}