﻿@charset "utf-8"; :root {
    --color: #007aff;
    --fontcolortitle: #000;
    --fontcolorintro: #333;
    --fonthometitle: 36px;
    --fonttitle: 18px;
    --fontintro: 16px;
    --fontweight: 700;
    --fontfamily: 'Lato','Open Sans','Roboto','Poppins','Oswald','Noto Sans','Montserrat',sans-serif
}

@media (max-width: 1280px) {
    :root {
        --fonthometitle:30px
    }
}

@media (max-width: 768px) {
    :root {
        --fonthometitle:20px;
        --fonttitle: 16px;
        --fontintro: 14px
    }
}

*,html,body,h1,h2,h3,h4,h5,h6,table,th,td,ol,ul,li,dl,dt,dd,div,p {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0px auto;
    max-width: 1920px;
    color: var(--fontcolortitle);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: var(--fontfamily)
}

h1,h2,h3,h4,h5,h6 {
    text-transform: capitalize;
    font-weight: var(--fontweight)
}

img {
    /* vertical-align:bottom; */
    /* max-width:100%; */
    /* height:auto; */
}

a {
    text-decoration: none;
    color: inherit
}

li,ol,ul {
    list-style: none
}

iframe,video {
    max-width: 100%;
    outline: 0;
    border: none;
    vertical-align: bottom
}

button {
    outline: 0;
    border: none
}

img.lazy {
    display: inline-block;
    opacity: 0
}

img.lazy,img.tst {
    transition: opacity .6s,transform .3s ease
}

img.loaded {
    opacity: 1
}

img:not([src]) {
    visibility: hidden;
    position: absolute
}

@keyframes loading {
    0% {
        transform: scale(.2);
        opacity: 1
    }

    to {
        transform: scale(2);
        opacity: 0
    }
}

.l-wrap {
    width: 100%;
    max-width: 1600px;
    padding: 0 70px;
    margin: 0 auto
}

.line1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.home-des {
    text-align: center;
    color: var(--color);
    margin-bottom: 10px
}

.home-title {
    text-align: center;
    color: var(--fontcolortitle);
    font-size: var(--fonthometitle);
    font-weight: var(--fontweight);
    line-height: 1.2
}
.home-more:hover{color:#fff;}
.home-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
    height: 45px;
    width: 180px;
    color: #FFF;
    transition: all .2s linear;
    text-decoration: none
}

.home-more:hover {
    box-shadow: 1px 2px 10px var(--color)
}

@keyframes up {
    0% {
        transform: translate(0,-100px)
    }

    100% {
        transform: translate(0,0)
    }
}

@keyframes down {
    0% {
        transform: translate(-50%,20px)
    }

    100% {
        transform: translate(-50%,0)
    }
}

@media(min-width: 1024px) {
    .nav-ul>li:hover>ul {
        display:block
    }
}

.bottom-btn {
    display: none;
    background: #FFF;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 1px 2px 10px rgba(0,0,0,.1);
    transform: translateY(100%);
    background: var(--color);
    transition: all .2s linear;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom)
}

.bottom-btn.bottom-btn-hide {
    transform: translateY(0)
}

.bottom-btn.bottom-btn-keep {
    transform: translateY(0)!important
}

.bottom-btn .btn-item {
    width: 25%;
    height: 66px;
    background: var(--color);
    color: #222;
    transition: all .2s linear
}

.bottom-btn .btn-item em,.bottom-btn .btn-item i {
    font-size: 20px;
    line-height: 1
}

.bottom-btn .btn-item a,.bottom-btn .btn-item div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-transform: capitalize
}

.bottom-btn .btn-item a p,.bottom-btn .btn-item div p {
    font-size: 14px;
    text-transform: capitalize
}

.mobile-bottom-bag {
    display: none
}

.rfixed {
    position: fixed;
    bottom: calc(145px + constant(safe-area-inset-bottom));
    bottom: calc(145px + env(safe-area-inset-bottom));
    right: 24px;
    z-index: 99
}

.compare-panel {
    width: 280px;
    background: #FFF;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    right: 0;
    box-shadow: -1px -1px 3px #CCC;
    display: none;
    transition: bottom .2s
}

.compare-t {
    background-color: var(--color);
    font-size: 14px;
    color: #FFF;
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer
}

.compare-close {
    position: relative;
    width: 24px;
    height: 24px;
    background: 0 0;
    cursor: pointer
}

.compare-close::after,.compare-close::before {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    border-radius: 2px
}

.compare-close::before {
    transform: rotate(45deg);
    left: 4px
}

.compare-close::after {
    transform: rotate(-45deg);
    right: 4px
}

.compare-tit {
    text-align: center;
    flex: 1;
    line-height: 1.5
}

.compare-checked {
    color: #FFF;
    margin: 0 4px
}

#productChache_list {
    padding: 0 10px;
    height: 220px;
    overflow-y: auto
}

#productChache_list::-webkit-scrollbar {
    width: 4px
}

#productChache_list::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: rgba(0,0,0,.05)
}

#productChache_list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0,0,0,.15)
}

.selected-item {
    position: relative;
    border-bottom: 1px solid #EFEFEF;
    padding: 10px 0;
    display: flex;
    align-items: center
}

.item-clear {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: transparent;
    cursor: pointer
}

.item-clear::after,.item-clear::before {
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: var(--fontcolorintro);
    border-radius: 2px;
    top: 50%;
    margin-top: -1px
}

.item-clear::before {
    transform: rotate(45deg);
    left: 3px
}

.item-clear::after {
    transform: rotate(-45deg);
    left: 3px
}

.item-content {
    flex: 1;
    display: flex;
    align-items: center
}

.item-img {
    width: 50px;
    height: 50px;
    background: #FFF;
    border: 1px solid #EFEFEF;
    display: flex;
    align-items: center;
    justify-content: center
}

.item-img img {
    max-width: 100%;
    max-height: 100%
}

.item-c {
    width: calc(100% - 50px);
    padding: 0 10px;
    font-size: 12px
}

.item-title {
    max-height: 34px;
    word-break: break-word;
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    color: var(--fontcolortitle)
}

.item-price {
    color: #d4322c
}

.compare-b {
    padding: 20px 10px;
    display: flex;
    justify-content: space-between
}

.compare-b * {
    display: block;
    width: 80px;
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
    border-radius: 2px;
    padding: 0 2px
}

.clear-all {
    color: var(--fontcolortitle);
    background-color: #EDEDED;
    cursor: pointer
}

.compare-inquire,.compare-inquire:hover {
    color: #FFF;
    background-color: var(--color)
}

.compare-b .orderNow {
    margin: 0;
    background: #f66f08;
    color: #FFF;
    line-height: 30px;
    padding: 0 2px;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    cursor: pointer;
    display: block;
    width: 80px
}

.rfixed-sc {
    width: 40px;
    height: 40px;
    background: var(--color);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #FFF;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    display: none
}

.rfixed-sc i {
    font-size: 20px
}

.rfixed-scnum {
    position: absolute;
    right: 6px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #d4322c;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    color: #FFF;
    transform: scale(.9);
    line-height: 16px
}

@media (max-width: 500px) {
    .foot-nav .foot-item .foot-list li {
        width:50%
    }
}

.toast-title {
    font-weight: 700
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.toast-message a,.toast-message label {
    color: #FFF
}

.toast-message a:hover {
    color: #CCC;
    text-decoration: none
}

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    -webkit-text-shadow: 0 1px 0 #FFF;
    text-shadow: 0 1px 0 #FFF;
    opacity: .8;
    line-height: 1
}

.toast-close-button:focus,.toast-close-button:hover {
    color: var(--fontcolortitle);
    text-decoration: none;
    cursor: pointer;
    opacity: .4
}

.rtl .toast-close-button {
    left: -.3em;
    float: left;
    right: .3em
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.toast-center-center {
    top: 40%;
    right: 0;
    width: 100%;
    transform: translateY(-50%)
}

.toast-top-center {
    top: 20%;
    right: 0;
    width: 100%
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-left {
    top: 12px;
    left: 12px
}

.toast-top-right {
    top: 12px;
    right: 12px
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#toast-container>div {
    font-size: 16px;
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #FFF;
    opacity: .9
}

#toast-container>div.rtl {
    direction: rtl;
    padding: 15px 50px 15px 15px;
    background-position: right 15px center
}

#toast-container>div:hover {
    -moz-box-shadow: 0 0 12px var(--fontcolortitle);
    -webkit-box-shadow: 0 0 12px var(--fontcolortitle);
    box-shadow: 0 0 12px var(--fontcolortitle);
    opacity: 1;
    cursor: pointer
}

#toast-container>.toast-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important
}

#toast-container>.toast-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important
}

#toast-container>.toast-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important
}

#toast-container>.toast-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important
}

#toast-container.toast-bottom-center>div,#toast-container.toast-center-center>div,#toast-container.toast-top-center>div {
    width: 300px;
    margin-left: auto;
    margin-right: auto
}

#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div {
    width: 96%;
    margin-left: auto;
    margin-right: auto
}

.toast {
    background-color: #030303
}

.toast-success {
    background-color: #51a351
}

.toast-error {
    background-color: #bd362f
}

.toast-info {
    background-color: #2f96b4
}

.toast-warning {
    background-color: #f89406
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: var(--fontcolortitle);
    opacity: .4
}

@media all and (max-width: 240px) {
    #toast-container>div {
        padding:8px 8px 8px 50px;
        width: 11em
    }

    #toast-container>div.rtl {
        padding: 8px 50px 8px 8px
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }

    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em
    }
}

@media all and (min-width: 241px) and (max-width:480px) {
    #toast-container>div {
        padding:8px 8px 8px 50px;
        width: 18em
    }

    #toast-container>div.rtl {
        padding: 8px 50px 8px 8px
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }

    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em
    }
}
@media (max-width: 768px) {
    .l-wrap {
        padding:0 15px
    }
}
@media all and (min-width: 481px) and (max-width:768px) {
    #toast-container>div {
        padding:15px 15px 15px 50px;
        width: 25em
    }

    #toast-container>div.rtl {
        padding: 15px 50px 15px 15px
    }
}

@media (max-width: 768px) {
    #toast-container>div {
        font-size:15px;
        opacity: 1
    }
}

@media (max-width: 415px) {
    #toast-container>div {
        font-size:13px
    }
}
