.container{width: 1200px;margin: 0 auto;}
.white{color: #FFFFFF!important;}
.mg-a{margin:0 auto}
.center{margin:0 auto;text-align:center}
.mg-10{margin:10px}
.mg-t10{margin-top:10px}
.mg-b10{margin-bottom:10px}
.mg-tb10{margin-top:10px;margin-bottom:10px}
.mg-l10{margin-left:10px}
.mg-r10{margin-right:10px}
.mg-lr10{margin-left:10px;margin-right:10px}
.mg-1{margin:1px}
.mg-2{margin:2px}
.mg-3{margin:3px}
.mg-4{margin:4px}
.mg-5{margin:5px}
.mg-t5{margin-top:5px}
.mg-t10{margin-top:10px}
.mg-b5{margin-bottom:5px}
.mg-b10{margin-bottom:10px}
.mg-tb5{margin-top:5px;margin-bottom:5px}
.mg-l5{margin-left:5px}
.mg-r5{margin-right:5px}
.mg-lr5{margin-left:5px;margin-right:5px}
.mg-0{margin:0px}
.mg-t0{margin-top:0px}
.mg-b0{margin-bottom:0px}
.mg-tb0{margin-top:0px;margin-bottom:0px}
.mg-l0{margin-left:0px}
.mg-r0{margin-right:0px}
.mg-lr0{margin-left:0px;margin-right:0px}
.pd-10{padding:10px}
.pd-t10{padding-top:10px}
.pd-b10{padding-bottom:10px}
.pd-tb10{padding-top:10px;padding-bottom:10px}
.pd-l10{padding-left:10px}
.pd-r10{padding-right:10px}
.pd-lr10{padding-left:10px;padding-right:10px}
.pd-1{padding:1px}
.pd-2{padding:2px}
.pd-3{padding:3px}
.pd-4{padding:4px}
.pd-5{padding:5px}
.pd-t5{padding-top:5px}
.pd-b5{padding-bottom:5px}
.pd-tb5{padding-top:5px;padding-bottom:5px}
.pd-l5{padding-left:5px}
.pd-r5{padding-right:5px}
.pd-lr5{padding-left:5px;padding-right:5px}
.pd-0{padding:0px}
.pd-t0{padding-top:0px}
.pd-b0{padding-bottom:0px}
.pd-tb0{padding-top:0px;padding-bottom:0px}
.pd-l0{padding-left:0px}
.pd-r0{padding-right:0px}
.pd-lr0{padding-left:0px;padding-right:0px}
.fl{float:left}
.fr{float:right}
.clear{clear:both}
.tc{text-align:center}
.tl{text-align:left}
.tr{text-align:right}
.b{font-weight:bold;}
.cur{cursor:pointer}
.fixed{position:fixed}
.pa{position:absolute}
.pr{position:relative}
.ps{position:static}
.block{display:block!important}
.iblock{display:block!important}
.inblock{display:inline-block}
.none{display:none!important}
.flex{display:-webkit-box;display:-webkit-flex;display:flex;}
.flex-1{-webkit-box-flex:1;-webkit-flex:1;flex:1;}
.flex-2{-webkit-box-flex:2;-webkit-flex:2;flex:2;}
.flex-3{-webkit-box-flex:3;-webkit-flex:3;flex:3;}
.flex-4{-webkit-box-flex:4;-webkit-flex:4;flex:4;}
.flex-5{-webkit-box-flex:5;-webkit-flex:5;flex:5;}
.flex-6{-webkit-box-flex:6;-webkit-flex:6;flex:6;}
.flex-7{-webkit-box-flex:7;-webkit-flex:7;flex:7;}
.flex-8{-webkit-box-flex:8;-webkit-flex:8;flex:8;}
.flex-9{-webkit-box-flex:9;-webkit-flex:9;flex:9;}
.flex-10{-webkit-box-flex:10;-webkit-flex:10;flex:10;}
.flex-11{-webkit-box-flex:11;-webkit-flex:11;flex:11;}
.flex-12{-webkit-box-flex:12;-webkit-flex:12;flex:12;}
.flex-top{align-self:flex-start}
.flex-down{align-self:flex-end}
.flex-c{align-self:center}
.flex-top{align-self:flex-start}
.flexs-c{justify-content:center;align-items:center;align-content:center}
.flexs-left{justify-content:flex-start}
.flexs-right{justify-content:flex-end}
.flexs-top{align-items:flex-start}
.flexs-down{align-items:flex-end}
.flexs-jsb{justify-content:space-between}
.flexs-jsa{justify-content:space-around}
.flexs-line{align-items:baseline}
.flexs-as{align-items:stretch}
.flexs-ac{align-items:center}
.fg1{flex-grow: 1;}
.fs0{flex-shrink: 0;}
img {
    max-width: 100%;
    border: 0;
    outline: none;
    vertical-align: middle;
}
/* 隐藏默认滚动条 */
::-webkit-scrollbar {
  width: 0;
  height: 0;
  color: transparent;
}
/* 单行溢出 */
.singleLineOverFlow{
  text-overflow:ellipsis;
  white-space:nowrap;
  overflow:hidden;
  width:100%;
}
/* 二行溢出 */
.twoLineOverFlow{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
}
/* 三行溢出 */
.moreLineOverFlow{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
/*禁止点击*/
.pointerNone{
  pointer-events:none!important;
}
/* 消除元素自带的外边距和内边距 */
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, span {margin: 0;padding: 0;}
ol,ul,li{list-style:none;}
/*包含以下五种的链接*/
a {
    text-decoration: none;
	color: #333333;
}
/*正常的未被访问过的链接*/
a:link {
    text-decoration: none;
	color: #333333;
}
/*已经访问过的链接*/
a:visited {
    text-decoration: none;
	color: #333333;
}
/*鼠标划过(停留)的链接*/
a:hover {
    text-decoration: none;
	color: #333333;
}
/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
    text-decoration: none;
	color: #333333;
}
/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
    text-decoration: none;
	color: #333333;
}
.curPoint{cursor: pointer;}



/*base��ʼ*/
ul li {
    list-style: none;
}
input,button {
    background-color: #fff;
    border: none;
}
input,button {
    outline: none;
}
html {
    min-height: 100%;
}
body {
    font-size: 14px;
    color: #333;
    min-height: 100%;
    font-family: "Microsoft YaHei",sans-serif;
    overflow-x: hidden;
}
a:link,a:hover,a:active,a:visited {
    text-decoration: none;
}
ol,ul{
    margin-bottom: 0;
    padding: 0;
}
.contain {
    width: 1260px;
    margin: 0 auto;
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    font-size: 16px;
    color: #666;
    z-index: 999;
    background-color: #fff;
}
.header-top {
    display: flex;
    justify-content: space-between;;
    padding-bottom: 22px;
    border-bottom: 1px solid #E6E6E6;
}
.header-top a {
    display: inline-block;
    padding-top: 20px;
}

.nav-list {
    text-align: center;
    width: 80%;
    padding: 0;
    margin: 0;
    display: flex; /* 启用 Flexbox */
    justify-content: flex-end; /* 将项目对齐到 flex 容器的末端（最右边） */
}

.header-div1 {
    box-shadow: 0 5px 5px rgba(193,195,199,0.2);
    z-index: 9;
}
.header-ul1 > li {
    width: 11.1%;
    line-height: 60px;
    padding: 0;
    box-sizing: border-box;
}
.header-ul1 > li > a {
    border-bottom: 2px solid #fff;
}
.header-ul1 > li.active > a,
.header-ul1 > li:hover > a {
    color: #158bb8;
    border-bottom: 2px solid #158bb8;
}
.header-ul1 a {
    display: block;
    font-size: 16px;
    color: #8B8B8B;
}
.header-div2 {
    display: none;
    line-height: 24px;
    border-bottom: 1px solid #F2F2F2;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-top: 1px solid #F2F2F2;
    z-index: 999;
}
.header-ul2 li {
    width: 10%;
    float: left;
    text-align: center;
}
.header-ul2 li a {
    display: block;
    padding: 18px 0;
    color: #999;
    font-size: 16px;
}
.header-ul2 li a:hover {
    background-color: #FAFAFA;
}
.header-icon {
    height: 65px;
    margin-bottom: 6px;
}
.header-ul2 li:nth-of-type(1) .header-icon {
    background: url(../webImg/icon1.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(2) .header-icon {
    background: url(../webImg/icon3.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(3) .header-icon {
    background: url(../webImg/icon2.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(4) .header-icon {
    background: url(../webImg/icon4.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(5) .header-icon {
    background: url(../webImg/icon5.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(6) .header-icon {
    background: url(../webImg/icon7.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(7) .header-icon {
    background: url(../webImg/icon8.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(8) .header-icon {
    background: url(../webImg/icon9.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(9) .header-icon {
    background: url(../webImg/icon6.png) no-repeat  center;
}
.header-ul2 li:nth-of-type(10) .header-icon {
    background: url(../webImg/icon10.png) no-repeat  center;
}
/*ͷ������*/
/*��ҳ��ʼ*/
/*��ҳ�ֲ�ͼ*/
#carousel-example-generic .carousel-indicators li,
#carousel-example-generic .carousel-indicators .active {
    width: 40px;
    height: 6px;
    border-radius: 0;
    margin: 0;
    background: rgba(255,255,255,0.5);
    border: none;
}
#carousel-example-generic .carousel-indicators .active  {
    background-color: #fff;
}
.main {
    padding: 80px 0;
}
.main-first-title {
    border-bottom: 1px solid #E6E6E6;
    text-align: center;
}
.main-first-title span {
    border-bottom: 4px solid #158bb8;
    position: relative;
    bottom: -4px;
    font-size: 30px;
    color: #333;
    display: inline-block;
    padding-bottom: 4px;
}
.main-second-title {
    text-align: center;
    font-size: 12px;
    color: #999;
    line-height: 40px;
    margin-bottom: 20px;
}
.main-content1 > li {
    width: 280px;
    height: 432px;
    margin: 0 10px;
    float: left;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.main-content1 .zy-li-div1 {
    padding: 30px 0 20px;
    line-height: 30px;
    font-size: 16px;
    color: black;
}
.zy-li-div1{
    text-align: left;
}
.zy-li-div1 p{
    margin: 0;
    font-size: 15px;
    color: #666666;
}
.chakan{
    width: 150px;
    height: 45px;
    background-color: #158bb8;
    border-radius: 21px;
    text-align: center;
    line-height: 45px;
    margin-top: 38px;
}
.chakan a{
    color: white;
}
.zy-li-div1 p{
    margin: 0;
    font-size: 15px;
    color: #666666;
}
.zy-li-div2{
    text-align: center;
}
.chakan2{
    width: 150px;
    height: 45px;
    background-color: white;
    border-radius: 21px;
    text-align: center;
    line-height: 45px;
    margin: 0 auto;
    margin-top: 38px;
}
.chakan2 a{
    color: #158bb8;
}
.zy-li-div2 p{
    margin: 0;
    font-size: 15px;
    color: white;
    line-height: 30px;
}
.main-content1 .zy-li-div2 {
    position: absolute;
    background-color:#158bb8;
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 16px;
    padding: 30px 0 20px;
    display: none;
}
/*�ͻ�����*/
#myCarousel {
    padding-top: 60px;
}
#myCarousel .carousel-indicators li {
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 30px;
    color: #666;
    font-size: 14px;
    margin: 0 10px;
    text-indent: 0;
    cursor: pointer;
    background-color: #000\9;
    background-color: rgba(0,0,0,0);
    border: 0;
    border-radius: 2px;
    padding: 0 20px;
}
#myCarousel .carousel-indicators li.active {
    background-color: #158bb8;
    color: #fff;
    box-shadow:0px 10px 10px rgba(61,123,225,0.39);
}
#myCarousel .carousel-inner {
    min-height: 398px;
}
#myCarousel .item ul {
    padding: 0 90px;
}
#myCarousel .item li {
    width: 250px;
    height: 446px;
    margin-right: 20px;
    position: relative;
    cursor: pointer;
    float: left;
    margin-bottom: 20px;
}
#myCarousel .item li > div {
	width: 100%;
	height: 100%;
}
#myCarousel .item li img {
    width: 250px;
    height: 446px;
    border-radius: 6px;
}
#myCarousel .item li:nth-of-type(4n) {
    margin-right: 0;
}
#myCarousel .carousel-indicators {
    top: 0;
    bottom: inherit;
}
.item-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 120px 46px 0 46px;
    text-align: center;
    border-radius: 6px;
    display: none;
}
.item-text div:nth-of-type(1) {
    font-size: 24px;
    margin-bottom: 24px;
}
/*�������*/
.main-content3 li {
    width: 220px;
    margin: 10px;
    border: 1px solid #E6E6E6;
    text-align: center;
    height: 100px;
    float: left;
    cursor: pointer;
}
.main-content3 li img {
    max-width: 100%;
    max-height: 100%;
}
/*��������*/
.main-content4 {
    width: 1920px;
    position: relative;
    left: 50%;
    margin-left: -960px;
}
.main-content4 li {
    width: 50%;
    height: 274px;
    float: left;
}
.main-content4 img {
    width: 100%;
    height: 100%;
}
.gywm-text {
    text-align: left;
    padding: 60px;
    color: #666;
}
.gywm-text > div {
    width: 290px;
    float: left;
}
.gywm-text2 > div {
    float: right;
    text-align: right;
}
.gywm-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}
/*��ҵ��Ѷ*/
.main-content5 {
    padding: 0 20px;
}
.content5-ul1 li {
    width: 373px;
    margin-right: 20px;
    border: 1px solid #E6E6E6;
    float: left;
    margin-bottom: 30px;
}
.content5-ul1 li:nth-of-type(3n) {
    margin-right: 0;
}
.content5-ul1 .img-box {
    width: 100%;
    height: 230px;
}
.content5-ul1 .img-box img {
    width: 100%;
    height: 100%;
}
.content5-ul1 .text-box {
    line-height: 50px;
    padding: 0 10px;
    text-align: center;
    overflow: hidden;/*������������*/
    white-space: nowrap;/*������*/
    text-overflow:ellipsis;/*��������������...��ʾ*/
}
.main-content5 a {
    color: #666;
    font-size: 14px;
}
.content5-ul2 {
    border: 1px solid #E6E6E6;
    padding: 10px 0;
    text-align: center;
}
.content5-ul2 li {
    width: 372px;
    float: left;
    margin-right: 20px;
}
.content5-ul2 li:nth-of-type(3n) {
    margin-right: 0;
}
.content5-ul2 li a {
    padding: 0 10px;
    line-height: 40px;
    display: block;
    overflow: hidden;/*������������*/
    white-space: nowrap;/*������*/
    text-overflow:ellipsis;/*��������������...��ʾ*/
}

.content5-ul2 li a:hover{
    color: #158bb8;
}
/*��ҳ����*/
/*�ײ���ʼ*/
.footer {
    background-color: #F7FAFF;
}
.footer-top {
    padding: 50px 20px;
    text-align: left;
    overflow: auto;

}
.footer-top > div {
    min-width: 140px;
    float: left;
}
.footer-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.footer-top ul a {
    line-height: 36px;
    color: #666;
    font-size: 12px;
}
.footer-lxwm {
    font-size: 16px;
    color: #666;
    line-height: 26px;
    padding-top: 4px;
}
.footer .pull-right {
    color: #333;
    line-height: 30px;
    font-weight: bold;
}
.footer-bottom {
    border-top: 1px solid #F2F2F2;
    line-height: 40px;
    text-align: center;
    color: #666;
}
/*�ײ�����*/
/*APP��ʼ*/
#menu {
    position: fixed;
    right: 32px;
    top: 50%;
    width: 150px;
    height: 535px;
    list-style-type: none;

    margin-top: -200px;
    transition: all .4s;
    -webkit-transition: all .4s;
    z-index: 9999;
}
#menu.on ul {
    border-right: 1px dashed #724009;
}
#menu ul {
    border-right: 1px dashed #fff;
    transition: all .4s;
    -webkit-transition: all .4s;
}
#menu li {
    width: 120px;
    text-align: right;
    position: relative;
    margin-bottom: 20px;
}
#menu li a {
    font-size: 15px;
    color: #fff;
    transition: all .4s;
    -webkit-transition: all .4s;
}
#menu.on li a {
    color: #724009;
}
#menu.on1 .a2 i.s1{-webkit-animation:flash .5s alternate;animation:flash .5s alternate;}
#menu.on2 .a2 i.s2{-webkit-animation:flash .5s alternate;animation:flash .5s alternate;}
#menu.on li.active:after {
    background: #724009;
}
#menu li.active:after {
    width: 15px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    content: '';
    display: block;
    position: absolute;
    right: -37px;
    top: 4px;
    transition: all .4s;
    -webkit-transition: all .4s;
}
/*.kfapp {
    position: absolute;
    left: 50%;
    width: 800px;
    margin-left: -400px;
    top: 0;
}*/
.page1 .kfapp {
    position: absolute;
    width: 800px;
    height: 108px;
    top: 50%;
    left: 50%;
    margin: -450px 0 0 -400px;
}
.kfapp div:nth-of-type(1){
    font-size: 66px;
    color: #158bb8;
}
.kfapp div:nth-of-type(2){
    color: #78ABFF;
    font-size: 24px;
}
.active .kfapp {
    animation: flipInX 2s;
}
.page1 .box {
    position: absolute;
    width: 888px;
    height: 453px;
    background: url(../webImg/page1.png) no-repeat center bottom;
    background-size: auto 100%;
    top: 50%;
    left: 50%;
    margin: -250px 0 0 -480px;
}
.active .box {
    -webkit-animation: bounceInDown 1s;
    animation: bounceInDown 1s;
}
.page1 .classify-yd {
    position: absolute;
    width: 1200px;
    height: 500px;
    left: 50%;
    margin-left: -600px;
    top: 100px;
}
.classify-yd > div {
    position: absolute;
}
.page1 .classify-yd .yd-1 {
    bottom: 0;
    left: 0;
}
.page1 .classify-yd .yd-2 {
    bottom: 140px;
    left: 200px;
}
.page1 .classify-yd .yd-3 {
    bottom: 210px;
    left: 70px;
}
.page1 .classify-yd .yd-4 {
    top: 40px;
    left: 250px;
}
.page1 .classify-yd .yd-5 {
    top: 20px;
    left: 45%;
}
.page1 .classify-yd .yd-6 {
    top: 140px;
    right: 400px;
}
.page1 .classify-yd .yd-7 {
    top: 0;
    right: 250px;
}
.page1 .classify-yd .yd-8 {
    top: 130px;
    right: 80px;
}
.page1 .classify-yd .yd-9 {
    bottom: 60px;
    right: 270px;
}
.page1 .classify-yd .yd-10 {
    bottom: -40px;
    right: 0;
}
.active .classify-yd {
    -webkit-animation: zoomIn 1s;
     animation: zoomIn 1s;
}
.text {
    width: 100%;
    color: #fff;
}
.text-fr {
    position: absolute;
    width: 600px;
    top: 50%;
    left: 50%;
    margin: -280px 0 0 143px;
}
.text-fl {
    position: absolute;
    width: 600px;
    top: 50%;
    left: 50%;
    margin: -280px 0 0 -671px;
}
.text .text-2 h4 {
    font-size: 26px;
    line-height: 48px;
    text-align: left;
}
.text .text-1 p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: left;
}
.text .text-1 h3 {
    font-size: 37px;
    line-height: 48px;
    text-align: left;
}
.text .text-1 h5 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: left;
}
.text .text-2 ul li i {
    display: block;
    width: 100%;
    height: 58px;
    line-height: 58px;
}
.text .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/jrl_icon1.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/jrl_icon2.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/jrl_icon3.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/jrl_icon4.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/jrl_icon5.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/jrl_icon6.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(7) i {
    background: url(../webImg/jrl_icon7.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(8) i {
    background: url(../webImg/jrl_icon8.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(9) i {
    background: url(../webImg/jrl_icon9.png) no-repeat center;
}
.text .text-2 ul li:nth-of-type(10) i {
    background: url(../webImg/jrl_icon10.png) no-repeat center;
}
.text .text-2 ul li {
    float: left;
    width: 120px;
    text-align: center;
    margin-bottom: 8px;
}
.text .text-3 h4 {
    font-size: 26px;
    line-height: 70px;
    text-align: left;
}
.text .text-3 p {
    height: 75px;
}
.text .text-3 p a {
    width: 75px;
    height: 75px;
    float: left;
    margin-right: 15px;
}
.text .text-3 p a img {
    width: 100%;
    border-radius: 15%;
}
.text .text-3 .more span {
    position: relative;
    z-index: 9;
    line-height: 44px;
    display: block;
}
.text .text-3 .more {
    box-sizing: border-box;
    font-size: 20px;
    color: #fff;
    width: 222px;
    line-height: 44px;
    border: 2px solid #fff;
    display: block;
    border-radius: 3px;
    text-align: center;
    margin-top: 54px;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
}
.active .text-fr .text-1 {
    -webkit-animation: fadeInRight .7s;
    animation: fadeInRight .7s;
}
.active .text-fr .text-2 {
    -webkit-animation: fadeInRight .9s;
    animation: fadeInRight .9s;
}
.active .text-fr .text-3 {
    -webkit-animation: fadeInRight 1.1s;
    animation: fadeInRight 1.1s;
}
.app-fl {
    position: absolute;
    width: 508px;
    height: 508px;
    background: url(../webImg/page2.png) no-repeat center;
    background-size: 100% auto;
    top: 50%;
    left: 50%;
    margin: -189px 0 0 -654px;
}
.active .app-yd {
    -webkit-animation: zoomIn .9s;
    animation: zoomIn .9s;
}
.page2 .app-yd > div {
    position: absolute;
    z-index: 9;
}
.page2 .app-yd .yd-1 {
    top: 40px;
    left: -20px;
}
.active .app-yd .yd-1 {
    -webkit-animation: rotateIn 2.3s;
    animation: rotateIn 2.3s;
}
.page2 .app-yd .yd-2 {
    top: 40px;
    left: 250px;
}
.active .app-yd .yd-2 {
    -webkit-animation: fadeInRight 1.2s;
    animation: fadeInRight 1.2s;
}
.page2 .app-yd .yd-3 {
    top: 207px;
    right: 190px;
}
.active .app-yd .yd-3 {
    -webkit-animation: fadeInUp 1.2s;
    animation: fadeInUp 1.2s;
}
.page2 .app-yd .yd-4 {
    bottom: 143px;
    right: 92px;
}
.active .app-yd .yd-4 {
    -webkit-animation: zoomIn 1.3s;
    animation: zoomIn 1.3s;
}
.page2 .app-yd .yd-5 {
    top: 227px;
    left: 0;
}
.active .app-yd .yd-5 {
    -webkit-animation: rotateInDownLeft 1.5s;
    animation: rotateInDownLeft 1.5s;
}
.page2 .app-yd .yd-6 {
    top: 178px;
    left: 130px;
}
.active .app-yd .yd-6 {
    -webkit-animation: rotateInDownLeft 1.7s;
    animation: rotateInDownLeft 1.7s;
}
.page2 .app-yd .yd-7 {
    top: 20px;
    right: 20px;
}
.active .app-yd .yd-7 {
    -webkit-animation: rotateInDownRight 1.9s;
    animation: rotateInDownRight 1.9s;
}
.page2 .app-yd .yd-2 img{
    width: 42px;
    height: 42px;
}
.page2 .app-yd .yd-8 {
    bottom: 108px;
    left: 80px;
    z-index: 1;
}
.active .app-yd .yd-8 {
    -webkit-animation: fadeInUp 1s;
    animation: fadeInUp 1s;
}
.active .text-fl .text-1 {
    -webkit-animation: fadeInLeft .7s;
    animation: fadeInLeft .7s;
}
.active .text-fl .text-2 {
    -webkit-animation: fadeInLeft .9s;
    animation: fadeInLeft .9s;
}
.active .text-fl .text-3 {
    -webkit-animation: fadeInLeft 1.1s;
    animation: fadeInLeft 1.1s;
}
.page3 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/dsl_icon1.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/dsl_icon2.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/dsl_icon3.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/dsl_icon4.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/dsl_icon5.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/dsl_icon6.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(7) i {
    background: url(../webImg/dsl_icon7.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(8) i {
    background: url(../webImg/dsl_icon8.png) no-repeat center;
}
.page3 .text-2 ul li:nth-of-type(9) i {
    background: url(../webImg/dsl_icon9.png) no-repeat center;
}
.app-fr {
    position: absolute;
    width: 508px;
    height: 508px;
    background: url(../webImg/page2.png) no-repeat center;
    background-size: 100% auto;
    top: 50%;
    left: 50%;
    margin: -166px 0 0 60px;
}
/*.active .app-fl,
.active .app-fr {
    -webkit-animation: fadeIn 2s;
    -o-animation: fadeIn 2s;
    animation: fadeIn 2s;
}*/
.app-fl > div ,
.app-fr > div {
    position: absolute;
}
.page3 .app-ds .ds-1 {
    top: 114px;
    left: -16px;
}
.active .app-ds .ds-1 {
    -webkit-animation: fadeInUp 1.4s;
    animation: fadeInUp 1.4s;
}
.page3 .app-ds .ds-2 {
    top: -16px;
    right: 60px;
}
.active .app-ds .ds-2 {
    -webkit-animation: fadeInDown 2.2s;
    animation: fadeInDown 2.2s;
}
.page3 .app-ds .ds-3 {
    top: 50px;
    left: 50px;
}
.active .app-ds .ds-3 {
    -webkit-animation: fadeInDown 1.6s;
    animation: fadeInDown 1.6s;
}
.page3 .app-ds .ds-4 {
    top: 126px;
    right: 10px;
}
.active .app-ds .ds-4 {
    -webkit-animation: fadeInDown 2s;
    animation: fadeInDown 2s;
}
.page3 .app-ds .ds-5 {
    bottom: 120px;
    left: -56px;
}
.active .app-ds .ds-5 {
    -webkit-animation: fadeInDown 1.8s;
    animation: fadeInDown 1.8s;
}
.page4 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/cyl_icon1.png) no-repeat center;
}
.page4 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/cyl_icon2.png) no-repeat center;
}
.page4 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/cyl_icon3.png) no-repeat center;
}
.page4 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/cyl_icon4.png) no-repeat center;
}
.page4 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/cyl_icon5.png) no-repeat center;
}
.page4 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/cyl_icon6.png) no-repeat center;
}
.page4 .text-2 ul li:nth-of-type(7) i {
    background: url(../webImg/cyl_icon7.png) no-repeat center;
}
.page4 .text-2 ul li:nth-of-type(8) i {
    background: url(../webImg/cyl_icon8.png) no-repeat center;
}
.app-cy {
    background-image: url(../webImg/page4.png);
}
.active .app-cy .cy-1 {
    -webkit-animation: fadeInLeft 1.8s;
    animation: fadeInLeft 1.8s;
}
.app-cy .cy-2 {
    top: -50px;
    left: 0;
}
.active .app-cy .cy-2 {
    -webkit-animation: fadeInDown 1.2s;
    animation: fadeInDown 1.2s;
}
.app-cy .cy-3 {
    top: 102px;
    right: 72px;
}
.active .app-cy .cy-3 {
    -webkit-animation: fadeInRight 1.8s;
    animation: fadeInRight 1.8s;
}
/*�罻APP*/
.page5 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/sjl_icon1.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/sjl_icon2.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/sjl_icon3.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/sjl_icon4.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/sjl_icon5.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/sjl_icon6.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(7) i {
    background: url(../webImg/sjl_icon7.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(8) i {
    background: url(../webImg/sjl_icon8.png) no-repeat center;
}
.page5 .text-2 ul li:nth-of-type(9) i {
    background: url(../webImg/sjl_icon9.png) no-repeat center;
}
.page5 .text {
    color: #724009;
}
.page5 .text .text-3 .more {
    color: #724009;
    border-color: #724009;
}
.sj-1 {
    top: 89px;
    left: 75px;
}
.active .sj-1 {
    -webkit-animation: bounce 1.8s;
    animation: bounce 1.8s;
}
.sj-2 {
    top: -36px;
    left: -75px;
}
.active .sj-2 {
    -webkit-animation: fadeInUp 1.4s;
    animation: fadeInUp 1.4s;
}
.sj-3 {
    top: -28px;
    right: 53px;
}
.active .sj-3 {
    -webkit-animation: rotateIn 1.6s;
    animation: rotateIn 1.8s;
}
.sj-4 {
    top: 67px;
    right: -96px;
}
.active .sj-4 {
    -webkit-animation: fadeInRight 1.4s;
    animation: fadeInRight 1.4s;
}
.sj-5 {
    top: 150px;
    left: 0;
}
.active .sj-5 {
    -webkit-animation: fadeInLeft 1.4s;
    animation: fadeInLeft 1.4s;
}
.sj-6 {
    top: 247px;
    right: -51px;
}
.active .sj-6 {
    -webkit-animation: fadeInRight 1.2s;
    animation: fadeInRight 1.2s;
}
.sj-7 {
    top: 298px;
    left: 4px;
}
.active .sj-7 {
    -webkit-animation: fadeInDown 1.8s;
    animation: fadeInDown 1.8s;
}
/*��ҵAPP*/
.page6 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/qyl_icon1.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/qyl_icon2.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/qyl_icon3.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/qyl_icon4.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/qyl_icon5.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/qyl_icon6.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(7) i {
    background: url(../webImg/qyl_icon7.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(8) i {
    background: url(../webImg/qyl_icon8.png) no-repeat center;
}
.page6 .text-2 ul li:nth-of-type(9) i {
    background: url(../webImg/qyl_icon9.png) no-repeat center;
}
.qy-1 {
    top: 104px;
    left: 15px;
}
.active .qy-1 {
    -webkit-animation: bounceInDown 1.8s;
    animation: bounceInDown 1.8s;
}
.qy-2 {
    top: 64px;
    left: -70px;
}
.active .qy-2 {
    -webkit-animation: bounceInLeft 2s;
    animation: bounceInLeft 2s;
}
/*��ѵAPP*/
.page7 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/pxl_icon1.png) no-repeat center;
}
.page7 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/pxl_icon2.png) no-repeat center;
}
.page7 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/pxl_icon3.png) no-repeat center;
}
.page7 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/pxl_icon4.png) no-repeat center;
}
.page7 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/pxl_icon5.png) no-repeat center;
}
.page7 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/pxl_icon6.png) no-repeat center;
}
.page7 .text-2 ul li:nth-of-type(7) i {
    background: url(../webImg/pxl_icon7.png) no-repeat center;
}
.px-1 {
    top: 26px;
    left: -23px;
}
.active .px-1 {
    -webkit-animation: zoomIn 1.6s;
    animation: zoomIn 1.6s;
}
.px-2 {
    top: -85px;
    left: -10px;
}
.active .px-2 {
    -webkit-animation: zoomInLeft 2s;
    animation: zoomInLeft 2s;
}
.px-3 {
    top: 9px;
    left: 232px;
}
.active .px-3 {
    -webkit-animation: zoomInDown 2s;
    animation: zoomInDown 2s;
}
.px-4 {
    top: 27px;
    right: -40px;
}
.active .px-4 {
    -webkit-animation: zoomInRight 2s;
    animation: zoomInRight 2s;
}
.px-5 {
    bottom: 26px;
    left: 32px;
}
.active .px-5 {
    -webkit-animation: zoomInLeft 2s;
    animation: zoomInLeft 2s;
}
/*������APP*/
.page8 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/lyl_icon1.png) no-repeat center;
}
.page8 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/lyl_icon2.png) no-repeat center;
}
.page8 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/lyl_icon3.png) no-repeat center;
}
.page8 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/lyl_icon4.png) no-repeat center;
}
.page8 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/lyl_icon5.png) no-repeat center;
}
.page8 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/lyl_icon6.png) no-repeat center;
}
.page8 .text-2 ul li:nth-of-type(7) i {
    background: url(../webImg/lyl_icon7.png) no-repeat center;
}
.ly-1 {
    top: 8px;
    left: -40px;
}
.active .ly-1 {
    -webkit-animation: fadeInLeft 2s;
    animation: fadeInLeft 2s;
}
.ly-2 {
    top: -64px;
    left: 287px;
}
.active .ly-2 {
    -webkit-animation: fadeInUp 2s;
    animation: fadeInUp 2s;
}
.ly-3 {
    top: 86px;
    left: 245px;
}
.active .ly-3,
.active .ly-4,
.active .ly-5 {
    -webkit-animation: fadeInRight 3s;
    animation: fadeInRight 3s;
}
.ly-4 {
    top: 156px;
    left: -24px;
}
.ly-5 {
    top: 193px;
    right: -64px;
}
/*ҽ����APP*/
.page9 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/yll_icon1.png) no-repeat center;
}
.page9 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/yll_icon2.png) no-repeat center;
}
.page9 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/yll_icon3.png) no-repeat center;
}
.page9 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/yll_icon4.png) no-repeat center;
}
.page9 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/yll_icon5.png) no-repeat center;
}
.page9 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/yll_icon6.png) no-repeat center;
}
.page9 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/yll_icon6.png) no-repeat center;
}
.yl-1 {
    top: 58px;
    left: 10px;
}
.active .yl-1 {
    -webkit-animation: zoomIn 1.8s;
    animation: zoomIn 1.8s;
}
.yl-2 {
    top: -56px;
    left: 246px;
}
.active .yl-2,
.active .yl-3,
.active .yl-4,
.active .yl-5{
    -webkit-animation: wobble 1.8s;
    animation: wobble 1.8s;
}
.yl-3 {
    top: -21px;
    left: -34px;
}
.yl-4 {
    top: 74px;
    right: -26px;
}
.yl-5 {
    right: 15px;
    bottom: -26px;
}
/*�ز���APP*/
.page10 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/dcl_icon1.png) no-repeat center;
}
.page10 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/dcl_icon2.png) no-repeat center;
}
.page10 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/dcl_icon3.png) no-repeat center;
}
.page10 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/dcl_icon4.png) no-repeat center;
}
.page10 .text-2 ul li:nth-of-type(5) i {
    background: url(../webImg/dcl_icon5.png) no-repeat center;
}
.page10 .text-2 ul li:nth-of-type(6) i {
    background: url(../webImg/dcl_icon6.png) no-repeat center;
}
.dc-1 {
    bottom: 13px;
    left: -43px;
}
.active .dc-1 {
    -webkit-animation: bounceInDown 1s;
    animation: bounceInDown 1s;
}
.dc-2 {
    top: -67px;
    left: -17px;
}
.active .dc-2 {
    -webkit-animation: fadeInDown 2s;
    animation: fadeInDown 2s;
}
.dc-3 {
    top: 72px;
    left: -121px;
}
.active .dc-3 {
    -webkit-animation: fadeInLeft 1.4s;
    animation: fadeInLeft 1.4s;
}
.dc-4 {
    top: 65px;
    right: -94px;
}
.active .dc-4 {
    -webkit-animation: fadeInLeft 1.6s;
    animation: fadeInLeft 1.6s;
}
.dc-5 {
    top: 159px;
    right: -27px;.
}
.active .dc-5 {
    -webkit-animation: fadeInLeft 1.8s;
    animation: fadeInLeft 1.8s;
}
/*������APP*/
.page11 .text-2 ul li:nth-of-type(1) i {
    background: url(../webImg/wll_icon1.png) no-repeat center;
}
.page11 .text-2 ul li:nth-of-type(2) i {
    background: url(../webImg/wll_icon2.png) no-repeat center;
}
.page11 .text-2 ul li:nth-of-type(3) i {
    background: url(../webImg/wll_icon3.png) no-repeat center;
}
.page11 .text-2 ul li:nth-of-type(4) i {
    background: url(../webImg/wll_icon4.png) no-repeat center;
}
.wl-1 {
    top: 64px;
    left: 21px;
}
.active .wl-1 {
    -webkit-animation: fadeInUp 1.5s;
    animation: fadeInUp 1.5s;
}
.wl-2 {
    top: 40px;
    left: 240px;
}
.active .wl-2,
.active .wl-3,
.active .wl-4 {
    -webkit-animation: bounce 2s;
    animation: bounce 2s;
}
.wl-3 {
    top: 104px;
    left: 77px;
}
.wl-4 {
    top: 119px;
    right: 73px;
}
/*page12*/
.page12 .service-process {
    margin-top: 100px;
}
/*APP����*/
/*С����ʼ*/
.banner img {
    width: 100%;
    min-width: 1200px;
}
.applets-main {
     padding: 40px 0 80px;
     text-align: center;
}
.applets-first-title {
    font-size: 50px;
}
.applets-second-title {
    font-size: 20px;
    color: #666;
    width: 720px;
    border-bottom: 1px solid #B3B3B3;
    height: 20px;
    line-height: 20px;
    position: relative;
    left: 50% ;
    margin-left: -380px;
    margin-bottom: 40px;
}
.applets-second-title span {
    position: relative;
    top: 10px;
    display: inline-block;
    padding: 0 20px;
    background-color: #fff;
}
.applets-content1 li {
    width: 280px;
    margin: 10px;
    padding-bottom: 30px;
    float: left;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}
.applets-content1 li img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.applets-content1 li div:nth-of-type(1) {
    font-size: 24px;
    line-height: 50px;
}
.applets-content1 li div:nth-of-type(2) {
    font-size: 14px;
    color: #666;
    text-align: left;
    padding: 0 20px;
}
.applets-content4 {
    text-align: center;
}
.applets-content4 .swiper-container {
    padding: 0 20px;
}
.applets-content4 img {
    width: 250px;
}
.service-process {
    width: 1920px;
    position: relative;
    left: 50%;
    margin-left: -960px;
}
.applets-content2-title {
    font-size: 50px;
    margin-bottom: 40px;
}
.applets-content2-title span {
    color: #158bb8;
}
.applets-content2 li {
    width: 180px;
    margin: 0 10px 40px 10px;
    float: left;
    background-color: #fff;
    border-radius: 20px;
    padding-bottom: 20px;
    font-size: 24px;
    line-height: 20px;

}
.applets-icon {
    height: 220px;
}
.applets-content2 li:nth-of-type(1) .applets-icon {
    background: url(../webImg/applets-icon1.png) no-repeat center;
}
.applets-content2 li:nth-of-type(1):hover .applets-icon {
    background: url(../webImg/applets-icon1.png) no-repeat center;
    background-size: 50% auto;
}
.applets-content2 li:nth-of-type(2) .applets-icon {
    background: url(../webImg/applets-icon2.png) no-repeat center;
}
.applets-content2 li:nth-of-type(2):hover .applets-icon {
    background: url(../webImg/applets-icon2.png) no-repeat center;
    background-size: 50% auto;
}
.applets-content2 li:nth-of-type(3) .applets-icon {
    background: url(../webImg/applets-icon3.png) no-repeat center;
}
.applets-content2 li:nth-of-type(3):hover .applets-icon {
    background: url(../webImg/applets-icon3.png) no-repeat center;
    background-size: 50% auto;
}
.applets-content2 li:nth-of-type(4) .applets-icon {
    background: url(../webImg/applets-icon4.png) no-repeat center;
}
.applets-content2 li:nth-of-type(4):hover .applets-icon {
    background: url(../webImg/applets-icon4.png) no-repeat center;
    background-size: 50% auto;
}
.applets-content2 li:nth-of-type(5) .applets-icon {
    background: url(../webImg/applets-icon5.png) no-repeat center;
}
.applets-content2 li:nth-of-type(5):hover .applets-icon {
    background: url(../webImg/applets-icon5.png) no-repeat center;
    background-size: 50% auto;
}
.applets-content2 li:nth-of-type(6) .applets-icon {
    background: url(../webImg/applets-icon6.png) no-repeat center;
}
.applets-content2 li:nth-of-type(6):hover .applets-icon {
    background: url(../webImg/applets-icon6.png) no-repeat center;
    background-size: 50% auto;
}
.applets-content3 {
    padding: 50px 0 10px;
}
.applets-main4 {
    height: 740px;
    background: url(../webImg/applets-content4.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    width: 1920px;
    left: 50%;
    margin-left: -960px;
}
.applets-content4-title {
    font-size: 50px;
    color: #fff;
    margin-bottom: 70px;
}
/*С�������*/
/*���ڽ��������ʼ*/
.financial-banner {
    position: relative;
}
.banner-text {
    position: absolute;
    height: 100%;
    top: 0;
    left: 50%;
    color: #fff;
    margin-left: -600px;
}
.banner-title1 {
    font-size: 50px;
    margin-top: 80px;
    margin-bottom: 10px;
    font-weight: bold;
}
.banner-title2 {
    font-size: 30px;
    width: 100%;
}
.banner-phone {
    width: 370px;
    line-height: 70px;
    font-size: 38px;
    border-radius: 38px;
    color: #158bb8;
    display: inline-block;
    text-align: left;
    background-color: #fff;
    font-style: italic;
    position: absolute;
    bottom: 100px;
    left: 50%;
    margin-left: -185px;
}
.banner-phone span {
    display: inline-block;
    width: 90px;
    height: 70px;
    float: left;
    background: url(../webImg/banner_phone.png) no-repeat center;
}
@media (max-width: 1200px) {
    .banner-title1 {
        margin-top: 80px;
    }
    .banner-phone {
        bottom: 80px;
    }
}
@media (min-width: 1920px) {
    .banner-title1 {
        margin-top: 180px;
    }
}
.financial-mian1 > div {
    width: 825px;
    margin: 0 auto;
    position: relative;
    height: 308px;
}
.financial-mian1 img {
    position: absolute;
    top: 20px;
}
.financial-mian1-content {
    width: 400px;
    font-size: 18px;
    color: #666;
    float: right;
}
.financial-mian1-title {
    font-size: 50px;
    line-height: 160px;
    color: #333;
}
.financial-mian2 {
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#166CDB, endColorstr=#15AED7);/*IE<9>*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=1, startColorstr=#166CDB, endColorstr=#15AED7)";/*IE8+*/
    background: linear-gradient(to right,#166CDB,#15AED7);
    color: #fff;
    padding: 50px 0 70px;
}
.financial-mian2-title {
    font-size: 40px;
    margin-bottom: 120px;
}
.financial-mian2-content li {
    width: 180px;
    margin: 0 10px 50px 10px;
    float: left;
    line-height: 30px;
}
.financial-icon {
    height: 90px;
}
.financial-mian2-content li:nth-of-type(1) .financial-icon {
    background: url(../webImg/financial_icon1.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(2) .financial-icon {
    background: url(../webImg/financial_icon2.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(3) .financial-icon {
    background: url(../webImg/financial_icon3.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(4) .financial-icon {
    background: url(../webImg/financial_icon4.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(5) .financial-icon {
    background: url(../webImg/financial_icon5.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(6) .financial-icon {
    background: url(../webImg/financial_icon6.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(7) .financial-icon {
    background: url(../webImg/financial_icon7.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(8) .financial-icon {
    background: url(../webImg/financial_icon8.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(9) .financial-icon {
    background: url(../webImg/financial_icon9.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(10) .financial-icon {
    background: url(../webImg/financial_icon10.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(11) .financial-icon {
    background: url(../webImg/financial_icon11.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(12) .financial-icon {
    background: url(../webImg/financial_icon12.png) no-repeat center;
}
.financial-mian3 {
    background: none;
}
.financial-mian3 .applets-content4-title{
    color: #333;
}
/*���ڽ����������*/
/*�����̶���ϵͳ��ʼ*/
.join-main1 {
    position: relative;
}
.join-main1 .financial-mian1-content {
    width: 660px;
    padding-right: 10px;
}
.join-main1 img {
    left: 200px;
    top: auto;
    bottom: 0;
}
.join-icon {
    height: 90px;
}
.financial-mian2-content li:nth-of-type(1) .join-icon {
    background: url(../webImg/join_icon1.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(2) .join-icon {
    background: url(../webImg/join_icon2.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(3) .join-icon {
    background: url(../webImg/join_icon3.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(4) .join-icon {
    background: url(../webImg/join_icon4.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(5) .join-icon {
    background: url(../webImg/join_icon5.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(6) .join-icon {
    background: url(../webImg/join_icon6.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(7) .join-icon {
    background: url(../webImg/join_icon7.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(8) .join-icon {
    background: url(../webImg/join_icon8.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(9) .join-icon {
    background: url(../webImg/join_icon9.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(10) .join-icon {
    background: url(../webImg/join_icon10.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(11) .join-icon {
    background: url(../webImg/join_icon11.png) no-repeat center;
}
.financial-mian2-content li:nth-of-type(12) .join-icon {
    background: url(../webImg/join_icon12.png) no-repeat center;
}
/*�����̶���ϵͳ����*/
/*��վ���迪ʼ*/
.website-main {
    height: 612px;
    padding-top: 70px;
    color: #333;
}
.website-main1 {
    background: url(../webImg/website_main1_bg.png) no-repeat center;
}
.website-main .contain {
    padding: 0 10px;
    position: relative;
}
.website-main p {
    margin-bottom: 30px;
}
.website-main3 p {
    margin-bottom: 20px;
}
.website-main a {
    display: block;
    width: 210px;
    line-height: 40px;
    text-align: center;
    margin-top: 16px;
    color: #666666;
    font-size: 16px;
    border: 1px solid #F2F2F2;
}
.website-main-text {
    width: 496px;
}
.website-main-title1 {
    font-size: 46px;
}
.website-main-title2 {
    font-size: 24px;
    margin: 10px 0 24px;
}
.logo-box {
    margin-top: 20px;
    width: 294px;
    font-size: 0;
    overflow: hidden;
    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
}
.logo-box img {
    width: 98px;
    height: 55px;
    float: left;
    display: block;
    border-left: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
}
.website-main-img {
    position: absolute;
}
.website-main1 .website-main-img {
    top: 58px;
    right: 10px;
}
.website-main2 {
    color: #fff;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#8C79FE, endColorstr=#FC65FA);/*IE<9>*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=1, startColorstr=#8C79FE, endColorstr=#FC65FA)";/*IE8+*/
    background: linear-gradient(to right,#8C79FE,#FC65FA);
}
.website-main2 .website-main-img {
    top: 70px;
    left: 10px;
}
.website-main2 a,
.website-main4 a {
    color: #fff;
    border: 1px solid #fff;
}
.website-main3 .website-main-text{
    width: 595px;
}
.website-main4 {
    color: #fff;
    background: url(../webImg/website_main4_bg.png) no-repeat center;
}
.website-main4 .website-main-img {
    left: 10px;
    top: 70px;
}
.cat-main1 {
    height: 612px;
    background: url(../webImg/cat_main1.png) no-repeat center;
}
.cat-main3 {
    height: 755px;
    background: url(../webImg/cat_main3.png) no-repeat center;
}
.cat-main2 {
    padding: 80px 0 100px;
}
.cat-main2 ul {
    padding: 0 50px;
}
.cat-main2 li {
    width: 266px;
    float: left;
    margin: 0 50px;
    line-height: 26px;
    color: #666;
}
.cat-main2-title {
    font-size: 40px;
    margin-bottom: 90px;
}
.cat-main2-title span {
    color: #FF5555;
    margin-left: 30px;
}
.cat-li-title {
    color: #666;
    font-size: 20px;
    margin: 20px 0 26px;
}
/*��վ�������*/
/*�������ǿ�ʼ*/
.aboutus-banner img {
    min-width: 1200px;
    width: 100%;
}
.path {
    padding-right: 10px;
    text-align: right;
    line-height: 60px;
    color: #333;
}
.path a {
    color: #333;
}
.aboutus-header {
    border-bottom: 1px solid #E6E6E6;
}
.aboutus-header .contain {
    position: relative;
}
.aboutus-header img {
    margin-bottom: 20px;
}
.aboutus-header ul {
    position: absolute;
    bottom: 16px;
    right: 10px;
}
.aboutus-header li {
    float: left;
    width: 76px;
    line-height: 28px;
    background-color: #333;
    margin: 0 5px;
    text-align: center;
}
.aboutus-header li.selected {
    background-color: #158bb8;
}
.aboutus-header li a {
    display: block;
    color: #fff;
}
/*��˾���*/
.aboutus-company {
    padding: 80px 10px 60px 0;
}
.aboutus-company-text {
    width: 540px;
    float: right;
    color: #999;
}
.aboutus-company-title1 {
    color: #666;
}
.aboutus-company-title2 {
    font-size: 24px;
    color: #158bb8;
    margin-bottom: 30px;
}
/*�˲���Ƹ*/
.aboutus-recruitment {
    padding: 60px 10px 90px 0;
}
.aboutus-recruitment ul {
    width: 640px;
    float: right;
}
.aboutus-recruitment li {
    margin-bottom: 90px;
}
.aboutus-recruitment li:nth-last-of-type(1) {
    margin-bottom: 0;
}
.recruitment-li-title {
    font-size: 26px;
    color: #060001;
    margin-bottom: 16px;
}
/*��ϵ����*/
.contact {
    padding: 40px 10px 120px;
}
.contact-title {
    margin-bottom: 40px;
    position: relative;
}
.contact-title1 {
    color: #999;
    line-height: 18px;
}
.contact-title2 {
    font-size: 30px;
    padding-bottom: 16px;
}
.contact-title:before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #158bb8;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -30px;
}
.contact ul {
    float: left;
}
.contact-text {
    width: 560px;
    float: right;
}
/*��ҵ��Ѷ*/
.news {
    padding: 20px 10px 120px;
}
.news li {
    padding: 28px 0 18px;
    border-bottom: 1px solid #E6E6E6;
}
.news-li-left {
    width: 60px;
    float: left;
    text-align: center;
    font-size: 12px;
    color: #999;
}
.day {
    font-size: 40px;
    color: #158bb8;
    line-height: 44px;
    margin-top: 18px;
}
.news-li-right {
    width: 1100px;
    float: right;
}
.news-li-title {
    color: #158bb8;
    font-size: 20px;
}
.news-li-views {
    font-size: 12px;
    color: #666;
    line-height: 24px;
}
.news-li-content {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
    line-height: 20px;
    color: #999;
}
.news-li-content img{
	visibility:hidden;
}
.look-detail,
.look-detail:hover {
    display: block;
    width: 96px;
    line-height: 20px;
    color: #158bb8;
    border: 1px solid #158bb8;
    text-align: center;
    float: right;
    margin: 10px 0;
}
.pages {
    text-align: center;
    line-height: 54px;
    border-radius: 20px;
    border: 1px solid #E6E6E6;
    display: inline-block;
    margin-top: 40px;
}
.pages a,.pages span {
    display: inline-block;
    width: 70px;
    text-align: center;
    color: #666;
    font-size: 18px;
    border-right: 1px solid #E6E6E6;
}
.pages span,.pages .a1,.pages .a2 {
    color: #158bb8;
}
.pages .a1,.pages .a2 {
    width: 96px;
}
.pages .a2 {
    border-right: 0;
}
/*��ҵ��Ѷ����*/
.news-detail {
    padding: 30px 10px 90px;
}
.news-detail-left {
    width: 728px;
    float: left;
}
.news-title {
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
}
.news-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 18px;
}
.news-content {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    padding: 30px 0;
    font-size: 14px;
    color: #999;
}
.news-content img {
    max-width: 100%;
}
.previous-next {
    padding: 10px 0;
}
.previous-next a {
    color: #666;
    font-size: 12px;
}
.news-detail-right {
    width: 352px;
    float: right;
    padding: 18px 30px;
    background: url(../webImg/about_news_detail.png) repeat;
}
.recommend-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 16px;
}
.news-detail-right li {
    margin-bottom: 30px;
}
.news-detail-right li a {
    display: block;
    color: #999;
    font-size: 14px;
}
.recommend-li-title {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}
.recommend-li-date {
    font-size: 12px;
    color: #666;
    line-height: 30px;
}
.recommend-li-content {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    line-height: 20px;
    max-height: 120px;
}
/*�������ǽ���*/
/*轮播图*/
.swiper-slide {
      text-align: center;
      font-size: 18px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
#lunbo img{
   width: 100%;
    height: 100%;
}
  /*轮播图*/

@font-face {font-family: "iconfont";
    src: url('//at.alicdn.com/t/font_940037_w2gwjsdbfo.eot?t=1543389151837'); /* IE9*/
    src: url('//at.alicdn.com/t/font_940037_w2gwjsdbfo.eot?t=1543389151837#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAacAAsAAAAACaQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFY8f0gtY21hcAAAAYAAAABpAAABsspMnaZnbHlmAAAB7AAAApUAAAMwi2YqU2hlYWQAAASEAAAALwAAADYTaAXBaGhlYQAABLQAAAAcAAAAJAfeA4ZobXR4AAAE0AAAAA4AAAAUFAAAAGxvY2EAAATgAAAADAAAAAwBegJmbWF4cAAABOwAAAAfAAAAIAEVAFpuYW1lAAAFDAAAAUUAAAJtPlT+fXBvc3QAAAZUAAAARwAAAFnB+HTDeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2BkYWCcwMDKwMHUyXSGgYGhH0IzvmYwYuRgYGBiYGVmwAoC0lxTGByecTwzYW7438AQw9zO0AgUZgTJAQDh/wwneJztkcENgCAMRV8BDTFO4dkLCQM4kCeH7hraUg8O4Sev6f8hNCnABGRjNwrIheA6LZWRZ5aRFw7zC5VE0qqbNu33Dd/+ldi9OP5qMm8zZObXOurxuuLbC0a/BbYxtAX+C9oD8gMSeRdPAAAAeJxNUk1PE0EYfmdGdrPQ3bb7DQzbbj+2LSDodrtLVZoG8SPEigcjiaBwEz2QGA4YLiWKIXIlqQc0fkQPGA9Gr+oPMNGrF08mXk28ecDV2W0wTPZ9nmdm35m8z8wLPQB/P5I0mYIkmFCAozAJgGwJaWlVN+wGqqU9h3d1lcs5np+vRmoERVqJIJoGKpe3cw5L9Ku2q2v4V2hJsiyh7wy3+kRRE8XOpV5J6o3AVSktU/pZ4MPrvCDw6DkvkCkki/vvRRkxJtOi3BQ1SWLbYtz/OVgZZN/TKB3jCAE4VnebvCJbQICHfnCgCi1WeS2v5VkUdc32gpLjZ5DvGoGv8wqrLB25iOq0D0+UtJ2OTGnRwiTKH3DOwRvDr4eRfiuE5YlUVmp6614zRaVHA47jOc6fs13exGDKo0xdZjEqm3hvlI31C3c3ZyZYdpPSpkRT4RdnIPxKCwWKKmzfIR3Oob1wTjY70UKniyawgZnHDfKSrMfuoKgbHM/lcyUnFxGusft2dcNCbgNXXSP+q6mE4yXEN1BgMB/kzLBvVmdbtO5dHD+eXXj74IY+MZSt9Af1EePcCSs7rpVfFKzerIoWbh4pfDspn59dU1RNQUFn+01fUhYTdqqkliuZ+vQMemb3kR589V6/lCjOQ/wGAOQD/gE6ZKAMdTgdv4FrjKESK4I1EB9YqOoGTq2BShbqNhF/0Dg93TQLGa4fGKUGKo6h2JPKGf8VfpxKGm/W7r8jU6cyK0PeUFIS8MNA1rQCpZ8USouahnfI7spqB+POqjluXjGOTYZPRFkWWdJuQlESjLGIF+9gsnO7uVy55nMCytrL23NILbBz1BYLpn4vtTFuLy22scCNtfLz80g2FcWMujJm5vYfSPGKCQAAAHicY2BkYGAA4uK5E+Pj+W2+MnCzMIDADZWE+wj6fz0LA3M7kMvBwAQSBQAnbAo9AHicY2BkYGBu+N/AEMPCAAJAkpEBFbACAEcLAm54nGNhYGBgQcMAAQQAFQAAAAAAAABcAM4BHgGYeJxjYGRgYGBl8GNgYwABJiDmAkIGhv9gPgMAEPkBcAB4nGWPTU7DMBCFX/oHpBKqqGCH5AViASj9EatuWFRq911036ZOmyqJI8et1ANwHo7ACTgC3IA78EgnmzaWx9+8eWNPANzgBx6O3y33kT1cMjtyDRe4F65TfxBukF+Em2jjVbhF/U3YxzOmwm10YXmD17hi9oR3YQ8dfAjXcI1P4Tr1L+EG+Vu4iTv8CrfQ8erCPuZeV7iNRy/2x1YvnF6p5UHFockikzm/gple75KFrdLqnGtbxCZTg6BfSVOdaVvdU+zXQ+ciFVmTqgmrOkmMyq3Z6tAFG+fyUa8XiR6EJuVYY/62xgKOcQWFJQ6MMUIYZIjK6Og7VWb0r7FDwl57Vj3N53RbFNT/c4UBAvTPXFO6stJ5Ok+BPV8bUnV0K27LnpQ0kV7NSRKyQl7WtlRC6gE2ZVeOEXpc0Yk/KGdI/wAJWm7IAAAAeJxjYGKAAC4G7ICVkYmRmZGFkZWRjYGtOCO/NCuTLTFTN7GggDczOT8vLT+vBMjOSeUtKU3KTMyvysisKs3XZWAAAG8jD+cA') format('woff'),
    url('//at.alicdn.com/t/font_940037_w2gwjsdbfo.ttf?t=1543389151837') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
    url('//at.alicdn.com/t/font_940037_w2gwjsdbfo.svg?t=1543389151837#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
    font-family:"iconfont" !important;
    font-size:16px;
    font-style:normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-shouji:before { content: "\e631"; }

.icon-ai-app:before { content: "\e622"; }

.icon-iconfontapple:before { content: "\e634"; }

.icon-tubiaozhizuo-:before { content: "\e608"; }

.appContent{
    width: 1200px;
    margin: auto;
    padding: 50px 0
}
.appBox{
    margin-bottom: 100px;
}
.appTitleBox{
    overflow:hidden;
    position: relative;
    border-bottom: 1px solid #dddddd;
}
.appTitle{
    font-size: 50px;
    font-weight: bold;
    display: block;
    float: left;
}
.appTitle2{
    font-size: 22px;
    color: #888888;
    text-align: right;
    display: block;
    float: right;
    position: absolute;
    bottom: 10px;
    right: 0
}
.titleLine{
    position: absolute;
    right: 0;
    top:10px;
    width: 100px;
    height: 5px;
}
.titleLine:after{
    position: absolute;
    background: #ea686b;
    width: 50px;
    height: 5px;
    background-size: 50px 5px;
    content: '';
    margin: auto;
    right: 0;
    top:0;
}
.titleLine:before {
    position: absolute;
    background: #158bb8;
    width: 50px;
    height: 5px;
    background-size: 50px 5px;
    content: '';
    margin: auto;
    right: 50px;
    top: 0;
}
.F_appBox{
    width:100%;
    overflow:hidden;
    text-align: center;
}
.appCol_4{
    width: 30.3%;
    margin: 30px 1.5%;
    float: left;
}
.F_boxTitle{
    font-size: 22px;
    padding: 20px 0
}
.F_boxTitle_color{
    color:#158bb8;
}
.F_boxDetailP{
    font-size: 16px;
    width: 88%;
    margin: 0 6%;
    color: #888888;
    line-height: 30px
}
.S_appBox{
    width:100%;
    overflow: hidden;
    margin-top: 30px;
}
.appCol_3{
    padding: 50px 0 0 0;
    text-align: center;
    width: 33.3%;
    border: 1px solid #dddddd;
    float: left;
    cursor: pointer;
}
.appCol_3:hover{
    background: #158bb8;
    color: #fff;
    transition-duration: 0.2s;
}
.appCol_3:nth-child(2){
    border-left:none ;
    border-right:none ;
}
.appCol_3:nth-child(4){
    border-left:none ;
    /*border-right:none ;*/
}
.iconFontSize{
    font-size: 50px;
    color: #b5b5b5;
}
.S_boxTitle{
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
}
.S_boxDetail{
    font-size: 16px;
    margin:  0 15%;
    color: #888888
}
.djBtn{
    margin: 50px 0;
    display: inline-block;
    background: #b4b4b4;
    color: #fff;
    padding: 10px 40px;
    border-radius: 20px;
    font-size: 18px;
}
.caseBox{
    text-align: center;
    margin-top: 50px
}
.caseBox img{
    width:240px;
    height:428px;
    border-radius: 5px;
    margin: 0 20px;
}


a{
    color: #000;
}
a:link{
    color: #000;
}
a:hover{
    color: #000;
}
.swiper-slide img{
    width: 100%;
}
.hxfuq{
    width:1080px;
}
.hxfuq ul li{
    width:21%
}
.hxfuq ul li:hover{
    width: 23%;
    height:310px;
    background:rgba(255,255,255,1);
    border-radius:10px;
    box-shadow:0px 10px 20px rgba(61,123,225,0.3);

}
.newsUl{
    height: 400px;
    overflow: hidden;
}
.newsUl li{
    line-height: 55px;
    font-size: 16px;
    color: #888888;
}
.newsUl a:last-child li{
    font-size: 16px;

}
.newsTitle{
    width: 70%;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;display: inline-block;margin: 0;color: #158bb8;
}
.newsDate{
    float: right
}
.ys{
    overflow: hidden;
    /*padding-bottom: 50px;*/
}
.ys ul li{
    float: left;
    width: 16%;
    text-align: center;
    margin: 0 2%
}
.ys ul li p{
    line-height: 30px;
    font-size: 16px;
}
.scale{
    animation: myfirst 1s;
    transition-duration: 0.5s;
    -webkit-animation:myfirst 0.5s; /* Safari and Chrome */

}
@keyframes myfirst{
    0%{transform: rotateY(120deg);}
    100%{transform: rotateY(0);}
}
.fd{
    transform: scale(1.1);
    transition-duration: 0.5s;
    -webkit-animation:fd 0.5s; /* Safari and Chrome */
}
.yw{
    width:1200px;
    text-align: center;
    margin: auto;
    overflow: hidden
}
.ywlist{
    width: 21%;
    margin: 0 2% 40px 2%;
    float: left;
    overflow: hidden;
}
.ywlist:hover{
    box-shadow: 0 9px 21px rgba(89,90,91,0.24);
    transition-duration: 0.3s;
}
.ywImg{
    width: 252px
}
.ywTitle{
    text-align: left;
    line-height: 15px;
    color: #fff;
    height: 50px;
    margin-top: -50px;
    padding-left: 20px;
    position: absolute;
}
.CN{
    font-size: 22px;
    font-weight: bold
}
.EN{
    font-size: 14px
}
.ywDetailBox{
    background: #fff;
    height: 160px;
    width: 100%;
    position: relative
}
.ywDetail{
    text-align: center;
    padding: 10px;
    font-size: 16px;
    line-height: 30px;
}
.djBox{
    position: absolute;
    bottom: 30px;
    margin: auto;
    left: 0;
    right: 0;
}
.dj{
    position: relative;
    color: #13aeff;
    font-size: 16px;
    font-weight: bold;
    padding-left: 20px;
}
.dj:before{
    position: absolute;
    background: url(../webImg/dj.png) no-repeat;
    width: 16px;
    height: 16px;
    background-size: cover;
    margin: auto;
    left: 0;
    top:3px;
    bottom: 0;
    content: '';
}
.b_title{
    color:#158bb8;
    font-size:30px;
    display: inline-block;
    position: relative;
    width:154px;
    height:68px;
    line-height:68px;
    text-align:center
}
.b_title:before{
    position: absolute;
    border: 2px solid #158bb8;
    width:100%;
    height: 100%;
    top: 5px;
    left: 5px;
    margin: auto;
    content:'';
}
.b_title:after{
    position: absolute;
    border: 2px solid #158bb8;
    width:100%;
    height: 100%;
    top: -5px;
    left: -5px;
    margin: auto;
    content:'';
}
.ab_left{
    width:650px;
    height:540px;
    float: left;
    position:relative;
}
.ab_top{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 99;
}
.ab_top > .right{
    display: flex;
    justify-content: space-between
}
.ab_top > .right > .left{
    margin-top: 40px;
}
.ab_top > .right > .right{
    margin-left: 30px;
    margin-top: 96px;
}
.right_en{
    margin-top:10px;
    color:#158bb8;
    font-size: 12px;
}
.ab_bottom{
    display: flex;
    justify-content: space-between;
    position:absolute;
    bottom: 0;
    width:100%;
    z-index: 98;
}
.ab_bottom > .left{
    position: relative;
}
.ab_bottom > .left > div{
    position: absolute;
    bottom: 0;
}
/*新的首页*/
.h_other_class{
    background:#FFF;
    display:flex;
    justify-content: space-between;
    box-shadow:0px 16px 18px 0px rgba(164,164,164,0.18);
    top:-50px;
    position: relative;
    z-index:10;
}
.h_other_class .li{
    height:100px;
    display: flex;
    align-items: center;
    width:100%;
    border-right: 1px solid #eeeeee;
    box-sizing: border-box;
    cursor: pointer;
}
.h_other_class .li:hover{
    background:#3095F2;
    box-shadow:0px 23px 34px 1px rgba(48,149,242,0.26);
    transition: all .4s;
}
.h_other_class .li:last-child{
    border: none;
}
.h_other_class .li .icon{
    padding-left:50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    margin: auto;
}
.h_other_class .li:hover div{
    color:#fff;
}
.h_other_class .li .icon_1{
    background:url(../webImg/home_icon_dzkf_nor.png) no-repeat left;
    background-size:34px 39px;
}
.h_other_class .li .icon_2{
    background:url(../webImg/home_icon_xcx_nor.png) no-repeat left;
    background-size:37px 37px;
}
.h_other_class .li .icon_3{
    background:url(../webImg/home_icon_gcsj_nor.png) no-repeat left;
    background-size:36px 34px;
}
.h_other_class .li .icon_4{
    background:url(../webImg/home_icon_wlw_nor.png) no-repeat left;
    background-size:37px 27px;
}
.h_other_class .li .icon_5{
    background:url(../webImg/home_icon_jypx_nor.png) no-repeat left;
    background-size:34px 29px;
}
.h_other_class .li:hover .icon_1{
    background:url(../webImg/home_icon_dzkf_z.png) no-repeat left;
    background-size:34px 39px;
}
.h_other_class .li:hover .icon_2{
    background:url(../webImg/home_icon_xcx_z.png) no-repeat left;
    background-size:37px 37px;
}
.h_other_class .li:hover .icon_3{
    background:url(../webImg/home_icon_gcsj_z.png) no-repeat left;
    background-size:36px 34px;
}
.h_other_class .li:hover .icon_4{
    background:url(../webImg/home_icon_wlw_z.png) no-repeat left;
    background-size:37px 27px;
}
.h_other_class .li:hover .icon_5{
    background:url(../webImg/home_icon_jypx_z.png) no-repeat left;
    background-size:34px 29px;
}
.service_bg{
    display:flex;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 80px;
}
.service_bg .li{
    margin-right: 30px;
    width:100%;
    background:#fff;
    text-align: center;
    cursor: pointer;
    height: 330px;
}
.service_bg .li:last-child{
    margin-right: 0;
}
.service_bg .li .box{
    padding:20px;
    background:#fff;
    position: relative;
    height: 330px;
}
.service_bg .li .box .icon{
    height:100px;
    display: flex;
    align-items: center;
}
.service_bg .li .box .icon img{
    margin: auto;
}
.service_bg .li .box .title{
    margin-top:30px;
    font-size: 20px;
    color:#333;
}
.service_bg .li .box .s_title{
    margin:30px 0;
    color:#999999;
}
.service_bg .li .box .desc{
    color:#999999;
    margin-bottom: 30px;
    display: none;
}
.service_bg .li:hover .desc{
    display: block;
    animation: moveDesc .8s forwards;
}
.service_bg .li:hover .box{
    position: relative;
    animation: moveTop .3s forwards;
}
@keyframes moveTop {
    0%{padding:20px;top:0;}
    100%{padding:20px 20px 60px 20px;height:auto;top:-70px;}
}
.service_bg .li:hover .more{
    display: block;
    animation: moveDesc 1.4s forwards;
}
@keyframes moveDesc {
    0%{opacity:0}
    100%{opacity:1}
}
.service_bg .li:hover .more .more_box .right img{
    position: relative;
    animation: moveArrow .4s linear infinite;
    /*display: none;*/
}
@keyframes moveArrow {
    0%{right: 0}
    100%{right: 10px}
}
.service_bg .li .more{
    display:none;
    position: absolute;
    bottom: 0;
    left:0;
    right:0;
    margin:auto;
    height:40px;
    background:rgba(48,149,242,1);
    box-shadow:0px 2px 34px 1px rgba(48,149,242,0.26);
    color:#fff;
    padding:0 20px;
    box-sizing: border-box;
    align-items: center;
    line-height: 40px;
}
.service_bg .li .more .more_box{
    display: flex;
    justify-content: space-between;
}
.n_f_box{
    margin:0 80px;
    text-align:center;
}
.n_f_box .title{
    font-size:30px;
}
.n_f_box .desc{
    font-size:14px;
    color:#999999;
    margin-top: 30px;
}
.pdt50{
    padding-top: 50px;
}
.rs{
    position:relative;
    font-size:20px;
    color:#666666;
    font-weight: bold;
    line-height: 50px;
    text-align: center
}
.rs:after{
    position: absolute;
    border-radius: 100%;
    background: #fff;
    width:50px;
    height:50px;
    box-shadow:0px 3px 24px 0px rgba(48,149,242,0.79);
}
.rs_1{
    top:-25px;
}
.rs_1:after{
    content: '1';
    margin: auto;
    left: 0;
    right: 0;
}
.rs_1:before{
    position: absolute;
    content: '品牌优势';
    top:-50px;
    font-size: 14px;
    left: 0;
    right: 0;
}
.rs_4{
    top:255px;
}
.rs_4:after{
    content: '4';
    left:-15px;
    margin:auto;
}
.rs_4:before{
    position: absolute;
    content: '服务优势';
    top:0;
    font-size: 14px;
    left: -85px;
    bottom: 0;
}
.rs_6{
    top:255px;
}
.rs_6:after{
    content: '6';
    right:-15px;
    margin:auto;
}
.rs_6:before{
    position: absolute;
    content: '售后优势';
    top:0;
    font-size: 14px;
    right: -85px;
    bottom: 0;
}
.lx_rs_point{
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: auto
}
.lx_rs_point .circle_1{
    width:420px;
    height:420px;
    border: 2px solid #eeeeee;
    margin:auto;
    border-radius: 100%;
    position: relative;
}
.lx_rs_point .circle_2{
    width:250px;
    height:250px;
    border: 2px solid #eeeeee;
    margin:auto;
    border-radius: 100%;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
}
.lx_rs_point .circle_3{
    width:100px;
    height:100px;
    margin:auto;
    border-radius: 100%;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
}
.rs_5{
    bottom:-220px;
    position: relative;
}
.rs_5:after{
    content: '5';
    margin: auto;
    left: 0;
    right: 0;
}
.rs_5:before{
    position: absolute;
    content: '创新优势';
    bottom:-100px;
    font-size: 14px;
    left: 0;
    right: 0;
}
.rs_2{
    bottom:-35px;
    left:-10px;
    position: relative;
}
.rs_2:after{
    content: '2';
    margin: auto;
    left: 0;
}
.rs_2:before{
    position: absolute;
    content: '技术优势';
    font-size: 14px;
    left: -75px;
}
.rs_3{
    bottom:-35px;
    right: -10px;
    position: relative;
}
.rs_3:after{
    content: '3';
    margin: auto;
    right: 0;
}
.rs_3:before{
    position: absolute;
    content: '设计优势';
    font-size: 14px;
    right: -75px;
}
.circle_1:hover .circle_3 img{
    animation: rotateLogo .6s linear infinite;
}
@keyframes rotateLogo {
    0%{transform: rotate(0deg)}
    100%{transform: rotate(360deg)}
}
.lx_rs_bg{
    width:100%;
    height:800px;
    background:url(../webImg/home_bg_lxys_nor.png) no-repeat bottom;
    background-size:cover;
    position: relative;
}
.lx_rs_box{
    position: relative;
    height: 100%;
}
.lx_case_bg{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.lx_case_sw_bg{
    width: 1120px;
    margin:auto;
    position: relative;
}
.lx_case_sw_box{
    width: 100%;
    padding-top:50px;
    padding-bottom: 50px;
}
.lx_case_bg .pre , .lx_case_bg .next{
    cursor: pointer;
}
.serve_box{
    position: relative;
    transform: translate(-50%,-50%);
    top:50%;
    left:50%;
    margin:auto;
    display: inline-block;
    text-align: center;
}
.serve_list{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.serve_list .li{
    width: 220px;
    height: 220px;
    border-radius: 10px;
}
.serve_list .li:hover{
    box-shadow: 0 0 10px #eeeeee;
    transition: all .4s;
}
.serve_list .li .title{
    margin-top: 20px;
}
.serve_step{
    width:25px;
    height:25px;
    border-radius: 25px;
    background:linear-gradient(to right,#5FB9F5,#308FFF);
    text-align: center;
    line-height: 25px;
    color:#fff;
    position: relative;
    top: -12.5px;
}
.serve_line{
    margin: auto;
    position:relative;
    width:1060px;
    overflow: hidden;
    padding: 40px 0;
    left:0;
}
.serve_line .s_line{
    width:100%;
    height:3px;
    background:linear-gradient(to right,#5FB9F5,#308FFF);
}
.line_long{
    animation: lineLong 1s ease-in-out forwards;
    animation-iteration-count:1;
    position: relative;
}
@keyframes lineLong {
    0%{
        left:-1060px;
        opacity: 0.2;
        width: 0;
    }
    100%{
        left:0;
        opacity: 1;
        width:100%;
    }
}
.serve_line .point{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
/*新的头部*/
.new_header{
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9999999;
}
.new_header_box{
    height:80px;
    display: flex;
    align-items: center;
}
.new_header_box .contain{
    display: flex;
    justify-content: space-between;
}
.new_header_box .right .ul{
    display: flex;
    width: 300px;
    justify-content: space-between;
    line-height: 48px;
    font-size: 16px;
    color:#333333;
}
.new_header_box .right .ul .li:hover{
    color:#3095F2;
    border-bottom:2px solid #3095F2;
}
.new_act{
    color:#3095F2;
    border-bottom:2px solid #3095F2;
}
.new_act a , .new_header_box .right .ul .li:hover a{
    color: #3095F2;
}