/* global.css - 全局布局样式 */
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "微软雅黑", tahoma, sans-serif;
}
.box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#top {
    width: 100%;
    height: 84px;
    background-color: #89C3F8;
}
#bbox {
    width: 1200px;
    margin: 0 auto;
}
#logo {
    width: 204px;
    height: 66px;
    margin-right: 102px;
    float: left;
}
#nav {
    padding-top: 20px;
    align-items: center;
}
#nav li {
    list-style: none;
    float: left;
    margin-right: 35px;
}
#nav a {
    height: 46px;
    width: 150px;
    background-color: #A2CFFE;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-family: "宋体";
    font-weight: bolder;
    text-align: center;
    line-height: 46px;
    border-radius: 49px;
    display: inline-block;
}
#nav a:hover {
    background: #FFC4E1;
}
#nav li:nth-child(5) {
    margin-right: 0;
}
.clear {
    clear: both;
}
#footer {
    width: 100%;
    height: 101px;
    background: #9ED7FF;
    margin-top: 185px;
    padding-top: 50px;
}
#footer p {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
#footer a {
    text-decoration: none;
    color: #666;
    background: url("../images/record.png") no-repeat left center;
    padding-left: 30px;
}
#footer a:hover {
    color: #999;
}