/*基础配置*/
*{
    margin: 0;
    padding: 0;
    cursor: pointer;
}
a{
    color: #666666;
    text-decoration: none;
}
body{
    margin: 0 auto;
    max-width: 1080px;
    background: #fff;
    font-size: 14px;
    font-family: -apple-system,Helvetica,sans-serif;
    line-height: 1.5;
    color: #666;
    -webkit-text-size-adjust: 100%!important;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
}
*::-webkit-scrollbar {/*滚动条整体样式*/
    width: 0px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 0px;
}
/*基础配置*/
/*主内容框架*/
#container{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
    padding-bottom: 10px;
}
/*底部导航栏目*/
#footer{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    box-sizing: border-box;
    width: 100%;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 0 10px 0 hsla(0,6%,58%,.6);
    -webkit-box-shadow: 0 0 10px 0 hsla(0,6%,58%,.6);
    -moz-box-shadow: 0 0 10px 0 hsla(0,6%,58%,.6);
    font-size: 16px;
}
#footer a{
    text-align: center;
    box-sizing: border-box;
    float: left;
    background-color: transparent;
    width: 25%;
    font-size: 14px;
    color: #767676;
}
#footer .active{
    color: #0498E2;
}
#footer a span{
    font-size: 1.45rem;
    width: 25px;
    height: 25px;
    display: block;
    margin: 2px auto 4px;
}
.fixed-tool{
    position: fixed;
    right: 0;
    bottom: 100px;
}