* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	font-size: 12px;
	font-family: microsoft yahei, "微软雅黑";
	font-weight: 500;
	min-width: 1151px;
}

ul,
ol,
li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #666666;
}

img {
	border: none;
}

.clearfix:after {
	content: ".";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}

input::-webkit-input-placeholder {
	color: #999999;
	font-size: 12px;
}

textarea::-webkit-input-placeholder {
	color: #999999;
	font-size: 12px;
}


/*title的进场动画*/

.title {
	position: absolute;
	text-align: center;
	width: 100%;
}

.title h5 {
	color: #333333;
}

.title,
.title h5,
.title p {
	opacity: 0;
	height: 0;
	top: 50px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.title p {
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.animation-show p {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-ms-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}

.animation-show {
	opacity: 1;
	height: auto;
	top: 0;
}

.animation-show p,
.animation-show h5 {
	height: auto;
	opacity: 1;
}


/*两个展示列的进场时间*/

.three-box-main,
.customer-list,
.three-box-main dl {
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.three-box-main dl:nth-of-type(2){
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
	-ms-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
}
.three-box-main dl:nth-of-type(3){
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-ms-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}

/*全局样式*/

.container {
	width: 100%;
	min-width: 1200px;
	height: auto;
}

header {
	width: 100%;
	height: 60px;
	background-color: #2b4b7e;
	border-bottom: 1px solid #415d8b;
}

header .logo {
	width: 107px;
	height: auto;
	margin: 11px 0 0 135px;
}

.banner-bj {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 84px;
}

.banner-bj-img {
	width: 100%;
	height: auto;
}

.banner-text {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.banner-text p,
.banner-text h5 {
	color: #ffffff;
}
.banner-text{
	top: .1rem;
}
.banner-text h5 {
	font-size: 50px;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.banner-text p {
	font-size: 20px;
	font-weight: 300;
	color: rgba(255, 255, 255, .95);
	letter-spacing: 4px;
}

.banner-text p b {
	font-weight: 500;
	color: rgba(255, 255, 255, 1);
}


/*新旧手机动画循环*/

.animation_box {
	position: absolute;
	bottom: 0;
	width: .85rem;
	height: auto;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.animation_box>img{
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
}
.img-box {
	position: relative;
	left: 0;
	width: .68rem;
	height: auto;
	margin-left: .085rem;
	overflow: hidden;
}

.img-box>div img {
	display: inline-block;
	width: .68rem;
}

.old-img {
	position: absolute;
	z-index: 2;
	left: 0;
	width: 0;
	overflow: hidden;
	-webkit-animation: mymove 5s infinite linear;
	-moz-animation: mymove 5s infinite linear;
	-o-animation: mymove 5s infinite linear;
	animation: mymove 5s infinite linear;
}
.new-img {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.huagan{
	position: absolute;
	left: 0;
	bottom: .08rem;
	z-index: 3;
	width: .05rem;
	margin-left: -.025rem;
	-webkit-animation: mymove-gan 5s infinite linear;
	-moz-animation: mymove-gan 5s infinite linear;
	-o-animation: mymove-gan 5s infinite linear;
	animation: mymove-gan 5s infinite linear;
}
@keyframes mymove-gan {
	0 {
		left: 0;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 0;
	}
}

@-webkit-keyframes mymove-gan
/*Safari and Chrome*/

{
	0 {
		left: 0;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 0;
	}
}
@keyframes mymove {
	0 {
		width: 0;
	}
	50% {
		width: 100%;
	}
	100% {
		width: 0;
	}
}

@-webkit-keyframes mymove
/*Safari and Chrome*/

{
	0{
		width: 0;
	}
	50% {
		width: 100%;
	}
	100% {
		width: 0;
	}
}
section {
	position: relative;
	width: 100%;
	height: auto;
}

.three-box {
	position: relative;
	width: 1151px;
	height: 429px;
	margin: 0 auto;
	margin-bottom: 64px;
}

.three-box-text {
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
}

.three-box-text h5 {
	font-size: 30px;
	font-weight: 500;
	color: #333333;
	margin-bottom: 22px;
}

.three-box-text p {
	font-size: 18px;
	color: #416fb6;
}

.three-box-text p i {
	display: inline-block;
	width: 2px;
	background-color: #416fb6;
	height: 10px;
	position: relative;
}

.three-box-main {
	position: relative;
	top: 80px;
	opacity: 0;
	height: 0;
	padding-top: 178px;
	overflow: hidden;
}

.animation-bot-show {
	top: 0;
	opacity: 1;
	height: auto;
}
.animation-bot-show dl{
	margin-top: 0!important;
}
.three-box-main dl {
	display: inline-block;
	float: left;
	width: 360px;
	padding: 46px 0 37px 0;
	text-align: center;
	background-color: #f1f5fb;
}
.three-box-main dl:nth-of-type(2) {
	margin: 60px 32px 0 32px;
}
.three-box-main dl:nth-of-type(3){
	margin-top: 90px;
}
.three-box-main dl dt {
	width: auto;
	margin-bottom: 28px;
}

.three-box-main dl dd p {
	font-size: 18px;
	margin-bottom: 8px;
	color: #2c323b;
	font-weight: 500;
}

.three-box-main dl dd p b {
	font-weight: 600;
	color: #2c323b;
	font-size: 18px;
}

.three-box-main dl dd p b span {
	font-size: 16px;
	font-weight: 600;
	position: relative;
	top: -1px;
}

.three-box-main dl dd span {
	font-size: 14px;
	color: #2c323b;
	font-weight: 500;
}

.tab-box {
	position: relative;
	width: 100%;
	background: #fbfbfb;
	border-bottom: 8px solid #fbfbfb;
}

.tab-box .title {
	position: absolute;
	margin-top: 60px;
}

.tab-box .title h5 {
	width: 100%;
	font-size: 30px;
	text-align: center;
	font-weight: 500;
	color: #333333;
}

.tab-box-main {
	width: 1151px;
	margin: 0 auto;
	padding-top: 150px;
	overflow: hidden;
}

.left-nav {
	float: left;
	width: 378px;
	height: auto;
	position: relative;
	z-index: 2;
}

.right-main {
	position: relative;
	float: right;
	width: 768px;
	height: 700px;
	background: #ffffff;
}

.left-nav p,
.right-main>p {
	width: 100%;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	color: #ffffff;
	text-align: center;
	background-color: #416fb6;
}

.right-main>p {
	text-align: center;
	padding-left: 0;
}

.left-nav ul li {
	position: relative;
	width: 100%;
	height: 158px;
	padding: 34px 18px;
	font-size: 16px;
	color: #2c323b;
	line-height: 30px;
	background: #f2f5f9;
	margin-top: 5px;
	font-weight: 300;
}
.left-nav ul li b{
	font-weight: 500;
}
.left-nav ul li:last-child {
	margin-bottom: 5px;
}

.left-nav ul li.active {
	color: #ffffff;
	background-color: #416fb6;
}

.left-nav ul li.active:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-width: 12px 0 12px 12px;
	border-style: solid;
	border-color: transparent transparent transparent #416fb6;
	/*透明 透明 透明 黄*/
	position: absolute;
	right: -12px;
	top: 50%;
	margin-top: -8px;
}


/*右侧品牌解决方案*/

.right-main-content {
	width: 100%;
	padding: 60px;
	background: #ffffff;
	text-align: center;
}

.right-main-content h6 {
	position: relative;
	z-index: 2;
	color: #333333;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 500;
}

.right-main-content p {
	position: relative;
	z-index: 2;
	color: #333333;
	font-size: 14px;
	font-weight: 300;
}

.right-main-content img {
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.right-main-content>div {
	display: none;
}

.right-main-content>div:nth-of-type(1) {
	display: block;
}

.last-content {
	position: relative;
	width: 100%;
	height: 650px;
	padding: 195px 0 50px 0;
	margin: 50px auto 0 auto;
	background-color: #fbfbfb;
}

.title-5 {
	margin-top: 60px
}

.title-5 h5 {
	font-size: 30px;
	margin-bottom: 12px;
	font-weight: 500;
}

.title-5 p {
	font-size: 18px;
	color: #3f6eb9;
	margin-bottom: 58px;
}

.customer-list {
	position: relative;
	width: 1151px;
	margin: 0 auto;
	margin-top: 15px;
}
.customer-list li {
	position: relative;
	float: left;
	width: 375px;
	height: 190px;
	margin: 0 13px 16px 0;
	opacity: 0;
}
.customer-list li.left{
	left: -40px;
}
.customer-list li.right{
	left: 40px;
}
.animation-left-show li.left{
	left: 0;
	opacity: 1;
}
.animation-left-show li.right{
	left: 0;
	opacity: 1;
}
.animation-left-show li:nth-of-type(3),.animation-left-show li:nth-of-type(4){
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.animation-left-show li:nth-of-type(2),.animation-left-show li:nth-of-type(5){
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.animation-left-show li:nth-of-type(1),.animation-left-show li:nth-of-type(6){
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
	-ms-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
}
.animation-left-show li.right{
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-ms-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s;
}
/*.
.animation-left-show ul li{
	left: 0;
}*/
.last-content ul li:nth-of-type(3),
.last-content ul li:nth-of-type(6) {
	margin-right: 0;
}


/*form表单*/

.turn-content {
	position: relative;
	width: 1151px;
	height: auto;
	padding-top: 150px;
	margin: 0 auto;
}

.show-text {
	position: absolute;
	width: 100%;
	margin-top: 60px;
}

.show-text h5 {
	text-align: center;
	font-size: 30px;
	font-weight: normal;
}

.left-show-img {
	width: 622px;
	height: 499px;
	padding-top: 30px;
	float: left;
}


/*来去电页面*/

.left-show-img>div {
	position: relative;
}

.turn_img1 {
	text-align: center;
}

.turn_imgtop {
	position: absolute;
	display: block;
	width: 240px;
	padding: 0 8px;
	top: 124px;
	left: 50%;
	margin-left: -120px;
}
.turn_img2{
	margin-left: -131px;
}
.turn_imgtop span,
.turn_imgtop p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.turn_img_three>div {
	top: 0;
}
.turn_img2 {
	-webkit-transform: scale(.8);
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	-o-transform: scale(.8);
	transform: scale(.8);
}

.xian_cenetr {
	position: relative;
	font-size: 10px;
	top: -2px;
}

.turn_img1_name {
	font-size: 14px;
	color: #fff;
	width: 100%;
	display: block;
	height: 20px;
	line-height: 20px;
}

.turn_img1_ming {
	display: inline-block;
	height: 20px;
	padding: 2px 0 0 0;
	width: auto;
	max-width: 150px;
	font-size: 16px;
}

.turn_img1_dec {
	transform: scale(.95);
	opacity: .8;
	position: relative;
	top: -2px;
	font-weight: 300;
}
.turn_img2_dec,.yl_three_des{
	font-weight: 300;
}
.turn_img1_number {
	font-size: 12px;
	color: #6a7d89;
	margin-top: 7px;
}

.turn_img2_name {
	color: #000;
	line-height: 14px;
	text-align: left;
	padding-left: 47px;
}

.turn_img2_number {
	color: #686868;
	text-align: left;
	text-align: left;
	padding-left: 46px;
}

.yl_three_name {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}
/*手机图片第三张样式修改*/
.turn_img_three>div p,.turn_img_three>div p span{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #333333;
}
.turn_img_three{
	position: relative;
}
.turn_img_three>div{
	position: absolute;
	width: 228px;
	height: 388px;
	left: 313px;
	top: 68px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	overflow-y: auto;
}
.yl_three_name{
	height: 65px;
	line-height: 65px;
	background:#fff url(../image/images/inside/turn3_logo_03.png) no-repeat 10px center;
	padding-left: 60px;
	border-bottom: 1px solid #f8f8f8;
	margin-bottom: 5px;
	max-width:230px;
	padding-right: 30px;
}
#list_num{
	width: 100%;
	background: #fff;
}
.text_number{
	background:url(../image/images/inside/icon_duanxin.png) no-repeat left center;
	background-position-x:171px ;
	padding: 3px 0 3px 10px;
	border-bottom: 1px solid #f8f8f8;
	max-width:230px;
	padding-right: 60px;
}
.text_number span{
	display: block;
	padding-bottom: 3px;
}
.text_number span:nth-of-type(2){
	color:#666666;
}
.address{
	max-width:220px;
	padding: 5px 30px 5px 10px;
	box-sizing: border-box;
	height: 45px;
	line-height: 35px;	
	background: #fff;
	background:#ffffff url(../image/images/inside/icon_address.png) no-repeat left center;
	background-position-x:182px ;
	font-size: 12px;
	margin-bottom: 5px;
	border-bottom: 1px solid #f8f8f8;
}
.yl_three_number {
	display: block;
	font-weight: bold;
	width: 180px;
}

.yl_three_des {
	display: block;
	-webkit-transform: scale(.9);
	-moz-transform: scale(.9);
	-ms-transform: scale(.9);
	-o-transform: scale(.9);
	transform: scale(.9);
	margin-left: -4px;
}
.center-nav {
	width: 78px;
	float: left;
	margin: 87px 35px 0 35px;
}

.center-nav ul li {
	margin-bottom: 40px;
	text-align: center;
}

.center-nav .icon {
	width: 60px;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 14px;
	background-position-x: 0;
	background-position-y: 60px;
	background-size: 100% auto;
}

.center-nav p {
	font-size: 14px;
	color: #333333;
}

.center-nav p {
	color: #cdd2d8;
}

.center-nav li.over_active .icon {
	background-position-y: 0;
}

.center-nav li.over_active p {
	color: #333333;
}

.center-nav li:nth-of-type(1) .icon {
	background-image: url(../image/images/inside/icon_laidian.png);
}

.center-nav li:nth-of-type(2) .icon {
	background-image: url(../image/images/inside/icon_tonghuajilu.png);
}

.center-nav li:nth-of-type(3) .icon {
	background-image: url(../image/images/inside/icon_xiangqingye.png);
}

.right-show-form {
	float: left;
	width: 380px;
	height: auto;
	padding: 30px 18px;
	background-color: #ffffff;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.02);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.right-show-form label {
	display: block;
	padding: 13px 0;
	font-size: 14px;
	color: #333333;
	font-weight: 500;
}

.right-show-form label:nth-of-type(1) {
	padding-top: 0;
}

.right-show-form input {
	width: 100%;
	padding: 12px;
	border: 1px solid #e7e9ed;
	border-radius: 5px;
	outline: 0;
}


/*多选框*/

.comments {
	width: 100%;
	display: inline-block;
	resize: none;
	outline: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
	padding-top: 6px;
	padding-left: 12px;
	overflow-x: hidden;
	line-height: 27px;
	border: 1px solid #e7e9ed;
	border-radius: 5px;
}

.right-show-form label span.errormsg {
	color: #f12d26;
	margin-left: 10px;
	position: relative;
	display: none;
}
.right-show-form label span.errormsg_show{
	display: inline-block;
}
.right-show-form textarea.error,
.right-show-form input.error{
 	border: 1px solid #f12d26;
 }
.turn_form_btn {
	display: block;
	width: 100%;
	padding: 15px 0;
	margin-top: 20px;
	background: #3f6eb9;
	color: #ffffff;
	border: 0;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
}
.turn_form_btn:active{
	background: #335b9a;
	outline: none;
}
.turn_form_btn:focus{
	outline: none;
}
/*弹窗*/
.alert_success {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	background: rgba(0, 0, 0, .7);
	z-index: 120;
}
.alert_success>div{
	width: 600px;
	margin: 15% auto;
	position: relative;
}
.alert_success img.tc_box {
	width: 100%;
}
.alert_success>div{
	width: 300px;
	padding: 40px 10px 25px 10px;
	background:#fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.alert_success>div img.tc_box{
	display: block;
	width: 250px;
	margin: 0 auto;
}
.alert_success>div img.close-btn{
	position: absolute;
	top:15px;
	right:15px;
	cursor: pointer;
}
.alert_success>div h5{
	text-align: center;
	font-size: 18px;
	padding: 15px 0;
	font-weight: 500;
}
.alert_success>div p{
	padding:0 25px;
	text-align: center;
	color:#999999;
	letter-spacing: 1px;
	line-height: 18px;
	font-size: 14px;
}
.alert_success{
	background: rgba(0, 0, 0, .5);
}


/*底部样式*/

#footer {
	width: 100%;
	min-height: 280;
	background-color: #FFFFFF;
}

#footer .wrap4 {
	color: #bdbdbd;
	width: 1000px;
	margin: 0 auto;
}

#footer .wrap4 a {
	text-decoration: none;
	color: #000;
	font-family: "微软雅黑";
	font-size: 12px;
}

#footer .wrap4 a span {
	display: block;
	margin-top: -10px;
}

#footer .wrap4 a:hover {
	text-decoration: underline;
}

.footer_11 {
	width: 100%;
	overflow: hidden;
}

.footer_11 h3 {
	line-height: 30px;
}

#footer_1 {
	width: 210px;
	margin-left: 35px;
	float: left;
}

#footer_1 .col_1 {
	margin-top: 26px;
	display: inline-block;
}

#footer_1 .col_1 h3 {
	margin-left: -18px;
	margin-bottom: 27px;
	font-size: 12px;
	padding-left: 13px;
}

#footer_1 .android {
	height: 55px;
}

#footer_1 .iphone {
	height: 55px;
}

#footer_2 {
	float: left;
	margin-left: 20px;
}

#footer_2 li {
	line-height: 28px;
	margin-bottom: 5px;
}

#footer_2 .col_2 {
	width: 130px;
	margin-top: 34px;
	float: left;
}

#footer_2 .first a {
	color: #f82e25;
	font-size: 14px;
	line-height: 31px;
	font-weight: 500;
}

#footer_2 .col_3 {
	width: 130px;
	margin-top: 34px;
	float: left;
}

#footer_2 .col_4 {
	width: 130px;
	margin-top: 34px;
	float: left;
}

#footer_2 .col_5 {
	width: 130px;
	margin-top: 34px;
	float: left;
	margin-left: 32px;
}

.weixin {
	width: 135px;
	margin-top: 38px;
	float: right;
}

.weixin h5 {
	color: #ff4400;
	font-size: 14px;
	margin-bottom: 15px;
}

.footer_22 {
	width: 100%;
	height: 34px;
	overflow: hidden;
}

.bottom {
	width: 750px;
	height: 100%;
	line-height: 34px;
	margin: 0 auto;
}

.bottom li {
	float: left;
}

.bottom li img {
	width: 80px;
	height: 24px;
	margin-left: 8px;
	padding-top: 5px;
}

.bottom h5 {
	font-size: 12px;
	color: #cdcdcd;
}

#footer .wrap4 h5 a {
	font-size: 12px;
	color: #cdcdcd;
}


.xt-btn{
	position: fixed;
	display: block;
	z-index: 55;
	width: 70px;
	height: 158px;
	left: 50%;
	margin-left: 590px;
	bottom: 40px;
	background: url(../image/images/xt-btn.png) no-repeat bottom;
	background-size:100% auto;
}
.xt-btn img{
	width: 100%;
}
.xt-btn:hover{
	background: url(../image/images/xt-btn-hover.png) no-repeat bottom;
	background-size:100% auto;
}