﻿
html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
input,
textarea,
select,
button,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: initial;
  vertical-align: baseline;
  background: transparent;
  font-family: "siyuan_regular";
  -webkit-tap-highlight-color: transparent;
}
/*html5设置*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
body {
  padding: 0;
  margin: 0 auto!important;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #333;
  max-width: 1920px;
  min-width: 320px;
  width: 100%;
  zoom: 1;
  background: #fff;
  font-family: "siyuan_regular";
  /*禁用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;
}
p,
span {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  /* font-size:initial; */
  vertical-align: baseline;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
i {
  font-weight: normal;
  font-style: normal;
}
ul,
ol,
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  outline: none;
  color: #333;
  cursor: pointer;
}
a:focus {
  outline: none;
  -moz-outline: none;
}
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;
}
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;
}
main,
footer {
  display: block;
}
input[type="button"],
input[type="submit"],
input[type="file"],
button {
  cursor: pointer;
  -webkit-appearance: none;
}
.clearfix:after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  visibility: hidden;
}
.clearfix {
  *zoom: 1;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.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;
}
.text4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.dh {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.dh1 {
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.dh2 {
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.dh5 {
  -webkit-transition: all 5s;
  -o-transition: all 5s;
  transition: all 5s;
}
.fda {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.fda1 {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.imgfd {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}
.imgfd1 {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.xz45 {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -moz-transform: rotate(45deg);
  /* Firefox */
  -webkit-transform: rotate(45deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(45deg);
}
.xz90 {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -moz-transform: rotate(90deg);
  /* Firefox */
  -webkit-transform: rotate(90deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(90deg);
}
.xz180 {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}
.xzx {
  transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.xzy {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 2px;
  background-color: #ccc;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #2531ae;
  border-radius: 10px;
}
.wrap {
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.w1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  max-height: 100%;
}
.pc {
  display: block;
}
.wap {
  display: none;
}
.w1800 {
  max-width: 100%;
  padding: 0 60px;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently not supported by any browser */
}
@media (max-width: 1770px) {
  .wrap {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width: 1720px) {
  .w1600 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width: 1560px) {
  .w1440 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width: 1520px) {
  .w1400 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width: 1024px) {
  .w1800,
  .w1400,
  .wrap,
  .w1440,
  .w1600 {
    padding: 0 30px;
  }
}
@media (max-width: 990px) {
  .w1800,
  .w1400,
  .wrap,
  .w1440,
  .w1600 {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .wap {
    display: block;
  }
}
@font-face {
  font-family: "ali";
  src: url('../font/ALIHYAIHEI.TTF');
}
@font-face {
  font-family: "bah";
  src: url('../font/bahnschrift.ttf');
}
@font-face {
  font-family: "gl_L";
  src: url('');
}
@font-face {
  font-family: "gl_b";
  src: url('');
}
.scroll-y {
  overflow-y: scroll;
}
.scroll-y::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 1px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0px;
}
.scroll-y::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0px;
  background: #232c3c;
}
.scroll-y::-webkit-scrollbar-track {
  background: #cbcbcb;
}
.scroll-y2 {
  overflow-y: scroll;
}
.scroll-y2::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 1px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0px;
}
.scroll-y2::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0px;
  background: #232c3c;
}
.scroll-x {
  overflow-x: scroll;
}
.scroll-x::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 1px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 3px;
}
.scroll-x::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0px;
  background: #232c3c;
}
.scrollbar::-webkit-scrollbar {
  width: 3px;
  background-color: #ccc;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #005fe5;
  border-radius: 10px;
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.w1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  max-height: 100%;
}
.pc {
  display: block;
}
.wap {
  display: none;
}
@media (max-width: 1720px) {
  .w1600 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width: 1520px) {
  .w1400 {
    padding: 0 60px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .w1400,
  .w1600 {
    padding: 0 30px;
  }
}
@media (max-width: 990px) {
  .w1400,
  .w1600 {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .wap {
    display: block;
  }
}
header {
  position: fixed;
  width: 1920px;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  height: 80px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header a {
  color: #fff;
  font-size: 18px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header a:hover {
  color: #fff;
}
header.header2 {
  background: rgba(0, 0, 0, 0.6);
}
header.header2.on:before,
header.header2:hover:before {
  background: #e6e7e9;
}
header.header2:before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}
header.header2 .w1600 .nav li > a:before {
  top: auto;
  bottom: 0;
}
header.header3 {
  background: #fff;
}
header.header3:before {
  background: #e6e7e9;
}
header.on {
  height: 60px;
}
header.on,
header:hover,
header.header3 {
  background: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
header.on a,
header:hover a,
header.header3 a {
  color: #000;
}
header.on .w1600 .left .logo img,
header:hover .w1600 .left .logo img,
header.header3 .w1600 .left .logo img {
  display: none;
}
header.on .w1600 .left .logo img.on,
header:hover .w1600 .left .logo img.on,
header.header3 .w1600 .left .logo img.on {
  display: block;
}
header.on .w1600 .left .h3,
header:hover .w1600 .left .h3,
header.header3 .w1600 .left .h3 {
  color: #000;
  background: url(../image/bg2_1.png) no-repeat left bottom;
}
header.on .w1600 .nav li.on > a,
header:hover .w1600 .nav li.on > a,
header.header3 .w1600 .nav li.on > a {
  color: #2531ae;
}
header.on .w1600 .nav li.on > a:before,
header:hover .w1600 .nav li.on > a:before,
header.header3 .w1600 .nav li.on > a:before {
  background: #2531ae;
}
header.on .w1600 .right em,
header:hover .w1600 .right em,
header.header3 .w1600 .right em {
  background: #000;
}
header.on .w1600 .right .search .search_box input,
header:hover .w1600 .right .search .search_box input,
header.header3 .w1600 .right .search .search_box input {
  background: rgba(0, 0, 0, 0.3);
}
header.on .w1600 .right .search .search_box .search_a,
header:hover .w1600 .right .search .search_box .search_a,
header.header3 .w1600 .right .search .search_box .search_a,
header.on .w1600 .right .search .search_box .search_close,
header:hover .w1600 .right .search .search_box .search_close,
header.header3 .w1600 .right .search .search_box .search_close {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
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;
  height: 100%;
}
header .w1600 .left {
  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;
  height: 100%;
}
header .w1600 .left .logo img {
  display: block;
  max-height: 40px;
}
header .w1600 .left .logo img.on {
  display: none;
}
header .w1600 .left .h3 {
  font-family: "ali";
  margin-left: 20px;
  font-size: 24px;
  font-style: italic;
  padding-bottom: 10px;
  color: #fff;
  background: url(../image/bg2.png) no-repeat left bottom;
}
header .w1600 .nav {
  width: 51.875%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}
header .w1600 .nav li {
  height: 100%;
}
header .w1600 .nav li.on > a:before,
header .w1600 .nav li:hover > a:before {
  width: 100%;
  background: #fff;
}
header .w1600 .nav li > a {
  height: 100%;
  position: relative;
  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;
}
header .w1600 .nav li > a:before {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li > a i {
  display: none;
}
header .w1600 .nav li:hover .sub_li {
  padding: 3.13vw 0;
  height: auto;
  max-height: 100vh;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li:hover .sub_li2 {
  padding: 3.13vw 0 2.08vw;
  height: auto;
  max-height: 100vh;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li .sub_li {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 0;
  overflow: hidden;
  background: #eaecf1;
  transition: all 0.3s;
}
header .w1600 .nav li .sub_li:before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: -1px;
  background: #e6e7e9;
}
header .w1600 .nav li .sub_li .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;
}
header .w1600 .nav li .sub_li .w1600 .left {
  width: 20%;
}
header .w1600 .nav li .sub_li .w1600 .left.l_tab {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
header .w1600 .nav li .sub_li .w1600 .left.l_tab a {
  margin-bottom: 0.52vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li .sub_li .w1600 .left.l_tab a.on {
  opacity: 1;
}
header .w1600 .nav li .sub_li .w1600 .left 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: #2531ae;
  width: 100%;
  height: 4.43vw;
  min-height: 40px;
  padding: 0 2.34vw 0 1.3vw;
  color: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li .sub_li .w1600 .left a:hover {
  opacity: 0.8;
}
header .w1600 .nav li .sub_li .w1600 .right {
  width: 77.5%;
}
header .w1600 .nav li .sub_li .w1600 .right ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
header .w1600 .nav li .sub_li .w1600 .right ul li {
  width: 31.45%;
  margin-right: 2.7%;
  height: auto;
  background: #fff;
}
header .w1600 .nav li .sub_li .w1600 .right ul li:nth-child(3) {
  margin-right: 0;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 59.74%;
  position: relative;
  overflow: hidden;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox:before {
  content: '';
  width: 0;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 4;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox:hover:before {
  width: 100%;
  background: #2531ae;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox:hover .img1 {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox .img1 {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox .img2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
  position: absolute;
  left: 0;
  bottom: 1.04vw;
  left: 2.08vw;
  width: 100%;
  height: auto;
  font-size: 26px;
  color: #fff;
  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;
  z-index: 3;
  font-weight: 500;
}
@media (max-width: 2048px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p {
    font-size: 16px;
  }
}
header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
  font-size: 26px;
  margin-right: 5px;
}
@media (max-width: 2048px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .imgbox p i {
    font-size: 16px;
  }
}
header .w1600 .nav li .sub_li .w1600 .right ul li .box {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 1.04vw 1.04vw 1.04vw 2.08vw;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
  color: #333333;
  min-width: 50%;
  display: block;
  line-height: 48px;
  font-size: 18px;
  position: relative;
  padding-left: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 2048px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li .w1600 .right ul li .box a {
    font-size: 14px;
    line-height: 24px;
  }
}
header .w1600 .nav li .sub_li .w1600 .right ul li .box a:hover {
  color: #2531ae;
}
header .w1600 .nav li .sub_li .w1600 .right ul li .box a:before {
  content: '';
  width: 11px;
  height: 2px;
  background: #2531ae;
  left: 0;
  top: 50%;
  margin-top: -1px;
  position: absolute;
}
header .w1600 .nav li .sub_li2 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 0;
  overflow: hidden;
  background: #eaecf1;
  padding: 0;
  transition: all 0.3s;
}
header .w1600 .nav li .sub_li2 .w1600 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-top: 5px;
}
header .w1600 .nav li .sub_li2:before {
  content: '';
  width: 33%;
  height: 100%;
  background: #f4f5f8;
  position: absolute;
  left: 0;
  bottom: 0;
}
header .w1600 .nav li .sub_li2:after {
  content: '';
  width: 37.57%;
  height: 100%;
  position: absolute;
  left: 39.5%;
  bottom: -20px;
  background: url(../image/amp.png) no-repeat center bottom;
}
header .w1600 .nav li .sub_li2 .sl2_l {
  width: 29.6%;
  padding-right: 6.25%;
  position: relative;
  z-index: 1;
}
header .w1600 .nav li .sub_li2 .sl2_l h3 {
  font-size: 24px;
  font-weight: bold;
  color: #222222;
  margin-bottom: 30px;
}
@media (max-width: 2048px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 25.6px;
  }
}
@media (max-width: 1920px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 24px;
  }
}
@media (max-width: 1680px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 21px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 12.8px;
  }
}
@media (max-width: 1440px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  header .w1600 .nav li .sub_li2 .sl2_l h3 {
    font-size: 17.075px;
  }
}
header .w1600 .nav li .sub_li2 .sl2_l a {
  width: 100%;
  height: 60px;
  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;
  color: #444444;
  position: relative;
}
header .w1600 .nav li .sub_li2 .sl2_l a:last-child:before,
header .w1600 .nav li .sub_li2 .sl2_l a:last-child:after {
  display: none;
}
header .w1600 .nav li .sub_li2 .sl2_l a:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #d5d6d8;
  position: absolute;
  left: 0;
  bottom: 0;
}
header .w1600 .nav li .sub_li2 .sl2_l a:after {
  content: '';
  width: 0;
  height: 1px;
  background: #2531ae;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li .sub_li2 .sl2_l a:hover {
  color: #2531ae;
}
header .w1600 .nav li .sub_li2 .sl2_l a:hover i {
  color: #2531ae;
}
header .w1600 .nav li .sub_li2 .sl2_l a:hover:after {
  width: 100%;
}
header .w1600 .nav li .sub_li2 .sl2_r {
  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;
  position: relative;
  z-index: 1;
}
header .w1600 .nav li .sub_li2 .sl2_r .art {
  width: 55%;
  font-size: 15px;
  line-height: 32px;
}
header .w1600 .nav li .sub_li2 .sl2_r .art a {
  height: 40px;
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-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: #2531ae;
  border-bottom: 1px solid #2531ae;
  font-size: 14px;
  margin-top: 1.04vw;
}
header .w1600 .nav li .sub_li2 .sl2_r .art a img {
  margin-left: 0.78vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .nav li .sub_li2 .sl2_r .art a:hover img {
  margin-left: 1.04vw;
}
header .w1600 .nav li .sub_li2 .sl2_r .imgbox {
  width: 38.46%;
}
header .w1600 .nav li .sub_li2 .sl2_r .imgbox .img {
  width: 100%;
  height: 0;
  padding-bottom: 66.75%;
  position: relative;
  overflow: hidden;
}
header .w1600 .nav li .sub_li2 .sl2_r .imgbox .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
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;
}
header .w1600 .right em {
  width: 1px;
  height: 13px;
  background: #fff;
  margin: 0 10px;
}
header .w1600 .right .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .w1600 .right .search.on .search_a {
  width: 0;
}
header .w1600 .right .search.on .search_box {
  width: auto;
}
header .w1600 .right .search .search_a {
  width: 20px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .right .search .search_box {
  width: 0;
  overflow: hidden;
  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;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .right .search .search_box input {
  background: rgba(255, 255, 255, 0.3);
  width: 200px;
  height: 30px;
  padding: 0 15px;
  color: #fff;
}
header .w1600 .right .search .search_box input::placeholder {
  color: #fff;
}
header .w1600 .right .search .search_box .search_a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.3);
}
header .w1600 .right .search .search_box .search_close {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 0 10px;
}
header .w1600 .right .lan {
  position: relative;
}
header .w1600 .right .lan:hover .sub {
  z-index: 1;
  opacity: 1;
  top: 22px;
}
header .w1600 .right .lan a {
  font-size: 14px;
}
header .w1600 .right .lan > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  white-space: nowrap;
}
header .w1600 .right .lan > a i {
  margin-right: 10px;
}
header .w1600 .right .lan .sub {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0%;
  top: 0px;
  z-index: -1;
  opacity: 0;
  padding: 5px 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
header .w1600 .right .lan .sub a {
  display: block;
  text-align: right;
}
header .w1600 .menu_a {
  display: none;
}
.head_wap {
  display: none;
}
.header_d2 {
  height: 100px;
}
@media (max-width: 1440px) {
  header {
    height: 80px;
  }
  .header_d2 {
    height: 80px;
  }
  header a {
    font-size: 16px;
  }
  header .w1600 .left .logo img {
    width: 100px;
  }
  header .w1600 .left h3 {
    font-size: 20px;
    margin-left: 15px;
  }
  header .w1600 .nav li .sub_li2 .sl2_r .art {
    font-size: 14px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  header a {
    font-size: 14px;
  }
  header .w1600 .left h3 {
    font-size: 18px;
    margin-left: 10px;
  }
}
@media (max-width: 990px) {
  header {
    display: none;
  }
  .header_d {
    height: 60px;
  }
  .header_d2 {
    height: 60px;
  }
  .head_wap {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 999;
    background: #fff;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .top {
    border-color: transparent!important;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box .a2 .top2 {
    border-color: transparent!important;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box,
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box .a2 .box2 {
    padding-left: 15px;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box .a2 .top2.on a:before {
    background: #0908bc;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box .a2 .top2 a {
    position: relative;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box .a2 .top2 a:before {
    content: '';
    width: 8px;
    height: 2px;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #999;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box .a2 .box2 a {
    position: relative;
  }
  .head_wap.head_wap2 .h_bot .h_nav li .a1 .box .a2 .box2 a:before {
    content: '';
    width: 6px;
    height: 1px;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #999;
  }
  .head_wap .h_top {
    height: 100%;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    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;
  }
  .head_wap .h_top .logo {
    line-height: 0;
    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;
  }
  .head_wap .h_top .logo img {
    max-height: 30px;
    margin-right: 5px;
  }
  .head_wap .h_top .logo .p1 {
    font-family: "ali";
    font-size: 16px;
    font-style: italic;
    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;
    height: 30px;
    padding-bottom: 10px;
    color: #333;
    background: url(../image/bg2_1.png) no-repeat left bottom;
  }
  .head_wap .h_top .open_nav {
    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;
  }
  .head_wap .h_top .open_nav.on i:first-child {
    -webkit-transform: translate(0, 7px) rotate(45deg);
    -ms-transform: translate(0, 7px) rotate(45deg);
    transform: translate(0, 7px) rotate(45deg);
  }
  .head_wap .h_top .open_nav.on i:nth-child(2) {
    opacity: 0;
  }
  .head_wap .h_top .open_nav.on i:last-child {
    -webkit-transform: translate(0, -7px) rotate(-45deg);
    -ms-transform: translate(0, -7px) rotate(-45deg);
    transform: translate(0, -7px) rotate(-45deg);
  }
  .head_wap .h_top .open_nav i {
    width: 24px;
    height: 2px;
    background-color: #0908bc;
    margin: 2.5px 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .head_wap .h_bot {
    position: absolute;
    width: 100%;
    left: 0;
    background: #f7f7f7;
    overflow: hidden;
    padding: 20px;
    display: none;
  }
  .head_wap .h_bot .h_nav a:hover {
    color: #0908bc;
  }
  .head_wap .h_bot .h_nav li.on .a1 .top a,
  .head_wap .h_bot .h_nav li.on .a1 .top i {
    color: #0908bc;
  }
  .head_wap .h_bot .h_nav li .a1 .top {
    height: 40px;
    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;
    border-bottom: 1px solid transparent;
  }
  .head_wap .h_bot .h_nav li .a1 .top.on {
    border-color: #0908bc;
  }
  .head_wap .h_bot .h_nav li .a1 .top.on a {
    color: #0908bc;
  }
  .head_wap .h_bot .h_nav li .a1 .top.on i {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -moz-transform: rotate(90deg);
    /* Firefox */
    -webkit-transform: rotate(90deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(90deg);
    color: #0908bc;
  }
  .head_wap .h_bot .h_nav li .a1 .top a {
    width: calc(100% - 50px);
    height: 100%;
    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;
    font-size: 16px;
  }
  .head_wap .h_bot .h_nav li .a1 .top i {
    width: 40px;
    height: 40px;
    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;
    font-size: 24px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
  }
  .head_wap .h_bot .h_nav li .a1 .box {
    display: none;
    padding: 0 10px;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .top2 {
    height: 35px;
    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;
    border-bottom: 1px solid transparent;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .top2.on {
    border-color: #0908bc;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .top2.on a {
    color: #0908bc;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .top2.on i {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -moz-transform: rotate(90deg);
    /* Firefox */
    -webkit-transform: rotate(90deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(90deg);
    color: #0908bc;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .top2 a {
    width: calc(100% - 50px);
    height: 100%;
    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;
    font-size: 14px;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .top2 i {
    width: 40px;
    height: 35px;
    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;
    font-size: 20px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .box2 {
    display: none;
    padding: 0 10px;
  }
  .head_wap .h_bot .h_nav li .a1 .box .a2 .box2 a {
    width: 100%;
    line-height: 30px;
    font-size: 13px;
    display: block;
  }
  .head_wap .h_bot .h_search {
    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: 40px;
    margin: 10px 0;
  }
  .head_wap .h_bot .h_search input {
    width: calc(100% - 40px);
    height: 100%;
    background: #fff;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
  }
  .head_wap .h_bot .h_search input::placeholder {
    font-size: 16px;
    color: #333;
  }
  .head_wap .h_bot .h_search a,
  .head_wap .h_bot .h_search button {
    width: 40px;
    height: 100%;
    background: #0908bc;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
  }
  .head_wap .h_bot .h_lan {
    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;
    height: 40px;
    margin: 10px 0;
  }
  .head_wap .h_bot .h_lan a {
    font-size: 16px;
    color: #333;
    margin: 0 8px;
  }
}
@keyframes move1 {
  from {
    top: 0;
    opacity: 1;
  }
  to {
    top: 6px;
    opacity: 0.8;
  }
}
@keyframes move2 {
  from {
    top: 0;
    opacity: 1;
  }
  to {
    top: 12px;
    opacity: 0.3;
  }
}
.banner_s_wsd0312 {
  overflow: hidden;
  position: relative;
}
.banner_s_wsd0312 .xx {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  bottom: 9%;
  margin-left: -9.5px;
  z-index: 2;
  background: url(../image/i1.png) no-repeat center top;
  cursor: pointer;
}
.banner_s_wsd0312 .xx:before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../image/i1.png) no-repeat center top;
  position: absolute;
  left: 0;
  animation: move1 1.5s linear infinite;
}
.banner_s_wsd0312 .xx::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../image/i1.png) no-repeat center top;
  position: absolute;
  left: 0;
  animation: move2 1.5s linear infinite;
}
.banner_s_wsd0312 .banner_s_wsd0312p {
  left: 8.3%;
  width: auto;
  bottom: 6%;
}
.banner_s_wsd0312 .banner_s_wsd0312p span {
  border-radius: 0;
  width: 55px;
  height: 2px;
  background: #fff;
  opacity: 1;
  position: relative;
  margin: 0 10px 0 0!important;
}
.banner_s_wsd0312 .banner_s_wsd0312p span:before {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.banner_s_wsd0312 .banner_s_wsd0312p span.swiper-pagination-bullet-active:before {
  background: #0908bc;
  animation: move0 5s linear infinite;
}
.banner_s_wsd0312 .swiper-slide {
  line-height: 0;
}
.banner_s_wsd0312 .swiper-slide > img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  -webkit-transition: all 5s;
  -o-transition: all 5s;
  transition: all 5s;
  transform: scale(1);
}
.banner_s_wsd0312 .swiper-slide.swiper-slide-active > img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  transform: scale(1.1);
}
.banner_s_wsd0312 .swiper-slide .art {
  position: absolute;
  height: calc(100% - 80px);
  width: 100%;
  left: 0;
  bottom: 0;
  background: url(../image/bg1.png) no-repeat center top;
  background-size: cover;
}
.banner_s_wsd0312 .swiper-slide .art .w1600 {
  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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  color: #fff;
  line-height: 1.4;
}
.banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
  font-size: 65px;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    font-size: 69.33333333px;
  }
}
@media (max-width: 1920px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    font-size: 65px;
  }
}
@media (max-width: 1680px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    font-size: 56.875px;
  }
}
@media (max-width: 1440px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    font-size: 48.75px;
  }
}
@media (max-width: 1280px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    font-size: 43.33333333px;
  }
}
@media (max-width: 1024px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    font-size: 34.66666667px;
  }
}
.banner_s_wsd0312 .swiper-slide .art .w1600 p {
  font-size: 24px;
  margin: 26px 0 4vw;
}
@media (max-width: 2048px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 25.6px;
  }
}
@media (max-width: 1920px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 24px;
  }
}
@media (max-width: 1680px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 21px;
  }
}
@media (max-width: 1440px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 12.8px;
  }
}
@media (max-width: 1440px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 17.075px;
  }
}
@media (max-width: 1720px) {
  .banner_s_wsd0312 .banner_s_wsd0312p {
    left: 60px;
  }
}
@media (max-width: 1440px) {
  .banner_s_wsd0312 .swiper-slide .art {
    height: calc(100% - 80px);
  }
}
@media (max-width: 1200px) {
  .banner_s_wsd0312 .swiper-slide > img {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .banner_s_wsd0312 .banner_s_wsd0312p {
    left: 30px;
  }
}
@media (max-width: 990px) {
  .banner_s_wsd0312 .banner_s_wsd0312p {
    left: 20px;
  }
  .banner_s_wsd0312 .swiper-slide .art {
    height: 100%;
  }
  .banner_s_wsd0312 .banner_s_wsd0312p span {
    width: 30px;
  }
}
@media (max-width: 768px) {
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    font-size: 30px;
  }
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    font-size: 18px;
    margin: 20px 0 20px;
  }
  .banner_s_wsd0312 .swiper-slide > img {
    height: calc(100vh - 60px);
  }
  .banner_s_wsd0312 .xx {
    display: none;
  }
  .banner_s_wsd0312 .banner_s_wsd0312p {
    width: 100%;
    left: 0;
  }
  .banner_s_wsd0312 .swiper-slide .art .w1600 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding-top: 150px;
  }
  .banner_s_wsd0312 .swiper-slide .art .w1600 h1 {
    text-align: center;
  }
  .banner_s_wsd0312 .swiper-slide .art .w1600 p {
    text-align: center;
  }
}
.about {
  overflow: hidden;
}
.about_video {
  width: 100%;
  position: relative;
}
.about_video .about_video_logo {
  -webkit-mask-image: url(../image/amp.svg);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.about_video .about_video_logo.on1 {
  -webkit-mask-image: url(../image/amp.svg);
  -webkit-mask-size: 35% auto;
}
.about_video .about_video_logo.on2 {
  -webkit-mask-image: url(../image/amp.svg);
  -webkit-mask-size: 80% auto;
}
.about_video .about_video_logo.on3 {
  -webkit-mask-image: url(../image/ampp.svg);
  -webkit-mask-size: 300% auto;
}
.about_video .about_video_logo:before {
  content: '';
  position: absolute;
  z-index: 12;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.about_video .videoBg {
  height: 100%;
  object-fit: cover;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}
.about_video .about_art_wsd0312 {
  color: #fff;
  position: absolute;
  z-index: 11;
  width: 100%;
  height: auto;
  top: 60vh;
  left: 50%;
  transform: translateX(-50%);
}
.about_video .about_video_ht {
  width: 100%;
  height: 60vh;
}
.about_art_wsd0312 {
  padding-bottom: 10.42vw;
  position: absolute;
  top: 0;
}
.about_art_wsd0312 .top h2 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 2048px) {
  .about_art_wsd0312 .top h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .about_art_wsd0312 .top h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .about_art_wsd0312 .top h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .top h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .about_art_wsd0312 .top h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .top h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .about_art_wsd0312 .top h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .top h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .about_art_wsd0312 .top h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .top h2 {
    font-size: 24px;
  }
}
.about_art_wsd0312 .top .info {
  font-size: 26px;
  line-height: 1.8;
  margin: 3.13vw 0 2.6vw;
  text-align: center;
}
@media (max-width: 2048px) {
  .about_art_wsd0312 .top .info {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .about_art_wsd0312 .top .info {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .about_art_wsd0312 .top .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .top .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .about_art_wsd0312 .top .info {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .top .info {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .top .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .about_art_wsd0312 .top .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .top .info {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .about_art_wsd0312 .top .info {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .top .info {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .about_art_wsd0312 .top .info {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .top .info {
    font-size: 16px;
  }
}
.about_art_wsd0312 .play_a {
  display: block;
  line-height: 0;
  margin: 0 auto 10.42vw;
  width: 4.06vw;
  height: 4.06vw;
  min-width: 40px;
  min-height: 40px;
}
.about_art_wsd0312 .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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.about_art_wsd0312 .items i {
  width: 2px;
  height: 86px;
  background: #fff;
  opacity: 0.3;
  margin: 0 3%;
}
.about_art_wsd0312 .items i:last-child {
  display: none;
}
.about_art_wsd0312 .items .item.item1 p {
  max-width: 240px;
}
.about_art_wsd0312 .items .item.item2 p {
  max-width: 250px;
}
.about_art_wsd0312 .items .item.item3 p {
  max-width: 240px;
}
.about_art_wsd0312 .items .item.item4 p {
  max-width: 270px;
}
.about_art_wsd0312 .items .item h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.about_art_wsd0312 .items .item h1 em {
  font-size: 60px;
  font-family: "bah";
  font-style: normal;
}
@media (max-width: 2048px) {
  .about_art_wsd0312 .items .item h1 em {
    font-size: 64px;
  }
}
@media (max-width: 1920px) {
  .about_art_wsd0312 .items .item h1 em {
    font-size: 60px;
  }
}
@media (max-width: 1680px) {
  .about_art_wsd0312 .items .item h1 em {
    font-size: 52.5px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .items .item h1 em {
    font-size: 45px;
  }
}
@media (max-width: 1280px) {
  .about_art_wsd0312 .items .item h1 em {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .items .item h1 em {
    font-size: 32px;
  }
}
.about_art_wsd0312 .items .item h1 span {
  font-size: 24px;
  margin-top: 5px;
}
@media (max-width: 2048px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 25.6px;
  }
}
@media (max-width: 1920px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 24px;
  }
}
@media (max-width: 1680px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 21px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 12.8px;
  }
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .about_art_wsd0312 .items .item h1 span {
    font-size: 17.075px;
  }
}
.about_art_wsd0312 .items .item p {
  font-size: 18px;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 1440px) {
  .about_art_wsd0312 .items .item p {
    font-size: 16px;
    line-height: 30px;
    height: 60px;
  }
  .about_art_wsd0312 .items i {
    width: 1px;
    height: 50px;
    margin: 0 15px;
  }
}
@media (max-width: 1280px) {
  .about_art_wsd0312 .items .item p {
    font-size: 14px;
    line-height: 26px;
    height: 52px;
  }
  .about_art_wsd0312 .items i {
    width: 1px;
    height: 30px;
    margin: 0 15px;
  }
}
@media (max-width: 990px) {
  .about_art_wsd0312 .top .info {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .about_video .about_video_logo {
    -webkit-mask-position: center;
    -webkit-mask-size: 50% auto;
  }
  .about_video .about_video_logo.on1 {
    -webkit-mask-size: 50% auto;
  }
  .about_video .about_video_logo.on2 {
    -webkit-mask-size: 300%;
    -webkit-mask-image: url(../image/ampp.svg);
  }
  .about_video .about_video_ht1 {
    width: 100%;
    height: 50vh;
  }
  .about_art_wsd0312 .top h2 {
    font-size: 30px;
  }
  .about_art_wsd0312 .top .info {
    margin-top: 10px;
  }
  .about_art_wsd0312 .items .item h1 .sztd {
    font-size: 50px;
  }
  .about_art_wsd0312 .items {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .about_art_wsd0312 .items .item {
    width: calc(50% - 7.5px);
    margin-bottom: 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;
  }
  .about_art_wsd0312 .items .item h1 {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
  }
  .about_art_wsd0312 .items .item p {
    width: 100%;
    font-size: 14px;
    line-height: 26px;
    height: auto;
    text-align: center;
  }
  .about_art_wsd0312 .items i {
    width: 1px;
    height: 30px;
    margin: 0 15px;
    display: none;
  }
}
.about_video2 {
  margin-top: -1px;
}
.about_video2 .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about_video2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
.about_video2 .about_art_wsd0312 {
  position: relative;
  top: auto;
  left: auto;
  transform: translate(0, 0);
  z-index: 2;
  padding: 120px 0;
}
.mytitle {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .mytitle {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .mytitle {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .mytitle {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .mytitle {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .mytitle {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .mytitle {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .mytitle {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .mytitle {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .mytitle {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .mytitle {
    font-size: 24px;
  }
}
.more_a {
  font-size: 18px;
  color: #0908bc;
  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;
}
@media (max-width: 2048px) {
  .more_a {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .more_a {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .more_a {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .more_a {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .more_a {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .more_a {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .more_a {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .more_a {
    font-size: 14px;
    line-height: 24px;
  }
}
.more_a i {
  color: #3333c8;
  margin-left: 28px;
  font-size: 18px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .more_a i {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .more_a i {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .more_a i {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .more_a i {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .more_a i {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .more_a i {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .more_a i {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .more_a i {
    font-size: 14px;
    line-height: 24px;
  }
}
.more_a:hover i {
  margin-left: 43px;
}
@media (max-width: 990px) {
  .mytitle {
    font-size: 28px;
  }
  .more_a {
    font-size: 18px;
  }
  .more_a i {
    font-size: 18px;
    margin-left: 15px;
  }
  .more_a:hover i {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .more_a {
    font-size: 16px;
  }
  .more_a i {
    font-size: 16px;
    margin-left: 10px;
  }
  .more_a:hover i {
    margin-left: 15px;
  }
}
.jyfc_p_wsd0312 {
  padding: 6.25vw 0 8.3vw;
  background: url(../image/bg4.jpg) no-repeat center;
  background-size: cover;
}
.jyfc_wsd0312 h1 {
  text-align: center;
  margin-bottom: 3.125vw;
}
.jyfc_wsd0312 .jyfc_s1 {
  width: 815px;
  max-width: 100%;
  margin: 0 auto;
}
.jyfc_wsd0312 .jyfc_s2 {
  margin: 0.78vw 0 1.56vw;
}
.jyfc_wsd0312 .tab_s {
  display: none;
}
.jyfc_s1 {
  overflow: hidden;
}
.jyfc_s1 .swiper-slide.swiper-slide-active a {
  color: #0908bc;
  font-size: 26px;
}
@media (max-width: 2048px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 16px;
  }
}
.jyfc_s1 .swiper-slide.swiper-slide-active a:before {
  width: 13px;
  background: #9d9ce4;
}
.jyfc_s1 .swiper-slide a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  padding-bottom: 15px;
  color: #c3c3c3;
  position: relative;
  white-space: nowrap;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 25.6px;
  }
}
@media (max-width: 1920px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 24px;
  }
}
@media (max-width: 1680px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 21px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 12.8px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 17.075px;
  }
}
.jyfc_s1 .swiper-slide a:before {
  content: '';
  width: 0px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -6.5px;
  bottom: 0px;
  background: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.jyfc_s2 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.jyfc_s2 .swiper-button-next,
.jyfc_s2 .swiper-button-prev {
  width: 72px;
  height: 72px;
  background: #fff;
  border: 10px solid #f4f4f4;
  border-radius: 50%;
  outline: none;
  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-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  display: none;
}
.jyfc_s2 .swiper-button-next:hover,
.jyfc_s2 .swiper-button-prev:hover {
  border-color: #005fe5;
}
.jyfc_s2 .swiper-button-next:hover i,
.jyfc_s2 .swiper-button-prev:hover i {
  color: #005fe5;
}
.jyfc_s2 .swiper-button-next i,
.jyfc_s2 .swiper-button-prev i {
  font-size: 22px;
  color: #444;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 16px;
  }
}
.jyfc_s2 .swiper-button-next:after,
.jyfc_s2 .swiper-button-prev:after {
  display: none;
}
.jyfc_s2 .swiper-button-prev i {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.jyfc_s2 .swiper-slide .img {
  width: 100%;
  height: 0;
  padding-bottom: 31.25%;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.56vw;
}
.jyfc_s2 .swiper-slide .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1440px) {
  .jyfc_s1 .swiper-slide a {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 24px;
  }
  .jyfc_s2 .swiper-button-next,
  .jyfc_s2 .swiper-button-prev {
    width: 50px;
    height: 50px;
    border: 5px solid #f4f4f4;
  }
}
@media (max-width: 990px) {
  .jyfc_wsd0312 h1 {
    margin-bottom: 40px;
  }
  .jyfc_wsd0312 .jyfc_s2 {
    margin: 40px 0;
  }
  .jyfc_s1 .swiper-slide a {
    font-size: 16px;
    padding-bottom: 5px;
    line-height: 24px;
  }
  .jyfc_s1 .swiper-slide.swiper-slide-active a {
    font-size: 18px;
  }
  .jyfc_s2 .swiper-button-next,
  .jyfc_s2 .swiper-button-prev {
    width: 35px;
    height: 35px;
    border: 2px solid #f4f4f4;
  }
  .jyfc_s2 .swiper-button-next i,
  .jyfc_s2 .swiper-button-prev i {
    font-size: 20px;
  }
  .jyfc_s2 .swiper-slide .img {
    padding-bottom: 50%;
  }
}
@media (max-width: 768px) {
  .jyfc_wsd0312 .jyfc_s1 .swiper-slide {
    width: auto!important;
  }
  .jyfc_p_wsd0312.swiper_box_0312 {
    position: relative;
  }
  .jyfc_p_wsd0312.swiper_box_0312 .tab_s {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    height: 0;
  }
  .jyfc_p_wsd0312.swiper_box_0312 .tab_s .bot .btns {
    width: 100%;
  }
  .jyfc_p_wsd0312.swiper_box_0312 .tab_s .bot .btns .swiper-button-prev,
  .jyfc_p_wsd0312.swiper_box_0312 .tab_s .bot .btns .swiper-button-next {
    outline: none;
    border: none!important;
    width: 20px;
  }
  .jyfc_p_wsd0312.swiper_box_0312 .tab_s .bot .bar {
    display: none;
  }
  .jyfc_s2 .swiper-slide .img {
    padding-bottom: 100%;
  }
  .jyfc_s2 .swiper-button-next,
  .jyfc_s2 .swiper-button-prev {
    display: none;
  }
  .jyfc_p_wsd0312.swiper_box_0312 .tab_s .bot .btns .swiper-button-prev,
  .jyfc_p_wsd0312.swiper_box_0312 .tab_s .bot .btns .swiper-button-next {
    border: 1px solid #f4f4f4;
  }
  .jyfc_p_wsd0312 {
    padding: 40px 0;
  }
  .jyfc_p_wsd0312 h1 {
    margin-bottom: 20px;
  }
  .jyfc_p_wsd0312 .jyfc_s2 {
    margin: 20px 0;
  }
}
.zzkh_p_wsd0312 {
  padding: 6.25vw 0;
  background: url(../image/bg7.jpg) no-repeat left center #f9f9f9;
}
.zzkh_wsd0312 {
  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;
}
.zzkh_wsd0312 .left {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.zzkh_wsd0312 .left .info {
  margin: 3.65vw 0 11.09vw;
  font-size: 26px;
  line-height: 1.6;
}
@media (max-width: 2048px) {
  .zzkh_wsd0312 .left .info {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .zzkh_wsd0312 .left .info {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .zzkh_wsd0312 .left .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .zzkh_wsd0312 .left .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .zzkh_wsd0312 .left .info {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .zzkh_wsd0312 .left .info {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .zzkh_wsd0312 .left .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .zzkh_wsd0312 .left .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .zzkh_wsd0312 .left .info {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .zzkh_wsd0312 .left .info {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .zzkh_wsd0312 .left .info {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .zzkh_wsd0312 .left .info {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .zzkh_wsd0312 .left .info {
    font-size: 16px;
  }
}
.zzkh_wsd0312 .left .more_a {
  margin-left: 0;
}
.zzkh_wsd0312 .right {
  width: 56.875%;
  position: relative;
}
.zzkh_wsd0312 .right .zzkh_s1 {
  overflow: hidden;
  position: absolute;
  width: 50%;
  height: auto;
  top: 14%;
  left: 20%;
}
.zzkh_wsd0312 .right .zzkh_s1 .swiper-slide a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.zzkh_wsd0312 .right .zzkh_s1 .swiper-slide a img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active a {
  margin-top: 0;
}
.zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active + .swiper-slide a {
  margin-top: 1.56vw;
}
.zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide a {
  margin-top: 1.56vw;
}
.zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide a {
  margin-top: 0;
}
.zzkh_wsd0312 .right .zzkh_s3,
.zzkh_wsd0312 .right .zzkh_s2 {
  overflow: hidden;
  position: absolute;
  width: 75%;
  height: auto;
  top: 36%;
  left: 8%;
}
.zzkh_wsd0312 .right .zzkh_s3 .swiper-slide a,
.zzkh_wsd0312 .right .zzkh_s2 .swiper-slide a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.zzkh_wsd0312 .right .zzkh_s3 .swiper-slide a img,
.zzkh_wsd0312 .right .zzkh_s2 .swiper-slide a img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active + .swiper-slide a,
.zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active + .swiper-slide a {
  margin-top: 2vw;
}
.zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide a,
.zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide a {
  margin-top: 3.6vw;
}
.zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide a,
.zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide a {
  margin-top: 3.6vw;
}
.zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide a,
.zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide a {
  margin-top: 2vw;
}
.zzkh_wsd0312 .right .zzkh_s3 {
  top: 60%;
}
@media (max-width: 990px) {
  .zzkh_p_wsd0312 .right .zzkh_s1 {
    width: 60%;
    left: 20%;
  }
  .zzkh_p_wsd0312 .right .zzkh_s2 {
    width: 80%;
    left: 10%;
  }
  .zzkh_p_wsd0312 .right .zzkh_s3 {
    width: 80%;
    left: 10%;
  }
}
@media (max-width: 768px) {
  .zzkh_p_wsd0312 {
    padding: 40px 0 20px;
  }
  .zzkh_wsd0312 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    overflow: hidden;
  }
  .zzkh_wsd0312 .left {
    width: 100%;
  }
  .zzkh_wsd0312 .left .info {
    margin: 15px 0;
  }
  .zzkh_wsd0312 .right {
    width: 100%;
  }
  .zzkh_wsd0312 .right > img {
    width: 120%;
    max-width: 120%;
    left: -10%;
    position: relative;
  }
  .zzkh_wsd0312 .right .zzkh_s1 {
    top: 10%;
  }
  .zzkh_wsd0312 .right .zzkh_s2 {
    top: 40%;
  }
  .zzkh_wsd0312 .right .zzkh_s3 {
    top: 70%;
  }
  .zzkh_wsd0312 .right .zzkh_s1,
  .zzkh_wsd0312 .right .zzkh_s2,
  .zzkh_wsd0312 .right .zzkh_s3 {
    width: 100%;
    left: 0%;
    margin-bottom: 20px;
  }
  .zzkh_wsd0312 .right .zzkh_s1 .swiper-slide,
  .zzkh_wsd0312 .right .zzkh_s2 .swiper-slide,
  .zzkh_wsd0312 .right .zzkh_s3 .swiper-slide {
    margin-top: 0!important;
    transition: all 0s;
  }
  .zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active a,
  .zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active a,
  .zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active a {
    margin-top: 0;
  }
  .zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active + .swiper-slide a,
  .zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active + .swiper-slide a,
  .zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active + .swiper-slide a {
    margin-top: 0;
  }
  .zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide a,
  .zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide a,
  .zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide a {
    margin-top: 0;
  }
  .zzkh_wsd0312 .right .zzkh_s1 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide a,
  .zzkh_wsd0312 .right .zzkh_s2 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide a,
  .zzkh_wsd0312 .right .zzkh_s3 .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide a {
    margin-top: 0;
  }
}
.qqhbg_wsd0312 {
  width: 100%;
  height: 120vh;
}
.qqhbg_wsd0312 .video_d {
  position: sticky;
  top: 0;
  height: 100vh;
  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;
}
.qqhbg_wsd0312 .video_d.on img,
.qqhbg_wsd0312 .video_d.on video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qqhbg_wsd0312 .video_d img,
.qqhbg_wsd0312 .video_d video {
  width: 80%;
  height: 80%;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.qqhbg_wsd0312 .w1600 {
  position: relative;
  z-index: 2;
  top: -50%;
}
.qqhbg_wsd0312 .art {
  color: #333;
}
.qqhbg_wsd0312 .art h1 {
  text-align: center;
}
.qqhbg_wsd0312 .art .info {
  font-size: 26px;
  margin: 3.125vw auto 21vw;
  line-height: 1.6;
  text-align: center;
  width: 890px;
  max-width: 100%;
}
@media (max-width: 2048px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .info {
    font-size: 16px;
  }
}
.qqhbg_wsd0312 .art .items {
  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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.qqhbg_wsd0312 .art .items .item {
  margin: 0 80px;
}
.qqhbg_wsd0312 .art .items .item h1 em {
  font-size: 60px;
  line-height: 1.1;
  font-family: "bah";
  font-style: normal;
}
@media (max-width: 2048px) {
  .qqhbg_wsd0312 .art .items .item h1 em {
    font-size: 64px;
  }
}
@media (max-width: 1920px) {
  .qqhbg_wsd0312 .art .items .item h1 em {
    font-size: 60px;
  }
}
@media (max-width: 1680px) {
  .qqhbg_wsd0312 .art .items .item h1 em {
    font-size: 52.5px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item h1 em {
    font-size: 45px;
  }
}
@media (max-width: 1280px) {
  .qqhbg_wsd0312 .art .items .item h1 em {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .items .item h1 em {
    font-size: 32px;
  }
}
.qqhbg_wsd0312 .art .items .item h1 span {
  font-size: 22px;
  margin-top: 5px;
}
@media (max-width: 2048px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .qqhbg_wsd0312 .art .items .item h1 span {
    font-size: 16px;
  }
}
.qqhbg_wsd0312 .art .items .item p {
  font-size: 22px;
}
@media (max-width: 2048px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .qqhbg_wsd0312 .art .items .item {
    margin: 0 40px;
  }
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  .qqhbg_wsd0312 .art .items .item {
    margin: 0 15px;
  }
  .qqhbg_wsd0312 .art .items .item p {
    font-size: 16px;
  }
  .qqhbg_wsd0312 .art .info {
    margin: 20px 0 150px;
  }
}
@media (max-width: 768px) {
  .qqhbg_wsd0312 {
    height: auto;
    position: relative;
  }
  .qqhbg_wsd0312 .video_d {
    height: auto;
  }
  .qqhbg_wsd0312 .video_d img,
  .qqhbg_wsd0312 .video_d video {
    width: 100%;
    height: 100%;
  }
  .qqhbg_wsd0312 .w1600 {
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
    position: absolute;
    top: 100%;
  }
  .qqhbg_wsd0312 .video_d + .w1600 {
    top: 20%;
    transform: translateY(-20%);
  }
  .qqhbg_wsd0312 .art .info {
    margin-bottom: 60px;
  }
  .qqhbg_wsd0312 .art .items .item h1 em {
    font-size: 60px;
  }
}
.pzgk_p_wsd0312 {
  padding: 11.46vw 0 8.33vw;
  background: url(../image/bg9.jpg) no-repeat center #fff;
  overflow: hidden;
}
.pzgk_wsd0312 {
  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;
}
.pzgk_wsd0312 .left {
  width: 51.56%;
}
.pzgk_wsd0312 .left .img {
  position: relative;
}
.pzgk_wsd0312 .left .img .imgs img {
  position: absolute;
  animation: move4 2.5s linear infinite;
}
.pzgk_wsd0312 .left .img .imgs img:first-child {
  width: 24%;
  top: 22%;
  left: 41%;
  animation-delay: 0s;
}
.pzgk_wsd0312 .left .img .imgs img:nth-child(2) {
  width: 10.78%;
  top: 52%;
  left: 15%;
  animation-delay: 0.15s;
}
.pzgk_wsd0312 .left .img .imgs img:nth-child(3) {
  width: 11.63%;
  top: 58%;
  left: 23%;
  animation-delay: 0.3s;
}
.pzgk_wsd0312 .left .img .imgs img:nth-child(4) {
  width: 7.78%;
  top: 48%;
  left: 30%;
  animation-delay: 0.45s;
}
.pzgk_wsd0312 .left .img .imgs img:nth-child(5) {
  width: 7.15%;
  top: 46%;
  left: 67.5%;
  animation-delay: 0.6s;
}
.pzgk_wsd0312 .left .img .imgs img:nth-child(6) {
  width: 11.87%;
  top: 59%;
  left: 68.5%;
  animation-delay: 0.75s;
}
.pzgk_wsd0312 .left .img .imgs img:nth-child(7) {
  width: 10.9%;
  top: 50%;
  left: 79%;
  animation-delay: 0.9s;
}
.pzgk_wsd0312 .right {
  width: 48.44%;
  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;
}
.pzgk_wsd0312 .right h2 {
  font-size: 48px;
  font-weight: bold;
  color: #222;
}
@media (max-width: 2048px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .pzgk_wsd0312 .right h2 {
    font-size: 24px;
  }
}
.pzgk_wsd0312 .right h3 {
  font-size: 40px;
  color: #333333;
  margin-top: 3.65vw;
  margin-bottom: 0.78vw;
}
@media (max-width: 2048px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 42.66666667px;
  }
}
@media (max-width: 1920px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 40px;
  }
}
@media (max-width: 1680px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 35px;
  }
}
@media (max-width: 1440px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 30px;
  }
}
@media (max-width: 1280px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 26.66666667px;
  }
}
@media (max-width: 1024px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 21.33333333px;
  }
}
@media (max-width: 1680px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 34px;
  }
}
@media (max-width: 1440px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 26px;
  }
}
@media (max-width: 1290px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .pzgk_wsd0312 .right h3 {
    font-size: 20px;
  }
}
.pzgk_wsd0312 .right h4 {
  margin-bottom: 3.64vw;
  line-height: 1.4;
  font-size: 26px;
  color: #666666;
}
@media (max-width: 2048px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .pzgk_wsd0312 .right h4 {
    font-size: 16px;
  }
}
.pzgk_wsd0312 .right h4 span {
  color: #0908bc;
}
@keyframes move4 {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(8px);
  }
}
@keyframes move5 {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}
@media (max-width: 768px) {
  .pzgk_p_wsd0312 {
    padding: 50px 0;
  }
  .pzgk_wsd0312 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .pzgk_wsd0312 .left {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .pzgk_wsd0312 .left .img {
    margin-top: 30px;
    padding-top: 10px;
    transform: scale(1.4) translateX(-5px);
  }
  .pzgk_wsd0312 .right {
    width: 100%;
  }
  .pzgk_wsd0312 .right h3 {
    margin-top: 20px;
    font-size: 18px;
  }
  .pzgk_wsd0312 .right h4 {
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
.xjs_wsd0312 {
  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: 8.3vw 0 6.5vw;
  background: url(../image/bg11.jpg) no-repeat center bottom;
  background-size: cover;
}
.xjs_wsd0312 .left {
  width: 50%;
  padding-left: 8.3%;
  padding-right: 4%;
  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: url(../image/bg10.png) no-repeat right top;
}
.xjs_wsd0312 .left h2 {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .xjs_wsd0312 .left h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .xjs_wsd0312 .left h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .xjs_wsd0312 .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .xjs_wsd0312 .left h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .xjs_wsd0312 .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .xjs_wsd0312 .left h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .xjs_wsd0312 .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .xjs_wsd0312 .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .xjs_wsd0312 .left h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .xjs_wsd0312 .left h2 {
    font-size: 24px;
  }
}
.xjs_wsd0312 .left .info {
  font-size: 26px;
  line-height: 1.8;
  color: #666666;
  text-align: left;
  margin: 2.6vw auto 4.16vw;
}
@media (max-width: 2048px) {
  .xjs_wsd0312 .left .info {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .xjs_wsd0312 .left .info {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .xjs_wsd0312 .left .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .xjs_wsd0312 .left .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .xjs_wsd0312 .left .info {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .xjs_wsd0312 .left .info {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .xjs_wsd0312 .left .info {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .xjs_wsd0312 .left .info {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .xjs_wsd0312 .left .info {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .xjs_wsd0312 .left .info {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .xjs_wsd0312 .left .info {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .xjs_wsd0312 .left .info {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .xjs_wsd0312 .left .info {
    font-size: 16px;
  }
}
.xjs_wsd0312 .left .info span {
  color: #0908bc;
}
.xjs_wsd0312 .right {
  width: 576px;
  max-width: 45%;
  margin-right: 11.25%;
}
.xjs_wsd0312 .right .items {
  width: 100%;
  height: 0;
  padding-bottom: 103%;
  position: relative;
}
.xjs_wsd0312 .right .items a {
  display: block;
  width: 38%;
  position: absolute;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  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;
}
.xjs_wsd0312 .right .items a img {
  display: block;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.xjs_wsd0312 .right .items a img.on {
  display: none;
}
.xjs_wsd0312 .right .items a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  transform: translateY(-10px) scale(1.05);
}
.xjs_wsd0312 .right .items a:hover img {
  display: none;
}
.xjs_wsd0312 .right .items a:hover img.on {
  display: block;
}
.xjs_wsd0312 .right .items a:first-child {
  top: 0;
  left: 31%;
}
.xjs_wsd0312 .right .items a:nth-child(2) {
  left: 0;
  top: 17%;
}
.xjs_wsd0312 .right .items a:nth-child(3) {
  right: 0;
  top: 17%;
}
.xjs_wsd0312 .right .items a:nth-child(4) {
  left: 31%;
  top: 34%;
  z-index: 2;
}
.xjs_wsd0312 .right .items a:nth-child(5) {
  left: 0;
  bottom: 17%;
}
.xjs_wsd0312 .right .items a:nth-child(6) {
  right: 0;
  bottom: 17%;
}
.xjs_wsd0312 .right .items a:nth-child(7) {
  bottom: 0;
  left: 31%;
}
@media (max-width: 1720px) {
  .xjs_wsd0312 .left {
    padding-left: 60px;
  }
  .xjs_wsd0312 .right {
    margin-right: 60px;
  }
}
@media (max-width: 1024px) {
  .xjs_wsd0312 .left {
    padding-left: 30px;
    padding-right: 30px;
  }
  .xjs_wsd0312 .right {
    margin-right: 30px;
  }
}
@media (max-width: 990px) {
  .xjs_wsd0312 .left {
    padding-left: 20px;
    padding-right: 20px;
  }
  .xjs_wsd0312 .right {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .xjs_wsd0312 {
    padding: 50px 0 30px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .xjs_wsd0312 .left {
    width: 100%;
  }
  .xjs_wsd0312 .left .info {
    margin: 20px 0;
  }
  .xjs_wsd0312 .right {
    width: 100%;
    max-width: 100%;
    margin: 30px 20px 20px;
  }
}
footer .foot1 {
  padding: 45px 0;
  background: #313131;
}
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;
}
footer .foot1 .w1600 .foot_nav {
  width: 42%;
  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 .foot_nav li a {
  display: block;
  font-size: 16px;
  line-height: 36px;
  color: rgba(226, 226, 226, 0.8);
}
footer .foot1 .w1600 .foot_nav li a:hover {
  color: #fff;
}
footer .foot1 .w1600 .foot_nav li a:first-child {
  color: #fff;
  font-size: 20px;
  margin-bottom: 1.04vw;
}
footer .foot1 .w1600 .foot_nav li a:first-child i {
  display: none;
}
footer .foot1 .w1600 .foot_art {
  width: 22%;
}
footer .foot1 .w1600 .foot_art h3 {
  font-size: 20px;
  line-height: 36px;
  color: #fff;
  margin-bottom: 1.04vw;
}
footer .foot1 .w1600 .foot_art p {
  font-size: 16px;
  line-height: 30px;
  color: rgba(226, 226, 226, 0.8);
  margin-bottom: 0.52vw;
}
footer .foot1 .w1600 .foot_art p.p2 {
  margin-top: 20px;
}
footer .foot1 .w1600 .foot_art h4 {
  font-size: 30px;
  font-family: 'bah';
  color: #fff;
  margin: 1.04vw 0 0.52vw;
}
footer .foot1 .w1600 .foot_sj {
  width: 13%;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
footer .foot1 .w1600 .foot_sj h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  display: none;
}
footer .foot1 .w1600 .foot_sj .bshare-custom {
  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;
  display: none;
}
footer .foot1 .w1600 .foot_sj .bshare-custom a {
  width: 45px;
  height: 45px;
  display: block;
  padding: 0;
  margin: 0;
  background-color: #666666;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}
footer .foot1 .w1600 .foot_sj .bshare-custom a .box {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  margin-left: -60px;
  top: -120px;
  background: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
footer .foot1 .w1600 .foot_sj .bshare-custom a:hover {
  background-color: #fff;
}
footer .foot1 .w1600 .foot_sj .bshare-custom a:hover .box {
  top: -130px;
  z-index: 1;
  opacity: 1;
}
footer .foot1 .w1600 .foot_sj .bshare-custom a:hover.a1 {
  background-image: url(../image/wx1.png);
}
footer .foot1 .w1600 .foot_sj .bshare-custom a:hover.a2 {
  background-image: url(../image/wb1.png);
}
footer .foot1 .w1600 .foot_sj .bshare-custom a:hover.a3 {
  background-image: url(../image/qq1.png);
}
footer .foot1 .w1600 .foot_sj .bshare-custom a.a1 {
  background-image: url(../image/wx.png);
}
footer .foot1 .w1600 .foot_sj .bshare-custom a.a2 {
  background-image: url(../image/wb.png);
}
footer .foot1 .w1600 .foot_sj .bshare-custom a.a3 {
  background-image: url(../image/qq.png);
}
footer .foot1 .w1600 .foot_sj .links {
  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;
  display: none;
}
footer .foot1 .w1600 .foot_sj .links a {
  font-size: 16px;
  line-height: 30px;
  color: rgba(226, 226, 226, 0.8);
}
footer .foot1 .w1600 .foot_sj .links a:hover {
  color: #fff;
}
footer .copyright {
  background: #1b1b1b;
}
footer .copyright .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;
  min-height: 60px;
}
footer .copyright .w1600 p {
  font-size: 16px;
  color: #fff;
}
footer .copyright .w1600 > div {
  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;
}
footer .copyright .w1600 > div a {
  font-size: 16px;
  line-height: 30px;
  color: rgba(226, 226, 226, 0.8);
}
footer .copyright .w1600 > div a:hover {
  color: #fff;
}
footer .copyright .w1600 .gotop {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: 15px;
}
footer .copyright .w1600 .gotop i {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #333;
  margin-left: 15px;
}
@media (max-width: 1440px) {
  footer .foot1 .w1600 .foot_sj {
    width: 130px;
  }
  footer .foot1 .w1600 .foot_nav li a:first-child {
    font-size: 18px;
    margin-bottom: 15px;
  }
  footer .foot1 .w1600 .foot_nav li a {
    font-size: 14px;
    line-height: 26px;
  }
  footer .foot1 .w1600 .foot_art h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 26px;
  }
  footer .foot1 .w1600 .foot_art p {
    font-size: 14px;
    line-height: 26px;
  }
  footer .foot1 .w1600 .foot_art h4 {
    font-size: 24px;
  }
  footer .foot1 .w1600 .foot_sj h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  footer .foot1 .w1600 .foot_sj .bshare-custom a {
    width: 35px;
    height: 35px;
  }
  footer .foot1 .w1600 .foot_sj .links {
    margin-top: 80px;
  }
  footer .foot1 .w1600 .foot_sj .links a {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  footer .foot1 {
    padding: 25px 0 5px;
  }
  footer .foot1 .w1600 .foot_art {
    width: 30%;
  }
  footer .foot1 .w1600 .foot_nav li a:first-child {
    font-size: 16px;
    margin-bottom: 10px;
  }
  footer .foot1 .w1600 .foot_art h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  footer .foot1 .w1600 .foot_sj h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  footer .copyright .w1600 {
    min-height: 60px;
  }
  footer .copyright .w1600 p {
    font-size: 14px;
  }
  footer .copyright .w1600 .gotop i {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 768px) {
  footer .foot1 .w1600 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  footer .foot1 .w1600 .foot_nav {
    display: none;
    width: 100%;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }
  footer .foot1 .w1600 .foot_nav li a {
    display: none;
  }
  footer .foot1 .w1600 .foot_nav li a:first-child {
    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;
    line-height: 32px;
    margin-bottom: 0;
  }
  footer .foot1 .w1600 .foot_nav li a:first-child i {
    display: block;
    margin-left: 10px;
  }
  footer .foot1 .w1600 .foot_art {
    width: 100%;
    margin-bottom: 15px;
  }
  footer .foot1 .w1600 .foot_sj {
    width: 100%;
    display: none;
  }
  footer .foot1 .w1600 .foot_sj .bshare-custom {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  footer .foot1 .w1600 .foot_sj .bshare-custom a {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    background-size: 15px auto;
    background-position: center;
  }
  footer .copyright .w1600 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px 20px 20px;
  }
  footer .copyright .w1600 p {
    line-height: 24px;
    text-align: center;
  }
  footer .copyright .w1600 p span {
    display: block;
    white-space: nowrap;
    font-size: 13px;
  }
  footer .copyright .w1600 .gotop {
    display: none;
  }
  footer .foot1 .w1600 .foot_sj .links {
    margin-top: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.bannerinfo_0312 {
  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;
  position: relative;
}
.bannerinfo_0312 > img {
  min-height: 200px;
  object-fit: cover;
}
.bannerinfo_0312 .art {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-bottom: 1.8vw;
}
.bannerinfo_0312 .art.cf {
  color: #fff;
}
.bannerinfo_0312 .art .p1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  font-size: 22px;
  margin-top: 2.6vw;
}
@media (max-width: 2048px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 16px;
  }
}
.bannerinfo_0312 .art .p1 h1 {
  font-family: 'gl_b';
}
.bannerinfo_0312 .art h1 {
  font-size: 100px;
  line-height: 1;
  margin-bottom: -0.5vw;
}
@media (max-width: 2048px) {
  .bannerinfo_0312 .art h1 {
    font-size: 106.66666667px;
  }
}
@media (max-width: 1920px) {
  .bannerinfo_0312 .art h1 {
    font-size: 100px;
  }
}
@media (max-width: 1680px) {
  .bannerinfo_0312 .art h1 {
    font-size: 87.5px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art h1 {
    font-size: 75px;
  }
}
@media (max-width: 1280px) {
  .bannerinfo_0312 .art h1 {
    font-size: 66.66666667px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art h1 {
    font-size: 53.33333333px;
  }
}
.bannerinfo_0312 .art h1.h1 {
  font-size: 60px;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
}
@media (max-width: 2048px) {
  .bannerinfo_0312 .art h1.h1 {
    font-size: 64px;
  }
}
@media (max-width: 1920px) {
  .bannerinfo_0312 .art h1.h1 {
    font-size: 60px;
  }
}
@media (max-width: 1680px) {
  .bannerinfo_0312 .art h1.h1 {
    font-size: 52.5px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art h1.h1 {
    font-size: 45px;
  }
}
@media (max-width: 1280px) {
  .bannerinfo_0312 .art h1.h1 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art h1.h1 {
    font-size: 32px;
  }
}
.bannerinfo_0312 .art h2 {
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 2048px) {
  .bannerinfo_0312 .art h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .bannerinfo_0312 .art h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .bannerinfo_0312 .art h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .bannerinfo_0312 .art h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .bannerinfo_0312 .art h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .bannerinfo_0312 .art h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art h2 {
    font-size: 24px;
  }
}
.bannerinfo_0312 .art h3 {
  font-size: 30px;
  line-height: 30px;
  margin: 1.56vw 0 2.6vw;
}
@media (max-width: 2048px) {
  .bannerinfo_0312 .art h3 {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .bannerinfo_0312 .art h3 {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .bannerinfo_0312 .art h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .bannerinfo_0312 .art h3 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art h3 {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .bannerinfo_0312 .art h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .bannerinfo_0312 .art h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .bannerinfo_0312 .art h3 {
    font-size: 21.34375px;
  }
}
.bannerinfo_0312 .art .line {
  width: 3.125vw;
  min-width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .bannerinfo_0312 .art .p1 {
    font-size: 16px;
  }
  .bannerinfo_0312 .art h1 {
    font-size: 44px;
  }
  .bannerinfo_0312 .art h1.h1 {
    font-size: 28px;
  }
  .bannerinfo_0312 .art h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .bannerinfo_0312 .art h3 {
    font-size: 18px;
    line-height: 28px;
  }
}
.about1_0312 {
  padding: 5.2vw 0 6.7vw;
  text-align: center;
  overflow: hidden;
}
.about1_0312 h2 {
  font-size: 48px;
  font-weight: bold;
  color: #22262c;
}
@media (max-width: 2048px) {
  .about1_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .about1_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .about1_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about1_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .about1_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .about1_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .about1_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about1_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .about1_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .about1_0312 h2 {
    font-size: 24px;
  }
}
.about1_0312 .info {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  max-width: 100%;
  text-align: left;
  margin: 2vw auto 4.8vw;
}
@media (max-width: 2048px) {
  .about1_0312 .info {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .about1_0312 .info {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .about1_0312 .info {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .about1_0312 .info {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .about1_0312 .info {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .about1_0312 .info {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .about1_0312 .info {
    font-size: 14px;
    line-height: 22px;
  }
}
.about1_0312 .info p {
  margin-bottom: 1.3vw;
}
.about1_0312 .info p:last-child {
  margin-bottom: 0;
}
.about1_0312 .items {
  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;
}
.about1_0312 .items li {
  width: 23.75%;
  margin-right: 1.66%;
}
.about1_0312 .items li:nth-child(4) {
  margin-right: 0;
}
.about1_0312 .items li a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 73.68%;
  position: relative;
  overflow: hidden;
}
.about1_0312 .items li a:before {
  content: '';
  width: 0;
  height: 0.21vw;
  min-height: 2px;
  background: #2531ae;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about1_0312 .items li a:hover:before {
  width: 100%;
}
.about1_0312 .items li a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}
.about1_0312 .items li a:hover .art i {
  height: 35px;
  border: 1px solid #fff;
  margin-top: 1.2vw;
}
.about1_0312 .items li a img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about1_0312 .items li a .art {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 1;
  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;
}
.about1_0312 .items li a .art p {
  font-size: 24px;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 2048px) {
  .about1_0312 .items li a .art p {
    font-size: 25.6px;
  }
}
@media (max-width: 1920px) {
  .about1_0312 .items li a .art p {
    font-size: 24px;
  }
}
@media (max-width: 1680px) {
  .about1_0312 .items li a .art p {
    font-size: 21px;
  }
}
@media (max-width: 1440px) {
  .about1_0312 .items li a .art p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .about1_0312 .items li a .art p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about1_0312 .items li a .art p {
    font-size: 12.8px;
  }
}
@media (max-width: 1440px) {
  .about1_0312 .items li a .art p {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .about1_0312 .items li a .art p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .about1_0312 .items li a .art p {
    font-size: 17.075px;
  }
}
.about1_0312 .items li a .art i {
  width: 35px;
  height: 0px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .about1_0312 .items li a .art i {
    font-size: 21.33333333px;
  }
}
@media (max-width: 1920px) {
  .about1_0312 .items li a .art i {
    font-size: 20px;
  }
}
@media (max-width: 1680px) {
  .about1_0312 .items li a .art i {
    font-size: 17.5px;
  }
}
@media (max-width: 1440px) {
  .about1_0312 .items li a .art i {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .about1_0312 .items li a .art i {
    font-size: 13.33333333px;
  }
}
@media (max-width: 1024px) {
  .about1_0312 .items li a .art i {
    font-size: 10.66666667px;
  }
}
.about1_0312 .items li .swiper {
  display: none;
}
.about1_0312 .items li .other {
  display: none;
}
@media (max-width: 768px) {
  .about1_0312 {
    padding: 40px 0;
  }
  .about1_0312 .info {
    margin: 15px auto 20px;
  }
  .about1_0312 .items {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .about1_0312 .items li {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .about1_0312 .items li:nth-child(2n) {
    margin-right: 0;
  }
  .about1_0312 .items li a .art:after {
    content: '';
    width: 24px;
    height: 17px;
    background: url(../image/jt3_0312.png) no-repeat center;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    margin-top: 10px;
  }
}
.mark {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: -100%;
  z-index: -1;
  background: rgba(21, 22, 45, 0.5);
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.mark.on {
  top: 0;
  z-index: 9998;
}
.markbox {
  width: 1600px;
  max-width: calc(100% - 40px);
  height: auto;
  padding: 4.69vw 5.21vw 3.13vw;
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: -1;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.markbox.on {
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.markbox .close_mark {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  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;
}
.markbox .close_mark img {
  display: block;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.markbox .close_mark:hover img {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}
.markbox h2 {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 2048px) {
  .markbox h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .markbox h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .markbox h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .markbox h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .markbox h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .markbox h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .markbox h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .markbox h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .markbox h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .markbox h2 {
    font-size: 24px;
  }
}
.markbox .info {
  text-align: left;
  width: 100%;
  height: 7.14vw;
  min-height: 60px;
  margin-top: 1.3vw;
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
@media (max-width: 2048px) {
  .markbox .info {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .markbox .info {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .markbox .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .markbox .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .markbox .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .markbox .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .markbox .info {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .markbox .info {
    font-size: 14px;
    line-height: 24px;
  }
}
.markbox .markswiper {
  position: relative;
}
.markbox .markswiper .swiper-button-next,
.markbox .markswiper .swiper-button-prev {
  width: 5.21vw;
  height: 5.21vw;
  min-width: 20px;
  min-height: 20px;
  text-align: center;
  color: #a7a8ab;
  outline: none;
  margin-top: -3.13vw;
}
.markbox .markswiper .swiper-button-next:hover,
.markbox .markswiper .swiper-button-prev:hover {
  color: #2531ae;
}
.markbox .markswiper .swiper-button-next:after,
.markbox .markswiper .swiper-button-prev:after {
  font-size: 26px;
}
@media (max-width: 2048px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .markbox .markswiper .swiper-button-next:after,
  .markbox .markswiper .swiper-button-prev:after {
    font-size: 16px;
  }
}
.markbox .markswiper .swiper-button-prev {
  left: -5.21vw;
}
.markbox .markswiper .swiper-button-next {
  right: -5.21vw;
}
.markbox .markswiper .swiper {
  overflow: hidden;
}
.markbox .markswiper .swiper .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 64.28%;
  position: relative;
  overflow: hidden;
}
.markbox .markswiper .swiper .swiper-slide .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.markbox .markswiper .swiper .swiper-slide p {
  height: 3.13vw;
  text-align: center;
  line-height: 3.13vw;
  min-height: 40px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000000;
}
@media (max-width: 2048px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .markbox .markswiper .swiper .swiper-slide p {
    font-size: 14px;
    line-height: 24px;
  }
}
.about2_0312 {
  background: url(../image/bg12_0312.jpg) no-repeat center;
  background-size: cover;
  padding: 10.9vw 0;
  background-attachment: fixed;
  overflow: hidden;
}
.about2_0312 .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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.about2_0312 h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 2048px) {
  .about2_0312 h1 {
    font-size: 64px;
  }
}
@media (max-width: 1920px) {
  .about2_0312 h1 {
    font-size: 60px;
  }
}
@media (max-width: 1680px) {
  .about2_0312 h1 {
    font-size: 52.5px;
  }
}
@media (max-width: 1440px) {
  .about2_0312 h1 {
    font-size: 45px;
  }
}
@media (max-width: 1280px) {
  .about2_0312 h1 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .about2_0312 h1 {
    font-size: 32px;
  }
}
.about2_0312 a {
  margin-top: 5.2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  border-radius: 1.4vw;
  color: #2531ae;
  font-size: 21px;
  padding: 0.76vw 1.16vw;
  position: relative;
  overflow: hidden;
  transition: backgroud 5s;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .about2_0312 a {
    font-size: 22.4px;
  }
}
@media (max-width: 1920px) {
  .about2_0312 a {
    font-size: 21px;
  }
}
@media (max-width: 1680px) {
  .about2_0312 a {
    font-size: 18.375px;
  }
}
@media (max-width: 1440px) {
  .about2_0312 a {
    font-size: 15.75px;
  }
}
@media (max-width: 1280px) {
  .about2_0312 a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .about2_0312 a {
    font-size: 11.2px;
  }
}
@media (max-width: 1440px) {
  .about2_0312 a {
    font-size: 18.375px;
  }
}
@media (max-width: 1280px) {
  .about2_0312 a {
    font-size: 15.75px;
  }
}
@media (max-width: 1024px) {
  .about2_0312 a {
    font-size: 14.940625px;
  }
}
.about2_0312 a:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: -5%;
  top: 0;
  background: #2531ae;
  border-radius: 1.4vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about2_0312 a span {
  position: relative;
  z-index: 1;
}
.about2_0312 a:hover {
  color: #fff;
  background: #2531ae;
}
.about2_0312 a:hover:before {
  width: 120%;
}
@media (max-width: 768px) {
  .markbox .markswiper .swiper-button-next,
  .markbox .markswiper .swiper-button-prev {
    margin-top: -20px;
  }
  .markbox .close_mark {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }
  .markbox .info {
    height: auto;
    margin-top: 10px;
  }
}
@media (max-width: 990px) {
  .about2_0312 h1 {
    font-size: 20px;
    white-space: nowrap;
    line-height: 1.2;
  }
  .about2_0312 a {
    padding: 8px 15px;
  }
}
@media (max-width: 768px) {
  .about2_0312 {
    padding: 40px 0;
  }
  .about2_0312 h1 {
    font-size: 16px;
  }
}
.about3_0312 {
  padding: 5.7vw 0 7.3vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.about3_0312 h2 {
  text-align: center;
  font-size: 48px;
  color: #22262c;
  font-weight: 600;
}
@media (max-width: 2048px) {
  .about3_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .about3_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .about3_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 h2 {
    font-size: 24px;
  }
}
.about3_0312 .swiper_box {
  width: 100%;
  margin: 3.91vw 0 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;
  background: url(../image/bg17_1_0312.png) no-repeat top 162px center;
  background-size: 1920px auto;
}
.about3_0312 .swiper_box .about3_s {
  width: 400px;
  max-width: 90%;
  position: relative;
}
.about3_0312 .swiper_box .about3_s .swiper-button-prev,
.about3_0312 .swiper_box .about3_s .swiper-button-next {
  width: 60px;
  height: 80px;
  top: 0;
  margin-top: 0;
  color: #91969f;
}
.about3_0312 .swiper_box .about3_s .swiper-button-prev:hover,
.about3_0312 .swiper_box .about3_s .swiper-button-next:hover {
  color: #2531ae;
}
.about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
.about3_0312 .swiper_box .about3_s .swiper-button-next:after {
  font-size: 26px;
}
@media (max-width: 2048px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-button-prev:after,
  .about3_0312 .swiper_box .about3_s .swiper-button-next:after {
    font-size: 16px;
  }
}
.about3_0312 .swiper_box .about3_s .swiper-button-prev {
  left: 28px;
}
.about3_0312 .swiper_box .about3_s .swiper-button-next {
  right: 28px;
}
.about3_0312 .swiper_box .about3_s .swiper {
  width: 100%;
}
.about3_0312 .swiper_box .about3_s .swiper-slide {
  cursor: pointer;
}
.about3_0312 .swiper_box .about3_s .swiper-slide:hover .box p {
  transform: translateY(-10px);
  font-weight: 600;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .box {
  position: absolute;
  top: 180px;
  left: 170px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .box:before {
  content: '';
  width: 12px;
  height: 12px;
  background: #91969f;
  position: absolute;
  border-radius: 50%;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-prev .box {
  top: 280px;
  left: 60px;
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next .box {
  left: 255px;
  top: 280px;
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next + .swiper-slide .box {
  top: 180px;
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active {
  width: 100%;
  border: 1px solid #6f707f;
  border-radius: 10px;
  background: #fff;
  box-shadow: 5px 5px 0px 0px #6f707f;
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active .box {
  position: relative!important;
  left: auto!important;
  top: auto!important;
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active .box:before {
  display: none;
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
  font-size: 36px;
  font-family: 'gt_b';
  color: #2531ae;
  height: 80px;
  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;
}
@media (max-width: 2048px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
    font-size: 38.4px;
  }
}
@media (max-width: 1920px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
    font-size: 36px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
    font-size: 31.5px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
    font-size: 27px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
    font-size: 19.2px;
  }
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active .art {
  display: block;
  border-top: 1px solid #22262c;
}
.about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active p.p1 {
  display: none;
}
.about3_0312 .swiper_box .about3_s .swiper-slide h2 {
  font-size: 22px;
  font-family: 'gt_b';
  color: #91969f;
  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;
}
@media (max-width: 2048px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide h2 {
    font-size: 16px;
  }
}
.about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
  font-size: 18px;
  text-align: center;
  color: #2531ae;
  margin-top: 20px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide p.p1 {
    font-size: 14px;
    line-height: 24px;
  }
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art {
  display: none;
  padding: 35px 28px;
  border-top: 1px solid transparent;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 51.46%;
  position: relative;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
  height: 120px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #2531ae transparent;
}
@media (max-width: 2048px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .about3_0312 .swiper_box .about3_s .swiper-slide .art .info {
    font-size: 14px;
    line-height: 24px;
  }
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art .info::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art .info::-webkit-scrollbar-thumb {
  background-color: #2531ae;
  border-radius: 10px;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art .info p {
  position: relative;
  margin-bottom: 0.78vw;
}
.about3_0312 .swiper_box .about3_s .swiper-slide .art .info p:before {
  content: '';
  width: 7px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  background: #2531ae;
  display: none;
}
.about3_0312 .about4_s {
  display: none;
}
@media (max-width: 1680px) {
  .about3_0312 .swiper_box {
    background-size: 1680px auto;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide .box {
    left: 270px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-prev .box {
    left: 130px;
    top: 270px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next .box {
    left: 220px;
    top: 270px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next + .swiper-slide .box {
    left: 80px;
  }
}
@media (max-width: 1440px) {
  .about3_0312 .swiper_box {
    background-size: 1440px auto;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide .box {
    left: 380px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-prev .box {
    left: 200px;
    top: 255px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next .box {
    left: 150px;
    top: 255px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next + .swiper-slide .box {
    left: -20px;
  }
}
@media (max-width: 1280px) {
  .about3_0312 .swiper_box {
    background-size: 1280px auto;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide .box {
    left: 440px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-prev .box {
    left: 230px;
    top: 250px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next .box {
    left: 110px;
    top: 250px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-next + .swiper-slide .box {
    left: -80px;
  }
}
@media (max-width: 768px) {
  .about3_0312 {
    padding: 40px 0;
  }
  .about3_0312 .swiper_box {
    background: none;
  }
  .about3_0312 .swiper_box .about3_s {
    width: 320px;
    margin-top: 15px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-button-prev,
  .about3_0312 .swiper_box .about3_s .swiper-button-next {
    height: 60px;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide .box {
    display: none;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active .box {
    display: block;
  }
  .about3_0312 .swiper_box .about3_s .swiper-slide.swiper-slide-active h2 {
    height: 60px;
  }
  .about3_0312 .about4_s {
    display: block;
    overflow: hidden;
    margin-top: 30px;
  }
  .about3_0312 .about4_s .swiper-slide.swiper-slide-active h2 {
    color: #2531ae;
  }
  .about3_0312 .about4_s .swiper-slide.swiper-slide-active p {
    color: #2531ae;
  }
  .about3_0312 .about4_s .swiper-slide h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
  .about3_0312 .about4_s .swiper-slide p {
    text-align: center;
  }
}
.about4_0312 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 4.9vw;
  background: #f2f4f8;
  overflow: hidden;
}
.about4_0312 .left {
  width: 47%;
  line-height: 0;
}
.about4_0312 .right {
  width: 46.6%;
  padding-right: 8.3vw;
  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;
}
.about4_0312 .right .top {
  margin-top: 4.9vw;
}
.about4_0312 .right .top h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: 600;
}
@media (max-width: 2048px) {
  .about4_0312 .right .top h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .about4_0312 .right .top h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .about4_0312 .right .top h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .top h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .about4_0312 .right .top h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right .top h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .about4_0312 .right .top h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .top h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .about4_0312 .right .top h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right .top h2 {
    font-size: 24px;
  }
}
.about4_0312 .right .top .line {
  width: 100%;
  height: 1px;
  margin: 1.9vw 0;
  background: #dde0f0;
}
.about4_0312 .right .top .info {
  font-size: 22px;
  line-height: 1.6;
  color: #22262c;
}
@media (max-width: 2048px) {
  .about4_0312 .right .top .info {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .about4_0312 .right .top .info {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .about4_0312 .right .top .info {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .top .info {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .about4_0312 .right .top .info {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right .top .info {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .top .info {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .about4_0312 .right .top .info {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right .top .info {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .about4_0312 .right .top .info {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .top .info {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right .top .info {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about4_0312 .right .top .info {
    font-size: 16px;
  }
}
.about4_0312 .right .bot {
  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%;
}
.about4_0312 .right .bot li:hover img {
  transform: translateY(-10px);
}
.about4_0312 .right .bot li:hover i {
  transform: translateX(10px);
}
.about4_0312 .right .bot li a {
  width: 100%;
  height: 100%;
  display: block;
}
.about4_0312 .right .bot li img {
  width: 3.6vw;
  height: 3.6vw;
  min-width: 35px;
  min-height: 35px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about4_0312 .right .bot li h3 {
  font-size: 30px;
  color: #22262c;
  font-weight: 600;
  margin: 2vw 0;
}
@media (max-width: 2048px) {
  .about4_0312 .right .bot li h3 {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .about4_0312 .right .bot li h3 {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .about4_0312 .right .bot li h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .bot li h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .about4_0312 .right .bot li h3 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right .bot li h3 {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .bot li h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .about4_0312 .right .bot li h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right .bot li h3 {
    font-size: 21.34375px;
  }
}
.about4_0312 .right .bot li i {
  display: block;
  font-size: 24px;
  color: #b3b5b8;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1720px) {
  .about4_0312 .right {
    padding-right: 60px;
  }
}
@media (max-width: 1440px) {
  .about4_0312 .right .top {
    margin-top: 3vw;
  }
  .about4_0312 .right .top .info {
    line-height: 1.4;
  }
  .about4_0312 .right .top .line {
    margin: 1.5vw 0;
  }
  .about4_0312 .right .bot li h3 {
    margin: 1.5vw 0;
  }
}
@media (max-width: 1024px) {
  .about4_0312 .right {
    padding-right: 30px;
  }
  .about4_0312 .right .top .info {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .about4_0312 .right {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .about4_0312 {
    padding: 40px 20px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .about4_0312 .left {
    width: 100%;
    margin-bottom: 10px;
  }
  .about4_0312 .right {
    width: 100%;
    padding-right: 0;
  }
  .about4_0312 .right .top {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .about4_0312 .right .top .line {
    margin: 15px 0;
  }
  .about4_0312 .right .top .info {
    line-height: 24px;
  }
  .about4_0312 .right .bot li h3 {
    font-size: 16px;
    margin: 10px 0;
  }
}
.about5_0312 {
  padding: 6vw 0 7.3vw;
  overflow: hidden;
}
.about5_0312 h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 2048px) {
  .about5_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .about5_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .about5_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about5_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .about5_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .about5_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .about5_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about5_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .about5_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .about5_0312 h2 {
    font-size: 24px;
  }
}
.about5_0312 .about5_s {
  position: relative;
  margin-top: 3.9vw;
}
.about5_0312 .about5_s .swiper-button-next,
.about5_0312 .about5_s .swiper-button-prev {
  color: #dbdbdb;
  margin-top: -1.5vw;
}
.about5_0312 .about5_s .swiper-button-next:hover,
.about5_0312 .about5_s .swiper-button-prev:hover {
  color: #2531ae;
}
.about5_0312 .about5_s .swiper-button-next:after,
.about5_0312 .about5_s .swiper-button-prev:after {
  font-size: 26px;
}
@media (max-width: 2048px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about5_0312 .about5_s .swiper-button-next:after,
  .about5_0312 .about5_s .swiper-button-prev:after {
    font-size: 16px;
  }
}
.about5_0312 .about5_s .swiper-button-prev {
  left: -2.3vw;
}
.about5_0312 .about5_s .swiper-button-next {
  right: -2.3vw;
}
.about5_0312 .about5_s .swiper-slide {
  border: 1px solid #d8d9e6;
}
.about5_0312 .about5_s .swiper-slide:hover .imgbox img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}
.about5_0312 .about5_s .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 72.2%;
  position: relative;
  overflow: hidden;
}
.about5_0312 .about5_s .swiper-slide .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about5_0312 .about5_s .swiper-slide .img {
  width: 100%;
  height: 3.125vw;
  min-height: 40px;
  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-top: 1px solid #d8d9e6;
}
.about5_0312 .swiper {
  overflow: hidden;
}
.about5_0312 .swiper_box_0312 {
  display: none;
}
@media (max-width: 768px) {
  .about5_0312 {
    overflow: hidden;
    padding: 40px 0 20px;
    position: relative;
  }
  .about5_0312 .about5_s {
    margin-top: 20px;
  }
  .about5_0312 .swiper_box_0312 {
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 0;
  }
  .about5_0312 .swiper_box_0312 .tab_s .bot .btns {
    width: 100%;
  }
  .about5_0312 .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev,
  .about5_0312 .swiper_box_0312 .tab_s .bot .btns .swiper-button-next {
    outline: none;
    border: none!important;
    width: 20px;
  }
  .about5_0312 .swiper_box_0312 .tab_s .bot .bar {
    display: none;
  }
  .about5_0312 .about5_s .swiper-button-next {
    right: -25px;
    display: none;
  }
  .about5_0312 .about5_s .swiper-button-prev {
    left: -25px;
    display: none;
  }
}
.about6_0312 {
  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;
  padding: 3.9vw 0;
  position: relative;
  overflow: hidden;
}
.about6_0312 .left {
  position: absolute;
  left: 8.3vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 29%;
}
.about6_0312 .left h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: 600;
}
@media (max-width: 2048px) {
  .about6_0312 .left h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .about6_0312 .left h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .about6_0312 .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about6_0312 .left h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .about6_0312 .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .about6_0312 .left h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .about6_0312 .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .about6_0312 .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .about6_0312 .left h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .about6_0312 .left h2 {
    font-size: 24px;
  }
}
.about6_0312 .left .info {
  font-size: 22px;
  line-height: 1.6;
  margin-top: 2.6vw;
  margin-bottom: 1vw;
}
@media (max-width: 2048px) {
  .about6_0312 .left .info {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .about6_0312 .left .info {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .about6_0312 .left .info {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .about6_0312 .left .info {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .about6_0312 .left .info {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .about6_0312 .left .info {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .about6_0312 .left .info {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .about6_0312 .left .info {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .about6_0312 .left .info {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .about6_0312 .left .info {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .about6_0312 .left .info {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .about6_0312 .left .info {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about6_0312 .left .info {
    font-size: 16px;
  }
}
.about6_0312 .map {
  max-width: 64.63%;
  margin-right: 2.7vw;
  position: relative;
  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;
}
.about6_0312 .map .zg {
  width: 2.8vw;
  height: 2.8vw;
  min-width: 30px;
  min-height: 30px;
  font-size: 16px;
  color: #ffffff;
  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;
  white-space: nowrap;
  border-radius: 50%;
  position: absolute;
  right: 22%;
  top: 40%;
}
@media (max-width: 2048px) {
  .about6_0312 .map .zg {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .about6_0312 .map .zg {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .about6_0312 .map .zg {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .about6_0312 .map .zg {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .about6_0312 .map .zg {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .about6_0312 .map .zg {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .about6_0312 .map .zg {
    font-size: 14px;
    line-height: 22px;
  }
}
.about6_0312 .map .zg span {
  position: relative;
  z-index: 3;
  background: #3c47c1;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  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;
}
.about6_0312 .map .zg:before,
.about6_0312 .map .zg:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #3c47c1;
  transform-origin: center;
  border-radius: 50%;
}
.about6_0312 .map .zg:before {
  width: 160%;
  height: 160%;
  z-index: 1;
  opacity: 0.5;
  -webkit-animation: fang1 2s linear infinite;
  animation: fang1 2s linear infinite;
}
.about6_0312 .map .zg:after {
  width: 216%;
  height: 216%;
  z-index: 1;
  opacity: 0.2;
  -webkit-animation: fang1 2s linear infinite;
  animation: fang1 2s linear infinite;
}
.about6_0312 .map .d_list li {
  position: absolute;
  width: 1px;
  height: 1px;
}
.about6_0312 .map .d_list li.li2 span {
  left: auto;
  right: 15px;
}
.about6_0312 .map .d_list li span {
  position: absolute;
  font-size: 16px;
  color: #333333;
  left: 15px;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1440px) {
  .about6_0312 .map .d_list li span {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .about6_0312 .map .d_list li span {
    font-size: 12px;
  }
}
.about6_0312 .map .d_list li .d {
  position: absolute;
  width: 6.4px;
  height: 6.4px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #9d9d9d;
  border-radius: 50%;
}
.about6_0312 .map .d_list li .d:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-animation: fang1 2s linear infinite;
  animation: fang1 2s linear infinite;
  background-color: #9d9d9d;
  opacity: 0.3;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
@keyframes fang1 {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes halo {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@media (max-width: 1720px) {
  .about6_0312 .left {
    left: 60px;
  }
}
@media (max-width: 1024px) {
  .about6_0312 .left {
    left: 30px;
  }
  .about6_0312 .map {
    margin-right: 30px;
  }
}
@media (max-width: 990px) {
  .about6_0312 .left {
    left: 20px;
  }
  .about6_0312 .map {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .about6_0312 {
    padding: 30px 20px 40px;
    overflow: hidden;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .about6_0312 .left {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: auto;
    top: auto;
    transform: translate(0);
  }
  .about6_0312 .left .info {
    margin: 20px 0;
  }
  .about6_0312 .map {
    width: 100%;
    max-width: 100%;
    margin-right: 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;
  }
  .about6_0312 .map img {
    max-width: none;
    width: 100%;
  }
  .about6_0312 .map .zg {
    right: 19%;
    top: 35%;
  }
  .about6_0312 .map .d_list li span {
    display: none;
  }
}
.crumbs_0312 {
  width: 100%;
  height: 0;
}
.crumbs_0312.crumbs2_0312 {
  height: 70px;
  background: #ffffff;
}
.crumbs_0312.crumbs2_0312 .w1600 {
  top: 0;
  height: 70px;
  color: #999999;
}
.crumbs_0312.crumbs2_0312 .w1600 a {
  color: #999999;
}
.crumbs_0312 .w1600 {
  position: relative;
  height: 90px;
  top: -90px;
  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;
  font-size: 16px;
  color: #ffffff;
}
@media (max-width: 2048px) {
  .crumbs_0312 .w1600 {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .crumbs_0312 .w1600 {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .crumbs_0312 .w1600 {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .crumbs_0312 .w1600 {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .crumbs_0312 .w1600 {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .crumbs_0312 .w1600 {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .crumbs_0312 .w1600 {
    font-size: 14px;
    line-height: 22px;
  }
}
.crumbs_0312 .w1600 a {
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  white-space: nowrap;
}
@media (max-width: 2048px) {
  .crumbs_0312 .w1600 a {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .crumbs_0312 .w1600 a {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .crumbs_0312 .w1600 a {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .crumbs_0312 .w1600 a {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .crumbs_0312 .w1600 a {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .crumbs_0312 .w1600 a {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .crumbs_0312 .w1600 a {
    font-size: 14px;
    line-height: 22px;
  }
}
.crumbs_0312 .w1600 a:hover {
  color: #2531ae;
}
@media (max-width: 1440px) {
  .crumbs_0312.crumbs2_0312 {
    height: 50px;
  }
  .crumbs_0312.crumbs2_0312 .w1600 {
    height: 50px;
  }
  .crumbs_0312 .w1600 {
    height: 60px;
    top: -60px;
  }
}
@media (max-width: 768px) {
  .crumbs_0312 {
    height: auto;
    border-bottom: 1px solid #dde0f0;
  }
  .crumbs_0312.crumbs2_0312 {
    height: auto;
  }
  .crumbs_0312.crumbs2_0312 .w1600 {
    height: auto;
  }
  .crumbs_0312.crumbs3_0312 {
    background: #f2f4f8;
  }
  .crumbs_0312 .w1600 {
    height: auto;
    padding: 10px 20px;
    top: 0px;
    color: #333;
  }
  .crumbs_0312 .w1600 a {
    color: #333;
  }
  .crumbs_0312 .w1600 a:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.culture_0312 {
  padding: 5.21vw 0;
}
.culture_0312 h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 2048px) {
  .culture_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .culture_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .culture_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .culture_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .culture_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .culture_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .culture_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .culture_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .culture_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .culture_0312 h2 {
    font-size: 24px;
  }
}
.cul_list_0312 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 5.21vw;
  margin-bottom: -1.56vw;
}
.cul_list_0312 li {
  width: 23.75%;
  margin-right: 1.66%;
  margin-bottom: 1.56vw;
}
.cul_list_0312 li:nth-child(4n) {
  margin-right: 0;
}
.cul_list_0312 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.cul_list_0312 li a:hover {
  transform: translateY(-10px);
}
.cul_list_0312 li a:hover .art .d {
  background: #2531ae;
}
.cul_list_0312 li a:hover .art .d:before,
.cul_list_0312 li a:hover .art .d:after {
  border-color: #2531ae;
}
.cul_list_0312 li a .art {
  position: absolute;
  top: 25.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}
.cul_list_0312 li a .art .d {
  width: 15px;
  height: 15px;
  background: #999999;
  border-radius: 50%;
  margin: 25px;
  position: relative;
}
.cul_list_0312 li a .art .d:before,
.cul_list_0312 li a .art .d:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  border-radius: 50%;
  border: 1px solid #999;
}
.cul_list_0312 li a .art .d:before {
  width: 266%;
  height: 266%;
  z-index: 1;
  opacity: 0.5;
  -webkit-animation: fang1 2s linear infinite;
  animation: fang1 2s linear infinite;
}
.cul_list_0312 li a .art .d:after {
  width: 400%;
  height: 400%;
  z-index: 1;
  opacity: 0.2;
  -webkit-animation: fang1 2s linear infinite;
  animation: fang1 2s linear infinite;
}
.cul_list_0312 li a .art .img {
  width: 3.44vw;
  height: 3.44vw;
  min-width: 35px;
  min-height: 35px;
  margin: 0 auto;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.cul_list_0312 li a .art h3 {
  font-size: 30px;
  color: #333333;
  font-weight: 500;
  margin: 1.56vw 0 2.29vw;
}
@media (max-width: 2048px) {
  .cul_list_0312 li a .art h3 {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .cul_list_0312 li a .art h3 {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .cul_list_0312 li a .art h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .cul_list_0312 li a .art h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .cul_list_0312 li a .art h3 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .cul_list_0312 li a .art h3 {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .cul_list_0312 li a .art h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .cul_list_0312 li a .art h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .cul_list_0312 li a .art h3 {
    font-size: 21.34375px;
  }
}
.cul_list_0312 li a .art .info {
  font-size: 18px;
  line-height: 36px;
  color: #666666;
}
@media (max-width: 2048px) {
  .cul_list_0312 li a .art .info {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .cul_list_0312 li a .art .info {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .cul_list_0312 li a .art .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .cul_list_0312 li a .art .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .cul_list_0312 li a .art .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .cul_list_0312 li a .art .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .cul_list_0312 li a .art .info {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .cul_list_0312 li a .art .info {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1440px) {
  .cul_list_0312 li a .art {
    top: 20%;
  }
}
@media (max-width: 768px) {
  .culture_0312 {
    padding: 25px 0 40px;
  }
  .cul_list_0312 {
    margin-top: 20px;
  }
  .cul_list_0312 li {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .cul_list_0312 li:nth-child(2n) {
    margin-right: 0;
  }
  .cul_list_0312 li a > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cul_list_0312 li a .art {
    position: relative;
    padding: 15px 15px 25px;
  }
  .cul_list_0312 li a .art .d {
    margin-bottom: 15px;
  }
  .cul_list_0312 li a .art h3 {
    font-size: 18px;
    margin: 10px 0;
  }
  .cul_list_0312 li a .art .info {
    font-size: 12px;
  }
}
.society1_0312 {
  padding: 4.69vw 0 6.25vw;
  background: url(../image/bg13_0312.jpg) no-repeat center top;
}
.society1_0312 h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 2048px) {
  .society1_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .society1_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .society1_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .society1_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .society1_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .society1_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .society1_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .society1_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .society1_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .society1_0312 h2 {
    font-size: 24px;
  }
}
.society1_0312 h5 {
  font-size: 22px;
  line-height: 1.6;
  width: 1042px;
  max-width: 100%;
  margin: 2.08vw auto 2.86vw;
  text-align: left;
  font-weight: lighter;
  color: #22262c;
}
@media (max-width: 2048px) {
  .society1_0312 h5 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .society1_0312 h5 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .society1_0312 h5 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .society1_0312 h5 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .society1_0312 h5 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .society1_0312 h5 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .society1_0312 h5 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .society1_0312 h5 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .society1_0312 h5 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .society1_0312 h5 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .society1_0312 h5 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .society1_0312 h5 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .society1_0312 h5 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .society1_0312 {
    background-image: none;
  }
  .society1_0312 h2,
  .society1_0312 h5 {
    text-align: left;
  }
}
.society1_list_0312 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-bottom: -2.08vw;
}
.society1_list_0312 li {
  width: 48.75%;
  margin-right: 2.5%;
  background: #f5f7fa;
  margin-bottom: 2.08vw;
  padding: 2.6vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.society1_list_0312 li:nth-child(2n) {
  margin-right: 0;
}
.society1_list_0312 li:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.society1_list_0312 li .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.society1_list_0312 li .top .left .p1 {
  font-family: "gl_L";
  font-size: 36px;
  color: #22262c;
  opacity: 0.5;
}
@media (max-width: 2048px) {
  .society1_list_0312 li .top .left .p1 {
    font-size: 38.4px;
  }
}
@media (max-width: 1920px) {
  .society1_list_0312 li .top .left .p1 {
    font-size: 36px;
  }
}
@media (max-width: 1680px) {
  .society1_list_0312 li .top .left .p1 {
    font-size: 31.5px;
  }
}
@media (max-width: 1440px) {
  .society1_list_0312 li .top .left .p1 {
    font-size: 27px;
  }
}
@media (max-width: 1280px) {
  .society1_list_0312 li .top .left .p1 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .society1_list_0312 li .top .left .p1 {
    font-size: 19.2px;
  }
}
.society1_list_0312 li .top .left h3 {
  font-size: 36px;
  font-weight: 500;
  color: #1b1e1e;
  margin: 1.04vw 0 1.56vw;
}
@media (max-width: 2048px) {
  .society1_list_0312 li .top .left h3 {
    font-size: 38.4px;
  }
}
@media (max-width: 1920px) {
  .society1_list_0312 li .top .left h3 {
    font-size: 36px;
  }
}
@media (max-width: 1680px) {
  .society1_list_0312 li .top .left h3 {
    font-size: 31.5px;
  }
}
@media (max-width: 1440px) {
  .society1_list_0312 li .top .left h3 {
    font-size: 27px;
  }
}
@media (max-width: 1280px) {
  .society1_list_0312 li .top .left h3 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .society1_list_0312 li .top .left h3 {
    font-size: 19.2px;
  }
}
.society1_list_0312 li .top .icon {
  width: 3.13vw;
  height: 3.13vw;
  margin-top: -0.78vw;
  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;
  min-width: 35px;
  min-height: 35px;
}
.society1_list_0312 li .top .icon img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.society1_list_0312 li .bot {
  font-size: 20px;
  line-height: 1.5;
  color: #666666;
}
@media (max-width: 2048px) {
  .society1_list_0312 li .bot {
    font-size: 21.33333333px;
  }
}
@media (max-width: 1920px) {
  .society1_list_0312 li .bot {
    font-size: 20px;
  }
}
@media (max-width: 1680px) {
  .society1_list_0312 li .bot {
    font-size: 17.5px;
  }
}
@media (max-width: 1440px) {
  .society1_list_0312 li .bot {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .society1_list_0312 li .bot {
    font-size: 13.33333333px;
  }
}
@media (max-width: 1024px) {
  .society1_list_0312 li .bot {
    font-size: 10.66666667px;
  }
}
@media (max-width: 768px) {
  .society1_0312 {
    padding: 40px 0;
  }
  .society1_0312 h5 {
    font-size: 14px;
    line-height: 22px;
    margin: 15px 0;
  }
  .society1_list_0312 {
    margin-top: 30px;
  }
  .society1_list_0312 li {
    width: 100%;
    margin-right: 0;
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
  }
  .society1_list_0312 li .top .left {
    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;
  }
  .society1_list_0312 li .top .left .p1 {
    margin-right: 10px;
  }
  .society1_list_0312 li .top .left h3 {
    font-size: 16px;
    margin: 10px 0;
  }
  .society1_list_0312 li .top .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .society1_list_0312 li .bot {
    font-size: 14px;
    line-height: 24px;
    padding-right: 30%;
  }
}
.society2_0312 {
  position: relative;
  padding: 4.69vw 0 5.47vw;
  background: #f5f7fa;
  overflow: hidden;
}
.society2_0312 .img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  left: 0;
}
.society2_0312 .w1600 {
  position: relative;
  z-index: 1;
}
.society2_0312 h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 2048px) {
  .society2_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .society2_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .society2_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .society2_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .society2_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .society2_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .society2_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .society2_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .society2_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .society2_0312 h2 {
    font-size: 24px;
  }
}
.society2_0312 h5 {
  font-size: 22px;
  line-height: 1.6;
  width: 1042px;
  max-width: 100%;
  margin: 2.08vw auto 4.69vw;
  text-align: center;
  font-weight: lighter;
  color: #fff;
}
@media (max-width: 2048px) {
  .society2_0312 h5 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .society2_0312 h5 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .society2_0312 h5 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .society2_0312 h5 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .society2_0312 h5 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .society2_0312 h5 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .society2_0312 h5 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .society2_0312 h5 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .society2_0312 h5 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .society2_0312 h5 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .society2_0312 h5 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .society2_0312 h5 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .society2_0312 h5 {
    font-size: 16px;
  }
}
.society2_s_0312 {
  position: relative;
}
.society2_s_0312 .swiper-slide 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;
  background: #fff;
  padding: 2.6vw;
}
.society2_s_0312 .swiper-slide h3 {
  font-size: 36px;
  color: #22262c;
}
@media (max-width: 2048px) {
  .society2_s_0312 .swiper-slide h3 {
    font-size: 38.4px;
  }
}
@media (max-width: 1920px) {
  .society2_s_0312 .swiper-slide h3 {
    font-size: 36px;
  }
}
@media (max-width: 1680px) {
  .society2_s_0312 .swiper-slide h3 {
    font-size: 31.5px;
  }
}
@media (max-width: 1440px) {
  .society2_s_0312 .swiper-slide h3 {
    font-size: 27px;
  }
}
@media (max-width: 1280px) {
  .society2_s_0312 .swiper-slide h3 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .society2_s_0312 .swiper-slide h3 {
    font-size: 19.2px;
  }
}
.society2_s_0312 .swiper-slide .line {
  width: 100%;
  height: 1px;
  background: #e8e9e9;
  position: relative;
  margin: 1.82vw 0 1.3vw;
}
.society2_s_0312 .swiper-slide .line:before {
  content: '';
  width: 36px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #2531ae;
}
.society2_s_0312 .swiper-slide .info {
  font-size: 18px;
  color: #666666;
  line-height: 36px;
  height: 288px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #2531ae transparent;
}
@media (max-width: 2048px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .society2_s_0312 .swiper-slide .info {
    font-size: 14px;
    line-height: 24px;
  }
}
.society2_s_0312 .swiper-slide .info::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.society2_s_0312 .swiper-slide .info::-webkit-scrollbar-thumb {
  background-color: #2531ae;
  border-radius: 10px;
}
.society2_s_0312 .swiper-slide .info b {
  color: #333333;
  font-size: 18px;
}
@media (max-width: 2048px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .society2_s_0312 .swiper-slide .info b {
    font-size: 14px;
    line-height: 24px;
  }
}
.society2_s_0312 .tab_s {
  position: absolute!important;
  width: 100%;
  top: 50%;
}
.society2_s_0312 .tab_s .bot {
  height: 0px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0!important;
}
.society2_s_0312 .tab_s .bot .btns {
  width: 100%!important;
  height: 0;
}
.society2_s_0312 .tab_s .bot .btns .swiper-button-prev {
  left: -60px !important;
}
.society2_s_0312 .tab_s .bot .btns .swiper-button-next {
  right: -60px !important;
}
@media (max-width: 1440px) {
  .society2_s_0312 .tab_s .bot .btns .swiper-button-prev {
    left: -40px !important;
  }
  .society2_s_0312 .tab_s .bot .btns .swiper-button-next {
    right: -40px !important;
  }
}
@media (max-width: 1024px) {
  .society2_s_0312 .tab_s .bot .btns .swiper-button-prev {
    left: -30px !important;
  }
  .society2_s_0312 .tab_s .bot .btns .swiper-button-next {
    right: -30px !important;
  }
}
@media (max-width: 990px) {
  .society2_s_0312 .tab_s .bot .btns .swiper-button-prev {
    left: -25px !important;
  }
  .society2_s_0312 .tab_s .bot .btns .swiper-button-next {
    right: -25px !important;
  }
}
.society2_s_0312 .tab_s .bot .bar {
  display: none;
}
@media (max-width: 1720px) {
  .society2_0312 .swiper-pagination {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
}
@media (max-width: 1024px) {
  .society2_0312 .swiper-pagination {
    width: calc(100% - 30px);
    margin-left: 30px;
  }
}
@media (max-width: 990px) {
  .society2_0312 .swiper-pagination {
    width: calc(100% - 20px);
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .society2_0312 {
    padding: 40px 0;
  }
  .society2_0312 .img {
    height: 220px;
    object-fit: cover;
  }
  .society2_0312 h5 {
    font-size: 14px;
    line-height: 24px;
    margin: 15px 0 35px;
  }
  .society2_s_0312 .swiper-slide a {
    padding: 15px;
  }
  .society2_s_0312 .swiper-slide h3 {
    font-size: 18px;
  }
  .society2_s_0312 .swiper-slide .line {
    margin: 15px 0 10px;
  }
}
.honor_0312 {
  padding: 4.95vw 0 5.21vw;
  background: #f2f4f8;
}
.honor_0312 .top {
  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;
}
.honor_0312 .top a {
  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;
  opacity: 0.4;
  margin: 0 2.08vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.honor_0312 .top a.on {
  opacity: 1;
}
.honor_0312 .top a.on .icon img {
  display: none;
}
.honor_0312 .top a.on .icon img.on {
  display: block;
}
.honor_0312 .top a.on p {
  color: #2531ae;
}
.honor_0312 .top a .icon {
  width: 1.5vw;
  height: 1.5vw;
  min-width: 16px;
  min-height: 16px;
  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;
  margin-right: 0.78vw;
}
.honor_0312 .top a .icon img {
  display: block;
}
.honor_0312 .top a .icon img.on {
  display: none;
}
.honor_0312 .top a p {
  font-size: 28px;
  color: #22262c;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .honor_0312 .top a p {
    font-size: 29.86666667px;
  }
}
@media (max-width: 1920px) {
  .honor_0312 .top a p {
    font-size: 28px;
  }
}
@media (max-width: 1680px) {
  .honor_0312 .top a p {
    font-size: 24.5px;
  }
}
@media (max-width: 1440px) {
  .honor_0312 .top a p {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .honor_0312 .top a p {
    font-size: 18.66666667px;
  }
}
@media (max-width: 1024px) {
  .honor_0312 .top a p {
    font-size: 14.93333333px;
  }
}
@media (max-width: 1440px) {
  .honor_0312 .top a p {
    font-size: 24.5px;
  }
}
@media (max-width: 1280px) {
  .honor_0312 .top a p {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .honor_0312 .top a p {
    font-size: 19.92083333px;
  }
}
@media (max-width: 768px) {
  .honor_0312 .top {
    margin: 20px 0 30px;
  }
}
.honor_list_0312 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 3.13vw;
  margin-bottom: 0.78vw;
}
.honor_list_0312 li {
  width: 23.125%;
  margin-right: 2.5%;
  margin-bottom: 2.08vw;
  padding: 1.82vw 1.82vw 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.honor_list_0312 li:nth-child(4n) {
  margin-right: 0;
}
.honor_list_0312 li:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.honor_list_0312 li:hover .imgbox img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.honor_list_0312 li:hover p {
  color: #2531ae;
}
.honor_list_0312 li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.82vw;
}
.honor_list_0312 li .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.honor_list_0312 li p {
  height: 3.65vw;
  min-height: 40px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  color: #333333;
  border-top: 2px solid #eaeaea;
}
@media (max-width: 2048px) {
  .honor_list_0312 li p {
    font-size: 21.33333333px;
  }
}
@media (max-width: 1920px) {
  .honor_list_0312 li p {
    font-size: 20px;
  }
}
@media (max-width: 1680px) {
  .honor_list_0312 li p {
    font-size: 17.5px;
  }
}
@media (max-width: 1440px) {
  .honor_list_0312 li p {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .honor_list_0312 li p {
    font-size: 13.33333333px;
  }
}
@media (max-width: 1024px) {
  .honor_list_0312 li p {
    font-size: 10.66666667px;
  }
}
@media (max-width: 768px) {
  .honor_0312 {
    padding: 20px 0 40px;
  }
  .honor_0312 .top a {
    margin: 0 10px;
  }
  .honor_0312 .top a p {
    font-size: 16px;
  }
  .honor_list_0312 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .honor_list_0312 li {
    width: calc(50% - 7.5px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .honor_list_0312 li:nth-child(2n) {
    margin-right: 0;
  }
}
.solution1_0312 {
  padding: 4.17vw 0;
  overflow: hidden;
}
.solution1_0312.develop1_1_0312 .tab_b .swiper .swiper-slide a:before {
  content: '';
  width: 0;
  height: 0.21vw;
  min-height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  z-index: 4;
}
.solution1_0312.develop1_1_0312 .tab_b .swiper .swiper-slide.swiper-slide-active a:before {
  width: 100%;
  background: #2531ae;
}
.solution1_0312 .tab_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.solution1_0312 .tab_a a {
  width: 10.42vw;
  height: 3.69vw;
  min-width: 150px;
  min-height: 40px;
  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: 1px solid #e9eaf3;
  font-size: 22px;
  color: #666666;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
}
@media (max-width: 2048px) {
  .solution1_0312 .tab_a a {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .solution1_0312 .tab_a a {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .solution1_0312 .tab_a a {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_a a {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .solution1_0312 .tab_a a {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_a a {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_a a {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .solution1_0312 .tab_a a {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_a a {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .solution1_0312 .tab_a a {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_a a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_a a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .solution1_0312 .tab_a a {
    font-size: 16px;
  }
}
.solution1_0312 .tab_a a:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution1_0312 .tab_a a span {
  position: relative;
  z-index: 1;
}
.solution1_0312 .tab_a a.on {
  color: #fff;
  border-color: #2531ae;
}
.solution1_0312 .tab_a a.on:before {
  width: 100%;
  background: #2531ae;
}
.solution1_0312 .tab_b {
  margin-top: 3.44vw;
}
.solution1_0312 .tab_b .item {
  width: 100%;
  height: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution1_0312 .tab_b .item.on {
  height: auto;
  max-height: none;
  overflow: visible;
}
.solution1_0312 .tab_b .swiper {
  overflow: hidden;
}
.solution1_0312 .tab_b .swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 65%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution1_0312 .tab_b .swiper .swiper-slide a:hover .img1 {
  height: 50%;
  max-height: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution1_0312 .tab_b .swiper .swiper-slide a:hover .art p {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution1_0312 .tab_b .swiper .swiper-slide a .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution1_0312 .tab_b .swiper .swiper-slide a .art {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 0px 2.08vw 1.82vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
  font-size: 22px;
  color: #ffffff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    font-size: 16px;
  }
}
.solution1_0312 .tab_b .swiper .swiper-slide a .art p {
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #fff;
  margin-top: 1.04vw;
  height: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art p {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art p {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art p {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art p {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art p {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art p {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a .art p {
    font-size: 14px;
    line-height: 22px;
  }
}
.solution1_0312 .tab_b .swiper .swiper-slide a .img1 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 0;
  bottom: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0.8;
  height: 50%;
  max-height: 100%;
}
.solution1_0312 .tab_s .bot {
  height: 0px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0!important;
}
.solution1_0312 .tab_s .bot .btns {
  width: 100%!important;
  height: 0;
}
.solution1_0312 .tab_s .bot .btns .swiper-button-prev {
  left: -60px !important;
}
.solution1_0312 .tab_s .bot .btns .swiper-button-next {
  right: -60px !important;
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_s .bot .btns .swiper-button-prev {
    left: -40px !important;
  }
  .solution1_0312 .tab_s .bot .btns .swiper-button-next {
    right: -40px !important;
  }
}
@media (max-width: 1024px) {
  .solution1_0312 .tab_s .bot .btns .swiper-button-prev {
    left: -30px !important;
  }
  .solution1_0312 .tab_s .bot .btns .swiper-button-next {
    right: -30px !important;
  }
}
@media (max-width: 990px) {
  .solution1_0312 .tab_s .bot .btns .swiper-button-prev {
    left: -25px !important;
  }
  .solution1_0312 .tab_s .bot .btns .swiper-button-next {
    right: -25px !important;
  }
}
.solution1_0312 .tab_s .bot .bar {
  display: none;
}
@media (max-width: 1680px) {
  .solution1_0312 .tab_b .swiper .swiper-slide a:hover .art p {
    height: 66px;
  }
}
.swiper_box_0312 .tab_s {
  position: relative;
}
.swiper_box_0312 .tab_s .bot {
  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;
  margin-top: 2.6vw;
}
.swiper_box_0312 .tab_s .bot .btns {
  width: 130px;
  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;
}
.swiper_box_0312 .tab_s .bot .btns .swiper-button-prev,
.swiper_box_0312 .tab_s .bot .btns .swiper-button-next {
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #b2b2b2;
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:hover,
.swiper_box_0312 .tab_s .bot .btns .swiper-button-next:hover {
  color: #2531ae;
}
.swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
.swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
  font-size: 26px;
}
@media (max-width: 2048px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 27.73333333px;
  }
}
@media (max-width: 1920px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 26px;
  }
}
@media (max-width: 1680px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1440px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1280px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 17.33333333px;
  }
}
@media (max-width: 1024px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 13.86666667px;
  }
}
@media (max-width: 1440px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 22.75px;
  }
}
@media (max-width: 1280px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 19.5px;
  }
}
@media (max-width: 1024px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 18.49791667px;
  }
}
@media (max-width: 1680px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 22px;
  }
}
@media (max-width: 1440px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 18px;
  }
}
@media (max-width: 1290px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev:after,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next:after {
    font-size: 16px;
  }
}
.swiper_box_0312 .tab_s .bot .bar {
  width: calc(100% - 150px);
}
.swiper_box_0312 .tab_s .bot .bar span {
  display: none;
  position: relative;
}
.swiper_box_0312 .tab_s .bot .bar span:before {
  content: '';
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.swiper_box_0312 .tab_s .bot .bar span.swiper-pagination-bullet-active {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}
.swiper_box_0312 .tab_s .bot .bar span.swiper-pagination-bullet-active:before {
  background: #0908bc;
  animation: move0 6s linear infinite;
}
.swiper_box_0312 .tab_s .bot .bar .swiper-pagination {
  width: 100%;
  height: 2px;
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  margin: 0;
}
.swiper_box_0312 .tab_s .bot .bar .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #2531ae;
}
@media (max-width: 768px) {
  .swiper_box_0312 .tab_s .bot .bar .swiper-pagination {
    background: #e8e9e9;
  }
  .swiper_box_0312 .tab_s .bot .bar .swiper-pagination .swiper-pagination-bullet {
    background: #e8e9e9;
  }
}
@keyframes move0 {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .solution1_0312 .tab_a {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .solution1_0312 .tab_a a {
    font-size: 16px;
  }
  .swiper_box_0312 .tab_s .bot .bar {
    width: calc(100% - 100px);
  }
  .swiper_box_0312 .tab_s .bot .btns {
    width: 90px;
  }
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .solution1_0312 {
    padding: 40px 0;
  }
  .solution1_0312 .tab_a {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .solution1_0312 .tab_a a {
    width: 33%;
    min-width: 33%;
    font-size: 13px;
  }
  .solution1_0312 .tab_a.tab_a_3 a {
    width: 33%;
    min-width: 33%;
  }
  .solution1_0312 .tab_b {
    margin-top: 20px;
  }
  .solution1_0312 .tab_b .swiper .swiper-slide a {
    height: auto;
    padding-bottom: 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;
  }
  .solution1_0312 .tab_b .swiper .swiper-slide a .img {
    width: 100%;
    max-height: 200px;
    position: relative;
    top: auto;
    left: auto;
  }
  .solution1_0312 .tab_b .swiper .swiper-slide a .img1 {
    display: none;
  }
  .solution1_0312 .tab_b .swiper .swiper-slide a .art {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    bottom: auto;
    height: auto;
    padding: 15px 0 0!important;
  }
  .solution1_0312 .tab_b .swiper .swiper-slide a .art h3 {
    color: #333;
    margin-bottom: 15px;
  }
  .solution1_0312 .tab_b .swiper .swiper-slide a .art P {
    font-size: 14px;
    line-height: 22px;
    height: 66px;
    max-height: 66px;
    color: #333;
  }
  .swiper_box_0312 .tab_s .bot {
    margin-top: 15px;
  }
  .swiper_box_0312 .tab_s .bot .bar {
    width: calc(100% - 90px);
  }
  .swiper_box_0312 .tab_s .bot .btns {
    width: 80px;
  }
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-prev,
  .swiper_box_0312 .tab_s .bot .btns .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
.solution2_0312 {
  padding: 4.69vw 0;
  background: #f5f7fa;
}
.solution2_0312 .tab_a1 {
  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;
}
.solution2_0312 .tab_a1 a {
  font-size: 22px;
  color: #22262c;
  padding-bottom: 1.35vw;
  position: relative;
  margin: 0 2.86vw;
}
@media (max-width: 2048px) {
  .solution2_0312 .tab_a1 a {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .solution2_0312 .tab_a1 a {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .solution2_0312 .tab_a1 a {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .solution2_0312 .tab_a1 a {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .solution2_0312 .tab_a1 a {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .solution2_0312 .tab_a1 a {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .solution2_0312 .tab_a1 a {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .solution2_0312 .tab_a1 a {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .solution2_0312 .tab_a1 a {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .solution2_0312 .tab_a1 a {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .solution2_0312 .tab_a1 a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .solution2_0312 .tab_a1 a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .solution2_0312 .tab_a1 a {
    font-size: 16px;
  }
}
.solution2_0312 .tab_a1 a.on {
  color: #2531ae;
}
.solution2_0312 .tab_a1 a.on:before {
  width: 100%;
  background: #2531ae;
}
.solution2_0312 .tab_a1 a:before {
  content: '';
  width: 0;
  height: 0.26vw;
  min-height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution2_0312 .tab_b1 {
  margin-top: 3.44vw;
}
.solution2_0312 .tab_b1 .item {
  width: 100%;
  height: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
}
.solution2_0312 .tab_b1 .item.on {
  height: auto;
  max-height: none;
  overflow: visible;
}
.solution2_0312 .tab_b1 .swiper {
  overflow: hidden;
}
.solution2_0312 .tab_b1 .swiper-slide a {
  background: #fff;
  border: 1px solid #dcdcdc;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.solution2_0312 .tab_b1 .swiper-slide a:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.solution2_0312 .tab_b1 .swiper-slide a:hover .imgbox img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.solution2_0312 .tab_b1 .swiper-slide a:hover p {
  color: #2531ae;
}
.solution2_0312 .tab_b1 .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 72.97%;
  position: relative;
  overflow: hidden;
}
.solution2_0312 .tab_b1 .swiper-slide .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  max-width: 80%;
  max-height: 80%;
}
.solution2_0312 .tab_b1 .swiper-slide p {
  width: 100%;
  height: 3.65vw;
  min-height: 40px;
  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;
  font-size: 18px;
  color: #666666;
  border-top: 1px solid #dcdcdc;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .solution2_0312 .tab_b1 .swiper-slide p {
    font-size: 14px;
    line-height: 24px;
  }
}
.solution2_0312 .tab_s .bot {
  width: calc(100% + 120px);
  margin-left: -60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  height: 1px;
}
.solution2_0312 .tab_s .bot .bar {
  display: none;
}
.solution2_0312 .tab_s .bot .btns {
  width: 100%;
}
@media (max-width: 1024px) {
  .solution2_0312 .tab_s .bot {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
@media (max-width: 990px) {
  .solution2_0312 .tab_s .bot {
    display: none;
  }
}
@media (max-width: 768px) {
  .solution2_0312 {
    padding: 40px 0;
  }
  .solution2_0312 .tab_a1 a {
    font-size: 18px;
  }
  .solution2_0312 .tab_b1 {
    margin-top: 20px;
  }
  .solution2_0312 .tab_b1 .bot {
    display: none;
  }
  .solution2_0312 .more {
    margin: 20px auto 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;
    font-size: 14px;
  }
  .solution2_0312 .more span {
    font-size: 14px;
  }
  .solution2_0312 .more i {
    margin-left: 10px;
    font-size: 14px;
  }
}
.client1_0312 {
  padding: 5.73vw 0;
}
.client_list_0312 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.client_list_0312 li {
  width: 31.4%;
  box-shadow: 0px 0px 40px 0px rgba(124, 124, 124, 0.15);
  position: relative;
  margin-right: 2.9%;
}
.client_list_0312 li:nth-child(3n) {
  margin-right: 0;
}
.client_list_0312 li:hover .art h3 {
  color: #2531ae;
}
.client_list_0312 li:hover:before {
  width: 100%;
  background: #2531ae;
}
.client_list_0312 li:hover .imgbox img {
  transform: translate(-50%, -55%);
}
.client_list_0312 li:before {
  content: '';
  width: 0;
  height: 0.21vw;
  min-height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.client_list_0312 li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 65.6%;
  position: relative;
  overflow: hidden;
}
.client_list_0312 li .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  max-width: 80%;
  max-height: 80%;
}
.client_list_0312 li .art {
  text-align: center;
  padding: 0 15px;
}
.client_list_0312 li .art h3 {
  font-size: 28px;
  color: #333333;
  font-weight: 500;
}
@media (max-width: 2048px) {
  .client_list_0312 li .art h3 {
    font-size: 29.86666667px;
  }
}
@media (max-width: 1920px) {
  .client_list_0312 li .art h3 {
    font-size: 28px;
  }
}
@media (max-width: 1680px) {
  .client_list_0312 li .art h3 {
    font-size: 24.5px;
  }
}
@media (max-width: 1440px) {
  .client_list_0312 li .art h3 {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .client_list_0312 li .art h3 {
    font-size: 18.66666667px;
  }
}
@media (max-width: 1024px) {
  .client_list_0312 li .art h3 {
    font-size: 14.93333333px;
  }
}
@media (max-width: 1440px) {
  .client_list_0312 li .art h3 {
    font-size: 24.5px;
  }
}
@media (max-width: 1280px) {
  .client_list_0312 li .art h3 {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .client_list_0312 li .art h3 {
    font-size: 19.92083333px;
  }
}
.client_list_0312 li .art .info {
  font-size: 14px;
  line-height: 25px;
  color: #666666;
  margin: 1.04vw auto 3.13vw;
  text-align: left;
  padding: 0 2.6vw;
}
@media (max-width: 1680px) {
  .client_list_0312 li .art .info p {
    display: inline;
  }
}
@media (max-width: 768px) {
  .client1_0312 {
    padding: 40px 0;
  }
  .client_list_0312 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .client_list_0312 li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .client_list_0312 li .imgbox {
    width: 40%;
    padding-bottom: 50%;
  }
  .client_list_0312 li .imgbox img {
    max-width: 70%;
    max-height: 70%;
  }
  .client_list_0312 li .art {
    width: 60%;
  }
  .client_list_0312 li .art h3 {
    text-align: left;
  }
  .client_list_0312 li .art .info {
    font-size: 12px;
    line-height: 20px;
    margin: 10px auto 0px;
    text-align: left;
  }
}
.client_box .img {
  height: 22.4vw;
  min-height: 200px;
  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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 4.69vw;
}
.client_box h1 {
  font-size: 48px;
  color: #22262c;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 2048px) {
  .client_box h1 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .client_box h1 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .client_box h1 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .client_box h1 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .client_box h1 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .client_box h1 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .client_box h1 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .client_box h1 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .client_box h1 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .client_box h1 {
    font-size: 24px;
  }
}
.client_box .info {
  width: 900px;
  max-width: 100%;
  text-align: center;
  margin: 1.82vw auto 4.95vw;
  font-size: 20px;
  line-height: 1.5;
  color: #666666;
  text-align: left;
}
@media (max-width: 2048px) {
  .client_box .info {
    font-size: 21.33333333px;
  }
}
@media (max-width: 1920px) {
  .client_box .info {
    font-size: 20px;
  }
}
@media (max-width: 1680px) {
  .client_box .info {
    font-size: 17.5px;
  }
}
@media (max-width: 1440px) {
  .client_box .info {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .client_box .info {
    font-size: 13.33333333px;
  }
}
@media (max-width: 1024px) {
  .client_box .info {
    font-size: 10.66666667px;
  }
}
.client_box .tab_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.client_box .tab_a:before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #e6e7e9;
}
.client_box .tab_a a {
  font-size: 30px;
  color: #22262c;
  padding-bottom: 2.08vw;
  position: relative;
  margin: 0 6.51vw;
  font-weight: 500;
}
@media (max-width: 2048px) {
  .client_box .tab_a a {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .client_box .tab_a a {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .client_box .tab_a a {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_a a {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_a a {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_a a {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_a a {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_a a {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_a a {
    font-size: 21.34375px;
  }
}
.client_box .tab_a a.on {
  color: #2531ae;
}
.client_box .tab_a a.on:before {
  width: 100%;
  background: #2531ae;
}
.client_box .tab_a a:before {
  content: '';
  width: 0;
  height: 0.21vw;
  min-height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.client_box .tab_b .item {
  width: 100%;
  height: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.client_box .tab_b .item.on {
  height: auto;
  max-height: none;
}
.client_box .tab_b .item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 8.23vw 0 6.77vw;
}
.client_box .tab_b .item .box .left {
  width: 48.75%;
  padding-left: 6.51vw;
}
.client_box .tab_b .item .box .left h2 {
  font-size: 48px;
  color: #333333;
  margin-bottom: 2.08vw;
}
@media (max-width: 2048px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b .item .box .left h2 {
    font-size: 24px;
  }
}
.client_box .tab_b .item .box .left p {
  font-size: 24px;
  line-height: 1.6;
  color: #666666;
}
@media (max-width: 2048px) {
  .client_box .tab_b .item .box .left p {
    font-size: 25.6px;
  }
}
@media (max-width: 1920px) {
  .client_box .tab_b .item .box .left p {
    font-size: 24px;
  }
}
@media (max-width: 1680px) {
  .client_box .tab_b .item .box .left p {
    font-size: 21px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b .item .box .left p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_b .item .box .left p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b .item .box .left p {
    font-size: 12.8px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b .item .box .left p {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_b .item .box .left p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b .item .box .left p {
    font-size: 17.075px;
  }
}
.client_box .tab_b .item .box .right {
  width: 48.75%;
  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;
}
.client_box .tab_b .item .box .right img {
  max-height: 15vw;
  min-height: 150px;
}
.client_box .tab_b_s {
  overflow: hidden;
}
.client_box .tab_b_s .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.client_box .tab_b_s .swiper-slide .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 8.23vw 0 6.77vw;
}
.client_box .tab_b_s .swiper-slide .box .left {
  width: 48.75%;
  padding-left: 6.51vw;
}
.client_box .tab_b_s .swiper-slide .box .left h2 {
  font-size: 48px;
  color: #333333;
  margin-bottom: 2.08vw;
}
@media (max-width: 2048px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 24px;
  }
}
.client_box .tab_b_s .swiper-slide .box .left p {
  font-size: 24px;
  line-height: 1.6;
  color: #666666;
}
@media (max-width: 2048px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 25.6px;
  }
}
@media (max-width: 1920px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 24px;
  }
}
@media (max-width: 1680px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 21px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 12.8px;
  }
}
@media (max-width: 1440px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 17.075px;
  }
}
.client_box .tab_b_s .swiper-slide .box .right {
  width: 48.75%;
  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;
}
.client_box .tab_b_s .swiper-slide .box .right img {
  max-height: 15vw;
  min-height: 150px;
}
.client_box .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 1200px;
  max-width: 100%;
  margin: 6.25vw auto;
}
.client_box .items li {
  width: 30.8%;
  margin-right: 3.8%;
  margin-bottom: 2.6vw;
  border: 1px solid #eaeaea;
}
.client_box .items li:nth-child(3n) {
  margin-right: 0;
}
.client_box .items li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 8.85vw;
  min-height: 50px;
  cursor: auto;
  overflow: hidden;
}
.client_box .items li a:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.client_box .items li a img {
  max-width: 80%;
  max-height: 80%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 990px) {
  .client_box .tab_a a {
    font-size: 20px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .client_box .info {
    margin: 10px 0 30px;
    font-size: 14px;
    line-height: 24px;
  }
  .client_box .tab_a {
    margin-bottom: 22px;
  }
  .client_box .tab_a:before {
    height: 1px;
  }
  .client_box .tab_a a {
    font-size: 16px;
    margin: 0 10px;
    padding-bottom: 10px;
  }
  .client_box .img {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 250px;
    margin: 0px auto;
  }
  .client_box .img img {
    max-width: 80%;
    max-height: 80%;
  }
  .client_box .tab_b_s .swiper-slide .box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 0;
  }
  .client_box .tab_b_s .swiper-slide .box .left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }
  .client_box .tab_b_s .swiper-slide .box .left h2 {
    font-size: 20px;
  }
  .client_box .tab_b_s .swiper-slide .box .left p {
    font-size: 14px;
    line-height: 24px;
  }
  .client_box .tab_b_s .swiper-slide .box .right {
    width: 100%;
    margin-bottom: 22px;
  }
  .client_box .tab_b_s .swiper-slide .box .right img {
    max-height: unset;
    max-width: 80%;
  }
  .client_box .items {
    margin: 20px auto 30px;
  }
  .client_box .items li {
    margin-bottom: 12px;
  }
}
.client_rd {
  padding-bottom: 4.95vw;
  padding-top: 0.78vw;
  overflow: hidden;
}
.client_rd .swiper {
  overflow: hidden;
}
.client_rd .swiper .swiper-slide:hover .imgbox img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.client_rd .swiper .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 63.56%;
  position: relative;
  overflow: hidden;
}
.client_rd .swiper .swiper-slide .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.client_rd .swiper .swiper-slide p {
  height: 3.65vw;
  min-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #10161b;
  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;
}
@media (max-width: 2048px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .client_rd .swiper .swiper-slide p {
    font-size: 16px;
  }
}
.client_rd .bot {
  margin-top: 2.08vw;
}
.client_rd .tab_s .bot {
  height: 0px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0!important;
}
.client_rd .tab_s .bot .btns {
  width: 100%!important;
  height: 0;
}
.client_rd .tab_s .bot .btns .swiper-button-prev {
  left: -60px !important;
  margin-top: -40px;
}
.client_rd .tab_s .bot .btns .swiper-button-next {
  margin-top: -40px;
  right: -60px !important;
}
@media (max-width: 1440px) {
  .client_rd .tab_s .bot .btns .swiper-button-prev {
    left: -40px !important;
  }
  .client_rd .tab_s .bot .btns .swiper-button-next {
    right: -40px !important;
  }
}
@media (max-width: 1024px) {
  .client_rd .tab_s .bot .btns .swiper-button-prev {
    left: -30px !important;
  }
  .client_rd .tab_s .bot .btns .swiper-button-next {
    right: -30px !important;
  }
}
@media (max-width: 990px) {
  .client_rd .tab_s .bot .btns .swiper-button-prev {
    left: -25px !important;
  }
  .client_rd .tab_s .bot .btns .swiper-button-next {
    right: -25px !important;
  }
}
.client_rd .tab_s .bot .bar {
  display: none;
}
@media (max-width: 768px) {
  .client_rd.swiper_box_0312 .tab_s .bot {
    margin-top: 0;
  }
}
.win1_0312 {
  padding: 4.17vw 0 5.63vw;
  background: url(../image/bg15_0312.jpg) no-repeat center / cover;
}
.win1_0312 h2 {
  font-size: 48px;
  color: #22262c;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .win1_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .win1_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .win1_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win1_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .win1_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .win1_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .win1_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win1_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .win1_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .win1_0312 h2 {
    font-size: 24px;
  }
}
.win1_0312 .info {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin-top: 1.77vw;
}
@media (max-width: 2048px) {
  .win1_0312 .info {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .win1_0312 .info {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .win1_0312 .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .win1_0312 .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .win1_0312 .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .win1_0312 .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .win1_0312 .info {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .win1_0312 .info {
    font-size: 14px;
    line-height: 24px;
  }
}
.win1_0312 .items {
  margin-top: 4.95vw;
  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;
  position: relative;
  z-index: 1;
}
.win1_0312 .items:before {
  content: '';
  width: 80%;
  height: 0px;
  position: absolute;
  left: 10%;
  top: 4vw;
  border-bottom: 1px dashed #2531ae;
}
.win1_0312 .items .item {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.win1_0312 .items .item .icon {
  width: 8.13vw;
  height: 8.13vw;
  min-width: 40px;
  min-height: 40px;
  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-radius: 50%;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
.win1_0312 .items .item .icon:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px dashed #2531ae;
  border-radius: 50%;
  animation: movexz 15s linear infinite;
}
.win1_0312 .items .item .icon img {
  max-width: 50%;
  transition: all 1s;
}
.win1_0312 .items h4 {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
  text-align: center;
  margin: 1.82vw 0 0.78vw;
}
@media (max-width: 2048px) {
  .win1_0312 .items h4 {
    font-size: 21.33333333px;
  }
}
@media (max-width: 1920px) {
  .win1_0312 .items h4 {
    font-size: 20px;
  }
}
@media (max-width: 1680px) {
  .win1_0312 .items h4 {
    font-size: 17.5px;
  }
}
@media (max-width: 1440px) {
  .win1_0312 .items h4 {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .win1_0312 .items h4 {
    font-size: 13.33333333px;
  }
}
@media (max-width: 1024px) {
  .win1_0312 .items h4 {
    font-size: 10.66666667px;
  }
}
.win1_0312 .items p {
  font-size: 16px;
  color: #666666;
  text-align: center;
}
@media (max-width: 2048px) {
  .win1_0312 .items p {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .win1_0312 .items p {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .win1_0312 .items p {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .win1_0312 .items p {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .win1_0312 .items p {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .win1_0312 .items p {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .win1_0312 .items p {
    font-size: 14px;
    line-height: 22px;
  }
}
@keyframes movexz {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .win1_0312 {
    padding: 40px 0;
  }
  .win1_0312 .info {
    margin-top: 10px;
  }
  .win1_0312 .items {
    margin-top: 15px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: -15px;
  }
  .win1_0312 .items .item {
    width: 49%;
    margin-bottom: 15px;
    padding: 0;
    margin-right: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .win1_0312 .items .item:nth-child(2n) {
    margin-right: 0;
  }
  .win1_0312 .items .item .icon {
    width: 35px;
    margin-right: 10px;
    margin: 0 auto;
  }
  .win1_0312 .items .item .bot {
    width: calc(100% - 45px);
    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;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .win1_0312 .items:before {
    display: none;
  }
  .win1_0312 .items p {
    font-size: 12px;
    line-height: 20px;
    text-align: left;
  }
}
.win2_0312 {
  padding: 6.25vw 0;
}
.win2_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.win2_list .item {
  width: 50%;
  height: 17.66vw;
  min-height: 200px;
  overflow: hidden;
}
.win2_list .item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.win2_list .item:hover > img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.win2_list .item2 {
  width: 25%;
  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;
}
.win2_list .item3 {
  width: 25%;
  background: #f5f6f7;
  padding: 2.08vw 2.08vw 1.56vw;
  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;
}
.win2_list .item3_1 {
  background: #2531ae;
}
.win2_list .item3_1 h1 {
  color: #2531ae;
  text-shadow: 1px 1px rgba(247, 247, 247, 0.15), -1px -1px rgba(247, 247, 247, 0.15), 1px -1px rgba(247, 247, 247, 0.15), -1px 1px rgba(247, 247, 247, 0.15);
}
.win2_list .item3_1 h3,
.win2_list .item3_1 p {
  color: #fff;
}
.win2_list .item4 {
  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;
  position: relative;
}
.win2_list .item4:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../image/hz8_0312.png) no-repeat center / cover;
  z-index: 1;
}
.win2_list .item4 > img {
  width: 100%;
  height: 100%;
}
.win2_list .item4 .art {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 2.08vw 2.08vw 1.56vw;
  z-index: 2;
}
.win2_list .item4 .art h3,
.win2_list .item4 .art p {
  color: #fff;
}
.win2_list h1 {
  font-size: 46px;
  line-height: 1.08;
  font-weight: bold;
  text-transform: uppercase;
  color: #f5f6f7;
  text-shadow: 1px 1px rgba(37, 49, 174, 0.15), -1px -1px rgba(37, 49, 174, 0.15), 1px -1px rgba(37, 49, 174, 0.15), -1px 1px rgba(37, 49, 174, 0.15);
}
@media (max-width: 2048px) {
  .win2_list h1 {
    font-size: 49.06666667px;
  }
}
@media (max-width: 1920px) {
  .win2_list h1 {
    font-size: 46px;
  }
}
@media (max-width: 1680px) {
  .win2_list h1 {
    font-size: 40.25px;
  }
}
@media (max-width: 1440px) {
  .win2_list h1 {
    font-size: 34.5px;
  }
}
@media (max-width: 1280px) {
  .win2_list h1 {
    font-size: 30.66666667px;
  }
}
@media (max-width: 1024px) {
  .win2_list h1 {
    font-size: 24.53333333px;
  }
}
.win2_list h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .win2_list h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .win2_list h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .win2_list h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win2_list h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .win2_list h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .win2_list h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .win2_list h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win2_list h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .win2_list h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .win2_list h2 {
    font-size: 24px;
  }
}
.win2_list h3 {
  font-size: 30px;
  color: #22262c;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .win2_list h3 {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .win2_list h3 {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .win2_list h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .win2_list h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .win2_list h3 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .win2_list h3 {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .win2_list h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .win2_list h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .win2_list h3 {
    font-size: 21.34375px;
  }
}
.win2_list p {
  font-size: 15px;
  color: #22262c;
  line-height: 26px;
  margin-top: 1.04vw;
}
.win2_list .info {
  font-size: 18px;
  line-height: 36px;
  color: #666666;
  margin-top: 1.56vw;
  padding-right: 2.08vw;
}
@media (max-width: 2048px) {
  .win2_list .info {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .win2_list .info {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .win2_list .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .win2_list .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .win2_list .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .win2_list .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .win2_list .info {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .win2_list .info {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1440px) {
  .win2_list p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1280px) {
  .win2_list h1 {
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  .win2_list h1 {
    font-size: 20px;
  }
  .win2_list p {
    font-size: 13px;
    line-height: 23px;
  }
}
@media (max-width: 768px) {
  .win2_0312 {
    padding: 40px 0;
  }
  .win2_list .item {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .win2_list .item.item1 {
    padding-bottom: 15px;
  }
  .win2_list .item.item2,
  .win2_list .item.item3 {
    width: 50%;
  }
  .win2_list .item.item3 {
    padding: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .win2_list .item.item3 h1 {
    display: none;
  }
  .win2_list .item.item4 {
    height: 240px;
  }
  .win2_list .item.item4 .art {
    padding: 15px;
  }
  .win2_list h2 {
    text-align: center;
  }
  .win2_list p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
  }
  .win2_list .info {
    margin-top: 10px;
    text-align: center;
  }
}
.win3_0312 {
  padding: 4.43vw 0 3.65vw;
  background: url(../image/bg16_0312.jpg) no-repeat center / cover;
  overflow: hidden;
}
.win3_0312 h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 2048px) {
  .win3_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .win3_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .win3_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .win3_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .win3_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .win3_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 h2 {
    font-size: 24px;
  }
}
.win3_0312 .win3_s {
  margin-top: 3.39vw;
  position: relative;
}
.win3_0312 .win3_s .swiper-button-next,
.win3_0312 .win3_s .swiper-button-prev {
  color: #22262c;
}
.win3_0312 .win3_s .swiper-button-next:after,
.win3_0312 .win3_s .swiper-button-prev:after {
  font-size: 30px;
}
@media (max-width: 2048px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 .win3_s .swiper-button-next:after,
  .win3_0312 .win3_s .swiper-button-prev:after {
    font-size: 21.34375px;
  }
}
.win3_0312 .win3_s .swiper-button-prev {
  left: -60px;
}
.win3_0312 .win3_s .swiper-button-next {
  right: -60px;
}
.win3_0312 .win3_s .swiper {
  overflow: hidden;
}
.win3_0312 .win3_s .swiper .swiper-slide a {
  cursor: auto;
}
.win3_0312 .win3_s .swiper .swiper-slide a:hover .imgbox img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.win3_0312 .win3_s .swiper .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}
.win3_0312 .win3_s .swiper .swiper-slide .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.win3_0312 .win3_s .swiper .swiper-slide p {
  height: 2.86vw;
  min-height: 40px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 22px;
  color: #292929;
}
@media (max-width: 2048px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .win3_0312 .win3_s .swiper .swiper-slide p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .win3_0312 .win3_s .swiper-button-next {
    right: -40px;
  }
  .win3_0312 .win3_s .swiper-button-prev {
    left: -40px;
  }
}
@media (max-width: 1024px) {
  .win3_0312 .win3_s .swiper-button-next {
    right: -30px;
  }
  .win3_0312 .win3_s .swiper-button-prev {
    left: -30px;
  }
}
@media (max-width: 990px) {
  .win3_0312 .win3_s .swiper-button-next {
    right: -25px;
  }
  .win3_0312 .win3_s .swiper-button-prev {
    left: -25px;
  }
}
@media (max-width: 768px) {
  .win3_0312 {
    padding: 40px 0 20px;
  }
  .win3_0312 .win3_s {
    margin-top: 20px;
  }
}
.win4_0312 {
  padding-top: 4.69vw;
}
.win4_0312 h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 2048px) {
  .win4_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .win4_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .win4_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win4_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .win4_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .win4_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .win4_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .win4_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .win4_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .win4_0312 h2 {
    font-size: 24px;
  }
}
.win4_0312 .info {
  font-size: 18px;
  color: #555555;
  text-align: left;
  line-height: 36px;
  margin: 2.5vw auto 0;
  width: 1100px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 2048px) {
  .win4_0312 .info {
    font-size: 19.2px;
  }
}
@media (max-width: 1920px) {
  .win4_0312 .info {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .win4_0312 .info {
    font-size: 15.75px;
  }
}
@media (max-width: 1440px) {
  .win4_0312 .info {
    font-size: 13.5px;
  }
}
@media (max-width: 1280px) {
  .win4_0312 .info {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .win4_0312 .info {
    font-size: 9.6px;
  }
}
@media (max-width: 1440px) {
  .win4_0312 .info {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1024px) {
  .win4_0312 .info {
    font-size: 14px;
    line-height: 24px;
  }
}
.win4_0312 .info p {
  margin-bottom: 0.78vw;
}
.win4_0312 .info p:last-child {
  margin-bottom: 0;
}
.win4_0312 .img {
  margin: -3.65vw auto 10px;
  width: 94.25%;
  position: relative;
}
.win4_0312 .img .imgs img {
  position: absolute;
  width: 14.8%;
  animation: move4 2.5s linear infinite;
}
.win4_0312 .img .imgs img:nth-child(2) {
  animation: move5 2.5s linear infinite;
}
.win4_0312 .img .imgs img:nth-child(3) {
  animation: move5 2.5s linear infinite;
}
@media (max-width: 768px) {
  .win4_0312 {
    padding: 30px 0;
    overflow: hidden;
  }
  .win4_0312 .info {
    font-size: 13px;
    margin: 15px auto 20px;
    position: relative;
    z-index: 1;
  }
  .win4_0312 .img {
    margin: -50px auto -20px;
    width: 800px;
    position: relative;
    left: -220px;
  }
}
.news_0312 {
  padding: 4.43vw 0 4.69vw;
}
.news_0312 h2 {
  font-size: 48px;
  color: #22262c;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 2048px) {
  .news_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .news_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .news_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .news_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .news_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .news_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .news_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .news_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .news_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .news_0312 h2 {
    font-size: 24px;
  }
}
.news_0312 ul {
  margin-top: 3.65vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-bottom: 2.6vw;
}
.news_0312 ul li {
  width: 31.25%;
  margin-right: 3.125%;
  margin-bottom: 3.13vw;
}
.news_0312 ul li:nth-child(3n) {
  margin-right: 0%;
}
.news_0312 ul li:hover .imgbox img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}
.news_0312 ul li:hover .art h3 {
  color: #2531ae;
}
.news_0312 ul li:hover .art .line:after {
  width: 100%;
  background: #2531ae;
}
.news_0312 ul li:hover .art span {
  color: #2531ae;
}
.news_0312 ul li:hover .art span i {
  background: url(../image/jt2_0312.png) no-repeat center;
}
.news_0312 ul li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 63%;
  position: relative;
  overflow: hidden;
}
.news_0312 ul li .imgbox img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.news_0312 ul li .art {
  padding-top: 1.3vw;
}
.news_0312 ul li .art .time {
  font-size: 16px;
  color: #aaaaaa;
  font-family: 'Arial';
}
.news_0312 ul li .art h3 {
  font-size: 22px;
  color: #22262c;
  font-weight: 500;
  margin: 0.94vw 0 2.08vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 2048px) {
  .news_0312 ul li .art h3 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .news_0312 ul li .art h3 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .news_0312 ul li .art h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .news_0312 ul li .art h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .news_0312 ul li .art h3 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .news_0312 ul li .art h3 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .news_0312 ul li .art h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .news_0312 ul li .art h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .news_0312 ul li .art h3 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .news_0312 ul li .art h3 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .news_0312 ul li .art h3 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .news_0312 ul li .art h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .news_0312 ul li .art h3 {
    font-size: 16px;
  }
}
.news_0312 ul li .art .line {
  width: 100%;
  height: 2px;
  margin-bottom: 1.3vw;
  position: relative;
}
.news_0312 ul li .art .line:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  background: #eaeaea;
}
.news_0312 ul li .art .line:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  background: #eaeaea;
}
.news_0312 ul li .art span {
  font-size: 16px;
  color: #aaaaaa;
  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;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.news_0312 ul li .art span i {
  width: 16px;
  height: 11px;
  display: block;
  background: url(../image/jt_0312.png) no-repeat center;
  margin-left: 10px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1024px) {
  .news_0312 ul li .art span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .news_0312 {
    padding: 40px 0;
  }
  .news_0312 ul {
    margin-top: 20px;
  }
  .news_0312 ul li {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
  }
  .news_0312 ul li .art {
    padding-top: 10px;
  }
  .news_0312 ul li .art .line {
    margin-bottom: 10px;
  }
  .news_0312 ul li .art h3 {
    font-size: 16px;
    margin: 10px 0;
  }
}
.news_date_0312 {
  padding: 3.13vw 0 9.9vw;
}
.news_date_0312 .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;
}
.news_date_0312 .w1600 .left {
  width: 68.625%;
}
.news_date_0312 .w1600 .left h2.h2 {
  font-size: 30px;
  line-height: 1.13;
  color: #222222;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 21.34375px;
  }
}
.news_date_0312 .w1600 .left .other {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 1.82vw 0 0;
}
.news_date_0312 .w1600 .left .other p {
  margin-right: 2.6vw;
  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;
  font-size: 15px;
  color: #999999;
  margin-bottom: 1.82vw;
}
.news_date_0312 .w1600 .left .other p img {
  margin-right: 13px;
}
.news_date_0312 .w1600 .left .line {
  width: 100%;
  height: 1px;
  background: #f0f0f0;
  margin-bottom: 2.6vw;
}
.news_date_0312 .w1600 .left .art {
  font-size: 15px;
  line-height: 34px;
}
.news_date_0312 .w1600 .left .art p {
  margin-bottom: 1.56vw;
}
.news_date_0312 .w1600 .left .art p:last-child {
  margin-bottom: 0;
}
.news_date_0312 .w1600 .left .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;
  margin-top: 4.17vw;
}
.news_date_0312 .w1600 .left .sxy a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #f4f4f4;
  width: 43%;
  height: 3.65vw;
  min-height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 17px;
  color: #333333;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.news_date_0312 .w1600 .left .sxy a:hover {
  background: #2531ae;
  color: #fff;
}
.news_date_0312 .w1600 .left .sxy a:hover.a1 i,
.news_date_0312 .w1600 .left .sxy a:hover.a3 i {
  background: url(../image/jt3_0312.png) no-repeat center;
}
.news_date_0312 .w1600 .left .sxy a:hover.a2 i {
  background: url(../image/fh2_0312.png) no-repeat center;
  background-size: 100%;
}
.news_date_0312 .w1600 .left .sxy a.a1 i,
.news_date_0312 .w1600 .left .sxy a.a3 i {
  display: block;
  width: 3.75vw;
  height: 51%;
  background: url(../image/jt4_0312.png) no-repeat center;
  border-right: 1px solid #e7e7e7;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.news_date_0312 .w1600 .left .sxy a.a1 span,
.news_date_0312 .w1600 .left .sxy a.a3 span {
  width: calc(100% - 4vw);
  padding: 0 0.78vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_date_0312 .w1600 .left .sxy a.a2 {
  width: 10%;
  -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;
}
.news_date_0312 .w1600 .left .sxy a.a2 i {
  width: 1.09vw;
  min-width: 16px;
  margin-top: 0.26vw;
  height: 50%;
  background: url(../image/fh_0312.png) no-repeat center;
  background-size: 100%;
  margin-right: 0.52vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.news_date_0312 .w1600 .left .sxy a.a3 i {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  margin-right: 0;
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.news_date_0312 .w1600 .left .sxy a.a3 span {
  text-align: right;
  margin-right: 0.78vw;
}
.news_date_0312 .w1600 .right {
  width: 25%;
  position: sticky;
  top: 100px;
}
.news_date_0312 .w1600 .right h3 {
  font-size: 22px;
  color: #333333;
  font-weight: 600;
}
@media (max-width: 2048px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .news_date_0312 .w1600 .right h3 {
    font-size: 16px;
  }
}
.news_date_0312 .w1600 .right ul {
  margin-top: 1.56vw;
  padding: 1.3vw 3.65vw 0 1.3vw;
  background: #f9f9f9;
}
.news_date_0312 .w1600 .right ul li {
  padding-bottom: 1.04vw;
  margin-bottom: 1.04vw;
  border-bottom: 1px solid #e9e9e9;
}
.news_date_0312 .w1600 .right ul li:last-child {
  border-bottom: none;
}
.news_date_0312 .w1600 .right ul li:hover h4 {
  color: #2531ae;
}
.news_date_0312 .w1600 .right ul li h4 {
  font-size: 17px;
  color: #444444;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.news_date_0312 .w1600 .right ul li .time {
  margin: 12px 0;
  font-size: 14px;
  color: #666666;
}
.news_date_0312 .w1600 .right ul li p {
  font-size: 14px;
  line-height: 25px;
  color: #999999;
}
@media (max-width: 1680px) {
  .news_date_0312 .w1600 .right ul {
    padding-right: 1.3vw;
  }
}
@media (max-width: 1440px) {
  .news_date_0312 .w1600 .left .art {
    line-height: 30px;
  }
  .news_date_0312 .w1600 .left .sxy a {
    font-size: 16px;
  }
  .news_date_0312 .w1600 .right ul li h4 {
    font-size: 16px;
  }
  .news_date_0312 .w1600 .left .other p {
    font-size: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 1024px) {
  .news_date_0312 .w1600 .left {
    width: 72%;
  }
  .news_date_0312 .w1600 .left .art {
    font-size: 14px;
    line-height: 24px;
  }
  .news_date_0312 .w1600 .left .sxy a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .news_date_0312 {
    padding: 30px 0 40px;
  }
  .news_date_0312 .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news_date_0312 .w1600 .left {
    width: 100%;
  }
  .news_date_0312 .w1600 .left h2.h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .news_date_0312 .w1600 .left .other {
    margin: 15px 0;
  }
  .news_date_0312 .w1600 .left .other p {
    margin-bottom: 12px;
  }
  .news_date_0312 .w1600 .left .art p {
    margin-bottom: 15px;
  }
  .news_date_0312 .w1600 .left .line {
    margin-bottom: 20px;
  }
  .news_date_0312 .w1600 .left .sxy {
    margin-bottom: 30px;
  }
  .news_date_0312 .w1600 .left .sxy a.a2 {
    width: 100px;
  }
  .news_date_0312 .w1600 .left .sxy a.a2 i {
    margin-right: 5px;
  }
  .news_date_0312 .w1600 .left .sxy a.a1,
  .news_date_0312 .w1600 .left .sxy a.a3 {
    width: calc(50% - 60px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .news_date_0312 .w1600 .left .sxy a.a1 i,
  .news_date_0312 .w1600 .left .sxy a.a3 i {
    width: 20px;
    border: none;
    background-size: 15px auto;
    margin: 0 3px;
  }
  .news_date_0312 .w1600 .left .sxy a.a1 span,
  .news_date_0312 .w1600 .left .sxy a.a3 span {
    width: auto;
    margin: 0 3px;
  }
  .news_date_0312 .w1600 .right {
    width: 100%;
    margin-top: 10px;
  }
  .news_date_0312 .w1600 .right ul {
    padding: 22px 15px;
    margin-top: 15px;
  }
  .news_date_0312 .w1600 .right ul li {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .news_date_0312 .w1600 .right ul li:last-child {
    display: none;
  }
  .news_date_0312 .w1600 .right ul li h4 {
    margin-bottom: 10px;
  }
  .news_date_0312 .w1600 .right ul li .time {
    margin-bottom: 5px;
    display: none;
  }
  .news_date_0312 .w1600 .right ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.contact1_0312 {
  padding: 4.17vw 0;
}
.contact1_0312 .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;
  box-shadow: 0px 0px 50px 0px rgba(65, 65, 65, 0.1);
  padding: 3.39vw 4.48vw 2.08vw 3.23vw;
  position: relative;
}
.contact1_0312 .con:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 38.4%;
  background: #e7e7e7;
}
.contact1_0312 .con h3 {
  font-size: 30px;
  color: #22262c;
  font-weight: bold;
}
@media (max-width: 2048px) {
  .contact1_0312 .con h3 {
    font-size: 32px;
  }
}
@media (max-width: 1920px) {
  .contact1_0312 .con h3 {
    font-size: 30px;
  }
}
@media (max-width: 1680px) {
  .contact1_0312 .con h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1440px) {
  .contact1_0312 .con h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1280px) {
  .contact1_0312 .con h3 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .contact1_0312 .con h3 {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .contact1_0312 .con h3 {
    font-size: 26.25px;
  }
}
@media (max-width: 1280px) {
  .contact1_0312 .con h3 {
    font-size: 22.5px;
  }
}
@media (max-width: 1024px) {
  .contact1_0312 .con h3 {
    font-size: 21.34375px;
  }
}
.contact1_0312 .con .info {
  font-size: 16px;
  color: #333333;
  line-height: 35px;
  margin: 1.3vw 0 1.56vw;
}
@media (max-width: 2048px) {
  .contact1_0312 .con .info {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .contact1_0312 .con .info {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .contact1_0312 .con .info {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .contact1_0312 .con .info {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .contact1_0312 .con .info {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .contact1_0312 .con .info {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .contact1_0312 .con .info {
    font-size: 14px;
    line-height: 22px;
  }
}
.contact1_0312 .con a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 8.33vw;
  height: 2.6vw;
  min-width: 120px;
  min-height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  color: #2531ae;
  font-size: 16px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  border: 1px solid #2531ae;
  position: relative;
}
@media (max-width: 2048px) {
  .contact1_0312 .con a {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .contact1_0312 .con a {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .contact1_0312 .con a {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .contact1_0312 .con a {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .contact1_0312 .con a {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .contact1_0312 .con a {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .contact1_0312 .con a {
    font-size: 14px;
    line-height: 22px;
  }
}
.contact1_0312 .con a:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.contact1_0312 .con a:hover:before {
  width: 100%;
  background: #2531ae;
}
.contact1_0312 .con a:hover i,
.contact1_0312 .con a:hover span {
  color: #fff;
}
.contact1_0312 .con a i {
  margin-right: 15px;
}
.contact1_0312 .con a i,
.contact1_0312 .con a span {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.contact1_0312 .con .items {
  margin-top: 2.86vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.contact1_0312 .con .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 1.56vw;
}
.contact1_0312 .con .items .item img {
  width: 6.46vw;
  height: 6.46vw;
  min-width: 100px;
  min-height: 100px;
}
.contact1_0312 .con .items .item p {
  margin-top: 0.52vw;
  font-size: 15px;
  color: #444444;
}
.contact1_0312 .con .form {
  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;
  margin-top: 1.82vw;
}
.contact1_0312 .con .form input {
  width: 49.3%;
  height: 2.81vw;
  min-height: 40px;
  background: #f5f5f5;
  margin-bottom: 0.78vw;
  padding: 0 1.04vw;
  font-size: 15px;
}
.contact1_0312 .con .form input::placeholder {
  font-size: 15px;
}
.contact1_0312 .con .form textarea {
  width: 100%;
  background: #f5f5f5;
  padding: 1.04vw;
  height: 6.77vw;
  min-height: 90px;
  margin-bottom: 1.15vw;
}
.contact1_0312 .con .form .btn_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 8.33vw;
  height: 2.6vw;
  min-width: 120px;
  min-height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  color: #2531ae;
  font-size: 16px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
  border: 1px solid #2531ae;
}
@media (max-width: 2048px) {
  .contact1_0312 .con .form .btn_a {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .contact1_0312 .con .form .btn_a {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .contact1_0312 .con .form .btn_a {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .contact1_0312 .con .form .btn_a {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .contact1_0312 .con .form .btn_a {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .contact1_0312 .con .form .btn_a {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .contact1_0312 .con .form .btn_a {
    font-size: 14px;
    line-height: 22px;
  }
}
.contact1_0312 .con .form .btn_a:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.contact1_0312 .con .form .btn_a span {
  position: relative;
  z-index: 1;
}
.contact1_0312 .con .form .btn_a:hover:before {
  width: 100%;
  background: #2531ae;
}
.contact1_0312 .con .form .btn_a:hover span {
  color: #fff;
}
.contact1_0312 .con .left {
  width: 37.6%;
}
.contact1_0312 .con .right {
  width: 57%;
}
@media (max-width: 1440px) {
  .contact1_0312 .con .items .item p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .contact1_0312 {
    padding: 40px 0 20px;
  }
  .contact1_0312 .con {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 22px 15px;
  }
  .contact1_0312 .con:before {
    display: none;
  }
  .contact1_0312 .con .left {
    width: 100%;
    margin-bottom: 25px;
  }
  .contact1_0312 .con a {
    margin: 15px 0;
    color: #fff;
  }
  .contact1_0312 .con a:before {
    width: 100%;
    background: #2531ae;
  }
  .contact1_0312 .con .info {
    margin: 10px 0;
  }
  .contact1_0312 .con .items {
    margin-top: 15px;
  }
  .contact1_0312 .con .items .item {
    width: 124px;
    margin-right: 15px;
  }
  .contact1_0312 .con .items .item img {
    width: 124px;
    height: 124px;
    margin-bottom: 10px;
  }
  .contact1_0312 .con .right {
    width: 100%;
  }
  .contact1_0312 .con .form {
    margin-top: 15px;
  }
  .contact1_0312 .con .form input {
    margin-bottom: 10px;
    padding: 0 15px;
    width: calc(50% - 5px);
  }
  .contact1_0312 .con .form input::placeholder {
    font-size: 14px;
  }
  .contact1_0312 .con .form textarea {
    margin-bottom: 15px;
    padding: 10px 15px;
  }
  .contact1_0312 .con .form textarea::placeholder {
    font-size: 14px;
  }
  .contact1_0312 .con .form .btn_a {
    margin: 0;
    background: #2531ae;
    color: #fff;
  }
}
.contact2_0312 h2 {
  font-size: 48px;
  text-align: center;
  font-weight: bold;
  color: #22262c;
}
@media (max-width: 2048px) {
  .contact2_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .contact2_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .contact2_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .contact2_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 h2 {
    font-size: 24px;
  }
}
.contact2_0312 .taba {
  padding: 4.17vw 0 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;
  position: relative;
  margin-bottom: 1.56vw;
}
.contact2_0312 .taba:before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #e9e9e9;
}
.contact2_0312 .taba a {
  font-size: 22px;
  color: #777777;
  padding-bottom: 1.46vw;
  position: relative;
  margin: 0 4.69vw;
  font-weight: 600;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 2048px) {
  .contact2_0312 .taba a {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .contact2_0312 .taba a {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 .taba a {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 .taba a {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .contact2_0312 .taba a {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 .taba a {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 .taba a {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .contact2_0312 .taba a {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 .taba a {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 .taba a {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 .taba a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 .taba a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contact2_0312 .taba a {
    font-size: 16px;
  }
}
.contact2_0312 .taba a.on {
  color: #2531ae;
}
.contact2_0312 .taba a.on:before {
  width: 100%;
  background: #2531ae;
}
.contact2_0312 .taba a:before {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: transparent;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.contact2_0312 .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;
}
.contact2_0312 .w1600 .left {
  width: 53.125%;
}
.contact2_0312 .w1600 .left .img {
  position: relative;
}
.contact2_0312 .w1600 .left .img ul li {
  position: absolute;
  width: 1px;
  height: 1px;
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently not supported by any browser */
}
.contact2_0312 .w1600 .left .img ul li.on .d {
  transform: translate(-50%, -50%) scale(1.5);
}
.contact2_0312 .w1600 .left .img ul li.on .d:before {
  width: 30px;
  height: 30px;
  -webkit-animation: fang1 2s linear infinite;
  animation: fang1 2s linear infinite;
}
.contact2_0312 .w1600 .left .img ul li .d {
  width: 6.3px;
  height: 6.3px;
  border-radius: 50%;
  background: #2531ae;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently not supported by any browser */
}
.contact2_0312 .w1600 .left .img ul li .d:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #2531ae;
  opacity: 0.3;
  transform-origin: center;
  animation-delay: 0.05s;
  border-radius: 50%;
}
.contact2_0312 .w1600 .left .img ul li p {
  white-space: nowrap;
  position: absolute;
}
.contact2_0312 .w1600 .left .img ul li:first-child p {
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.contact2_0312 .w1600 .left .img ul li:nth-child(2) p {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.contact2_0312 .w1600 .left .img ul li:nth-child(3) p,
.contact2_0312 .w1600 .left .img ul li:nth-child(4) p {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.contact2_0312 .w1600 .right {
  width: 40.625%;
  height: auto;
  box-shadow: 0px 0px 50px 0px rgba(65, 65, 65, 0.1);
  padding: 2.08vw;
}
.contact2_0312 .w1600 .right .swiper {
  overflow: hidden;
}
.contact2_0312 .w1600 .right h3 {
  font-size: 22px;
  color: #2531ae;
  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;
  font-weight: 600;
}
@media (max-width: 2048px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 23.46666667px;
  }
}
@media (max-width: 1920px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 19.25px;
  }
}
@media (max-width: 1280px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 15.65208333px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contact2_0312 .w1600 .right h3 {
    font-size: 16px;
  }
}
.contact2_0312 .w1600 .right h3 img {
  margin-right: 0.78vw;
  height: 1.51vw;
  min-height: 20px;
}
.contact2_0312 .w1600 .right .line {
  width: 100%;
  height: 1px;
  background: #ebebeb;
  margin: 1.56vw 0 1.3vw;
}
.contact2_0312 .w1600 .right .info {
  font-size: 16px;
  line-height: 34px;
  color: #333333;
}
@media (max-width: 2048px) {
  .contact2_0312 .w1600 .right .info {
    font-size: 17.06666667px;
  }
}
@media (max-width: 1920px) {
  .contact2_0312 .w1600 .right .info {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 .w1600 .right .info {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .contact2_0312 .w1600 .right .info {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .contact2_0312 .w1600 .right .info {
    font-size: 10.66666667px;
  }
}
@media (max-width: 1024px) {
  .contact2_0312 .w1600 .right .info {
    font-size: 8.53333333px;
  }
}
@media (max-width: 1680px) {
  .contact2_0312 .w1600 .right .info {
    font-size: 14px;
    line-height: 22px;
  }
}
.contact2_0312 .w1600 .right .info div {
  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;
}
.contact2_0312 .w1600 .right .info div span {
  white-space: nowrap;
}
.contact2_0312 .w1600 .right .info div .p2 {
  width: 100%;
}
@media (max-width: 768px) {
  .contact2_0312 {
    padding: 20px 0 40px;
  }
  .contact2_0312 .taba {
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .contact2_0312 .taba a {
    margin: 0 10px;
    font-size: 14px;
    padding-bottom: 15px;
  }
  .contact2_0312 .w1600 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .contact2_0312 .w1600 .left {
    width: 100%;
  }
  .contact2_0312 .w1600 .left .img {
    display: none;
  }
  .contact2_0312 .w1600 .right {
    width: 100%;
    padding: 15px;
  }
  .contact2_0312 .w1600 .right .line {
    margin: 10px 0;
  }
  .contact2_0312 .w1600 .right .info div,
  .contact2_0312 .w1600 .right .info p,
  .contact2_0312 .w1600 .right .info span {
    font-size: 14px;
  }
}
.join_0312 {
  padding: 4.17vw 0 2.86vw;
  background: #f0f0f0;
}
.join_0312 h2 {
  font-size: 48px;
  color: #22262c;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 2048px) {
  .join_0312 h2 {
    font-size: 51.2px;
  }
}
@media (max-width: 1920px) {
  .join_0312 h2 {
    font-size: 48px;
  }
}
@media (max-width: 1680px) {
  .join_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .join_0312 h2 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .join_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .join_0312 h2 {
    font-size: 25.6px;
  }
}
@media (max-width: 1680px) {
  .join_0312 h2 {
    font-size: 42px;
  }
}
@media (max-width: 1440px) {
  .join_0312 h2 {
    font-size: 32px;
  }
}
@media (max-width: 1290px) {
  .join_0312 h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .join_0312 h2 {
    font-size: 24px;
  }
}
.join_0312 .ul {
  margin-top: 3.13vw;
}
.join_0312 .ul li {
  border-top: 1px solid #a3a3a3;
}
.join_0312 .ul 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 0;
  position: relative;
  overflow: hidden;
}
.join_0312 .ul li > a .xx {
  width: 22px;
  height: 12px;
  position: absolute;
  right: 2%;
  top: 50%;
  margin-top: -6px;
  background: url('404.png') no-repeat center;
}
.join_0312 .ul li > a h2.h2 {
  width: 20%;
  font-size: 24px;
  color: #242424;
  text-align: left;
}
.join_0312 .ul li > a .right {
  width: 75%;
}
.join_0312 .ul li > a .right span {
  font-size: 16px;
  padding-left: 30px;
  margin-right: 10%;
  color: #666666;
}
.join_0312 .ul li > a .right span:last-child {
  margin-right: 0;
}
.join_0312 .ul li > a .right span.s1 {
  background: url(404.png) no-repeat left center;
}
.join_0312 .ul li > a .right span.s2 {
  background: url(404.png) no-repeat left center;
}
.join_0312 .ul li > a .right span.s3 {
  background: url(404.png) no-repeat left center;
}
.join_0312 .ul li.on {
  border: none;
}
.join_0312 .ul li.on > a {
  padding: 0;
  height: 0;
}
.join_0312 .ul li.on .box {
  height: auto;
  max-height: 100vh;
}
.join_0312 .ul li.on .box h2.h2,
.join_0312 .ul li.on .box .right {
  padding-top: 35px;
}
.join_0312 .ul li .box {
  width: 100%;
  height: 0;
  max-height: 0;
  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;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.join_0312 .ul li .box .xs {
  width: 22px;
  height: 12px;
  position: absolute;
  right: 2%;
  top: 35px;
  background: url('404.png') no-repeat center;
  cursor: pointer;
}
.join_0312 .ul li .box h2.h2 {
  width: 20%;
  font-size: 24px;
  color: #242424;
  border-top: 5px solid #242424;
  text-align: left;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.join_0312 .ul li .box .right {
  width: 75%;
  border-top: 5px solid #242424;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  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;
}
.join_0312 .ul li .box .right > div {
  width: 35%;
  font-size: 16px;
  line-height: 36px;
  color: #646260;
}
.join_0312 .ul li .box .right > div.zwms {
  margin-right: 15%;
}
.join_0312 .ul li .box .right > div .h3 {
  font-size: 20px;
  color: #242424;
  font-weight: bold;
  margin-bottom: 20px;
}
.join_0312 .ul li .box .right > div a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: #2531ae;
  padding: 8px 40px;
  margin: 30px 0 40px;
}
.join_0312 .more {
  width: 130px;
  margin: 35px auto 0;
  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;
  font-size: 16px;
  color: #1b1e1e;
}
.join_0312 .more:hover {
  color: #2531ae;
}
.join_0312 .more i {
  font-size: 14px;
}
@media (max-width: 440px) {
  .join_0312 .ul li > a {
    padding: 20px 0;
  }
  .join_0312 .ul li > a h2.h2 {
    font-size: 20px;
  }
  .join_0312 .ul li .box h2.h2 {
    font-size: 20px;
  }
  .join_0312 .ul li .box .right > div .h3 {
    font-size: 18px;
  }
  .join_0312 .ul li .box .right > div {
    font-size: 14px;
    line-height: 24px;
  }
  .join_0312 .ul li .box .right > div a {
    font-size: 16px;
    padding: 8px 20px;
    margin: 20px 0 25px;
  }
  .join_0312 .ul li .box.on h2.h2,
  .join_0312 .ul li .box.on .right {
    padding-top: 25px;
  }
  .join_0312 .more {
    margin-top: 25px;
  }
}
@media (max-width: 990px) {
  .join_0312 {
    padding: 40px 0;
  }
  .join_0312 .info {
    margin: 20px 0;
    font-size: 14px;
  }
  .join_0312 .ul li > a {
    padding: 15px 0;
  }
  .join_0312 .ul li > a h2.h2 {
    font-size: 18px;
  }
  .join_0312 .ul li .box h2.h2 {
    font-size: 18px;
  }
  .join_0312 .ul li > a .right span {
    font-size: 14px;
    margin-right: 5%;
  }
  .join_0312 .ul li .box .right > div .h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .join_0312 .ul li .box .right > div {
    font-size: 14px;
    line-height: 24px;
  }
  .join_0312 .ul li .box .right > div a {
    font-size: 16px;
    padding: 8px 20px;
    margin: 20px 0 25px;
  }
  .join_0312 .ul li .box.on h2.h2,
  .join_0312 .ul li .box.on .right {
    padding-top: 25px;
  }
  .join_0312 .more {
    margin-top: 20px;
    font-size: 16px;
    width: 120px;
  }
}
@media (max-width: 768px) {
  .join_0312 .ul {
    margin-top: 20px;
  }
  .join_0312 .ul li > a h2.h2 {
    width: 100%;
    font-size: 16px;
    text-align: left;
  }
  .join_0312 .ul li > a .right {
    display: none;
  }
  .join_0312 .ul li .box h2.h2 {
    display: none;
  }
  .join_0312 .ul li .box .right {
    width: 100%;
  }
  .join_0312 .ul li .box .right {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding-bottom: 70px;
  }
  .join_0312 .ul li .box .right > div a {
    position: absolute;
    left: 0;
    bottom: 20px;
    margin: 0;
  }
  .join_0312 .ul li .box .right > div {
    width: 100%;
  }
  .join_0312 .ul li .box .right > div.zwms {
    margin-right: 0%;
    margin-bottom: 15px;
  }
  .join_0312 .ul li .box .xs,
  .join_0312 .ul li > a .xx {
    width: 18px;
  }
  .join_0312 .ul li .box .xs {
    top: 30px;
  }
}
.fenye {
  text-align: center;
}
.pages {
  margin-top: 2.08vw;
}
.pages .layui-box {
  text-align: center;
}
.pages .layui-laypage-next,
.pages .layui-laypage-prev {
  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;
}
.pages .layui-laypage-next:hover,
.pages .layui-laypage-prev:hover {
  text-decoration: none!important;
  color: #2531ae !important;
}
.pages .layui-laypage-next:hover i,
.pages .layui-laypage-prev:hover i {
  background: #2531ae !important;
}
.pages .layui-laypage-next i,
.pages .layui-laypage-prev i {
  display: inline-block;
  width: 20px!important;
  height: 20px!important;
  line-height: 20px!important;
  border-radius: 50%!important;
  background: #cccccc !important;
  color: #fff !important;
}
.pages .layui-laypage-prev i {
  margin-left: 1.04vw !important;
}
.pages .layui-laypage-next i {
  margin-right: 1.04vw !important;
}
.pages a,
.pages em {
  color: #cccccc !important;
  text-align: center!important;
  margin: 0 14px!important;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  display: inline-block !important;
}
.pages a.on,
.pages a:hover,
.pages em {
  color: #2531ae !important;
  text-decoration: underline!important;
}
.layui-laypage-curr .layui-laypage-em {
  display: none!important;
}
.layui-laypage a,
.layui-laypage button,
.layui-laypage input,
.layui-laypage select,
.layui-laypage span {
  border: none!important;
}
@media (max-width: 768px) {
  .pages a,
  .pages em {
    margin: 0 5px !important;
  }
}
.ft_win {
  padding: 2.08vw 0;
  background: #fff;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  width: 50px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  border: 1px solid #e2e2e2;
  border-right: 0;
  display: none!important;
}
@media (min-width: 2048px) {
  .ft_win {
    width: 65px;
  }
}
.ft_win li {
  width: 100%;
  height: 2.86vw;
  min-height: 40px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ft_win li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 2048px) {
  .ft_win li a .hh_img,
  .ft_win li a .hh_img_a {
    width: 30px;
  }
}
.ft_win li .hh_img_a {
  display: none;
}
.ft_win li .hh_tel {
  position: absolute;
  right: 45px;
  border-radius: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #fff;
  height: 55px;
  align-items: center;
  padding-right: 1.56vw;
  padding-left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #e2e2e2;
  display: none;
}
@media (min-width: 2048px) {
  .ft_win li .hh_tel {
    right: 70px;
  }
}
.ft_win li .hh_tel .hh_i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -7px;
}
.ft_win li .hh_tel div {
  width: 40px;
  height: 40px;
  border-radius: 1000px;
  background: #2531ae;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #d2d5e2;
  margin-right: 18px;
}
.ft_win li .hh_tel p {
  white-space: nowrap;
  color: #2531ae;
  font-family: 'hmos_m';
}
@media (min-width: 2048px) and (max-width: 2560px) {
  .ft_win li .hh_tel p {
    font-size: 29.33333333px;
  }
}
@media (max-width: 1920px) {
  .ft_win li .hh_tel p {
    font-size: 22px;
  }
}
@media (max-width: 1680px) {
  .ft_win li .hh_tel p {
    font-size: 19.25px;
  }
}
@media (max-width: 1440px) {
  .ft_win li .hh_tel p {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .ft_win li .hh_tel p {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .ft_win li .hh_tel p {
    font-size: 11.73333333px;
  }
}
@media (max-width: 1680px) {
  .ft_win li .hh_tel p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .ft_win li .hh_tel p {
    font-size: 16px;
  }
}
@media (max-width: 1366px) {
  .ft_win li .hh_tel p {
    font-size: 16px;
  }
}
@media (min-width: 1259px) and (max-width: 1290px) {
  .ft_win li .hh_tel p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .ft_win li .hh_tel p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ft_win li .hh_tel p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .ft_win li .hh_tel p {
    font-size: 16.5px;
  }
}
@media (max-width: 1280px) {
  .ft_win li .hh_tel p {
    font-size: 14.66666667px;
  }
}
@media (max-width: 1024px) {
  .ft_win li .hh_tel p {
    font-size: 11.73333333px;
  }
}
@media (min-width: 2500px) {
  .ft_win li .hh_tel p {
    font-size: 22px;
  }
}
.ft_win li .hh_wx {
  position: absolute;
  right: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #fff;
  height: 55px;
  align-items: center;
  width: 6.25vw;
  height: 6.25vw;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #e2e2e2;
  display: none;
  border-radius: 5px;
}
@media (min-width: 2048px) {
  .ft_win li .hh_wx {
    right: 75px;
  }
}
.ft_win li .hh_wx div {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft_win li .hh_wx div img {
  border-radius: 5px;
  width: 100%;
}
.ft_win li .hh_wx .hh_i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -7px;
}
.ft_win li:hover .hh_tel,
.ft_win li:hover .hh_wx {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft_win li:hover .hh_img {
  display: none;
}
.ft_win li:hover .hh_img_a {
  display: block;
}
.ft_win li:nth-of-type(1) {
  margin-top: 0;
}
/*# sourceMappingURL=./css.css.map */
.mark2 {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  display: none;
}
.mark2.on {
  display: block;
}
.videobox {
  position: fixed;
  width: 1400px;
  max-width: calc(100% - 100px);
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
}
.videobox video {
  width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: fill;
}
.videobox .close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: 9;
  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;
  font-size: 30px;
  color: #000;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.videobox .close:hover {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  background: #2531ae;
  color: #fff;
}
@media (max-width: 768px) {
  .videobox {
    width: 100%;
    max-width: 100%;
  }
  .videobox .close {
    right: 0;
    top: -40px;
  }
}
