/* 把我们所有标签的内外边距清零 */
* {
    margin: 0;
    padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
}
/* em 和 i 斜体的文字不倾斜 */
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
em,
i {
    font-style: normal
}
/* 去掉li 的小圆点 */
li {
    list-style: none
}

img {
    /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
    border: 0;
    /* 取消图片底侧有空白缝隙的问题 */
    vertical-align: middle
}

button {
    /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
    cursor: pointer
}
/* 设置a字体颜色 */
a {
    color: #666;
    text-decoration: none
}
/* 设置a选中颜色 */
a:hover {
    color: black;
}

button,
input {
    /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
    font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    /* 默认有灰色边框我们需要手动去掉 */
    border: 0; 
    outline: none;
}

body {
    /* CSS3 抗锯齿形 让文字显示的更加清晰 */
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font: 14px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    color: #666
}


/* 清除浮动 */
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    
}

.clearfix::after {
    clear: both;
}
.navbox{
    max-width: 1920px;
    min-width: 1200px;
    height: 50px;
    /*background-color: #56AAF3;*/
    background-color: #5BB7F6;
}
.navbox ul{
    width: 1200px;
    height: 50px;
    margin: 0 auto;
}
.navbox ul li{
    width: 150px;
    float: left;
    text-align: center;
}
.navbox ul li a{
    font-family: "微软雅黑";
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
    color: #fff;
}
.navbox ul li:hover{
    background-color: #1C78C4;
}
.headerbannertop{
	width: 100%;
	height: 20px;
position:absolute;
top:5px;
right:20%;
}
.headerbannertop ul li{
	list-style: none;
	font-size: 16px;
	
	float: right;
	line-height: 20px;
	margin: 10px 10px 0 10px;
	padding: 0 10px 0 10px;
	border: 1px solid #898f93;
	border-radius: 18px;
	background-color:#006eab;
}
.headerbannertop ul li a{
	color: #FFFFFF;
	display:inline !important;
}