@charset "utf-8";
/* CSS Document */

body{
	font-family:"微软雅黑";
	display: -webkit-flex;
	display:flex;
	flex-direction: column;	
	--black: #202A25;
	--dark: #003366;
	--light: #99CCFF;
	--high: #336699;
	--thin: #CCCCCC;
	--bgmain: #FFFFFF;
	--hover: #FF6600;
	background-color:var(--thin);
}

.bgcolor{
	background-color: var(--thin);	
}

*{
	box-sizing: border-box;	
	padding:0px;
	margin:0px;
	list-style:none;		
}

a{
	color: var(--high);
	text-decoration:none;
	transition-duration: 0.4s;
}

a:hover{
	color: var(--hover);	
}

img{
	display:block;	
}



#Wrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	width:100%;
}

#Header{
	width:100%;
	display: flex;
	flex-direction: column;
	min-height:60px;
	justify-content: center;
	align-items: center;
	font-size:28px;
	color: var(--thin);
	background-color: var(--dark);
}

#Mainer{
	width: 1200px;
	background-color: var(--bgmain);
	min-height: 600px;
	display: flex;
	flex-direction: row;
}

#Navier{
	display: flex;
	flex-direction: column;
	width: 200px;
	border-right: solid 1px var(--thin);
}

#Navier .NVB_Block{
	width: 100%;
}

#Navier .NVB_Block .NVB_MainNV{	
	
	height: 40px;
	line-height: 40px;
	border-bottom: solid 1px var(--thin);
	letter-spacing: 5px;
	padding-left: 10px;
	font-size: 18px;
	transition-duration: 0.4s;
	margin-bottom: 2px;
	color: var(--dark);		
}

#Navier .NVB_Block .NVB_MainNV:hover{
	cursor: pointer;
	color: var(--hover);		
}

#Navier .NVB_Block .NVB_SubNV{
	margin-bottom: 2px;
	display: none;	
}

#Navier .NVB_Block .NVB_SubNV li{	
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: right;
	padding-right: 5px;
	border-bottom: dotted 1px var(--thin);
	letter-spacing: 5px;
}

#Framer{
	width: 1000px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

#Welcomer{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	border-bottom: dotted 1px var(--thin);
	height: 20px;
	font-size: 12px;
	padding: 5px;
	color: var(--thin);	
}

#Welcomer #LogIn:hover,
#Welcomer #LogOut:hover{
	color: var(--hover);
	cursor: pointer;
	transition-duration: 0.5s;	
}

#Datar{
	width: 100%;
	padding: 20px;
}


#Footer{	
	padding: 10px;
	width: 100%;		
	background-color: var(--dark);	
	color: var(--thin);
	display: -webkit-flex;
    display: flex;
	flex-direction: column;    
}

#Footer div{
	width: 100%;
	display: -webkit-flex;
    display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-size:14px;	
}

.btn100{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width:100px;
	height:30px;
	font-size:14px;
	border:solid 1px var(--light);
	border-radius:5px;
	background-color: var(--high);
	color: var(--thin);
	transition-duration: 0.4s;
	letter-spacing: 5px;
}

.btn100:hover{
	color: var(--hover);
	background-color: var(--light);
	cursor: pointer;	
}

.btn100:active{
	transform: translateY(4px);
}

.btn100:disabled{
	background-color: var(--light);	
}

.input_text{
	width:150px;
	height:26px;
	font-size:16px;
	border:solid 1px var(--light);
	border-radius:5px;	
}

.input_file{
	width:300px;
	font-size:16px;
	border:solid 1px var(--light);
	border-radius:5px;	
}

.input_select{
	width:150px;
	height:26px;
	font-size:16px;
	border:solid 1px var(--light);
	border-radius:5px;
	text-align: center;
	text-align-last: center;
}


