@charset "UTF-8";
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");

/*
	Hielo by TEMPLATED
	templated.co @templatedco
	Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
*/



/* Section/Article */

section.special,
article.special {
	text-align: center;
}

header p {

	top: 0;
	right: 0;
	margin: 0 0 1.5rem 0;
}

header h2+p {
	font-size: 1.25rem;
	margin-top: -1rem;
}

header h3+p {
	font-size: 1.1rem;
	margin-top: -0.8rem;
}

header h4+p,
header h5+p,
header h6+p {
	font-size: 0.9rem;
	margin-top: -0.6rem;
}

header p {
	color: #bbb;
}

/* Table */

/* Header */

body.subpage {
	padding-top: 3.25em;
}

@-moz-keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

@-webkit-keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

@-ms-keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

@keyframes reveal-header {
	0% {
		top: -4em;
		opacity: 0;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

#header {
	background: rgba(0, 0, 0, 0.975);
	color: #a6a6a6;
	cursor: default;
	height: 3.25em;
	left: 0;
	line-height: 3.25em;
	position: fixed;
	text-align: right;
	top: 0;
	width: 100%;
	z-index: 10001;
}

#header>.logo {
	display: inline-block;
	height: inherit;
	left: 1.25em;
	line-height: inherit;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
}

#header>.logo a {
	/* font-size: 1.25em; */
	color: #FFF;
	text-decoration: none;
}

#header>.logo a:hover {
	color: rgba(255, 255, 255, 0.65);
}

#header>.logo span {
	font-weight: 400;
	/* font-size: .8em; */
	color: rgba(255, 255, 255, 0.65);
}

#header>a {
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	display: inline-block;
	padding: 0 0.75em;
	color: inherit;
	text-decoration: none;
	color: rgb(17, 17, 17);
}

#header>a:hover {
	color: #f2f2f2;
}

#header>a[href="#menu"] {
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

#header>a[href="#menu"]:before {
	content: "";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

#header>a[href="#menu"]:before {
	margin: 0 0.5em 0 0;
}

#header>a+a[href="#menu"]:last-child {
	border-left: solid 1px rgba(0, 0, 0, 0.15);
	padding-left: 1.25em;
	margin-left: 0.5em;
}

#header>a:last-child {
	/* padding-right: 1.25em; */
}

@media screen and (max-width: 736px) {

	#header>a {
		padding: 0 0.5em;
	}

	#header>a+a[href="#menu"]:last-child {
		padding-left: 1em;
		margin-left: 0.25em;
	}

	#header>a:last-child {
		/* padding-right: 1em; */
	}

}

#header.reveal {
	-moz-animation: reveal-header 0.5s ease;
	-webkit-animation: reveal-header 0.5s ease;
	-ms-animation: reveal-header 0.5s ease;
	animation: reveal-header 0.5s ease;
}

#header.alt {
	-moz-animation: none;
	-webkit-animation: none;
	-ms-animation: none;
	animation: none;
	background-color: rgba(255, 255, 255, 0);
	box-shadow: none;
	overflow: hidden;
	/* 原始定位 */
	/* position: absolute; */
	position: fixed;
	/* top: 2.5em; */
}

#header.alt h1 {
	left: 2.5em;
}

#header.alt nav {
	right: 2.5em;
}

@media screen and (max-width: 980px) {

	body.subpage {
		padding-top: 44px;
	}

	#header {
		height: 44px;
		line-height: 44px;
	}

	#header>h1 {
		left: 1em;
	}

	#header>h1 a {
		font-size: 1em;
	}

}

@media screen and (max-width: 480px) {

	#header {
		min-width: 320px;
	}

}

/* Menu */

#menu {
	-moz-transform: translateX(20rem);
	-webkit-transform: translateX(20rem);
	-ms-transform: translateX(20rem);
	transform: translateX(20rem);
	-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-overflow-scrolling: touch;
	background: rgba(0, 0, 0, 0.95);
	box-shadow: none;
	color: #000;
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 3rem 2rem;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 20rem;
	z-index: 10002;
}

#menu>ul {
	margin: 0 0 1rem 0;
}

#menu>ul.links {
	list-style: none;
	padding: 0;
}

#menu>ul.links>li {
	padding: 0;
}

#menu>ul.links>li>a:not(.button) {
	border: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.125);
	color: rgba(255, 255, 255, 0.5);
	display: block;
	line-height: 3.5rem;
	text-decoration: none;
	text-transform: uppercase;
}

#menu>ul.links>li>a:not(.button):hover {
	color: #FFF;
}

#menu>ul.links>li>.button {
	display: block;
	margin: 0.5rem 0 0 0;
}

#menu>ul.links>li:first-child>a:not(.button) {
	border-top: 0 !important;
}

#menu .close {
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	-webkit-tap-highlight-color: transparent;
	border: 0;
	color: #999999;
	cursor: pointer;
	display: block;
	height: 3.25rem;
	line-height: 3.25rem;
	padding-right: 1.25rem;
	position: absolute;
	right: 0;
	text-align: right;
	top: 0;
	/* vertical-align: middle; */
	width: 7rem;
}

#menu .close:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

#menu .close:before {
	color: #f2f2f2;
	font-family: Arial, Helvetica, sans-serif;
	content: 'X';
	font-size: 1.25rem;
}

#menu .close:hover {
	color: #000;
}

@media screen and (max-width: 736px) {

	#menu .close {
		height: 4rem;
		line-height: 4rem;
	}

}

#menu.visible {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
	visibility: visible;
}

@media screen and (max-width: 736px) {

	#menu {
		padding: 2.5rem 1.75rem;
	}

}



/* Main */

#main {
	padding: 4rem 0 2rem 0;
}

@media screen and (max-width: 736px) {

	#main {
		padding: 3rem 0 1rem 0;
	}

}

/* Footer */

#footer {
	padding: 1rem 0 0 0;
	background: #000;
	text-align: center;
	
}

#footer a {
	color: rgba(255, 255, 255, 0.5);
}

#footer a:hover {
	color: #FFF;
}

#footer .copyright {
	color: #bbb;
	font-size: 0.9rem;
	margin: 0;
	padding: 0;
	text-align: center;
}

@media screen and (max-width: 736px) {

	#footer {
		padding: 1rem 0 3rem 0;
		
	}
	#footer .copyright {
		
		margin: 0 0 1rem 0;
		
		
	}

}