*{
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
    text-decoration: none;
}
@keyframes Vertical {
    from {
        bottom: 1.8rem;
        transform: scale(1);
    }
    to {
        bottom: 1.4rem;
        transform: scale(0.6);
    }
}
html,body{
    width: 100%;
    background: #5f0106;
    font-size: 0.2rem;
}
.banner{
    width: 100%;
    position: relative;
}
.banner .logo{
    position: absolute;
    width: 2.3rem;
    left: 0.6rem;
    top: 0.6rem;
    z-index: 9;
}
.banner .Pimg{
    width: 100%;
    display: block;
}
.banner .Mimg{
    width: 100%;
    display: none;
}
.banner .tobottom{
    cursor:pointer;
    width: 0.6rem;
    position: absolute;
    left: 50%;
    right: 50%;
    margin: 0 auto;
    z-index: 9;
    bottom: 1.8rem;
    animation-name: Vertical;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.inner{
    width: 80%;
    margin: 0 auto;
    padding: 0 0.4rem;
}
.inner a{
    display: block;
    margin: 0.7rem 0;
}
.inner dl{
    display: flex;
    justify-content: space-between;
}
.inner dl dt{
    width: 5.54rem;
    height: 2.36rem;
}
.inner dl dt img{
    width: 5.54rem;
    display: block;
}
.inner dl dd{
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 0.5rem;
}
.inner dl dd span{
    font-size: 0.3rem;
    font-weight: 600;
}
.inner dl dd p{
    font-size: 0.24rem;
    text-align: justify;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3; 
    line-height: 0.38rem;
    font-weight: 300;
}
.footer{
    width: 100%;
}
.footer .Pfoot{
    width: 100%;
    display: block;
}
.footer .Mfoot{
    width: 100%;
    display: none;
}
@media screen and (max-width: 750px){
    @keyframes Verticaltow {
        from {
            bottom: 0.6rem;
            transform: scale(1);
        }
        to {
            bottom: 0.4rem;
            transform: scale(0.6);
        }
    }
    .banner .Pimg{
        width: 100%;
        display: none;
    }
    .banner .Mimg{
        width: 100%;
        display: block;
    }
    .banner .tobottom{
        animation-name: Verticaltow;
        animation-duration: 1s;
        animation-iteration-count: infinite;
    }
    .inner a{
        display: block;
        margin: 1rem 0;
    }
    .inner dl{
        flex-direction: column;
    }
    .inner dl dt{
        width: 100%;
        height: auto;
    }
    .inner dl dt img{
        width: 100%;
    }
    .inner dl dd{
        padding: 0;
    }
    .inner dl dd span{
        font-size: 0.3rem;
        padding: 0.32rem 0 0.2rem 0;
    }
    .inner dl dd p{
        font-size: 0.24rem;
        overflow:hidden;
        text-overflow:ellipsis;
        display:-webkit-box;
        -webkit-box-orient:vertical;
        -webkit-line-clamp:5; 
    }
    .footer .Pfoot{
        width: 100%;
        display: none;
    }
    .footer .Mfoot{
        width: 100%;
        display: block;
    }
}