@charset "utf-8";
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}
#bsWXBox {
    box-sizing: content-box;
}
ul{
    list-style: none;
}
body,
p,
ul,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
body {
    font-family:  "microsoft yahei",arial;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    min-width: 1200px;
}
a:link,
a:visited {
    text-decoration: none;
    outline: none;
    color: #333;
}
a:hover,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
}
img {
    border: 0;
}
table {
    border-collapse: collapse;
    width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
    cursor: pointer;
    outline: none;
}
input[type='checkbox'],
input[type='radio'] {
    position: relative;
    vertical-align: middle;
    margin-top: -2px;
    margin-bottom: 1px;
    margin-left: 5px;
    margin-right: 5px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
    padding: 0px;
    color: #666;
    outline: none;
}
.f-l {
    float: left;
}
.f-r {
    float: right;
}
/*清楚浮动*/
.clearfix:after {
    clear: both;
    height: 0;
    content: "";
    line-height: 0;
    font-size: 0;
    display: block;
}
/*图片垂直水平居中*/
.middleCenter{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    display: block;
    vertical-align: middle;
    text-align: center;
    margin: auto;
}
/*页面主体区域的宽*/
.container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
