
/*		Fonts		*/
@font-face {
    font-family: 'open_regular';
    src: url('../fonts/opensans-regular.eot');
    src: url('../fonts/opensans-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-regular.woff') format('woff'),
         url('../fonts/opensans-regular.ttf') format('truetype'),
         url('../fonts/opensans-regular.svg#LatoRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'open_bold';
    src: url('../fonts/opensans-bold.eot');
    src: url('../fonts/opensans-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-bold.woff') format('woff'),
         url('../fonts/opensans-bold.ttf') format('truetype'),
         url('../fonts/opensans-bold.svg#LatoRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'open_semibold';
    src: url('../fonts/opensans-semibold.eot');
    src: url('../fonts/opensans-semibold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/opensans-semibold.woff') format('woff'),
         url('../fonts/opensans-semibold.ttf') format('truetype'),
         url('../fonts/opensans-semibold.svg#open_sanssemibold') format('svg');
    font-weight: normal;
    font-style: normal;

}









/*		General CSS		*/
body{
	background: #fff;
	padding: 0px;
	margin: 0px;
	font-family: "Microsoft YaHei", Arial, sans-serif;
}

a:focus{
	color: #fff!important;
	text-decoration: none!important;
}
a:hover{
	text-decoration: none;
}
.container{
	max-width: 1130px;
}


.copyrights{
	text-indent:-9999px;
	height:0;
	line-height:0;
	font-size:0;
	overflow:hidden;
}







/*		Header 		*/

header{
	position: relative;
	display: block;
	width: 100%;
	height: 70px;
	z-index: 99;
	background-color: #fff;
	/*background-color: #E62020;*/

	/*background-image: -moz-linear-gradient(bottom, #E62020 0%, #E62020 0.27%, #E62020 99.46%, #E62020 100%);*/
	/*background-image: -o-linear-gradient(bottom, #E62020 0%, #E62020 0.27%, #E62020 99.46%, #E62020 100%);*/
	/*background-image: -webkit-linear-gradient(bottom, #E62020 0%, #E62020 0.27%, #E62020 99.46%, #E62020 100%);*/
	/*background-image: linear-gradient(bottom, #E62020 0%, #E62020 0.27%, #E62020 99.46%, #E62020 100%);*/
}

header .logo{
	display: table-cell;
	margin: 12px 90px 0 0;
	background: url(../img/logo.jpg) no-repeat 0px 0px;
	background-size: 50px 50px;
	padding-left: 70px;
	height: 50px;
	font-size: 28px;color: #E62020;font-weight: bold;
}
header .logo  a{
	color: #E62020;
}
header .logo  a:hover{
	color: #E62020;
	text-decoration: none;
}
header .burger_icon{
	display: none;
	float: right;
	background: #ffffff;
	padding: 5px 10px;
	text-transform: uppercase;

	color: #E62020;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 14px;

	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;

	margin: 25px 10px 0 0;
}

header .burger_icon:hover{
	cursor: pointer;
}

header .burger_icon.active{
	background: #E62020;
	color: #ffffff;
}

header nav{
	margin-top: 22px;
	display: table-cell;
}

header nav li{
	float: left;
	margin-left: 40px;
}

header nav li:first-child{
	margin: 0;
}

header nav li a{
	color: #666;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 16px;

	transition: all .2s linear;
	-o-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
}
header nav li a.btn{
	border: solid 1px #ff3b30;
	color: #ff3b30;
	padding: 4px 20px;
	margin-top: -5px;
}

header nav li a:hover,
header nav li a:focus{
	text-decoration: none;
	color: #E62020!important;
}

header .social{
	display: table-cell;
	margin-top: 25px;
}

header .social li{
	float: left;
	margin-left: 20px;
}

header .social li:first-child{
	margin: 0;
}










/*		Hero section 		*/

.hero{
	display: block;
	position: relative;
	width: 100%;
	height: 420px;
	background: url('/resources/img/bg.jpg') no-repeat center center;
	background-color: rgb(207,4,17);
	background-size: auto;
}

.hero .caption{
	position: absolute;
	max-width: 550px;
	margin-left: 180px;
	top: 50%;
	transform:translate(0,-50%);
	-webkit-transform:translate(0,-50%);
	-moz-transform:translate(0,-50%);
	-o-transform:translate(0,-50%);
	filter:none;
}

.hero .caption h1{
	color: #ffb928;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 34px;
	font-weight: bold;
	word-break: break-word;
}

.hero .caption p{
	color: #ffb928;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 17px;
	line-height: 30px;
	margin: 25px 0 35px 0;
}

#slider .caption p{
	margin: 0;
}

a.app_store_btn{
	display: inline-block;
	text-decoration: none;
	padding: 16px 40px;
	border: 0px solid #525252;
	-moz-border-radius: 32px;
	-webkit-border-radius: 32px;
	border-radius: 32px;
	margin: 20px 20px 10px 0;
	background-color: #ea574c;
	color: #eee;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 16px;
	width: 280px;
	text-align: center;
}
a:hover.app_store_btn{
	color: #fff;
	background-color: #e1330f;
}

.play_icon,
.android_icon,
.mobile_icon,
.iphone_icon{
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: middle;
	margin-right: 20px;
	margin-bottom: 3px;
}

.mobile_icon{
	display: inline-block;
	width: 22px;
	height: 22px;
	vertical-align: middle;
	margin-right: 20px;
	margin-bottom: 3px;
}

.play_icon{
	background: url('../img/play.png') no-repeat;
}

.iphone_icon{
	background: url('../img/iphone_app.png') no-repeat;
}

.android_icon{
	background: url('../img/android_app.png') no-repeat;
}
.mobile_icon{
	background: url('../img/mobile1.png') no-repeat;
}


a.app_store_btn:hover,
a.app_store_btn:focus{
	border-color: #E92727;
	color: #fff!important;
}

a.app_store_btn:hover .play_icon{
	background: url('../img/play_hover.png') no-repeat;
}

a.app_store_btn:hover .iphone_icon{
	background: url('../img/iphone_app_hover.png') no-repeat;
}

a.app_store_btn:hover .android_icon{
	background: url('../img/android_app_hover.png') no-repeat;
}
a.app_store_btn:hover .mobile_icon{
	background: url('../img/mobile.png') no-repeat;
}
a.app_link{
	text-transform: lowercase;
	letter-spacing: .5px;
	color: #636363;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 16px;
}

a.app_link:hover,
a.app_link:focus{
	text-decoration: none;
	color: #E92727!important;
}

a.app_store_btn,
.play_icon,
.iphone_icon,
.android_icon,
a.app_link{
	transition: all .2s linear;
	-o-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
}


.about_video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, .8);
    display: none;
}

.about_video iframe{
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.close_video{
    text-decoration: none;
    position: absolute;
    width: 38px;
    height: 38px;
    top: 50px;
    right: 50px;
    background: url('../img/close_video.png') no-repeat;
    z-index: 9999;
}











/*		Featured on section 		*/

.featured_on{
	width: 100%;
	padding: 25px 0;
	background: #f3f3f3;
}

.featured_on ul{
	margin: 0;
}

.featured_on li{
	position: relative;
	height: 100%;
}

.featured_on li:first-child{
	margin-left: 0;
}










/*		About section 		*/

.about{
	padding: 100px 0;
}

.about .iphone{
	max-width: 339px;
	position: relative;
	display: inline-block;
	text-align: center;
}

.about .iphone img{
	width: auto;
	height: auto;
}

.linian .features_list{
	margin-left: 50px;
	margin-top: 20px;
}

.linian .features_list h1{
	color: #000;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 30px;
	/*font-weight: bold;*/
	line-height: 46px;
	margin: 0 0 20px 0;
	word-break: break-word;
}

.linian .features_list p{
	color: #999;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 16px;
	margin-bottom: 45px;
	line-height: 32px;
}

.linian .features_list ul{
	margin-bottom: 30px;
}

.linian .features_list ul li{
	display: block;
	position: relative;
	color: #444;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 16px;
	line-height: 54px;
	text-indent: 25px;

	transition: all .2s linear;
	-o-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
    padding-left:30px;
     
    
}

.linian .features_list ul li.camera_icon{
	background: url('../img/icon1.png') no-repeat;
    background-size:20px;
    background-position:11px;
}

.linian .features_list ul li.video_icon{
	background: url('../img/icon2.png') no-repeat;
	background-position:11px; 
}

.linian .features_list ul li.eye_icon{
	background: url('../img/icon3.png') no-repeat;
	background-position:11px; 
}
.linian .features_list ul li.pic_icon{
	background: url('../img/icon4.png') no-repeat;
	background-position:11px; 
}

.linian .features_list ul li.loc_icon{
	background: url('../img/icon5.png') no-repeat;
	background-position:11px;
}

.linian .features_list ul li span{
	display: inline-block;
}










/*		App features 		*/

.app_features{
	width: 100%;
	padding: 60px 0 20px 0;
	background-color: #fff;
	/*background-image: -moz-linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);*/
	/*background-image: -o-linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);*/
	/*background-image: -webkit-linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);*/
	/*background-image: linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);*/
}

.app_features h1{
	color: #000;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 36px;
	word-break: break-word;
	text-align: center;
}

.app_features p{
	color:#999;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 15px;
	margin: 16px 0 80px 0;
	text-align: center;
	line-height: 28px;
}
.app_features h2{
	font-size: 28px;
	color: #000;
	margin: 20px 0;
}
.app_features .details{
	margin-bottom: 50px;
	padding: 0 30px;
}
.app_features img{
	width: 120px;
}










/*		Testimonials section 		*/

.testimonials{
	padding: 100px 0;
}

.testimonials .testimonials_list{
	max-width: 820px;
	margin: 0 auto;
}

.testimonials .testimonials_list blockquote{
	border: 0;
	padding: 0;
	margin: 0;
}

.testimonials .testimonials_list blockquote p{
	color: #757171;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 18px;
	margin-bottom: 50px;
	line-height: 36px;
}

.testimonials .testimonials_list blockquote footer:before,
.testimonials .testimonials_list blockquote footer:after{
	content: none;
}

.testimonials .testimonials_list blockquote .author,
.testimonials .testimonials_list blockquote .job{
	display: block;
}

.testimonials .testimonials_list blockquote .author{
	color: #4b4848;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 16px;
	margin-bottom: 10px; 
}

.testimonials .testimonials_list blockquote .job{
	color: #6e6d6d;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 14px;
}

#tslider{
	text-align: center!important;
	position: relative!important;
}

#tslider .owl-controls{
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 40px;
	padding: 0;
}

#tslider .owl-controls .owl-prev,
#tslider .owl-controls .owl-next{
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url('../img/nav_arrow.png') no-repeat;
	text-indent: -200px;
	overflow: hidden;

	transition: all .2s linear;
	-o-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

#tslider .owl-controls .owl-prev{
	background-position: 0 0;
}
#tslider .owl-controls .owl-next{
	background-position: -33px 0;
	margin-left: 40px;
}

#tslider .owl-controls .owl-prev:hover,
#tslider .owl-controls .owl-next:hover{
	cursor: pointer;
	background: url('../img/nav_arrow_hover.png') no-repeat;
}

#tslider .owl-controls .owl-prev:hover{
	background-position: 0 0;
}
#tslider .owl-controls .owl-next:hover{
	background-position: -33px 0;
}










/*		Subscription section 		*/

.sub_box{
	width: 100%;
	padding: 100px 0;
	text-align: center;
	background-image: -moz-linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);
	background-image: -o-linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);
	background-image: -webkit-linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);
	background-image: linear-gradient(bottom, #EA3131 0%, #EA3131 0.27%, #ED4747 99.46%, #ED4747 100%);
}

.sub_box .cta_text{
	color: #fff;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 20px;
	margin-bottom: 50px;
}

.sub_box #mc-email{
	width: 300px;
	height: 50px;
	padding: 0 20px;
	background-color: #fff;
	border: 0;
	outline: none;
	margin-right: -4px;
	color: #E62020;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 13px;

		border-radius: 4px;
	-o-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	

	
}
.sub_box #mc-name{
	width: 300px;
	height: 50px;
	padding: 0 20px;
	background-color: #fff;
	border: 0;
	outline: none;
	margin-right: -4px;
	color: #E62020;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 13px;

		border-radius: 4px;
	-o-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	

	
}
.sub_box #mc-phone{
	width: 300px;
	height: 50px;
	padding: 0 20px;
	background-color: #fff;
	border: 0;
	outline: none;
	margin-right: -4px;
	color: #E62020;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 13px;

	border-radius: 4px;
	-o-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	
	
}

.sub_box #mc-dept{
	width: 300px;
	height: 50px;
	padding: 0 20px;
	background-color: #fff;
	border: 0;
	outline: none;
	margin-right: -4px;
	color: #E62020;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 13px;

		border-radius: 4px;
	-o-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	

	
}
.sub_box #mc_submit{
	width: 60px;
	height: 50px;

	border-top-right-radius: 2px;
	-o-border-top-right-radius: 2px;
	-moz-border-top-right-radius: 2px;
	-webkit-border-top-right-radius: 2px;

	border-bottom-right-radius: 2px;
	-o-border-bottom-right-radius: 2px;
	-moz-border-bottom-right-radius: 2px;
	-webkit-border-bottom-right-radius: 2px;

	background-color: #fff;
	border: 0;
	outline: none;
	margin-right: -4px;
	text-align: center;
}

.sub_box #mc_submit i{
	display: inline-block;
	width: 20px;
	height: 14px;
	vertical-align: middle;
}

#mc_submit i.icon{
	background: url('../img/sub_icon.png') no-repeat;
}

#mc_submit i.loading{
	background: url('../img/loading.gif') no-repeat;
}

.sub_box .message{
	display: block;
	text-align: center;
	color: #fff;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 13px;
	text-transform: lowercase;
	margin-top: 20px;
}

.sub_box #error_msg,
.sub_box #success_msg{
	display: none;
}










/*		Footer 		*/

footer{
	padding: 50px 0 60px 0;
	text-align: center;
}

footer .app_platform li{
	margin: 0 0 0 60px;
	list-style: none;
	float: left;
}
footer .app_platform li a{
	color: #999;
}
footer .app_platform li a:hover{
	color: #ff3b30;
}
footer .app_platform li:first-child{
	margin: 0;
}

footer .copyright{
	margin-top: 40px;
	color: #757171;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 12px;
	letter-spacing: .5px;
}

footer .copyright a{
	color: #565555;
}









/*		Responsive CSS 		*/

@media (max-width: 360px) {
	.featured_on li{
		display: block;
		width: 100%;
	}
}

@media (max-width: 767px) {


	/*		Header 		*/
	header .logo{
		margin-right: 0;
		background: url(../img/logo.png) no-repeat 0px 0px;
		background-size: 38px 38px;
		font-size: 20px;
	}
	header .burger_icon{
		display: block;
	}
	.btn_div{
		margin: 80px auto !important;
	}
	h1{
		font-size: 28px;
	}
	.linian .features_list ul li{
		font-size: 14px;
	}
	header nav{
		width: 100%;
		float: none;
		background: #EA3131;
		position: absolute;
		margin-top: 50px;
		left: 0;
		display: none;
	}

	header nav.show{
		display: block;
	}


	header nav li{
		display: block;
		width: 100%;
		margin: 0;
		text-align: center;
	}

	header nav li a{
		display: block;
		width: 100%;	
		padding: 12px 0;
		border-bottom: 1px solid #fff;
		color: #fff;
	}
	header nav li a.btn{
		color: #fff;
		border-bottom: solid 1px #fff;
		padding: 12px 20px;
		font-size: 16px;
	}
	header nav li:first-child a{
		border-top: 1px solid #fff;
	}

	header .social{
		display: none;
	}

	header .social li{
		margin-left: 10px;
	}

	.hero{
		display: block;
		position: relative;
		width: 100%;
		height: 200px;
		background: url('../img/bg.jpg') no-repeat center center;
		background-size: auto 100%;
		background-color: rgb(202,4,17);

	}




	/*		Hero section 		*/
	.hero .caption{
		margin-left: 0;
	}

	.app_store_btn{
		display: block;
		width: 90%;
		padding-left: 0;
		padding-right: 0;
		text-align: center;
	}





	/*		Featured on section		*/
	.featured_on{
		padding: 25px 0 5px 0!important;
	}

	.featured_on ul li{
		margin-bottom: 25px!important;
	}
	.linian .features_list{
		margin-left: 0px;
		margin-top: 20px;
	}





	/*		About Section 		*/
	.about .features_list {
		text-align: center;
		margin: 0;
	}

	.about .features_list ul li{
		text-indent: 0;
		background: transparent!important;
		margin-bottom: 20px;
	}

	.about .features_list ul li:last-child{
		margin: 0;
	}

	a.app_link{
		display: block;
		margin-top: 20px;
	}






	/*		Subscription section 		*/
	.sub_box #mc-email,
	.sub_box #mc_submit{
		display: block;
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}

	.sub_box #mc_submit{
		margin-top: 20px;
	}

}
.erweima
{
     float:right;
     margin-left:80px; 
}
.erweima p
{
    margin:0px;
    font-size:14px;
}
.erweima img
{
    box-shadow: 0 2px 4px 0 rgba(245,245,245,.8);    
}
#weixin
{
    display: inline-block;
    height: 30px;
    vertical-align: middle;
    width: 30px;
	border-radius: 50%;
   background:#ffb928 url("../img/twitter.png") no-repeat scroll 0 0
}

.submit
{
    width: 300px;
	height: 50px;
	padding: 0 20px;
	 background-color:#f0ad4e;
	border: solid 1px #eea236;
	outline: none;
	margin-right: -4px;
	margin-top:40px;
	color: #fff;
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 15px;
    font-weight:600;
		border-radius: 4px;
	-o-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.fixed-btn {
    position: fixed;
    right: 1%;
    bottom: 2%;
    width: 40px;
    border: 1px solid #eee;
    background-color: white;
    font-size: 24px;
    z-index: 1040;
    -webkit-backface-visibility: hidden;
}
.fixed-btn .go-top {
    border-bottom: 1px solid #eee;
}
.fixed-btn a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
}
.fa-qrcode {
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 22px;
   background:rgba(0, 0, 0, 0) url("../img/ewm.png") no-repeat scroll 0 0  
}
.fa-angle-up {
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    width: 22px;
   background:rgba(0, 0, 0, 0) url("../img/up.png") no-repeat scroll 0 0  
}
.linian
{
	padding: 60px 0;
}
.linian p
{
	text-align: center;
	color:#999;
	margin: 16px 0px;
}
.aq
{
	height: 341px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #fff;
	box-shadow: 0 0 13px 0 rgba(33, 86, 178, 0.28);
	/*transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), z-index 0s 0.12s;*/
	text-align: center;
	padding:10px 20px 40px 20px;

	position: relative;
	z-index: 6;
}
.aq h3
{
	font-size: 18px;
	color: #666;
	margin-top: 0;

}
.aq img
{
	border: solid 0px #eee;
	width: 120px;
	border-radius: 50%;

}
.aq p
{
	line-height: 2;
}
.anquan.active{
	margin-top: -22px;
	width: 220px;
	margin-left: -35px;
	position:relative;
	z-index: 20!important;
}
.anquan.active .aq{
	height: 362px;
	position: relative;
	box-shadow: 0 0 13px 0 rgba(33, 86, 178, 0.68);
}
.gototop {
	position: fixed;
	top:50%;
	right: 3px;
	z-index: 999;
	/*opacity: 0;*/
	display:block;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	margin-top: 47px;
}
.gototop.active {
	opacity: 1;
	visibility: visible;
}
.gototop a {
	width: 66px;
	height: 98px;
	display: table;
	background: #FA6C6C;
	color: #fff;
	text-align: center;
	border-bottom:solid #f8abab 1px;
	/*-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;*/
}
.gototop a img {
	text-align:center;
	width: 66px;

}
.gototop a span {
	width:68px;
	float:left;
	font-size:12px;
	margin-top:12px;
}
.gototop a i {
	height: 50px;
	display: table-cell;
	vertical-align: middle;
}
.gototop a:hover, .gototop a:active, .gototop a:focus {
	text-decoration: none;
	outline: none;
	/*background-color:#F84B4A;*/
}
.gototop a.js-gotop {
	height:48px;
	border-bottom:none;
}
.gototop a .phone {
	position:fixed;right:88px;color:#333;font-size:13px;bottom:240px;
}
.btn_div {
    border:solid 1px #f8c818;
    width:200px;
    text-align:center;
    margin:370px auto 10px auto;
    padding:10px 0 11px 0;
    font-size:16px;
    color:#fff;
	background-color: #f89a04;
	border-radius: 4px;
}
.price-box {
	text-align: center;
	padding: 30px;
	background: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 40px;
	position: relative;
	-webkit-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.29);
	-moz-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.29);
	-ms-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.29);
	-o-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.29);
	box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.29);
}
.price-box:hover {
	text-align: center;
	padding: 30px;
	background: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 40px;
	position: relative;
	-webkit-box-shadow: 0px 2px 10px -1px rgba(31, 181, 246, 0.89);
	-moz-box-shadow: 0px 2px 10px -1px rgba(31, 181, 246, 0.89);
	-ms-box-shadow: 0px 2px 10px -1px rgba(31, 181, 246, 0.89);
	-o-box-shadow: 0px 2px 10px -1px rgba(31, 181, 246, 0.89);
	box-shadow: 0px 2px 10px -1px rgba(31, 181, 246, 0.89);
}
.price {
	font-size: 48px;
	color: #6d6d6d;
	line-height: 50px;
	margin-bottom: 20px;
}
.linebtn {
	padding: 14px 30px;
	background: #fff !important;
	color: #df3031;
	/* border: none !important; */
	font-size: 18px;
	text-transform: uppercase;
	border: solid 1px #df3031;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	border-radius: 4px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.linebtn:hover {
	background: #df3031 !important;
	color:#ffffff;
	-webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important;
	-moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important;
	box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important;
}
.main{
	background-color: #fff;padding: 60px 50px;width: 980px;margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.main{
		background-color: #fff;padding: 30px 15px;width: 110%;margin: 0 auto;
	}
}