/*--------------通用样式--------------*/

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    font: 14px "微软雅黑", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    border: 0;
}

ol,
ul {
    list-style: none;
}

table td {
    border-collapse: collapse;
    border: 1px solid #999;
}

input,
select,
textarea {
    outline: none;
    border: none;
    background: #FFF;
}

textarea {
    resize: none;
    width: 400px;
    border: 1px solid #d9d9d9;
    height: 100px;
    border-radius: 2px;
}


/*--------------浮动float--------------*/

.float_l {
    float: left;
}

.float_r {
    float: right;
}


/*------------- 清除浮动 -----------*/

.clear {
    clear: both;
    height: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

.fixed:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.fixed {
    display: block;
    min-height: 1%;
}


/*------------a标签 ------------*/

a {
    text-decoration: none !important;
    outline: none;
}

a:hover {
    cursor: pointer;
}

.hand {
    cursor: pointer;
}


/*------------字体大小 ------------*/

.bold {
    font-weight: bold;
}

.font_28 {
    font-size: 24px;
}

.font_24 {
    font-size: 24px;
}

.font_22 {
    font-size: 22px;
}

.font_18 {
    font-size: 18px;
}

.font_16 {
    font-size: 16px;
}

.font_14 {
    font-size: 14px;
}

small {
    font-size: 12px;
}


/*------------文本行高 ------------*/

.lh_30 {
    line-height: 30px;
}

.lh_28 {
    line-height: 28px;
}

.lh_25 {
    line-height: 25px;
}

.lh_24 {
    line-height: 24px;
}

.lh_24 {
    line-height: 18px;
}


/*------------文本对齐方式 ------------*/

.text_c {
    text-align: center;
}

.text_r {
    text-align: right;
}

.text_l {
    text-align: left;
}


/*--------------单行文本溢出--------------*/

.oneover {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}