* {
    box-sizing: border-box
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
    position: relative;
}
.clearfix {
    zoom: 1;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.img-fit {
    display: block;
    width: 100%;
    height: auto;
}
a {
    text-decoration: none;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.line-one {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.line-two {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.flex {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.align-center {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}
.justify-center {
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
}
.flex-1 {
    width: 0;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
}
