* {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

/* 页面背景颜色  */
html {
    background-color: #000000;
}

/* 字体 */
@font-face {
    font-family: 'ziti1';
    src: url('../fonts/ziti.woff') format('woff');
}

body {
    font-family: 'ziti1', sans-serif;
}

/* 导航栏 */
header {
    background-color: black;
}

nav {
    width: 1100px;
    margin: 0 auto;
    height: 60px;
}

#logo {
    float: left;
    height: 60px;
}

#nav {
    float: right;
}

#nav>a {
    color: #fff;
    text-decoration: none;
    line-height: 60px;
    margin-left: 20px;
}

#nav>a:hover {
    color: #c00;
}

/* 清除浮动 */
.clear {
    clear: both;
}

/* 底部版权信息 */
footer {
    position: relative;
    background: url(../images/bg2.png) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0px;
}

#logo2 {
    float: left;
    height: 60px;
}

#logo3 {
    float: right;
    height: 60px;
}

#footer_box {
    width: 200px;
    margin: 0 auto;
    text-align: center;
    line-height: 30px;
    color: #fff;
}

/* 其他通用样式 */
h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}