html{
    /* font-size: 5.2vw !important; */
}
*{
    /* font-size: 0.20rem; */
}

.common-fix-top{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1002;
    -webkit-box-shadow: 0 2px 4px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 5%);
}

.line-1{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.line-2{
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.line-3{
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.line-4{
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.hidden-all{
    overflow: hidden;
}
.hidden-x{
    overflow-x: hidden;
}
.hidden-y{
    overflow-y: hidden;
}
