/* CSS Document */
* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 62.5%;
  /* 10÷16=62.5% */
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

body {
  font-family: "PingFang SC", "微软雅黑", "Microsoft YaHei", "Hiragino Sans GB",
    PingHei, STHeiti;
  font-size: 14px;
  /*font-size: 1.4rem; */
  /* 12÷10=1.2 */
  font-weight: 400;
  line-height: 150%;
  color: #000;
  height: 100%;
}

em,
q,
cite,
address {
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

address {
  display: inline;
}

img {
  border: none;
}

li {
  list-style: none;
}

q {
  quotes: none;
}

strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
}

th {
  text-align: left;
  font-weight: 400;
}

small {
  -webkit-text-size-adjust: none;
  font-size: 10px;
}

i {
  font-style: normal;
}

::selection {
  background-color: #1e55a8;
  color: #fff;
}

::-moz-selection {
  background-color: #1e55a8;
  color: #fff;
}

/* link */
a {
  color: #000;
  outline-style: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}

a:hover {
  color: #1e55a8;
}

a:hover .border-00 {
  border-bottom: 1px solid #1e55a8;
}

a:hover .color999 {
  color: #1e55a8;
}

.a01,
a.a01,
.a01 a {
  color: #1e55a8;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}

a:hover .a01,
a.a01:hover,
.a01 a:hover {
  color: #000;
}

.a02,
a.a02,
.a02 a {
  display: inline-block;
  position: relative;
}

.a02:before,
a.a02:before,
.a02 a:before {
  background: #31ae7b;
}

.a02:before,
a.a02:before,
.a02 a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #31ae7b;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

a:hover .a02::before,
a.a02:hover::before,
.a02 a:hover::before,
.a02:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

/* clear float */
.cf {
  zoom: 1;
}

/* for IE */
.cf:after {
  content: "X";
  display: block;
  clear: both;
  font-size: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* for other */
/* end of clear float */

/* float */
.fleft {
  float: left !important;
}

.fright {
  float: right !important;
}

.fnone {
  float: none !important;
}

/* text-align */
.tleft {
  text-align: left;
}

.tright {
  text-align: right;
}

.tcenter {
  text-align: center;
}

.tjust {
  text-align: justify;
}

/* display */
.dis {
  display: block;
}

.undis {
  display: none;
}

.disinline {
  display: inline;
}

.disinblock {
  display: inline-block;
}

.cursor_pointer {
  cursor: pointer;
}

.cursor_default {
  cursor: default;
}

/*-------------------结构-------------------*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
time {
  display: block;
}

.cd-main-content {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  margin-right: auto;
  margin-left: auto;
}

.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

select {
  box-sizing: border-box;
  border: none;
  color: #6a6f77;
  -web-kit-appearance: none;
  -moz-appearance: none;
  display: block;
  outline: 0;
  text-decoration: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/*-------------------手机端菜单-------------------*/
#cd-lateral-nav {
  display: none;
}

/*-------------------定位-------------------*/
.positionRelative {
  position: relative;
}

.positionAbsolute {
  position: absolute;
}

.positionStatic {
  position: static !important;
  top: 0 !important;
  margin-top: 0 !important;
}

.poabsolute-wh50 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.poabsolute-w50 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.poabsolute-h50 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.poabsolute-t {
  position: absolute;
  top: 0;
}

.poabsolute-b {
  position: absolute;
  bottom: 0;
}

.left0 {
  left: 0 !important;
}

.right0 {
  right: 0 !important;
}

.zindex2 {
  z-index: 2;
}

.zindex3 {
  z-index: 3;
}

.overhidden {
  overflow: hidden;
}

/*-------------------通用圆角-------------------*/
.border-radius3 {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.border-radius10 {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.border-radius50 {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/*-------------------透明度-------------------*/
.opacity0 {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.opacity0_1 {
  filter: alpha(opacity=10);
  -moz-opacity: 0.1;
  -khtml-opacity: 0.1;
  opacity: 0.1;
}

.opacity0_2 {
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
}

.opacity0_5 {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.opacity0_6 {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

.opacity0_7 {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

.opacity0_8 {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}

/*-------------------字体颜色、样式、字体间距-------------------*/

@font-face {
  font-family: "webfont";
  src: url("../fonts/vez8cpp7mt43g14i.eot");
  /* IE9*/
  src: url("../fonts/vez8cpp7mt43g14i.eot") format("embedded-opentype"),
    /* IE6-IE8 */
    url("../fonts/vez8cpp7mt43g14i.woff") format("woff"),
    /* chrome、firefox */
    url("../fonts/vez8cpp7mt43g14i.ttf") format("truetype"),
    /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url("../fonts/vez8cpp7mt43g14i.svg#notosanshans-demilight") format("svg");
  /* iOS 4.1- */
}

@font-face {
  font-family: "iconfont";
  /* Project id 2613794 */
  src: url("../fonts/font_2613794_mr30phwilyp.woff2") format("woff2"),
    url("../fonts/font_2613794_mr30phwilyp.woff") format("woff"),
    url("../fonts/font_2613794_mr30phwilyp.ttf") format("truetype");
}

@font-face {
  font-family: "ArialMT";
  /* Project id 2613794 */
  src:
    url("../fonts/ArialMT.ttf") format("truetype");
}

.iconfont {
  line-height: 1em;
}

.fa-0_2x {
  font-size: 0.2em !important;
}

.fa-0_6x {
  font-size: 0.6em !important;
}

.fa-0_8x {
  font-size: 0.8em !important;
}

.fa-1x {
  font-size: 1em !important;
}

.fa-1_2x {
  font-size: 1.2em !important;
}

.fa-1_6x {
  font-size: 1.6em !important;
}

.fa-2x {
  font-size: 2em !important;
}

.fa-2_4x {
  font-size: 2.4em !important;
}

.fa-3x {
  font-size: 3em !important;
}

.fa-4x {
  font-size: 4em !important;
}

.fa-5x {
  font-size: 5em !important;
}

.font-bold {
  font-weight: bold;
}

.font-thin {
  font-weight: 300;
}

h1,
.h1 {
  font-size: 40px;
  line-height: 1.1em;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 1.1em;
}

.h32 {
  font-size: 32px;
  line-height: 1.1em;
}

/*子页大标题*/
h3,
.h3 {
  font-size: 35px;
  line-height: 1.1em;
}

/*子页大标题*/
h4,
.h4 {
  font-size: 28px;
  line-height: 1.1em;
}

/*子页二标题*/
h5,
.h5 {
  font-size: 18px;
}

/*子页小标题*/
h6,
.h6 {
  font-size: 16px;
}

.flexrow {
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: center;
  flex-wrap: wrap;
}

.bigtitle {
  font-size: 50px;
  line-height: 1.1em;
}

.yagxnum {
  font-family: ArialMT;
}

.cxbigtitle {
  font-weight: bold;
}

.fontSize10 {
  font-size: 10px;
  font-size: 1rem;
  -webkit-transform: scale(0.8);
}

.fontSize12 {
  font-size: 12px;
}

.fontSize14 {
  font-size: 14px;
}

.fontSize15 {
  font-size: 15px;
}

.fontSize16 {
  font-size: 16px;
}
.fontSize18 {
  font-size: 18px;
}
.fontSize20 {
  font-size: 20px;
}

.fontSize22 {
  font-size: 22px;
}

.fontSize24 {
  font-size: 24px;
}

.fontSize26 {
  font-size: 26px;
}

.fontSize28 {
  font-size: 28px;
}

.fontSize30 {
  font-size: 30px;
}

.fontSize36 {
  font-size: 36px;
}

.fontSize50 {
  font-size: 50px;
}

.letterspacing1 {
  letter-spacing: 1px;
}

.letterspacing2 {
  letter-spacing: 2px;
}

.letterspacing5 {
  letter-spacing: 5px;
}

.letterspacing8 {
  letter-spacing: 8px;
}

/*-----------------间距---------------------*/
.line-height1em {
  line-height: 1em;
}

.line-height1_1em {
  line-height: 1.1em;
}

.line-height1_2em {
  line-height: 1.2em;
}

.line-height1_3em {
  line-height: 1.3em;
}

.line-height1_5em {
  line-height: 1.5em;
}

.line-height1_6em {
  line-height: 1.6em;
}
.line-height1_7em {
  line-height: 1.7em;
}
.line-height1_8em {
  line-height: 1.8em;
}

.line-height2em {
  line-height: 2em;
}

.line-height2_5em {
  line-height: 2.5em;
}

.line-height3em {
  line-height: 3em;
}

/*-------------------颜色--------------------*/
.colorfff,
.colorfff a,
a.colorfff {
  color: #fff;
}

.color000,
.color000 a,
a.color000 {
  color: #000;
}

.color1e55a8 {
  color: #1e55a8;
}

.colorfe2230 {
  color: #fe2230;
}

.color999999 {
  color: #999999;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}

.color999 {
  color: #999999;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}

.color666 {
  color: #666666;
}

.color1f1f1f {
  color: #1f1f1f;
}

.color003b5c {
  color: #003b5c;
}

.imgwhite {
  filter: brightness(0) invert(1);
}

.bg003b5c {
  background-color: #003b5c;
}

.bg5a7c90 {
  background-color: #5a7c90;
}

.bg31ae7b {
  background-color: #31ae7b;
}

.colore72f34 {
  color: #e72f34;
}

.color131313 {
  color: #131313;
}

.color2264c8 {
  color: #2264c8;
}

.color2057a1 {
  color: #2057a1;
}

.color154996 {
  color: #154996;
}

.color04357c {
  color: #04357c;
}

.color6e6e6e {
  color: #6e6e6e;
}

.color068b7 {
  color: #0068b7;
}

.color31ae7b {
  color: #31ae7b;
}

.color5a7c90 {
  color: #5a7c90;
}

.bgfff {
  background: #fff !important;
}

.bg000 {
  background: #000;
}

.bgf2f5f7 {
  background: #f2f5f7;
}

.bgf5f5f5 {
  background: #f5f5f5;
}

.bg1e55a8 {
  background: #1e55a8;
}

.bg04357c {
  background: #04357c;
}

.bg184a97 {
  background: #184a97;
}

.bgdc7330 {
  background: #dc7330;
}

.bgededed {
  background: #ededed;
}

.bgf8f8f8 {
  background: #f8f8f8;
}

.bg134592 {
  background: #134592;
}

.bgf3f3f3 {
  background: #f3f3f3;
}

.bgebebeb {
  background: #ebebeb;
}

.bg12418a {
  background: #12418a;
}

.bg2264c8 {
  background: #2264c8;
}

.bg003b5c {
  background: #003b5c;
}

.bg2280c8 {
  background: #2280c8;
}

.bg1c4994 {
  background: #1c4994;
}

.bgfbfbfb {
  background: #fbfbfb;
}

.bgf9f9f9 {
  background: #f9f9f9;
}

.bg134290 {
  background: #134290;
}

.bg12479f {
  background: #12479f;
}

.bg134aa5 {
  background: #134aa5;
}

.bgfcfafa {
  background: #fcfafa;
}

.bgbfced6 {
  background-color: #bfced6;
}

.bgbfced60_28 {
  background-color: rgba(191, 206, 214, .28);
}

.bgbfced60_2 {
  background-color: rgba(191, 206, 214, .2);
}

.bgbfced60_5 {
  background-color: rgba(191, 206, 214, .5);
}

.bgfff0_8 {
  background: rgba(255, 255, 255, 0.8);
}

.bgfff0_97 {
  background: rgba(255, 255, 255, 0.97);
}

.bg0050a10_6 {
  background: rgba(0, 80, 161, 0.6);
}

.bg5a7c90_68 {
  background: rgba(90, 124, 144, 0.68);
}

/*-------------------宽度、高度--------------------*/
.width20 {
  width: 20%;
}

.width25 {
  width: 25%;
}

.width30 {
  width: 30%;
}

.width33 {
  width: 33.33%;
}

.width40 {
  width: 40%;
}

.width45 {
  width: 45%;
}

.width48 {
  width: 48%;
}

.width50 {
  width: 50%;
}

.width55 {
  width: 55%;
}

.width60 {
  width: 60%;
}

.width65 {
  width: 65%;
}

.width70 {
  width: 70%;
}

.width75 {
  width: 75%;
}

.width80 {
  width: 80%;
}

.width85 {
  width: 85%;
}

.width90 {
  width: 90%;
}

.width93 {
  width: 93%;
}

.width95 {
  width: 95%;
}

.width100 {
  width: 100%;
}

.height24px {
  height: 24px;
}

.height205px {
  height: 205px;
}

.height12 {
  height: 12px;
}

.height50px {
  height: 50px;
}

.height50 {
  height: 50%;
}

.height100 {
  height: 100%;
}

.imgw20 {
  display: block;
  max-width: 20%;
  height: auto;
}

.imgw30 {
  display: block;
  max-width: 30%;
  height: auto;
}

.imgw40 {
  display: block;
  max-width: 40%;
  height: auto;
}

.imgw50 {
  display: block;
  max-width: 50%;
  height: auto;
}

.imgw60 {
  display: block;
  max-width: 60%;
  height: auto;
}

.imgw90 {
  display: block;
  max-width: 90%;
  height: auto;
}

.imgw100 {
  display: block;
  max-width: 100%;
  height: auto;
}

.infinite-height {
  margin-bottom: -3000px;
  padding-bottom: 3000px !important;
}

.object_fit-cover {
  object-fit: cover;
}

/*-------------------区块-------------------*/
.area_100 {
  float: left;
  width: 100%;
}

.area_90 {
  float: left;
  width: 90%;
}

.area_80 {
  float: left;
  width: 80%;
}

.area_75 {
  float: left;
  width: 75%;
}

.area_70 {
  float: left;
  width: 70%;
}

.area_66 {
  float: left;
  width: 66.66%;
}

.area_65 {
  float: left;
  width: 65%;
}

.area_60 {
  float: left;
  width: 60%;
}
.area_53 {
  float: left;
  width: 53%;
}
.area_55 {
  float: left;
  width: 55%;
}

.area_50 {
  float: left;
  width: 50%;
}

.area_48 {
  float: left;
  width: 48%;
}

.area_45 {
  float: left;
  width: 45%;
}

.area_40 {
  float: left;
  width: 40%;
}
.area_36 {
  float: left;
  width: 36%;
}
.area_35 {
  float: left;
  width: 35%;
}

.area_33 {
  float: left;
  width: 33.33%;
}

.area_30 {
  float: left;
  width: 30%;
}

.area_28 {
  float: left;
  width: 28%;
}

.area_27 {
  float: left;
  width: 27%;
}

.area_25 {
  float: left;
  width: 25%;
}

.area_22 {
  float: left;
  width: 22%;
}

.area_20 {
  float: left;
  width: 20%;
}

.area_15nf {
  width: 15%;
}

.area_15 {
  float: left;
  width: 15%;
}
.area_11 {
  float: left;
  width: 11%;
}
.area_10 {
  float: left;
  width: 10%;
}

.area_12 {
  float: left;
  width: 12%;
}

.area_48fr {
  float: right;
  width: 48%;
}

.area_49 {
  float: left;
  width: 49%;
}

.area_49fr {
  float: right;
  width: 49%;
}

.box-sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.margintop2 {
  margin-top: 2px;
}

.margintop3 {
  margin-top: 3px;
}

.margintop4 {
  margin-top: 4px;
}

.margintop5 {
  margin-top: 5px;
}

.margintop10 {
  margin-top: 10px;
}

.margintop15 {
  margin-top: 15px;
}

.margintop20 {
  margin-top: 20px;
}

.margintop25 {
  margin-top: 25px;
}

.margintop30 {
  margin-top: 30px;
}

.margintop40 {
  margin-top: 40px;
}

.margintop50 {
  margin-top: 50px;
}

.margintop60 {
  margin-top: 60px;
}

.margintop80 {
  margin-top: 80px;
}

.marginbottom5 {
  margin-bottom: 5px;
}

.marginbottom10 {
  margin-bottom: 10px;
}

.marginbottom15 {
  margin-bottom: 15px;
}

.marginbottom20 {
  margin-bottom: 20px;
}

.marginbottom30 {
  margin-bottom: 30px;
}

.marginbottom40 {
  margin-bottom: 40px;
}

.marginbottom50 {
  margin-bottom: 50px;
}

.marginbottom60 {
  margin-bottom: 60px;
}

.marginbottom90 {
  margin-bottom: 90px;
}

.marginbottom200 {
  margin-bottom: 200px;
}

.marginleft5 {
  margin-left: 5px;
}

.marginleft10 {
  margin-left: 10px;
}

.marginleft15 {
  margin-left: 15px;
}

.marginleft20 {
  margin-left: 20px;
}

.marginleft30 {
  margin-left: 30px;
}

.marginleft40 {
  margin-left: 40px;
}

.marginleft50 {
  margin-left: 50px;
}

.marginleft_f20 {
  margin-left: -20px;
}

.marginright5 {
  margin-right: 5px;
}

.marginright10 {
  margin-right: 10px;
}
.marginright15 {
  margin-right: 15px;
}
.marginright20 {
  margin-right: 20px;
}

.marginright30 {
  margin-right: 30px;
}

.marginright40 {
  margin-right: 40px;
}

.marginright50 {
  margin-right: 50px;
}

.marginauto {
  margin-left: auto;
  margin-right: auto;
}

.paddingtop0 {
  padding-top: 0 !important;
}

.paddingtop5 {
  padding-top: 5px;
}

.paddingtop10 {
  padding-top: 10px;
}

.paddingtop15 {
  padding-top: 15px;
}

.paddingtop20 {
  padding-top: 20px;
}

.paddingtop25 {
  padding-top: 25px;
}

.paddingtop30 {
  padding-top: 30px;
}

.paddingtop33 {
  padding-top: 33px;
}

.paddingtop35 {
  padding-top: 35px;
}

.paddingtop40 {
  padding-top: 40px;
}

.paddingtop50 {
  padding-top: 50px;
}

.paddingtop60 {
  padding-top: 60px;
}

.paddingtop80 {
  padding-top: 80px;
}

.paddingtop100 {
  padding-top: 100px;
}

.paddingtop120 {
  padding-top: 120px;
}

.paddingbottom0 {
  padding-bottom: 0 !important;
}

.paddingbottom5 {
  padding-bottom: 5px;
}

.paddingbottom10 {
  padding-bottom: 10px;
}

.paddingbottom15 {
  padding-bottom: 15px;
}

.paddingbottom20 {
  padding-bottom: 20px;
}

.paddingbottom30 {
  padding-bottom: 30px;
}

.paddingbottom35 {
  padding-bottom: 35px;
}

.paddingbottom40 {
  padding-bottom: 40px;
}

.paddingbottom45 {
  padding-bottom: 45px;
}

.paddingbottom50 {
  padding-bottom: 50px;
}

.paddingbottom60 {
  padding-bottom: 60px;
}

.paddingbottom80 {
  padding-bottom: 80px;
}

.paddingbottom100 {
  padding-bottom: 100px;
}

.paddingleft0 {
  padding-left: 0 !important;
}

.paddingleft2 {
  padding-left: 2px;
}

.paddingleft5 {
  padding-left: 5px;
}

.paddingleft7 {
  padding-left: 7px;
}

.paddingleft10 {
  padding-left: 10px;
}

.paddingleft15 {
  padding-left: 15px;
}

.paddingleft20 {
  padding-left: 20px;
}

.paddingleft30 {
  padding-left: 30px;
}

.paddingleft40 {
  padding-left: 40px;
}

.paddingleft50 {
  padding-left: 50px;
}

.paddingright0 {
  padding-right: 0 !important;
}

.paddingright2 {
  padding-right: 2px;
}

.paddingright5 {
  padding-right: 5px;
}

.paddingright7 {
  padding-right: 7px;
}

.paddingright10 {
  padding-right: 10px;
}

.paddingright15 {
  padding-right: 15px;
}

.paddingright20 {
  padding-right: 20px;
}

.paddingright30 {
  padding-right: 30px;
}

.paddingright40 {
  padding-right: 40px;
}

.paddingright50 {
  padding-right: 50px;
}

.padding1 {
  padding: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding2 {
  padding: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding5 {
  padding: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding10 {
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding15 {
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding20 {
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.padding25 {
  padding: 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.padding30 {
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding40 {
  padding: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding50 {
  padding: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding15_30 {
  padding: 15px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row1 {
  margin-left: -1px;
  margin-right: -1px;
}

.row2 {
  margin-left: -2px;
  margin-right: -2px;
}

.row5 {
  margin-left: -5px;
  margin-right: -5px;
}

.row10 {
  margin-left: -10px;
  margin-right: -10px;
}

.row15 {
  margin-left: -15px;
  margin-right: -15px;
}

.row20 {
  margin-left: -20px;
  margin-right: -20px;
}

.row30 {
  margin-left: -30px;
  margin-right: -30px;
}

.row50 {
  margin-left: -50px;
  margin-right: -50px;
}

.mo_dis {
  display: none;
}

.mo_undis {
  display: block;
}

/*-----------------线条---------------------*/
.line-fff {
  width: 100%;
  height: 1px;
  line-height: 1px;
  font-size: 0;
  background: #fff;
  border: 0 none;
}

.line-000 {
  width: 100%;
  height: 1px;
  line-height: 1px;
  font-size: 0;
  background: #000;
  border: 0 none;
}

.line-0068b7 {
  width: 100%;
  height: 2px;
  line-height: 2px;
  font-size: 0;
  background: #0068b7;
  border: 0 none;
}

.line-d82e8b {
  width: 100%;
  height: 4px;
  line-height: 4px;
  font-size: 0;
  background: #d82e8b;
  border: 0 none;
}

.line-e2e2e2no {
  width: 100%;
  height: 1px;
  line-height: 4px;
  font-size: 0;
  background: #e2e2e2;
  border: 0 none;
}

.line-e2e2e2 {
  width: 100%;
  height: 1px;
  line-height: 4px;
  font-size: 0;
  background: #e2e2e2;
  border: 0 none;
}

.line-e2e2e2::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 3px;
  background: #5a7c90;
  position: absolute;
  left: 0;
}

.link-d6d6d6 {
  width: 100%;
  height: 1px;
  line-height: 1px;
  font-size: 0;
  background: #d6d6d6;
  border: 0 none;
}

.line-b7b7b7 {
  width: 100%;
  height: 1px;
  line-height: 4px;
  font-size: 0;
  border: 0 none;
  border-bottom: 1px dashed #b7b7b7;
}

.line-1550aa {
  width: 100%;
  height: 1px;
  line-height: 1px;
  font-size: 0;
  background: #1550aa;
  border: 0 none;
}

.border_b_ececec {
  border-bottom: 1px solid #ececec;
}

.border-fff {
  border-bottom: 1px solid #fff;
}

.border-5a7c90 {
  border-bottom: 1px solid #5a7c90;
}

.border-003b5c {
  border: 1px solid #003b5c;
}

.border-00 {
  border-bottom: 1px solid #000;
}

.border-1e55a8 {
  border-bottom: 1px solid #1e55a8;
}

.border-484c4c {
  border-bottom: 1px solid #484c4c;
}

.border-2264c8 {
  border: 1px solid #2264c8;
}

.border-e2e2e2 {
  border: 1px solid #e2e2e2;
}

.border_fff-3::before {
  content: "";
  width: 95%;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -15px;
}

.border-1f1f1f {
  border: 1px solid #1f1f1f;
}

.border-bot-31ae7b {
  border-bottom: 1px solid #31ae7b;
}

.kv-btn1.borderfff {
  border: 1px solid #fff;
}

.kv-btn1.borderfff:hover {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/*-------------------按钮-------------------*/
.button,
a.button,
input.button {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  appearance: none;
  cursor: pointer;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition-property: all;
  transition-property: all;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}

.button-s,
a.button-s,
input.button-s {
  padding: 0 15px;
  height: 22px;
  line-height: 22px;
}

.button-m,
a.button-m,
input.button-m {
  padding: 0 20px;
  height: 30px;
  line-height: 30px;
}

.button-l,
a.button-l,
input.button-l {
  padding: 0 40px;
  height: 50px;
  line-height: 50px;
}

.button-l .iconfont,
a.button-l .iconfont,
input.button-l .iconfont {
  line-height: 50px !important;
}

.button-blue,
a.button-blue,
input.button-blue {
  background: #0068b7;
  color: #fff;
}

.button-blue:hover,
a:hover.button-blue,
input.button-blue:hover {
  background: #3785c0;
  color: #fff;
}

.button-blue:active,
a:active.button-blue,
input.button-blue:active {
  background: #3785c0;
  color: #fff;
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
}

.button-yellow,
a.button-yellow,
input.button-yellow {
  background: #ffad38;
  color: #fff;
}

.button-yellow:hover,
a:hover.button-yellow,
input.button-yellow:hover {
  background: #ffcf8b;
  color: #fff;
}

.button-yellow:active,
a:active.button-yellow,
input.button-yellow:active {
  background: #ffcf8b;
  color: #fff;
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
}

.button-blue-l,
a.button-blue-l,
input.button-blue-l {
  border: 1px solid #003b5c;
  color: #003b5c;
}

.button-blue-l:hover,
a:hover .button-blue-l,
a:hover.button-blue-l,
input.button-blue-l:hover {
  background: #003b5c;
  color: #fff;
}

.button-blue-l:active,
a:active.button-blue-l,
input.button-blue-l:active {
  background: #003b5c;
  color: #fff;
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
}

.button-gray,
a.button-gray,
input.button-gray {
  background: #eee;
  color: #000;
}

.button-gray:hover,
a:hover.button-gray,
input.button-gray:hover {
  background: #d0d0d0;
  color: #000;
}

.button-gray:active,
a:active.button-gray,
input.button-gray:active {
  background: #bcbcbc;
  color: #000;
  -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) inset;
}

.return-btn {
  padding: 8px 25px;
  background: #bfced6;
  border-radius: 5px;
  color: #003b5c;
}

.return-btn:hover {
  background: #31ae7b;
  color: #fff;
}

/* ------------------三角-------------------- */
.triangle-up {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 40px solid #fff;
  z-index: 1;
}

/*-------------------通用-------------------*/
.com-rows_1 {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.com-rows_2 {
  height: 2.75em;
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*最多显示2行，超出省略号*/
}

.com-rows_2no {
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*最多显示2行，超出省略号*/
}

.com-rows_max2 {
  max-height: 2.75em;
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*最多显示2行，超出省略号*/
}

.com-rows_3 {
  height: 4.45em;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.com-rows_max3 {
  max-height: 4.45em;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.com-rows_4no {
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.com-rows_4 {
  height: 5.55em;
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.com-rows_max4 {
  max-height: 5.55em;
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.com-rows_5 {
  height: 6.95em;
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.com-rows_6 {
  height: 8.35em;
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.com-rows_6no {
  height: 9.35em;
  line-height: 1.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.zoomimg {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover .zoomimg,
.zoomimg:hover,
.foundSwiper .com-link:hover .zoomimg {
  transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -moz-transform: scale(1.05);
}

.com-link {
  display: block;
  overflow: hidden;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}

.com-link:hover {
  color: #000;
  -moz-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.com-link.colorfff:hover {
  color: #fff;
}

.com-link.bg1e55a8:hover,
.com-link.bg04357c:hover {
  background: #154996;
}

.bgedf2f9-link:hover .bgf5f5f5,
.bgedf2f9-link:hover {
  background: #edf2f9;
}

.bgedf2f9-link:hover .color999999 {
  color: #1e55a8;
}

.com-link-032763:hover {
  background: #003b5c;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}

.com-link-032763:hover.color2264c8,
.com-link-032763:hover .color003b5c {
  color: #fff;
}

.com-link-032763.yfcxpage_item2:hover {
  background-color: #31ae7b;
}

.block-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.block-padding-t {
  padding-top: 80px;
}

.block-padding-b {
  padding-bottom: 80px;
}

.block-padding-t65 {
  padding-top: 65px;
}

.block-padding-b65 {
  padding-bottom: 65px;
}

.block-padding-t60 {
  padding-top: 60px;
}

.block-padding-b60 {
  padding-bottom: 60px;
}

.card-padding {
  padding: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.word-break_word {
  word-break: break-word;
}

/* -------------------旋转------------------ */
.transform_90 {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.transform_180 {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/*-------------------头部-------------------*/
.headbox {
  width: 100%;
  height: 0;
  position: fixed;
  z-index: 1000;
}

.menu {
  display: none;
}

.navbox {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.logo {
  width: auto;
  height: 60px;
  position: absolute;
  left: 5%;
  bottom: 10px;
  z-index: 10;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.headbox.current .navbox,
.headbox.elCurrent .navbox {
  background: rgba(255, 255, 255, 1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  top: -30px;
}

.headbox.current .logo,
.headbox.elCurrent .logo {
  height:50px;
}

.language {
  height: 24px;
  line-height: 24px;
  position: absolute;
  top: 30px;
  right: 5%;
  z-index: 10;
}

.language i {
  cursor: pointer;
}

.language a:hover {
  background: #1e55a8;
}

.language a,
.language span {
  float: left;
  display: block;
  margin: 0 2px;
  width: 28px;
  text-align: center;
  height: 20px;
  line-height: 20px !important;
  font-size: 12px;
  color: #fff;
  font-family: Arial, "Helvetica Neue", Helvetica;
}

.language-a {
  background: #828282;
}

.language-span {
  background: #31ae7b;
}

.headspace {
  width: 100%;
  height: 71px;
}

.language {
  margin-top: 26px;
  margin-left: 20px;
}

/* nav_menu */
.nav {
  height: 70px;
  line-height: 70px;
  position: absolute;
  top: 30px;
  right: 12%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav .menuLi {
  float: left;
  display: block;
  position: relative;
  margin: 0 20px;
}

.nav .menuLi .mainmenu {
  display: block;
  height: 70px;
  line-height: 70px;
  color: #003b5c;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mainmenu-dot {
  width: 0;
  height: 3px;
  background: #4bb2cc;
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
}

.nav .menuLi .mainmenu:hover,
.nav .menuLi .mainmenu.menuLiBnameover,
.current .nav .menuLi .mainmenu:hover,
.elCurrent .nav .menuLi .mainmenu:hover {
  color: #31ae7b;
}

.nav .menuLi .mainmenu:hover .mainmenu-dot,
.nav .menuLi .mainmenu.menuLiBnameover .mainmenu-dot,
.nav .menuLi .mainmenu.menuLipitchon:hover .mainmenu-dot,
.nav .menuLi .mainmenu.menuLipitchon.menuLiBnameover .mainmenu-dot {
  width: 100%;
  left: 0;
}

.nav .menuLi .mainmenu.menuLipitchon .mainmenu-dot {
  width: 15px;
  left: 20px;
}

.nav .menuLi .mainmenu.menuLipitchon,
.current .nav .menuLi .mainmenu.menuLipitchon,
.elCurrent .nav .menuLi .mainmenu.menuLipitchon {
  color: #31ae7b;
  font-weight: bold;
}

.menuListBox {
  width: auto;
  height: auto;
  line-height: 38px;
  position: absolute;
  top: 70px;
  left: 0;
  background: #31ae7b;
  display: none;
}

.menuListBox a {
  display: block;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  white-space: nowrap;
}

.menuListBox a:hover {
  background: #003b5c;
  color: #fff;
}

.current .nav .menuLi .mainmenu,
.elCurrent .nav .menuLi .mainmenu {
  color: #000;
}

.menuListBox .menuListBox-child a {
  display: block;
  width: 100%;
  padding: 0 35px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  white-space: nowrap;
}

.language-menuLi .icon-diqiu {
  line-height: 70px;
  color: #1e55a8;
}

.language-menuLi .menuListBox {
  width: 50px;
  left: 50%;
  margin-left: -25px;
}

.language-menuLi .menuListBox a {
  padding: 0;
  text-align: center;
}

/*-------------------底部-------------------*/
.footbox a:hover {
  color: #003b5c;
}

.footbox p a:hover {
  color: #003b5c;
}

.footbox {

  border-top: 1px solid #d0dbea;
}

.yfcxitem {
  background-color: #f2f5f7;
}

.copyright {
  position: absolute;
  top: 0;
  right: 0;
}

.copyright a:hover {
  color: #fff;
}

.gototop {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #707070;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1001;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  display: none;
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
}

.gototop:hover {

  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.gototop:hover .iconfont {
  color: #000;
}

.gototop .iconfont {
  color: #fff;
}

.gototop .iconfont img {
  transform: rotate(-90deg);
  margin-top: 7px;
}

.foot-line {
  position: relative;
  height: 100%;
}

.foot-line::before {
  content: "";
  display: block;
  width: 1px;
  height: 180px;
  background: #d0dbea;
  position: absolute;
  right: 0;
  top: 20px;
}

.footselect {
  background: url(../images/select.png) right center no-repeat;
  background-size: 15px 13px;
  background-position: 100% 33%;
  padding-right: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #cccccc;
}

.follow {
  width: 45%;
  float: right;
}

/* ----------------------首页---------------------- */
.scroll-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 45px;
  width: 30px;
  background-size: 100% 100%;
  font-size: 22px;
  color: rgba(255, 255, 255, 1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -15px;
  z-index: 1000;
}

.scroll-icon::after {
  font-family: "iconfont";
  font-weight: 100;
  content: "\e60f";
  -webkit-animation: scroll-icon 1.5s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
  animation: scroll-icon 1.5s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
}

@-webkit-keyframes scroll-icon {
  0% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    opacity: 0;
  }

  30%,
  70% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 0;
  }
}

@keyframes scroll-icon {
  0% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    opacity: 0;
  }

  30%,
  70% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 0;
  }
}

.indexkvbox .index_kvbg {
  -moz-transition: 5s;
  -o-transition: 5s;
  -webkit-transition: 5s;
  transition: 5s;
}

.indexkvbox:hover .index_kvbg {
  transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -moz-transform: scale(1.05);
}

.indexkv-animation01,
.indexkv-animation02,
.indexkv-animation03,
.indexkv-animation04 {
  transition: all ease-out 0.6s;
  -webkit-transition: all ease-out 0.6s;
  -moz-transition: all ease-out 0.6s;
  -o-transition: all ease-out 0.6s;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.indexkv-animation01,
.indexkv-animation04 {
  margin-top: 50px;
}

.indexkv-animation02 {
  margin-top: 60px;
}

.indexkv-animation03 {
  margin-top: 80px;
}

.waper-height40 {
  height: 249px !important;
  overflow: hidden;
}

.waper-height60 {
  height: 331px;
  background: url(../images/jl2.jpg) right center no-repeat;
}

.waper-height100 {
  height: 600px;
  background: url(../images/jl1.jpg) center center no-repeat;
}

.pagination-newsSwiper {
  width: 50%;
  bottom: 20px;
  left: 100%;
}

.newsSwiper .swiper-wrapper,
.newsSwiper .swiper-slide,
.inedxNewSwiper .swiper-wrapper {
  height: auto !important;
}

.inedxNewSwiper .swiper-slide {
  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;
  transition: 300ms;
  transform: scale(0.8);
}

.inedxNewSwiper .swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
}

.inedxNewSwiper .swiper-slide.swiper-slide-prev {
  transform-origin: top left;
}

.inedxNewSwiper .swiper-slide.swiper-slide-next {
  transform-origin: top right;
}

.inedxNewSwiper.swiper-container-horizontal .swiper-pagination {
  bottom: 0;
}

.inedxNewSwiper .swiper-pagination-bullet {
  background: #d8d8d8;
  opacity: 1;
}

.inedxNewSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #31ae7b;
}

.indexkv.swiper-container-horizontal .swiper-pagination {
  bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.indexkv .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
}

.indexkv .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: solid 1px #ffffff;
  background:none ;
  width: 10px;
  height: 10px;
}

.more_a {
  top: 30%;
}

.zp-lab {
  height: 248px;
}

.bg-change {
  background: -moz-linear-gradient(left,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */

  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */

  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
  /* IE6-9 */
}

.idxicons {
  height: 48px;
}



/* ----------------------关于恒瑞---------------------- */
.index-bg {
  background: url(../images/index-bg.jpg) center no-repeat;
  background-size: cover;
}

.indexHonor-kv {
  background: url(../images/showlis4.jpg) left center no-repeat;
  background-size: cover;
}

.trainHonor-kv {
  height: 400px;
  background: url(../images/trainimg2.jpg) center center;
}

.hover-zoom {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.hover-zoom:hover {
  background-size: 110% 110%;
}

.indexFound-bg {
  height: calc(30vh);
  min-height: 200px;
}

/* --------------------公司概况----------------- */
.aboutp_gsgk {
  transition: all .5s;
}

.aboutp_gsgk:hover {
  background-color: #003b5c;
}

.aboutp_gsgk:hover .color003b5c {
  color: #ffffff;
}

.aboutp_gszl {
  background-color: #31ae7b;
}

.aboutgsgk_item1 {
  background: url(../images/aboutgsgkbg1.jpg) center center no-repeat;
  background-size: cover;
}
.gsgk_topitem_l {
  padding: 70px 0px;
}
.gsgkhis_l {
  position: absolute;
  align-items: flex-start;
}

.gsgkhis_l .gsgkhis_ldian {
  margin-top: 8px;
}

.gsgkhis_posa1 {
  top: 0px;
  right: 70px;
}

.gsgkhis_posa2 {
  top: 85px;
  right: -60px;
}

.gsgkhis_posa3 {
  top: 170px;
  right: 66px;
}

.gsgkhis_posa4 {
  top: 255px;
  right: -84px;
}

.gsgkhis_posa5 {
  top: 340px;
  right: 93px;
}

.gsgkhis_posa6 {
  top: 420px;
  right: -29px;
}

.gsgkhis_posa7 {
  top: 489px;
  right: 195px;
}

.gsgkhis_ldian {
  margin-left: 25px;
}

.gsgkhis_r .gsgkhis_ldian {
  margin-right: 25px;
}


.pulse {
  width: 18px;
  height: 18px;
  background-color: #31ae7b;
  border-radius: 100%;
  position: relative;
}

.hisring {
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0.8;
  animation: pulsing 2s infinite;
}

.hisring:nth-of-type(1) {
  animation-delay: -0.5s;
}

.hisring:nth-of-type(2) {
  animation-delay: -1s;
}

@keyframes pulsing {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}


.gsgkhis_ldesc {
  text-align: right;
}

.gsgkhis_r:nth-child(2n) .gsgkhis_ldesc {
  text-align: left;
}




.aboutqyjzg {
  background: url(../images/aboutqygk_jzbg.jpg) top center no-repeat;
  background-size: cover;
  padding: 80px 0px;
}

.aboutqujzg_list ul {
  justify-content: space-between;
}

.aboutqujzg_list ul li {
  height: 200px;
  transition: all .5s;
  overflow: hidden;
  background-color: #ffffff;
}

.aboutqujzg_list ul li.active {
  width: 35%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.aboutqujzg_li_on {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: url(../images/aboutqygk_lionbg.jpg) no-repeat center;
  background-size: cover;
  opacity: 0;
  transition: all .5s;
}

.aboutqujzg_list ul li.active .aboutqujzg_li_on {
  opacity: 1;

}

.aboutqyyj_item {
  padding: 80px 0px;
  background-color: #ffffff;
}

.aboutqyyj_botimg img {
  height: 422px;
  object-fit: cover;
}

.aboutqyyj_botdesc {
  padding: 0px 60px;
  height: 422px;
}

.aboutqyyj_botdesc h4 {
  padding: 80px 0px 30px 50px;
  background: url(../images/aboutqyyjico.png) no-repeat center left;
  background-size: 35px;
  background-position-y: 71px;
}

.aboutqysm_item {
  background: url(../images/aboutqygk_qysmbg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0px;
}

.aboutqysm_desc {
  background: url(../images/aboutqysmico.png) no-repeat left top;
  background-size: 65px;
  padding-left: 90px;
}

.aboutrcll_item {
  padding: 80px 0px;
  background-color: #ffffff;
}



.aboutCourse {
  position: relative;
  background: url(../images/ablc.jpg) top center no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.timeline-box {
  padding-top: 50px;
  padding-bottom: 50px;
}

#timeline {
  width: 100%;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#timeline:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #afc7cf;
  left: 50%;
  top: 0;
  position: absolute;
}

#timeline:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}

#timeline .timeline-item {
  margin-top: 0;
  position: relative;
}

#timeline .timeline-item .timeline-icon {
  background: #043b8b;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 50.5%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
  margin-left: -6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#timeline .timeline-item .timeline-icon::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 31px;
  background: url(../images/time-icon.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50.5%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#timeline .timeline-item .timeline-content {
  width: 46%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#timeline .timeline-item .timeline-content.right {
  float: right;
}

.timeline-txt,
.timeline-year {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.min-height100 {
  min-height: 100px;
}

.titRtight {
  left: 60%;
}

.bgfffab {
  height: 100%;
  position: absolute;
  left: 0;
  background: #fff;
  z-index: 1;
}

/* 人文理念 */
.aboutrcll_top {
  justify-content: space-between;
  align-items: flex-start;
}

.aboutrcll_more {
  border: solid 1px #bfced6;
  height: 69px;
  width: 100%;
  cursor: pointer;
  background-color: #ffffff;
  transition: all .5s;
}

.aboutrcll_moredesc {
  height: 0px;
  overflow: hidden;
  transition: all .5s;
}

.aboutrcll_moredesc p {
  padding: 0px 36px;
}

.aboutrcll_more a {
  text-align: left;
  height: 69px;
  transition: all .5s;
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

.aboutrcll_more a span {
  padding-left: 36px;
  line-height: 69px;
}

.aboutrcll_more a img {
  margin-left: 10px;
}

/*.aboutrcll_more a:hover {*/
/*  background-color: #31ae7b;*/
/*}*/
/*.aboutrcll_more a:hover span {*/
/*  color: #ffffff;*/
/*}*/
/*.aboutrcll_more a:hover img {*/
/*  filter: brightness(1000%) grayscale(100%) ;*/
/*}*/
.aboutrcll_more_a {
    justify-content: flex-start;
}
.aboutrcll_more.aboutrcll_more_active {
  
  height: 280px;
}

.aboutrcll_more.aboutrcll_more_active .aboutrcll_moredesc {
  height: 200px;
  overflow: hidden;
}

.aboutrcll_more.aboutrcll_more_active a img {
  transform: rotate(180deg);
}



.aboutrcll_itembot {
  background: url(../images/aboutrcllbg.jpg) center no-repeat;
  background-size: cover;
  height: 760px;
}

.aboutrcll_li {
  text-align: left;
  position: absolute;
  transition: all .5s;
  cursor: pointer;
  width: 390px;
}

.aboutrcll_li1 {
  text-align: right;
  top: 180px;
  left: 5px;
}

.aboutrcll_li2 {
  top: 630px;
  left: 700px;
}

.aboutrcll_li3 {
  top: 150px;
  left: 950px;
}

.aboutrcll_lidesc_on {
  opacity: 0;
}

.aboutrcll_li.active {
  background: url(../images/aboutrcll_lidescbg.png) center no-repeat;
  background-size: 100% 100%;
  padding: 30px 20px 30px 40px;
}

.aboutrcll_li.active h3 {
  color: #31ae7b;
}

.aboutrcll_li.active p {
  color: #003b5c;
}

.aboutrcll_li.active .aboutrcll_lidesc_on {
  opacity: 1;
  transition: all .5s;
}

.aboutrcll_li1.active {
  left: -50px;
  padding: 30px 40px 30px 20px;
  background-image: url(../images/aboutrcll_lidescbgr.png);
}

.aboutrcll_li2.active  {
  top:558px;
  left: 715px;
  /* background-image: url(../images/aboutrcll_lidescbgtop.png); */
}

.aboutrcll_whll {
  position: absolute;
  opacity: 0;
  transition: all .5s;
  width: 350px;
  height: 150px;
}

.aboutrcll_whll1 {
  top: 205px;
  left: 102px;
}

.aboutrcll_whll2 {
  top: 582px;
  left: 678px;
}

.aboutrcll_whll3 {
  top: 181px;
  left: 884px;
}

.aboutrcll_whll .pulse {
  width: 16px;
  height: 16px;
  background-color: #ffffff;
}

.aboutrcll_whll_on,.aboutrcll_whll.active {
  opacity: 1;
}


/* -------------------党建工作------------------- */
.partyBuild-bg {
  background: url(../images/partybuilding-bg.jpg) 64% center no-repeat;
  background-size: cover;
}

/* -------------------------公司战略-------------------------- */
.strategy-kv {
  height: calc(100vh + 170px);
  min-height: 500px;
  background: url(../images/strategy-kv.jpg) 30% center no-repeat;
  background-size: cover;
}

.strkv-con.poabsolute-h50 {
  top: 10%;
}

.strtxt-con {
  position: absolute;
  bottom: 5%;
}

.aboutpage_gszl {
  height: 770px;
}

/* -------------------------公司荣誉-------------------------- */
.honor-kv {
  height: calc(100vh - 180px);
  min-height: 500px;
  background: url(../images/honor-kv.jpg) right center no-repeat;
  background-size: cover;
}

.honor-swiper {
  top: calc(50% - 180px);
}

.honor-prev.swiper-button-prev,
.honor-next.swiper-button-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #003b5c;
  text-align: center;
}

.honor-prev.swiper-button-prev:hover,
.honor-next.swiper-button-next:hover {
  background: #003b5c;
  color: #fff;
}

.honor-swiper .swiper-slide {
  opacity: 0;
}

.honor-swiper .swiper-slide.swiper-slide-next,
.honor-swiper .swiper-slide.swiper-slide-prev {
  opacity: 0.5;
}

.honor-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.2);
}

.honor-swiper .swiper-slide .bgfff {
  min-height: 380px;
}

/* -------------------------合规发展-------------------------- */
.deve-kv {
  height: calc(70vh);
  min-height: 500px;
  background: url(../images/deve-kv.jpg) center no-repeat;
  background-size: cover;
}

.devFound-bg {
  height: calc(65vh);
  min-height: 500px;
}

.devlis-kv {
  height: calc(30vh);
  min-height: 200px;
  background: url(../images/devlis6-kv.jpg) left center no-repeat;
  background-size: cover;
}

.devlis-kv a:hover {
  border-bottom: 1px solid #fff;
}

/* -------------------------社会公益-------------------------- */
.social-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;

  /* Center slide text vertically */
  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;
  transition: 300ms;
  transform: scale(0.9);
}

.social-swiper .swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
}

.social-kv .weprodutSwiper-pagination {
  left: 0;
  width: 100%;
}

.swiper-button-prev.social-prev {
  left: -20px;
}

.swiper-button-next.social-next {
  right: -20px;
}

.swiper-button-next.social-next:hover,
.swiper-button-prev.social-prev:hover {
  color: #1e55a8;
}

.social-kv {
  background: url(../images/socialis-bg.jpg) bottom center no-repeat;
  background-size: cover;
}

.social-kv .poabsolute-h50 {
  top: 20%;
}

.btn_003b5c {
  padding: 5px 30px 10px 30px;
  background: #003b5c;
  border-radius: 50px;
  color: #fff;
  line-height: 20px;
}

.btn_003b5c:hover {
  color: #fff;
  background: #2264c8;
}

.socialis ul li p {
  opacity: 0.5;
}

.socialis ul li h5 {
  font-weight: bold;
}

/* -------------------------公示公告-------------------------- */
.notice-kv {
  min-height: calc(100vh - 180px);
  background: url(../images/notice-kv.jpg) top center no-repeat;
  background-size: cover;
}

.pdf_lab1 a {
  padding: 10px 40px;
  background: #003b5c;
  border: 1px solid #003b5c;
  border-radius: 50px;
  display: inline-block;
}

.pdf_lab1 a.com-link:hover {
  background: transparent;
  color: #003b5c;
}

.hand {
  display: inline-block;
  width: 15px;
  height: 20px;
  background: url(../images/han.png) center center no-repeat;
  background-size: contain;
  margin-top: 5px;
  padding-right: 5px;
}

/* -------------------------健康+-------------------------- */
.healthIndex-bg {
  background: url(../images/index-kv.jpg) center center no-repeat;
  background-size: cover;
}

/* -------------------------创新研发-------------------------- */
.innov-kv {
  height: calc(100vh - 70px);
  min-height: 600px;
  background: url(../images/innovation-kv.jpg) center center no-repeat;
  background-size: cover;
}

.kv-btn {
  border: 1px solid #003b5c;
  border-radius: 50px;
  padding: 20px;
  color: #003b5c;
}

.kv-btn.colorfff {
  border: 1px solid #fff;
}

a.kv-btn:hover {
  border: 1px solid rgba(19, 66, 144, 0.7);
}

a.kv-btn.colorfff:hover {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.innovLabel span {
  display: block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border: 1px solid #003b5c;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  text-align: center;
}

.swPro-txt {
  margin-top: -50px;
  min-height: 540px;
}

.swPro-txt p {
  width: calc(100% - 20px);
  float: left;
}

.dian {
  float: left;
  width: 8px;
  height: 8px;
  line-height: 8px;
  border-radius: 50%;
  background: #003b5c;
  margin-top: 6px;
  margin-right: 5px;
}

.dian.bg000 {
  background: #000;
}

.yfTable {
  width: 100%;
}

.yfTable th {
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  background: #2264c8;
  border-right: 1px solid #fff;
}

.yfTable th:nth-of-type(1),
.yfTable th:nth-of-type(2),
.yfTable th:nth-of-type(3) {
  background: #134aa5;
}

.yfTable th:nth-of-type(10) {
  border-right: none;
}

.yfTable tr {
  border-bottom: 1px solid #d3d3d3;
}

.yfTable tr td {
  font-size: 12px;
  color: #666;
  padding: 10px 0;
  box-sizing: border-box;
}

.yfTable tr td:nth-of-type(1) {
  color: #000;
}

.yfTable tr td:nth-of-type(1),
.yfTable tr td:nth-of-type(2),
.yfTable tr td:nth-of-type(3) {
  padding: 5px;
}

.yfProgress {
  display: block;
  height: 20px;
  background: #134aa5;
  margin-bottom: 5px;
}

.innovFound-bg {
  height: calc(40vh);
  min-height: 350px;
}

.innovKv-lis {
  border-right: 1px solid #adb2b4;
  border-style: right dotted;
}

/* .parallax-window {
  min-height: 400px;
  background-image: url('../images/innovfound1.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
} */
.parallax-mirror {
  height: 100% !important;
}

.parallax-slider {
  top: 5%;
}

/* 公司宗旨 */
.aboutpage_gszhongzhi {
  background-image: url(../images/gszhongzhibg.jpg);
}

.aboutpage_gszzitem {
  background: url(../images/gszhongzhibg_line.png) no-repeat center;
  background-size: 1px 100%;
  border-top: 1px solid rgba(90, 124, 144, 0.2);
  width: 100%;
  background-color: rgba(191, 206, 214, 0.36);
  padding: 90px 0px;
  bottom: 0px;
}

.aboutpage_gszzli {
  padding: 0px 50px;
}

/* -------------------------生产体系-------------------------- */
.system-kv {
  height: calc(100vh - 70px);
  min-height: 600px;
  background: url(../images/system-kv.jpg) center center no-repeat;
  background-size: cover;
}

.black-btn {
  padding: 10px 40px;
  border: 1px solid #fff;
  border-radius: 50px;
}

.swiperFound-bg {
  height: calc(40vh);
  min-height: 300px;
}

.swiperFound-bg .swiper-button-prev.weprodutSwiper-prev {
  top: 60%;
}

.swiperFound-bg .swiper-button-next.weprodutSwiper-next {
  top: 60%;
}

.swiper-pagination-bullet {
  margin: 3px;
}

.weprodutSwiper-pagination {
  left: 0;
  width: 100%;
}

.swiperFound2-bg {
  height: calc(30vh);
  min-height: 300px;
}

.swiperFound2-bg .swiper-button-prev.weprodutSwiper-prev {
  top: 60%;
}

.swiperFound2-bg .swiper-button-next.weprodutSwiper-next {
  top: 60%;
}

.foundSwiper2 .swiper-slide .overhidden {
  max-height: 200px;
}

/* -------------------------融入国际化-------------------------- */
.inter-kv {
  height: calc(100vh - 70px);
  min-height: 600px;
  background: url(../images/inter-kv.jpg) center center no-repeat;
  background-size: cover;
}

.intertxt-kv {
  height: calc(50vh);
  min-height: 300px;
  background: url(../images/international-img01.jpg) center left no-repeat;
  background-size: cover;
}

.inter-timer:before {
  content: "";
  width: 100%;
  height: 5px;
  background: #9ca2fd;
  margin: auto 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.inter-timer:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0;
  background: #003b5c;
  border-radius: 50px;
  border: 2px solid #9ca2fd;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  left: 0;
}

.inter-timer .timerline:last-of-type:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0;
  background: #003b5c;
  border-radius: 50px;
  border: 2px solid #9ca2fd;
  position: absolute;
  bottom: -38px;
  right: -18%;
}

.inter-timer .timerline {
  width: 25%;
  float: left;
  position: relative;
}

.inter-timer .timerline-content {
  padding: 30px;
  box-sizing: border-box;
  border-radius: 15px;
  text-align: left;
  background: #2264c8;
  z-index: 1;
  position: relative;
  /* margin-left: 80px; */
  width: 120%;
  box-sizing: border-box;
  height: 287px
}

.inter-timer .spot {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0;
  background: #003b5c;
  border-radius: 50px;
  border: 2px solid #9ca2fd;
  position: absolute;
  bottom: -38px;
  left: 26px;
}

.inter-timer .timerline:first-of-type {
  margin-left: 7%
}

.inter-timer .timerline:nth-of-type(3),
.inter-timer .timerline:last-of-type {
  margin-left: -8%
}

.inter-timer .timerline:last-of-type .timerline-content {
  width: 100%
}

.inter-timer .timerline.bottom {
  margin: 347px 0 0 -10%;
}

.inter-timer .timerline.bottom .spot {
  bottom: auto;
  top: -47px;
  left: -23px;
}

.inter-timer .timerline.bottom .timerline-content {
  margin-left: -50px;
  margin-top: 5px;
  background: #2280c8;
}

.inter-timer {
  height: 650px;
}

.triangle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #2264c8;
  position: absolute;
  bottom: -10px;
}

.bottom .triangle::after {
  border-bottom: 10px solid #2280c8;
  bottom: auto;
  top: -10px;
  border-top: none;
}

.spot-txt p {
  width: calc(100% - 20px);
  float: left;
}

.kv-btn1 {
  border: 1px solid #000;
  border-radius: 50px;
  padding: 20px;
}

a.kv-btn1:hover {
  border: 1px solid #fff;
}

.timertxt01 {
  left: calc(0% - 50px);
  width: 49px;
}

.timertxt02 {
  left: calc(-25% - 50px);
  width: 49px;
}

.weinrerSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-button-prev.weinrerSwiper-prev,
.swiper-button-next.weinrerSwiper-next {
  width: 30px;
  height: 30px;
  border: 1px solid #003b5c;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  color: #003b5c;
}

/* -------------------------产品-------------------------- */
.proIndex-bg {
  background: url(../images/index-kv.jpg) center no-repeat;
  background-size: cover;
}

.proIndex-set {
  top: 40%;
}

.swiper-button-prev.weprodutSwiper-prev {
  left: -68px;
}

.swiper-button-next.weprodutSwiper-next {
  right: -68px;
}

.swiper-button-prev.weprodutSwiper-prev:hover,
.swiper-button-next.weprodutSwiper-next:hover,
.swiper-button-prev.weinrerSwiper-prev:hover,
.swiper-button-next.weinrerSwiper-next:hover {
  color: #04357c;
}

.swiper-button-prev.weprodutSwiper-prev {
  background: url(../images/prolisthome_icoprev.png) center no-repeat;
}

.swiper-button-next.weprodutSwiper-next {
  background: url(../images/prolisthome_iconext.png) center no-repeat;
}

.pin li {
  width: 12.5%;
  float: left;
  min-height: 118px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
}

.pin2 li {
  width: 11.11%;
}

/* -------------------------创新药-------------------------- */
.box-pie li {
  position: relative;
}

.abridge {
  overflow: hidden;
}

.pice-con {
  width: calc(100% - 35%);
  float: right;
}

.propdfico {
  position: absolute;
  top: 2px;
  left: 120px;
  height: 18px;
}

.abridge-btn a.color31ae7b:hover {
  color: #008650;
}

.prolist_title:hover {
  color: #31ae7b;
}

/* -------------------------新闻与媒体-------------------------- */
#current {
  position: relative;
  color: #31ae7b;
}

#current::before {
  content: "";
  width: calc(100% - 20px);
  height: 3px;
  background: #31ae7b;
  position: absolute;
  bottom: -4px;
}

.listnews_htab:hover {
  color: #31ae7b;
}

.listnews_hli:hover {
  background-color: #31ae7b;
}

.listnews_hli:hover p {
  color: #ffffff;
}

/* -------------------------新闻与媒体-------------------------- */
.investorIndex-bg {
  background: url(../images/index-kv.jpg) center no-repeat;
  background-size: cover;
}

.imgstyle img {
  max-width: 100%;
  display: inline-block;
}

.imgstyle img {
  max-width: 100%;
  display: inline-block;
}

.imgstyle em {
  font-style: italic;
}

.imgstyle blockquote {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 40px;
  margin-inline-end: 40px;
}

.imgstyle ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.imgstyle ul li {
  list-style-type: disc;
}

.imgstyle ol li {
  list-style-type: decimal;
}

.imgstyle ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.listnews_jz:hover {
  color: #31ae7b;
}

.detailnews_content p,
.detailnews_content {
  line-height: 28px;
  font-size: 14px;
}
.detailnews_content img {
    margin: 5px auto;
}
/* -------------------------投资者关系-------------------------- */
.tz-lab {
  min-height: 322px;
}

.tz-labBottom a .com-link-032763:hover,
.tz-labBottom a .com-link-032763:hover .color999,
.tz-labBottom a .com-link-032763:hover .color1e55a8 {
  color: #fff;
}

/* -------------------------临时公告-------------------------- */
.pdf_lab2 {
  padding: 10px 40px;
  color: #003b5c;
  background: #fff;
  border: 1px solid #003b5c;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
}

.pdf_lab2:hover,
.pdf_lab2.bgf5f5f5:hover {
  background: #003b5c;
  color: #fff;
}

.pdf_lab2.bgf5f5f5 {
  background: #f5f5f5;
}

.pdf_lab2:hover i img {
  filter: brightness(0%) invert(1);
}

/* ---------------------------投资者联系------------------------ */
.invstory-kv {
  height: calc(100vh - 70px);
  min-height: 500px;
  background: url(../images/icontact-bg.jpg) right center no-repeat;
  background-size: cover;
}

.com-link-li li a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.ly-con {
  width: calc(100vw);
  height: calc(100vh - 70px);
}

.ly-con input,
.ly-con textarea {
  display: block;
  width: 30%;
  height: 45px;
  background: transparent;
  border: 1px solid #fff;
  box-shadow: none;
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  line-height: 45px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.ly-con textarea {
  resize: none;
  height: 200px;
}

.ly-con input::-webkit-input-placeholder,
.ly-con textarea::-webkit-input-placeholder {
  color: #fff;
}

.ly-con input::-moz-input-placeholder,
.ly-con textarea::-moz-input-placeholder {
  color: #fff;
}

.ly-con input::-ms-input-placeholder,
.ly-con textarea::-ms-input-placeholder {
  color: #fff;
}

.sub-btn {
  display: inline-block;
  padding: 10px 40px;
  background: #0050a1;
  color: #fff;
  border-radius: 50px;
  border: 1px solid #0050a1;
}

.sub-btn:hover {
  background: transparent;
}

/* 联系我们 */
.detail_contact {
  background-image: url(../images/contactbg.jpg);
  height: 868px;
}

.contactform input {
  width: 560px;
  height: 48px;
  border-radius: 4px;
  border: solid 1px #bfced6;
  display: block;
  background: none;
  padding-left: 20px;
  margin-top: 28px;
  color: #ffffff;
}

.contactform input::placeholder {
  color: #bfced6;
}

.contactform textarea {
  width: 540px;
  height: 162px;
  background: none;
  border: solid 1px #bfced6;
  margin-top: 28px;
  padding: 15px 20px;
  border-radius: 4px;
  color: #ffffff;
}

.contactform textarea::placeholder {
  color: #bfced6;
}

#codeinput {
  width: 200px;
}

.codeimage {
  width: 115px;
  height: 47px;
  margin: 24px 0px 0px 10px;
}

.contactform input.codebtn {
  width: 162px;
  height: 48px;
  display: block;
  background-color: #31ae7b;
  border-radius: 24px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #e5e5e5;
  margin: 24px 0px 0px 75px;
  padding: 0px;
  border: 0px;
}

/* ---------------------------职业发展------------------------ */
.indexDevelopment-bg {
  background: url(../images/index-kv.jpg) center no-repeat;
  background-size: cover;
}

.more-btn {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #fff;
  border-radius: 50px;
}

.more-btn:hover {
  background: #fff;
  color: #2264c8;
}

.devbanner {
  height: calc(50vh);
  min-height: 300px;
  background: url(../images/devimg3.jpg) center no-repeat;
  background-size: cover;
}

.devbanner .poabsolute-h50 {
  right: 20%;
}

.devbanner .more-btn {
  border: 1px solid #27468a;
  color: #27468a;
  padding: 5px 30px;
}

/* ---------------------------诚聘英才------------------------ */
.joinusIndex-bg {
  background: url(../images/joinus-kv.jpg) center no-repeat;
  background-size: cover;
}

.joinusFound-bg {
  height: calc(30vh);
  min-height: 200px;
}

.mo_color000.more-btn {
  padding: 10px 30px;
}

.joinusFound-bg .more-btn {
  padding: 5px 45px;
}

/* ---------------------------培训中心------------------------ */
.train-kv {
  height: calc(100vh - 180px);
  min-height: 600px;
  background: url(../images/train-kv.jpg) center center no-repeat;
  background-size: cover;
}

.jians-con ul li p {
  width: calc(100% - 30px);
  float: left;
}

.jians-con ul li i {
  float: left;
  padding: 5px;
  box-sizing: border-box;
}

/* ---------------------------人才发展------------------------ */
.poDev {
  height: calc(50vh);
  height: 500px;
  width: 100%;
}

/* .poDev.poDevR {float: left;} */
.poDev-bg {
  background: url(../images/podev1.jpg) right center no-repeat;
  background-size: cover;
}

.poDev-bg2 {
  background: url(../images/podev2.jpg) right center no-repeat;
  background-size: cover;
}

.poDev-bg3 {
  background: url(../images/podev3.jpg) right center no-repeat;
  background-size: cover;
}

.poDev-bg4 {
  background: url(../images/podev4.jpg) right center no-repeat;
  background-size: cover;
}

/* .poDev-abu {left: -5%;}*/
.poDev-abur {
  right: 0;
}

/* ---------------------------雇主荣誉------------------------ */
.eh-kv {
  /* height: calc(100vh - 180px);
  min-height: 500px; */
  background: url(../images/eh-bg.jpg) right center no-repeat;
  background-size: cover;
}

.eh-lis li {
  width: 70%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.icon-jp {
  background: url(../images/hp-jp.png) right center no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  display: block;
  float: left;
  padding: 20px;
  box-sizing: border-box;
}

.eh-lis li .txt-jp {
  width: calc(100% - 100px);
  float: right;
}

/* ---------------------------社会招聘------------------------ */
.socialZp-kv ul li a p {
  width: calc(100% - 30px);
}

.socialZp-kv::after {
  content: "";
  width: 100%;
  height: 80px;
  background: url(../images/down-bg.png) center center no-repeat;
  position: absolute;
  bottom: 0;
}

.socialZp-kv ul li a:hover p {
  color: #1e55a8;
}

/* ---------------------------校园招聘------------------------ */
.campus-kv {
  height: calc(100vh - 180px);
  min-height: 500px;
  background: url(../images/campus-bg.jpg) right center no-repeat;
  background-size: cover;
}

.code-qr {
  width: calc(60vh);
  height: calc(60vh);
  background: #f5efef;
  border-radius: 50%;
  top: 55%;
}

.code-qr p {
  top: 83%;
}

.c-a01 {
  bottom: calc(28%);
}

.c-table01 .c-title {
  background: #f5f5f5;
}

.c-table01 .c-list {
  border-bottom: 1px solid #f5f5f5;
}

.c-title li,
.c-list li {
  padding: 15px;
  box-sizing: border-box;
  float: left;
}

.c-title li {
  font-weight: bold;
}

.c-title li:first-of-type,
.c-list li:first-of-type {
  padding-left: 20px;
}

.c-title li:last-of-type,
.c-list li:last-of-type {
  padding-right: 20px;
}

.c-table01 .c-title li:first-of-type,
.c-table01 .c-list li:first-of-type {
  width: 200px;
}

.c-table01 .c-title li:nth-of-type(2),
.c-table01 .c-title li:nth-of-type(3),
.c-table01 .c-list li:nth-of-type(2),
.c-table01 .c-list li:nth-of-type(3) {
  width: 100px;
}

.c-table01 .c-title li:nth-of-type(4),
.c-table01 .c-list li:nth-of-type(4) {
  width: calc(100% - 700px);
}

.c-table01 .c-title li:nth-of-type(5),
.c-table01 .c-title li:nth-of-type(6),
.c-table01 .c-list li:nth-of-type(5),
.c-table01 .c-list li:nth-of-type(6) {
  width: 150px;
}

.c-table02 .c-title {
  background: #eeeeee;
}

.c-table02 .c-list {
  border-bottom: 1px solid #eeeeee;
}

.c-table02 .c-title li:nth-of-type(1),
.c-table02 .c-list li:nth-of-type(1) {
  width: 23%;
}

.c-table02 .c-title li:nth-of-type(4),
.c-table02 .c-title li:nth-of-type(5),
.c-table02 .c-title li:nth-of-type(6),
.c-table02 .c-list li:nth-of-type(4),
.c-table02 .c-list li:nth-of-type(5),
.c-table02 .c-list li:nth-of-type(6) {
  width: 17%;
}

.c-table02 .c-title li:nth-of-type(2),
.c-table02 .c-title li:nth-of-type(3),
.c-table02 .c-list li:nth-of-type(2),
.c-table02 .c-list li:nth-of-type(3) {
  width: 13%;
}

.c-follow {
  width: 120px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #d7d7d7;
  background: #fff;
  position: fixed;
  right: 10px;
  bottom: 20%;
  z-index: 10;
}

.pagesbar ul {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.pagesbar ul li:last-child {
  display: none;
}

.pagesbar ul li {
  padding: 3px 10px;
  border: 1px solid #b7b7b7;
  margin: 0px 5px;
}

.pagesbar ul li:hover,
.pagesbar ul li.active {
  background-color: #5a7c90;
}

.pagesbar ul li:hover span,
.pagesbar ul li.active span,
.pagesbar ul li:hover a,
.pagesbar ul li.active a {
  color: #ffffff;
  transition: all 0s;
}

/* 招贤纳士 */
.joblistpage ul li {
  width: 100%;
  height: auto;
  padding: 40px 0px;
  margin-bottom: 30px;
  background-color: #ffffff;
  cursor: pointer;
}

.joblist_page {
  justify-content: space-between;
}

.joblistp_l {
  padding-left: 70px;
}

.joblistp_r {
  padding-right: 70px;
}

.joblistp_l p span {
  font-size: 14px;
  padding: 0px 10px;
  color: #003b5c;
  border-left: 1px solid #bfced6;
}

.joblistp_l p span:first-child {
  padding-left: 0px;
  border-left: 0px;
}

.joblistp_r a {
  width: 120px;
  height: 42px;
  background-color: #5a7c90;
  border-radius: 2px;
  font-size: 14px;
  line-height: 40px;
  display: block;
  text-align: center;
  color: #ffffff;
}

.joblistp_r p {
  font-size: 14px;
  color: #31ae7b;
  text-align: right;
}

.joblistp_r p img {
  margin-left: 5px;
  height: 12px;
}

.joblist_content {
  padding: 30px 70px;
  display: none;
}

.joblist_detail {
  border-top: 1px solid #bfced6;
}

.joblist_detail h3 {
  color: #003b5c;
  font-weight: bold;
  font-size: 16px;
}

.joblist_detail p,.joblist_detail {
  line-height: 1.8em;
  font-size: 14px;
  color: #5a7c90;
}

.jobrotate180 {
  transform: rotate(180deg);
}

.btnmail:hover,
.btnmail.active {
  background-color: #31ae7b;
  color: #ffffff;
}

/* ---------------------------公司治理------------------------ */
.more-pro {
  display: none;
}

.more-pro.dis {
  display: block;
}

/* ----------------------media ------------------------------*/
.swiper-pagination.swiper-pagination-media.swiper-pagination-bullets {
  width: 100%;
  text-align: left;
}

.swiper-pagination-media .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1e55a8;
}

.swiper-pagination-media .swiper-pagination-bullet {
  background: #cacaca;
}

.trainFound-bg {
  height: calc(40vh);
  min-height: 300px;
}

/* ----------------------------media-detail--------------------------------- */
.meaidDetail-tit a:hover {
  color: #1f1f1f;
}

/* ----------------------Investor------------------------------*/
.inv-kv {
  height: calc(55vh);
  min-height: 400px;
}

.inv-bg {
  background: url(../images/invs-kv.jpg) right center no-repeat;
  background-size: cover;
}

.inv-kv .poabsolute-h50.dj-set {
  top: 10%;
}

.height255 {
  height: 255px;
}

.height25 {
  height: 25px;
}

.invTable tr.invTab-tit {
  color: #fff;
  background: #1e55a8;
}

.invTable th {
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  width: 15.44%;
}

.invTable .bgfff:hover,
.invTable .bgf3f3f3:hover {
  background: #edf2f9;
  color: #1e55a8;
}

.invTable .bgfff th,
.invTable .bgf3f3f3 th {
  font-size: 18px;
}

.invContact-kv {
  height: calc(50vh);
  min-height: 300px;
  background: url(../images/contact-kv.jpg) 50% center no-repeat;
  background-size: cover;
}

.invContact-kv .poabsolute-h50 {
  right: 10%;
}

.invContact-kv a:hover {
  opacity: 0.6;
}

.inv-shares .bg134592 .area_33 {
  min-height: 65px;
}

/* -------------------------pipeline------------------------------- */
.pip-bg {
  background: url(../images/pipeline-kv.jpg) right center no-repeat;
  background-size: cover;
}

.pip-tab a {
  position: relative;
}

.pip-tab #current {
  color: #1e55a8;
  font-weight: 600;
}

.pip-tab #current::before {
  content: "";
  width: calc(100% - 80px);
  height: 4px;
  background: #1e55a8;
  position: absolute;
  bottom: 0;
  left: 40px;
}

.pip-tab a:hover:before {
  content: "";
  width: calc(100% - 80px);
  height: 4px;
  background: #1e55a8;
  position: absolute;
  bottom: 0;
  left: 40px;
}

.pipCade {
  min-height: 100px;
}

.cadeProcess {
  width: calc(100% - 19%);
  float: right;
}

.pipPack a {
  border-top: 1px solid #e6e6e6;
}

.pipShowlis .triangle-up {
  position: absolute;
  top: -5px;
  left: 10px;
}

.pipShowlis .rightSet {
  left: auto;
  right: 10px;
}

.pipShowlis {
  display: none;
}

.miin-height {
  min-height: 150px;
}

/* ---------------------partnering----------------------- */
.par-bg {
  background: url(../images/index-kv.jpg) 72% center no-repeat;
  background-size: cover;
}

.par-bg .poabsolute-wh50 {
  left: 75%;
}

.parMore {
  height: 50px;
  line-height: 50px;
  border: 1px solid #dcdcdc;
}

.parCaseCade .pipShowlis .triangle-up {
  top: 12px;
  left: 25%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.parCaseCade .pipShowlis .rightSet,
.parCaseCade3 .pipShowlis .rightSet {
  left: 75%;
}

.parCaseCade2 .pipShowlis .triangle-up {
  top: 12px;
  left: 16%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.parCaseCade2 .pipShowlis .centerSet {
  left: 50%;
}

.parCaseCade2 .pipShowlis .rightSet {
  left: 83%;
}

.parCaseCade3 .line-e2e2e2no {
  width: 90%;
}

.parCaseCade3 .pipShowlis .triangle-up {
  top: 22px;
  left: 25%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.par-bg .colorfff a:hover {
  color: #000;
}

/* 6-16 */
.bujiacu {
  font-weight: normal;
  color: #ababab;
}

/*  */
/* --------------------About us----------------- */
.about-bg {
  background: url(../images/index-kv.jpg) center no-repeat;
  background-size: cover;
}

/* --------------------招采平台--------------------*/
.purchasing-kv {
  background: url(../images/purchasingkv.jpg) center center no-repeat;
  background-size: cover;
}

.purchasing-title {
  padding: 20px 30px;
  box-sizing: border-box;
  position: relative;
}

.purchasing-title::before {
  content: "";
  width: calc(100% - 60px);
  height: 1px;
  background: #ececec;
  position: absolute;
  left: 30px;
  bottom: 0;
}

.purchasing-list .area_33 {
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}

.purchasing-list .area_33::before {
  content: "";
  width: 1px;
  height: calc(100% - 60px);
  background: #ececec;
  position: absolute;
  top: 30px;
  right: 0;
}

.purchasing-list .area_33:last-of-type::before {
  display: none;
}

.purchasing-list .com-rows_2 {
  height: 3.55em;
  line-height: 1.8em;
}

.purchasing-btn {
  background: url(../images/img01.jpg) center center no-repeat;
  background-size: cover;
}

.purchasing-btn a.button {
  width: 80%;
  padding: 10px 0;
  box-sizing: border-box;
}

.purchasing-txtbox {
  overflow-x: hidden;
  overflow-y: auto;
  word-break: break-all;
}

/* 采购平台 */
.hoverddedec:hover {
  background: #ddedec;
}

.min265 {
  min-height: 265px;
}


/* --------------------20230518改版--------------------*/
.padding15_20 {
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.rd-index h4 {
  font-size: 24px
}

.pipeline-bg {
  background: url(../images/pipeline-kv.jpg) center center no-repeat;
  background-size: cover
}

.pipeline-con {
  height: calc(80vh);
  min-height: 500px;
  background: url(../images/pipeline-img01.jpg) center center no-repeat;
  background-size: cover
}

.pipeline-con .container {
  height: 100%;
  padding-top: calc(15vh);
  box-sizing: border-box
}

.pipeline-con-list {
  padding-bottom: calc(10vh);
  box-sizing: border-box
}

.pipeline-con .container ul {
  display: flex;
  justify-content: space-between
}

.pipeline-select select {
  height: 40px;
  line-height: 40px;
  border-bottom: 3px solid #003b5c;
  padding: 0 60px 0 20px;
  background: url(../images/yfcxico.png) no-repeat center;
  background-size: 12px;
  background-color: #f5f5f5;
  background-position-x: 132px;
  color: #003b5c
}

.pipeline-select {
  display: inline-block;
  position: relative;
}

.pipeline-select::before {

  color: #134aa5;
  position: absolute;
  width: 14px;
  height: 21px;
  top: 10px;
  right: 20px;
  pointer-events: none;
}

.pipeline-list-con {
  min-width: 960px
}

.pipeline-list {
  position: relative
}

.pipeline-list .line span {
  width: 1px;
  height: calc(100% - 52px);
  background: rgba(191, 206, 214, 0.5);
  position: absolute;
  top: 52px
}

.pipeline-list .line span.line0 {
  display: none
}

.pipeline-list-del {
  padding: 10px 20px 20px;
  box-sizing: border-box
}

.pipeline-list-del li {
  position: relative
}

.pipeline-list-del li a {
  display: block;
  padding: 5px 20px;
  border: 1px solid #fff;
  box-sizing: border-box;
  margin-top: 10px;
  background: #fff;
  border-radius: 10px;
}

.pipeline-list-del li a.cur {
  border: 1px solid #134aa5
}

.pipeline-list-del li a p {
  line-height: 1.3em;
  margin-top: 5px;
  font-family: ArialMT;
  color: #003b5c;
  font-size: 16px;
  font-weight: bold;
}

.pipeline-list-del li a p.fontSize12 {
  font-size: 14px;
}

.pipeline-list .width20:first-of-type .pipeline-list-pop {
  left: 0;
  margin-left: 0
}

.pipeline-list .width20:last-of-type .pipeline-list-pop {
  left: auto;
  margin-left: 0;
  right: 0
}

.pipeline-list-pop {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 0 30px 30px;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  margin-left: -200px;
  top: 100%;
  z-index: 101;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none
}

.pipeline-list-pop .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 102;
  transition: all 0.2s;
  cursor: pointer;
  transform: rotate(45deg);
  font-size: 18px;
}

.pipeline-list-pop .icon-close:hover {
  transform: rotate(135deg)
}

.plist-pop-li {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}

.pipeline-list-pop .plist-pop-li:last-of-type {
  padding-bottom: 0;
  border-bottom: 0
}

.resources-kv {
  height: calc(100vh - 70px);
  min-height: 600px;
  background: url(../images/resources-kv.jpg) center center no-repeat;
  background-size: cover
}

.resources-lis-box {
  display: flex;
  justify-content: center
}

.resources-lis {
  width: 220px;
  height: 130px;
  border: 1px solid #adb2b4;
  margin: 0 10px
}

.international-con01 {
  background: url(../images/international-img02.jpg) top center no-repeat;
  background-size: cover
}

.international-table {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff
}

.international-table th,
.international-table td {
  padding: 10px
}

.international-table th {
  background: #2264c8;
  font-size: 16px;
  font-weight: bold
}

.international-table td {
  background: #395c9d;
  font-size: 12px
}


.innews-swiper .swiper-slide::before {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4))
}

.innews-txt {
  color: #fff;
  width: 100%;
  padding: 0 80px 15px 15px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2
}

.innews-swiper .swiper-pagination-fraction {
  color: #fff;
  width: auto;
  left: auto;
  bottom: 15px;
  right: 15px
}

.innews-swiper .swiper-pagination-current {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin-top: -5px;
  float: left;
}

.innews-swiper .swiper-pagination-total {
  font-size: 12px
}

.activity-swiper,
.trainee-swiper {
  margin-top: 20px !important;
  padding-bottom: 30px !important
}

.activity-swiper .swiper-pagination-bullet:only-child,
.trainee-swiper .swiper-pagination-bullet:only-child {
  display: none
}

.post-list .bg {
  height: 380px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s
}

.post-list01 .bg {
  background-image: url(../images/campus-p01.jpg)
}

.post-list02 .bg {
  background-image: url(../images/campus-p02.jpg)
}

.post-list03 .bg {
  background-image: url(../images/campus-p03.jpg)
}

.post-list04 .bg {
  background-image: url(../images/campus-p04.jpg)
}

.post-title {
  top: 24%
}

.post-list01 .post-title h3 {
  background-image: -webkit-linear-gradient(bottom, #0c9fff, #0434ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.post-list02 .post-title h3 {
  background-image: -webkit-linear-gradient(bottom, #ffeeb9, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.post-list:hover .bg {
  transform: scale(1.05)
}

.post-list .pop {
  padding-bottom: 50px;
  bottom: -100%;
  font-size: 12px;
  transition: all 0.5s
}

.post-list:hover .pop {
  bottom: 0
}

.post-list .pop img {
  width: 70px;
  height: 70px;
  margin: auto;
  border: 6px solid #fff
}

.post-list03 .pop::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  z-index: 2
}

.post-list04 .pop::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-linear-gradient(rgba(60, 113, 249, 0), rgba(60, 113, 249, 0.7));
  background: linear-gradient(rgba(60, 113, 249, 0), rgba(60, 113, 249, 0.7));
  z-index: 2
}

.p-icons {
  width: auto;
  height: 22px
}

.ii-list {
  padding-left: 26px;
  box-sizing: border-box
}

.ii-list li {
  list-style-type: square;
  list-style-position: outside
}

.aindex-height01 {
  height: 360px
}

.aindex-height01 img,
.aindex-height02 img {
  width: 100%;
  min-height: 100%;
  object-fit: cover
}

.aindex-height02 {
  height: 270px
}

.aindexstrategy-kv {
  background: url(../images/showlis5.jpg) right center no-repeat;
  background-size: cover
}

.about-sctx {
  background: url(../images/about-sctx01.jpg) right center no-repeat;
  background-size: cover
}

.inedxNewSwiper .swiper-slide.swiper-slide-active .idxnewsdesc {
  /* color: #31ae7b !important; */
  font-weight: bold;
}
.inedxNewSwiper .swiper-slide:hover .idxnewsdesc {
  color: #31ae7b !important;
}
.aboutmain {
  background-color: #f2f5f7;
}

/*-------------------响应式css-------------------*/
@media (min-width: 1600px) {
  .container {
    width: 1350px !important;
  }

  .jindex-shapesrbg .shapeslbg-setr {
    top: 60%;
    left: 53%;
  }

}


@media (max-width: 1599px) {
  .gszl_listdesc {
    height: 240px;
  }


  .bannerban,
  .neibanner {
    height: 400px;
  }
}

@media (min-width: 1260px) and (max-width: 1599px) {
  .container {
    width: 1160px !important;
  }

  .inv-shares .bigtitle {
    font-size: 48px;
  }

  .mess_container .area_30 {
    width: 35%;
  }

  .absurveNum h2 {
    font-size: 28px;
  }

  .tz-lab {
    min-height: 277px;
  }

  .notice-kv .poabsolute-w50 {
    width: 90%;
  }

  .swiper-button-prev.weprodutSwiper-prev {
    left: -40px;
  }

  .swiper-button-next.weprodutSwiper-next {
    right: -30px;
  }

}


@media (min-width: 1000px) and (max-width: 1259px) {
  .inter-timer .spot {
    left: 6px
  }

  .inter-timer .timerline.bottom .timerline-content {
    margin-left: -29px;
    margin-top: -5px;
    background: #2280c8;
  }

  .inter-timer .timerline-content {
    padding: 10px;
  }

  .container {
    width: 960px !important;
  }

  .waper-height .line-height1_5em {
    line-height: 1.1em;
    font-size: 20px;
  }

  .waper-height .paddingtop30.width90,
  .waper-height .iconfont.icon-next {
    padding-top: 15px;
  }

  .pagination-newsSwiper {
    left: 86%;
  }

  .com-link .iconfont.icon-next {
    padding-top: 20px;
  }

  /* .waper-height40 {height: 249px!important;} */
  .waper-height40 .paddingtop30.width90,
  .waper-height40 .iconfont.icon-next {
    padding-top: 10px;
  }

  .inv-shares .bigtitle {
    font-size: 40px;
  }

  .inv-shares .area_35 {
    width: 30%;
  }

  .inv-shares .area_40 {
    width: 45%;
  }

  .mess_container .area_30 {
    width: 40%;
  }

  .mess_container .area_65 {
    width: 60%;
  }

  .par-bg .poabsolute-wh50 {
    left: 73%;
  }

  .absurveNum .area_50 {
    width: 100%;
    float: none;
    min-height: auto;
    padding-bottom: 20px;
    margin-bottom: 10px;
    position: relative
  }

  .absurveNum .area_50::before {
    content: "";
    width: 50%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 25%
  }

  .absurveNum .area_50:last-of-type::before {
    display: none
  }

  .absurveNum h2,
  .absurveNum .h2 {
    font-size: 26px;
  }

  .absurveNum h5 {
    font-size: 16px;
  }

  .absurveNum h5.fontSize12 {
    font-size: 12px;
  }

  .indexNew .width55 {
    width: 70%;
    font-size: 20px;
    padding-top: 10px;
  }

  .swPro-txt {
    padding: 20px;
  }

  .hotlab {
    font-size: 14px;
  }

  .tz-lab {
    min-height: 274px;
  }

  .jians-con {
    width: 90%;
  }

  .jians-con .h4 {
    font-size: 25px;
  }

  .indexNew h4 {
    font-size: 20px;
  }

  .notice-kv .poabsolute-w50 {
    width: 90%;
  }

  .swiper-button-prev.weprodutSwiper-prev {
    left: 0;
  }

  .swiper-button-next.weprodutSwiper-next {
    right: 10px;
  }

  .swiper-button-prev.social-prev {
    left: -20px;
  }

  .swiper-button-next.social-next {
    right: -5px;
  }

  .rd-index h4.mo_fontSize20 {
    font-size: 20px;
  }

  .aboutcode.margintop20.marginbottom20 {
    margin-top: 0;
  }

  .fuj-btn {
    float: none !important;
    display: block;
  }

  .eh-lis li .txt-jp .h4 {
    font-size: 24px;
  }

  .eh-lis li .txt-jp .paddingbottom15 {
    padding-bottom: 10px;
  }

  .inter-timer .triangle-widthset .triangle {
    width: 165%;
  }

  .inter-timer .triangle-widthset .spot {
    left: 108px;
  }

  .nav .menuLi {
    margin: 0 5px;
  }

  .indexkv.swiper-container-horizontal .swiper-pagination {
    bottom: 30px;
  }

  .hover-zoom {
    background-size: cover;
  }

  /*.ipadfootrs {*/
  /*  word-break: break-all;*/
  /*  padding-left: 22px;*/
  /*  line-height: 20px;*/
  /*}*/

  .neibanner {
    height: 300px;
  }

  .aboutp_morea {
    padding-top: 80px;
  }

  .fontSize24 {
    font-size: 20px;
  }

  .fontSize16 {
    font-size: 14px;
  }

  .aboutqujzg_list ul li {
    width: 48%;
    margin-bottom: 20px;
  }

  .aboutqujzg_list ul li.active {
    width: 48%;
  }

  .aboutqyyj_botdesc {
    padding: 0px 40px;
  }

  .aboutqyyj_botdesc h4 {
    padding-top: 50px;
    background-position-y: 43px;
  }

  .aboutqysm_item {
    background-attachment: scroll;
  }

  .aboutqysm_desc {
    width: 60%;
  }



  .gszl_listdesc {
    height: auto;
  }

  h4,
  .h4,
  .rd-index h4,
  .fontSize26 {
    font-size: 22px;
  }

  h3,
  .h3 {
    font-size: 30px;
  }

  .fontSize50,
  .bigtitle {
    font-size: 36px;
  }

  .bannerban {
    height: calc(40vh - 70px);
    min-height: 400px;
  }

  .parallax-window {
    height: 300px;
  }

  .pipeline-con {
    height: calc(44vh);
  }

  .pipeline-con .container {
    padding-top: 100px;
  }

  .contactform input {
    width: 380px;
  }

  .contactform textarea {
    width: 360px;
  }
}
@media (min-width:1000px) {
  .waphisitem {display: none;}
}
@media (min-width: 801px) and (max-width: 999px) {
  .inter-timer .spot {
    left: 6px
  }

  .inter-timer .timerline.bottom .timerline-content {
    margin-left: -29px;
    margin-top: -5px;
    background: #2280c8;
  }

  .container {
    width: 90% !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* .waper-height40 {height: 249px!important;} */
  .waper-height40 .paddingtop30.width90,
  .waper-height40 .iconfont.icon-next {
    padding-top: 10px;
  }

  .inv-shares .bigtitle {
    font-size: 40px;
  }

  .inter-timer .timerline-content {
    width: 125%;
  }

  .nav .menuLi {
    margin: 0 5px;
  }

  .rd-index h4.mo_fontSize20 {
    font-size: 16px;
  }

  .aboutcode.margintop20.marginbottom20 {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .aboutcode p {
    font-size: 12px
  }

  .aboutcode .bigtitle {
    font-size: 40px
  }

  .absurveNum .area_50 {
    width: 100%;
    float: none;
    min-height: auto;
    padding-bottom: 20px;
    margin-bottom: 10px;
    position: relative
  }

  .absurveNum .area_50::before {
    content: "";
    width: 50%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 25%
  }

  .absurveNum .area_50:last-of-type::before {
    display: none
  }

  .nav .menuLi .mainmenu,
  .menuListBox a {

    font-size: 12px;

  }

  .inter-timer .timerline-content {
    padding: 10px;
  }
}

@media (max-width: 999px) {
  .inter-timer .timerline-content {
    padding: 10px;
  }

  .container {
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .waper-height .line-height1_5em,
  .com-link .width90.paddingtop30 {
    font-size: 20px;
  }

  .waper-height .paddingtop30.width90,
  .waper-height .iconfont.icon-next {
    padding-top: 10px;
  }

  .pagination-newsSwiper {
    left: 86%;
  }

  .com-link .iconfont.icon-next {
    padding-top: 0;
  }

  /* .waper-height40 {height: 249px!important;} */
  .waper-height40 .paddingtop30.width90,
  .waper-height40 .iconfont.icon-next {
    padding-top: 10px;
  }

  .waper-height40 .line-height1_5em {
    line-height: 1.1em;
  }

  .inv-shares .area_35 {
    width: 30%;
  }

  .inv-shares .area_40 {
    width: 45%;
  }

  .inv-shares .bigtitle {
    font-size: 35px;
  }

  .mess_container .area_30 {
    width: 35%;
  }

  .mess_container .area_65 {
    width: 55%;
  }

  .mo_width110 {
    width: 110%;
  }

  .par-bg .poabsolute-wh50 {
    left: 62%;
  }

  .inv-shares .bg134592 .area_33 {
    min-height: 84px;
  }

  .height255 {
    height: 300px;
  }

  /* .invContact-kv .poabsolute-h50 { left: 60%;} */
  .absurveNum h2,
  .absurveNum .h2 {
    font-size: 18px;
  }

  .absurveNum h5 {
    font-size: 16px;
  }

  .absurveNum h5.fontSize12 {
    font-size: 12px;
  }

  .view999 {
    height: 178px;
    width: 125%;
  }

  .swPro-txt {
    padding: 20px;
    min-height: 530px;
  }

  .hotlab {
    font-size: 12px;
  }

  .hotlab .h5 {
    font-size: 16px;
  }

  .jians-con {
    width: 90%;
  }

  .jians-con .h4 {
    font-size: 20px;
  }

  .jians-con li {
    font-size: 12px;
  }

  .indexNew h4 {
    font-size: 20px;
  }

  .notice-kv .poabsolute-w50 {
    width: 90%;
  }

  .foot-line.area_30 {
    width: 20%;
  }

  .foot-line {
    padding: 10px;
  }

  .foot-line .width95 {
    width: 100%;
  }

  .swiper-button-prev.social-prev {
    left: -20px;
  }

  .swiper-button-next.social-next {
    right: -5px;
  }

  .fuj-btn {
    float: none !important;
    display: block;
  }

  .pipeline-con-list {
    width: calc(100% - 40px) !important;
    left: 20px !important
  }
  h4, .h4 {font-size: 20px;}
  .hover-zoom {background-size: cover;}
  .h32 ,h2, .h2,.fontSize36,.fontSize26,h3, .h3{font-size: 24px;}
 
  /*.footbox .area_30 {width: 100%;border: 0px;}*/
  .foot-line::before {display: none;}
  .fontSize24,.indexNew h4,.rd-index h4 {font-size: 18px;}
  .aboutqujzg_list ul li,.aboutqujzg_list ul li.active {width: 48%;margin-bottom: 20px;}
  .gsgkhis_ldesc .fontSize14 {font-size:12px;}
  .aboutqyyj_botdesc h4 {padding-top: 40px;background-position-y: 33px;}
  .aboutqyyj_botdesc {padding: 0px 20px;}
  .aboutqysm_desc {width: 70%;}
  .swiper-button-next.weprodutSwiper-next,.swiper-button-prev.weprodutSwiper-prev {display: none;}
  .fontSize50,.bigtitle {font-size: 32px;}
  .bannerban, .neibanner {height: 250px;min-height: 200px;}
  .yfcxmore_btn {padding-bottom: 20px;}
  .parallax-window {height: 250px;}
  .pipeline-con .container {padding-top: 100px;}
  .pipeline-con {height:600px;min-height: 600px;}
  .pipeline-list-con {width: 100%;min-width: unset;}
  .joblistp_l {padding-left: 40px;}
  .joblistp_r {padding-right: 40px;}
  .language {right: 2%;}
  .contactform input {width: 250px;}
  .contactform textarea {width: 230px;}
  .footbox .width50 {width: 33%;}
  .aboutgsgk_item1 {background: none !important;}
  .aboutgsgk_item1 .mo_undis {display: block;}
  .gsgknum,.gsgktop_hisitem,.waphisitem {display: flex;flex-wrap: wrap;}
  .gsgknum .area_30 {width: 33%;}
  .gsgknum .area_30  img {display: none;}
  .gsgktop_hisitem {display: none;}
  .gsgkhis_l {position: unset;text-align: left;margin-top: 30px;width:32.5%;}
  .gsgkhis_ldesc {text-align: left;margin-top: 20px;width: 100%;}
  .aboutqysm_item,.aboutrcll_top_l,.aboutrcll_top_r   {width: 100%;}
  .aboutcode .area_33 {width: 33%;float: left;}
  .aboutqysm_desc {width: 70% !important;}
  .aboutqujzg_list ul li {height: 240px;}
  .aboutrcll_top_r {margin-top: 50px;}
  .aboutpage_gszhongzhi {height: 770px !important;}
  .aboutpage_gszzitem {background: none;padding-top: 60px;}
  .aboutpage_gszzli {margin-top: 30px;}
  .pipeline-list-del li a p,.pipeline-list-del li a p.fontSize12 {font-size: 12px;}
  .aboutqyyj_botdesc {height: auto;padding-bottom:30px;}
  
  .detail_contact {height: 1437px !important;}
  .detail_contact .mo_undis {display: block;}
  .detail_contact .mo_undis .area_50 {margin-bottom: 50px;} 
  .detail_contact .mo_undis .area_50.height100 {height: 930px;}
} 
@media (max-width:600px) {
  .aboutcode .area_33,.about_rwllsort,.aboutqujzg_list ul li, .aboutqujzg_list ul li.active {width: 100%;}
  .fontSize24, .indexNew h4, .rd-index h4 {font-size: 16px !important;}
  .aboutpage_gszzli {padding: 0px;}
  .aboutpage_gszhongzhi {height: 870px !important;}
  .aboutpage_gszhongzhi .fontSize16 {font-size: 14px;}
  .gsgkhis_ldesc {margin-top: 15px;}
  .gsgkhis_r .gsgkhis_ldian {width: 100%;}
  .gsgknum .area_30 {padding: 5px;}
  .gsgknum .area_30 .fontSize14 {font-size: 12px;}
  .fontSize15 {font-size: 14px;}
  .abridge {padding-top: 5px;}
  .wapgszldesc {font-size: 14px;line-height: 24px;}
  .pipeline-list .width20  .padding15_20  {padding: 5px;}
  .pipeline-list-del {padding: 5px;}
  .pipeline-list-del li a {padding: 2px;}
  .pipeline-list-del li a p {word-break: break-all;}
  h6.disinblock {font-size: 13px !important;}
  .joblistp_l {padding-left: 20px;}
  .joblistpage ul li {padding: 20px 0px;}
  .joblistp_r {padding: 0px 20px;width: 100%;margin-top: 20px;}
  .joblist_content {padding: 20px;}
  .joblist_detail p {font-size: 14px;}
  
}