body {
    width: 100%;
    overflow-x: hidden;
}

header {
    border: 1px solid transparent;
}

/*当前页面中的链接样式处理*/
header a:link {
    color: #000000;
    outline: none;
    text-decoration: none;
}

header a:visited {
    color: #000000;
}

header a:hover {
    color: #F66E32;
}

header a:active {
    color: #F66E32;
}

/*导航 start*/
#navigation {
    height: 60px;
    padding-top: 37px;
    width: 1400px;
    margin: 0 auto;
}

.navigation {
    display: flex;
    justify-content: space-between;
}

.navigation > img {
    height: 52px;
}

.navUl > li {
    float: left;
    font-family: '微软雅黑';
    width: 95px;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    padding: 0 5px;
    margin-right: 20px;
}

.navUl > li a {
    display: inline-block;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    width: 80px;
}

/*.navUl > li:hover {*/
/*    border-bottom: 2px solid #0e55a0;*/
/*}*/

/*导航 end*/
/*头部固定定位*/
.fixTop {
    position: fixed;
    z-index: 10000;
    background-color: white;
    width: 100%;
    transition: all linear .2s;
    box-shadow: 0 0 10px #333;
}
