
ul li {
	list-style: none;
}
p{
	margin:0;
}
*{
	margin:0;
	padding:0;
}
body{
	display: flex;
    flex-direction: column;
    height: 100%;
	font-family:微软雅黑, "Microsoft YaHei",宋体 !important;
}
a{
	text-decoration: none;
}
a:hover,a:focus,a:active{
	text-decoration: none!important;
}
input{
	outline: none;
	-webkit-appearance: none;
}
html{
    height: 100%;
}
header{
   /* 我们希望 header 采用固定的高度，只占用必须的空间 */
   /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
   flex: 0 0 auto;
}

.main-content{
   /* 将 flex-grow 设置为1，该元素会占用全部可使用空间 
      而其他元素该属性值为0，因此不会得到多余的空间*/
   /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
   flex: 1 0 auto;
}

.wrap{
    height: calc(100vh);
}
.dataTables_paginate.paging_simple_numbers {
    text-align: center;
}
