@media screen and (max-width: 400px) {

    .vanus-view-sales-card-out-view,
    .vanus-view-sales-card-out-view-left {
        /* bottom: 98px !important; */
    }

    .vanus-custom-sales-card-view-1.vanus-custom-sales-card-view-1-m {
        width: 250px;
        box-shadow: none;
    }

    .vanus-custom-sales-card.vanus-custom-sales-card-m {
        background-color: transparent;
        padding: 0;
        gap: 10px;
    }

    .vanus-custom-sales-card-tag.vanus-custom-sales-card-tag-m {
        height: 26px;
        line-height: 26px;
        top: -14px;
    }

    .vanus-custom-sales-card-tag-text.vanus-custom-sales-card-tag-text-m {
        font-size: 10px;
        line-height: 14px;
    }

    .vanus-custom-sales-card-message-view.vanus-custom-sales-card-message-view-m {
        background: #282219;
        color: #f7fbff;
        padding: 15px;
        border-radius: 16px;
        box-shadow: 0px 6px 18px 0px #111e2d23;
    }

    .vanus-custom-sales-card-title.vanus-custom-sales-card-title-m {
        font-size: 16px;
        line-height: 24px;
    }

    .vanus-custom-sales-card-content.vanus-custom-sales-card-content-m {
        font-size: 12px;
    }

    .vanus-custom-sales-card-product-view.vanus-custom-sales-card-product-view-m {
        background: #282219;
        color: #f7fbff;
        margin-top: 0;
        padding: 20px 10px 10px 10px;
        border-radius: 16px;
        box-shadow: 0px 6px 18px 0px #111e2d23;
        cursor: pointer;
    }

    .vanus-custom-sales-card-product-title.vanus-custom-sales-card-product-title-m {
        font-size: 12px;
    }

    .vanus-custom-sales-card-product-price.vanus-custom-sales-card-product-price-m {
        line-height: 28px;
    }

    button.vanus-custom-sales-card-btn-white-1.vanus-custom-sales-card-btn-white-1-m {
        padding: 9px 6px;
        border-radius: 50px;
        box-shadow: 0px 0px 8px 2px #111e2d23;
    }

    .vanus-custom-sales-card-view-2.vanus-custom-sales-card-view-2-m {
        width: 250px;
        gap: 8px;
    }

    button.vanus-custom-sales-card-product-intro-btn.vanus-custom-sales-card-product-intro-btn-m {
        padding: 4px 16px;
        box-shadow: none;
    }
}

:root {
    --product-intro-bg: #3E3F40;
    --product-intro-color: #ffffff;
}

.vc-animation-container {
    position: fixed;
    width: 48px;
    z-index: 99999970;
    /* z-index: 2147483700; */
    right: 30px;
    bottom: 72px;
}

.vc-animation-container-left {
    position: fixed;
    width: 48px;
    height: 48px;
    z-index: 99999970;
    /* z-index: 2147483700; */
    left: 30px;
    bottom: 72px;
}

.vc-custom-icon-image-badge {
    position: absolute;
    z-index: 10;
    /* z-index: 2147483100; */
    right: -2px;
    top: -2px;
    background-color: rgb(255, 77, 79);
    color: #fff;
    width: 16px;
    height: 16px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 12px;
    border: 2px solid #fff;
}

.vc-custom-icon-image-badge-left {
    position: absolute;
    z-index: 10;
    /* z-index: 2147483100; */
    left: -2px;
    top: -2px;
    background-color: rgb(255, 77, 79);
    color: #fff;
    width: 16px;
    height: 16px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 12px;
    border: 2px solid #fff;
}

.animation-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    /* z-index: 2147483000; */
}

.animation-icon img {
    max-width: 48px;
    max-height: 48px;
    min-width: 24px;
    min-height: 24px;
}

.vc-animation-container .circle,
.vc-animation-container-left .circle {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ddd;
    position: absolute;
}

.vc-animation-container .delay1,
.vc-animation-container-left .delay1 {
    animation: waves 1.5s ease-out .1s forwards infinite;
}

.vc-animation-container .delay2,
.vc-animation-container-left .delay2 {
    animation: waves 1.5s ease-out .7s forwards infinite,
}

.vc-animation-container .delay3,
.vc-animation-container-left .delay3 {
    animation: waves 1.5s ease-out 1.3s forwards infinite;
}

.vc-animation-container .delay4,
.vc-animation-container-left .delay4 {
    animation: waves 1.5s ease-out 1.9s forwards infinite;
}

@keyframes waves {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    100% {
        transform: scale(2);
        opacity: 0.1;
    }
}

.vc-animation-container div.zoom,
.vc-animation-container-left div.zoom {
    animation: zoom 2.5s linear infinite;
}

@keyframes zoom {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.vc-animation-container div.bean,
.vc-animation-container-left div.bean {
    display: block;
    position: absolute;
    top: -20%;
    left: -100%;
    width: 96px;
    height: 24px;
    transform: rotate(-45deg);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0));
    animation: cross 1.5s linear infinite;
}

@keyframes cross {
    from {}

    to {
        top: 80%;
        left: 100%;
        transform: rotate(-45deg);
    }
}

.vanus-custom {
    border: 0px none;
    margin: 0px;
    padding: 0px;
    min-height: 0px;
    min-width: 0px;
}

.vanus-custom-iframe-view-m {
    border-radius: 0px;
    background: #f9f9f9;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
    width: 100vw;
    height: 100%;
    min-height: 360px;
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 99999990;
    /* z-index: 2147483900; */
    display: none;
}

.vanus-custom-iframe-view {
    border-radius: 16px;
    background: #f9f9f9;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
    width: calc(100vw - 30px);
    height: calc(100vh - 30px);
    min-height: 360px;
    max-height: 704px;
    max-width: 400px;
    position: fixed;
    right: 30px;
    bottom: 10px;
    z-index: 99999990;
    /* z-index: 2147483900; */
    display: none;
}

.vanus-custom-iframe-view-left {
    border-radius: 16px;
    background: #f9f9f9;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
    width: calc(100vw - 30px);
    height: calc(100vh - 30px);
    min-height: 360px;
    max-height: 704px;
    max-width: 400px;
    position: fixed;
    left: 30px;
    bottom: 10px;
    z-index: 99999990;
    /* z-index: 2147483900; */
    display: none;
}

.vanus-custom-iframe {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0px;
    padding: 0px;
}

.vanus-custom-iframe-m {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0px;
    padding: 0px;
}

.vanus-custom-iframe-btn-m {
    animation: none !important;
    border-radius: 0px;
    position: absolute;
    right: 16px;
    top: 14px;
    /* z-index: 2147484000; */
    display: none;
    height: 36px;
    line-height: 36px;
    width: 36px;
    font-size: 24px !important;
    color: #fff !important;
    background: transparent !important;
    cursor: pointer;
    box-shadow: none;
}

.vanus-custom-iframe-btn {
    animation: none !important;
    border-radius: 0px;
    position: absolute;
    right: 16px;
    bottom: min(100% - 46px, 716px);
    /* z-index: 2147484000; */
    display: none;
    height: 28px;
    line-height: 28px;
    width: 28px;
    font-size: 18px !important;
    color: #fff !important;
    background: transparent !important;
    cursor: pointer;
    box-shadow: none;
}

.vanus-custom-bubble-btn-close {
    background-color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* line-height: 24px; */
    /* text-align: center; */
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;

    position: absolute;
    right: -22px;
    top: -23px;
    z-index: 5;
}

.vanus-custom-bubble-btn-close-left {
    background-color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* line-height: 24px; */
    /* text-align: center; */
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;

    position: absolute;
    left: -22px;
    top: -23px;
    z-index: 5;
}

.vanus-custom-bubble {
    color: #000;
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    position: fixed;
    right: 30px;
    bottom: 80px;
    z-index: 99999960;
    /* z-index: 2147483600; */
    margin-left: 30px;
    max-width: calc(100vw - 60px);
    padding: 15px;
    line-height: 24px;
    border-radius: 12px;
    /* border: 1px solid #c8c8c8; */
    box-shadow: -43px 41px 17px 0px rgba(0, 0, 0, 0.00), -27px 26px 15px 0px rgba(0, 0, 0, 0.01), -15px 15px 13px 0px rgba(0, 0, 0, 0.05), -7px 7px 10px 0px rgba(0, 0, 0, 0.09), -2px 2px 5px 0px rgba(0, 0, 0, 0.10);
    font-size: 14px;
    text-align: center;
    background: #fff;
    cursor: pointer;
}

.vanus-custom-bubble-left {
    color: #000;
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    position: fixed;
    left: 30px;
    bottom: 80px;
    z-index: 99999960;
    /* z-index: 2147483600; */
    max-width: calc(100vw - 60px);
    padding: 15px;
    line-height: 24px;
    border-radius: 12px;
    /* border: 1px solid #c8c8c8; */
    box-shadow: -43px 41px 17px 0px rgba(0, 0, 0, 0.00), -27px 26px 15px 0px rgba(0, 0, 0, 0.01), -15px 15px 13px 0px rgba(0, 0, 0, 0.05), -7px 7px 10px 0px rgba(0, 0, 0, 0.09), -2px 2px 5px 0px rgba(0, 0, 0, 0.10);
    font-size: 14px;
    text-align: center;
    background: #fff;
    cursor: pointer;
}

.vanus-custom-icon-image {
    cursor: pointer;
}


/*******************************************************                    主动销售相关                     *******************************************************/
.vanus-custom-sales-card-btn-close {
    background-color: #fff;
    width: 24px;
    height: 24px;
    /* line-height: 24px; */
    /* text-align: center; */
    border-radius: 50%;
    position: absolute;
    top: -12px;
    right: -12px;
    box-shadow: 0px 6px 18px 0px rgba(17, 30, 45, 0.14);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vanus-custom-sales-card-tag {
    border-radius: 12px 12px 12px 0px;
    font-size: 12px;
    background: linear-gradient(90deg, #FFC328 0%, #F4E559 50%, #F4B104 97.5%);
    height: 32px;
    line-height: 32px;
    padding: 0px 12px;
    position: absolute;
    left: 0px;
    top: -20px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vanus-custom-sales-card-view-1 {
    font-family: Inter, Arial, sans-serif;
    position: relative;
    width: 300px;
    /* max-height: 200px; */
    box-shadow: 0px 6px 18px 0px rgba(17, 30, 45, 0.14);
    background-color: transparent;
    border-radius: 16px;
    font-size: 14px;
    display: none;
}

.vanus-custom-sales-card-view-2 {
    font-family: Inter, Arial, sans-serif;
    position: relative;
    width: 284px;
    /* max-height: 150px; */
    font-size: 14px;
    display: none;
    flex-direction: column;
    align-items: end;
    gap: 22px;
}

.vanus-view-sales-card-out-view {
    width: max-content;
    font-family: Inter, Arial, sans-serif;
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 99999955;
    /* z-index: 2147483550; */
}

.vanus-view-sales-card-out-view-left {
    position: fixed;
    left: 30px;
    bottom: 100px;
    z-index: 99999955;
    /* z-index: 2147483550; */
}

.vanus-custom-sales-card {
    width: 100%;
    height: calc(100% - 40px);
    background-color: #282219;
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vanus-custom-sales-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.vanus-custom-sales-card-content {
    line-height: 22px;
    color: #fff;
}

button.vanus-custom-sales-card-btn-white-1 {
    all: unset;
    font-family: Inter, Arial, sans-serif;
    background-color: #fff;
    padding: 6px;
    border-radius: 10px;
    width: 100%;
    margin: 0px;
    border: 0px none;
    cursor: pointer;
    font-size: 12px;
    color: #374151;
    text-align: center;
    text-transform: none;
    box-shadow: none;
}

.vanus-custom-sales-btn-left-message {
    display: none;
}

.vanus-custom-sales-card-btn-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.vanus-custom-sales-card-product-intro-view,
.vanus-custom-sales-card-qq-view {
    max-width: 284px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* padding-top: 32px; */
    align-items: inherit;
}

.vanus-custom-sales-card-product-intro-btn-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

button.vanus-custom-sales-card-product-intro-btn {
    all: unset;
    min-width: auto;
    min-height: auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #3E3F40;
    color: #3E3F40;
    background: #ffffff;
    cursor: pointer;
    box-shadow: none;
}

button.vanus-custom-sales-card-product-intro-btn:hover {
    background: var(--product-intro-bg);
    color: var(--product-intro-color) !important;
}

.vanus-custom-sales-card-product-intro,
.vanus-custom-sales-card-qq {
    line-height: 22px;
    background-color: #282219;
    color: #fff;
    /* max-width: calc(100% - 20px);
    width: max-content; */
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0px 6px 18px 0px rgba(17, 30, 45, 0.14);
    cursor: pointer;
}

.vanus-custom-sales-card-product-intro-btn-close,
.vanus-custom-sales-card-qq-btn-close {
    all: unset;
    background-color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* line-height: 24px; */
    /* text-align: center; */
    box-shadow: 0px 6px 18px 0px rgba(17, 30, 45, 0.14);
    position: absolute;
    top: -12px;
    right: -12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vanus-custom-sales-card-message-view {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vanus-custom-sales-card-product-view {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
}

.vanus-custom-sales-card-product-img {
    width: 74px;
    height: 74px;
    border-radius: 6px;
    object-fit: cover;
}

.vanus-custom-sales-card-product-title {
    font-weight: 600;
    line-height: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.vanus-custom-sales-card-product-price {
    font-weight: 600;
    font-size: 20px;
}

.vanus-custom-sales-card-product-content {
    width: calc(100% - 82px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.vanus-custom-sales-card-product-price-old {
    font-size: 12px;
}

.vanus-custom-sales-card-product-off {
    font-size: 12px;
    color: #F00;
    margin-left: 8px;
}

.vanus-shopify-inbox-display {
    display: block !important;
}

.vanus-shopify-inbox-hide {
    display: none !important;
}