<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* è©¢å•åœ–æ¡ˆ */

.fix-add-to-cart {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 85;
    bottom: 40px;
    right: 10px;
    transition: all .35s ease
}

@media (min-width: 740px) {
    .fix-add-to-cart {
        bottom: 50px;
        right: 50px
    }
}

.fix-add-to-cart .num {
    font-size: 11px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: #f9be00;
    position: absolute;
    border-radius: 50%;
    right: 0;
    top: 0;
    transition: all .35s ease;
    z-index: 10;
    color: #000;
}

.fix-add-to-cart .icon {
    display: block;
    width: 52px;
    height: 52px;
    margin: 6px 0 0 2px;
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .35s ease
}

.fix-add-to-cart:hover,
.fix-add-to-cart:active {
    transform: scale(1.25)
}

.fix-add-to-cart:hover .icon,
.fix-add-to-cart:active .icon {
    background-color: #f9be00
}

.fix-add-to-cart:hover .num,
.fix-add-to-cart:active .num {
    background-color: #2c2c2c;
    color: #f9be00
}

.fix-add-to-cart.active {
    animation: fix-cart .7s ease alternate forwards
}

.fix-add-to-cart.active .icon {
    animation: fix-color .7s ease alternate forwards
}

.fix-add-to-cart.active .num {
    animation: fix-num .7s ease alternate forwards
}

.fix-add-to-cart .icon:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url(../images/iconset.svg);
    background-size: auto 100%;
    width: 30px;
    height: 30px;
    background-position: 28.5%;
}</pre></body></html>