* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    color: #202020;
    font-size: 0.56rem;
    background: #f8f8f8;
    
}
a {
    color: #202020;
    text-decoration: none;
}
a:focus,
img:focus {
    outline: none;
}
ul, li {
    list-style: none;
}
.clearfix:after {
    content: '';
    clear: both;
    display: block;
    overflow: hidden;
    opacity: 0;
}
.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.hide {
    display: none;
}
input{
    outline:none
}
/* flex */
.flex{
    display: -webkit-flex; 
    display: flex;
}
.jusconte-start{
    justify-content:flex-start;
}
.jusconte-center{
    justify-content:center ;
}
.jusconte-between{
    justify-content:space-between;
}
.alcontent-center{
    align-content:center 
}
.alignitem-center{
    align-items:center;
}
.hidden{
    display: none;
}

.text-r{
    text-align: right;
}
.bor-b{
    border-bottom:1px solid #e4e4e4;
}
.pos-l{
    position: relative;
}

.pos-a{
    position: absolute;
}