.rightFixed {
    position: fixed;
    right: 13px;
    bottom: 99px;
    width: 82px;
    height: 454px;
    background: #FFFFFF;
    box-shadow: 0px 0px 13px 0px rgba(8, 8, 8, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;

}

.iconBox {
    flex: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}


.iconBox a {
    color: #999999;
}

.iconBox div:first-child {
    margin-bottom: 10px;
}

.w26 {
    width: 26px;
}

.w24 {
    width: 24px;
}

.w22 {
    width: 22px;
}

.h26 {
    height: 26px;
}

.h24 {
    height: 24px;
}



.contact {
    position: relative;

}

.contact .hover {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0px;

    height: 60px;
    background-color: #fff;


    font-size: 20px;
    transform: translateY(-50%);
    overflow: hidden;
    transition: all 0.3s ease-in;
    z-index: -1;
}

.contact .hover span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F89E00;
    color: #F89E00;
}

.iconBox:hover .hover {
    width: 150px;
    left: -160px;
}


