.fixed_right {
    position: fixed;
    bottom: 38%;
    right: 50%;
    transform: translateX(720px);
    z-index: 99;
}

.fixed_right ul li {
    position: relative;
    width: 59px;
    height: 59px;
    background: #034DB5;
    border-radius: 8px;
    margin-bottom: 12px;
}

.fixed_right ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF !important;
    text-align: center;
}

.fixed_right ul li a img {
    margin-bottom: 10px;
    display: block;
    width: 34px;
}

.fixed_right ul li a p {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}

.fixed_right ul li:hover .hoverContent {
    display: block;
}

.fixed_right ul li .hoverContent_1 {
    display: none;
    min-width: 120px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 70px;
    padding: 10px 5px;
    border: 2px solid #034DB5;
    border-radius: 5px;
    background-color: #FFFFFF;
}

.fixed_right ul li .hoverContent_1 img {
    display: block;
    width: 120px;
    height: 120px;
}

@media (max-width: 1455px) {
    .fixed_right {
        right: 0;
        transform: translateX(0);
    }
}