
/*全局初始化样式 --*/
body {
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  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.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.xuanzhuan {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}
.juzhong {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.zy_banner {
  width: 100%;
  height: auto;
  min-height: 200px;
  position: relative;
}
.zy_banner img {
  width: 100%;
}
.zy_banner img.pcimg {
  display: block;
}
.zy_banner img.wapimg {
  display: none;
}
.zy_banner .zy_title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 164, 156, 0.6);
}
.zy_banner .zy_title h1 {
  font-size: 36px;
  font-family: "思源黑体 CN";
  color: #fff;
  line-height: 70px;
  font-weight: 600;
}
.current {
  width: 100%;
  height: 40px;
  background: #4cbdba;
}
.current .auto_1170 {
  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;
  height: 100%;
}
.current .auto_1170 a {
  padding-right: 12px;
  margin-right: 3px;
  position: relative;
  font-size: 14px;
  color: #ffffff;
}
.current .auto_1170 a:after {
  content: '>';
  position: absolute;
  right: 0;
  top: 0;
}
.current .auto_1170 span {
  font-size: 14px;
  color: #fff;
}
.zy_news {
  width: 100%;
  padding: 79px 0 80px;
  background: #efefef;
}
.zy_news .auto_1170 .zy_list1 {
  width: 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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.zy_news .auto_1170 .zy_list1 li {
  width: 31.28%;
}
.zy_news .auto_1170 a {
  width: 100%;
  height: 100%;
}
.zy_news .auto_1170 a:hover .art h3,
.zy_news .auto_1170 a:hover .art p,
.zy_news .auto_1170 a:hover .art .morebox .time {
  color: #004488;
}
.zy_news .auto_1170 a .img {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
}
.zy_news .auto_1170 a .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.zy_news .auto_1170 a .art {
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 30px;
  min-height: 218px;
}
.zy_news .auto_1170 a .art h3 {
  font-size: 18px;
  color: #333;
  line-height: 30px;
  max-height: 60px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.zy_news .auto_1170 a .art p {
  font-size: 14px;
  color: #777777;
  line-height: 22px;
  max-height: 44px;
  margin-bottom: 24px;
  min-height: 44px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.zy_news .auto_1170 a .art .morebox {
  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;
}
.zy_news .auto_1170 a .art .morebox .time {
  font-size: 14px;
  color: #777777;
  font-family: 'Arial';
}
.zy_news .auto_1170 a .art .morebox .more {
  font-size: 14px;
  color: #004488;
}
.zy_news2 {
  width: 100%;
  background: #fff;
  padding: 80px 0;
}
.zy_news2 .zy_list2 {
  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: 50px;
}
.zy_news2 .zy_list2 li {
  width: 568px;
  height: 160px;
  max-width: 49%;
  margin-bottom: 30px;
}
.zy_news2 .zy_list2 li a {
  width: 100%;
  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;
}
.zy_news2 .zy_list2 li a:hover .art h3,
.zy_news2 .zy_list2 li a:hover .art p,
.zy_news2 .zy_list2 li a:hover .art span {
  color: #004488;
}
.zy_news2 .zy_list2 li a .img {
  width: 42.25%;
  height: 100%;
}
.zy_news2 .zy_list2 li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zy_news2 .zy_list2 li a .art {
  width: 57.75%;
  height: 100%;
  background: #fff;
  padding: 0 20px;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  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;
  overflow: hidden;
}
.zy_news2 .zy_list2 li a .art h3 {
  font-size: 18px;
  line-height: 24px;
  max-height: 48px;
  width: 100%;
  color: #555555;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.zy_news2 .zy_list2 li a .art p {
  font-size: 14px;
  color: #777777;
  max-height: 38px;
  width: 100%;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.zy_news2 .zy_list2 li a .art .time {
  font-size: 14px;
  font-family: 'Arial';
  color: #777777;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p_page {
  text-align: center;
  margin: 0 auto;
  display: block;
}
.p_page a {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  line-height: 50px;
  text-align: center;
  background: #efefef;
  color: #777777;
  font-family: '微软雅黑';
  font-size: 16px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
}
.p_page a.cur {
  background: #004488;
  color: #fff;
}
.p_page a.a_prev {
  background-image: url(../image/zy_l.png);
}
.p_page a.a_next {
  background-image: url(../image/zy_r.png);
}
.p_page em {
  font-style: normal;
  height: 50px;
  overflow: hidden;
  text-align: center;
  display: inline-block;
  max-width: calc(100% - 150px);
}
.zy_about {
  padding: 100px 0;
}
.zy_jykgk {
  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;
}
.zy_jykgk .video {
  width: 50%;
  position: relative;
}
.zy_jykgk .video:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.zy_jykgk .video video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: none;
}
.zy_jykgk .video .zy_play {
  position: absolute;
  width: 48px;
  height: 48px;
  background: url(../image/zy_play.png) no-repeat center;
  background-size: 48px 48px;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.zy_jykgk .video .videoimg {
  width: 100%;
  height: 100%;
}
.zy_jykgk .art {
  width: 50%;
  padding-left: 6.8%;
}
.zy_jykgk .art h2 {
  font-size: 32px;
  color: #004488;
  font-weight: 600;
}
.zy_jykgk .art p {
  font-size: 16px;
  color: #777777;
  line-height: 30px;
  margin: 30px 0;
}
h2.zy_title {
  font-size: 32px;
  color: #004488;
  font-weight: 600;
  text-align: center;
}
.zy_zzjg {
  background: #efefef;
  padding: 95px 0 70px;
}
.zy_zzjg p {
  color: #777777;
  font-size: 16px;
  line-height: 30px;
  margin: 30px 0;
}
.zy_zzjg2 {
  padding: 99px 0 160px;
}
.zy_zzjg2 .pcimg {
  margin: 45px auto 73px;
  display: block;
}
.zy_zzjg2 .wapimg {
  display: none;
}
.zy_zzjg2 .other {
  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;
  flex-wrap: wrap;
  justify-content: flex-start;
	margin-top: 40px;
}
.zy_zzjg2 .other .a {
  width: 48%;
  height: 140px;
  margin: 10px 7.5px;
  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;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}
.zy_zzjg2 .other .a 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;
}
.zy_zzjg2 .other .a .img {
  width: 80px;
  height: 80px;
  margin: 0 10px;
  display: block;
  float: left;
}
.zy_zzjg2 .other .a .img img {
  width: 100%;
  height: 100%;
}
.zy_zzjg2 .other .a .art {
  width: calc(100% - 110px);
  float: left;
}
.zy_zzjg2 .other .a .art h4 {
  font-size: 22px;
  color: #004488;
}
.zy_zzjg2 .other .a .art p {
  font-size: 14px;
  line-height: 22px;
  color: #777777;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.zy_yytd {
  padding: 100px 0 60px;
}
.zy_yytd .zy_yytd_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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.zy_yytd .zy_yytd_list li {
  margin-right: 3.4%;
  max-width: 22.22%;
  margin-bottom: 40px;
}
.zy_yytd .zy_yytd_list li:nth-child(4n) {
  margin-right: 0;
}
.zy_yytd .zy_yytd_list li a {
  display: block;
  width: 260px;
  max-width: 100%;
  padding: 10px;
  background: #f6f6f6;
  border-radius: 5px;
}
.zy_yytd .zy_yytd_list li a .img {
  width: 100%;
  height: auto;
}
.zy_yytd .zy_yytd_list li a .img img {
  max-width: 100%;
}
.zy_yytd .zy_yytd_list li a .art h3 {
  font-size: 20px;
  color: #555555;
  margin: 20px 0 10px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zy_yytd .zy_yytd_list li a .art p {
  font-size: 14px;
  color: #777777;
  margin-bottom: 15px;
}
.zy_yytd .zy_yytd_list li a .art span {
  display: block;
  font-size: 14px;
  color: #004488;
  padding-bottom: 14px;
}
.zy_fzlc {
  padding: 100px 0 0;
}
.zy_fzlc .zy_fzlc_list {
  position: relative;
  padding-bottom: 135px;
}
.zy_fzlc .zy_fzlc_list:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
  background: #e5e5e5;
}
.zy_fzlc .zy_fzlc_list li {
  float: left;
  width: 46.15%;
  height: auto;
  padding: 20px 25px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
  margin-top: 100px;
  position: relative;
}
.zy_fzlc .zy_fzlc_list li:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #004488;
  border-radius: 50%;
  top: 50%;
  right: -9.35%;
  margin-top: -5px;
  background: #fff;
}
.zy_fzlc .zy_fzlc_list li:before {
  content: '';
  position: absolute;
  width: 8%;
  height: 1px;
  top: 50%;
  right: -8%;
  margin-top: -0.5px;
  background: #e5e5e5;
}
.zy_fzlc .zy_fzlc_list li:first-child {
  margin-top: 0;
}
.zy_fzlc .zy_fzlc_list li:nth-child(2) {
  margin-top: 150px;
}
.zy_fzlc .zy_fzlc_list li:nth-child(odd) {
  float: right;
}
.zy_fzlc .zy_fzlc_list li:nth-child(odd):before {
  left: -8%;
}
.zy_fzlc .zy_fzlc_list li:nth-child(odd):after {
  left: -9.35%;
}
.zy_fzlc .zy_fzlc_list li a {
  width: 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;
}
.zy_fzlc .zy_fzlc_list li a .img {
  width: 220px;
  height: 160px;
}
.zy_fzlc .zy_fzlc_list li a .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.zy_fzlc .zy_fzlc_list li a .art {
  width: calc(100% - 250px);
}
.zy_fzlc .zy_fzlc_list li a .art span {
  font-size: 24px;
  color: #004488;
  margin-bottom: 16px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zy_fzlc .zy_fzlc_list li a .art p {
  font-size: 14px;
  color: #777777;
  margin-bottom: 10px;
  font-weight: 700;
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden; */
}
.zy_fzlc .zy_fzlc_list li a .art p:last-child {
  margin-bottom: 0;
  font-weight: normal;
}
.zy_zlxz .zy_nb {
  padding: 80px 0 100px;
}
.zy_zlxz .zy_nb h2 {
  margin-bottom: 39px;
}
.zy_zlxz .zy_nb .zy_nb_sbox {
  position: relative;
  width: 1170px;
  max-width: calc(100% - 80px);
}
.zy_zlxz .zy_nb .zy_nb_sbox .swiper-button-prev,
.zy_zlxz .zy_nb .zy_nb_sbox .swiper-button-next {
  width: 20px;
  height: 32px;
  outline: none;
}
.zy_zlxz .zy_nb .zy_nb_sbox .swiper-button-prev {
  left: -40px;
  background: url(../image/zy_left.png) no-repeat center;
}
.zy_zlxz .zy_nb .zy_nb_sbox .swiper-button-next {
  right: -40px;
  background: url(../image/zy_right.png) no-repeat center;
}
.zy_zlxz .zy_nb .zy_nb_s {
  width: 100%;
  height: 400px;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide {
  background-size: cover;
  background-position: center;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide:hover section {
  opacity: 1;
  top: 0;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide section {
  width: 100%;
  height: 100%;
  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;
  background: rgba(0, 164, 156, 0.8);
  opacity: 0;
  position: relative;
  top: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide section h3 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 30px;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide section div {
  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;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide section div a {
  display: block;
  width: 170px;
  height: 50px;
  border: 1px solid #fff;
  margin: 0 5px;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  font-size: 16px;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide section div a.zxyl {
  background: #fff;
  color: #004488;
}
.zy_zlxz .zy_nb .zy_nb_s .swiper-slide section div a.xz {
  color: #ffffff;
  background: transparent;
}
.zy_zlxz .zy_xcc {
  padding: 104px 0 107px;
  background: #efefef;
}
.zy_zlxz .zy_xcc h2 {
  margin-bottom: 50px;
}
.zy_zlxz .zy_xcc .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;
}
.zy_zlxz .zy_xcc .list li {
  margin-bottom: 15px;
  width: 564px;
  max-width: 49%;
}
.zy_zlxz .zy_xcc .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;
  background: #e3e3e3;
  padding: 20px 30px 15px;
}
.zy_zlxz .zy_xcc .list li a .left p {
  font-size: 16px;
  color: #555555;
  position: relative;
}
.zy_zlxz .zy_xcc .list li a .left p:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: #004488;
  border-radius: 50%;
  left: -15px;
  top: 50%;
  margin-top: -2.5px;
}
.zy_zlxz .zy_xcc .list li a .left span {
  font-size: 14px;
  color: #777777;
  font-family: "Arial";
}
.zy_zlxz .zy_xcc .list li a .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;
}
.zy_zlxz .zy_xcc .list li a .right img {
  margin-right: 7px;
  width: 21px;
}
.zy_zlxz .zy_xcp {
  padding: 99px 0 100px;
}
.zy_zlxz .zy_xcp h2 {
  margin-bottom: 45px;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox {
  position: relative;
  width: 1170px;
  max-width: calc(100% - 80px);
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-button-prev,
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-button-next {
  width: 20px;
  height: 32px;
  outline: none;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-button-prev {
  left: -40px;
  background: url(../image/zy_left.png) no-repeat center;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-button-next {
  right: -40px;
  background: url(../image/zy_right.png) no-repeat center;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-slide {
  position: relative;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-slide:hover p {
  color: #004488;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-slide .img {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-slide .img .openvideo {
  width: 100%;
  height: 100%;
  background: url(../image/zy_play.png) no-repeat center;
  background-size: 38px 38px;
  z-index: 1;
  position: absolute;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-slide .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-slide p {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 21px;
  font-size: 16px;
  color: #555555;
}
.zy_zlxz .zy_xcp .zy_xcp_sbox .swiper-slide p.src {
  display: none;
}
.videobg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
}
.videobox {
  max-width: 90%;
  max-height: 90%;
  width: 900px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 1001;
  display: none;
}
.videobox video {
  margin: 0 auto;
  display: block;
  width: 100%;
}
.videobox .closevideo {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 30px;
  height: 30px;
}
.videobox .closevideo:after,
.videobox .closevideo:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
  border-radius: 3px;
}
.videobox .closevideo:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.zy_cjwt {
  padding: 31px 0 120px;
}
.zy_cjwt h2 {
  font-size: 24px;
  font-weight: bold;
  color: #555555;
  margin: 60px 0 40px;
}
.zy_cjwt h2 span {
  font-size: 18px;
}
.zy_cjwt .djck {
  font-size: 16px;
  color: #004488;
  margin-top: -20px;
  display: block;
}
.zy_cjwt li .quesa {
  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: 0 20px;
  background: #efefef;
  height: 60px;
  margin-bottom: 1px;
}
.zy_cjwt li .quesa.cur img {
  transform: rotate(0deg);
}
.zy_cjwt li .quesa span {
  width: 26px;
  height: 45px;
  margin-top: -15px;
  background: #004488;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
  font-size: 14px;
  color: #ffffff;
  font-family: "Arial";
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 48px;
}
.zy_cjwt li .quesa p {
  width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 15px;
  font-size: 18px;
  color: #555555;
}
.zy_cjwt li .quesa img {
  width: 14px;
  height: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  transform: rotate(-90deg);
}
.zy_cjwt li .art {
  padding: 50px 62px;
  background: #f8f8f8;
  display: none;
}
.zy_cjwt li .art p {
  font-size: 14px;
  font-weight: lighter;
  line-height: 31px;
  color: #777777;
}
.zy_zp {
  width: 100%;
  padding: 79px 0 100px;
}
.zy_zp h2 {
  margin-bottom: 30px;
}
.zy_zp h5 {
  font-size: 16px;
  color: #777777;
  text-align: center;
  line-height: 1.8;
}
.zy_zp h5 a {
  color: #004488;
  text-decoration: underline;
}
.zy_zp .zp_list {
  width: 100%;
  margin-top: 56px;
  margin-bottom: 80px;
}
.zy_zp .zp_list li {
  width: 100%;
}
.zy_zp .zp_list li:first-child a {
  background: #004488 !important;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.zy_zp .zp_list li .zpa {
  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: 0 40px;
  height: 70px;
  font-size: 18px;
  color: #555555;
  background: #efefef;
  border: 1px solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 1px;
}
.zy_zp .zp_list li .zpa.cur {
  background: #fff;
  border: 1px solid #f4f4f4;
}
.zy_zp .zp_list li .zpa.cur .img {
  transform: rotate(0deg);
}
.zy_zp .zp_list li .zpa i {
  font-style: normal;
}
.zy_zp .zp_list li .zpa p {
  width: 60%;
}
.zy_zp .zp_list li .zpa .right {
  width: 40%;
  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;
}
.zy_zp .zp_list li .zpa .right span {
  width: 45%;
  text-align: center;
}
.zy_zp .zp_list li .zpa .right i {
  width: 10%;
}
.zy_zp .zp_list li .zpa .img {
  width: 14px;
  height: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  transform: rotate(-90deg);
  display: block;
  margin: 0 auto;
}
.zy_zp .zp_list li .art {
  padding: 20px 40px 90px;
  background: #f8f8f8;
  display: none;
}
.zy_zp .zp_list li .art h4 {
  padding-top: 30px;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
}
.zy_zp .zp_list li .art p {
  font-size: 14px;
  color: #777777;
  font-weight: lighter;
  line-height: 24px;
}
.zy_zp .zp_list li .art .tdjla {
  width: 155px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  background: #004488;
  color: #fff;
  font-size: 16px;
  color: #ffffff;
  display: block;
  margin-top: 30px;
  border-radius: 5px;
  display: none;
}
.zy_lxfs {
  padding: 100px 0;
}
.zy_lxfs .lxfs_box {
  width: 100%;
  height: 540px;
  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;
}
.zy_lxfs .lxfs_box .map {
  width: 50%;
  height: 100%;
}
.zy_lxfs .lxfs_box .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.zy_lxfs .lxfs_box .map #map {
  height: 100%;
  width: 100%;
}
.zy_lxfs .lxfs_box .art {
  width: 50%;
  padding: 0 70px;
}
.zy_lxfs .lxfs_box .art h2 {
  text-align: left;
  margin-bottom: 35px;
}
.zy_lxfs .lxfs_box .art .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 25px;
}
.zy_lxfs .lxfs_box .art .item img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.zy_lxfs .lxfs_box .art .item section {
  width: calc(100% - 60px);
  color: #555555;
}
.zy_lxfs .lxfs_box .art .item section span {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zy_lxfs .lxfs_box .art .item section p {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zy_yytdxqy {
  padding: 100px 0 120px;
}
.zy_yytdxqy .zy_yytdxq {
  position: relative;
}
.zy_yytdxqy .zy_yytdxq .img {
  width: 240px;
  position: absolute;
  top: 0;
  left: 0;
}
.zy_yytdxqy .zy_yytdxq .name {
  padding: 0 60px 0 300px;
}
.zy_yytdxqy .zy_yytdxq .name h3 {
  font-size: 24px;
  color: #004488;
  margin-bottom: 10px;
}
.zy_yytdxqy .zy_yytdxq .name p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 30px;
}
.zy_yytdxqy .zy_yytdxq .art {
  background: #f8f8f8;
  font-size: 16px;
  color: #999;
  padding: 40px 60px 120px 300px;
}
.zy_yytdxqy .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 60px;
  margin-top: 30px;
  border-bottom: 1px solid #e3e3e3;
}
.zy_yytdxqy .other a {
  font-size: 16px;
  color: #777;
}
.zy_yytdxqy .other a:hover {
  color: #004488;
}
.zy_yytdxqy .other a span {
  margin: 0 20px;
}
@media screen and (max-width: 960px) {
  .p_page a {
    width: 35px;
    height: 35px;
    margin: 0 3px;
    line-height: 35px;
  }
  .p_page em {
    height: 35px;
    max-width: calc(100% - 100px);
  }
  .zy_banner img.pcimg {
    display: none;
  }
  .zy_banner img.wapimg {
    display: block;
    height: 220px;
    object-fit: cover;
  }
  .zy_news .auto_1170 .zy_list1 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zy_news .auto_1170 .zy_list1 li {
    width: 100%;
    margin-bottom: 15px;
  }
  .zy_news2 .zy_list2 li {
    width: 100%;
    max-width: 100%;
  }
  .zy_news,
  .zy_news2 {
    padding: 50px 0;
  }
  .zy_news2 .zy_list2 {
    margin-bottom: 30px;
  }
  .zy_fzlc {
    padding: 50px 0;
  }
  .zy_fzlc .zy_fzlc_list:before {
    display: none;
  }
  .zy_fzlc .zy_fzlc_list li {
    width: 100%;
    margin: 20px 0;
  }
  .zy_fzlc .zy_fzlc_list li:nth-child(2) {
    margin-top: 20px;
  }
  .zy_fzlc .zy_fzlc_list {
    padding-bottom: 50px;
  }
  .zy_fzlc .zy_fzlc_list li:before {
    display: none;
  }
  .zy_about {
    padding: 50px 0;
  }
  .zy_jykgk {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zy_jykgk .video {
    width: 100%;
  }
  .zy_jykgk .art {
    width: 100%;
    padding: 20px;
  }
  .zy_jykgk .art p {
    margin: 20px 0;
  }
  .videobox .closevideo {
    right: 50%;
    margin-right: -25px;
    top: unset;
    bottom: -40px;
  }
  .zy_yytd {
    padding: 50px 0 30px;
  }
  .zy_yytd .zy_yytd_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .zy_yytd .zy_yytd_list li {
    max-width: 49%;
    margin-right: 0;
  }
  .zy_yytdxqy .zy_yytdxq .img {
    position: relative;
    margin: 0 auto;
    display: block;
  }
  .zy_yytdxqy .zy_yytdxq .name,
  .zy_yytdxqy .zy_yytdxq .art {
    padding: 20px;
  }
  .zy_yytdxqy .zy_yytdxq .name p {
    margin-bottom: 10px;
  }
  .zy_zlxz .zy_nb .zy_nb_sbox {
    max-width: calc(100% - 50px);
  }
  .zy_zlxz .zy_nb .zy_nb_sbox .swiper-button-prev {
    left: -20px;
  }
  .zy_zlxz .zy_nb .zy_nb_sbox .swiper-button-next {
    right: -20px;
  }
  .zy_zlxz .zy_nb .zy_nb_s {
    height: 200px;
  }
  .zy_zlxz .zy_nb .zy_nb_s .swiper-slide section h3 {
    font-size: 20px;
  }
  .zy_zlxz .zy_nb .zy_nb_s .swiper-slide section div a {
    width: 120px;
  }
  .zy_zlxz .zy_nb {
    padding: 50px 0;
  }
  .zy_zlxz .zy_nb h2,
  .zy_zlxz .zy_xcc h2 {
    margin-bottom: 20px;
  }
  .zy_zlxz .zy_xcc {
    padding: 50px 0;
  }
  .zy_zlxz .zy_xcc .list li {
    max-width: 100%;
  }
  .zy_zlxz .zy_xcp {
    padding: 50px 0;
  }
  .zy_zzjg,
  .zy_zzjg2 {
    padding: 50px 0;
  }
  .zy_zzjg2 .other {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zy_zzjg2 .other .a,
  .zy_zzjg2 .other a {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .zy_zzjg2 .other .a {
    width: 100%;
  }
  .zy_zzjg2 .other .a .img,
  .zy_zzjg2 .other a .img {
    width: 50px;
    height: 50px;
  }
  .zy_zzjg2 .other .a .art {
    width: calc(100% - 80px);
  }
  .zy_lxfs {
    padding: 50px 0;
  }
  .zy_lxfs .lxfs_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .zy_lxfs .lxfs_box {
    height: auto;
  }
  .zy_lxfs .lxfs_box .map,
  .zy_lxfs .lxfs_box .art {
    width: 100%;
  }
  .zy_lxfs .lxfs_box .map {
    height: 300px;
  }
  .zy_lxfs .lxfs_box .art {
    padding: 20px;
  }
  .zy_zp .zp_list li a,
  .zy_zp .zp_list li .zpa {
    padding: 0 10px;
  }
  .zy_zp .zp_list li .zpa .right {
    width: 10%;
  }
  .zy_zp .zp_list li .zpa .right i {
    width: 100%;
  }
  .zy_zp .zp_list li .zpa .right span:first-child {
    display: none;
  }
  .zy_cjwt li .quesa {
    min-height: 60px;
    height: auto;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .zy_cjwt li .quesa span {
    margin-top: 0;
  }
  .zy_cjwt li .quesa p {
    padding: 15px;
    white-space: initial;
  }
  .zy_cjwt li .quesa img {
    margin-top: 24px;
  }
}
footer {
  background: #30a19d;
}


/* 20220923 */
.pricyTip {
  text-align: center;
  color: #004488;
  cursor: pointer;
}
.pricyTip {
  text-align: center;
  color: #004488;
  cursor: pointer;
}
.pricyPage {
  padding: 30px 0 80px;
  background: #f4f4f4;
}
.pricyContent {
  padding: 30px;
  background: #fff;
  font-size: 14px;
  line-height: 1.75;
}

.pricyContent h3 {
  text-align: center;
  font-size: 32px;
  color: #004488;
  margin-bottom: 30px;
}

.pricyContent .text {
  max-width: 800px;
  margin: auto;
  white-space:normal;
}
@media (max-width: 768px){
  .pricyContent h3 {
    font-size: 24px;
}
}
.zy_zzjg2 .other .a a {
  width: 100%;
}