@charset "utf-8";
/* 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:"DECATHLON-Regular", "SourceHanSansCN", "PingFang SC", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    font-size:14px; font-size:1.4rem; /* 12÷10=1.2 */
    font-weight:400;
    line-height:150%; 
    color:#000; 
    background: #fff; 
    height:100%
}
@font-face {
  font-family: "SourceHanSansCN";
  font-weight: 400;
  src: url("../images/SourceHanSansCN-Regular.ttf") format("truetype"),
  url("../images/SourceHanSansCN-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "DECATHLON-Regular";
  font-weight: 350;
  src: url("../images/DECATHLON-Regular.ttf") format("truetype"),
  url("../images/DECATHLON-Regular.woff") format("woff");
  font-display: swap;
}

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:#11294b; color:#fff }
::-moz-selection { background-color:#11294b; color:#fff }

/* link */
a { color:#000; outline-style:none; text-decoration:none; cursor:pointer; transition:all 0.2s; -webkit-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s }
a:hover { color: #11294b }

.a01, a.a01, .a01 a { color: #11294b; transition:all 0.2s; -webkit-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s }
a:hover .a01, a.a01:hover, .a01 a:hover { color:#000 }

/* clear float */
.cf { zoom:1 } /* for IE */
.cf:after { content:"."; 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 }
/* display */
.dis { display:block }
.undis { display:none }
.disinline { display:inline }
.disinblock { display:inline-block }

.cursor_pointer { cursor:pointer }

/* form */
label { cursor:pointer }
label:hover { text-decoration:underline }
input, select, textarea { vertical-align:middle; color:#000; font-family:"PingFang SC", "Lantinghei SC", "Microsoft YaHei", "HanHei SC", "Helvetica Neue", "Open Sans", Arial, "Hiragino Sans GB", 微软雅黑, STHeiti, "WenQuanYi Micro Hei", SimSun, sans-serif; transition-duration:0.2s; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; -moz-border-radius:0; -webkit-border-radius:0; border-radius:0; appearance:none; -moz-appearance:none; -webkit-appearance:none }
input[type="text"], input[type="password"], select { appearance:none; -moz-appearance:none; -webkit-appearance:none }

/*-------------------结构-------------------*/
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 }

/*-------------------定位-------------------*/
.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-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';
  font-display: swap;
  src: url('//at.alicdn.com/t/webfont_u9zir9d9xc.eot'); /* IE9*/
  src: url('//at.alicdn.com/t/webfont_u9zir9d9xc.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('//at.alicdn.com/t/webfont_u9zir9d9xc.woff2') format('woff2'),
  url('//at.alicdn.com/t/webfont_u9zir9d9xc.woff') format('woff'), /* chrome、firefox */
  url('//at.alicdn.com/t/webfont_u9zir9d9xc.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('//at.alicdn.com/t/webfont_u9zir9d9xc.svg#思源黑体-普通') format('svg'); /* iOS 4.1- */
}

.iconfont { line-height: 1em }
.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 }

.font-bold { font-weight: 800 }
.font-thin { font-weight: 300 }

h1, .h1 { font-size: 72px; line-height:1.1em }
h2, .h2 { font-size: 46px; line-height:1.1em }
h3, .h3 { font-size: 36px; line-height:1.1em }
h4, .h4 { font-size: 32px; line-height:1.5em }
h5, .h5 { font-size: 22px; line-height:1.5em }
h6, .h6 { font-size: 16px; line-height:1.5em }

.fontSize10 { font-size:10px }
.fontSize12 { font-size:12px }

/*-----------------间距---------------------*/ 
.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_8em { line-height:1.8em }
.line-height2em { line-height:2em }

/*-------------------颜色--------------------*/
.colorfff, .colorfff a, a.colorfff { color: #fff }
.color000, .color000 a, a.color000 { color: #000 }
.color11294b { color: #11294b }
.color117fb6 { color: #117fb6 }

.bgfff { background: #fff }
.bg000 { background: #000 }
.bgf4f4f4 { background: #f4f4f4 }
.bgf7f7f7 { background: #f7f7f7 }

/*-------------------宽度、高度--------------------*/
.width15 { width:15% }
.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% }
.width60 { width:60% }
.width66 { width:66.66% }
.width70 { width:70% }
.width75 { width:75% }
.width80 { width:80% }
.width90 { width:90% }
.width100 { width:100% }

.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 }
.imgw70 { display:block; max-width:70%; height:auto }
.imgw90 { display:block; max-width:90%; height:auto }
.imgw100 { display:block; max-width:100%; height:auto }

/*-------------------区块-------------------*/
.area_100 { float:left; width:100% }
.area_90 { float:left; width:90% }
.area_85 { float:left; width:85% }
.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_55 { float:left; width:55% }
.area_52 { float:left; width:52% }
.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_35 { float:left; width:35% }
.area_33 { float:left; width:33.33% }
.area_30 { float:left; width:30% }
.area_25 { float:left; width:25% }
.area_20 { float:left; width:20% }
.area_15 { float:left; width:15% }
.area_10 { float:left; width:10% }

.box-sizing { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box }

.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 }

.marginbottom5 { margin-bottom:5px }
.marginbottom10 { margin-bottom:10px }
.marginbottom15 { margin-bottom:15px }
.marginbottom20 { margin-bottom:20px }
.marginbottom30 { margin-bottom:30px }
.marginbottom40 { margin-bottom:40px }
.marginbottom60 { margin-bottom:60px }

.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 }
.marginleft60 { margin-left:60px }

.marginright5 { margin-right:5px }
.marginright10 { margin-right:10px }
.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 }
.paddingtop30 { padding-top:30px }
.paddingtop35 { padding-top:35px }
.paddingtop40 { padding-top:40px }
.paddingtop50 { padding-top:50px }
.paddingtop60 { padding-top:60px }
.paddingtop80 { padding-top:80px }

.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 }
.paddingbottom50 { padding-bottom:50px }
.paddingbottom60 { padding-bottom:60px }
.paddingbottom80 { padding-bottom:80px }

.paddingleft0 { padding-left:0!important }
.paddingleft5 { padding-left:5px }
.paddingleft10 { padding-left:10px }
.paddingleft15 { padding-left:15px }
.paddingleft20 { padding-left:20px }
.paddingleft30 { padding-left:30px }
.paddingleft40 { padding-left:40px }
.paddingleft50 { padding-left:50px }
.paddingleft60 { padding-left:60px }

.paddingright0 { padding-right:0!important }
.paddingright5 { padding-right:5px }
.paddingright10 { padding-right:10px }
.paddingright15 { padding-right:15px }
.paddingright20 { padding-right:20px }
.paddingright30 { padding-right:30px }
.paddingright40 { padding-right:40px }
.paddingright50 { padding-right:50px }
.paddingright60 { padding-right:60px }

.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 }
.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 }
.padding15_20 { padding:15px 20px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box }

.row2 { margin-left: -2px; margin-right: -2px }
.row10 { margin-left: -10px; margin-right: -10px }
.row15 { margin-left: -15px; margin-right: -15px }
.row20 { margin-left: -20px; margin-right: -20px }

.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 }

/*-------------------按钮-------------------*/ 
.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: 5px 10px; line-height:1em; border-radius: 5px }
.button-m, a.button-m, input.button-m { padding: 10px 30px; line-height:1em }
.button-l, a.button-l, input.button-l { padding: 15px 60px; line-height:1em }
.button-xl, a.button-xl, input.button-xl { padding: 20px 80px; line-height:1em }

.button-000, a.button-000, input.button-000 { border: 1px solid #3643BA; background: #3643BA; color:#fff }
.button-000:hover, a:hover.button-000, input.button-000:hover { border: 1px solid transparent; background: rgba(54,67,186,0.6); color:#fff }

.button-000-l, a.button-000-l, input.button-000-l { border: 1px solid #3643BA; background: transparent; color:#3643BA }
.button-000-l:hover, a:hover.button-000-l, input.button-000-l:hover { border: 1px solid transparent; background: rgba(54,67,186,0.6); color:#fff }

/*-------------------通用-------------------*/ 
.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_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_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 }

.zoomimg { -moz-transition: 2s; -o-transition: 2s; -webkit-transition: 2s; transition: 2s }
a:hover .zoomimg, .zoomimg:hover { 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; transition: all 0.3s; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s }
.com-link:hover { box-shadow: 0 0 10px 5px rgba(0,0,0,0.1); color: #000; -webkit-transform:translatey(-3px); transform:translatey(-3px) }

.block-padding { padding-top: calc(12vh); padding-bottom: calc(12vh) }
.block-padding-t { padding-top: calc(12vh) }
.block-padding-b { padding-bottom: calc(12vh) }
.block-padding-t45 { padding-top: calc(12vh - 15px) }
.block-padding-b45 { padding-bottom: calc(12vh - 15px) }
.block-padding-t40 { padding-top: calc(12vh - 20px) }
.block-padding-b40 { padding-bottom: calc(12vh - 20px) }

.card-padding { padding: 40px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box }

.headspace { width: 100%; height: 60px }

.pointernone { pointer-events: none }
.pointerall { pointer-events: all }

/*-------------------头部-------------------*/
.headbox { width: 100%; height: 60px; background: #fff; border-bottom: 1px solid #eff1f3; position: fixed; top: 0; left: 0; z-index: 1000 }
.navbox { width: 100%; height: 100% }
.logo { width: 156px; height: 30px; background: url(../images/logo@2x.png?v0.1) 0 0 no-repeat; background-size: 100% 100%; position: absolute; left: 20px; top: 15px; z-index: 1000 }
.head-wechat { height: 20px; line-height: 20px; margin-top: 20px }
.head-wechat .iconfont { line-height: 20px }
.WeChat-ewm { width: 20px; height: 20px; line-height: 20px; text-align: center; color: #000f17 }
.WeChat-img { width: 100px; height:auto; position: absolute; right: -10px } 
.nav .menuLi { float:left; display:block; position:relative }
.nav .menuLi .mainmenu { display:block; height:60px; line-height:60px; padding-left: 20px; padding-right: 20px; position:relative; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; color: #000f17; font-weight: bold; -moz-transition: 0.3s; -o-transition: 0.3s; -webkit-transition: 0.3s; transition: 0.3s }
.nav .menuLi .mainmenu:hover, .nav .menuLi .mainmenu.menuLiBnameover { color: #3643BA }
.nav .menuLi .mainmenu.menuLipitchon::after { content: ""; width: 24px; height: 2px; background: #000f17; position: absolute; top: 50px; left: 50%; margin-left: -12px }
.menuListBox { width: auto; text-align: left; line-height:30px; position:absolute; top:60px; left: 50%; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); background: #fff; border: 1px solid #eff1f3; display:none }
.menuListBox a { position: relative; display: inline-block; white-space:nowrap; padding: 0 20px; font-size: 12px; line-height:30px; color: #000f17; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; white-space:nowrap }
.menuListBox a:hover { color: #3643BA }
.menuListBox a:first-of-type { margin-top: 10px }
.menuListBox a:last-of-type { margin-bottom: 10px }
.menuListBox a:before { background-color: #3643BA; content: ''; position: absolute; left: 10px; top: 15px; width: 5px; height: 1px;  transition: -webkit-transform .2s ease; transition: transform .2s ease; -webkit-transform-origin: right; transform-origin: right; -webkit-transform: scaleX(0); transform: scaleX(0) }
.menuListBox a:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1); -webkit-transform-origin: left; transform-origin: left }

/*-------------------底部-------------------*/ 
.foot-con { background: url(../images/foot-bg.jpg) center center no-repeat; background-size: cover }
.foot-con.block-padding { padding-bottom: calc(2vh) }
.foot-link a { display: inline-block; margin: 0 30px }
.foot-link a:hover { color: rgba(255,255,255,0.6) }
.foot-con ul { display: flex; justify-content: space-evenly; width: 440px; margin: auto }
.foot-con li { width: 220px; overflow: hidden }
.foot-con li .ewm { width: 120px; height: auto }
@media ( max-width:800px ) {
	.foot-con ul { width: 100%; max-width: 400px }
}

.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 .iconfont { color: #fff }
.gototop:hover { background: #000;; filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity:1; opacity:1 }

/*-------------------首页-------------------*/ 
.scroll { width: 100px; height: auto; padding-bottom: 65px; z-index: 100; pointer-events: none; position: fixed; bottom: 0; left: 50%; margin-left: -50px; color: #fff }
.scroll em { display: block; height: 40px; width: 2px; border-left: 1px dashed #fff; box-sizing: border-box; position: absolute; bottom: 0; left: 49px }
.scroll, .scroll p, .scroll em, .scroll .iconfont { transition: all 0.3s }
.scroll.brief em { opacity: 0 }
.scroll.brief { padding-bottom: 28px }
.scroll.brief p { /* color: #11294b */ display: none }
.scroll .iconfont { position: absolute; bottom: 48px; left: 50%; margin-left: -11px }
.scroll.brief .iconfont { bottom: 15px; -webkit-animation: updown01 1s infinite; animation: updown01 1s infinite; color: #11294b }
@-webkit-keyframes updown01 {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes updown01 {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5px);
  }
}

.index-search { display: inline-block; margin: 50px auto 0; border: 10px solid rgba(255,255,255,0.16); box-sizing: border-box; opacity: 0; pointer-events: none; transition: all 0.5s }
.index-search.cur { opacity: 1; pointer-events: all }
.search-select { height: 50px; line-height: 50px; cursor: pointer; background: #fff; padding: 0 30px 0 20px; box-sizing: border-box; color: #000; transition:0.2s; -webkit-transition: 0.2s; -moz-transition: 0.2s; -o-transition: 0.2s }
.search-select:hover { background: rgba(255,255,255,0.8) }
.search-select .iconfont { line-height: 50px; transition:0.2s; -webkit-transition: 0.2s; -moz-transition: 0.2s; -o-transition: 0.2s; position: absolute; top: 0; right: 15px }
.search-select-list { padding: 15px 0; background: #fff; position: absolute; top: 50px; left: 0; z-index: 10; display: none; max-height: calc(22vh); overflow-y: auto }
.search-select-list li a { display: block; min-width: 100%; height: 30px; line-height: 30px; padding: 0 20px; box-sizing: border-box; font-size: 12px; white-space:nowrap }
.search-select-list li a:hover { background: rgba(0,0,0,0.2) }
.search-select.unfold .iconfont { -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg) }
.search-input { padding: 12px 20px; box-sizing: border-box; height: 50px; line-height: 50px; border: 0 }
.search-button { padding: 0 20px; box-sizing: border-box; height: 50px; line-height: 50px; background: #3643BA; color: #fff }
.search-button:hover { background: rgba(54,67,186,0.6); color: #fff }

.index-video { width: 100%; height: calc(100vh); min-height: 560px }
/* .index-video #video1 { display: block; width: auto; height: auto; min-width: calc(100vw); min-height: calc(100vh); z-index: 0 } */
.index-video-txt { background: rgb(255,255,255,0.1) }
.index-video-txt .width40 { min-width: 600px }
.to-fullvideo { width: 70px; text-align: center; height: 60px; padding-top: 10px; box-sizing: border-box; position: absolute; z-index: 3; right: 0; top: 50%; transform:  translateY(-50%); -ms-transform:  translateY(-50%); -webkit-transform:translateY(-50%); -o-transform: translateY(-50%); -moz-transform: translateY(-50%); background-color: #3643BA; color: #fff; overflow: hidden }
.to-fullvideo p.fontSize10 { line-height: 12px }
.to-fullvideo:hover { color: rgba(255,255,255,0.6) }
.video-popbox { width: 640px; height: 368px }

.stage_media { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; max-width: 180%; max-height: 180%; width: auto; height: auto; transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); background-size: cover; transition: 1s opacity; background-color: #000 }


.mask-layer { height: 102%; position: absolute; left: 0; top: -1%; z-index: 999 }

.inmission-dots { width: 48%; position: absolute; top: 0; left: 0; z-index: -1 }
.inmission-line { width: 40%; height: 1px; background: #000 }

.play { width: 42px; height: 42px; left: 10px; bottom: 10px; top: auto; -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0) }
.play .icon-play { position: absolute; left: 0; bottom: 0 }
.play .icon-play:before { content: "\e606"!important; color: rgba(255,255,255,0.5) }

.index-introbox { position: absolute; top: 50% }

.invalue-dots { width: 48%; position: absolute; top: -10%; right: -10%; z-index: -1 }

.invalue-kwicks { width: 35%; height: 100%; background: rgba(255,255,255,0.7); position: absolute; right: 0; top: 0; z-index: 10 }
.invalue-kwicks .kwicks { background: transparent!important; width: 80%; height: auto; position: absolute; left: 10%; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); color: #000 }
.invalue-kwicks .kwicks > li {opacity:1 !important ; width: 100%; text-align: left; height: 80px; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.1) }
.invalue-kwicks .kwicks > li:last-of-type { border-bottom: 0 }
.invalue-kwicks .kwicks > li.cur { height: auto; -webkit-animation: heightslide 1s forwards; animation: heightslide 1s forwards }
.invalue-kwicks .kwicks > li h5 { display: block; width: 100%; height: 80px; line-height: 80px; opacity: 0.3; font-weight: 800; transition: all 0.3s; position: relative; cursor: pointer }
.invalue-kwicks .kwicks > li.cur h5, .invalue-kwicks .kwicks > li:hover h5 { opacity: 1 }
.invalue-kwicks .kwicks > li .icon-down { font-size: 20px; position: absolute; right: 5px; top: 30px; transition: all 0.3s }
.invalue-kwicks .kwicks > li:hover .icon-down { -webkit-animation: updown 1s infinite; animation: updown 1s infinite }
@-webkit-keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes updown01 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.invalue-kwicks .kwicks > li.cur .icon-down { transform: rotate(-90deg) }
.invalue-kwicks .kwicks > li.cur:hover .icon-down { -webkit-animation: none; animation: none }

.invalue-kwicks .kwicks > li small { display: block; width: 100%; height: 0; overflow: hidden; font-size: 1.4rem; line-height: 1.6 }
.invalue-kwicks .kwicks > li.cur small { height: auto; padding-bottom: 20px; -webkit-animation: heightslide 1s forwards; animation: heightslide 1s forwards }
@-webkit-keyframes heightslide {
	0%{
		max-height:0px;
	}
	100% {
		max-height:300px;
	}
}
@keyframes heightslide {
	0%{
		max-height:0px;
	}
	100% {
		max-height:300px;
	}
}

.honor-group .swiper { padding: 0 20px }
.honor-group .swiper-slide { padding-top: 20px }
.honor-group .swiper-slide img { box-shadow: 0 0 10px 5px rgba(0,0,0,0.1) }
.honor-group-arrows { width: 100%; height: 36px; line-height: 36px; position: absolute; left: 0; top: 40% }
.honor-group-arrows .swiper-button-prev, .honor-group-arrows .swiper-button-next { width: 36px; height: 36px; top: 0; margin-top: 0; color: #c9c9c9; opacity: 1 }
.honor-group-arrows .swiper-button-prev:hover, .honor-group-arrows .swiper-button-next:hover { color: #11294b }
.honor-group-arrows .swiper-button-prev { left: 2% }
.honor-group-arrows .swiper-button-next { right: 2% }
.honor-group-arrows .swiper-button-prev::after, .honor-group-arrows .swiper-button-next::after { font-family: "iconfont" !important; font-size: 36px; line-height: 36px }
.honor-group-arrows .swiper-button-prev::after { content: "\ea31" }
.honor-group-arrows .swiper-button-next::after { content: "\ea32" }


.inwelfare-con { height: calc(80vh); min-height: 660px; box-sizing: border-box; background: url(../images/welfare-bg.jpg) center center no-repeat; background-size: cover }
.inwelfare-list { display: flex; justify-content: center }
.inwelfare-circle { margin: 0 10px }
.inwelfare-circle a { display: block; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,1); color: #11294b; box-sizing: border-box }
.inwelfare-circle a:hover { background: #3643BA; color: #fff }

.entire-con { height: calc(100vh); min-height: 600px; background: url(../images/entire.jpg) center center no-repeat; background-size: cover }
.entire-circle { position: absolute }
.entire-circle a { display: block; width: 130px; height: 130px; border-radius: 50%; background: #fff; color: #11294b; box-sizing: border-box; word-break: keep-all }
.entire-circle a:hover { background: #3643BA; color: #fff }
.entire-circle01 { left: 4%; top: 40% }
.entire-circle02 { left: 17%; top: 12% }
.entire-circle03 { left: 30%; top: 36% }
.entire-circle04 { left: 43%; top: 57% }
.entire-circle05 { left: 48.5%; top: 13% }
.entire-circle06 { left: 62%; top: 46% }
.entire-circle07 { left: 79%; top: 18% }
.entire-circle-pop { width: 140px; background: #3643BA; color: #fff; padding: 70px 0 20px; box-sizing: border-box; border-radius: 20px; position: absolute; top: 60px; left: 30px }

.innews-swiper .swiper { padding: 20px 20px 0 }
.innews-swiper .swiper-button-prev, .innews-swiper .swiper-button-next { width: 36px; height: 36px; color: #c9c9c9; opacity: 1 }
.innews-swiper .swiper-button-prev:hover, .innews-swiper .swiper-button-next:hover { color: #11294b }
.innews-swiper .swiper-button-prev { left: 2% }
.innews-swiper .swiper-button-next { right: 2% }
.innews-swiper .swiper-button-prev::after, .innews-swiper .swiper-button-next::after { font-family: "iconfont" !important; font-size: 36px; line-height: 36px }
.innews-swiper .swiper-button-prev::after { content: "\ea31" }
.innews-swiper .swiper-button-next::after { content: "\ea32" }

.com-shade-fff { background: rgba(255,255,255,0.7); z-index: -1 }

.index-ewmpop { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 10; pointer-events: none; background: #f7f8f9; opacity: 0; transition: all 0.3s }
.index-ewmpop img { width: 40%; margin: 0 auto 20px }
a:hover .index-ewmpop { opacity: 1 }

.indexpop { width: 50%; height: auto; max-width: 1060px; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); z-index: 1001 }
.indexpop .icon-close { font-size: 30px; color: #fff; position: absolute; top: -40px; right: 0; cursor: pointer; transition: all 0.1s }
.indexpop .icon-close:hover { transform:rotate(90deg); -webkit-transform:rotate(90deg) }

/*-------------------内部通用-------------------*/
.insidekv-slogan { height: calc(100% - 60px); bottom: 0 }

/*-------------------社会招聘-------------------*/
.social-kv { width: 100%; height: calc(100vh); min-height: 560px; background: url(../images/social/kv.jpg) center center no-repeat; background-size: cover }
.social-kv-txt { background: rgb(18,41,75,0.4) }
.social-con .dots, .campus-tabs .dots { width: 48%; position: absolute; top: -20%; left: -18%; z-index: -1 }
.social-map { margin: auto; padding-top: 160px }
.social-circle { position: absolute; width: 80px; height: 80px; border-radius: 50% }
.social-circle-icon { display: block; width: 80px; height: 80px; border-radius: 50%; background: #000;; color: #fff; text-align: center; position: absolute; top: 0; left: 0; z-index: 2; box-shadow: 0 0 5px 5px rgba(0,0,0,0.1); transition: all 0.3s }
.social-circle-icon .iconfont { font-size: 40px; line-height: 80px; cursor: pointer }
.social-circle-pop { display: inline-block; white-space:nowrap; position: absolute; top: 80px; padding-top: 10px; left: 50%; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); color: #000; text-align: center; transition: all 0.3s }
.social-circle:hover .social-circle-icon { color: #fff; -webkit-transform:translatey(-3px); transform:translatey(-3px) }
.social-circle:hover .social-circle-pop { -webkit-transform:translatey(-3px) translateX(-50%); transform:translatey(-3px) translateX(-50%) }


.social-circle01 { left: 0; top: 120px }
.social-circle02 { left: calc(16.66% - 30px); top: 60px }
.social-circle03 { left: calc(33.33% - 40px); top: 20px }
.social-circle04 { left: calc(50% - 40px); top: 0px }
.social-circle05 { left: calc(66.66% - 40px); top: 20px }
.social-circle06 { left: calc(83.33% - 50px); top: 60px }
.social-circle07 { right: 0; top: 120px }


/*-------------------校园招聘-------------------*/
.campus-kv { width: 100%; height: calc(100vh); min-height: 560px; background: url(../images/campus/kv.jpg) center center no-repeat; background-size: cover }
/* .campus-video { width: 100%; height: calc(100vh); min-height: 560px }
.campus-video #campusvideo { display: block; width: auto; height: auto; min-width: calc(100vw); min-height: calc(100vh); z-index: 0 } */
.campus-video-txt { background: rgb(18,41,75,0.4) }

.campus-tabs .tabs li { width: 25%; margin: 0; border-bottom: 0 }
.campus-tabs .tabs li:nth-of-type(even) { background: #f7f7f7 }
.campus-tabs .tabs a { width: 100%; text-align: center; padding: 0; height: 70px; line-height: 70px; color: #999; border-right: 0; border-bottom: 0; font-size: 22px; opacity: 1; filter: alpha(opacity = 100) }
.campus-tabs .tabs a h5 { display: block; width: 100%; height: 70px; line-height: 70px }
.campus-tabs .tabs li:first-of-type a h5 { float: right }
.campus-tabs .tabs li:last-of-type a h5 { float: left }
.campus-tabs .tabs a:hover { background: rgba(54,67,186,0.8); color: #fff; opacity: 1; filter: alpha(opacity = 100) }
.campus-tabs .tabs .current, .campus-tabs .tabs .current:hover, .campus-tabs .tabs a:focus { background: #3643BA; color: #fff }

.campus-imgtxt { display: flex; align-items: center; flex-direction: row-reverse }

.responsibility-tabs { background: rgba(255,255,255,0.7) }
.responsibility-tabs .tabs { width: 300px; float: left }
.responsibility-tabs .tabs li { width: 100%; margin: 0; border-bottom: 0; border-bottom: 1px solid rgba(0,0,0,0.1) }
.responsibility-tabs .tabs li:last-of-type { border-bottom: 0 }
.responsibility-tabs .tabs a { width: 100%; padding: 10px 0; height: 70px; color: #999; border-right: 0; border-bottom: 0; font-size: 18px; opacity: 1; filter: alpha(opacity = 100); position: relative }
.responsibility-tabs .tabs a span { display: inline-block; width: 100%; line-height: 25px; position: absolute; top: 50%; transform: translateY(-50%); left: 0 }
.responsibility-tabs .tabs a:hover { background: rgba(54,67,186,0.8); color: #fff; opacity: 1; filter: alpha(opacity = 100) }
.responsibility-tabs .tabs .current, .responsibility-tabs .tabs .current:hover, .responsibility-tabs .tabs a:focus { background: #3643BA; color: #fff }
.responsibility-tabs .content { width: calc(100% - 300px); float: left }
.responsibility-tabs .content .box { padding-top: 30px }

.qa-card { overflow: hidden; margin-top: 10px }
.qa-card:first-of-type { margin-top: 0 }
.qa-card h6 { width: 100%; line-height: 30px; padding: 10px 40px 10px 48px; box-sizing: border-box; position: relative; transition: all 0.3s; cursor: pointer }
.qa-card h6 span { width: 30px; text-align: center; height: 30px; line-height: 30px; border-radius: 50%; background: #000;; color: #fff; position: absolute; left: 10px; top: 10px }
.qa-card h6 .iconfont { font-size: 20px; line-height: 20px; position: absolute; top: 15px; right: 10px; transform: rotate(180deg); transition: all 0.3s }
.qa-card div.undis { width: 100%; padding: 20px; box-sizing: border-box; width: 100%/* ; background: #000;; color: #fff */ }
/* .qa-card h6.cur { background: #000;; color: #fff }
.qa-card h6.cur span { background: #fff; color: #11294b } */
.qa-card h6.cur .iconfont { transform: rotate(0) }

.flow-list { display: flex; justify-content: center; margin: 50px auto 0 }
.flow-list .iconfont { margin: 50px 10px auto; color: rgba(255,255,255,0.5) }
.flow-list>div { width: 130px; height: 130px; box-sizing: border-box; padding-top: 15px; color: #fff; border-radius: 50%; text-align: center; background: #3643BA }
.flow-list>div p { font-size: 12px; line-height: 16px }

.responsibility-con { background: url(../images/campus/responsibility-bg.jpg) left center no-repeat; background-size: cover }

.responsibility-swiper .swiper-button-prev, .responsibility-swiper .swiper-button-next { width: 36px; height: 36px; color: #999; opacity: 1; top: 67% }
.responsibility-swiper .swiper-button-prev:hover, .responsibility-swiper .swiper-button-next:hover { color: #11294b }
.responsibility-swiper .swiper-button-prev { left: 2% }
.responsibility-swiper .swiper-button-next { right: 2% }
.responsibility-swiper .swiper-button-prev::after, .responsibility-swiper .swiper-button-next::after { font-family: "iconfont" !important; font-size: 36px; line-height: 36px }
.responsibility-swiper .swiper-button-prev::after { content: "\ea31" }
.responsibility-swiper .swiper-button-next::after { content: "\ea32" }

/* .responsibility-list { background: url(../images/dots-small.png); background-size: 100% auto } */
.responsibility-list>div { padding: 30px; box-sizing: border-box; min-height: 120px }
.responsibility-list>div p { display: block; position: relative; padding-left: 10px; max-height:60px; line-height:20px; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical }
.responsibility-list>div p::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #000; position: absolute; top: 7px; left: 0 }

.responsibility-list-ts>div { padding: 30px; box-sizing: border-box }
.responsibility-list-ts>div p { display: block; position: relative; padding-left: 10px; line-height:20px }
.responsibility-list-ts>div p::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #000; position: absolute; top: 7px; left: 0 }

.path-dots { width: 48%; position: absolute; bottom: -20%; right: -20%; z-index: -1 }

.welfare-li { background: #fff; transition: all 0.3s; min-height: 150px }
.welfare-li .iconfont { float: left; font-size: 4.2em; margin-left: 0.2em; color: #11294b }
.welfare-li>div { width: calc(100% - 7em) }
.welfare-li>div small { color: #666 }
.welfare-list .area_33 { position: relative }
.welfare-list .area_33:nth-of-type(1)::after, .welfare-list .area_33:nth-of-type(2)::before, .welfare-list .area_33:nth-of-type(3)::after { content: ""; width: 60%; height: 1px; background: rgba(0,0,0,0.1); position: absolute; left: 20%; bottom: 0 }
.welfare-list .area_33:nth-of-type(1)::before, .welfare-list .area_33:nth-of-type(4)::before { content: ""; width: 1px; height: 60%; background: rgba(0,0,0,0.1); position: absolute; right: 0; top: 20% }
.welfare-list .area_33:nth-of-type(3)::before, .welfare-list .area_33:nth-of-type(6)::before { content: ""; width: 1px; height: 60%; background: rgba(0,0,0,0.1); position: absolute; left: 0; top: 20% }
.welfare-li:hover { background: #000;; color: #fff }
.welfare-li:hover .iconfont, .welfare-li:hover>div small  { color: #fff }

/*-------------------员工故事-------------------*/
.instory-con { background: url(../images/story-bg.jpg) center center no-repeat; background-size: cover }
.instory-list>div { width: 16.66%; float: left }

.story-hp { width: 150px; height: auto; transition: all 0.3s }
a:hover .story-hp { box-shadow: 0 0 10px 5px rgba(0,0,0,0.1); -webkit-transform:translatey(-3px); transform:translatey(-3px) }
.sd-con { width: calc(60vw); padding: 30px }
.sd-txtbox { height: calc(26vw); overflow-x: hidden; overflow-y: auto }
.sd-txtbox::-webkit-scrollbar {
width:6px;
height:6px;
background: linear-gradient(90deg, #fff 20%, #d6d6d6 48%, #fff 52%);  
}
.sd-txtbox::-webkit-scrollbar-thumb {
border-radius:10px;
background:#9f9f9f
}
.sd-txtbox::-webkit-scrollbar-thumb:window-inactive {
background:#9f9f9f
}
.sd-txtbox::-webkit-scrollbar-thumb:vertical:hover {
background-color:#595959
}
.sd-txtbox::-webkit-scrollbar-thumb:vertical:active {
background-color:#2a2a2a
}
.sd-txtbox li { list-style-type: disc; list-style-position: inside }
.index-page #cboxLoadedContent { border: 0 transparent; border-top: 50px solid transparent; overflow: hidden }
.index-page #cboxClose { top: 0; right: 0; color: #fff }


.team-con01 { pointer-events: none }
.team-txt01 { pointer-events: all }

.team-page .swiper, .campus-swiper01 .swiper, .campus-swiper02 .swiper { padding-bottom: 30px }
.team-page .swiper .swiper-pagination-bullets, .campus-swiper01 .swiper .swiper-pagination-bullets, .campus-swiper02 .swiper .swiper-pagination-bullets { bottom: 0 }
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #000; }
.team-page .poabsolute-h50 { top: calc(50% - 15px) }

/*-------------------缤纷活动-------------------*/
.activity-com-swiper .swiper { padding: 0 20px }
.activity-com-swiper .swiper-button-prev, .activity-com-swiper .swiper-button-next { width: 36px; height: 36px; color: #c9c9c9; opacity: 1 }
.activity-com-swiper .swiper-button-prev:hover, .activity-com-swiper .swiper-button-next:hover { color: #11294b }
.activity-com-swiper .swiper-button-prev { left: 2% }
.activity-com-swiper .swiper-button-next { right: 2% }
.activity-com-swiper .swiper-button-prev::after, .activity-com-swiper .swiper-button-next::after { font-family: "iconfont" !important; font-size: 36px; line-height: 36px }
.activity-com-swiper .swiper-button-prev::after { content: "\ea31" }
.activity-com-swiper .swiper-button-next::after { content: "\ea32" }

.xjh-play { display: block; width: 80px; text-align: center; height: 80px; line-height: 80px; z-index: 10; cursor: pointer } 
.xjh-play:hover { opacity: 0.8 }
.xjh-play .icon-play { font-size: 80px; color: #fff }
.xjh-play.on { left: 10px; bottom: 10px; top: auto; -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0) }
.xjh-play.on .icon-play:before { content: "\e606"; opacity: 0.5 }

/*-------------------薪酬福利-------------------*/
.salary-con::after { content: ""; width: 50%; height: 100%; position: absolute; top: 0; z-index: -1; opacity: 0.14 }
.salary-con01::after { right: 0; background: url(../images/salary/1s.jpg) right center no-repeat; background-size:cover }
.salary-con02::after { left: 0; background: url(../images/salary/2s.jpg) left center no-repeat; background-size:cover }
.salary-con03::after { right: 0; background: url(../images/salary/3s.jpg) right center no-repeat; background-size:cover }
.salary-con04::after { left: 0; background: url(../images/salary/4s.jpg) left center no-repeat; background-size:cover }
.salary-con05::after { right: 0; background: url(../images/salary/5s.jpg) right center no-repeat; background-size:cover }
.salary-con06::after { left: 0; background: url(../images/salary/6s.jpg) left center no-repeat; background-size:cover }

.salary-iconbox { padding-bottom: 50px; position: relative }
.salary-iconbox::after { content: ""; height: 40px; width: 1px; background: #000; position: absolute; top: 50px }
.salary-iconbox .iconfont { font-size: 50px }
.salary-con01 .salary-iconbox::after, .salary-con03 .salary-iconbox::after, .salary-con05 .salary-iconbox::after { left: 25px }
.salary-con02 .salary-iconbox::after, .salary-con04 .salary-iconbox::after, .salary-con06 .salary-iconbox::after { right: 25px }

.salary-con .enname { color: rgba(68,68,68,0.4); position: absolute }
.salary-con01 .enname, .salary-con03 .enname, .salary-con05 .enname { bottom: -40px; left: 20px }
.salary-con02 .enname { transform: rotate(-90deg); right: -150px; top: 50%; margin-top: -20px }
.salary-con04 .enname { transform: rotate(-90deg); right: -192px; top: 50%; margin-top: -20px }
.salary-con06 .enname { transform: rotate(-90deg); right: -170px; top: 50%; margin-top: -20px }

.copyright { display: flex; justify-content: center }
.copyright img { width:14px; margin-top: 2px; margin-right: 2px } 

/*-------------------响应式css-------------------*/

@media ( min-width:1600px ) {
.container { width:1500px }

}

@media ( min-width:1300px ) and ( max-width:1599px ) {
.container { width:1260px }

}

@media ( min-width:1100px ) and ( max-width:1299px ) {
.container { width:990px }
.card-padding { padding: 30px }


}



@media ( min-width:801px ) and ( max-width:1099px ) {	
.container { width: 90%; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box }
.card-padding { padding:20px }

.instory-list>div { width: 33.33% }

.invalue-kwicks .kwicks { width: 86%; left: 7% }
.invalue-kwicks .kwicks > li { height: 50px }
.invalue-kwicks .kwicks > li h5 { height: 50px; line-height: 50px }
.invalue-kwicks .kwicks > li .icon-down { top: 20px }

.index-introbox { position: static; top: 0; margin-top: 20px }
.sb-top { position: static; top: 0; transform: translateY(0) }
.sb-bottom { position: static; bottom: 0; margin-bottom: 0; margin-top: 20px }

}
