@charset "UTF-8";

.hot_key_box {
    position: fixed;
    right: 140px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 999;
}
.hot_key_list {
    list-style: none;
    margin: 0;
    padding: 0;
    /* display: none; */
}
.hot_key_list li {
    margin-bottom: 15px;
}
.hot_key_list li a {
    /*圓形遮罩*/
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}
.hot_key_tg {
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
}
.btn_hot_key {
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    cursor: pointer;
    /*圓形遮罩*/
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}
@media screen and (max-width: 769px) {
    .hot_key_box {
        position: fixed;
        right: 8px;
        bottom: 143px;
        z-index: 99;
    }
}
@media screen and (max-width: 480px) {
    .hot_key_box {
        zoom: 90%;
    }
}
@media screen and (max-width: 320px) {
    .hot_key_box {
        zoom: 70%;
    }
}
@media screen and (max-width: 240px) {
    .hot_key_box {
        zoom: 60%;
    }
}

@media screen and (max-height: 360px) {
    .hot_key_box {
        bottom: 4px;
    }
}
