
/* #region 初始化 */
*{
    margin: 0;
    padding: 0;
    
}
body{
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: #000000;
    display: block;
}

li{
    list-style: none;
}
.clearfloat{
    zoom: 1;
}

.clearfloat:after{
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}
.flex_row{
    display: flex;
}

.flex_col{
    display: flex;
    flex-direction: column;
}
.flex_align{
    display: flex;
    align-items: center;
}
.flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_space_between{
    display: flex;
    justify-content: space-between;
}

.position_center-x{
    left: 50%;
    transform: translate(-50%);
}
.position_center-y{
    top: 50%;
    transform: translateY(-50%);
}
.cursor{
    cursor: pointer;
}
html{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: hidden;
    }
img{
    display: block;
}
.textone{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.texttwo{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
   }
/* #endregion */


