@charset "utf-8";

#content .content-container{
	max-width: 88%;
	margin: 0 auto;
}
#content .text-container{
	padding: 30px 30px 0 30px;
	color: #c0c0c0;
	font-size: 24px;
	word-break:break-word; /*长单词遇到边界自动移动到下一行显示*/
	/*overflow: hidden;
	text-overflow: ellipsis;*/
	letter-spacing: 1.2px;
}
#content .text-header h1{
	font-size: 35px;
	color: #dedede;
	text-align: center;
	border-bottom: 1px solid rgb(4,181,150);
	padding-bottom: 15px;
	margin-bottom: 40px;
	margin-top: 60px;
}
#content .text-body h2{
	color: #d6d6d6;
	font-size: 26px;
	border-left: 4px solid rgb(4,181,150);
	padding: 6px;
	margin:6px 0;
}
#content .text-body h3{
	color: #d6d6d6;
	font-size: 21px;
	border-left: 2px solid rgb(4,181,150);
	padding: 6px 0 6px 10px;
	margin:6px 0 6px 10px;
}
#content .contents{
	margin: 15px;
}
#content .contents a{
	color: rgb(4,181,150);
	border-bottom: 1px solid rgb(4,181,150);
	line-height: 1.5;
}
#content .contents .subli{
	margin-left: 24px;
}
#content .text-body p{
	margin: 15px;
	letter-spacing: 1.2px;
	line-height: 1.5;
}
#content .text-body .indent-p{
	letter-spacing: 1.2px;
	margin-left: 30px;
}
#content .text-body a{
	color: rgb(4,181,150);
}
#content .text-body img{
	margin: 10px auto;
}
/*播放器水平居中，自动缩放*/
#content .text-body video{
	clear:both;
	display:block;
	margin: auto;
	width: 50%;
}

#content .text-footer{
	border-top: 1px solid rgb(4,181,150);
	margin-top: 20px;
	padding: 10px 10px 0 10px;
}
#content .text-footer a{
	color: #1ea65c;
}

/**媒体查询，响应式布局**/
/*当页面大于1200px时，PC大屏*/
@media (min-width: 1200px) {

}
/*在992和1199像素之间，PC小屏*/
@media (min-width: 992px) and (max-width: 1199px) {

}
/*在768和991像素之间，PAD端*/
@media (min-width: 768px) and (max-width: 991px) {
	
}
/*在480和767像素之间，高分辨率手机端*/
@media (min-width: 480px) and (max-width: 767px) {
	#content .text-container{
		padding: 8px;
		font-size: 17px;
	}
	#content .text-header h1{
		font-size: 19px;
		margin: 100px 0 35px 0;
	}
	#content .text-body h2{
		font-size: 18px;
		padding: 4px;
		margin:4px 0;
	}
	#content .text-body h3{
		font-size: 17px;
		padding: 4px 0 4px 8px;
		margin:4px 0 4px 8px;
	}
	#content .text-body p{
		margin: 10px;
	}
	#content .text-body .indent-p{
		margin-left: 20px;
	}
	#content .contents .subli{
		margin-left: 19px;
	}
}
/*小于480像素的屏幕，低分辨率手机端*/
@media (max-width: 479px) {
	#content .text-container{
		padding: 8px;
		font-size: 17px;
	}
	#content .text-header h1{
		font-size: 19px;
		margin: 100px 0 35px 0;
	}
	#content .text-body h2{
		font-size: 18px;
		padding: 4px;
		margin:4px 0;
	}
	#content .text-body h3{
		font-size: 17px;
		padding: 4px 0 4px 8px;
		margin:4px 0 4px 8px;
	}
	#content .text-body p{
		margin: 10px;
	}
	#content .text-body .indent-p{
		margin-left: 20px;
	}
	#content .contents .subli{
		margin-left: 19px;
	}
}
