/*基础配置*/
*{
    margin: 0;
    padding: 0;
    cursor: pointer;
}
a{
    color: #666666;
    text-decoration: none;
}
body{
    margin: 0 auto;
    max-width: 1080px;
    background: white;
    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%;
    /*min-height: 812px;*/
    overflow-y: auto;
    background-color: white;
}
/*头部搜索*/
#container .fixed-search{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}
#container #search{
    width: 100%;
    background-color: white;
    height: 45px;
    position: relative;
    /*margin-bottom: 5px;*/
    border-bottom: 1px solid #f6f6f6;
}
#container #search>div{
    position: absolute;
    height: 35px;
    top: 5px;
    left: 10px;
    right: 40px;
    width: auto;
    display: block;
    border-radius: 30px;
}
#container #search>div input{
    width: 90%;
    padding: 0 5%;
    background-color: #f6f6f6;
    outline: 0;
    border: 0;
    height: 100%;
    border-radius: 30px;
    line-height: 35px;
    font-size: 15px;
    color: #444444;
}
#container #search>img{
    width: 25px;
    height: 25px;
    position: absolute;
    right: 7px;
    top: 10px;
}
#container #search2{
    width: 100%;
    background-color: white;
    height: 45px;
    position: relative;
    margin-bottom: 5px;
    border-bottom: 1px solid #f6f6f6;
}
#container #search2>div{
    position: absolute;
    height: 35px;
    top: 5px;
    left: 35px;
    right: 40px;
    width: auto;
    display: block;
    border-radius: 30px;
}
#container #search2>div input{
    width: 90%;
    padding: 0 5%;
    background-color: #f6f6f6;
    outline: 0;
    border: 0;
    height: 100%;
    border-radius: 30px;
    line-height: 35px;
    font-size: 15px;
    color: #444444;
}
#container #search2>img:first-child{
    width: 25px;
    height: 25px;
    position: absolute;
    left: 5px;
    top: 10px;
}
#container #search2>img:last-child{
    width: 25px;
    height: 25px;
    position: absolute;
    right: 7px;
    top: 10px;
}
/*头部搜索*/
/*主内容框架*/
/*底部导航栏目*/
#footer{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    box-sizing: border-box;
    width: 100%;
    list-style: none;
    background-color: #f0e2c8;
    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: 20%;
    font-size: 12px;
    color: #767676;
}
#footer .active{
    color: #F83333;
}
#footer a img{
    width: 25px;
    height: 25px;
    display: block;
    margin: 5px auto 2px;
}
/*底部导航栏目*/
#title{
    width: 100%;
    height: 35px;
    background-color: white;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}
#title img{
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 8px;
}
#title div{
    width: 100%;
    text-align: center;
    font-size: 15px;
    line-height: 35px;
}