@CHARSET "UTF-8";

/*清除默认样式(start)*/
ul,li,p,h1{
	display: block;
	margin: 0;
	padding: 0;
}
/*清除默认样式(end)*/

/*导入字体(start)*/
@font-face{
	font-family: PingHei;
	src: url('../fonts/PingHei/PingHei-light.ttf');
	font-weight: 300;
	font-style: normal;
}
@font-face{
	font-family: 'PingHei';
	src: url('../fonts/PingHei/PingHei-text.ttf');
	font-weight: 400;
	font-style: normal;
}
@font-face{
	font-family: 'PingHei';
	src: url('../fonts/PingHei/PingHei-semibold.ttf');
	font-weight: 600;
	font-style: normal;
}
/*导入字体(end)*/

body{
	font-size: 100%;
	font-family: 'PingHei', sans-serif;
	font-weight: 400;
	color: rgb(255, 255, 255);
	margin: 0;
	padding: 0;
	background: rgb(0, 0, 0);
	width: 100%; height: 100%;
}

a{text-decoration:none; }
a:link{color:rgb(255, 255, 255); }
a:visited{color:rgb(255, 255, 255); }
a:hover{color:rgb(200, 200, 200); }
a:active{color:rgb(200, 200, 200); }

header{
	font-size: 1.25em;
	background: rgba(0, 0, 0, .7);
	height: 44px; 
	width: 100%;
	position: fixed;
	z-index: 999;
}
nav ul{
	margin: 0 auto;
	height: 44px; width: 960px;
	display: -webkit-box;			/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;				/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;			/* TWEENER - IE 10 */
	display: -webkit-flex;			/* NEW - Chrome */
	display: flex;
	justify-content: space-between;	/* Safari not support */
}
nav li{
	padding: 12px 0;
}
#language-icon{
	text-align: center;
	color: rgba( 0, 0, 0, 1);
	background-color: rgba( 255, 255, 255, 1 );
	border-radius: 20%;
	width: 1.25em; height: 1.25em;
}

.gdrtc-main .profile{
	height: 100%; width: 100%; 
	position: absolute; 
	background: #000 url(../img/anechoic-chamber.jpg) no-repeat center;
	/* background-size: contain; */
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gdrtc-main .profile .text{
	width: 1280px; height: auto; 
	margin: 0 auto;/*左右居中*/
	/* padding-top: 15%;  */
}
.gdrtc-main .profile .text .profile-summary{
	width: 28em;
}
h1{
	font-size: 2.5em; 
	line-height: 1.5em;
}
p{
	font-size: 1.25em; 
	line-height: 1.5em;
	text-align: justify; 
}
.toolbar{
	position: fixed;
	bottom: 1em;
	width: 100%;
}
.toolbar-right{
	text-align: right;
}