@charset "UTF-8";
/*CSS初始化文件*/

body,p,h1,h2,h3,h4,h5,h6,ol,dl,ul,li,dt,dd {
     margin: 0;
     padding: 0;
     font-size: 12px;
     font-family: "微软雅黑","宋体","Helvetica Neue",Helvetica,Arial,sans-serif;
     list-style: none;
     background-color: #F6F7F9;
}
div{
    display: block;
}
h2 {
    display: block;
    font-size: 1.5em;
    -webkit-margin-before: 0.83em;
    -webkit-margin-after: 0.83em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;
}
*{
	box-sizing: content-box;
}
a {
    text-decoration: none;
    color: #000;
}
/*覆盖bootstrap*/
a:focus, a:hover{
	text-decoration: none;
	color: inherit;
}
a:focus{
	outline: none;
	outline-offset: 0;
}
i,s {
     font-style: normal;
     text-decoration: none;
}
input,img {
    margin: 0;
    padding: 0;
    /*去掉边框*/
    border: 0 none;
    /*去掉轮廓线*/
    outline-style: none;
    vertical-align: middle;
}
/*清除浮动*/
.clearfix:after {
     content: "";
     height: 0;
     line-height: 0;
     display: block;
     clear: both;
     visibility: hidden;
}
.clearfix {
     zoom: 1;
}
/*版心*/
.w {
    width: 1200px;
    margin: 0 auto;
}
.cententt{
    text-align: center;
    vertical-align:middle;
    height: 100%;
}