@charset "UTF-8";
html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h4, h4, h5, h6, form, fieldset, input, button, textarea, p, blockquote, table, tr, th, td {
    padding: 0;
    margin: 0;
}

*{
    box-sizing: border-box;
}
input, textarea{
    background: none;
    border: none;
    outline: none;
    font-family: '微软雅黑';
}
ul,li,dl,dt,dd,a,em,span,b,i{
    list-style: none;
    text-decoration: none;
    font-style: normal;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}
body {
    font-size: 14px;
    color: #303030;
    font-family: '微软雅黑';
}
table{
    width: 100%;
    border-collapse: collapse;
}
img{
    cursor:pointer;
    vertical-align: middle;
}
a, span, em, i{
    display: inline-block;
}
a:focus,a:hover{
    text-decoration: none;
}
select{
    padding:0 20px 0 10px;
}
select:focus {
    outline: none;
}
/*元素位置*/
.pr{
    position: relative;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
/*clearfix写在浮动元素的上层*/
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    font-size:0;
}
.clearfix {*zoom:1;}

.trs{
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}

/*文字对齐*/
.textL{
    text-align: left;
}
.textC{
    text-align: center;
}
.textR{
    text-align: right;
}

/*字体加粗*/
.fontW{
    font-weight: bold;
}


.bgf{
	background-color: #fff;
}
.bgf4{
	background-color: #f4f5f6;
}