@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    font-family: 'Microsoft YaHei';
}

html {
    background: white;
    color: black;
}

img {
    /*max-width: 100%;*/
    border: 0;
    border: none;
    /* vertical-align: middle; */
}

ol,
ul,
li {
    list-style: none;
}


/* 默认不显示下划线，保持页面简洁 */

ins,
a {
    text-decoration: none;
    color: black;
}


/* 让链接在 hover 状态下显示下划线 */


/*a:hover {
    text-decoration:underline;
}*/


/* 去除 ie6 & ie7 焦点点状线 */

a:focus,
*:focus {
    outline: none;
}

input {
    border: none;
    appearance: none;
    -moz-appearance: none;
    outline: none;
    /** input标签聚焦不出现默认边框: **/
    -webkit-appearance: none;
    /** 用于IOS下移除原生样式 **/
}

button {
    border: 0;
    background-color: none;
    outline: none;
    -webkit-appearance: none;
    /** 用于IOS下移除原生样式 **/
}

select {
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent;
    padding-right: 14px;
}


/* 去掉 table cell 的边距并让其边重合 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ie bug：th 不继承 text-align */

th {
    text-align: inherit;
}


/* 统一上标和下标 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/* 清浮动  clearfloat */

.clearfloat:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0
}

.clearfloat {
    zoom: 1
}


/* v-22-04 */