@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong,
sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    line-height:inherit;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    outline: none;
}
a:link, a:visited {
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    text-decoration: none;
}
a img {
    border: none;
}

ol, ul, li, dl {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -icab-text-overflow: ellipsis;
    -khtml-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
}

/**控制div中的img的css,外层需固定高宽**/
.div-img {
    margin: 0px auto;
    text-align: center;
}
.div-img em {
    display: inline-block;
    width: 0;
    overflow: hidden;
    height: 100%;
    vertical-align: middle;
}
.div-img img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    /* for IE6 _height: 100%; */
    _width: 100%;
}
.block{
    padding-right:0;
    padding-left:0;
    margin:0 auto;
}
/*****use bootstrap.css to define here*****/
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .row:after, .row:before {
    display: table;
    content: " ";
}
.clearfix:after, .container-fluid:after, .container:after, .row:after {
    clear: both;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

/* 自定义弹出窗口 */
.cl-dialog {
    display: none;
}
.cl-dialog.active {
    display: block;
}
.cl-dialog .masker {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}
.cl-dialog.toper .masker {
    z-index: 1002;
}
.cl-dialog .dialoger {
    position: fixed;
    z-index: 1001;
    background-color: #FFFFFF;
    border-radius: 6px;
}
.cl-dialog.toper .dialoger {
    z-index: 1003;
}
.cl-dialog.dialog-center .dialoger {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


