.aside {
    position: fixed;
    bottom:40px;
    right:20px;
    z-index: 999;
    opacity: 0.7;
}

.aside .aside-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap:20px;
    padding:15px 6px;
    background-color: #ffffff;
    border:1px solid #f1f1f1;
    border-radius: 30px;
}

.aside .aside-wrapper .aside-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.aside .aside-wrapper #backToTop {
    display: none;
}

.aside .aside-wrapper .aside-item img {
    width:20px;
    height:20px;
    margin-bottom: 5px;
}

.aside .aside-wrapper .aside-item span {
    font-size: 10px;
    color: #000000;
    user-select: none;
}

.aside .aside-wrapper .aside-item:hover span {
    color: #5864FF;
}

.aside .aside-content {
    position:absolute;
    left:-180px;
    top:50%;
    transform: translateY( -50%);
    display: none;  
}

.aside .aside-content .contact-us__qr-section {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius:8px;
    padding: 20px 16px;
    background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 55.39%);;
    flex: 1;
    border: 1px solid #ecf0f6;
    flex-shrink: 0;
}
.contact-us__qr-section .contact-us__qr-title {
    font-size: 14px;
    font-weight: 500;
    color: #12141a;
    line-height: 22px;
}

.contact-us__qr-section .contact-us__qr-wrapper img{
    width: 128px;
    height: 128px;
    margin: 8px 0;
}

.contact-us__qr-section .contact-us__qr-label {
    font-size: 14px;
    font-weight: 500;
    color: #12141a;
    line-height: 22px;
}