/* 侧边 */

.side{
    position: fixed;
    right: 50px;
    bottom: 20%;
}


@media screen and (max-width:1000px) {
    .layoutRight{
        width: 35%;
    }
    .layoutLeft{
        width: 60%;
    }
    .side{
        position: fixed;
        right: 20px;
        bottom: 20%;
    }
}
@media screen and (max-width:600px) {
    .layoutRight{
        width: 100%;
    }
    .layoutLeft{
        width: 100%;
    }
    .side{
        position: fixed;
        right: 10px;
        bottom: 20%;
    }
}