body{
    position: relative;
}
.quick{
    /* width: 100px;
    height: 130px; */
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 10px;

    position: fixed;
    right: 20px;
    top: 50%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 13px 10px 13px;
    box-sizing: border-box;

    z-index: 1000;
}
.quick>a{
    display: inline-block;
    text-align: center;
    color: #23671a;
    font-weight: 600;
    font-size: 13px;
    width: 60px;
}
.quick>a>p{
    color: #555;
    margin-top: 3px;
}
.quick>div{
    width: 100%;
    border-top: 1px solid #ccc;
    text-align: center;
    padding-top: 3px;
    /* margin-top: 5px; */
    box-sizing: border-box;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    font-size: 15px;
}
@media screen and (max-width:860px) {
    .quick{
        padding: 10px 5px 8px 5px;
        top: 70%;
        right: 7px;
        gap: 3px;
    }
    .quick>a>img{
        width: 45px;
    }
    .quick>a>p{
        display: none;
    }
    .quick>div{
        font-size: 13px;
    }
}