/******************
**公用的一些样式放在这里
*******************/
@font-face {
    /*该字体一般用于数字中*/
    font-family: 'HelveticaNeue';
    src: url('../HelveticaNeueLTPro-Th.otf');
}

/***背景颜色**/
.bgWhite{
	/*白色背景*/
	background-color:#fff!important;
}
.bgGray{
	/*统一的灰色的背景*/
	background-color: #F3F3F3!important;	
}


/***边框****/
.borderCCC{
	border:1px solid #ccc;
}
.borderRedBottom{
	border-bottom:1px solid red;	
}
.borderBlue{
    border:2px solid #bdd1e6
}
.f16{font-size:16px;}
.f14{font-size:14px;}
.f12{font-size:12px;}

/**文字截断**/
.text-break {
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-all;
}
/**文字截断出省略号**/
.text-break-ell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
}

/* iscroll自定义滚动条样式 */

.iScrollHorizontalScrollbar {
    position: absolute;
    z-index: 9999;
    height: 16px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    overflow: hidden;
}

.iScrollHorizontalScrollbar.iScrollBothScrollbars {
    right: 18px;
}

.iScrollVerticalScrollbar {
    position: absolute;
    z-index: 9999;
    width: 4px;
    bottom: 2px;
    top: 2px;
    right: 2px;
    overflow: hidden;
}

.iScrollVerticalScrollbar.iScrollBothScrollbars {
    bottom: 18px;
}

.iScrollIndicator {
    position: absolute;
    background: #e0e0e0;
    width: 4px;
    border-radius: 2px;
}

.iScrollHorizontalScrollbar .iScrollIndicator, .iScrollVerticalScrollbar .iScrollIndicator {
    height: 100%;
    background: #e0e0e0;
}
