/* 
* @Author: anchen
* @Date:   2016-07-24 11:59:09
* @Last Modified by:   anchen
* @Last Modified time: 2016-07-24 12:11:00
*/
@charset 'utf-8';
/* CSS reset */
html {
    color: #000;
    background: #FFF;
    font-family: Arial, 'Microsoft YaHei', '宋体';
}

/*清除默认的内边距和外边距等*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, strong {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei', Arial, '宋体';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*清除默认边框*/
fieldset, img {
    border: 0;
}

a {
    text-decoration: none;
    color: #00c;
    outline: none;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

/*此处待添加默认链接颜色*/
var, em, strong {
    font-style: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
    font-style: inherit;
    font-weight: inherit;
}

del, ins {
    text-decoration: none;
}

li {
    list-style: none;
}

caption, th {
    text-align: left;
}

/*清除默认的字体大小和文字粗细*/
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

input, button, textarea, select, optgroup, option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

input, button, textarea, select {
    *font-size: 100%;
}

body {
    -webkit-text-size-adjust: none;
}

/*清除浮动*/
.clearfix:after {
    content: "\200B";
    display: block;
    height: 0;
    clear: both;
}

/*清除浮动的兼容IE*/
.clearfix {
    *zoom: 1;
}

/*去除input的默认样式*/
input {
    outline: none;
    border: none;
}

input::-ms-clear {
    display: none;
}

input::-ms-reveal {
    display: none;
}