* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}






.rightFun {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    right: 50px;
    bottom: 300px;
}

.rightFun .item {
    width: 70px;
    height: 70px;
    padding: 10px;
    /*overflow: hidden;*/
    background-color: #ffffff;
    /*box-shadow: 0 12px 20px 20px rgba(200, 200, 200, .2);*/
    transition: .3s ease-in-out;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.rightFun .item:hover {
    cursor: pointer;
}

.rightFun #scrollTop {
    display: none;
}

.rightFun img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rightFun #scrollTop img {
    opacity: .3;
}

.rightFun .none {
    display: none;
    transition: .3s ease-in-out;
}

.rightFun .phoneWd {
    position: absolute;
    right: 75px;
    top: -78px;
    padding: 50px 20px;
    font-size: 23px;
    font-family: Arial;
    color: #99783f;
    background-color: #ffffff;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px 4px rgba(200, 200, 200, .2);
}


.rightFun .wechatWd {
    position: absolute;
    right: 75px;
    top: 0;
    padding: 10px;
    background-color: #ffffff;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    box-shadow: 0 2px 4px 4px rgba(200, 200, 200, .2);
}

.rightFun .wechatWd i {
    display: inline-block;
    background: url("../ewm2.jpg") no-repeat center;
    width: 150px;
    height: 150px;
    background-size: 100%;
}

.rightFun .item:hover .phoneWd {
    display: flex;
}

.rightFun .item:hover .wechatWd {
    display: block;
}




