#aside_right {
    position: fixed;
    right: -90px
}

#aside_right ul li {
    position: relative
}

#aside_right ul li:hover>a::before,
#aside_right ul li.go_active>a::before {
    transform: scale(2)
}

#aside_right ul li:hover .aside_common_show,
#aside_right ul li.go_active .aside_common_show {
    opacity: 1;
    visibility: visible
}

#aside_right ul li:not(:first-child) {
    margin-top: 4px
}

#aside_right ul li>a {
    width: 62px;
    height: 62px;
    background: var(--hover-main);
    position: relative;
    overflow: hidden
}

#aside_right ul li>a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-btn);
    border-radius: 50%;
    transform: scale(0)
}

#aside_right ul li>a>img {
    max-width: 40%;
    object-fit: cover;
    position: absolute
}

#aside_right ul li .aside_common_show {
    position: absolute;
    right: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    background: var(--hover-main);
    opacity: 0;
    visibility: hidden
}

#aside_right ul li .aside_common_show.aside_img_show {
    width: 150px;
    height: 150px
}

#aside_right ul li .aside_common_show.aside_img_show img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#aside_right ul li .aside_common_show.aside_txt_show {
    color: #fff
}

#aside_right ul li .aside_common_show.aside_txt_show a {
    color: #fff;
    white-space: nowrap
}

.phone_icon {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    align-items: center;
    z-index: 999
}

.phone_icon li {
    flex: 1;
    height: var(--footer-m-h)
}

.phone_icon li:not(:first-child) {
    border-left: 1px solid #fff
}

.phone_icon li a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.phone_icon li a img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media screen and (max-width:1024px) {
    #aside_right {
        display: none
    }
}

@media screen and (max-width:950px) {
    .phone_icon {
        display: flex
    }
}