
/*--------------------------*/
.rightFixed {
    position: fixed;
    right: 0;
    /*top: 40%;*/
    bottom: 5%;
    width: 115px;
    border-radius: 90px;
    background: linear-gradient(180deg, #FCF0E2 0%, #FFFFFF 100%);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
    z-index: 999;

}

.rightFixed .item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 900px;
    position: relative;
    box-sizing: border-box;
    padding: 15px 12px;
}

.rightFixed .ico1 {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 16px;
}

.rightFixed .xian{
    width: 100%;
    height: 0px;
    display: block;
    border-top: 1px solid #8A5742;
    margin: 10px 0;
    opacity: 0.1;
}

.rightFixed  .xian5{
    display: none;
}

.rightFixed .item .box{
    width: 100%;
    position: relative;
}

.rightFixed .box a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rightFixed .box .ico{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    display: inline-block;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    padding: 4px;
}

.rightFixed .box .img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #8A5742;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rightFixed .box p{
    font-size: 14px;
    color: #1E1E1E;
    margin-top: 3px;
    text-align: center;
}

.fixed_bottom{
    width: 100%;
    border-top: 1px solid #8A5742;
    margin-top: 25px;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fixed_bottom .iconfont{
    width: 33px;
    height: 33px;background: #FFFFFF;
    box-sizing: border-box;
    border: 0.67px solid #8A5742;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rightFixed .item .code{
    width: 72px;
    height: 72px;
    border-radius: 8px;
    position: absolute;
    right: 130px;
    top: 2px;
    display: none;
    box-shadow: 0px 0px 32.87px 0px rgba(0, 0, 0, 0.25);
}

.rightFixed .item .code::before{
    content: '';
    width: 17px;
    height: 23px;
    display: inline-block;
    background: url("../img/sjx-ico.png") no-repeat;
    background-size: cover;
    position: absolute;
    top: 25px;
    right: -15px;
}

.rightFixed .item .code img{
    width: 100%;
}

.rightFixed .item .box:hover .code{
    display: block;
}

@media screen and (max-width: 1140px) {

    .rightFixed{
        width: 80px;
    }

    .rightFixed .ico1{
        width: 48px;
        height: 48px;
    }

    .rightFixed .xian{
        margin: 10px;
    }

    .rightFixed .box p{
        font-size: 12px;
    }
    .fixed_bottom{
        margin-top: 5px;
    }
}