/*所有组件的css统一在此*/

/*dialog组件*/
/*对话框样式 2015-07-16*/
.dialog{
    width: 260px;
    min-height: 100px;
    height: auto;
    border-top: 3px solid #f46523;
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    z-index: 10000;
    color: #666;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.dialog-mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    z-index: 1;
    opacity: 0.5;
}
.dialog-head{
    font-size: 15px;
    line-height: 30px;
    padding: 0 10px;
    border-bottom: 1px solid #f46523;
}
.dialog-close{
    width: 32px;
    height: 32px;
    display: none;
    font-size: 0;
    background: url('../images/freeflow/close_32.png') center no-repeat;
}
.dialog-title{
    display: block;
    color: #000000;
}
.dialog-body{
    padding: 15px 10px;
    font-size: 14px;
    color: #333333;
}
.dialog-btn{
    width: 100%;
    line-height: 40px;
    background: #f5f5f5;
    border-top: 1px solid #e6e6eb;
}
.dialog-btn-left-div{
    border-right: 1px solid #e6e6eb;
}
.dialog-btn-left, .dialog-btn-right{
    color: #333333!important;
    font-size: 15px;
    text-decoration: none;
    display: block;
    text-align: center;
}
.dialog-btn-right-div{
    margin-left: -1px;
}

/*alert组件*/
.crm_prompt_box {
    background-color: rgba(0,0,0,0.9);
    z-index: 100;
    position: absolute;
    max-width: 250px;
    border-radius: 8px;
    padding: 5px 10px;
}
.crm_prompt_image {
    float: left;
    width: 24px;
    height: 24px;
    margin: 0px 10px 0px 5px;
}

.crm_prompt_text {
    margin-right: 5px;
    height: 24px;
    line-height: 24px;
    vertical-align: middle;
    color: #fff;
    display: block;
    width: auto;
    max-width: 250px;
    word-break: keep-all;/* 不换行 */
    white-space: nowrap;/* 强制在同一行内显示所有文本，直到文本结束或者遭遇 br 对象。不换行 */
    overflow: hidden;/* 内容超出宽度时隐藏超出部分的内容 */
    text-overflow: ellipsis;/* IE 专有属性，当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}

