﻿@charset "utf-8";
/* CSS Document */
*{ margin:0; padding:0}
/*<!--主题背景颜色-->*/
.modelcolor{
	background-color:#000 !important;
}
/*<!--主题颜色-->*/
.themecolor{
	color:#e62129;
}
.themebgcolor{
	background-color:#e62129;
}
/*<!--白色-->*/
.thirdcolor{
	color: #fff;
}
.none{
	display: none;
}
body{
	background-color: #fff;
}
#window{
	position:fixed;
	width:100%;
	height:100%;
	background-color: rgba(0, 0, 0, 0.60);
	z-index:8;
	animation-name: opacitys;
	animation: opacitys 0.3s forwards;
}
a{
	color: inherit;
	text-decoration: none;
}
.header{
	height:50px;
	background-image:url(../images/icon_phone/logo.png);
	background-repeat:no-repeat;
	background-size:auto 70%;
	background-position:center center;
	position:fixed;
	width:100%;
	top:0;
	z-index:10;
	transition-duration:0.3s;
}
.header span{
	display:inline-block;
	width:30px;
	height:30px;
	margin:10px;
	float: right;
}
.header-up{
	transform:translateY(-100%);
}
.header-down{
	transform:translateY(0);
	transition-delay: 1s;
}
#menu{
	text-align: center;
	box-sizing: border-box;
	padding-top: 5px;
}
#menu p{
	height: 3px;
	width: 24px;
	background-color: #fff;
	margin: 0 auto 5px auto;
}
/*.menu2{
	background-image:url(../images/del.png) !important;
}*/
/*#search{
	background-image:url(../images/search.png);
	float:right;
}*/
#menu_bar{
	position:fixed;
	left:-81%;
	width:80%;
	z-index:9;
	font-size:14px;
	height:100%;
	padding-top: 50px;
	
}
#menu_bar>div i{
	display:inline-block;
	width:30px;
	height:30px;
	background-size:90% 90%;
	background-position:center center;
	margin:10px;
	float:right;
}
#menu_bar li{
	display:block;
	box-sizing:border-box;
	text-indent:10px;
	position: relative;
}
#menu_bar li .borders{
	background: #414141;
	margin: 0 20px;
	height: 1px;
}
#menu_bar li i{
	display: none;
}
@keyframes menu_bar_cur {
	0% {
	  transform:translateX(0) translateY(-50%) rotateX(0);
	}
	50% {
	  transform:translateX(-10px) translateY(-50%) rotateX(180deg);
	}
	100% {
	  transform:translateX(0) translateY(-50%) rotateX(360deg);
	}
}
#menu_bar .cur i{
	animation: menu_bar_cur infinite 2s;
	-webkit-animation: menu_bar_cur infinite 2s;
	-o-animation: menu_bar_cur infinite 2s;
}
#menu_bar .cur i{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 30px;
	height: 30px;
	background: url(../images/icon_phone/cur-icon.png) center center no-repeat;
	background-size: 80%;
}
#menu_bar .cur{
	background-color: #e62129;
	border-bottom: none;
}
#menu_bar .cur .borders{
	background: none !important;
}
#menu_bar li p{
	font-size:12px;
}
#menu_bar a{
	display:block;
	padding:10px 20px;
}
@keyframes menu_bar_down {
from {
  transform:translateX(0);
}
to {
  transform:translateX(100%);
}
}
.menu-bar-down{
	animation: menu_bar_down 0.3s ease-out forwards;
	-webkit-animation: menu_bar_down 0.3s ease-out forwards;
	-o-animation: menu_bar_down 0.3s ease-out forwards;
}
@keyframes menu_bar_top {
from {
  transform:translateX(100%);
}
to {
  transform:translateX(0);
}
}
.menu-bar-top{
	animation: menu_bar_top 0.3s ease-out forwards;
	-webkit-animation: menu_bar_top 0.3s ease-out forwards;
	-o-animation: menu_bar_top 0.3s ease-out forwards;
}
@keyframes opacitys {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes menu-top-on {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(45deg) translateY(5.5px) translateX(5.5px);
	}
}
.menu-top-on{
	animation: menu-top-on 0.5s forwards;
	-webkit-animation: menu-top-on 0.5s forwards;
	-o-animation: menu-top-on 0.5s forwards;
}
@keyframes menu-top-off {
	from {
		transform: rotate(45deg) translateY(5.5px) translateX(5.5px);
	}
	to {
		transform: rotate(0) translateY(0) translateX(0);
	}
}
.menu-top-off{
	animation: menu-top-off 0.5s forwards;
	-webkit-animation: menu-top-off 0.5s forwards;
	-o-animation: menu-top-off 0.5s forwards;
}
@keyframes menu-cont-on {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.menu-cont-on{
	animation: menu-cont-on 0.5s  forwards;
	-webkit-animation: menu-cont-on 0.5s  forwards;
	-o-animation: menu-cont-on 0.5s forwards;
}
@keyframes menu-cont-off {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.menu-cont-off{
	animation: menu-cont-off 0.5s  forwards;
	-webkit-animation: menu-cont-off 0.5s  forwards;
	-o-animation: menu-cont-off 0.5s forwards;
}
@keyframes menu-bottom-on {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(-45deg) translateY(-5.5px) translateX(5.5px);
	}
}
.menu-bottom-on{
	animation: menu-bottom-on 0.5s forwards;
	-webkit-animation: menu-bottom-on 0.5s forwards;
	-o-animation: menu-bottom-on 0.5s forwards;
}
@keyframes menu-bottom-off {
	from {
		transform: rotate(-45deg) translateY(-5.5px) translateX(5.5px);
	}
	to {
		transform: rotate(0) translateY(0) translateX(0);
	}
}
.menu-bottom-off{
	animation: menu-bottom-off 0.5s forwards;
	-webkit-animation: menu-bottom-off 0.5s forwards;
	-o-animation: menu-bottom-off 0.5s forwards;
}
.swiper-container1 .swiper-slide{
	height: 250px;
	position: relative;
	background-size: cover !important;
	color: #fff;
}
.swiper-container1 .swiper-pagination{
	bottom: 0 !important;
	top: auto !important;
}
.swiper-pagination-bullet {
	background-color: #fff !important;
}
.swiper-pagination-bullet-active {
	background-color: #e62129 !important;
}
.bn-page1{
	color: #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -53.5px;
	z-index: 1;
}
.bn-page1 span{
	display: inline-block;
	width: 20px;
	height: 5px;
	margin-top: 10px;
}
.swiper-pagination-progress .swiper-pagination-progressbar{
	background-color: #e62129 !important;
}
.banner{
	height: 200px;
	color: #fff;
	position: relative;
}
.banner>div{
	padding: 0 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.banner .title{
	font-size: 20px;
	font-weight: bold;
}
.banner .text{
	font-size: 12px;
}
.title1{
	position: relative;
	padding-top: 20px;
}
.title1 .symbol1{
	position: absolute;
	top: 20px;
	left: 0;
	font-size: 30px;
	font-family: Helvetica;
	font-weight: bold;
}
.title1 .symbol2{
	font-size: 30px;
	font-family: Helvetica;
	font-weight: bold;
	position: absolute;
	right: 0;
	top: 55px
}
.title1 .symbol2>span{
	width: 80px;
    height: 2px;
    background: #222;
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 25px;
}
.title1 .t-1{
	font-size: 20px;
	font-weight: bold;
	padding-top: 15px;
}
.title1 .t-2{
	font-size: 12px;
	color: #636363;
	margin-top: 15px;
}
.block{
	margin: 0 10px;
}
.block1 .cont{
	width: 100%;
	padding-top: 15px;
	color: #757575;
	border-bottom: 1px solid #757575;
	float: left;
}
.block1 .cont li{
	display: block;
	float: left;
	width: 50%;
	transition-duration: 0.8s;
	box-sizing: border-box;
	cursor: pointer;
	margin-bottom: 15px;
	text-align: center;
}
.block1 .cont li .img{
	height: 50px;
}
.block1 .cont li .img1{
	background: url(../images/icon_phone/q1.png) no-repeat center;
	background-size: auto 100%;
}
.block1 .cont li .img2{
	background: url(../images/icon_phone/q2.png) no-repeat center;
	background-size: auto 100%;
}
.block1 .cont li .img3{
	background: url(../images/icon_phone/q3.png) no-repeat center;
	background-size: auto 100%;
}
.block1 .cont li .img4{
	background: url(../images/icon_phone/q4.png) no-repeat center;
	background-size: auto 100%;
}
.block1 .cont li .title{
	font-size: 18px;
	font-weight: bold;
	margin-top: 5px;
}
.block1 .cont li .text{
	font-size: 12px;
	margin-top: 5px;
}
.block2 .tabs {
	margin: 10px 10px 0;
}
.block2 .tabs a{
	display: inline-block;
	border-radius: 5px;
	margin-right: 5px;
	padding: 0 5px;
	color: #7d7d7d;
	border: 1px solid #7d7d7d;
	font-size: 12px;
	height: 26px;
	line-height: 26px;
	margin-bottom: 10px;
}
.block2-1{
	margin: 15px auto 40px;
}
.tabs .active{
	background-color: #000;
	color: #fff !important;
	border: 1px solid #000 !important;
}
.swiper-container2{
	width: 100%;
}
.swiper-container2 .content-slide{
	float: left;
}
.swiper-container2 .content-slide li{
	width: 50%;
	display: block;
	float: left;
}
.swiper-container2 .content-slide li img{
	width: 100%;
	display: block;
}
.swiper-container2 .content-slide li .img{
	overflow: hidden;
	position: relative;
}
.swiper-container2 .content-slide li .link-win{
	width: 100%;
	height: 100%;
	position: absolute;
	top: -100%;
	left: 0;
	background:url(../images/icon_phone/th_bg.png);
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
}
.swiper-container2 .content-slide li:hover .link-win{
	top: 0;
}
.swiper-container2 .content-slide .link-win .box{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	color: #fff;
	width: 100%;
	text-align: center;
}
.swiper-container2 .content-slide .link-win .box>p{
	font-size: 20px;
	font-weight: bold;
}
.swiper-container2 .content-slide .link-win .box>span{
	display: block;
	height: 2px;
	width: 20px;
	margin: 2px auto 10px;
	background-color: #fff;
}
.swiper-container2 .content-slide .link-win .box>a{
	display: inline-block;
	height: 20px;
	line-height: 20px;
	padding: 0 15px;
	border-radius: 10px;
	border: 1px solid #fff;
	font-size: 12px;
}.block3{
	background-color: #eee;
}
.block3 .box{
	padding: 20px 0;
}
.block3 .box>ul>li{
	display: block;
}
.block3 .cont-box{
}
.tabs2{
	margin-bottom: 15px;
	text-align: center;
}
.tabs2 a{
	display: inline-block;
	height: 30px;
	line-height: 30px;
	width: 96px;
	text-align: center;
	color: #858585;
}
.tabs2 .active{
	background-color: #e62129;
	color: #fff;
}
.block3 .news-cont li{
	display: block;
	border-bottom: #e0e0e0 solid 1px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	transition-duration: 0.5s;
	-webkit-transition-duration : 0.5s;
	-ms-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
}
.block3 .news-cont li:last-child{
	border-bottom: none;
	margin-bottom: 0;
}
.block3 .news-cont li:hover{
	transform: translateY(3px);
	-webkit-transform: translateY(3px);
	-o-transform: translateY(3px);
	color: #e62129 !important;
	border-bottom-color: #e62129;
}
.block3 .news-cont li:hover .text{
	color: #e62129 !important;
}
.block3 .news-cont .day{
	font-size: 12px;
	margin: 2px 0;
}
.block3 .news-cont .text{
	font-size: 14px;
	color: #858585;
	line-height: 20px;
}
.block3 .news-cont .title{
	font-size: 18px;
	display: block;
}
.block3 .cont-show .title{
	font-size: 24px;
	font-weight: bold;
}
.block3 .cont-show>span{
	display: inline-block;
	height: 2px;
	width: 30px;
	margin: 10px 2px;
	background-color: #858585
}
.block3 .cont-show .text1{
	font-size: 16px;
	margin-bottom: 10px;
	color: #858585;
}
.block3 .cont-show .text2{
	font-size: 12px;
	color: #858585;
}
@keyframes rotates{
	0% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
    transform: perspective(400px) rotate3d(1,0,0,90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
}
40% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
    transform: perspective(400px) rotate3d(1,0,0,-20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}
60% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
    transform: perspective(400px) rotate3d(1,0,0,10deg);
    opacity: 1;
}
80% {
    -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
    transform: perspective(400px) rotate3d(1,0,0,-5deg);
}
100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
}
}
.msg-rotatey{
	animation:rotates 0.6s;
}
.block4{
	padding: 20px 0;
	background-color: #eee;
	color: #858585;
}
.block4 li{
	display: block;
}
.block4 .about .title{
	font-size: 20px;
	font-weight: bold;
}
.block4 .about .text{
	font-size:  14px;
	margin-bottom: 10px;
}
.block4 .about .tell{
	font-size:  14px;
	height: 20px;
	line-height: 20px;
	vertical-align: middle;
	margin-bottom: 10px;
}
.block4 .about .tell:before {
    content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align:bottom;
	background: url(../images/icon_phone/w1.png) no-repeat;
	background-size: 100%;
	margin-right: 10px;
}
.block4 .about .location{
	font-size:  14px;
	height: 20px;
	line-height: 20px;
	vertical-align: middle;
	margin-bottom: 10px;
}
.block4 .about .location:before {
    content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align:bottom;
	background: url(../images/icon_phone/w2.png) no-repeat;
	background-size: 100%;
	margin-right: 10px;
}
.block4 .about .qq{
	background: url(../images/icon_phone/w3.png) no-repeat left top;
	background-size: 20px 20px;
}
.block4 .about .qq>p{
	font-size:  14px;
	height: 20px;
	line-height: 20px;
	vertical-align: top;
}
.block4 .about .qq>p:before {
    content: '';
	display: inline-block;
	width: 60px;
	height: 20px;
	vertical-align:bottom;
	background: url(../images/icon_phone/w4.png) no-repeat left 2px;
	background-size: 100%;
	margin-right: 10px;
	margin-left: 30px
}
.map{
	height: 300px;
	display: block;
}
.BMap_center{
	background:url(../images/icon_phone/logo3.png) no-repeat center;
	background-size: auto 100%;
}
 .BMap_pop>div>div{
	border-radius: 5px;
}
.anchorBL{
	display: none;
}
.icp{
	background-color: #101010;
	padding: 10px;
	color: #999;
	text-align: center;
	font-size: 12px;
}
#run_top{
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	z-index: 7;
	border-radius: 50%;
	background-image: url(../images/icon_phone/cur-icon-top.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40%;
	background-color: rgba(230, 33, 41, 0.6);
}
.tabs3-box{
	height: 200px;
	position: absolute;
	top: -190px;
	width: 100%;
	overflow: hidden;
}
.tabs3{
	background-image: url(../../images/icon_phone/th_bg.png);
	color: #fff;
	position: absolute;
	bottom:0;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	width: 100%;
	padding: 20px 20px 10px;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	-webkit-border-top-left-radius: 40px;
	-webkit-border-top-right-radius: 40px;
	box-sizing: border-box;
	transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	text-align: center;
}
.tabs3-box .on{
	transform: translateY(0);
	-webkit-transform: translateY(0);
}
.tabs3 .btn{
	display: inline-block;
	background: url( ../images/icon_phone/th_bg.png);
	position: absolute;
	top: -40px;
	left: 50%;
	width: 80px;
	height: 40px;
	margin-left: -40px;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	box-sizing: border-box;
}
@keyframes tabs3_top {
	0% {
	  transform:translateY(20px);
		opacity: 0;
	}
	30% {
	  transform:translateY(14px);
		opacity: 1;
	}
	60% {
	  transform:translateY(8px);
		opacity: 1;
	}
	100% {
	  transform:translateY(0);
		opacity: 0;
	}
}
@keyframes tabs3_bottom {
	0% {
	  transform:translateY(0);
		opacity: 0;
	}
	30% {
	  transform:translateY(8px);
		opacity: 1;
	}
	60% {
	  transform:translateY(14px);
		opacity: 1;
	}
	100% {
	  transform:translateY(20px);
		opacity: 0;
	}
}
.tabs3 .btn>span{
	display: block;
	width: 100%;
	height: 25px;
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
}
.tabs3 .top{
	background-image: url(../images/icon_phone/cur-icon-top.png);
	animation: tabs3_top infinite 1.5s linear;
	-webkit-animation: tabs3_top infinite 1.5s linear;
	-o-animation: tabs3_top infinite 1.5s linear;
}
.tabs3 .bottom{
	background-image: url(../images/icon_phone/cur-icon-down.png);
	animation: tabs3_bottom infinite 1.5s linear;
	-webkit-animation: tabs3_bottom infinite 1.5s linear;
	-o-animation: tabs3_bottom infinite 1.5s linear;
}
.tabs3 a{
	display: inline-block;
	padding: 5px 10px;
	margin: 0 2.5px 5px;
	border-radius: 5px;
	font-size: 12px;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
}
.tabs3 .active{
	background-color: #fff;
	color: #e62129;
}
.block5{
	position: relative;
}
.block5 .box{
	/*position: absolute;
	top: -100px;
	width: 100%;*/
}
.block5 .box .case{
	margin: 0 15px;
}
.case-box{
	width: 100%;
    position: relative;
    z-index: 2;
	margin: -40px auto 0 auto;
    padding-top: 20px;
}
.case-box .img{
	box-shadow: 0 0 5px 1px #ccc;
}
.case-box img{
	max-width: 100%;display: block;
}
.case-box .see{
	color: #999;
	padding: 10px 0;
}
.case-box .see>span{
	display: inline-block;
	margin-right: 20px;
}
#b5_img
{
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
}