
.title-box {
	position: relative;
	text-align: center;
	padding: 100px 0 60px 0;
}


.title-box:before {
	height: 5px;
	border-top: 1px solid #888;
	border-bottom: 1px solid #888;
	margin: 0px auto;
	max-width: 350px;
	width: 100%;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 124px;
	z-index: 0;
	content: '';
}

.title-box a {
	width: 220px;
	height: 54px;
	line-height: 54px;
	display: block;
	margin: 0 auto;
	-webkit-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	-moz-transform: translateX(0);
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
	text-align: center;
	position: relative;
	background: #000;
	z-index: 1;
}

.title-box a h2 {
	color: #fff;
	font-size: 18px;
	margin: 0;
	display: inline;
	padding: 0;
	font-weight: normal;
}

.title-box a:before {
	width: 10px;
	height: 54px;
	line-height: 54px;
	display: block;
	content: '';
	position: absolute;
	top:0px;
	left: -24px;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
	border-width: 0 0 54px 24px;
	border-color: transparent transparent #000000 transparent;
	border-style: solid;
}

.title-box a:after {
	width: 10px;
	height: 54px;
	line-height: 54px;
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: -24px;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
	border-width: 54px 24px 0 0;
	border-color: #000 transparent transparent transparent;
	border-style: solid;
}

.title-box p {
	display: block;
	color: #777;
	margin: 30px 15px 0 15px;
	font-size: 15px;
}

.title-box a:hover {
	background: #e00;
}

.title-box a:hover:before {
	border-color: transparent transparent #e00 transparent;
}

.title-box a:hover:after {
	border-color: #e00 transparent transparent transparent;
}

.title-box b {
	position: absolute;
	width: 70px;
	height: 54px;
	top: 0;
	margin: 100px 109px 0 0;
	right: 50%;
	cursor: pointer;
	transition: .3s 1s;
	-ms-transition: .3s 1s;
	-moz-transition: .3s 1s;
	-webkit-transition: .3s 1s;
	z-index: 99;
}

.title-box i {
	position: absolute;
	width: 70px;
	height: 54px;
	top: 0;
	margin: 100px 0 0 109px;
	left: 50%;
	cursor: pointer;
	transition: .3s 1s;
	-ms-transition: .3s 1s;
	-moz-transition: .3s 1s;
	-webkit-transition: .3s 1s;
	z-index: 99;
}

.title-box b:after {
	display: block;
	content: '';
	border-width: 54px 24px 0 0;
	position: absolute;
	left: 0;
	top: 0;
	border-color: #EE0000 transparent transparent transparent;
	border-style: solid;
	width: 70px;
	line-height: 54px;
	z-index: 8;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
	left: auto;
	right: 0;
}

.title-box b:hover:after {
	border-color: #000 transparent transparent transparent;
}

.title-box i:after {
	display: block;
	content: '';
	border-width: 0 0 54px 24px;
	position: absolute;
	right: 0;
	top: 0;
	border-color: transparent transparent #EE0000 transparent;
	border-style: solid;
	width: 70px;
	line-height: 54px;
	z-index: 8;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
	right: auto;
	left: 0;
}

.title-box i:hover:after {
	border-color: transparent transparent #000 transparent;
}

.title-box b:before {
	color: #fff;
	z-index: 9;
	position: absolute;
	width: 54px;
	height: 54px;
	line-height: 54px;
	font-size: 24px;
	top: 0;
	left: 0;
}

.title-box i:before {
	color: #fff;
	z-index: 9;
	position: absolute;
	width: 54px;
	height: 54px;
	line-height: 54px;
	font-size: 24px;
	top: 0;
	right: 0;
}

@media(max-width:479px) {
	.title-box {
		padding: 50px 0 30px 0;
	}
	.title-box:before {
		top: 74px;
	}
	.title-box b {
		margin: 50px 109px 0 0;
	}
	.title-box i {
		margin: 50px 0 0 109px;
	}
}

.biao:hover .title-box b,
.biao:hover .title-box i {
	-webkit-animation: tada 1s 1s ease both;
	-moz-animation: tada 1s 1s ease both;
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale(1)
	}
	10%,
	20% {
		-webkit-transform: scale(0.9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale(1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale(1.1) rotate(-3deg)
	}
	100% {
		-webkit-transform: scale(1) rotate(0)
	}
}

@-moz-keyframes tada {
	0% {
		-moz-transform: scale(1)
	}
	10%,
	20% {
		-moz-transform: scale(0.9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-moz-transform: scale(1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-moz-transform: scale(1.1) rotate(-3deg)
	}
	100% {
		-moz-transform: scale(1) rotate(0)
	}
}


.about-box{background:#f7f7f7;/* display:table;*/ width:100%;}
.about-cut{/*display:table-row;*/width: 100%;overflow: hidden;}
.about-image{/*display:table-cell !important; */width:47%; /*background-size:cover;*/float: left;}
.about-image video{/*display:none !important; max-width:100%;*/width: 100%;}
.about-cut.auto .about-image{ background:none !important; vertical-align:middle;}
.about-cut.auto .about-image img{ display:inline !important; }
.about-content{/*display:table-cell;*/ width:50%; padding: 70px 0 20px 30px;float: right;}
.about-cut.auto .about-content{ vertical-align:top; }
.indvid_txt p.dongf{margin:0 0 10px 0;}
.indvid_txt p span{margin: 0 5px;}
.indvid_txt p{margin-bottom: 10px;}
.indvid_txt p span.vidp1{color: #EE0000;font-size: 24px;}
.indvid_txt p span.vidp2{color: #ffbc00;font-size: 24px;}
.indvid_txt-1 {padding: 0;margin: 0 0 20px 0;}
.indvid_txt-1 p{font-size: 16px;}
.indvid_txt-1 p.tit{font-size: 20px;}
@media(max-width:1200px){
.about-content{padding:60px 0 60px 30px;}
}
@media(max-width:992px){
.about-box{display:block;}
.about-cut{display:block;}
.about-image{display:block !important; width:auto;}
.about-image img{display:block !important;}
.about-content{display:block; width:auto; padding:50px 25px 50px 30px;}
}
@media(max-width:479px){
.about-content{display:block; width:auto; padding:50px 15px;}
}
.more-box{width:166px; height:44px; line-height:44px; font-size:14px !important; display:inline-block;
padding:0; border:none; background:#36404b; color:#fff !important; 
position:relative; color:#fff; text-indent:36px; text-align:left; cursor:pointer;}
.more-box:before{display:block; content:''; border-width:0 0 44px 20px; position:absolute; right:0; bottom:0;
border-color:transparent transparent #fb4848 transparent; border-style:solid; width:55px;
transition:.3s; -ms-transition:.3s; -moz-transition:.3s; -webkit-transition:.3s; -o-transition:.3s;}
.more-box:after{display:block;/* content:"\f178";*/ font-family:FontAwesome; position:absolute; top:0; right:14px;}
.more-box:hover{background:#fb4848; color:#fff;}
.more-box:hover:before{border-color:transparent transparent #36404b transparent; }