@charset "gb2312";
/*
重置样式表目录：
              重置样式：第10行-----到103行

              自定义类：第110行-----到130行

              共公样式：第135行以后-----
*/

/*重置样式开始3-50行*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

pre, html, body, div, ol, ul, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, input, button, textarea, p, span, table, th, td, form, img, div {
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}

pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

img, a, input, button {
    border: none;
    outline: none;
    background: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6, b {
    font-weight: normal;
    cursor: hand;
}

em, i, b {
    font-style: normal;
}

ul, ol {
    list-style: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.noselect * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-before:before {
    display: none !important;
}

.no-after:after {
    display: none !important;
}

.no-mt {
    margin-top: 0 !important;
}

.no-mr {
    margin-right: 0 !important;
}

.no-mb {
    margin-bottom: 0 !important;
}

.no-ml {
    margin-left: 0 !important;
}

.no-bt {
    border-top: 0 !important;
}

.no-br {
    border-right: 0 !important;
}

.no-bb {
    border-bottom: 0 !important;
}

.no-bl {
    border-left: 0 !important;
}

.no-all-b {
    border: 0 !important;
}

/*重置样式结束*/

/*自定义类及操作习惯 50--70*/

body {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #fff;
    color: #333;
    font: 14px/1.5 "宋体",'iconfont', "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
}

.wrap {
    width:1200px;
    margin:0 auto;
    
}

.fr {
    float: right;
    -display: inline;
}

.fl {
    float: left;
    -display: inline;
}

.in-block {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.por {
    position: relative;
}

.poa {
    position: absolute;
}

.fontsong {
    font-size: 12px;
    font-family: "SimSun", serif;
}

.hide {
    display: none;
}

.clearfix {
    *zoom: 1; /*IE/7/6*/
}

.clearfix:before, .clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: "";
    height: 0;
}

.clearfix:after {
    clear: both;
}

.tl {
    text-align: left !important;
}

.tc {
    text-align: center !important;
}

.tr {
    text-align: right !important;
}

/*文本强制不换行*/
.text-nowrap {
    white-space: nowrap;
    word-wrap: normal;
}

/*文本强制换行*/
.text-break {
    white-space: normal;
    word-wrap: break-word;
 
}

/*文字溢出显示省略号单行*/
.text-ellipsis {
    display: block;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis; /* 1 */
    text-overflow: ellipsis;
    text-align:left; /* 2 */
}
/*文字溢出显示省略号显示多行*/
.text-ellipsis-conts{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;/*需要显示的行数*/
	-webkit-box-orient: vertical;}


