﻿@charset "utf-8";
.help_background{
	width: 100%;
	height: 270px;
	background: url(../img/help_background.png) no-repeat center;
	text-align: center;
	position: relative;
}
.help_background .figcaption{
	width: 100%;
	height: auto;
	position: absolute;
	top: 40%;
	left:0;
}
.help_background .figcaption img{
	max-width: 100%;
	float: left;
}
.help_background .figcaption h1{
	color: #222;
	font-size: 30px;
	margin: 0;
	margin-bottom: 10px;
	}
.help_background .figcaption h1:before{
	content: '';
	width: 52px;
	height: 52px;
	background-image: url(../img/icon_help.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	vertical-align: middle;
	display: inline-block;
	*zoom: 1;
	*display: inline;
	margin-right: 10px;

}
.help_background .figcaption p{
	color: #fff;
	font-size: 18px;
}

/*///////////使用帮助常见问题///////////*/

 .word_help{
	margin-top: 50px;
	margin-bottom: 30px;
}
section, section .content_left, section .content_right {
	*zoom: 1;
}

section:before, section .content_left:before, section .content_right:before, section:after, section .content_left:after, section .content_right:after {
	content: "";
	display: table;
}

section:after, section .content_left:after, section .content_right:after {
	clear: both;
}

section .content_left>h2:after, section .content_left>ul>li:before {
	-moz-user-select: none;
	/*火狐*/
	-webkit-user-select: none;
	/*webkit浏览器*/
	-ms-user-select: none;
	/*IE10*/
	-khtml-user-select: none;
	/*早期浏览器*/
	user-select: none;
}

section .content_left {
	position: relative;
	z-index: 2;
	margin-bottom: 50px;
	float: left;
	height: auto;
	width: 28%;
	background: #fff;
}

section .content_left>h1 {
	padding: 10px 0;
	font-size: 24px;
	color: #000;
	display: none;
}

section .content_left>h2{
	position: relative;
	cursor: pointer;
	line-height: 60px;
	font-size: 20px;
	color: #333;
	background-color: #f5f5f5;
	text-align: center;
}
section .content_left>h2.active{
}
section .content_left>h2:after {
	display: inline-block;
	position: absolute;
	right: 16px;
	top: 24px;
	content: "";
	background-image:url(../img/zhankai_1.png);
	background-repeat: nore;
	background-size: 100% auto;
	width: 12px;
	height: 12px;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
}

section .content_left>h2:hover {
	color: #333;
}

section .content_left>h2.active:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

section .content_left>ul {
	display: none;
	width: 100%;
	overflow: hidden;
}

section .content_left>ul>li {
	cursor: pointer;
	text-align: left;
	text-indent: 30px;
	color: #666;
	width: 100%;
	line-height: 48px;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	font-size: 14px;
}

section .content_left>ul>li:before {
	position: relative;
	margin-right: 10px;
	content: "";
	background-image: url(../img/icon_san.png);
	width: 6px;
	height: 12px;
	display: inline-block;
	background-size: 100% auto;
	background-repeat: no-repeat;
	vertical-align: middle;
}

section .content_left>ul>li:hover {
	color: #000;
}

section .content_left>ul>li.active {
	background-color: #f8c205;
	color: #111;
}

section .content_left>ul>li.active:before {
	content: none;
}

section .content_right {
	position: relative;
	float: left;
	height: auto;
	width:72%;
	padding-left: 30px;
	box-sizing: border-box;
	background: #fff;
	padding-top: 40px;
	border-left: 1px solid #ddd;
}

section .content_right>.content {
	min-height: 500px;
}

section .content_right>.content>h1 {
	font-size: 26px;
	font-weight: bold;
	color: #000;
	text-align: center;
	margin-bottom: 30px;
}

section .content_right>.content>.content_inner {
	margin-bottom: 125px;
	text-align: center;
}
section .content_right>.content>.content_inner p{
	font-size: 16px;
	line-height: 24px;
}

#fadeInUp {
	-webkit-animation: fadeInUp 1s .2s ease both;
	-moz-animation: fadeInUp 1s .2s ease both;
}
#fadeInLeft {
	-webkit-animation: fadeInLeft 1s .2s ease both;
	-moz-animation: fadeInLeft 1s .2s ease both;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

#fadeInRight {
	-webkit-animation: fadeInRight 1s .2s ease both;
	-moz-animation: fadeInRight 1s .2s ease both;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

/**/

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation: fadeInDown 1s .2s ease both;
	-moz-animation: fadeInDown 1s .2s ease both;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}
@media screen and (max-width: 760px) {
.help_background{
	width: 100%;
	height: 270px;
	background: url(../img/help_background.png) no-repeat center;
	text-align: center;
	position: relative;
}
.help_background .figcaption{
	width: 100%;
	height: auto;
	position: absolute;
	top: 40%;
	left:0;
	box-sizing: border-box;
	
	padding: 0 14px;
}
.help_background .figcaption img{
	max-width: 100%;
	float: left;
}
.help_background .figcaption h1{
	font-size: 30px;
	margin: 0;
}
.help_background .figcaption p{
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	margin-top: 10px;
}
.word_help{
	margin-top: 0;
}
section .content_left{
	width: 100%;
	float: inherit;
	margin-top: 15px;
	margin-bottom: 10px;
}
section .content_left>h1{
	display: none;
}
section .content_left>h2{
	line-height: 48px;
	font-size: 16px;
	border-radius: 10px 10px 0 0;
}
section .content_left>ul>li{
	line-height: 40px;
}
section .content_left>h2:after{
	top: 18px;
}
section .content_right{
	width: 100%;
	padding:0 15px ;
	border-left: 0;
}

}