/*基础配置*/
*{
    margin: 0;
    padding: 0;
    cursor: pointer;
}
a{
    color: #666666;
    text-decoration: none;
}
body{
    margin: 0 auto;
    max-width: 1080px;
    background: #fff;
    font-size: 18px;
    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;
    width: 100%;
}
*::-webkit-scrollbar {/*滚动条整体样式*/
    width: 0px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 0px;
}
#container {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 50px;
    width: 100%;
    font-family: Microsoft YaHei;
    font-style: normal;
    overflow-y: auto;
}
.dateTay{
    position: fixed;
    bottom: 85px;
    right: 10px;
    z-index: 999;
    text-align: center;
    font-size: 0;
}
.dateTay img{
    display: block;
    width: 55px;
    margin: 0 auto;
}
.dateTay div{
    position: absolute;
    font-size: 11px;
    top: 19px;
    left: 2px;
    color: #333333;
    transform:scale(0.8);
    -webkit-transform:scale(0.8);  /*兼容-webkit-引擎浏览器*/
    -moz-transform:scale(0.8);     /*兼容-moz-引擎浏览器*/
}

#navBar{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    box-sizing: border-box;
    width: 100%;
    list-style: none;
    font-size: 0;
    height: 50px;
    border-top: 1px solid #e6e6e6;
    background-color: white;
    font-family: Microsoft Yahei;
}
#navBar .item{
    display: inline-block;
    vertical-align: middle;
    width: 33.33%;
    height: 100%;
    color: #999999;
    font-size: 11px;
    text-align: center;
}
#navBar .active{
    color: #2c2c2c;
}
#navBar .item .img{
    height: 28px;
    width: 28px;
    display: block;
    margin: 4px auto -1px;
}

#title2{
    width: 80%;
    padding: 0 10%;
    height: 30px;
    background-color: white;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
    z-index: 999;
}
#title2 a{
    position: absolute;
    left: 5px;
}
#title2 img{
    width: 1.7rem;
    height: 1.7rem;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}