@charset "utf-8";
@font-face {
  font-family: "bebas";
  src: url('../fonts/Bebas_W00_Regular.ttf');
}
/*全局初始化样式 --*/
body {
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #333;
  min-width: 320px;
  width: 100%;
  zoom: 1;
  background: #fff;
  font-family: 'Microsoft YaHei';
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*控制文本可选性*/
  /*设置字体的抗锯齿或者说光滑度*/
  -webkit-font-smoothing: antialiased;
}
* {
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
table {
  background-color: transparent;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 0.75em;
  width: 100%;
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
  box-sizing: border-box;
}
table th {
  background-color: #f9f9f9;
  text-align: center;
  box-sizing: border-box;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
/*html5设置*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
html,
body,
div,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
p {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  outline: none;
  color: #333;
  cursor: pointer;
}
a:focus {
  outline: none;
  -moz-outline: none;
}
a:hover {
  color: #d71729;
}
a img {
  border: none;
}
/*强制去除表单自带的样式*/
select,
input,
textarea {
  border-radius: 0;
  -webkit-border-radius: 0;
}
input:focus {
  outline: none;
}
input,
button,
select,
textarea {
  outline: none;
  /*-webkit-appearance:none;*/
}
textarea {
  resize: none;
  /*-webkit-appearance:none;*/
}
textarea,
input,
select {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
/*清楚浮动*/
.clear {
  clear: both;
  overflow: hidden;
}
/*该设置跟后台编辑器有关*/
.ul,
.ul li,
.dl,
.dl dd,
ul,
ul li,
ol,
ol li,
dl,
dl dd {
  list-style: none;
  margin: 0;
  padding: 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px;
  font-weight: normal;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.fleximportant {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
}
.inlineflex {
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
}
.d_flex > * {
  display: block;
}
/*伸缩流方向*/
.f_direction_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_direction_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/*主轴对齐*/
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/*侧轴对齐*/
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
/*伸缩性*/
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/*显示顺序*/
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/*单行溢出*/
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.text3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.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);
}
.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);
}
.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: #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 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@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;
  }
}


.clearFix::after {
  content: " ";
  display: block;
  clear: both;
}
.clearFix {
  zoom: 1;
}
.mybanner .sonlinkmenu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  z-index: 2;
}
.mybanner {
  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;
}
.mybanner .art {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mybanner .art .wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.mybanner .art .wrap .left {
  width: 46.25%;
}
.mybanner .art .wrap .right {
  width: 50%;
}
.mybanner .art .wrap .right .title {
  padding-left: 3.9vw;
  width: 648px;
  max-width: 100%;
  color: #fff;
  font-weight: bold;
  position: relative;
  font-family: "bebas";
}
@media (max-width: 1920px) {
  .mybanner .art .wrap .right .title {
    font-size: 50px;
  }
}
@media (max-width: 1776px) {
  .mybanner .art .wrap .right .title {
    font-size: 45.30612245px;
  }
}
@media (max-width: 1680px) {
  .mybanner .art .wrap .right .title {
    font-size: 42.85714286px;
  }
}
@media (max-width: 1600px) {
  .mybanner .art .wrap .right .title {
    font-size: 40.81632653px;
  }
}
@media (max-width: 1500px) {
  .mybanner .art .wrap .right .title {
    font-size: 38.26530612px;
  }
}
@media (max-width: 1440px) {
  .mybanner .art .wrap .right .title {
    font-size: 36.73469388px;
  }
}
@media (max-width: 1366px) {
  .mybanner .art .wrap .right .title {
    font-size: 34.84693878px;
  }
}
@media (max-width: 1280px) {
  .mybanner .art .wrap .right .title {
    font-size: 32.65306122px;
  }
}
@media (max-width: 1152px) {
  .mybanner .art .wrap .right .title {
    font-size: 29.3877551px;
  }
}
@media (max-width: 1024px) {
  .mybanner .art .wrap .right .title {
    font-size: 26.12244898px;
  }
}
@media (max-width: 990px) {
  .mybanner .art .wrap .right .title {
    font-size: 25.25510204px;
  }
}
@media (max-width: 1920px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 70px;
  }
}
@media (max-width: 1776px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 63.42857143px;
  }
}
@media (max-width: 1680) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}
@media (max-width: 1600px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 57.14285714px;
  }
}
@media (max-width: 1500px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 53.57142857px;
  }
}
@media (max-width: 1440px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 51.42857143px;
  }
}
@media (max-width: 1366px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 48.78571429px;
  }
}
@media (max-width: 1280px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 45.71428571px;
  }
}
@media (max-width: 1152px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 41.14285714px;
  }
}
@media (max-width: 1024px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 36.57142857px;
  }
}
@media (max-width: 990px) {
  .mybanner .art .wrap .right .title {
    padding-top: 0px;
    padding-bottom: 35.35714286px;
  }
}
@media (max-width: 1920px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 85px;
  }
}
@media (max-width: 1776px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 77.02040816px;
  }
}
@media (max-width: 1680) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 72.85714286px;
  }
}
@media (max-width: 1600px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 69.3877551px;
  }
}
@media (max-width: 1500px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 65.05102041px;
  }
}
@media (max-width: 1440px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 62.44897959px;
  }
}
@media (max-width: 1366px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 59.23979592px;
  }
}
@media (max-width: 1280px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 55.51020408px;
  }
}
@media (max-width: 1152px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 49.95918367px;
  }
}
@media (max-width: 1024px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 44.40816327px;
  }
}
@media (max-width: 990px) {
  .mybanner .art .wrap .right .title {
    margin-top: 0px;
    margin-bottom: 42.93367347px;
  }
}
.mybanner .art .wrap .right .title:before {
  content: '';
  position: absolute;
  width: 3.3vw;
  height: 5px;
  display: block;
  background-color: #fff;
  bottom: 0;
}
.ban_s1 {
  overflow: hidden;
}
.ban_s1 .swiper-slide {
  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;
}
.ban_s2 {
  overflow: hidden;
  border-top: 2px solid #c9d5e2;
  border-bottom: 2px solid #d7e0e8;
  padding: 0 50px;
  position: relative;
}
@media (max-width: 1920px) {
  .ban_s2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1776px) {
  .ban_s2 {
    padding-top: 27.18367347px;
    padding-bottom: 27.18367347px;
  }
}
@media (max-width: 1680) {
  .ban_s2 {
    padding-top: 25.71428571px;
    padding-bottom: 25.71428571px;
  }
}
@media (max-width: 1600px) {
  .ban_s2 {
    padding-top: 24.48979592px;
    padding-bottom: 24.48979592px;
  }
}
@media (max-width: 1500px) {
  .ban_s2 {
    padding-top: 22.95918367px;
    padding-bottom: 22.95918367px;
  }
}
@media (max-width: 1440px) {
  .ban_s2 {
    padding-top: 22.04081633px;
    padding-bottom: 22.04081633px;
  }
}
@media (max-width: 1366px) {
  .ban_s2 {
    padding-top: 20.90816327px;
    padding-bottom: 20.90816327px;
  }
}
@media (max-width: 1280px) {
  .ban_s2 {
    padding-top: 19.59183673px;
    padding-bottom: 19.59183673px;
  }
}
@media (max-width: 1152px) {
  .ban_s2 {
    padding-top: 17.63265306px;
    padding-bottom: 17.63265306px;
  }
}
@media (max-width: 1024px) {
  .ban_s2 {
    padding-top: 15.67346939px;
    padding-bottom: 15.67346939px;
  }
}
@media (max-width: 990px) {
  .ban_s2 {
    padding-top: 15.15306122px;
    padding-bottom: 15.15306122px;
  }
}
.ban_s2 .swiper-button-next,
.ban_s2 .swiper-button-prev {
  outline: none;
}
.ban_s2 .swiper-button-next:after,
.ban_s2 .swiper-button-prev:after {
  color: #fff;
}
@media (max-width: 1920px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 30px;
  }
}
@media (max-width: 1776px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 27.18367347px;
  }
}
@media (max-width: 1680px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 25.71428571px;
  }
}
@media (max-width: 1600px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 24.48979592px;
  }
}
@media (max-width: 1500px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 22.95918367px;
  }
}
@media (max-width: 1440px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 22.04081633px;
  }
}
@media (max-width: 1366px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 20.90816327px;
  }
}
@media (max-width: 1280px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 19.59183673px;
  }
}
@media (max-width: 1152px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 17.63265306px;
  }
}
@media (max-width: 1024px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 15.67346939px;
  }
}
@media (max-width: 990px) {
  .ban_s2 .swiper-button-next:after,
  .ban_s2 .swiper-button-prev:after {
    font-size: 15.15306122px;
  }
}
.ban_s2 .swiper {
  width: 100%;
  overflow: hidden;
}
.ban_s2 .swiper-slide.swiper-slide-active a {
  border-color: #ffc000;
}
.ban_s2 .swiper-slide a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  border: 2px solid #f1f4f8;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.ban_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;
  max-width: 80%;
}
@media (max-width: 768px) {
  .mybanner {
    height: auto;
  }
  .mybanner > img {
    display: none;
  }
  .mybanner .art {
    position: relative;
  }
  .mybanner .art .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .mybanner .art .wrap .left {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
  .mybanner .art .wrap .right {
    width: 100%;
  }
  .mybanner .art .wrap .right .title {
    padding-left: 0;
    font-size: 22px;
    padding-bottom: 0;
    margin-bottom: 15px;
  }
  .mybanner .art .wrap .right .title:before {
    display: none;
  }
  .ban_s2 {
    padding: 15px ;
    border-top: 1px solid #c9d5e2;
    border-bottom: 1px solid #d7e0e8;
  }
  .ban_s2 .swiper-slide a {
    border: 1px solid #f1f4f8;
  }
}
h2.myh2 {
  font-weight: bold;
  color: #1b2153;
}
@media (max-width: 1920px) {
  h2.myh2 {
    font-size: 50px;
  }
}
@media (max-width: 1776px) {
  h2.myh2 {
    font-size: 45.30612245px;
  }
}
@media (max-width: 1680px) {
  h2.myh2 {
    font-size: 42.85714286px;
  }
}
@media (max-width: 1600px) {
  h2.myh2 {
    font-size: 40.81632653px;
  }
}
@media (max-width: 1500px) {
  h2.myh2 {
    font-size: 38.26530612px;
  }
}
@media (max-width: 1440px) {
  h2.myh2 {
    font-size: 36.73469388px;
  }
}
@media (max-width: 1366px) {
  h2.myh2 {
    font-size: 34.84693878px;
  }
}
@media (max-width: 1280px) {
  h2.myh2 {
    font-size: 32.65306122px;
  }
}
@media (max-width: 1152px) {
  h2.myh2 {
    font-size: 29.3877551px;
  }
}
@media (max-width: 1024px) {
  h2.myh2 {
    font-size: 26.12244898px;
  }
}
@media (max-width: 990px) {
  h2.myh2 {
    font-size: 25.25510204px;
  }
}
@media (max-width: 1920px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 55px;
  }
}
@media (max-width: 1776px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 49.83673469px;
  }
}
@media (max-width: 1680) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 47.14285714px;
  }
}
@media (max-width: 1600px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 44.89795918px;
  }
}
@media (max-width: 1500px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 42.09183673px;
  }
}
@media (max-width: 1440px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 40.40816327px;
  }
}
@media (max-width: 1366px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 38.33163265px;
  }
}
@media (max-width: 1280px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 35.91836735px;
  }
}
@media (max-width: 1152px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 32.32653061px;
  }
}
@media (max-width: 1024px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 28.73469388px;
  }
}
@media (max-width: 990px) {
  h2.myh2 {
    margin-top: 0px;
    margin-bottom: 27.78061224px;
  }
}
.myinfo {
  color: #666;
}
@media (max-width: 1920px) {
  .myinfo {
    font-size: 24px;
  }
}
@media (max-width: 1776px) {
  .myinfo {
    font-size: 21.74693878px;
  }
}
@media (max-width: 1680px) {
  .myinfo {
    font-size: 20.57142857px;
  }
}
@media (max-width: 1600px) {
  .myinfo {
    font-size: 19.59183673px;
  }
}
@media (max-width: 1500px) {
  .myinfo {
    font-size: 18.36734694px;
  }
}
@media (max-width: 1440px) {
  .myinfo {
    font-size: 17.63265306px;
  }
}
@media (max-width: 1366px) {
  .myinfo {
    font-size: 16.72653061px;
  }
}
@media (max-width: 1280px) {
  .myinfo {
    font-size: 15.67346939px;
  }
}
@media (max-width: 1152px) {
  .myinfo {
    font-size: 14.10612245px;
  }
}
@media (max-width: 1024px) {
  .myinfo {
    font-size: 12.53877551px;
  }
}
@media (max-width: 990px) {
  .myinfo {
    font-size: 12.12244898px;
  }
}
@media (max-width: 1280px) {
  .myinfo {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  h2.myh2 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
  }
  .myinfo {
    text-align: center;
  }
}
.cpxq_1 {
  background-color: #f5f7f9;
  position: relative;
}
@media (max-width: 1920px) {
  .cpxq_1 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 1776px) {
  .cpxq_1 {
    padding-top: 81.55102041px;
    padding-bottom: 81.55102041px;
  }
}
@media (max-width: 1680) {
  .cpxq_1 {
    padding-top: 77.14285714px;
    padding-bottom: 77.14285714px;
  }
}
@media (max-width: 1600px) {
  .cpxq_1 {
    padding-top: 73.46938776px;
    padding-bottom: 73.46938776px;
  }
}
@media (max-width: 1500px) {
  .cpxq_1 {
    padding-top: 68.87755102px;
    padding-bottom: 68.87755102px;
  }
}
@media (max-width: 1440px) {
  .cpxq_1 {
    padding-top: 66.12244898px;
    padding-bottom: 66.12244898px;
  }
}
@media (max-width: 1366px) {
  .cpxq_1 {
    padding-top: 62.7244898px;
    padding-bottom: 62.7244898px;
  }
}
@media (max-width: 1280px) {
  .cpxq_1 {
    padding-top: 58.7755102px;
    padding-bottom: 58.7755102px;
  }
}
@media (max-width: 1152px) {
  .cpxq_1 {
    padding-top: 52.89795918px;
    padding-bottom: 52.89795918px;
  }
}
@media (max-width: 1024px) {
  .cpxq_1 {
    padding-top: 47.02040816px;
    padding-bottom: 47.02040816px;
  }
}
@media (max-width: 990px) {
  .cpxq_1 {
    padding-top: 45.45918367px;
    padding-bottom: 45.45918367px;
  }
}
.cpxq_1 .swiper-pagination {
  display: none;
}
.cpxq_1 .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1920px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 100px;
  }
}
@media (max-width: 1776px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 90.6122449px;
  }
}
@media (max-width: 1680) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 85.71428571px;
  }
}
@media (max-width: 1600px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 81.63265306px;
  }
}
@media (max-width: 1500px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 76.53061224px;
  }
}
@media (max-width: 1440px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 73.46938776px;
  }
}
@media (max-width: 1366px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 69.69387755px;
  }
}
@media (max-width: 1280px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 65.30612245px;
  }
}
@media (max-width: 1152px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 58.7755102px;
  }
}
@media (max-width: 1024px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 52.24489796px;
  }
}
@media (max-width: 990px) {
  .cpxq_1 .top {
    margin-top: 0px;
    margin-bottom: 50.51020408px;
  }
}
.cpxq_1 .top .left {
  width: calc(100% - 150px);
}
.cpxq_1 .top .right {
  width: 160px;
  height: 64px;
  position: relative;
  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;
}
.cpxq_1 .top .right .swiper-button-next,
.cpxq_1 .top .right .swiper-button-prev {
  width: 64px;
  height: 64px;
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  background: #fff;
  margin: 0;
  border-radius: 50%;
  outline: none;
  opacity: 1;
  margin-left: 1.5vw;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.cpxq_1 .top .right .swiper-button-next:hover,
.cpxq_1 .top .right .swiper-button-prev:hover {
  background: #ffc000;
}
.cpxq_1 .top .right .swiper-button-next:hover:after,
.cpxq_1 .top .right .swiper-button-prev:hover:after {
  color: #fff;
}
.cpxq_1 .top .right .swiper-button-next:after,
.cpxq_1 .top .right .swiper-button-prev:after {
  color: #1b2153;
  font-size: 20px;
  font-weight: bold;
}
.cpxq_1 .top .right .swiper-button-prev {
  margin-left: 0;
}
.cpxz_s {
  overflow: hidden;
}
.cpxz_s .swiper-slide p {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  color: #666;
}
@media (max-width: 1920px) {
  .cpxz_s .swiper-slide p {
    font-size: 24px;
  }
}
@media (max-width: 1776px) {
  .cpxz_s .swiper-slide p {
    font-size: 21.74693878px;
  }
}
@media (max-width: 1680px) {
  .cpxz_s .swiper-slide p {
    font-size: 20.57142857px;
  }
}
@media (max-width: 1600px) {
  .cpxz_s .swiper-slide p {
    font-size: 19.59183673px;
  }
}
@media (max-width: 1500px) {
  .cpxz_s .swiper-slide p {
    font-size: 18.36734694px;
  }
}
@media (max-width: 1440px) {
  .cpxz_s .swiper-slide p {
    font-size: 17.63265306px;
  }
}
@media (max-width: 1366px) {
  .cpxz_s .swiper-slide p {
    font-size: 16.72653061px;
  }
}
@media (max-width: 1280px) {
  .cpxz_s .swiper-slide p {
    font-size: 15.67346939px;
  }
}
@media (max-width: 1152px) {
  .cpxz_s .swiper-slide p {
    font-size: 14.10612245px;
  }
}
@media (max-width: 1024px) {
  .cpxz_s .swiper-slide p {
    font-size: 12.53877551px;
  }
}
@media (max-width: 990px) {
  .cpxz_s .swiper-slide p {
    font-size: 12.12244898px;
  }
}
@media (max-width: 1920px) {
  .cpxz_s .swiper-slide p {
    margin-top: 30px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1776px) {
  .cpxz_s .swiper-slide p {
    margin-top: 27.18367347px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1680) {
  .cpxz_s .swiper-slide p {
    margin-top: 25.71428571px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1600px) {
  .cpxz_s .swiper-slide p {
    margin-top: 24.48979592px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1500px) {
  .cpxz_s .swiper-slide p {
    margin-top: 22.95918367px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1440px) {
  .cpxz_s .swiper-slide p {
    margin-top: 22.04081633px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1366px) {
  .cpxz_s .swiper-slide p {
    margin-top: 20.90816327px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1280px) {
  .cpxz_s .swiper-slide p {
    margin-top: 19.59183673px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1152px) {
  .cpxz_s .swiper-slide p {
    margin-top: 17.63265306px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .cpxz_s .swiper-slide p {
    margin-top: 15.67346939px;
    margin-bottom: 0px;
  }
}
@media (max-width: 990px) {
  .cpxz_s .swiper-slide p {
    margin-top: 15.15306122px;
    margin-bottom: 0px;
  }
}
.cpxz_s .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 94.73%;
  position: relative;
  overflow: hidden;
}
.cpxz_s .swiper-slide .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cpxq_1 .top .right {
    width: 130px;
  }
  .cpxq_1 .top .right .swiper-button-next,
  .cpxq_1 .top .right .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
  .cpxq_1 .top .right .swiper-button-next:after,
  .cpxq_1 .top .right .swiper-button-prev:after {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .cpxz_s .swiper-slide p {
    font-size: 14px;
  }
}
@media (max-width: 990px) {
  .cpxq_1 {
    padding: 40px 0 60px;
  }
  .cpxq_1 .swiper-pagination {
    display: block;
    bottom: 30px;
  }
  .cpxq_1 .top {
    margin-bottom: 20px;
  }
  .cpxq_1 .top .left {
    width: 100%;
    text-align: center;
  }
  .cpxq_1 .top .right {
    display: none;
  }
}
@media (max-width: 1920px) {
  .cpxq_2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1776px) {
  .cpxq_2 {
    padding-top: 90.6122449px;
    padding-bottom: 90.6122449px;
  }
}
@media (max-width: 1680) {
  .cpxq_2 {
    padding-top: 85.71428571px;
    padding-bottom: 85.71428571px;
  }
}
@media (max-width: 1600px) {
  .cpxq_2 {
    padding-top: 81.63265306px;
    padding-bottom: 81.63265306px;
  }
}
@media (max-width: 1500px) {
  .cpxq_2 {
    padding-top: 76.53061224px;
    padding-bottom: 76.53061224px;
  }
}
@media (max-width: 1440px) {
  .cpxq_2 {
    padding-top: 73.46938776px;
    padding-bottom: 73.46938776px;
  }
}
@media (max-width: 1366px) {
  .cpxq_2 {
    padding-top: 69.69387755px;
    padding-bottom: 69.69387755px;
  }
}
@media (max-width: 1280px) {
  .cpxq_2 {
    padding-top: 65.30612245px;
    padding-bottom: 65.30612245px;
  }
}
@media (max-width: 1152px) {
  .cpxq_2 {
    padding-top: 58.7755102px;
    padding-bottom: 58.7755102px;
  }
}
@media (max-width: 1024px) {
  .cpxq_2 {
    padding-top: 52.24489796px;
    padding-bottom: 52.24489796px;
  }
}
@media (max-width: 990px) {
  .cpxq_2 {
    padding-top: 50.51020408px;
    padding-bottom: 50.51020408px;
  }
}
.cpxq_2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #f5f7f9;
}
.cpxq_2 .item.item1:hover .imgbox:before {
  right: 0;
}
.cpxq_2 .item.item1:hover .art:before {
  right: 0px;
}
.cpxq_2 .item.item2 {
  background: #1b2153;
}
.cpxq_2 .item.item2 .imgbox {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.cpxq_2 .item.item2 .imgbox:before {
  right: auto;
  left: -40px;
  background: url(../images/ci2.png) no-repeat center;
}
.cpxq_2 .item.item2 .art h1,
.cpxq_2 .item.item2 .art .info,
.cpxq_2 .item.item2 .art .bot {
  color: #fff;
}
.cpxq_2 .item.item2 .art:before {
  right: auto;
  left: -5px;
}
.cpxq_2 .item.item2:hover .imgbox:before {
  right: auto;
  left: 0;
}
.cpxq_2 .item.item2:hover .art:before {
  left: 0px;
}
.cpxq_2 .item .imgbox {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.cpxq_2 .item .imgbox img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cpxq_2 .item .imgbox:before {
  width: 20px;
  height: 40px;
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  margin-top: -20px;
  background: url(../images/ci1.png) no-repeat center;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.cpxq_2 .item .art {
  width: 50%;
  padding: 0 4.16vw;
  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;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1920px) {
  .cpxq_2 .item .art {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 1776px) {
  .cpxq_2 .item .art {
    padding-top: 54.36734694px;
    padding-bottom: 54.36734694px;
  }
}
@media (max-width: 1680) {
  .cpxq_2 .item .art {
    padding-top: 51.42857143px;
    padding-bottom: 51.42857143px;
  }
}
@media (max-width: 1600px) {
  .cpxq_2 .item .art {
    padding-top: 48.97959184px;
    padding-bottom: 48.97959184px;
  }
}
@media (max-width: 1500px) {
  .cpxq_2 .item .art {
    padding-top: 45.91836735px;
    padding-bottom: 45.91836735px;
  }
}
@media (max-width: 1440px) {
  .cpxq_2 .item .art {
    padding-top: 44.08163265px;
    padding-bottom: 44.08163265px;
  }
}
@media (max-width: 1366px) {
  .cpxq_2 .item .art {
    padding-top: 41.81632653px;
    padding-bottom: 41.81632653px;
  }
}
@media (max-width: 1280px) {
  .cpxq_2 .item .art {
    padding-top: 39.18367347px;
    padding-bottom: 39.18367347px;
  }
}
@media (max-width: 1152px) {
  .cpxq_2 .item .art {
    padding-top: 35.26530612px;
    padding-bottom: 35.26530612px;
  }
}
@media (max-width: 1024px) {
  .cpxq_2 .item .art {
    padding-top: 31.34693878px;
    padding-bottom: 31.34693878px;
  }
}
@media (max-width: 990px) {
  .cpxq_2 .item .art {
    padding-top: 30.30612245px;
    padding-bottom: 30.30612245px;
  }
}
.cpxq_2 .item .art:before {
  content: '';
  width: 5px;
  height: 100%;
  border-radius: 1px;
  background: #ffc000;
  position: absolute;
  right: -5px;
  bottom: 0;
  transition: all 0.5s;
}
.cpxq_2 .item .art h1 {
  line-height: 1.2;
  color: #333;
  font-weight: bold;
}
@media (max-width: 1920px) {
  .cpxq_2 .item .art h1 {
    font-size: 40px;
  }
}
@media (max-width: 1776px) {
  .cpxq_2 .item .art h1 {
    font-size: 36.24489796px;
  }
}
@media (max-width: 1680px) {
  .cpxq_2 .item .art h1 {
    font-size: 34.28571429px;
  }
}
@media (max-width: 1600px) {
  .cpxq_2 .item .art h1 {
    font-size: 32.65306122px;
  }
}
@media (max-width: 1500px) {
  .cpxq_2 .item .art h1 {
    font-size: 30.6122449px;
  }
}
@media (max-width: 1440px) {
  .cpxq_2 .item .art h1 {
    font-size: 29.3877551px;
  }
}
@media (max-width: 1366px) {
  .cpxq_2 .item .art h1 {
    font-size: 27.87755102px;
  }
}
@media (max-width: 1280px) {
  .cpxq_2 .item .art h1 {
    font-size: 26.12244898px;
  }
}
@media (max-width: 1152px) {
  .cpxq_2 .item .art h1 {
    font-size: 23.51020408px;
  }
}
@media (max-width: 1024px) {
  .cpxq_2 .item .art h1 {
    font-size: 20.89795918px;
  }
}
@media (max-width: 990px) {
  .cpxq_2 .item .art h1 {
    font-size: 20.20408163px;
  }
}
@media (max-width: 1920px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1776px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 22.65306122px;
  }
}
@media (max-width: 1680) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 21.42857143px;
  }
}
@media (max-width: 1600px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 20.40816327px;
  }
}
@media (max-width: 1500px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 19.13265306px;
  }
}
@media (max-width: 1440px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 18.36734694px;
  }
}
@media (max-width: 1366px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 17.42346939px;
  }
}
@media (max-width: 1280px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 16.32653061px;
  }
}
@media (max-width: 1152px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 14.69387755px;
  }
}
@media (max-width: 1024px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 13.06122449px;
  }
}
@media (max-width: 990px) {
  .cpxq_2 .item .art h1 {
    margin-top: 0px;
    margin-bottom: 12.62755102px;
  }
}
.cpxq_2 .item .art .info {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
.cpxq_2 .item .art .bot {
  color: #ffc000;
  font-weight: bold;
}
@media (max-width: 1920px) {
  .cpxq_2 .item .art .bot {
    font-size: 40px;
  }
}
@media (max-width: 1776px) {
  .cpxq_2 .item .art .bot {
    font-size: 36.24489796px;
  }
}
@media (max-width: 1680px) {
  .cpxq_2 .item .art .bot {
    font-size: 34.28571429px;
  }
}
@media (max-width: 1600px) {
  .cpxq_2 .item .art .bot {
    font-size: 32.65306122px;
  }
}
@media (max-width: 1500px) {
  .cpxq_2 .item .art .bot {
    font-size: 30.6122449px;
  }
}
@media (max-width: 1440px) {
  .cpxq_2 .item .art .bot {
    font-size: 29.3877551px;
  }
}
@media (max-width: 1366px) {
  .cpxq_2 .item .art .bot {
    font-size: 27.87755102px;
  }
}
@media (max-width: 1280px) {
  .cpxq_2 .item .art .bot {
    font-size: 26.12244898px;
  }
}
@media (max-width: 1152px) {
  .cpxq_2 .item .art .bot {
    font-size: 23.51020408px;
  }
}
@media (max-width: 1024px) {
  .cpxq_2 .item .art .bot {
    font-size: 20.89795918px;
  }
}
@media (max-width: 990px) {
  .cpxq_2 .item .art .bot {
    font-size: 20.20408163px;
  }
}
@media (max-width: 1440px) {
  .cpxq_2 .item .art .info {
    font-size: 14px;
  }
  .cpxq_2 .item.item1:hover .imgbox:before {
    right: -5px;
  }
  .cpxq_2 .item.item2:hover .imgbox:before {
    left: -5px;
  }
  .cpxq_2 .item .art:before {
    width: 3px;
    right: -3px;
  }
  .cpxq_2 .item.item2:hover .art:before {
    left: -3px;
  }
}
@media (max-width: 1024px) {
  .cpxq_2 .item .art .info {
    font-size: 12px;
  }
  .cpxq_2 .item.item1:hover .imgbox:before {
    right: -10px;
  }
  .cpxq_2 .item.item2:hover .imgbox:before {
    left: -10px;
  }
}
@media (max-width: 768px) {
  .cpxq_2 {
    padding: 40px 0;
  }
  .cpxq_2 .item {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .cpxq_2 .item .imgbox {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    padding: 20px;
  }
  .cpxq_2 .item .art {
    width: 100%;
    padding: 20px;
    padding-bottom: 0;
  }
  .cpxq_2 .item .art .info {
    margin-bottom: 10px;
  }
}
@media (max-width: 1920px) {
  .cpxq_3 {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1776px) {
  .cpxq_3 {
    padding-top: 45.30612245px;
    padding-bottom: 90.6122449px;
  }
}
@media (max-width: 1680) {
  .cpxq_3 {
    padding-top: 42.85714286px;
    padding-bottom: 85.71428571px;
  }
}
@media (max-width: 1600px) {
  .cpxq_3 {
    padding-top: 40.81632653px;
    padding-bottom: 81.63265306px;
  }
}
@media (max-width: 1500px) {
  .cpxq_3 {
    padding-top: 38.26530612px;
    padding-bottom: 76.53061224px;
  }
}
@media (max-width: 1440px) {
  .cpxq_3 {
    padding-top: 36.73469388px;
    padding-bottom: 73.46938776px;
  }
}
@media (max-width: 1366px) {
  .cpxq_3 {
    padding-top: 34.84693878px;
    padding-bottom: 69.69387755px;
  }
}
@media (max-width: 1280px) {
  .cpxq_3 {
    padding-top: 32.65306122px;
    padding-bottom: 65.30612245px;
  }
}
@media (max-width: 1152px) {
  .cpxq_3 {
    padding-top: 29.3877551px;
    padding-bottom: 58.7755102px;
  }
}
@media (max-width: 1024px) {
  .cpxq_3 {
    padding-top: 26.12244898px;
    padding-bottom: 52.24489796px;
  }
}
@media (max-width: 990px) {
  .cpxq_3 {
    padding-top: 25.25510204px;
    padding-bottom: 50.51020408px;
  }
}
.cpxq_3 .wrap {
  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;
}
.cpxq_3 .wrap .left {
  width: 46.25%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-bottom: 1px solid #c6cacd;
}
.cpxq_3 .wrap .right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cpxq_3 .wrap .right .a_center img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cpxq_3 {
    padding: 0 0 40px;
  }
  .cpxq_3 .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .cpxq_3 .wrap .left {
    width: 100%;
    border-bottom: none;
    margin-bottom: 20px;
  }
  .cpxq_3 .wrap .right {
    width: 100%;
  }
}
.cpxq_4 {
  background: #070c10;
  text-align: center;
}
@media (max-width: 1920px) {
  .cpxq_4 {
    padding-top: 100px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1776px) {
  .cpxq_4 {
    padding-top: 90.6122449px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1680) {
  .cpxq_4 {
    padding-top: 85.71428571px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1600px) {
  .cpxq_4 {
    padding-top: 81.63265306px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1500px) {
  .cpxq_4 {
    padding-top: 76.53061224px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1440px) {
  .cpxq_4 {
    padding-top: 73.46938776px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1366px) {
  .cpxq_4 {
    padding-top: 69.69387755px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1280px) {
  .cpxq_4 {
    padding-top: 65.30612245px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1152px) {
  .cpxq_4 {
    padding-top: 58.7755102px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .cpxq_4 {
    padding-top: 52.24489796px;
    padding-bottom: 0px;
  }
}
@media (max-width: 990px) {
  .cpxq_4 {
    padding-top: 50.51020408px;
    padding-bottom: 0px;
  }
}
.cpxq_4 h2 {
  color: #b81d23;
}
@media (max-width: 1920px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1776px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 22.65306122px;
  }
}
@media (max-width: 1680) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 21.42857143px;
  }
}
@media (max-width: 1600px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 20.40816327px;
  }
}
@media (max-width: 1500px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 19.13265306px;
  }
}
@media (max-width: 1440px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 18.36734694px;
  }
}
@media (max-width: 1366px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 17.42346939px;
  }
}
@media (max-width: 1280px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 16.32653061px;
  }
}
@media (max-width: 1152px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 14.69387755px;
  }
}
@media (max-width: 1024px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 13.06122449px;
  }
}
@media (max-width: 990px) {
  .cpxq_4 h2 {
    margin-top: 0px;
    margin-bottom: 12.62755102px;
  }
}
.cpxq_4 .myinfo {
  color: #fff;
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
}
.cpxq_4 .img {
  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: 1920px) {
  .cpxq_4 .img {
    margin-top: 50px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1776px) {
  .cpxq_4 .img {
    margin-top: 45.30612245px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1680) {
  .cpxq_4 .img {
    margin-top: 42.85714286px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1600px) {
  .cpxq_4 .img {
    margin-top: 40.81632653px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1500px) {
  .cpxq_4 .img {
    margin-top: 38.26530612px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1440px) {
  .cpxq_4 .img {
    margin-top: 36.73469388px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1366px) {
  .cpxq_4 .img {
    margin-top: 34.84693878px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1280px) {
  .cpxq_4 .img {
    margin-top: 32.65306122px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1152px) {
  .cpxq_4 .img {
    margin-top: 29.3877551px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .cpxq_4 .img {
    margin-top: 26.12244898px;
    margin-bottom: 0px;
  }
}
@media (max-width: 990px) {
  .cpxq_4 .img {
    margin-top: 25.25510204px;
    margin-bottom: 0px;
  }
}
.cpxq_5 {
  text-align: left;
}
@media (max-width: 1920px) {
  .cpxq_5 {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
@media (max-width: 1776px) {
  .cpxq_5 {
    padding-top: 72.48979592px;
    padding-bottom: 108.73469388px;
  }
}
@media (max-width: 1680) {
  .cpxq_5 {
    padding-top: 68.57142857px;
    padding-bottom: 102.85714286px;
  }
}
@media (max-width: 1600px) {
  .cpxq_5 {
    padding-top: 65.30612245px;
    padding-bottom: 97.95918367px;
  }
}
@media (max-width: 1500px) {
  .cpxq_5 {
    padding-top: 61.2244898px;
    padding-bottom: 91.83673469px;
  }
}
@media (max-width: 1440px) {
  .cpxq_5 {
    padding-top: 58.7755102px;
    padding-bottom: 88.16326531px;
  }
}
@media (max-width: 1366px) {
  .cpxq_5 {
    padding-top: 55.75510204px;
    padding-bottom: 83.63265306px;
  }
}
@media (max-width: 1280px) {
  .cpxq_5 {
    padding-top: 52.24489796px;
    padding-bottom: 78.36734694px;
  }
}
@media (max-width: 1152px) {
  .cpxq_5 {
    padding-top: 47.02040816px;
    padding-bottom: 70.53061224px;
  }
}
@media (max-width: 1024px) {
  .cpxq_5 {
    padding-top: 41.79591837px;
    padding-bottom: 62.69387755px;
  }
}
@media (max-width: 990px) {
  .cpxq_5 {
    padding-top: 40.40816327px;
    padding-bottom: 60.6122449px;
  }
}
.cpxq_5 h2 {
  color: #b81d23;
}
@media (max-width: 1920px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1776px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 22.65306122px;
  }
}
@media (max-width: 1680) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 21.42857143px;
  }
}
@media (max-width: 1600px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 20.40816327px;
  }
}
@media (max-width: 1500px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 19.13265306px;
  }
}
@media (max-width: 1440px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 18.36734694px;
  }
}
@media (max-width: 1366px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 17.42346939px;
  }
}
@media (max-width: 1280px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 16.32653061px;
  }
}
@media (max-width: 1152px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 14.69387755px;
  }
}
@media (max-width: 1024px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 13.06122449px;
  }
}
@media (max-width: 990px) {
  .cpxq_5 h2 {
    margin-top: 0px;
    margin-bottom: 12.62755102px;
  }
}
.cpxq_5 .myinfo {
  width: 810px;
  max-width: 100%;
  color: #040406;
}
.cpxq_5 .items {
  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;
}
@media (max-width: 1920px) {
  .cpxq_5 .items {
    padding-top: 80px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1776px) {
  .cpxq_5 .items {
    padding-top: 72.48979592px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1680) {
  .cpxq_5 .items {
    padding-top: 68.57142857px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1600px) {
  .cpxq_5 .items {
    padding-top: 65.30612245px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1500px) {
  .cpxq_5 .items {
    padding-top: 61.2244898px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1440px) {
  .cpxq_5 .items {
    padding-top: 58.7755102px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1366px) {
  .cpxq_5 .items {
    padding-top: 55.75510204px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1280px) {
  .cpxq_5 .items {
    padding-top: 52.24489796px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1152px) {
  .cpxq_5 .items {
    padding-top: 47.02040816px;
    padding-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .cpxq_5 .items {
    padding-top: 41.79591837px;
    padding-bottom: 0px;
  }
}
@media (max-width: 990px) {
  .cpxq_5 .items {
    padding-top: 40.40816327px;
    padding-bottom: 0px;
  }
}
.cpxq_5 .items .item {
  width: 25%;
  position: relative;
}
.cpxq_5 .items .item > img {
  width: 100%;
}
.cpxq_5 .items .box {
  color: #040406;
  position: absolute;
  transform: translate(0%, -50%);
  left: 10%;
  bottom: -25%;
  padding-top: 54px;
  padding-left: 130px;
}
@media (max-width: 1920px) {
  .cpxq_5 .items .box {
    font-size: 34px;
  }
}
@media (max-width: 1776px) {
  .cpxq_5 .items .box {
    font-size: 30.80816327px;
  }
}
@media (max-width: 1680px) {
  .cpxq_5 .items .box {
    font-size: 29.14285714px;
  }
}
@media (max-width: 1600px) {
  .cpxq_5 .items .box {
    font-size: 27.75510204px;
  }
}
@media (max-width: 1500px) {
  .cpxq_5 .items .box {
    font-size: 26.02040816px;
  }
}
@media (max-width: 1440px) {
  .cpxq_5 .items .box {
    font-size: 24.97959184px;
  }
}
@media (max-width: 1366px) {
  .cpxq_5 .items .box {
    font-size: 23.69591837px;
  }
}
@media (max-width: 1280px) {
  .cpxq_5 .items .box {
    font-size: 22.20408163px;
  }
}
@media (max-width: 1152px) {
  .cpxq_5 .items .box {
    font-size: 19.98367347px;
  }
}
@media (max-width: 1024px) {
  .cpxq_5 .items .box {
    font-size: 17.76326531px;
  }
}
@media (max-width: 990px) {
  .cpxq_5 .items .box {
    font-size: 17.17346939px;
  }
}
.cpxq_5 .items .box .yd {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: -4px;
  animation: dx 3s linear infinite;
}
.cpxq_5 .items .box .yd:before {
  content: '';
  width: 23px;
  height: 22px;
  background-image: url(../images/img40.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cpxq_5 .items .box img {
  width: 125px;
  position: absolute;
  left: 0;
  bottom: 16px;
}
@keyframes dx {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.8);
  }
}
@media (max-width: 1440px) {
  .cpxq_5 .items .box {
    padding-top: 40px;
    padding-left: 98px;
  }
  .cpxq_5 .items .box .yd {
    width: 8px;
    height: 8px;
    left: -3px;
  }
  .cpxq_5 .items .box img {
    width: 90px;
    bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cpxq_5 {
    padding-bottom: 50px;
  }
  .cpxq_5 .items {
    padding-top: 30px;
  }
  .cpxq_5 .items .box {
    padding-top: 17px;
    padding-left: 24px;
    font-size: 14px;
  }
  .cpxq_5 .items .box .yd {
    width: 6px;
    height: 6px;
    left: -3px;
  }
  .cpxq_5 .items .box .yd:before {
    width: 15px;
    height: 14px;
  }
  .cpxq_5 .items .box img {
    width: 25px;
    bottom: 5px;
  }
}
.cpxq_6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cpxq_6 .left {
  width: 50%;
  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;
}
.cpxq_6 .left .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;
  width: 26%;
}
.cpxq_6 .right {
  width: 50%;
  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;
}
.cpxq_6 .right .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;
  width: 62%;
}
.cpxq_6 .con {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  width: 246px;
  height: 246px;
  z-index: 10;
  padding: 0 22px;
}
.cpxq_6 .con:before {
  content: '';
  width: 276px;
  height: 276px;
  position: absolute;
  top: -18px;
  left: -18px;
  border: 2px dashed #fff;
  border-radius: 50%;
  animation: bef 4s linear infinite;
}
.cpxq_6 .con .top {
  height: 50%;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 36px;
}
.cpxq_6 .con .top img {
  animation: rig 1s infinite linear;
}
.cpxq_6 .con .bot {
  padding-top: 14px;
  height: 50%;
}
.cpxq_6 .con .bot img {
  animation: lef 1s infinite linear;
}
.cpxq_6 .con p {
  font-size: 28px;
  color: #9a0202;
  text-align: center;
}
.cpxq_6 .con img {
  width: 37px;
  vertical-align: middle;
  margin-left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin-top: 6px;
}
@keyframes bef {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes rig {
  0% {
    margin-left: 54%;
  }
  50% {
    margin-left: 50%;
  }
  100% {
    margin-left: 54%;
  }
}
@keyframes lef {
  0% {
    margin-left: 46%;
  }
  50% {
    margin-left: 50%;
  }
  100% {
    margin-left: 46%;
  }
}
@media (max-width: 1440px) {
  .cpxq_6 .con {
    width: 189px;
    height: 189px;
    padding: 0 16px;
  }
  .cpxq_6 .con:before {
    width: 226px;
    height: 226px;
  }
  .cpxq_6 .con img {
    width: 28px;
    margin-top: 4px;
  }
  .cpxq_6 .con .top {
    padding-top: 24px;
  }
  .cpxq_6 .con p {
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  .cpxq_6 .con p {
    font-size: 20px;
  }
  .cpxq_6 .con {
    width: 169px;
    height: 169px;
    padding: 0 16px;
  }
  .cpxq_6 .con:before {
    width: 206px;
    height: 206px;
  }
  .cpxq_6 .con img {
    width: 28px;
    margin-top: 2px;
  }
}
@media (max-width: 768px) {
  .cpxq_6 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .cpxq_6 .left {
    width: 100%;
  }
  .cpxq_6 .right {
    width: 100%;
  }
  .cpxq_6 .con p {
    font-size: 18px;
  }
  .cpxq_6 .con {
    width: 149px;
    height: 149px;
    padding: 0 14px;
  }
  .cpxq_6 .con:before {
    width: 186px;
    height: 186px;
  }
  .cpxq_6 .con img {
    display: none;
  }
  .cpxq_6 .con .top {
    padding-top: 35px;
  }
  .cpxq_6 .con .bot {
    padding-top: 15px;
  }
}
.cpxq_7 {
  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;
  background: url(../images/img55.jpg) center center / cover;
  height: 48vw;
  min-height: 400px;
  border-bottom: 7px solid #dff1ff;
  overflow: hidden;
  position: relative;
}
.cpxq_7 .swiper-pagination {
  display: none;
}
.cpxq_7 .item {
  position: relative;
  border-right: 1px solid #d8d6db;
  cursor: pointer;
  overflow: hidden;
  width: 20%;
}
.cpxq_7 .item:hover:after {
  position: absolute;
  z-index: 10;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(30% at 100% 100%);
  animation: circle 1s ease-in-out forwards;
  background-image: linear-gradient(180deg, rgba(205, 246, 244, 0.1) 15%, rgba(58, 179, 176, 0.88) 40%, rgba(85, 181, 255, 0.88));
}
.cpxq_7 .item:hover .contentBx {
  bottom: 0;
}
.cpxq_7 .item:hover .contentBx .inner {
  bottom: 0;
}
.cpxq_7 .item:hover .contentBx p {
  opacity: 1;
}
.cpxq_7 .item:hover .contentBx h1:before {
  transition: 0.45s 0.3s;
  width: 21px;
}
.cpxq_7 .item .contentBx {
  position: absolute;
  bottom: calc(-100% - -200px);
  z-index: 20;
  transition: bottom 0.8s;
  height: 100%;
  width: 100%;
}
.cpxq_7 .item .contentBx .inner {
  position: absolute;
  padding: 0 3.38vw 9.375vw;
}
.cpxq_7 .item .contentBx img {
  width: 28px;
  height: 28px;
  margin-bottom: 15px;
}
.cpxq_7 .item .contentBx h1 {
  word-break: break-all;
  position: relative;
  font-size: 20px;
  font-family: "microsoft yahei";
  font-weight: bold;
  color: #fff;
}
.cpxq_7 .item .contentBx h1::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  left: 0;
  bottom: -25px;
  background: #fff;
  border-radius: 2px;
}
.cpxq_7 .item .contentBx p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-top: 40px;
  opacity: 0;
  transition: opacity 0.8s;
}
@keyframes circle {
  from {
    clip-path: circle(30% at 100% 100%);
  }
  to {
    clip-path: circle(150% at 0 0);
  }
}
@media (max-width: 1440px) {
  .cpxq_7 .item .contentBx h1 {
    font-size: 18px;
  }
  .cpxq_7 .item .contentBx p {
    font-size: 14px;
  }
  .cpxq_7 .item .contentBx h1::before {
    height: 2px;
  }
}
@media (max-width: 768px) {
  .cpxq_7 {
    margin: 20px;
    border-bottom: none;
  }
  .cpxq_7 .swiper-pagination {
    width: 100%;
    display: block;
  }
  .cpxq_7 .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    opacity: 1;
  }
  .cpxq_7 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid #0079c3;
    background: transparent;
  }
  .cpxq_7 .item {
    border: none;
    background-image: linear-gradient(180deg, rgba(205, 246, 244, 0.1) 15%, rgba(58, 179, 176, 0.88) 40%, rgba(85, 181, 255, 0.88));
  }
  .cpxq_7 .item .contentBx {
    bottom: 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: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin-bottom: 60px;
  }
  .cpxq_7 .item .contentBx .inner {
    padding: 15px;
  }
  .cpxq_7 .item .contentBx p {
    opacity: 1;
    margin-top: 20px;
  }
}




.cpxq_7_top {
  text-align: center;
}
@media (max-width: 1920px) {
  .cpxq_7_top {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1776px) {
  .cpxq_7_top {
    padding-top: 90.6122449px;
    padding-bottom: 45.30612245px;
  }
}
@media (max-width: 1680) {
  .cpxq_7_top {
    padding-top: 85.71428571px;
    padding-bottom: 42.85714286px;
  }
}
@media (max-width: 1600px) {
  .cpxq_7_top {
    padding-top: 81.63265306px;
    padding-bottom: 40.81632653px;
  }
}
@media (max-width: 1500px) {
  .cpxq_7_top {
    padding-top: 76.53061224px;
    padding-bottom: 38.26530612px;
  }
}
@media (max-width: 1440px) {
  .cpxq_7_top {
    padding-top: 73.46938776px;
    padding-bottom: 36.73469388px;
  }
}
@media (max-width: 1366px) {
  .cpxq_7_top {
    padding-top: 69.69387755px;
    padding-bottom: 34.84693878px;
  }
}
@media (max-width: 1280px) {
  .cpxq_7_top {
    padding-top: 65.30612245px;
    padding-bottom: 32.65306122px;
  }
}
@media (max-width: 1152px) {
  .cpxq_7_top {
    padding-top: 58.7755102px;
    padding-bottom: 29.3877551px;
  }
}
@media (max-width: 1024px) {
  .cpxq_7_top {
    padding-top: 52.24489796px;
    padding-bottom: 26.12244898px;
  }
}
@media (max-width: 990px) {
  .cpxq_7_top {
    padding-top: 50.51020408px;
    padding-bottom: 25.25510204px;
  }
}
.cpxq_7_top h2 {
  position: relative;
}
@media (max-width: 1920px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1776px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 18.12244898px;
  }
}
@media (max-width: 1680) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 17.14285714px;
  }
}
@media (max-width: 1600px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 16.32653061px;
  }
}
@media (max-width: 1500px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 15.30612245px;
  }
}
@media (max-width: 1440px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 14.69387755px;
  }
}
@media (max-width: 1366px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 13.93877551px;
  }
}
@media (max-width: 1280px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 13.06122449px;
  }
}
@media (max-width: 1152px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 11.75510204px;
  }
}
@media (max-width: 1024px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 10.44897959px;
  }
}
@media (max-width: 990px) {
  .cpxq_7_top h2 {
    margin-top: 0px;
    margin-bottom: 10.10204082px;
  }
}
@media (max-width: 1920px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 25px;
  }
}
@media (max-width: 1776px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 22.65306122px;
  }
}
@media (max-width: 1680) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 21.42857143px;
  }
}
@media (max-width: 1600px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 20.40816327px;
  }
}
@media (max-width: 1500px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 19.13265306px;
  }
}
@media (max-width: 1440px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 18.36734694px;
  }
}
@media (max-width: 1366px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 17.42346939px;
  }
}
@media (max-width: 1280px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 16.32653061px;
  }
}
@media (max-width: 1152px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 14.69387755px;
  }
}
@media (max-width: 1024px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 13.06122449px;
  }
}
@media (max-width: 990px) {
  .cpxq_7_top h2 {
    padding-top: 0px;
    padding-bottom: 12.62755102px;
  }
}
.cpxq_7_top h2:before {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  content: "";
  background-color: #dff1ff;
  height: 3px;
  width: 50px;
}
.cpxq_7_top a {
  width: 284px;
  height: 62px;
  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: linear-gradient(-175deg, #8fbee3, #5990ba);
  font-size: 18px;
  position: relative;
  margin: 0 auto;
  color: #fff;
}
@media (max-width: 1920px) {
  .cpxq_7_top a {
    margin-top: 50px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1776px) {
  .cpxq_7_top a {
    margin-top: 45.30612245px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1680) {
  .cpxq_7_top a {
    margin-top: 42.85714286px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1600px) {
  .cpxq_7_top a {
    margin-top: 40.81632653px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1500px) {
  .cpxq_7_top a {
    margin-top: 38.26530612px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1440px) {
  .cpxq_7_top a {
    margin-top: 36.73469388px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1366px) {
  .cpxq_7_top a {
    margin-top: 34.84693878px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1280px) {
  .cpxq_7_top a {
    margin-top: 32.65306122px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1152px) {
  .cpxq_7_top a {
    margin-top: 29.3877551px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .cpxq_7_top a {
    margin-top: 26.12244898px;
    margin-bottom: 0px;
  }
}
@media (max-width: 990px) {
  .cpxq_7_top a {
    margin-top: 25.25510204px;
    margin-bottom: 0px;
  }
}
.cpxq_7_top a:hover:before {
  animation: moving 0.8s;
}
.cpxq_7_top a:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}
@keyframes moving {
  form {
    width: 0;
    opacity: 1;
  }
  to {
    width: 300px;
    opacity: 0;
  }
}
@media (max-width: 1440px) {
  .cpxq_7_top a {
    width: 240px;
    height: 50px;
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .cpxq_7_top a {
    width: 200px;
    height: 40px;
    font-size: 14px;
  }
}
