/* 首页侧边栏 */
.layout-slide-float-right {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 80px;
    height: fit-content;
    z-index: 99;
}
.layout-slide-float-right .layout-slide-item {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom:10px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    cursor: pointer;
}
.layout-slide-float-right .layout-slide-item .img {
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.layout-slide-float-right .layout-slide-item img {
    width: 42px;
    vertical-align: middle;
}
.layout-slide-float-right .layout-slide-item:nth-child(1) {
    background: #FF5901;
}
.layout-slide-float-right .layout-slide-item:nth-child(2) {
    background: #0080FF;
}
.layout-slide-float-right .layout-slide-item:nth-child(3) {
    background: #00C9C2;
}
.layout-slide-float-right .layout-slide-item:nth-child(4) {
    background: #04AD0F;
}
.layout-slide-float-right .layout-slide-item .info {
    position: absolute;
    z-index: -1;
    right: 90px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 168px;
    height: 38px;
    padding: 0 18px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right center;
    background-image: url('../../image/layout/stbg.png');
    font-size: 18px;
    line-height: 38px;
    text-align: left;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(100%);
    transition: transform .3s ease-in, opacity .1s ease-out 0.2s;
}
.layout-slide-float-right .layout-slide-item:nth-child(1) .info {
    color: #FF5901;
}
.layout-slide-float-right .layout-slide-item:nth-child(2) .info {
    color: #0080FF;
}
.layout-slide-float-right .layout-slide-item:nth-child(3) .info {
    color: #00C9C2;
}
.layout-slide-float-right .layout-slide-item:nth-child(4) .info {
    width: 110px;
    height: 110px;
    padding: 5px;
    background: #fff;
}
.layout-slide-float-right .layout-slide-item:nth-child(4) .info img {
    width: 100%;
    height: 100%;
}
.layout-slide-float-right .layout-slide-item .info::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: -2px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right center;
    background-image: url('../../image/layout/stbg.png');
}
.layout-slide-float-right .layout-slide-item:nth-child(1) .info::before {
    background-image: url('../../image/layout/st1.png');
}
.layout-slide-float-right .layout-slide-item:nth-child(2) .info::before {
    background-image: url('../../image/layout/st2.png');
}
.layout-slide-float-right .layout-slide-item:nth-child(3) .info::before {
    background-image: url('../../image/layout/st3.png');
}
.layout-slide-float-right .layout-slide-item:nth-child(4) .info::before {
    display: none;
}
.layout-slide-float-right .layout-slide-item:hover .info {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(0);
}
