body{
    background-color: #f5f5f5;
    /*line-height: 1;*/
    font-size: 14px;
    font-family: "微软雅黑";
}

.bg-white{
    background-color: #ffffff!important;
}
.bg-grey{
    background-color: #eff0f0!important;
}
.bg-primary{
    background-color: #3aa835!important;
}
.bg-danger{
    background-color: #e84e1a!important;
}

.color-primary{
    color: #38a935!important;
}
.color-danger{
    color: #e84e1a!important;
}
.color-grey{
    color: #aaa!important;
}
.color-text{
    color: #333!important;
}
.color-white{
    color: #ffffff!important;
}
.color-adadad{
    color: #adadad!important;
}
.color-828282{
    color: #828282!important;
}


.no-border-radius{
    border-radius: 0!important
}
.text-center{
    text-align: center!important;
}
.text-left{
    text-align: left!important;
}
.text-right{
    text-align: right!important;
}
.text-es1{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-es2{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.font-12{
    font-size: 12px;
}
.font-14{
    font-size: 14px;
}
.font-16{
    font-size: 16px;
}
.font-18{
    font-size: 18px;
}
.font-20{
    font-size: 20px;
}
.font-24{
    font-size: 24px;
}
.font-28{
    font-size: 28px;
}
.font-30{
    font-size: 30px;
}

.line-height-18 {
    line-height: 18px;
}

.p-l-10 {
    padding-left: 10px;
}
.font-bold{
    font-weight: bold;
}

.margin-0{
    margin: 0!important
}
.m-t-5{
    margin-top: 5px;
}
.m-t-10{
    margin-top: 10px;
}
.m-t-15{
    margin-top: 15px;
}
.m-t-20{
    margin-top: 20px;
}
.m-t-30{
    margin-top: 30px
}
.m-t-40{
    margin-top: 40px
}
.m-t-60{
    margin-top: 60px
}
.m-r-5{
    margin-right: 5px;
}
.m-r-10{
    margin-right: 10px;
}
.m-r-15{
    margin-right: 15px;
}
.m-r-20{
    margin-right: 20px;
}
.m-r-30{
    margin-right: 30px;
}
.m-l-5{
    margin-left: 5px;
}
.m-l-10{
    margin-left: 10px;
}
.m-l-15{
    margin-left: 15px;
}
.m-l-20{
    margin-left: 20px;
} 
.m-l-30{
    margin-left: 30px;
} 
.m-b-5{
    margin-bottom: 5px;
}
.m-b-10{
    margin-bottom: 10px;
}
.m-b-15{
    margin-bottom: 15px;
}
.m-b-20{
    margin-bottom: 20px;
}
.m-b-30{
    margin-bottom: 30px;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
 
.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
 
.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex-align-start {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.flex-align-end {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}
 
.flex-pack-end {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
 
.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-pack-around {
	-webkit-justify-content:space-around;
	justify-content: space-around;
	-moz-box-pack:space-around;
	-webkit-moz-box-pack:space-around;
	box-pack:space-around;
}

.f-l{
	float: left;
}

.f-r{
	float: right;
}

.clearfix:after{
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden
}

.clearfix{
    *zoom:1;
}