/*2019/8/20 
**本css，实现了页面底部显示版权信息，且随着内容多少而变化；
**但是，加入bootstrap.css时就出现了滑动条；**
**解决办法：可以随便加入一张图片即可解决问题！不知为什么？
*/
*{padding:0;margin:0;}
html{height:100%;}
body{min-height:100%;}
body{position:relative;}
body{font-family:"微软雅黑","Microsoft YaHei",Arial,Helvetica,sans-serif,"宋体";}

footer{
    width:100%;                                               
    min-height:50px;
    height:auto;    
    font-size:9px;                                            
    text-align: center;                                       
    line-height: 50px;                                        
    background-color: rgb(246,244,240);                       
    z-index: 9999;                                            
    position:absolute;                                        
    bottom:0;                                                 
    left:0;
}                                                             
.box{                                                         
    padding-bottom:80px;
} 

