/**
 * 通用样式
 * ---------------------------------------------
 */

body {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}

input {
	border: 1px solid #99C0EF;
	border-radius: 5px;
	background: transparent;
}

select {
	border:1px solid #99C0EF;
	border-radius: 5px;
	width: 200px;
	background: transparent;
}

ul {
	margin-bottom: 0;
}

a{
	color: blue;
}
a:hover{
	color: blue;
}


/**
 * 结构化样式
 * ---------------------------------------------
 */

/* 结构化样式：顶部 logo */
.logo{
	display: inline-block;
	margin-top: 40px;
	margin-left: 120px;
}
.logo div{
	float: left;
}
.logo-descrip{
	color: white;
	margin-left: 20px;
}
.logo-descrip span:first-child{
	font-size: 27px;
}

/* 结构化样式：nav */
.head-nav{
	height: 50px;
	margin-top: 20px;
	background: rgba(243, 243, 243, 0.55);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fF3F3F3,endColorstr=#7fF3F3F3);
}

.head-nav span{
	color: #4A90E2;
}

.head-nav>div{
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
	max-width: 1000px;
}
.head-nav ul{
	list-style: none;
	height: 50px;
	padding: 0;
}
.head-nav ul li{
	float: left;
	margin-left: 80px;
	text-align: center;
	color: #9B9B9B;
	height: 50px;
	line-height: 50px;
	font-weight: 600;
	cursor: pointer;
	font-size: 16px;
}

/* 结构化样式：主要区域 */
#main {
    min-height: 80%;
    width: 100%;
    display: block;
    background-image: url(/res/img/background.png);
    background-size: cover;
    min-width: 1000px;
}

/* 结构化样式：底部 */
.footer {
	background: #585756;
	padding-top: 30px;
	padding-bottom: 20px;
}

.footer-container {
	padding: 0;
	background: #585756;
	min-width: 1000px;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.footer-left {
	float: left;
	color: #b6b5b5;
	font-size: 13px;
	margin-left: 20px;
}

.footer-right {
	float: left;
	color: #b6b5b5;
	font-size: 13px;
}

.footer-right div{
	display: inline-block;
}

.footer-right div:nth-child(3){
	position: relative;
	padding-right: 10px;
	padding-left: 5px;
	top: 20px;
}

.glyphicon-earphone{
	top: -5px;
	font-size: 30px;
}
