@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, textarea, th, td, a {
    font-family: 微软雅黑, Microsoft YaHei, \5FAE\8F6F\96C5\9ED1;
    font-size: 14px;
    color: #4c4c4c
}
:focus {
    outline: 0;
}
img {
    display: block;
    max-width: 100%;
    border: 0;
    outline: none;
    vertical-align: middle;
}
ul, li, ol {
    list-style: none outside none;
}
input, button {
    border: 0;
    outline: none;
    background: none;
    -webkit-filter: chroma(color=#000000);
    filter: chroma(color=#000000);
}
input[type=text]::-ms-clear,input[type=text]::-ms-reveal{display:none;}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #bdbcbc;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    color: #bdbcbc;
}
input::-moz-placeholder, textarea::-moz-placeholder {
    color: #bdbcbc;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #bdbcbc;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
i, em, b {
    font-style: normal;
}
::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder {
    color: #999;
    font-family: 微软雅黑, Microsoft YaHei, \5FAE\8F6F\96C5\9ED1;
    font-size: 12px;
}
a, a * {
    text-decoration: none;
    outline: none;
    star: expression(this.onFocus=this.blur());
}
::selection {
    background: #f20e0e;
    color: #fff;
}
::-moz-selection {
    background: #f20e0e;
    color: #fff;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table td {
    word-break: break-all;
    word-wrap: break-word;
}
input {
    font-family: 微软雅黑, Microsoft YaHei, \5FAE\8F6F\96C5\9ED1;
    font-size: 12px;
}
.clearfix {
    clear: both;
    zoom: 1;
}
.clearfix:after {
    content: '';
    display: block;
    clear: both;
}
.clearfix:before {
    content: '';
    display: block;
    clear: both;
}
.fl {
    float: left
}
.fr {
    float: right
}
/*单行溢出*/
.one-txt-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*多行溢出 */
.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
button {
    cursor: pointer;
}
.hiddenBox {
    display: none;
}
/*滚动禁止*/
.stopScrollX {
    overflow-x: hidden;
}
.stopScroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/*遮罩层*/
#mask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    background-color: #000;
    opacity: 0.5;
    filter: alpha(opacity=50);
}