html,body {
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 0.14rem;
}

.indexPage {
    -webkit-overflow-scrolling: touch;
}

.header .iconfont{
    position: absolute;
    top: 0.05rem;
    left: 0.15rem;
}

input {
    outline: none;
    background:transparent;
    border: none;
}
input:focus {
    outline: none;
    background:transparent;
}

.hide {
    display: none;
}
.show {
    display: block;
}

.hideText {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hideText2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.hideText3 {
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* 编辑器样式补充 */

table {
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
}

table td, table th {
    border: 1px solid #cad9ea;
    color: #666;
    height: 30px;
}

table thead th {
    background-color: #CCE8EB;
    width: 100px;
}

table tr:nth-child(odd) {
    background: #fff;
}

table tr:nth-child(even) {
    background: #F5FAFA;
}







