html, body {
    font-family: Verdana, "Lantinghei SC", "Hiragino Sans GB", "Microsoft Yahei", Helvetica, arial, \5b8b\4f53, sans-serif;
    height: 100%;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
/* 垂直宽 水平高样式 (必须的) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/* 滚动条的滑轨背景颜色 */
::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #eee;
}
/* 滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #ccc;
}
/* 滑轨两头的监听按钮*/
::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}
/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
::-webkit-scrollbar-corner {
    background-color: #bdc8cc;
}

.header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 50px;
    background: #c4ad8b;
    opacity: 1;
}
.header .logo {
    position: absolute;
    top: -1px;
    width: 131px;
    height: 47px;
    background: url(../zw/imgs/logo.png) 20px 0 no-repeat;
}

.container{
    width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 60px 0;
}

.left {
    width: 200px;
    background-color: #c4ad8b;
    float: left;
    text-align: center;
    font-size: 20px;

}

.left ul {
    padding: 0;
    overflow: auto;
}

.left ul li a {
    display: block;
    padding: 0 8px;
    line-height: 40px;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.left ul li a.active,
.left ul li a:hover {
    color: #eee;
}

.right {
    float: right;
    width: 80%;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid #c4ad8b;
}

.footer {
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 50px;

    background: url(../zw/imgs/bg-footer.png) no-repeat;
    background-size: 100% 50px;
    text-align: center;
    line-height: 50px;
    font-size: 12px;
    color: #ccc;
}