html, body {
    margin:0px;
    font-size:14px;
    line-height: 24px;
    color:#333;
    overflow-x: visible;
    overflow-y: visible;
    font-family: 微软雅黑;
}
ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.button {
    display: inline-block;
    cursor: pointer;
    outline: none;
    font-size: 14px;
    text-align: center;
    background-color: #1b82d1 !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    border: none !important;
    padding: 9px 20px !important;
}

.outer {
    background: #ffffff;
    color: #666666;
    border: 1px solid rgba(209,209,209,1);
}

.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.ellipsis2{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bold{
    font-weight: bold;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 999;
}

/* 滚动条 */
.wait-content::-webkit-scrollbar{
    width: 5px;
    background: #dedede;

}
.wait-content::-webkit-scrollbar-thumb{
    background: #999999;
    border-radius: 4px;
}

/* input textarea placeholder的样式 */
/* placeholder颜色 */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #b2b2b2;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #b2b2b2;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #b2b2b2;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #b2b2b2;
}
