*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: arial;
}
h1,h2,h3,a{
	display: block;
	text-decoration: none;
	color: #eee;
}
html,body{
	height: 100%;
}
.container{
	height: 100%;
	min-width: 720px;
}
header{
	position: fixed;
	width: 100%;
	height: 64px;
	background-color: #00aadd;
	box-shadow: 5px 0px 5px #444;
	color: #eee;
	min-width: 720px;
	z-index: 1000;
}
header .title-box{
	width: 200px;
	height: 64px;
	background-color: #444;
	padding: 20px;
	float: left;
}
header .desc-box{
	margin-top: 16px;
	margin-left: 18px;
	float: left;
}
header .desc-box h3{
	color:#eee;
	line-height: 22px;
}
header .btn-box{
	margin-top: 16px;
	margin-right: 24px;
	float: right;
}
header .btn-box .btn-download{
	background-color: rgba(255,255,255,0);
	border: solid 1px #eee;
	border-radius: 10px;
	padding: 10px 25px;
	line-height: 16px;
	font-size: 16px;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
header .btn-box .btn-download:hover{
	background-color: rgba(255,255,255,1);
	color: #00aadd;
}
header .btn-box .btn-code{
	background-color: rgba(255,255,255,0.3);
	border-radius: 10px;
	padding: 10px 25px;
	line-height: 16px;
	font-size: 16px;
	display: inline-block;
	cursor: pointer;
}
header .btn-box .btn-code:hover{
	background-color: rgba(255,255,255,1);
	color: #00aadd;
}
.nav-bar{
	position: fixed;
	top: 64px;
	width: 200px;
	height: 100%;
	background-color: #333;
}
.nav-bar ul{
	margin-top: 16px;
}
.nav-bar ul .active{
	background-color: #222;
}
.nav-bar li{
	padding-left: 24px;
	padding-right: 24px;
	list-style: none;
}
.nav-bar li:hover{
	background-color: #222;
	cursor: pointer;
}
.nav-bar li a{
	font-size: 20px;
	line-height: 36px;
}
.content{
	padding-top: 64px;
	padding-bottom: 32px;
	margin-left: 200px;
	background-color: #eee;
	min-height: 100%;
}
.content .wrap{
	width: 100%;
	height: 360px;
	background-color: #333;
}
.content article{
	padding-left: 64px;
	padding-right: 64px;

}
.content article p{
	line-height: 24px;
}
.container h3{
	color: #000;
}
.content .intro-box{
	margin: 16px auto;
	text-align: justify;
}
.content textarea {
	padding: 4px;
	border-style: none;
	background-color: #fff;
	color: #666;
	width: 100%;
}
footer {
	text-align: center;
	color: #333;
	font-size: 12px;
}
