common.css 1.6 KB

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.scroll{
    width: 100%;
    overflow: hidden;
    padding: 0 0.32rem;
    box-sizing: border-box;
    padding-bottom: 2rem;
    height: 16.24rem;
    margin-top: 1rem;
}
.display-flex-around{
    display: flex;
    justify-content: space-around;
    align-items: center;
} 
.display-flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
} 
.display-flex-between{
    display: flex;  
    justify-content: space-between;
    align-items: center;
}
.display-flex{
    display: flex;  
    align-items: center;
}
.p-1{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.p-2{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.onBottom{
    width: 100%;
    height: auto;
    padding: 0.32rem 0;
    text-align: center;
    color: rgb(228, 226, 226);
    font-size: 0.24rem;
}
.footer{
    width: 100%;
    height: auto;
    padding: 0.15rem 0.32rem 0.32rem;
    box-sizing: border-box;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
}
.footer_button{
    width: 100%;
    height: 0.88rem;
    opacity: 1;
    background: rgba(37.19,124.31,255,1);
    color: rgba(255,255,255,1);
    font-size: 0.32rem;
    font-weight: 500;
    font-family: "PingFang SC";
    text-align: center;
    line-height: 0.88rem;
}