/*reset*/
@charset "utf-8";
/* CSS Document */
html,body { padding:0px;margin:0px;font: 12px/1.8 "Microsoft Yahei", "微软雅黑", "Hiragino Sans GB", "冬青黑体", "Arial", "Helvetica", "SimHei", "黑体", "STXihei", "华文细黑", sans-serif; -webkit-text-size-adjust:100%; font-size-adjust:none; -webkit-appearance:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0)}
div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, images, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{margin: 0;padding: 0; border: 0;}
table { border-collapse: collapse; border-spacing: 0;}
abbr, acronym, fieldset, img, input{ border: none;}
img{ vertical-align:top}
q:before, q:after {content: "";}
:focus{outline:none;}
h1, h2, h3, h4, h5, h6{ font-weight:normal; font-size:100%; padding: 0; margin: 0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {	display: block}
ol,ul,li {list-style: none;}
a{ text-decoration:none; cursor:pointer; color:inherit;}
a:hover{text-decoration: none;outline:none;color:inherit;}
a:link{color:inherit;text-decoration:none;}
a:visited{color:inherit;text-decoration:none;}
a:active{color:inherit;text-decoration:none;}
input[type=button]{ cursor:pointer; }
button {cursor: pointer;}
input::-moz-focus-inner { border: 0; padding: 0;}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul, li {
    padding: 0;
    list-style: none;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-x: hidden;
}
/* always display scrollbars */
blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
strong {
	font-weight: bold;
}
input {
	outline: none;
}
img {
	border: 0;
}
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	border-radius: 0;
}
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}
::-webkit-input-placeholder { /* WebKit browsers */ color: #999;}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */  color: #999;}
::-moz-placeholder { /* Mozilla Firefox 19+ */  color: #999;}
:-ms-input-placeholder { /* Internet Explorer 10+ */  color: #999;}

/*公共样式*/
a{
	transition:all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-ms-transition: all 0.3s;
}
.left{
	float: left;
}
.right{
	float: right;
}
.textOverflow{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.textOverflow2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.transiton3s{
	transition:all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-ms-transition: all 0.3s;
}
.trans{
    -webkit-transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
    -moz-transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
    -o-transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
    -ms-transition: all .6s cubic-bezier(0.445, 1.045, 0.355, 1);
    transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
}
.mtHeader{
	margin-top: 86px;
}
body .blockA{
	display: block;
	width: 100%;
	height: 100%;
}
.bodyGray{
	background-color: #fbfbfb;
}
.clearfix:before,.clearfix:after{
	display: table;
  	content: " ";
}
.clearfix:after{
	clear: both;
}
body .whiteColor{
	color: #fff;
}
.objectCover{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.animate{
    transition: all .2s;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    opacity: 0
}   
.animated{
    transition: all 1s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}
.animate-up {
    transition: all .2s;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    opacity: 0
}
/*animate*/
.animateUp{

    -webkit-animation: commonA 1s forwards;
    -o-animation: commonA 1s forwards;
    animation: commonA 1s forwards;
}
.animateUp1{
	opacity: 0;
	-webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s;
}
.animateUp2{
	opacity: 0;
	-webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s;
}
.animateUp3{
	opacity: 0;
	-webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
}
.animateUp4{
	opacity: 0;
	-webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s;
}
.animateUp5{
	opacity: 0;
	-webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}
@-webkit-keyframes commonA {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes commonA {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes icons2 {
	0% {
		top: 0;
	}
	10% {
		top: -10px;
	}
	20% {
		top: 0;
	}
	30% {
		top: -10px;
	}
	40% {
		top: 0;
	}
	50% {
		top: -10px;
	}
	60% {
		top: 0;
	}
	70% {
		top: -10px;
	}
	80% {
		top: 0;
	}
	90% {
		top: -10px;
	}
	100% {
		top: 0;
	}
}

@-webkit-keyframes icons2 {
	0% {
		top: 0;
	}
	10% {
		top: -10px;
	}
	20% {
		top: 0;
	}
	30% {
		top: -10px;
	}
	40% {
		top: 0;
	}
	50% {
		top: -10px;
	}
	60% {
		top: 0;
	}
	70% {
		top: -10px;
	}
	80% {
		top: 0;
	}
	90% {
		top: -10px;
	}
	100% {
		top: 0;
	}
}



.ljHeader{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	height: 86px;
	width: 100%;
	background: #fff;
  	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow:  0px 0px 18px 0px rgba(0, 0, 0, 0.08);
}
.ljHeader.active{
	background-color: #394247;
}
.ljHeader .logoBox{
	float:left;
	height: 84px;
	margin-left: 8vw;
	padding-top: 2px;
}
.ljHeader .logoBox .logoPic{
	vertical-align: middle;
	/*height: 100%;*/
}
.headerTel{
	float: right;
	height: 100%;
	background-color: #3ca7fc;
	padding: 0 36px;	
}
.headerTel .telIcon{
	display: block;
	width: 29px;
	height: 25px;
	background-image: url(../img/sprite.png);
	background-position: -5px -5px;
	float: left;
	margin-top: 30px;
}
.headerTel span{
	display: block;
	float: left;
	color: #fff;
	font-size: 22px;
	line-height: 86px;
	margin-left: 16px;
	font-weight: bold;
}
.ljHeader .ljNav{
	float: right;
	font-size: 16px;
	color: #666;
	line-height: 86px;	
}
.mobileNav{
	display: none;
}
.ljHeader .ljNav>a,.ljHeader .ljNav .navitem{
	display: block;
	margin-right: 40px;
	float: left;
	position: relative;
}
.ljHeader .ljNav>.active{
	color: #3ca7fc;
}
.ljHeader .ljNav>a:hover{
	color: #3ca7fc;
}
.ljHeader .ljNav .navitem:hover{
	color: #3ca7fc;
}
.ljHeader .top{
	width: 100%;
	height: 50px;
}
.ljHeader .top .logoBox{
	float: left;
	height: 100%;
	margin-left: 20px;
}
.ljHeader .top .logoBox .logo{
	display: block;
	height: 100%;
}
.ljHeader .top .topphone{
	float: right;
	margin-right: 20px;
	font-size: 18px;
	font-weight: bold;
	color: #666;
	line-height: 50px;
	padding-left: 24px;
	background-image: url(../mimg/telicon.png);
	background-repeat: no-repeat;
	background-size:18px;
	background-position: left center;
}
.ljHeader .ljnav{
	background-color: #3CA7FC;
	font-size: 12px;
	color: #fff;
	padding-left: 20px;
	height: 45px;
	position: relative;
}
.ljHeader .ljnav .openNav{
	width: 40px;
	height: 45px;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url(../mimg/nav.jpg);
	background-size:100%;
}
.ljHeader .ljnav .navitem{
	display: inline-block;
	margin-right: 10px;
	line-height: 45px;
}
.ljHeader .ljnav .navlist{
	display: none;
	position: absolute;
	left: 0;
	top: 45px;
	background: #fff;
	width: 100%;
}
.ljHeader .ljnav .navlist .item{
	display: block;
	width: 100%;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid #eee;
	color: #333;
	padding-left: 20px;
	position: relative;
}
.ljHeader .ljnav .navlist .item:after{
	content: '';
	position: absolute;
	background-image: url(../mimg/arrr.png);
	height: 42px;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 100%;
	width: 10px;
	right: 10px;
	top: 0;
}
.inBanner{
	display: block;
	width: 100%;
	position:relative;
}
.inBanner .textBox{
	position: absolute;
    width: 1200px;
    z-index: 10;
    left: 50%;
    top: 23%;
	margin-left:-600px;
    color: #fff;
}
.inBanner .textBoxWeb{
	position: absolute;
    z-index: 10;
    right: 0;
    top: 26%;
    color: #fff;
    width: 47%;
}
.inBanner .textBoxWX{
	position: absolute;
    width: 1200px;
    z-index: 10;
    left: 50%;
    top: 18%;
    margin-left: -600px;
    color: #fff;
    padding-left: 33.6vw;
}
.inBanner .textBoxXCX{
	position: absolute;
    z-index: 10;
    left: 27.3%;
    top: 18%;
    color: #fff;
    width: 26%;
}
.inBanner .textBoxCase{
	position: absolute;
    z-index: 10;
    left: 54%;
    top: 22%;
    color: #fff;
    width: 28%;
}
.inBanner .textBoxAbout{
	position: absolute;
    z-index: 10;
    left: 24.3%;
    top: 22%;
    color: #fff;
    width: 28%;
}
.inBanner .textBoxCon{
	position: absolute;
    z-index: 10;
    left: 26.5%;
    top: 22%;
    color: #fff;
    width: 28%;
}
.inBanner .textBoxNews{
	position: absolute;
    z-index: 10;
    left: 28.8%;
    top: 24%;
    color: #fff;
    width: 28%;
}
.inBanner .bannerTit{
	font-size: 2.5vw;
	line-height:1.7;
}
.inBanner .bannerEn{
	font-size: 16px;
	line-height:1.7;
	margin-bottom: 10px;
}
.inBanner .bannerPro{
	font-size: 16px;
     margin-bottom: 1.1vw;
	 line-height:1.7;
}
.inBanner .textBoxWeb .bannerTit{
	font-size: 3vw;
	letter-spacing: 4px;
}
.inBanner .textBoxWeb .bannerEn{
	font-weight: 200;
	line-height: 2;
	letter-spacing: 4px;
	font-size: 1.1vw;
	opacity: 0.6;
}
.inBanner .textBoxWeb .bannerPro{
	letter-spacing: 4px;
	font-size: 1.2vw;
	line-height: 1.6;
	opacity: 0.8;
}
.inBanner .textBoxWeb .bannerPro span{
	color: #f5cc9b;
}
.inBanner .textBoxWX .bannerTit{
	font-size: 3vw;
	letter-spacing: 4px;
}
.inBanner .textBoxWX .bannerPro{
	font-size: 1vw;
	opacity: 0.8;
	margin-top: 0.7vw;
	line-height: 1.8;
	margin-bottom: 1.25vw;
}
.inBanner .textBoxWX .BannerBtn{
	display: inline-block;
	background: #ffab4c;
    padding: 0 13px;
    border-radius: 5px;
    color: rgba(255,255,255,0.8);
    font-size: 0.8vw;
    line-height: 2.4;
}
.inBanner .textBoxXCX .bannerTit{
	font-size: 3vw;
	letter-spacing: 4px;
}
.inBanner .textBoxXCX .bannerEn{
	font-weight: 200;
    line-height: 2.2;
    letter-spacing: 2px;
    font-size: 1.1vw;
    opacity: 0.6;
    margin-bottom: 0.8vw;
}
.inBanner .textBoxXCX .bannerPro{
	font-size: 1.1vw;
	opacity: 0.8;
	line-height: 2;
	letter-spacing: 5px;
}
.inBanner .textBoxCase .bannerTit{
	font-size: 3vw;
	letter-spacing: 4px;
}
.inBanner .textBoxCase .bannerEn{
	font-weight: 200;
    line-height: 2.2;
    letter-spacing: 1px;
    font-size: 1.1vw;
    opacity: 0.6;
    margin-bottom: 0.8vw;
}
.inBanner .textBoxCase .bannerPro{
	font-size: 1.1vw;
	opacity: 0.8;
	line-height: 2;
	letter-spacing: 3px;
}
.inBanner .textBoxAbout .bannerTit{
	font-size: 3vw;
	letter-spacing: 4px;
}
.inBanner .textBoxAbout .bannerPro{
	font-size: 1.2vw;
    opacity: 0.8;
    line-height: 2;
    letter-spacing: 1px;
    margin-top: 0.3vw;
    margin-bottom: 0.9vw;
}
.inBanner .textBoxAbout .usTags span{
	display: inline-block;
    opacity: 0.5;
    border: 1px solid #fff;
    font-size: 13px;
    border-radius: 3px;
    padding: 0 5px;
    letter-spacing: 1px;
    line-height: 28px;
    margin-right: 3px;
}
.inBanner .textBoxCon .bannerTit{
	font-size: 3vw;
	letter-spacing: 4px;
}
.inBanner .textBoxCon .bannerEn{
	font-weight: 200;
    line-height: 2.2;
    letter-spacing: 1px;
    font-size: 1.1vw;
    opacity: 0.6;
    margin-bottom: 0.8vw;
}
.inBanner .textBoxCon .bannerPro{
	font-size: 1.1vw;
	opacity: 0.8;
	line-height: 2;
	letter-spacing: 3px;
}
.inBanner .textBoxNews .bannerTit{
	font-size: 3vw;
	letter-spacing: 4px;
}
.inBanner .textBoxNews .bannerDansh{
	width: 85px;
    height: 2px;
    background: #fff;
    margin-bottom: 1.3vw;
    margin-top: 1.3vw;
}
.inBanner .textBoxNews .bannerPro{
	font-size: 1.1vw;
	opacity: 0.8;
	line-height: 2;
	letter-spacing: 3px;
	font-weight: 200;
}

.inBanner .bannerBtn{
	display:block;
    width: 150px;
    height: 40px;
    border: 1px solid #fff;
    background:#fff;
    color: #16d39b;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
}
.inBanner .bannerBtn:hover{
	color: #fff;
	background:none;
}
.index-banner-swi .BannerBtn{
	position: absolute;
	width: 116px;
	height: 44px;
	background: #fff;
	z-index: 10;
	left: 17.4%;
	bottom: 29%;
	color: #fd6a3e;
	font-size: 16px;
	text-align: center;
	line-height: 44px;
	border-radius: 3px;
	transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
}
.index-banner-swi .BannerBtn:hover{
	opacity: 0.8;
}
.index-banner-swi .textBox{
	position: absolute;
    width: 30%;
    z-index: 10;
    left: 17.4%;
    bottom: 43%;
    color: #fff;
    line-height: 1.7;
    min-width: 400px;
}
.index-banner-swi .bannerTit{
	font-size: 32px;
    margin-bottom: 26px;
}
.index-banner-swi .bannerPro{
	font-size: 19px;
    letter-spacing: 2px;
}
.caseTabBox{
	padding: 52px 0;
}
.caseTabBox .caseTab{
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	padding: 30px 0 0 0;
	position: relative;
	text-align: center;
}
.caseTabBox .caseTab .tab{
	display: inline-block;
	margin: 0 50px 30px;
}
.caseTabBox .caseTab .tab .icon{
	display: block;
	float: left;
	margin-right: 12px;
	width: 28px;
	height: 28px;
	background-image: url(../img/sprite.png);
	background-repeat: no-repeat;
}
.caseTabBox .caseTab .tab .icon.icon1{
	background-position: 0 -115px;
}
.caseTabBox .caseTab .tab .icon.icon2{
	background-position: -28px -115px;
}
.caseTabBox .caseTab .tab .icon.icon3{
	background-position: -56px -115px;
}
.caseTabBox .caseTab .tab .icon.icon4{
	background-position: -84px -115px;
}
.caseTabBox .caseTab .tab .icon.icon5{
	background-position: -112px -115px;
}
.caseTabBox .caseTab .tab .icon.icon6{
	background-position: -140px -115px;
}
.caseTabBox .caseTab .tab .icon.icon7{
	background-position: 0 -143px;
}
.caseTabBox .caseTab .tab .icon.icon8{
	background-position: -28px -143px;
}
.caseTabBox .caseTab .tab .icon.icon9{
	background-position: -56px -143px;
}
.caseTabBox .caseTab .tab .icon.icon10{
	background-position: -84px -143px;
}
.caseTabBox .caseTab .tab .text{
	display: block;
	float: left;
	font-size: 18px;
	color: #999;
	line-height: 28px;
}
.caseTabBox .caseTab .tab.active .text{
	color: #3ca7fc;
}
.caseTabBox .caseTab .tab:hover .text{
	color: #3ca7fc;
}
.caseTabBox .caseTab .shouqi{
	width: 86px;
	text-align: right;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 30px;
}
.caseTabBox .caseTab .shouqi .sqTxt{
	display: block;
	float: right;
	font-size: 18px;
	color: #999;
	line-height: 28px;
}
.caseTabBox .caseTab .shouqi .sqIcon{
	float: right;
	display: block;
	background-image: url(../img/sqicon.jpg);
	width: 14px;
	height: 9px;
	margin-left: 4px;
	margin-top: 9px;
	transform-origin: center;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -o-transform-origin: center;
    -ms-transform-origin: center;
}
.caseTabBox .caseTab .shouqi .sqIcon.active{
	-moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.caseTabBox .caseTab .shouqi:hover .sqTxt{
	color: #3ca7fc;
}
.caseListBox{
	padding-bottom: 98px;
}
.caseListBox .caseList{
	padding-bottom: 20px;
}
.caseListBox .caseList li{
	margin-bottom: 40px;
}
.caseListBox .caseList li .picBox{
	position: relative;
	margin-bottom: 20px;
	width:382px;
	height: 225px;
	background-image: url(../img/casesbg.png);
}
.caseListBox .caseList li .picBox>a{
	display: block;
	width: 280px;
	height: 184px;
	position: absolute;
	top: 12px;
	left: 51px;
	overflow:hidden;
}
.caseListBox .caseList li .picBox img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-ms-transition: all 0.3s;
}
.caseListBox .caseList li .picBox img:hover{
	-moz-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform:scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}
.caseListBox .caseList li .picBox .caseBtn{
	display: block;
	opacity: 0;
	width: 170px;
	height: 40px;
	line-height: 40px;
	background-color: #fff;
	border-radius: 5px;
	position: absolute;
	left: 50%;
	margin-left: -85px;
	bottom: 40px;
	background-image: url(../img/link.png);
	background-repeat: no-repeat;
	background-position: 38px 12px;
	text-align: center;
	font-size: 14px;
	color: #333;
}
.caseListBox .caseList li .picBox:hover .caseBtn{
	opacity: 1;
}
.caseListBox .caseList li .picBox .caseBtn:hover{
	opacity: 0.8;
}
.caseListBox .caseList li .textBox{
	text-align: center;
	padding: 0 10px;
}
.caseListBox .caseList li .textBox .tit{
	display: block;
	color: #333;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 10px;
}
.caseListBox .caseList li .textBox .tit:hover{
	color: #3ca7fc;	
}
.caseListBox .caseList li .textBox .tagList{
	display: block;
	color: #999;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}
.caseListBox .caseList li .textBox .tagList a{
	position: relative;
	padding: 0 5px;
}
.caseListBox .caseList li .textBox .tagList a:after{
	position: absolute;
	content: '/';
	color: #3ca7fc;
	font-size: 12px;
	line-height: 1.5;
	right: -4px;
	top: -2px;
}
.caseListBox .caseList li .textBox .tagList a:last-of-type:after{
	display: none;
}
.caseListBox .caseList2{
	padding-bottom: 20px;
}
.caseListBox .caseList2 li {
    width: 237px;
    margin-right: 10px;
    float: left;
}
.caseListBox .caseList2 li:nth-of-type(5n){
	margin-right: 0;
}
.caseListBox .caseList2 li .caseItem {
	display: block;
    width: 237px;
}
.caseListBox .caseList2 li .caseItem .picBox {
    background-image: url(../img/phone.png);
    width: 237px;
    height: 425px;
    background-size: 100%;
    position: relative;
}
.caseListBox .caseListApp li .caseItem .picBox .objectCover{
	transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
}
.caseListBox .caseListApp li .caseItem .picBox:hover .objectCover{
	-moz-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}
.caseListBox .caseList2 .caseItem .picBox .pic, .caseListBox .caseList2 .caseItem .picBox .hPic {
    position: absolute;
    width: 152px;
    height: 270px;
    top: 88px;
    left: 32px;
    overflow: hidden;
}
.caseListBox .caseList2 .hPic {
    opacity: 0;
    z-index: 12;
}
.caseListBox .caseList2 .hPic span{
	display: block;
	width: 100%;
	position: absolute;
	font-size: 14px;
	color: #666;
	left: 0;
	bottom: 36px;
	z-index: 10;
	text-align: center;
	line-height: 1.5;
	
}
.caseListBox .caseList2 .hPic p:nth-of-type(2){
	font-size: 16px;
	margin-top: 6px;
}
.caseListBox .caseList2 .caseItem:hover .hPic {
    opacity: 1;
}
.caseListBox .caseList2 .text {
    margin-top: 10px;
    padding: 0 10px;
    padding-right: 32px;
}
.caseListBox .caseList2 .text .tit {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
}
.caseListBox .caseList2 .text .tags {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    text-align: center;
}
.loadMore{
	display: block;
	font-size: 16px;
	color: #fff;
	width: 160px;
	height: 44px;
	border-radius: 22px;
	background-image: -moz-linear-gradient( -96deg, rgb(115,187,253) 0%, rgb(47,149,244) 100%);
	background-image: -webkit-linear-gradient( -96deg, rgb(115,187,253) 0%, rgb(47,149,244) 100%);
	background-image: -ms-linear-gradient( -96deg, rgb(115,187,253) 0%, rgb(47,149,244) 100%);
	margin: 0 auto;
	text-align: center;
	line-height: 44px;
	cursor: pointer;
}
.loadMore:hover{
	opacity: 0.8;
}

/*footer*/
.ljFooter{
	background-color: #333;
	padding: 64px 0 26px;
}
.ljFooter .footerTopBox .footTopLeft{
	width: 62%;
	float: left;
}
.ljFooter .footerTopBox .footTopRight{
	width: 32%;
	float: right;
}
.ljFooter .footerTopBox .comName,.ljFooter .footerTopBox .comAdd{
	font-size: 18px;
	color: #fff;
	line-height: 1.5;
	
	background-position:0 4px;
	background-repeat: no-repeat;
	border-bottom: 1px solid #666;
	min-height: 48px;
	
}
.ljFooter .footerTopBox .comAdd{
	font-size: 16px;
	background-image: url(../img/addicon.png);
	padding-left: 20px;
}
.ljFooter .footerTopBox .footerNav{
	padding-top: 40px;
	font-size: 16px;
	color: #fff;
	line-height: 1.5;	
}
.ljFooter .footerTopBox .footerNav a{
	display: inline-block;
	margin-bottom: 20px;
	margin-right: 40px;
	position: relative;
}
.ljFooter .footerTopBox .footerNav a:after{
	content: '/';
	font-size: 16px;
	color: #fff;
	position: absolute;
	right: -20px;
	top: 0;
	font-weight: 200;
	opacity: 0.6;
}
.ljFooter .footerTopBox .footerNav a:last-of-type:after{
	display: none;
}
.ljFooter .footerTopBox .footerNav a:hover{
	opacity: 0.6;
}
.ljFooter .footerTopBox .copyRight{
	float:left;
	font-size: 12px;
	color: #fff;
	line-height: 1.5;
	margin-top: 40px;
}
.ljFooter .footTopRight .footRightleft{
	float: left;
	width: 62%;
	padding-right: 10px;
	color: #FFF;
	font-size: 14px;
	line-height: 1.5;
	padding-top: 30px;
}
.ljFooter .footTopRight .footRightleft p{
	margin-bottom: 5px;
}
.ljFooter .footTopRight .footRightleft a{
	display: block;
	margin-bottom: 5px;
}
.ljFooter .footTopRight .footRightleft a:hover{
	opacity: 0.6;
}
.ljFooter .footTopRight .ewmBox{
	float: right;
	width: 38%;
	color: #fff;
	font-size: 12px;
	text-align: center;
	line-height: 1.5;
	padding-top: 30px;
}
.ljFooter .footTopRight .ewmBox .ewmPic{
	display: block;
	width: 100%;
	margin-bottom: 5px;
}
.ljFooter .links{
	border-top: 1px solid #666;
	width: 100%;
	padding: 20px 0 10px;
	line-height: 1.8;
	font-size: 14px;
	color: #ddd;
	margin-top: 20px;
}
.ljFooter .links a{
	position: relative;
	margin-right: 30px;
}
.ljFooter .links a:after{
	content: '/';
	font-size: 14px;
	color: #999;
	position: absolute;
	right: -20px;
	top: 0;
	font-weight: 200;
}
.ljFooter .links a:hover{
	opacity: 0.6;
}


.casedetailTop{
	width: 100%;
	background-image: url(../img/caseDetail.jpg);
	background-size: cover;
	-webkit-background-size: cover;
	padding: 100px 0;
}
.casedetailTop .caseDeTit{
	font-size: 50px;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	padding-left: 10%;
	margin-bottom: 20px;
}
.casedetailTop .tagList{
	display: block;
	color: #fff;
	font-size: 18px;
	line-height: 1.5;
	padding-left: 10%;
}
.casedetailTop .tagList a{
	position: relative;
}
/*.casedetailTop .tagList a:hover{
	color: #3ca7fc;	
}*/
.casedetailTop .tagList a:after{
	position: absolute;
	content: '/';
	color: #fff;
	font-size: 18px;
	line-height: 1.5;
	right: -10px;
	top: -2px;
	font-weight: 200;
}
.casedetailTop .tagList a:last-of-type:after{
	display: none;
}
.casedetailTop .seeSite{
	display: none;
	width: 140px;
	height: 36px;
	margin: 30px auto 0;
	line-height: 36px;
	border-radius: 18px;
	font-size: 16px;
	color: #301d6c;
	text-align: center;
	background-color: #d6d2e2;
}
.casedetailTop .seeSite:hover{
	color: #fff;
	background-color: #3ca7fc;
}
.casedetail{
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	padding-top: 120px;
}
.casedetail img{
	width: 100%;
	display: block;
}
.relativeCase{
	padding-top: 58px;
	background-color: #f5f5f5;
	padding-bottom: 50px;
}
.relativeCase .relativeCaseTit{
	font-size: 24px;
	color: #333;
	line-height: 60px;
	height: 60px;
	text-align: center;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	margin-bottom: 100px;
}
.helpBox{
	padding-top: 50px;
}
.helpBox .searchBox .serchForm{
	display: block;
	width: 100%;
}
.helpBox .searchBox .serchForm .serchInput{
	display: block;
	width: 85%;
	float: left;
	background-color: #f5f5f5;
	padding: 0 20px;
	font-size: 16px;
	line-height: 78px;
	height: 78px;
	margin: 0;
	color: #666;
	border-radius: 10px 0 0 10px;
}
.helpBox .searchBox .serchForm .serchSub{
	display: block;
	width: 15%;
	float: left;
	background-color: #3ca7fc;
	padding: 0;
	font-size: 16px;
	line-height: 78px;
	height: 78px;
	margin: 0;
	color: #666;
	border-radius: 0 10px 10px 0;
	background-image: url(../img/serbtn.png);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
.helpBox .searchBox .serchForm .serchSub:hover{
	opacity: 0.6;
}
.helpBox .functionlist {
    padding-bottom: 70px;
    margin-top: 20px;
}
.helpBox .functionlist ul {
    padding-top: 30px;
    font-family: 'PingFang SC', arial, 'Microsoft YaHei', sans-serif;
}
.helpBox .functionlist ul li {
    float: left;
    box-sizing: border-box;
    margin-bottom: 20px;
    width: 20%;
}
.helpBox .functionlist ul li:nth-child(4n+1) {
    margin-left: 0;
}
.helpBox .functionlist ul li a {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 3px;
    font-size: 16px;
}
.helpBox .functionlist ul li i {
    display: block;
    height: 170px;
    width: 170px;
    margin: 0 auto;
    background: url(../img/sprite.png) no-repeat;
}
.helpBox .functionlist ul li a p {
    padding: 0;
    color: #666;
    margin-top: 25px;
    font-size: 18px;
}
.helpBox .functionlist ul li.list1 i {
    background-position: -5px -194px;
}
.helpBox .functionlist ul li.list2 i {
    background-position: -179px -194px;
}
.helpBox .functionlist ul li.list3 i {
    background-position: -353px -194px;
}
.helpBox .functionlist ul li.list4 i {
    background-position: -527px -194px;
}
.helpBox .functionlist ul li.list5 i {
    background-position: -527px -11px;
}
.helpBox .functionlist ul li:hover p{
	color: #3ca7fc;
}
.helpCon .helpLeft{
	float: left;
    width: 25%;
}
.helpCon .helpLeft .help-section {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
}
.helpCon .helpLeft .help-section a{
    width: 100%;   
    padding: 0 15px;
    color: #666;
    display: block;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 4px;
    border-bottom: 1px dashed #eee;
}
.helpCon .helpLeft .help-section a:hover{
	color: #3CA7FC;
}
.helpCon .helpRight{
	width: 70%;
	float: right;
}
.helpCon .helpRight .helpRightLine{
	
}
.helpCon .helpRight .helpRightLine .helpRightTit{
    padding-bottom: 10px;
    border-bottom: 1px solid #e2eaec;
    padding-left: 4px;
    margin-bottom: 30px;
   	color: #666;
    font-size: 20px;
    font-weight: normal;
}
.helpCon .helpRight .helpRightLine .row .item{
    margin-bottom: 50px;
}
.helpCon .helpRight .helpRightLine .row .item .tit{
	font-size: 18px;
    padding-left: 10px;
    border-left: 2px solid #3CA7FC;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: bold;
    color: #666;
}
.helpCon .helpRight .helpRightLine .row .item .list{
	margin-bottom: 10px;
}
.helpCon .helpRight .helpRightLine .row .item .list li{
	margin-bottom: 8px;
    line-height: 1.5em;
    padding-left: 12px;
    position: relative;
}
.helpCon .helpRight .helpRightLine .row .item .list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    height: 4px;
    width: 4px;
    border-radius: 100%;
    background-color: #d0d3dc;
}
.helpCon .helpRight .helpRightLine .row .item .list li a {
	display: block;
	width: 100%;
    color: #888;
    font-size: 14px;
    height: 20px;    
}
.helpCon .helpRight .helpRightLine .row .item .more{
	font-size: 12px;
    margin-left: 12px;
    color: #777777;
}
.helpCon .helpRight .helpRightLine .row .item .list li a:hover{
	color: #3CA7FC;
}
.helpCon .helpRight .helpRightLine .row .item .more:hover{
	color: #3CA7FC;
}
.helpBox .location{
	float: left;
	font-size: 16px;
	color: #999;
	background-image: url(../img/home.png);
	background-repeat: no-repeat;
	padding-left: 30px;
	line-height: 46px;
	background-position: 0 13px;
}
.helpBox .listbox{
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	padding: 24px 0;
	margin-bottom: 70px;
	margin-top: 30px;
}
.helpBox .listbox .serchForm{
	float: right;
	display: block;
	width: 350px;
}
.helpBox .listbox .serchForm .serchInput{
	display: block;
    width: 80%;
    float: left;
    background-color: #f5f5f5;
    padding: 0 20px;
    font-size: 14px;
    line-height: 46px;
    height: 46px;
    margin: 0;
    color: #666;
    border-radius: 5px 0 0 5px;
}
.helpBox .listbox .serchForm .serchSub{
	display: block;
    width: 20%;
    float: left;
    background-color: #3ca7fc;
    padding: 0;
    font-size: 16px;
    line-height: 46px;
    height: 46px;
    margin: 0;
    color: #666;
    border-radius: 0 5px 5px 0;
    background-image: url(../img/serbtn.png);
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.helpCon .helpListRight{
	width: 70%;
	float: right;
}
.helpCon .helpListRight .helplistBar{
	border-bottom: 1px solid #eee;
    padding: 0 10px;
    margin-bottom: 10px;
}
.helpCon .helpListRight .helplistBar a{
	display: block;
	float: left;
    border: 1px solid #eee;
    border-radius: 3px 3px 0 0;
    padding: 0 15px;
    height: 34px;
    line-height: 34px;
    font-size: 15px;
    color: #999;
    background: #f5f5f5;
    margin-right: 10px;
    margin-bottom: -1px;
}
.helpCon .helpListRight .helplistBar a.active{
	color: #3CA7FC;
    background: #fff;
    border-bottom: 1px solid #fff;
}
.helpCon .helpListRight .helplistBar a:hover{
	color: #3CA7FC;
    background: #fff;
    border-bottom: 1px solid #fff;
}
.helpCon .helpListRight .helpList{
	padding-bottom: 90px;
}
.helpCon .helpListRight .helpList li{
	border-bottom: 1px solid #eee;
	padding: 26px 0;
}
.helpCon .helpListRight .helpList li .num{
	display: block;
	background-color: #f5f5f5;
	color: #666;
	width: 34px;
	height: 40px;
	position: relative;
	text-align: center;
	line-height: 32px;
	float: left;
	font-size: 14px;
	font-weight: bold;
}
.helpCon .helpListRight .helpList li .num:after{
	content: '';
	width: 0;
	height: 0;
	border: 17px solid transparent;
	border-bottom:10px solid #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.helpCon .helpListRight .helpList li .textBox{
	float: left;
	width: 90%;
	padding-left: 24px;
}
.helpCon .helpListRight .helpList li .textBox .tit{
	display: block;
	font-size: 16px;
	color: #3CA7FC;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 10px;
}
.helpCon .helpListRight .helpList li .textBox .pro{
	font-size: 12px;
	color: #999;
	line-height: 1.5;
}
.helpCon .helpListRight .helpList li .textBox .tit:hover{
	opacity: 0.6;
}
.helpCon .helpListRight .helpList li:nth-of-type(1) .num{
	background-color: #ef9b48;
	color: #fff;
}
.helpCon .helpListRight .helpList li:nth-of-type(2) .num{
	background-color: #3ca7fc;
	color: #fff;
}
.helpCon .helpListRight .helpList li:nth-of-type(3) .num{
	background-color: #2aee99;
	color: #fff;
}
.helpCon .helpListRight .helpDeTit{
	width: 100%;
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
}
.helpCon .helpListRight .helpDeTit .tit{
	font-size: 20px;
	color: #3CA7FC;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 10px;
}
.helpCon .helpListRight .helpDeTit .pro{
	font-size: 12px;
	color: #999;
	line-height: 1.5;
}
.helpCon .helpListRight .helpDeList{
	padding-bottom: 80px;
}
.helpCon .helpListRight .helpDeList li{
	padding: 30px 0;
}
.helpCon .helpListRight .helpDeList li .q{
	background-image: url(../img/q.png);
	background-repeat: no-repeat;
	background-position: 0 6px;
	padding-left: 50px;
	font-size: 20px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
}
.helpCon .helpListRight .helpDeList li .a{
	background-image: url(../img/a.png);
	background-repeat: no-repeat;
	background-position: 0 4px;
	padding-left: 50px;
	font-size: 16px;
	color: #666;
	line-height: 1.5;
}
.helpBox .search-results-title{
	font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2eaec;
    padding-left: 4px;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #666;
}
.helpBox .search-results-list{
	font-size: 16px;
	color: #666;
}
.helpBox .search-results-list li{
	padding: 20px 0;
}
.helpBox .search-results-list li span{
	color: #999;
	font-size: 14px;
	line-height: 32px;
}
.helpBox .search-results-list li a{
	color: #666;
	font-size: 18px;
	line-height: 32px;
}
.nextPrev{
	width: 100%;
	margin-bottom:90px;
}
.nextPrev a{
	display: block;
	width: 35%;
	float: left;
	background-color: #f5f5f5;
	font-size: 20px;
	color: #999;
	line-height: 66px;
	padding: 0 20px;
}
.nextPrev a:last-of-type{
	float: right;
}
.nextPrev a:hover{
	color: #fff;
	background-color: #3CA7FC;
}
.newsDeBox{
	padding-top: 84px;
}
.newsDeBox .newsLeft{
	float: left;
	width: 65%;
}
.newsDeBox .newsRight{
	float: right;
	width: 28%;
}
.newsDeBox .newsLeft .newsLeftTop{
	margin-bottom: 36px;
}
.newsDeBox .newsLeft .newsLeftTop .newsTit{
	font-size: 20px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
}
.newsDeBox .newsLeft .newsLeftTop .newsPro{
	font-size: 14px;
	color: #999;
	line-height: 1.5;
	margin-bottom: 16px;
}
.newsDeBox .newsLeft .newsLeftTop .newsPro span{
	color: #3CA7FC;
	padding: 0 10px;
}
.newsDeBox .newsLeft .newsLeftTop .tagList{
	font-size: 14px;
	color: #999;
	line-height: 24px;
}
.newsDeBox .newsLeft .newsLeftTop .tagList a{
	display: inline-block;
	background-color: #f5f5f5;
	padding: 0 10px;
	margin-left: 10px;
}
.newsDeBox .newsLeft .newsLeftTop .tagList a:hover{
	background-color: #3CA7FC;
	color: #fff;
}
.newsDeBox .newsLeft .newsDeCon{
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	padding-bottom: 50px;
}
.newsDeBox .newsLeft .newsDeCon img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
.newsDeBox .newsLeft .newsDeCon p{
	margin-bottom: 20px;
}
.newsDeBox .newsRight .newsRightTit{
	font-size: 18px;
	color: #999;
	line-height: 1.5;
}
#tagscloud{
	width:100%;
	height:260px;
	position:relative;
	text-align:center;
	border-bottom: 1px solid #eee;
}
#tagscloud a{
	position:absolute;
	top:0px;
	left:0px;
	color:#fff;
	margin:0 10px 15px 0;
	line-height:28px;
	text-align:center;
	font-size:12px;
	padding:0 10px;
	display:inline-block;
	border-radius:3px;
	color:#fff;
}
#tagscloud a.tagc1{background:rgba(44,213,24,0.8);}
#tagscloud a.tagc2{background:rgba(233,147,73,0.8);}
#tagscloud a.tagc3{background:rgba(247,104,72,0.8);}
#tagscloud a.tagc4{background:rgba(51,51,51,0.8);}
#tagscloud a.tagc5{background:rgba(60,167,252,0.8);}
#tagscloud a:hover{background:#3CA7FC;}
.newsDeBox .newsRight .relativeNews{
	padding-top: 40px;
}
.newsDeBox .newsRight .relativeNews li{
	margin-bottom: 26px;
	position: relative;
	padding-left: 34px;
}
.newsDeBox .newsRight .relativeNews li .num{
	position: absolute;
	left: 0;
	top: 6px;
	display: block;
    background-color: #f5f5f5;
    color: #666;
    width: 22px;
    height: 28px;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
}
.newsDeBox .newsRight .relativeNews li .num:after{
	content: '';
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}
.newsDeBox .newsRight .relativeNews li .tit{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
	height:54px;
}
.newsDeBox .newsRight .relativeNews li .tit:hover{
	color: #3CA7FC;
}
.newsDeBox .newsRight .relativeNews li .time{
	font-size: 14px;
	color: #999;
	line-height: 1.5;
}
.newsDeBox .newsRight .relativeNews li:nth-of-type(1) .num{
	background-color: #ef9b48;
    color: #fff;
}
.newsDeBox .newsRight .relativeNews li:nth-of-type(2) .num{
	background-color: #3ca7fc;
    color: #fff;
}
.newsDeBox .newsRight .relativeNews li:nth-of-type(3) .num{
	background-color: #2aee99;
    color: #fff;
}
.newsAds{
	padding-bottom: 50px;
}
.newsAds .item{
	display: block;
	margin-bottom: 20px;
}
.newsAds .item img{
	display: block;
	width: 100%;
}
.abNav{
	padding: 30px 0;
	border-bottom: 1px solid #eee;
}
.abNav a{
	display: block;
	float: left;
	width: 130px;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	font-size: 18px;
	color: #333;
	line-height: 40px;
	text-align: center;
	margin-right: 40px;
	position: relative;
}
.abNav a:after{
	content: '/';
	font-size: 14px;
	color: #999;
	line-height: 40px;
	position: absolute;
	right: -24px;
	top: 0;
}
.abNav a:last-of-type{
	margin-right: 0;
}
.abNav a:last-of-type:after{
	display: none;
}
.abNav a:hover{
	color: #fff;
	background-color: #3CA7FC;
	box-shadow: 0px 1px 6px 0px rgba(33, 173, 232, 0.54);
	-webkit-box-shadow: 0px 1px 6px 0px rgba(33, 173, 232, 0.54);
}
.abNav a.active{
	color: #fff;
	background-color: #3CA7FC;
	box-shadow: 0px 1px 6px 0px rgba(33, 173, 232, 0.54);
	-webkit-box-shadow: 0px 1px 6px 0px rgba(33, 173, 232, 0.54);
}
.abModuleTit .moName{
	text-align: center;
	font-size: 40px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 10px;
}
.abModuleTit.newTit{
	padding: 80px 0 50px 0;
    text-align: center;
}
.abModuleTit.newTit .moName{
	font-size: 26px;
    color: #3b426b;
    padding-bottom: 20px;
    font-weight: 500;
    margin-bottom: 0;
}
.abModuleTit .moCh{
	text-align: center;
	font-size: 18px;
	line-height: 1.5;
	color: #999;
	text-transform: uppercase;
}
.abModuleTit.newTit .moCh{
    color: #5d6494;
}
.abModuleTit .newWhite{
	padding: 54px 0 68px 0;
    text-align: center;
    font-size: 22px;
    color: #fff;
}
.abModuleTit .newBlue{
	font-size: 22px;
    color: #3ca7fc;
    padding: 76px 0 44px 0;
    text-align: center;
}
.abModuleTit .moDansh{
	width: 150px;
	height: 1px;
	background-color: #dadada;
	margin: 30px auto;
}
.abModuleTit .moPro{
	text-align: center;
	font-size: 14px;
	line-height: 1.5;
	color: #999;
}
.abModule{
	padding: 90px 0;
}
.mallModule.newModule{
	padding: 0;
}
.abModule.abModule1{
	background: url(../img/abbg.jpg) no-repeat left bottom;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.abModule.abModule2,.abModule.abModule4{
	background-color: #f5f5f5;
}
.abModule.abModule3{
	background: url(../img/groupBg.jpg) no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
}
.abModule1 .box{
	padding-top: 80px;
}
.abModule1 .leftBox{
	width: 35%;
	float: left;
	padding-top: 68px;
}
.abModule1 .rightBox{
	width: 54%;
	float: right;
}
.abModule1 .leftBox .dansh{
	width: 120px;
	height: 1px;
	background-color: #3CA7FC;
	margin-bottom: 60px;
}
.abModule1 .leftBox .abProfile{
	font-size: 14px;
	color: #999;
	line-height: 1.6;
}
.abModule1 .leftBox .abProfile p{
	text-indent: 2em;
	margin-bottom: 5px;
}
.abModule1 .rightBox .item{
	float: left;
	width: 32%;
	margin-right: 2%;
	background-size: cover;
	-webkit-background-size: cover;
	height: 466px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
}
.abModule1 .rightBox .item.item3{
	margin-right: 0;
}
.abModule1 .rightBox .item .text{
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 14px;
	color: #fff;
	line-height: 30px;
}
.abModule1 .rightBox .item .text span{
	font-size: 26px;
}
.abModule1 .rightBox .item.item1{
	background-image: url(../img/abbg1.jpg);
}
.abModule1 .rightBox .item.item2{
	background-image: url(../img/abbg2.jpg);
}
.abModule1 .rightBox .item.item3{
	background-image: url(../img/abbg3.jpg);
}
.abModule1 .rightBox .item:hover .text{
	margin-top: -50px;
}
.abModule2 .abpic{
	display: block;
	margin: 60px auto 0;
	max-width: 100%;
}
.abModule3 .box{
	padding-top: 80px;
}
.abModule3 .box .topBox{
	padding-left: 20px;
}
.abModule3 .box .item{
	border: 1px solid #d5d5d5;
	padding: 15px;
	float: left;
	margin-left: 16px;
	margin-bottom: 16px;
	height: 326px;
}
.abModule3 .box .item .picbox{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.abModule3 .box .item .objectCover{
	object-position: top;
}
.abModule3 .box .item1,.abModule3 .box .item2,.abModule3 .box .item3,.abModule3 .box .item4,.abModule3 .box .item5{
	width: 220px;
}
.abModule3 .box .item1,.abModule3 .box .item6{
	margin-left: 0;
}
.abModule3 .box .item6,.abModule3 .box .item7,.abModule3 .box .item8,.abModule3 .box .item9{
	width: 279px;
}

.abModule3 .box .item:hover .objectCover{
	-moz-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform:scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}
.abModule4 .list{
	margin-top: 80px;
}
.abModule4 .list li .icon{
	display: block;
	max-width: 90%;
	margin: 0 auto 30px;
}
.abModule4 .list li:hover .icon{
	-webkit-animation: animateBeat 1s linear infinite;
    animation: animateBeat 1s linear infinite;
}

.abModule4 .list li .text{
	text-align: center;
	padding: 0 10px;
}
.abModule4 .list li .name{
	font-size: 22px;
	color: #333;
	line-height: 1.5;
	text-align: center;
}
.abModule4 .list li .dansh{
	width: 60px;
	height: 2px;
	background-color: #3CA7FC;
	margin: 20px auto;
}
.abModule4 .list li .pro{
	font-size: 14px;
	color: #999;
	line-height: 1.5;
	text-align: center;
}
.abModule5 .zwld{
	margin-top: 80px;
	text-align: center;
}
.abModule5 .zwld .item{
	display: inline-block;
	width: 193px;
	height: 62px;	
	font-size: 18px;
	color: #999;
	line-height: 62px;
	text-align: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	border-radius: 15px 15px 0 0;
	border: 2px solid transparent;
	margin: 10px;
}
.abModule5 .zwld .item:nth-of-type(1){
	border-color: #45abfb;
}
.abModule5 .zwld .item:nth-of-type(1):hover{
	background-color: #45abfb;
	color: #fff;
}
.abModule5 .zwld .item:nth-of-type(2){
	border-color: #48e4d7;
}
.abModule5 .zwld .item:nth-of-type(2):hover{
	background-color: #48e4d7;
	color: #fff;
}
.abModule5 .zwld .item:nth-of-type(3){
	border-color: #f17d54;
}
.abModule5 .zwld .item:nth-of-type(3):hover{
	background-color: #f17d54;
	color: #fff;
}
.abModule5 .zwld .item:nth-of-type(4){
	border-color: #7dbffd;
}
.abModule5 .zwld .item:nth-of-type(4):hover{
	background-color: #7dbffd;
	color: #fff;
}
.abModule5 .zwld .item:nth-of-type(5){
	border-color: #dbd76e;
}
.abModule5 .zwld .item:nth-of-type(5):hover{
	background-color: #dbd76e;
	color: #fff;
}

.abModule5 .list{
	padding-top: 80px;
}
.abModule5 .list li{
	height: 222px;
}
.abModule5 .list li .text{
	background-color: #f5f5f5;
	padding: 50px 34px 0;
	height: 222px;
	background-repeat: no-repeat;
	background-position: right top;
}
.abModule5 .list li .text:hover{
	margin-top: -10px;
	box-shadow: 0px 11px 13px 0px rgba(212, 212, 212, 0.48);
    -webkit-box-shadow: 0px 11px 13px 0px rgba(212, 212, 212, 0.48);
}
.abModule5 .list li .text .name{
	font-size: 20px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 20px;
}
.abModule5 .list li .text .pro{
	font-size: 14px;
	color: #999;
	line-height: 1.5;
	height: 63px;
	overflow: hidden;
}
.abModule5 .list li .item1{
	background-image: url(../img/joinicon1.jpg);
}
.abModule5 .list li .item2{
	background-image: url(../img/joinicon2.jpg);
}
.abModule5 .list li .item3{
	background-image: url(../img/joinicon3.jpg);
}
.abModule5 .list li .item4{
	background-image: url(../img/joinicon4.jpg);
}
.contact{
	padding: 90px 0;
}
.contact .box1{
	margin-bottom: 90px;
}
.contact .box1 .leftBox{
	float: left;
	width: 760px;
}
.contact .box1 .leftBox .item{
	width: 380px;
	float: left;
	margin-bottom: 26px;
	font-size: 14px;
	color: #333;
	line-height: 35px;
}
.contact .box1 .leftBox .item .icon{
	float: left;
	display: block;
	margin-right: 20px;
	width: 35px;
	height: 35px;
	background-image: url(../img/sprite.png);
}
.contact .box1 .leftBox .item .icon1{
	background-position: -169px 0;
}
.contact .box1 .leftBox .item .icon2{
	background-position: -206px 0;
}
.contact .box1 .leftBox .item .icon3{
	background-position: -243px 0;
}
.contact .box1 .leftBox .item .icon4{
	background-position: -280px 0;
}
.contact .box1 .leftBox .item .icon5{
	background-position: -317px 0;
}
.contact .box1 .leftBox .item .text{
	float: left;
	font-size: 14px;
	color: #666;
}
.contact .box1 .rightBox{
	float: right;	
}
.contact .box1 .rightBox .item{
	float: right;
	margin-left: 90px;
}
.contact .box1 .rightBox .text{
	font-size: 16px;
	color: #333;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 20px;
}
.contact .box1 .rightBox .pic{
	display: block;
	width: 120px;
	height: 120px;
	margin: 0 auto;
}
.contact .box2{
	padding-top: 30px;
	padding-bottom: 90px;
}
.contact .box2 .item{
	background-image: url(../img/contactbg.jpg);
	background-size: 100% 100%;
	position: relative;
	height: 196px;
	padding: 70px 10px;
}
.contact .box2 .item .icon{
	display: block;
	border: 8px solid #f5f5f5;
	border-radius: 50%;
	width: 79px;
	height: 79px;
	background-image: url(../img/sprite.png);
	position: absolute;
	left: 50%;
	margin-left: -40px;
	top: -40px;
}
.contact .box2 .item .icon1{
	background-position: 0 -385px;
}
.contact .box2 .item .icon2{
	background-position: -70px -385px;
}
.contact .box2 .item .icon3{
	background-position: -140px -385px;
}
.contact .box2 .item .icon4{
	background-position: -210px -385px;
}
.contact .box2 .item .name{
	text-align: center;
	font-size: 16px;
	color: #333;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 16px;
}
.contact .box2 .item .detail{
	text-align: center;
	font-size: 15px;
	color: #666;
	line-height: 1.5;
}
.news{
	padding: 90px 0;
}
.news .newsTop{
	margin-bottom: 66px;
}
.news .newsTop .leftBox{
	float: left;
	width: 50%;
	padding-right: 10px;
}
.news .newsTop .leftBox .box{
	width: 100%;
	height: 400px;
	position: relative;
}
.news .newsTop .leftBox .picBox{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.news .newsTop .leftBox .text{
	background: rgba(60,167,252,0.8);
	color: #fff;
	width: 248px;
	height: 172px;
	position: absolute;
	right: 30px;
	bottom: 24px;
	z-index: 10;
	padding:30px 20px;
}
.news .newsTop .leftBox .text .tit{
	font-size: 16px;
	line-height: 1.5;
	height: 72px;
	overflow: hidden;
	margin-bottom: 20px;
}
.news .newsTop .leftBox .text .time{
	font-size: 12px;
	line-height: 1.5;
}
.news .newsTop .leftBox .box:hover .objectCover{
	-moz-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform:scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}
.news .newsTop .rigthBox{
	float: left;
	width: 50%;
	padding-left: 10px;
}
.news .newsTop .rigthBox .item1{
	width: 50%;
	float: left;
	padding-right: 10px;
}
.news .newsTop .rigthBox .item2{
	width: 50%;
	float: left;
	padding-left: 10px;
}
.news .newsTop .rigthBox .box{
	background-color: #fff;
  	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.09);
  	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.09);
  	height: 400px;
}
.news .newsTop .rigthBox .picbox{
	width: 100%;
	height: 228px;
	overflow: hidden;
}
.news .newsTop .rigthBox .textBox{
	width: 100%;
	padding: 32px 14px 0;
}
.news .newsTop .rigthBox .textBox .tit{
	display: block;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	height: 42px;
	margin-bottom: 54px;
}
.news .newsTop .rigthBox .textBox .time{
	font-size: 14px;
	color: #999;
	line-height: 1.5;
}
.news .newsTop .rigthBox .textBox .tit:hover{
	color: #3CA7FC;
}
.news .newsTop .rigthBox .box:hover .objectCover{
	-moz-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -o-transform:scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}
.news .newsList li{
	margin-bottom: 30px;
}
.news .newsList .box{
	width: 96%;
 	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.09);
	background-color: #fff;
	height: 180px;
	padding:34px 24px;
	position: relative;
}
.news .newsList li:nth-of-type(2n) .box{
	margin-left: 4%;
}
.news .newsList .box .time{
	background-color: #3CA7FC;
	color: #fff;
	width: 66px;
	height: 80px;
	position: relative;
	border-radius: 3px;
	position: absolute;
	text-align: center;
	left: 24px;
	top: 34px;
}
.news .newsList .box .time:after{
	content: '';
	position: absolute;
	right: -16px;
	top: 50%;
	border: 8px solid transparent;
	border-left: 8px solid #3CA7FC;
	margin-top: -8px;
}
.news .newsList .box .time .timeDay{
	font-size: 25px;
	padding-top: 10px;
	line-height: 1.5;
	text-align: center;
}
.news .newsList .box .time .timeYM{
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}
.news .newsList .box .text{
	padding-left: 96px;
}
.news .newsList .box .text .tit{
	display: block;
	font-size: 20px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
}
.news .newsList .box .text .pro{
	display: block;
	font-size: 14px;
	color: #999;
	line-height: 1.5;
	height: 42px;
}
.news .newsList .box .text a:hover{
	color: #3CA7FC;
}
.news .newsList .box .more{
	display: block;
	background: url(../img/sprite.png) no-repeat;
	background-position: -337px -403px;
	width:51px;
	height: 24px;
	position: absolute;
	right: 24px;
	bottom: 28px;
}
.news .newsList .box .more:hover{
	background-position: -337px -432px;
}
.pageList {
    width: 100%;
    text-align: center;
    margin-top: 60px;
}
.pageList li{
	display: inline-block;
	min-width: 46px;
	margin-bottom: 10px;
}
.pageList a, .pageList strong {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    border-radius: 3px;
    color: #999;
    padding: 0 14px;
    font-size: 16px;
    font-weight: normal;
    margin: 0 5px;
    background-color: #f5f5f5;
}
.pageList strong {
    color: #3CA7FC;
}
.pageList a:hover{
	color: #3CA7FC;
}
.xcxModule,.wxModule,.webModule,.mallModule,.homeModule{
	padding: 90px 0;
}
.xcxModule1 .list{
	margin-top: 60px;
}
.xcxModule1 .list li{
	float: left;
	width: 18%;
	margin-right: 2.5%;
	position: relative;
	top: 0;
}
.xcxModule1 .list li:hover{
	top: -15px;
}
.xcxModule1 .list li:last-of-type{
	margin-right: 0;
}
.xcxModule1 .list li .box{
	background: #fff;
  	box-shadow: 0px 0px 10px 0px rgba(4, 0, 0, 0.05);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(4, 0, 0, 0.05);
	height: 256px;
	padding: 42px 24px 0;
}
.xcxModule1 .list li .box .icon{
	display: block;
	background-image: url(../img/xcx-sprite.png);
	width: 74px;
	height: 74px;
	margin: 0 auto;
	position: relative;
}
.xcxModule1 .list li .box .icon1{
	background-position: -6px -6px;
}
.xcxModule1 .list li .box .icon2{
	background-position: -88px -8px;
}
.xcxModule1 .list li .box .icon3{
	background-position: -168px -6px;
}
.xcxModule1 .list li .box .icon4{
	background-position: -250px -5px;
}
.xcxModule1 .list li .box .icon5{
	background-position: -333px -5px;
}
.xcxModule1 .list li .box .name{
	font-size: 16px;
	text-align: center;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
	margin-top: 20px;
}
.xcxModule1 .list li .box .pro{
	font-size: 12px;
	text-align: center;
	color: #999;
	line-height: 1.5;
}
.xcxModule1 .list li:hover .icon{
	-webkit-animation: icons2 4.5s infinite;
    animation: icons2 4.5s infinite;
}
.xcxModule2{
	background-color: #f5f5f5;
}
.xcxModule2 .list{
	margin-top: 60px;
}
.xcxModule2 .list li{
	float: left;
	width: 18%;
	margin-right: 2.5%;
	margin-bottom: 86px;
}
.xcxModule2 .list li:nth-of-type(5n){
	margin-right: 0;
}
.xcxModule2 .list li .icon{
	display: block;
	background-image: url(../img/xcx-sprite.png);
	width: 94px;
	height: 94px;
	margin: 0 auto;
}
.xcxModule2 .list li .icon1{
	background-position: -6px -114px;
}
.xcxModule2 .list li .icon2{
	background-position: -118px -114px;
}
.xcxModule2 .list li .icon3{
	background-position: -230px -114px;
}
.xcxModule2 .list li .icon4{
	background-position: -342px -114px;
}
.xcxModule2 .list li .icon5{
	background-position: -454px -114px;
}
.xcxModule2 .list li .icon6{
	background-position: -6px -222px;
}
.xcxModule2 .list li .icon7{
	background-position: -118px -222px;
}
.xcxModule2 .list li .icon8{
	background-position: -230px -222px;
}
.xcxModule2 .list li .icon9{
	background-position: -342px -222px;
}
.xcxModule2 .list li .icon10{
	background-position: -454px -222px;
}
.xcxModule2 .list li .name{
	font-size: 18px;
	text-align: center;
	color: #333;
	line-height: 1.5;
	margin-top: 20px;
}
.xcxModule2 .list li:hover .icon{
	-moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
@keyframes animateBeat {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(10px) scale(1.1, 0.9);
    }

    to {
        transform: translateY(0);
    }
}

@-moz-keyframes animateBeat {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(10px) scale(1.1, 0.9);
    }

    to {
        transform: translateY(0);
    }
}

@-webkit-keyframes animateBeat {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(10px) scale(1.1, 0.9);
    }

    to {
        transform: translateY(0);
    }
}

@-o-keyframes animateBeat {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(10px) scale(1.1, 0.9);
    }

    to {
        transform: translateY(0);
    }
}
.xcxModule3 .list{
	margin-top: 80px;
}
.xcxModule3 .list li{	
	width: 23%;
	margin-right: 2.25%;
	height: 412px;
	float: left;
	position: relative;
	background-color: #ffffff;
	padding: 50px 20px 0;
 	box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.06);
	-webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.06);
}
.xcxModule3 .list li:last-of-type{
	margin-right: 0;
}
.xcxModule3 .list li .icon{
	display: block;
	background-image: url(../img/xcx-sprite.png);
	width: 134px;
	height: 134px;
	margin: 0 auto;
}
.xcxModule3 .list li .icon1{
	background-position: -6px -327px;
}
.xcxModule3 .list li .icon2{
	background-position: -148px -327px;
}
.xcxModule3 .list li .icon3{
	background-position: -291px -327px;
}
.xcxModule3 .list li .icon4{
	background-position: -434px -327px;
}
.xcxModule3 .list li .name{
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 50px;
	text-align: center;
	color: #333;
	font-weight: bold;
}
.xcxModule3 .list li .pro{
	font-size: 14px;
	text-align: center;
	line-height: 1.5;
	color: #999;
	margin-top: 42px;
}
.xcxModule3 .list li:hover{
	margin-top: -15px;
}
.xcxModule3 .list li:hover .icon{
	-webkit-animation: animateBeat 1s linear infinite;
    animation: animateBeat 1s linear infinite;
}
.xcxModule4{
	background-color: #f5f5f5;
}
.xcxModule4 .list li{
	margin-top: 64px;
	float: left;
	width: 13.6%;
	height: 146px;
	text-align: center;
	margin-right: 8%;
}
.xcxModule4 .list li:nth-of-type(5n){
	margin-right: 0;
}
.xcxModule4 .list li .box{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}
.xcxModule4 .list li .box .icon{
	width: 100%;
	height: 100%;
	background: url(../img/xcx-sprite.png);
	position: absolute;
	left: 0;
	top: 0;
}
.xcxModule4 .list li .box .icon1{
	background-position: -588px -58px;	
}
.xcxModule4 .list li .box .icon2{
	background-position: -763px -58px;	
}
.xcxModule4 .list li .box .icon3{
	background-position: -938px -58px;	
}
.xcxModule4 .list li .box .icon4{
	background-position: -1113px -58px;	
}
.xcxModule4 .list li .box .icon5{
	background-position: -1288px -58px;	
}
.xcxModule4 .list li .box .icon6{
	background-position: -588px -229px;	
}
.xcxModule4 .list li .box .icon7{
	background-position: -764px -229px;	
}
.xcxModule4 .list li .box .icon8{
	background-position: -938px -229px;	
}
.xcxModule4 .list li .box .icon9{
	background-position: -1113px -229px;	
}
.xcxModule4 .list li .box .icon10{
	background-position: -1288px -229px;	
}
.xcxModule4 .list li .box .name{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
}
.xcxModule4 .list li:hover .icon{
	-moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform:scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.webModule3.xcxModule{
	background-color: #fff;
}
.inCases.xcxModule{
	background-color: #f5f5f5;
}
.inCases .caseSwi{
	position: relative;
	margin-top: 76px;
}
.inCases .caseSwi .swiper-slide{
	width: 237px;
}
.inCases .caseSwi .caseItem{
	width: 237px;
}
.inCases .caseSwi .caseItem .picBox{
	background-image: url(../img/phone.png);
	width: 237px;
	height: 425px;
	background-size: 100%;
	position: relative;		
}
.inCases .caseSwi .caseItem .picBox .pic,.inCases .caseSwi .caseItem .picBox .hPic{
	position: absolute;
	width: 152px;
	height: 270px;
	top: 88px;
    left: 32px;
	overflow: hidden;
}
.inCases .caseSwi .caseItem .picBox .hPic{
	opacity: 0;
	z-index: 12;
}
.inCases .caseSwi .caseItem .picBox .hPic span{
	display: block;
	width: 100%;
	position: absolute;
	font-size: 14px;
	color: #666;
	left: 0;
	bottom: 36px;
	z-index: 10;
	text-align: center;
	line-height: 1.5;	
}
.inCases .caseSwi .caseItem .picBox .hPic span p:nth-of-type(2){
	font-size: 16px;
	margin-top: 6px;
}
.inCases .caseSwi .caseItem .text{
	margin-top: 10px;
	padding: 0 10px;
	padding-right: 40px;
}
.inCases .caseSwi .caseItem .text .tit{
	display: block;
	text-align: center;
	font-size: 16px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
}
.inCases .caseSwi .caseItem .text .tags{
	font-size: 12px;
	color: #999;
	line-height: 1.5;
	text-align: center;
}
.inCases .caseSwi .caseItem .text .tags a{
	display: inline-block;
	position: relative;
	margin: 0 10px;
}
.inCases .caseSwi .caseItem .text .tags a:after{
	content: '/';
	font-size: 12px;
	line-height: 12px;
	color: #3CA7FC;
	position: absolute;
	right: -10px;
	top: 0;
}
.inCases .caseSwi .caseItem .text .tags a:last-of-type:after{
	display: none;
}
.inCases .caseSwi .caseItem .text a:hover{
	color: #3CA7FC;
}
.inCases .caseSwi .caseItem:hover .hPic{
	opacity: 1;
}
.inCases .caseSwi .button-next,.inCases .caseSwi .button-prev,.webModuleAdd .templateSwi .button-next,.webModuleAdd .templateSwi .button-prev{
	background-image: url(../img/next.png);
	width: 22px;
	height: 42px;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -21px;
	cursor: pointer;
	z-index: 100;
}
.inCases .caseSwi .button-prev,.webModuleAdd .templateSwi .button-prev{
	background-image: url(../img/prev.png);
	left: 0;
}
.swiper-pagination-bullet-active{
	background: #3ca7fc;
}
.inCases .caseSwi .button-next:hover,.inCases .caseSwi .button-prev:hover,.webModuleAdd .templateSwi .button-prev:hover,.webModuleAdd .templateSwi .button-next:hover{
	opacity: 0.6;
}
.button-next.swiper-button-disabled{
	opacity: 0.6;
}
.button-prev.swiper-button-disabled{
	opacity: 0.6;
}
.wxModule1{
	background-color: #fff;
}
.wxModule1 .tit{
	text-align: center;
	font-size: 17px;
	color: #666;
	line-height: 1.6;
}
.wxModule1 .list{
	margin-top: 100px;
}
.wxModule1 .list li .box{
	background-color: #fff;
  	border-radius: 5px;
  	box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.06);
	-webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.06);
	height: 380px;
	padding-top: 46px;
}
.wxModule1 .list .icon{
	background-image: url(../img/wxSprite.png);
	width: 198px;
	height: 198px;
	display: block;
	margin: 0 auto;
}
.wxModule1 .list .icon1{
	background-position: -3px -11px;
}
.wxModule1 .list .icon2{
	background-position: -204px -11px;
}
.wxModule1 .list .icon3{
	background-position: -404px -11px;
}
.wxModule1 .list .icon4{
	background-position: -605px -11px;
}
.wxModule1 .list .name{
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	text-align: center;
	margin-top: 40px;
}
.wxModule1 .list li .box:hover{
	margin-top: -15px;
}
.wxModule1 .list li .box:hover .icon{
	-webkit-animation: animateBeat 1s linear infinite;
    animation: animateBeat 1s linear infinite;
}
.wxModule2{
	background-image: url(../img/wechatbg.jpg);
	background-size: cover;
	-webkit-background-size: cover;
}
.wxModule2 .box{
	padding-top: 78px;
}
.wxModule2 .box .leftBox{
	float: left;
	width: 100%;	
	text-align: center;
}
.wxModule2 .box .leftBox .item{
	display: inline-block;
	width: 160px;
	margin: 0 10px;
	background: #fff;
	border: 2px solid #e2eaf6;
	border-radius: 10px;
	color: #666;
	font-size: 20px;
	text-align: center;
	line-height: 78px;
	height: 78px;
	cursor: pointer;
	position: relative;
	padding-left: 50px;
}
.wxModule2 .box .leftBox .item:nth-of-type(2n){
	margin-right: 0;
}
.wxModule2 .box .leftBox .item .icon{
	display: block;
	position: absolute;	
	width: 44px;
	height: 38px;
	top: 20px;
	left: 30px;
	background: url(../img/wxSprite.png);
}
.wxModule2 .box .leftBox .item .icon1{
	background-position: -10px -220px;
}
.wxModule2 .box .leftBox .item .icon2{
	background-position: -55px -220px;
}
.wxModule2 .box .leftBox .item .icon3{
	background-position: -100px -220px;
}
.wxModule2 .box .leftBox .item .icon4{
	background-position: -145px -220px;
}
.wxModule2 .box .leftBox .item.active{
	border: 2px solid #3CA7FC;
	color: #fff;
	background-color:#3CA7FC;
}
.wxModule2 .box .leftBox .item.active .icon{
	background-position-y: -259px;
}
.wxModule2 .box .leftBox .item:hover{
	border: 2px solid #3CA7FC;
	color: #fff;
	background-color:#3CA7FC;
}
.wxModule2 .box .leftBox .item:hover .icon{
	/*-webkit-animation: animateBeat 1s linear infinite;
    animation: animateBeat 1s linear infinite;*/
    background-position-y: -259px;
}
.wxModule2 .box .centerBox{
	float: left;
	width: 100%;
	padding-top: 76px;
}
.wxModule2 .box .centerBox .textBox{
	width: 100%;
}
.wxModule2 .box .centerBox .textBox .leftText{
	float: left;
	text-align: right;
	width: 35%;
}
.wxModule2 .box .centerBox .textBox .rightText{
	float: right;
	text-align: left;
	width: 35%;
}
.wxModule2 .box .centerBox .textBox .txtItem{
	margin: 80px 0;
}
.wxModule2 .box .centerBox .textBox .leftText .icon{
	float: right;
	margin-left: 20px;
}
.wxModule2 .box .centerBox .textBox .rightText .icon{
	float: left;
	margin-right: 20px;
}
.wxModule2 .box .centerBox .textBox .leftText .txt{
	float: right;
}
.wxModule2 .box .centerBox .textBox .rightText .txt{
	float: left;
}
.wxModule2 .box .centerBox .textBox .icon{
	display: block;
	width: 52px;
	height: 52px;
	background-image:url(../img/wxSprite.png);
}
.wxModule2 .box .centerBox .textBox .icon1_1{
	background-position: -412px -210px;
}
.wxModule2 .box .centerBox .textBox .icon1_2{
	background-position: -472px -210px;
}
.wxModule2 .box .centerBox .textBox .icon1_3{
	background-position: -533px -210px;
}
.wxModule2 .box .centerBox .textBox .icon1_4{
	background-position: -593px -210px;
}
.wxModule2 .box .centerBox .textBox .icon1_5{
	background-position: -654px -210px;
}
.wxModule2 .box .centerBox .textBox .icon1_6{
	background-position: -714px -210px;
}
.wxModule2 .box .centerBox .textBox .icon2_1{
	background-position: -412px -263px;
}
.wxModule2 .box .centerBox .textBox .icon2_2{
	background-position: -472px -263px;
}
.wxModule2 .box .centerBox .textBox .icon2_3{
	background-position: -533px -263px;
}
.wxModule2 .box .centerBox .textBox .icon2_4{
	background-position: -593px -263px;
}
.wxModule2 .box .centerBox .textBox .icon2_5{
	background-position: -654px -263px;
}
.wxModule2 .box .centerBox .textBox .icon2_6{
	background-position: -714px -263px;
}
.wxModule2 .box .centerBox .textBox .icon3_1{
	background-position: -412px -263px;
}
.wxModule2 .box .centerBox .textBox .icon3_2{
	background-position: -472px -316px;
}
.wxModule2 .box .centerBox .textBox .icon3_3{
	background-position: -533px -316px;
}
.wxModule2 .box .centerBox .textBox .icon3_4{
	background-position: -593px -316px;
}
.wxModule2 .box .centerBox .textBox .icon3_5{
	background-position: -654px -316px;
}
.wxModule2 .box .centerBox .textBox .icon3_6{
	background-position: -714px -316px;
}
.wxModule2 .box .centerBox .textBox .icon4_1{
	background-position: -412px -369px;
}
.wxModule2 .box .centerBox .textBox .icon4_2{
	background-position: -472px -369px;
}
.wxModule2 .box .centerBox .textBox .icon4_3{
	background-position: -533px -369px;
}
.wxModule2 .box .centerBox .textBox .icon4_4{
	background-position: -593px -369px;
}
.wxModule2 .box .centerBox .textBox .icon4_5{
	background-position: -654px -369px;
}
.wxModule2 .box .centerBox .textBox .icon4_6{
	background-position: -714px -369px;
}
.wxModule2 .box .centerBox .textBox .name{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
}
.wxModule2 .box .centerBox .textBox .pro{
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}
.wxModule2 .box .centerBox .tabCon{
	display: none;
	position: relative;
	min-height: 456px;
}
.wxModule2 .box .centerBox .tabCon.active{
	display: block;
}
.wxModule2 .box .centerBox .rightPic{
	display: block;
	float: right;
	position: absolute;
	background-image: url(../img/phone2.png);
	width: 231px;
	height: 456px;
	left: 50%;
	margin-left: -115px;
	top: 0;
}
.wxModule2 .box .centerBox .rightPic .pic{
	display: block;
	width: 196px;
	height: 348px;
	position: absolute;
	left: 14px;
	top: 45px;
}
.wxModule3 .list{
	padding-top: 10px;
}
.wxModule3 .list li{
	float: left;
	width: 12.5%;
	margin-right: 9.3%;
	height: 128px;
  	box-shadow: 0px 0px 10px 0px rgba(60, 167, 252, 0.44);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(60, 167, 252, 0.44);
	background-color: #fff;
	border-radius: 10px;
	padding-top: 16px;
	margin-top: 62px;
	position: relative;
	top: 0;
}
.wxModule3 .list li:nth-of-type(5n){
	margin-right: 0;
}
.wxModule3 .list li:hover{
	top: -15px;
}
.wxModule3 .list .icon{
	display: block;
	margin: 0 auto;
	background-image: url(../img/wxSprite.png);
	width: 70px;
	height: 50px;
}
.wxModule3 .list .icon1{
	background-position: -10px -299px;
}
.wxModule3 .list .icon2{
	background-position: -84px -299px;
}
.wxModule3 .list .icon3{
	background-position: -158px -299px;
}
.wxModule3 .list .icon4{
	background-position: -232px -299px;
}
.wxModule3 .list .icon5{
	background-position: -306px -299px;
}
.wxModule3 .list .icon6{
	background-position: -10px -353px;
}
.wxModule3 .list .icon7{
	background-position: -84px -353px;
}
.wxModule3 .list .icon8{
	background-position: -158px -353px;
}
.wxModule3 .list .icon9{
	background-position: -232px -353px;
}
.wxModule3 .list .icon10{
	background-position: -306px -353px;
}
.wxModule3 .list .name{
	text-align: center;
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	margin-top: 10px;
	padding: 0 10px;
}

.wxModule.inCases{
	background-color: #fff;
}
.webModule1{
	background: #f5f5f5;
}
.webModule1 .list{
	margin-top: 70px;
}
.webModule1 .list li .box{
	width: 100%;
	height: 416px;
	background-color: #fff;
	border-radius: 5px;
	padding: 0 35px;
	position: relative;
}
.webModule1 .list li .box:hover{
  	box-shadow: 0px 11px 13px 0px rgba(212, 212, 212, 0.48);
	-webkit-box-shadow: 0px 11px 13px 0px rgba(212, 212, 212, 0.48);
}
.webModule1 .list li .box:hover .icon {
    -webkit-animation: icons 4.5s infinite;
    animation: icons 4.5s infinite;
}
.webModule1 .list li .box .name{
	font-size: 20px;
	font-weight: bold;
	color: #333;
	line-height: 1.5;
	padding-top: 70px;
	text-align: center;
	margin-bottom: 30px;
}
.webModule1 .list li .box .pro{
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	text-align: center;
}
.webModule1 .list li .box .icon{
	position: absolute;
	width: 108px;
	height: 98px;
	left: 50%;
	margin-left: -54px;
	bottom: 50px;
	background-image: url(../img/webSprite.png);
}
.webModule1 .list li .box .icon1{
	background-position: -23px -13px;
}
.webModule1 .list li .box .icon2{
	background-position: -148px -13px;
}
.webModule1 .list li .box .icon3{
	background-position: -274px -13px;
}
.webModule1 .list li .box .icon4{
	background-position: -399px -13px;
}
.webModuleAdd{
	background-image: url(../img/websitebg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
}
.webModuleAdd .moreMB{
	display: block;
    margin: 26px auto 0;
    background-image: -moz-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(109,186,248) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(109,186,248) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(109,186,248) 100%);
    width: 120px;
    height: 36px;
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 36px;
}
.webModuleAdd .moreMB:hover{
	opacity: 0.6;
}
.webModuleAdd .templateSwi{
	margin-top: 80px;
}
.webModuleAdd .templateSwi .swiper-container{
	padding-bottom: 50px;
}
.webModuleAdd .templateSwi .picBox{
	width: 465px;
	height: 274px;
	float: left;
	background-image: url(../img/webBg.png);
	background-size: 100% 100%;
	position: relative;
	margin-left: 30px;
}
.webModuleAdd .templateSwi .picBox .pcImg{
	position: absolute;
	left: 64px;
	top: 14px;
	width: 340px;
	height: 224px;
	z-index: 1;
}
.webModuleAdd .templateSwi .picBox .mImg{
	width: 91px;
	height: 185px;
	position: absolute;
	left: 346px;
	top: 86px;
	padding: 18px 10px 23px 9px;
	z-index: 10;
	background-image: url(../img/mobg.png);
	background-size: 100% 100%;
}

.webModuleAdd .templateSwi .textBox{
	float: left;
	width: calc(100% - 550px);
	padding-left: 50px;
}
.webModuleAdd .templateSwi .textBox .name{
	font-size: 24px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 20px;
}
.webModuleAdd .templateSwi .textBox .pro{
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 40px;
}
.webModuleAdd .templateSwi .textBox .website{
	display: block;
	font-size: 16px;
	color: #fff;
	line-height: 44px;
	width: 142px;
	height: 44px;
	text-align: center;
	border-radius: 3px;
    background-image: -moz-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(121,194,252) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(121,194,252) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(121,194,252) 100%);
}
.webModuleAdd .templateSwi .textBox .website:hover{
	opacity: 0.6;
}
.webModule2 .list{
	margin-top: 46px;
}
.webModule2 .list li .box{
	width: 100%;
	height: 270px;
	padding: 30px;
}
.webModule2 .list li .box:hover{
	box-shadow: 0px 11px 13px 0px rgba(212, 212, 212, 0.48);
	-webkit-box-shadow: 0px 11px 13px 0px rgba(212, 212, 212, 0.48);
}
.webModule2 .list li .box .icon{
	margin: 0 auto 26px;
	width: 92px;
	height: 76px;
	background-image: url(../img/webSprite.png);
	position: relative;
}
.webModule2 .list li .box .icon1{
	background-position: -7px -123px;
}
.webModule2 .list li .box .icon2{
	background-position: -115px -123px;
}
.webModule2 .list li .box .icon3{
	background-position: -224px -123px;
}
.webModule2 .list li .box .icon4{
	background-position: -332px -123px;
}
.webModule2 .list li .box .icon5{
	background-position: -7px -224px;
}
.webModule2 .list li .box .icon6{
	background-position: -115px -224px;
}
.webModule2 .list li .box .icon7{
	background-position: -224px -224px;
}
.webModule2 .list li .box .icon8{
	background-position: -332px -224px;
}
.webModule2 .list li .box:hover .icon{
	-webkit-animation: icons2 4.5s infinite;
    animation: icons2 4.5s infinite;
}
.webModule2 .list li .box .name{
	font-size: 22px;
	color: #333;
	text-align: center;
	line-height: 1.6;
	margin-bottom: 12px;
}
.webModule2 .list li .box .pro{
	font-size: 12px;
	color: #999;
	text-align: center;
	line-height: 1.6;
}
.webModule3{
	background: #f5f5f5;
}
.webModule3 .list{
	margin-top: 80px;
	margin-bottom: 50px;
}
.webModule3 .list li{
	float: left;
	width: 10%;
	margin-right: 8%;
	position: relative;
}
.webModule3 .list li:last-of-type{
	margin-right: 0;
}
.webModule3 .list li:after{
	content: '';
	background-image: url(../img/sprite.png);
	width: 18px;
	height: 21px;
	position: absolute;
	right: -45%;
	margin-left: -9px;
	top: 25%;
}
.webModule3 .list li:nth-of-type(1):after{
	background-position: -801px -30px;
}
.webModule3 .list li:nth-of-type(2):after{
	background-position: -833px -30px;
}
.webModule3 .list li:nth-of-type(3):after{
	background-position: -865px -30px;
}
.webModule3 .list li:nth-of-type(4):after{
	background-position: -897px -30px;
}
.webModule3 .list li:nth-of-type(5):after{
	background-position: -929px -30px;
}
.webModule3 .list li:last-of-type:after{
	display: none;
}
.webModule3 .list li .icon{
	display: block;
	margin-bottom: 20px;
	background-image: url(../img/sprite.png);
	width: 112px;
	height: 112px;
	-webkit-transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
    -moz-transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
    -o-transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
    -ms-transition: all .6s cubic-bezier(0.445, 1.045, 0.355, 1);
    transition: all .6s cubic-bezier(0.445, 0.145, 0.355, 1);
}
.webModule3 .list li .icon1{
	background-position: -5px -482px;
}
.webModule3 .list li .icon2{
	background-position: -132px -482px;
}
.webModule3 .list li .icon3{
	background-position: -258px -482px;
}
.webModule3 .list li .icon4{
	background-position: -385px -482px;
}
.webModule3 .list li .icon5{
	background-position: -511px -482px;
}
.webModule3 .list li .icon6{
	background-position: -638px -482px;
}
.webModule3 .list li:hover .icon{
	-moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.webModule3 .list li .text{
	width: 112px;
	font-size: 17px;
	color: #333;
	line-height: 1.5;
	text-align: center;
}
.webModule3 .list li:hover .text{color: #3CA7FC;}
.inCases.webModule .caseItem{
	width: 382px;
} 
.inCases.webModule .caseSwi .swiper-slide{
	width: 392px;
}
.inCases.webModule .caseItem .picBox2{
	position: relative;
    margin-bottom: 20px;
    width: 382px;
    height: 225px;
    background-image: url(../img/casesbg.png);
}
.inCases.webModule .caseItem .picBox2 img{
	display: block;
    width: 280px;
    height: 184px;
    position: absolute;
    top: 12px;
    left: 51px;
    object-fit: cover;
}
.inCases.webModule .caseItem .picBox2 .caseBtn {
    display: block;
    opacity: 0;
    width: 170px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    margin-left: -85px;
    bottom: 40px;
    background-image: url(../img/link.png);
    background-repeat: no-repeat;
    background-position: 38px 12px;
    text-align: center;
    font-size: 14px;
    color: #333;
}
.inCases.webModule .caseItem .picBox2:hover .caseBtn{
	opacity: 1;
}
.mallModule1 .list{
	/*margin-top: 72px;*/
}
.mallModule1 .list li .box{
 	box-shadow: 0 0 18px 4px rgba(224,224,224,0.3);
	-webkit-box-shadow: 0 0 18px 4px rgba(224,224,224,0.3);
	border-radius: 10px;
	height: 320px;
	position: relative;
	padding: 38px 20px 0 38px;
}
.mallModule1 .list li .box .name{
	font-size: 20px;
    color: #3b426b;
	line-height: 1.5;
}
.mallModule1 .list li .box .pro{
	font-size: 14px;
    color: #7d88a2;
    line-height: 32px;
    margin-top: 10px;
}
.mallModule1 .list li .box .icon{
	display: block;
	width: 100%;
}
.mallModule1 .list li .box:hover{
	margin-top: -15px;
}
.mallModule1 .list li:nth-of-type(1) .box{
	background: url(../img/mall11.png) no-repeat right bottom;
}
.mallModule1 .list li:nth-of-type(2) .box{
	background: url(../img/mall12.png) no-repeat right bottom;
}
.mallModule1 .list li:nth-of-type(3) .box{
	background: url(../img/mall13.png) no-repeat right bottom;
}
@keyframes icons {
	0% {
		bottom: 50px;
	}
	10% {
		bottom: 60px;
	}
	20% {
		bottom: 50px;
	}
	30% {
		bottom: 60px;
	}
	40% {
		bottom: 50px;
	}
	50% {
		bottom: 60px;
	}
	60% {
		bottom: 50px;
	}
	70% {
		bottom: 60px;
	}
	80% {
		bottom: 50px;
	}
	90% {
		bottom: 60px;
	}
	100% {
		bottom: 50px;
	}
}

@-webkit-keyframes icons {
	0% {
		bottom: 50px;
	}
	10% {
		bottom: 60px;
	}
	20% {
		bottom: 50px;
	}
	30% {
		bottom: 60px;
	}
	40% {
		bottom: 50px;
	}
	50% {
		bottom: 60px;
	}
	60% {
		bottom: 50px;
	}
	70% {
		bottom: 60px;
	}
	80% {
		bottom: 50px;
	}
	90% {
		bottom: 60px;
	}
	100% {
		bottom: 50px;
	}
}
.mallModule2{
	background: url(../img/mallbg1.jpg) no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
}
.mallModule2 .box{
	/*margin-top: 58px;*/
}
.mallModule2 .leftBox{
	float: left;
	width: 20%;
	padding-left: 72px;
}
.mallModule2 .leftBox .tabBar{
	cursor: pointer;
	width: 100%;
	height: 100px;
	border-right: 4px solid #fff;
}
/*.mallModule2 .leftBox .tabBar:nth-of-type(1){
	border-color: #3ca7fc;
}*/
/*.mallModule2 .leftBox .tabBar:nth-of-type(2){
	margin: 16px 0;
	border-color: #ffa164;
}*/
/*.mallModule2 .leftBox .tabBar:nth-of-type(3){
	border-color: #18e2e0;
}*/
.mallModule2 .leftBox .tabBar .icon{
	background-image: url(../img/mallSprite.png);
	width: 60px;
	height: 55px;
	float: left;
	margin-right: 38px;
}
.mallModule2 .leftBox .tabBar .icon1{
	background-position: 0 0;
}
.mallModule2 .leftBox .tabBar .icon2{
	background-position: -62px 0;
}
.mallModule2 .leftBox .tabBar .icon3{
	background-position: -124px 0;
}
.mallModule2 .leftBox .tabBar .name{
	font-size: 16px;
	color: #fff;
	line-height: 100px;
	text-align: center;
}
/*.mallModule2 .leftBox .tabBar:hover .icon{
	background-position-y: -57px;
}
.mallModule2 .leftBox .tabBar:hover .name{
	color: #fff;	
}*/
.mallModule2 .leftBox .tabBar.active .icon{
	background-position-y: -57px;
}
.mallModule2 .leftBox .tabBar.active .name{
	color: #3ca7fc;	
}
.mallModule2 .leftBox .tabBar:hover .name{
	color: #3ca7fc;	
}
.mallModule2 .leftBox .tabBar:hover{
	border-color: #3ca7fc;
}
.mallModule2 .leftBox .tabBar.active{
	border-color: #3ca7fc;
}
/*.mallModule2 .leftBox .tabBar:nth-of-type(1):hover{
	background-color: #3CA7FC;
}
.mallModule2 .leftBox .tabBar:nth-of-type(2):hover{
	background-color: #ffa164;
}
.mallModule2 .leftBox .tabBar:nth-of-type(3):hover{
	background-color: #18e2e0;
}
.mallModule2 .leftBox .tabBar:nth-of-type(1).active{
	background-color: #3CA7FC;
}
.mallModule2 .leftBox .tabBar:nth-of-type(2).active{
	background-color: #ffa164;
}
.mallModule2 .leftBox .tabBar:nth-of-type(3).active{
	background-color: #18e2e0;
}*/
.mallModule2 .rightBox{
	float: left;
	width: 70%;
}
.mallModule2 .rightBox .tabCon{
	display: none;
	height: 460px;
}
.mallModule2 .rightBox .tabCon.active{
	display: block;
}
.mallModule2 .rightBox .pic{
	display: block;
	max-width: 100%;
	margin: 0 auto 30px;
}
.mallModule2 .rightBox .tabCon:nth-of-type(1){
	margin-top: -32px;
}
.mallModule2 .rightBox .tabCon:nth-of-type(2){
	margin-top: -32px;
}
.mallModule2 .rightBox .text{
	font-size: 14px;
    color: #e5e5e5;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 40px;
}
.mallModule3{
 	background: #f5f8ff;	
}
.mallModule3 .box{
	/*margin-top: 90px;*/
}
.mallModule3 .topBox{
	text-align: center;
	border-bottom: 1px solid #d2d2d2;
}
.mallModule3 .topBox .tabBar{
	display: block;
	width: 33.3%;
	float: left;
	height: 40px;
	cursor: pointer;
	text-align: center;
	border-bottom: 2px solid transparent;
}
.mallModule3 .topBox .tabBar .boxs{
	display: inline-block;
}
.mallModule3 .topBox .tabBar .icon{
	display: none;
	width: 21px;
	height: 21px;
	background-image: url(../img/mallSprite.png);
	float: left;
	margin-top:22px;
	margin-right: 12px;
}
.mallModule3 .topBox .tabBar .icon1{
	background-position: 0px -195px;
}
.mallModule3 .topBox .tabBar .icon2{
	background-position: -23px -195px;
}
.mallModule3 .topBox .tabBar .icon3{
	background-position: -46px -195px;
}
.mallModule3 .topBox .tabBar .name{
	font-size: 16px;
	color: #3b426b;
	line-height: 40px;
	float: left;
}
.mallModule3 .topBox .tabBar:hover .icon{
	background-position-y: -218px;
}
.mallModule3 .topBox .tabBar:hover .name{
	color: #3CA7FC;
}
.mallModule3 .topBox .tabBar:hover{
	border-color: #3CA7FC;
}
.mallModule3 .topBox .tabBar.active{
	border-color: #3CA7FC;
}
.mallModule3 .topBox .tabBar.active .name{
	color: #3CA7FC;
}
.mallModule3 .topBox .tabBar.active .icon{
	background-position-y: -218px;
}
.mallModule3 .bottomBox{
	margin-top: 26px;
}
.mallModule3 .bottomBox .pic{
	display: block;
	margin: 44px auto;
}
.mallModule3 .bottomBox .text{
	font-size: 14px;
    color: #7b88a2;
    padding-bottom: 48px;
    text-align: center;
}
.mallModule3 .bottomBox .tabCon{
	display: none;
}
.mallModule3 .bottomBox .tabCon.active{
	display: block;
}
.mallModule4.newModule{
	background: url(../img/mallbg2.jpg) no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
	padding-bottom: 50px;
}
.mallModule4 .box{
	/*margin-top: 68px;*/
}
.mallModule4 .leftBox{
	float: left;
}
.mallModule4 .leftBox .tabBar{
	width: 282px;
    height: 100px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    padding: 22px 0 20px 0;
    margin-bottom: 30px;
    box-sizing: border-box;
    margin-left: 154px;
    font-size: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    color: #fff;
    text-align: center;
}
.mallModule4 .leftBox .tabBar:nth-of-type(1){
	background-position: -204px -10px;	
}
.mallModule4 .leftBox .tabBar:nth-of-type(2){
	background-position: -204px -146px;
}
.mallModule4 .leftBox .tabBar:nth-of-type(3){
	background-position: -204px -282px;
	margin-bottom: 0;
}
.mallModule4 .leftBox .tabBar .icon{
	display: block;
	margin: 0 auto 10px;
	background-image: url(../img/mallSprite.png);
	width:32px;
	height: 32px;
}
.mallModule4 .leftBox .tabBar .icon1{
	background-position: 0 -131px;
}
.mallModule4 .leftBox .tabBar .icon2{
	background-position: -53px -131px;
}
.mallModule4 .leftBox .tabBar .icon3{
	background-position: -106px -131px;
}
.mallModule4 .leftBox .tabBar .name{

}
.mallModule4 .leftBox .tabBar:hover .icon{
	-webkit-animation: animateBeat 1s linear infinite;
    animation: animateBeat 1s linear infinite;
}
.mallModule4 .leftBox .tabBar:hover{
	background-position-x:-517px;
}
/*.mallModule4 .leftBox .tabBar.active{
	background-position-x:-517px;
}*/
.mallModule4 .leftBox .tabBar.active{
	border-color: #3CA7FC;
}
.mallModule4 .leftBox .tabBar.active .icon{
	-webkit-animation: animateBeat 1s linear infinite;
    animation: animateBeat 1s linear infinite;
}
.mallModule4 .rightBox{
	float: left;
	width: 618px;
	padding-left: 58px;
}
.mallModule4 .rightBox .tabCon{
	display: none;
	position: relative;
}
.mallModule4 .rightBox .tabCon.active{
	display: block;
}
.mallModule4 .rightBox .pic{
	display: block;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 16px;
}
.mallModule4 .rightBox .text{
	font-size: 14px;
    padding: 10px 0 30px;	
	color: #fff;
	line-height: 1.6;
	text-align: center;	
}
.marginauto {
    margin: 0 auto;
    width: 1200px;
}
.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.mallModule5 .sell {
    justify-content: space-between;
    margin: 16px auto 40px auto;
    align-items: center;
    height: 420px;
}
.mallModule5 .sell .sell-item {
    width: 340px;
    height: 360px;
    box-shadow: 6px 6px 18px -2px rgba(224,224,224,0.5);
    padding: 0 30px;
    box-sizing: border-box;
    border-radius: 4px;
    transition: all .2s;
}
.mallModule5 .sell-item .img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 158px;
}
.mallModule5 .sell-tit {
    font-size: 20px;
    color: #3b426b;
    padding-bottom: 28px;
    text-align: center;
}
.mallModule5 .sell-subtit {
    font-size: 14px;
    color: #7D88A2;
    padding-bottom: 24px;
    line-height: 26px;
}
.mallModule5 .sell .sell-item:hover{
	width: 340px;
    height: 420px;
    background: linear-gradient(140deg,#64d8dd,#1bafe3);
}
.mallModule5 .sell .sell-item:hover p{
	color: #fff;
}
.mallModule.webModule3{

}
.mallModule.inCases{

}
.homeModule1{
	background-image: url(../img/homebg1.jpg);
	background-size: auto 100%;
	background-color: #f5f5f5;
}
.homeModule1 .list{
	margin-top: 44px;
}
.homeModule1 .list li{
	width: 23%;
	margin-right: 2.6%;
	border-radius: 3px;
	height: 410px;
	float: left;
	position: relative;
	background-color: #fff;
	top: 0;
}
.homeModule1 .list li:last-of-type{
	margin-right: 0;
}
.homeModule1 .list li .pic{
	border-radius: 3px 3px 0 0;
	width: 100%;
	height: 152px;
	background-image: url(../img/homeSprite.png);
}
.homeModule1 .list li .pic1{
	background-position: 0 0;
}
.homeModule1 .list li .pic2{
	background-position: -284px 0;
}
.homeModule1 .list li .pic3{
	background-position: -570px 0;
}
.homeModule1 .list li .pic4{
	background-position: -855px 0;
}
.homeModule1 .list li .text{
	padding:24px 20px;
}
.homeModule1 .list li .text .name{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
}
.homeModule1 .list li .text .pro{
	font-size: 12px;
	color: #999;
	line-height: 1.5;
	height: 64px;
	border-bottom:1px solid #eceff6;
	margin-bottom: 20px;
}
.homeModule1 .list li .text .icon{
	display: block;
	width: 18px;
	height: 14px;
	background-image: url(../img/homeSprite.png);
	float: left;
	margin-right: 10px;
}
.homeModule1 .list li .text .icon1{
	background-position: 0 -163px;
}
.homeModule1 .list li .text .icon2{
	background-position: -22px -163px;
}
.homeModule1 .list li .text .icon3{
	background-position: -44px -163px;
}
.homeModule1 .list li .text .icon4{
	background-position: -66px -163px;
}
.homeModule1 .list li .text .txt{
	font-size: 12px;
	color: #999;
	line-height: 14px;
	float: left;
}
.homeModule1 .list li .text .moreBrn{
	display: block;
	margin: 26px auto 0;
	background-image: -moz-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(109,186,248) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(109,186,248) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(60,167,252) 0%, rgb(109,186,248) 100%);
  	width: 114px;
  	height: 32px;
	border-radius: 16px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	line-height: 32px;
}
.homeModule1 .list li .text .moreBrn:hover{
	opacity: 0.6;
}
.homeModule1 .list li:hover{
	top: -10px;
}
.homeModule2{
	background-image: url(../img/homebg2.jpg);
	background-size: cover;
	-webkit-background-size: cover;
	padding-bottom: 200px;
}
.homeModule2 .index-solution-swi{
	margin-top: 84px;
}
.homeModule2 .index-solution-swi .swiper-container{
	width: 690px;
	float: right;
}
.homeModule2 .index-solution-swi .swiper-pagination{
	width: 468px;
	float: left;
	position: static;
}
.homeModule2 .index-solution-swi .swiper-container .objectCover{
	border-radius:10px;
}
.homeModule2 .index-solution-swi .swiper-container span{
	display: block;
	position: absolute;
	right: 30px;
	bottom: 40px;
	z-index: 10;
	font-size: 14px;
	color: #fc6b4e;
	background: #fff;
	height: 32px;
	line-height: 32px;
	border-radius: 16px;
	padding: 0 20px;
}
.homeModule2 .index-solution-swi .swiper-container span:hover{
	color: #fff;
	background: #fc6b4e;
}
.homeModule2 .index-solution-swi .swiper-pagination .swiper-pagination-bullet{
	float: left;
	width: 48%;
	opacity: 1;	
	height: 215px;
	border-radius: 10px;
	background: url(../img/homeSprite.png);
}
.homeModule2 .index-solution-swi .swiper-pagination .swiper-pagination-bullet:nth-of-type(1){
	margin-right: 4%;
	margin-bottom: 4%;
	background-position: 0 -191px;
}
.homeModule2 .index-solution-swi .swiper-pagination .swiper-pagination-bullet:nth-of-type(2){
	margin-bottom: 4%;
	background-position: -238px -191px;
}
.homeModule2 .index-solution-swi .swiper-pagination .swiper-pagination-bullet:nth-of-type(3){
	margin-right: 4%;
	background-position: -477px -191px;
}
.homeModule2 .index-solution-swi .swiper-pagination .swiper-pagination-bullet:nth-of-type(4){
	background-position: -721px -191px;
}
.homeModule2 .iconlist{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.homeModule2 .iconlist .item{
	display: block;
	width: 130px;
	margin-top: 72px;
	margin-right: 136px;
}
.homeModule2 .iconlist .item:nth-of-type(5n){
	margin-right: 0;
}
.homeModule2 .iconlist .item .icon{
	width: 130px;
	height: 116px;
	background: url(../img/homeSprite.png) no-repeat;
	margin-bottom: 30px;
}
.homeModule2 .iconlist .item .icon1{
	background-position: 0 -500px;
}
.homeModule2 .iconlist .item .icon2{
	background-position: -135px -500px;
}
.homeModule2 .iconlist .item .icon3{
	background-position: -270px -500px;
}
.homeModule2 .iconlist .item .icon4{
	background-position: -406px -500px;
}
.homeModule2 .iconlist .item .icon5{
	background-position: -542px -500px;
}
.homeModule2 .iconlist .item .icon6{
	background-position: 0 -629px;
}
.homeModule2 .iconlist .item .icon7{
	background-position: -135px -629px;
}
.homeModule2 .iconlist .item .icon8{
	background-position: -270px -629px;
}
.homeModule2 .iconlist .item .icon9{
	background-position: -406px -629px;
}
.homeModule2 .iconlist .item .icon10{
	background-position: -542px -629px;
}
.homeModule2 .iconlist .item .name{
	font-size: 19px;
	color: #333;
	line-height: 1.5;
	text-align: center;
	
}
.homeModule2 .iconlist .item:hover .icon{
	-webkit-animation: animateBeat 1s linear infinite;
    animation: animateBeat 1s linear infinite;
}
.homeModule2 .iconlist .item:hover .name{
	color: #3ca7fc;
}
.homeModule3 .list{
	margin-top: 64px;
	padding: 0 12px;
}
.homeModule3 .list li{
	float: left;
	width: 24%;
	margin-right: 1.25%;
	margin-bottom: 20px;
	position: relative;
	border: 8px solid #f0f0f1;
	border-radius: 3px;
}
.homeModule3 .list li:nth-of-type(4n){
	margin-right: 0;
}
.homeModule3 .list li .pic{
	display: block;
	width: 100%;
}
.homeModule3 .list li .more{
	display: flex;
	display: -webkit-flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	line-height: 1.5;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
}
.homeModule3 .list li .more .icon{
	display: none;
	width: 40px;
	height: 40px;
	margin: 0 auto 10px;
	background-image: url(../img/see.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #fff;
	border-radius: 50%;
}
.homeModule3 .list li:hover .more{
	opacity: 1;
}
.homeModule4{
	background-image: url(../img/homebg3.jpg);
	background-size: cover;
	-webkit-background-size: cover;
}
.homeModule4 .box{
	height: 508px;
	width: 100%;
	margin-top: 60px;
}
.homeModule4 .box .yuanlai{
	display: none;
}
.homeModule4 .box .xianzai{
	background: url(../img/bzBg.png) no-repeat center center;
	height: 520px;
	position: relative;
}
.homeModule4 .box .xianzai .bzIcon{
	display: block;
	width: 91px;
	height: 89px;
	margin: 0 auto;
	background: url(../img/sprite.png) no-repeat;
}
.homeModule4 .box .xianzai .bzIcon1{
	background-position: -759px -157px;
}
.homeModule4 .box .xianzai .bzIcon2{
	background-position: -860px -157px;
}
.homeModule4 .box .xianzai .bzIcon3{
	background-position: -956px -157px;
}
.homeModule4 .box .xianzai .bzIcon4{
	background-position: -1053px -157px;
}
.homeModule4 .box .xianzai .bzIcon5{
	background-position: -759px -258px;
}
.homeModule4 .box .xianzai .bzIcon6{
	background-position: -860px -259px;
}
.homeModule4 .box .xianzai .bzIcon7{
	background-position: -956px -259px;
}
.homeModule4 .box .xianzai .bzIcon8{
	background-position: -1053px -259px;
}
.homeModule4 .box .xianzai .name{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	margin-top: 14px;
	text-align: center;
	margin-bottom: 10px;
}
.homeModule4 .box .xianzai .bz{
	position: absolute;
}
.homeModule4 .box .xianzai .bz1{
	left: 0;
	bottom: 0;
}
.homeModule4 .box .xianzai .bz1 .proBox{
	width: 216px;
	height: 100px;
}
.homeModule4 .box .xianzai .bz2{
	left: 76px;
	top: 31px;
}
.homeModule4 .box .xianzai .bz2 .proBox{
	width: 263px;
	height: 69px;
}
.homeModule4 .box .xianzai .bz3{
	left: 296px;
	bottom: 14px;
}
.homeModule4 .box .xianzai .bz3 .proBox{
	width: 200px;
	height: 100px;
}
.homeModule4 .box .xianzai .bz4{
	left: 468px;
	top: 0;
}
.homeModule4 .box .xianzai .bz4 .proBox{
	width: 204px;
	height: 69px;
}
.homeModule4 .box .xianzai .bz5{
	left: 600px;
	bottom: 69px;
}
.homeModule4 .box .xianzai .bz5 .proBox{
	width: 217px;
	height: 69px;
}
.homeModule4 .box .xianzai .bz6{
	left: 751px;
	top: 16px;
}
.homeModule4 .box .xianzai .bz6 .proBox{
	width: 204px;
	height: 69px;
}
.homeModule4 .box .xianzai .bz7{
	left: 890px;
	bottom: 46px;
}
.homeModule4 .box .xianzai .bz7 .proBox{
	width: 217px;
	height: 69px;
}
.homeModule4 .box .xianzai .bz8{
	right: 0;
	top: 18px;
}
.homeModule4 .box .xianzai .bz8 .proBox{
	width: 204px;
	height: 69px;
}
.homeModule4 .box .xianzai .proBox{
	position: relative;	
}
.homeModule4 .box .xianzai .proBox .pro{
	border-radius: 100px;
	border: 2px solid #88c9fc;
	background: #fff;
	position: absolute;
	width: 100%;
	height: 100%;
	padding-top:12px;
	padding-left: 20px;
	font-size: 14px;
	color: #999;
	line-height: 1.5;
	left: 0;
	top: 0;
	z-index: 100;
	    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
}
.homeModule4 .box .xianzai .proBox .pro p{
	padding-left: 20px;
    line-height: 1.6;
}
.homeModule4 .box .xianzai .proBox .pro span{
	display: inline-block;
	margin:0 10px;
}
.homeModule4 .box .xianzai .proBox .whiteBg{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 100px;
	position: absolute;
	right: 5px;
	top: 5px;
}

.homeModule4 .box .xianzai .bz:hover .bzIcon{
	-moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
.homeModule4 .box .xianzai .bz:hover .proBox .pro{
	background: #3ca7fc;
	color: #fff;
}
.homeModule4 .box .modulePic{
	display: block;
	margin: 30px auto 0;
	max-width: 100%;
}
.homeModule4 .box .line{
	background-image: url(../img/line.png);
	width: 1200px;
	height: 38px;
	background-size: 100% 100%;
	margin: 4px 0;
}
.homeModule4 .box .icon{
	display: block;
	position: absolute;
	left: 50%;
	top: 8px;
	margin-left: -26px;
	background-image: url(../img/sprite.png);
	width: 53px;
	height: 53px;
	transform-origin: center;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -o-transform-origin: center;
    -ms-transform-origin: center;
}
.homeModule4 .box .icon1{
	background-position: -531px -18px;
}
.homeModule4 .box .icon2{
	background-position: -589px -18px;
}
.homeModule4 .box .icon3{
	background-position: -648px -18px;
}
.homeModule4 .box .icon4{
	background-position: -706px -18px;
}
.homeModule4 .box .icon5{
	background-position: -706px -81px;	
}
.homeModule4 .box .icon6{
	background-position: -647px -81px;	
}
.homeModule4 .box .icon7{
	background-position: -589px -81px;
}
.homeModule4 .box .icon8{
	background-position: -531px -81px;
}
.homeModule4 .box .item{
	width: 158px;
	height: 230px;
	background-image: url(../img/sprite.png);
	position: relative;
}
.homeModule4 .box .bottomLine .icon{
	top: auto;
	bottom: 8px;
}
.homeModule4 .box .item .name{
	text-align: center;
	font-size: 16px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
}
.homeModule4 .box .item .pro{
	text-align: center;
	font-size: 12px;
	color: #999;
	line-height: 1.8;
}
.homeModule4 .box .bottomLine{
	padding-right: 8px;
}
.homeModule4 .box .topLine .item{
	float: left;
	margin-right: 140px;
	padding-top: 80px;
	background-position: -776px -195px;
}
.homeModule4 .box .bottomLine .item{
	float: right;
	margin-left: 140px;
	padding-top: 40px;
	height: 234px;
	background-position: -977px -219px;
}
.homeModule4 .box .topLine .item2{
	margin-right: 130px;
}
.homeModule4 .box .bottomLine .item6{
	margin-left: 130px;
}
.homeModule4 .box .circle{
	position: absolute;
    left: 50%;
    bottom: -43px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
}
.homeModule4 .box .bottomLine .circle{
	bottom: auto;
	top: -43px;
}
.homeModule4 .box .circle div {
    border: 1px solid #ccc;
    border-radius: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    box-sizing: border-box;
}
.homeModule4 .box .circle .circle-a {
    -webkit-animation: ani-circle 3s ease-out forwards infinite;
    animation: ani-circle 3s ease-out forwards infinite;
}
.homeModule4 .box .circle .circle-b {
    -webkit-animation: ani-circle 3s .5s ease-out forwards infinite;
    animation: ani-circle 3s .5s ease-out forwards infinite;
}
.homeModule4 .box .circle .circle-c {
    -webkit-animation: ani-circle 3s 1s ease-out forwards infinite;
    animation: ani-circle 3s 1s ease-out forwards infinite;
}
.homeModule4 .box .circle .z-a {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    margin: -13px 0 0 -13px;
    /*border: 1px solid #e9e9e9;*/
}
.homeModule4 .box .circle .z-b {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3CA7FC;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -5px;
}
.homeModule4 .box .item:hover .icon{
	-moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
.homeModule4 .box .item:hover .z-b{
	width: 26px;
	height: 26px;
	margin: -13px 0 0 -13px;
}
@-webkit-keyframes ani-circle {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
    filter: alpha(opacity=0) \9
    ;
  }
  10% {
    opacity: 1;
    filter: alpha(opacity=100) \9
    ;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    filter: alpha(opacity=0) \9
    ;
  }
}
@keyframes ani-circle {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
    filter: alpha(opacity=0) \9
    ;
  }
  10% {
    opacity: 1;
    filter: alpha(opacity=100) \9
    ;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    filter: alpha(opacity=0) \9
    ;
  }
}
.homeModule5{
	background: #f8f8f8;
}
.homeModule5 .box .leftBox,.homeModule5 .box .rightBox{
	width: 50%;
	float: left;
  	box-shadow: 0px 0px 13px 0px rgba(4, 0, 0, 0.05);
	-webkit-box-shadow: 0px 0px 13px 0px rgba(4, 0, 0, 0.05);
	background-color: #fff;
	height: 576px;
	padding: 22px 20px;
}
.homeModule5 .box .title .name{
	display: block;
	font-size: 18px;
	color: #fff;
	text-align: center;
	width: 114px;
	height: 38px;
	line-height: 38px;
	border-radius: 3px;
	background-color: #3CA7FC;
	position: relative;
	float: left;
}
.homeModule5 .box .title .name:before{
	content: '+';
	width: 26px;
	height: 26px;
	color: #3CA7FC;
	font-size: 22px;
	line-height: 26px;
	text-align: center;
	border-radius: 50%;
	background-color: #f5f5f5;
	position: absolute;
	left: -13px;
	top: -13px;
	z-index: 10;
}
.homeModule5 .box .title .name:hover{
	opacity: 0.6;
}
.homeModule5 .box .title .more{
	float: right;
	font-size: 14px;
	color: #666;
	line-height: 38px;
}
.homeModule5 .box .title .more:hover{
	color: #3CA7FC;
}
.homeModule5 .box .leftList{
	padding-top: 10px;
}
.homeModule5 .box .leftList li{
	padding: 28px 0 20px;
	border-bottom: 1px solid #eeeeee;
	padding-left: 100px;
	position: relative;
}
.homeModule5 .box .leftList li .time{
	position: absolute;
	left: 0;
	top: 32px;
	background-image: url(../img/homeSprite.png);
	background-position: -1025px -250px;
	width: 74px;
	height: 66px;
	padding-right: 10px;
}
.homeModule5 .box .leftList li .time .day{
	font-size: 25px;
	color: #3CA7FC;
	line-height: 1.5;
	text-align: center;
}
.homeModule5 .box .leftList li .time .ym{
	font-size: 12px;
	color: #3CA7FC;
	line-height: 1.5;
	text-align: center;
}
.homeModule5 .box .leftList li .textBox{
	width: 100%;
	height: 105px;
	position: relative;
}
.homeModule5 .box .leftList li .textBox .tit{
	display: block;
	font-size: 20px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 10px;
}
.homeModule5 .box .leftList li .textBox .pro{
	display: block;
	font-size: 14px;
	color: #999;
	line-height: 1.5;
	height: 42px;
}
.homeModule5 .box .leftList li .textBox .more{
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	background-image: url(../img/homeSprite.png);
	background-position: -1025px -192px;
	width: 51px;
	height: 24px;
}
.homeModule5 .box .leftList li .textBox .more:hover{
	background-position: -1025px -216px;
}
.homeModule5 .box .leftList li .textBox .tit:hover{
	color: #3CA7FC;
}
.homeModule5 .box .leftList li .textBox .pro:hover{
	color: #3CA7FC;
}
.homeModule5 .box .rightList{
	border-top:1px solid #eee;
	border-left: 1px solid #eee;
	margin-top: 40px;
}
.homeModule5 .box .rightList li{
	width: 33.3%;
	float: left;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	height: 144px;
	padding-top: 32px;
}
.homeModule5 .box .rightList li .icon{
	margin: 0 auto 10px;
	width: 43px;
	height: 43px;
	transform-origin: center;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -o-transform-origin: center;
    -ms-transform-origin: center;
	background-image: url(../img/homeSprite.png);	
}
.homeModule5 .box .rightList li .icon1{
	background-position: 0 -438px;
}
.homeModule5 .box .rightList li .icon2{
	background-position: -51px -438px;
}
.homeModule5 .box .rightList li .icon3{
	background-position: -103px -438px;
}
.homeModule5 .box .rightList li .icon4{
	background-position: -154px -438px;
}
.homeModule5 .box .rightList li .icon5{
	background-position: -205px -437px;
}
.homeModule5 .box .rightList li .icon6{
	background-position: -256px -437px;
}
.homeModule5 .box .rightList li .icon7{
	background-position: -307px -437px;
}
.homeModule5 .box .rightList li .icon8{
	background-position: -358px -437px;
}
.homeModule5 .box .rightList li .icon9{
	background-position: -410px -437px;
}
.homeModule5 .box .rightList li .name{
	text-align: center;
	font-size: 14px;
	color: #333;
}
.homeModule5 .box .rightList li:hover{
  	box-shadow: 0px 0px 13px 0px rgba(4, 0, 0, 0.11);
	-webkit-box-shadow:0px 0px 13px 0px rgba(4, 0, 0, 0.11);
}
.homeModule5 .box .rightList li:hover .icon{
    -moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.homeModule6 .index-partner-swi{
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	position: relative;
	padding: 22px 0;
}
.homeModule6 .index-partner-swi .item{
	width: 240px;
	height: 74px;
	border-left: 1px solid #eee;
	position: relative;
}
.homeModule6 .index-partner-swi .item img{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.homeModule6 .index-partner-swi .item .graypic{
	opacity: 1;
}
.homeModule6 .index-partner-swi .swiper-slide{
	width: 240px;
}
.homeModule6 .index-partner-swi .item:hover .graypic{
	opacity: 0;
}
.homeModule6 .index-partner-swi .item:hover .pic{
	opacity: 1;
}
.fuchuang{
	position: fixed;
	right: 23px;
	bottom: 100px;
	z-index: 999;
}
.fuchuang .item{
	width: 120px;
	background-color: #fff;
  	box-shadow: 0px 1px 6px 0px rgba(10, 10, 10, 0.16);
	-webkit-box-shadow: 0px 1px 6px 0px rgba(10, 10, 10, 0.16);
	margin-bottom: 14px;
	padding:16px 0 14px;
	position: relative;
}
.fuchuang .item1 .icon{
	background-image: url(../img/sprite.png);
	width: 54px;
	height: 54px;
	background-position: -170px -51px;
	position: absolute;
	left: 50%;
	margin-left: -27px;
	top: -27px;
}
.fuchuang .item1 .name{
	text-align: center;
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	padding-top: 16px;
    padding-bottom: 6px;
}
.fuchuang .item1 .txt{
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 4px;
	font-weight: bold;
}
.fuchuang .zxzx{
	display: block;
	width: 120px;
	height: 36px;
	margin-bottom: 8px;
	line-height: 36px;
	text-align: center;
	border-radius: 3px;
	background-color: #e66f88;
	background-image: url(../img/sprite.png);
	background-position: -314px -135px;
	font-size: 14px;
	padding-left: 14px;
	color: #fff;
}
.fuchuang .zxzx:hover{
	opacity: 0.6;
}
.fuchuang #wx{
	display: block;
	width: 120px;
	height: 36px;
	margin-bottom: 8px;
	line-height: 36px;
	text-align: center;
	border-radius: 3px;
	background-color: #32cd99;
	background-image: url(../img/sprite.png);
	background-position: -358px -17px;
	font-size: 14px;
	padding-left: 14px;
	color: #fff;
	position: relative;
}
.fuchuang #wx .hEwm{
	position: absolute;
	right: 116px;
	width: 0;
	height: 0;
	height: 100px;
	background: #32cd99;
	top: 0;
	z-index: 100;
	overflow: hidden;
}
.fuchuang #wx:hover .hEwm{
	width: 100px;
	padding: 10px;
}
.fuchuang #wx .hEwm .ewmpic{
	display: block;
	width: 80px;
	height: 100%;
}
.fuchuang .item2 .ewmpic{
	display: block;
	width: 90px;
	margin: 0 auto;
}
.fuchuang .item2 .name{
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	text-align: center;
	margin: 4px 0 6px;
}
#backTop{
	width: 120px;
	height: 36px;
	margin: 0 auto;
	line-height: 36px;
	text-align: center;
	border-radius: 3px;
	background-color: #eda252;
	background-image: url(../img/sprite.png);
	background-position: -313px -87px;
    font-size: 14px;
    padding-left: 18px;
	cursor: pointer;
	color: #fff;
}
#backTop:hover{
	opacity: 0.6;
}
#tid{
	display: none;
}
.mofooter .footer{
	width: 100%;
	background-color: #333;
	text-align: center;
	padding: 20px 0 10px;
	margin-bottom: 50px;
}
.mofooter .footer .text{
	font-size: 12px;
	color: #bfbfc0;
	line-height: 1.5;
	margin-bottom: 10px;
	text-align: center;
}
.mofooter .footerFuchuang{
	width: 100%;
	height: 50px;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
}
.mofooter .footerFuchuang .item{
	width: 33.3%;
	float: left;
	height: 100%;
	text-align: center;
	font-size: 14px;
	color: #fff;
	position: relative;
	padding-left: 15px;
	line-height: 50px;
}
.mofooter .footerFuchuang .item .icon{
	display: inline-block;
	height: 15px;
	position: absolute;
	left: 15%;
    top: 17px;
}
.mofooter .footerFuchuang .item .icon img{
	display: block;
	height: 100%;
}
.mofooter .footerFuchuang .item.item1{
	background-color: #fff;
	color: #3CA7FC;
}
.mofooter .footerFuchuang .item.item1 .icon{
	left: 27%;
}
.mofooter .footerFuchuang .item.item2{
	background-color: #3179fc;
}
.mofooter .footerFuchuang .item.item3{
	background-color: #45abfb;
}
.FormAdd {
	margin: 50px 0;
}

.FormAdd .content {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 13px 0px rgba(69, 171, 251, 0.3);
	-webkit-box-shadow: 0px 0px 13px 0px rgba(69, 171, 251, 0.3);
	padding: 20px 25px;
}

.FormAdd .content .indexForm {
	display: block;
	width: 100%;
}

::-webkit-input-placeholder {
	color: #666;
}

:-moz-placeholder {
	color: #666;
}

::-moz-placeholder {
	color: #666;
}

:-ms-input-placeholder {
	color: #666;
}

.FormAdd .content .indexForm .inputLine {
	display: block;
	font-weight: normal;
	height: 55px;
	border-bottom: 1px solid #eee;
	line-height: 55px;
	font-size: 13px;
	color: #666;
}

.FormAdd .content .indexForm .formSub {
	display: block;
	width: 150px;
	height: 34px;
	line-height: 34px;
	font-size: 12px;
	border-radius: 17px;
	background-image: -moz-linear-gradient(90deg, rgb(49, 121, 252) 0%, rgb(69, 171, 251) 100%);
	background-image: -webkit-linear-gradient(90deg, rgb(49, 121, 252) 0%, rgb(69, 171, 251) 100%);
	background-image: -ms-linear-gradient(90deg, rgb(49, 121, 252) 0%, rgb(69, 171, 251) 100%);
	margin: 20px auto 0;
	color: #fff;

}

.FormAdd .content .indexForm .icon {
	display: block;
	width: 23px;
	height: 23px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	float: left;
	margin-top: 16px;
}

.FormAdd .content .indexForm .formInput,
.FormAdd .content .indexForm .formSelect {
	display: block;
	width: calc(100% - 25px);
	float: left;
	padding-left: 10px;
	height: 55px;
	line-height: 55px;
	font-size: 13px;
	background: transparent;
	border: none;
	color: #666;
}

.FormAdd .content .indexForm .formSelect {
	padding-left: 7px;
}

.FormAdd .content .indexForm .icon1 {
	background-image: url(../img/formicon1.png);
	;
}

.FormAdd .content .indexForm .icon2 {
	background-image: url(../img/formicon2.png);
	;
}

.FormAdd .content .indexForm .icon3 {
	background-image: url(../img/formicon3.png);
	;
}
.bottomLink{
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
}
.bottomLink .pic{
	display: block;
	width: 100%;
}
.bottomLink .closebtn{
	position: absolute;
	background: url(../img/closebtn.png);
	width: 29px;
	height: 29px;
	cursor: pointer;
	right: 450px;
    top: 68px;
}