.new-share {
    padding-left: 40px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #CCC7CB;
}

.new-share .share-icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-share .share-icon-box .share-icon {
    cursor: pointer;
}

.new-share .share-icon-box .share-icon img {
    width: 20px;
    height: 20px;
}

.new-share .share-wx {
    position: relative;
}

.new-share .share-wx-qr {
    opacity: 0;
    position: absolute;
    top: 99%;
    left: 0;
    width: 120px;
    height: 120px;
    background-color: #fff;
    z-index: 100;
    transform: translate(-39%, 12px);
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
}

.new-share .share-icon-box .share-wx-qr img {
    width: 100px;
    height: 100px;
}

.share-wx:hover .share-wx-qr {
    opacity: 1;
}