/** 通用样式 **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img {
    border: medium none;
    margin: 0;
    padding: 0;
}

body, button, input, select, textarea {
    font: 14px/1.6 'Microsoft YaHei', tahoma, Arial, helvetica, sans-serif;
    color: #333;
    background-color: #f0f2f5;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

em {
    font-style: normal;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #444;
    outline: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: #1a3d7c;
}

fieldset, img {
    border: medium none;
    vertical-align: middle;
}

body a {
    outline: none;
    blr: expression(this.onFocus=this.blur());
}

a:focus {
    outline: none;
    -moz-outline: none;
}

a:hover {
    text-decoration: none;
    color: #1a3d7c;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

img:hover {
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

/* 清除浮动 */
.clearfix:after {
    clear: both;
    content: "\200B";
    display: block;
    height: 0;
}

.clearfix {
    *zoom: 1;
}

.fl {
    float: left;
}

.clear {
    clear: both;
}

.fr {
    float: right;
}

.w980 {
    width: 1200px;
    height: auto;
    margin: 0 auto;
}

.hide {
    display: none;