/* CSS Document */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
	
	-webkit-user-select: none; /* Safari */
            -moz-user-select: none; /* Firefox */
            -ms-user-select: none; /* IE10+ */
            user-select: none; /* 标准语法 */
}

.content {
    padding: 10px;
/*    height: 150vh;  让内容足够长，方便测试滚动 */
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #EEEEEE;
    color: #333;
    text-align: center;
	font-size: 7pt;
    padding: 5px 0;
/*    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);  添加阴影效果 */
}