@charset "UTF-8";

.fbanner{
    position: fixed;
    z-index: 10;
    left: 2%;
    bottom: 2%;
    width: 300px;
    /* opacity: 0; */
    /* transition: all 800ms; */
    cursor: pointer;
}
.fbanner_item:hover{
    opacity: 0.9;
    transition: all 800ms;
}

.fbanner.scrollin{
    /* opacity: 1; */
}

.fbanner_item{
    position: relative;
}
.fbanner_item .peke{
    position: absolute;
    top: 3px;
    right: 6px;
    cursor: pointer;
}
.fbanner_item .peke img{
    width: 25px;
    height: 25px;
}

.fbanner_item .banner_img img{
    width: 100%;
}

@media screen and (max-width:420px){
    .fbanner{
        left: 50%;
        transform: translateX(-50%);
    }
}