.baihe_third_app {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.baihe_third_app_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--color-primary);
    border-radius: 5px;
}

.baihe_third_app_item img {
    width: 58.33%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.baihe_third_app_item:hover {
    background: var(--color-second);
}

@media screen and (max-width: 992px) {
    .baihe_third_app_item {
        width: 40px;
    }
}

@media screen and (max-width: 480px) {
    .baihe_third_app_item {
        width: 30px;
    }

    .baihe_third_app {
        right: 2px;
    }
}