.banner {
    margin: 20px 0 0
}
/*
@media screen and (max-width: 790px) {
    .banner {
        margin: 0
    }
}
*/
/*
.banner.bannerShop {
    margin: 45px 0 15px 0
}

@media screen and (max-width: 790px) {
    .banner.bannerShop {
        margin: 40px 0 10px 0
    }
}

 */

.grid_layout {
    border: transparent 20px solid;
    display: grid;
    grid-template-columns: repeat(10, 10%);
    grid-template-rows: 40px 40px 40px 40px 40px;
    grid-template-areas:
    "A A A B B B B B B C"
    "A A A D D D D D D C"
	"A A A D D D D D D C"
	"A A A D D D D D D C"
 	"A A A E E E E E E C";
}

.item1 {
    grid-area: A;
}

.item2 {
    grid-area: B;
}

.item3 {
    grid-area: C;
}

.item4 {
    grid-area: D;
}

.item5 {
    grid-area: E;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner img {
    width: 100%
}
/*
.banner .swiper-slide.hasLink {
    cursor: pointer
}
.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 1;
    -webkit-transition: .3s;
    transition: .3s
}

.banner .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 10px
}

.filterNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 15px 0
}

.filterNav.fixed {
    margin: 0;
    padding: 0;
    width: 100%;
    position: fixed;
    top: 140px;
    -webkit-box-shadow: 0 8px 6px -6px #B3B3B3;
    box-shadow: 0 8px 6px -6px #B3B3B3;
    z-index: 98;
    max-width: 1410px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff
}

@media screen and (max-width: 790px) {
    .filterNav.fixed {
        top: 60px
    }
}

.filterNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff
}

.filterNav ul li {
    width: 25%;
    padding: 10px 0;
    border: 1px solid #F2F2F2;
    text-align: center;
    cursor: pointer
}

.filterNav ul li:hover {
    opacity: 0.8
}

.filterNav ul li.active:hover {
    opacity: 1
}

.filterNav ul li.active p {
    color: red
}

.filterNav ul li.active p span {
    background-color: red
}

.filterNav ul li p {
    display: initial;
    font-size: 1.6rem;
    color: #B3B3B3;
    position: relative
}

@media screen and (max-width: 640px) {
    .filterNav ul li p {
        font-size: 1.2rem
    }
}

.filterNav ul li p span {
    width: 100%;
    height: 2px;
    background-color: transparent;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    bottom: -5px
}
*/

.topBg {
    width: 100%;
    max-width: 1260px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*
@media screen and (max-width: 768px) {
    .topBg {
        display: none
    }
}
*/
/*
.specialEvents {
    margin-bottom: 10px;
    position: relative
}

.specialEvents .eventsBg {
    max-width: 100%;
    display: none
}

@media screen and (max-width: 790px) {
    .specialEvents .eventsBg {
        display: block
    }
}

.specialEvents .events {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

@media screen and (max-width: 790px) {
    .specialEvents .events {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
}

.specialEvents .event {
    width: 33.33333%
}

@media screen and (max-width: 790px) {
    .specialEvents .event:nth-child(1), .specialEvents .event:nth-child(3) {
        width: 30%
    }

    .specialEvents .event:nth-child(2) {
        width: 40%
    }
}

.specialEvents .event img {
    width: 100%
}

.sectionFullWidth {
    margin: 10px 0
}

.sectionFullWidth .sectionFullWidthTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.sectionFullWidth .sectionFullWidthTop h2 {
    font-size: 2.4rem;
    color: red
}

@media screen and (max-width: 790px) {
    .sectionFullWidth .sectionFullWidthTop h2 {
        font-size: 1.8rem
    }
}

@media screen and (max-width: 560px) {
    .sectionFullWidth .sectionFullWidthTop h2 {
        font-size: 1.4rem
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth .sectionFullWidthTop h2 {
        margin: 10px 0
    }
}

.sectionFullWidth .sectionFullWidthTop a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.6rem;
    color: gray;
    font-weight: 700
}

.sectionFullWidth .sectionFullWidthTop a:hover {
    opacity: 0.8
}

.sectionFullWidth .sectionFullWidthTop a span {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
    background-image: url("../../fimg/v2/index/more-arrow-right.png");
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    margin-left: 10px
}

@media screen and (max-width: 790px) {
    .sectionFullWidth .sectionFullWidthTop a {
        font-size: 1.4rem
    }

    .sectionFullWidth .sectionFullWidthTop a span {
        width: 10px;
        height: 10px;
        background-size: 10px 10px
    }
}

.sectionFullWidth .sectionFullWidthTop, .sectionFullWidth .sectionFullWidthBottom {
    background-color: #fff
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom a:hover {
    opacity: 0.8
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom, .sectionFullWidth.groupBuy .sectionFullWidthBottom, .sectionFullWidth.category .sectionFullWidthBottom, .sectionFullWidth.merchants .sectionFullWidthBottom, .sectionFullWidth.localSpecialty .sectionFullWidthBottom {
    width: 100%;
    position: relative;
    padding: 30px 0
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom, .sectionFullWidth.groupBuy .sectionFullWidthBottom, .sectionFullWidth.category .sectionFullWidthBottom, .sectionFullWidth.merchants .sectionFullWidthBottom, .sectionFullWidth.localSpecialty .sectionFullWidthBottom {
        padding: 10px 0 15px
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-container, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-container, .sectionFullWidth.category .sectionFullWidthBottom .swiper-container, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-container, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
    width: 1300px;
    position: initial
}

@media screen and (max-width: 1560px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-container, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-container, .sectionFullWidth.category .sectionFullWidthBottom .swiper-container, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-container, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
        width: 90%
    }
}

@media screen and (max-width: 1060px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-container, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-container, .sectionFullWidth.category .sectionFullWidthBottom .swiper-container, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-container, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
        width: 85%
    }
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-container, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-container, .sectionFullWidth.category .sectionFullWidthBottom .swiper-container, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-container, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
        width: 95%
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-wrapper, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-wrapper, .sectionFullWidth.category .sectionFullWidthBottom .swiper-wrapper, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-wrapper, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-wrapper {
    position: initial
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide a, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide a, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide a, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide a, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide a:hover, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide a:hover, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide a:hover, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide a:hover, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide a:hover {
    opacity: 0.8
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
    height: 200px;
    position: relative
}

@media screen and (max-width: 1560px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 150px;
        height: 150px
    }
}

@media screen and (max-width: 1060px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 100px;
        height: 100px
    }
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 80px;
        height: 80px
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap img, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap img, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap img, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap img, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap img {
    max-width: 100%;
    max-height: 100%
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap span, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap span, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap span, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap span, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap span {
    position: absolute
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
    background-image: url("../../fimg/v2/index/free-shipping.png");
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: 0
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap span.freeShippingTag {
        width: 40px;
        height: 40px;
        background-size: 40px 40px
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 20px;
    background-size: 50px 20px;
    background-image: url("../../fimg/v2/index/discount-tag.png");
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    bottom: 0;
    color: #fff;
    font-size: 1.2rem
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap span.discountTag {
        font-size: 1rem
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide p {
    font-size: 1.8rem;
    font-weight: 700;
    color: red
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide p, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide p {
        font-size: 1.4rem
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-button-prev:after {
    content: ""
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-prev, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-prev, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-prev, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-prev, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-button-prev {
        display: none
    }
}

.sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-prev, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-prev, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-prev {
    width: 40px;
    height: 60px;
    background: #fff;
    color: rgba(169, 169, 169, 0.46)
}

.sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-prev:after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 8px
}

.sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-next:after, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-next:after {
    content: '\203a';
    padding-right: 7px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-shadow: 10px 1px 22px -2px #eee;
    box-shadow: 10px 1px 22px -2px #eee;
    border-radius: 0px 100px 100px 0px
}

.sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.category .sectionFullWidthBottom .swiper-button-prev:after, .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-button-prev:after {
    content: '\2039';
    padding-left: 7px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-shadow: -10px 1px 22px -2px #eee;
    box-shadow: -10px 1px 22px -2px #eee;
    border-radius: 100px 0px 0px 100px
}

.sectionFullWidth.hotSearch .sectionFullWidthTop .topLeftTag {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    background-image: url("../../fimg/v2/index/top-left-tag_2.png");
    background-repeat: no-repeat;
    background-position: center center
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.hotSearch .sectionFullWidthTop .topLeftTag {
        width: 50px;
        height: 50px;
        background-size: 50px 50px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.hotSearch .sectionFullWidthTop .topLeftTag {
        width: 30px;
        height: 30px;
        background-size: 30px 30px
    }
}

.sectionFullWidth.hotSearch .sectionFullWidthTop span {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    background-image: url("../../fimg/v2/index/i-reload.png");
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px
}

.sectionFullWidth.hotSearch .sectionFullWidthTop span:hover {
    opacity: 0.8
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.hotSearch .sectionFullWidthTop span {
        width: 20px;
        height: 20px;
        background-size: 20px 20px
    }
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.hotSearch .sectionFullWidthBottom {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(25% - 3px);
    padding: 15px 0;
    border-top: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom a:last-child {
    border-right: none
}

@media screen and (max-width: 1260px) {
    .sectionFullWidth.hotSearch .sectionFullWidthBottom a {
        padding: 5px 0
    }
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.hotSearch .sectionFullWidthBottom a {
        width: calc(50% - 1px)
    }

    .sectionFullWidth.hotSearch .sectionFullWidthBottom a:nth-child(2) {
        border-right: none
    }
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchLeft, .sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchRight {
    width: 50%;
    padding: 0 5%
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchLeft h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 2rem
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchLeft p {
    color: #B3B3B3;
    font-size: 1.6rem;
    min-height: 20px
}

@media screen and (max-width: 1260px) {
    .sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchLeft h3 {
        font-size: 1.6rem
    }

    .sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchLeft p {
        font-size: 1.2rem;
        min-height: 32px
    }
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchLeft h3 {
        font-size: 1.2rem
    }

    .sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchLeft p {
        font-size: 1rem
    }
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.sectionFullWidth.hotSearch .sectionFullWidthBottom .hotSearchRight img {
    max-width: 100%;
    max-height: 100%
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthTop {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthTop .topLeftTag {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    background-image: url("../../fimg/v2/index/top-left-tag_1.png");
    background-repeat: no-repeat;
    background-position: center center
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.limitedTime .sectionFullWidthTop .topLeftTag {
        width: 50px;
        height: 50px;
        background-size: 50px 50px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.limitedTime .sectionFullWidthTop .topLeftTag {
        width: 30px;
        height: 30px;
        background-size: 30px 30px
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px
}

.sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown span {
    width: 30px;
    text-align: center;
    background-color: #333;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 5px;
    padding: 3px;
    margin: 0 5px
}

.sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown p {
    font-size: 1.6rem;
    color: #333
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown span, .sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown p {
        font-size: 1.4rem
    }
}

@media screen and (max-width: 560px) {
    .sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown {
        margin-left: 10px
    }

    .sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown span, .sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown p {
        font-size: 1rem
    }
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthTop .timeCountdown {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .itemsLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
    height: 30px;
    position: relative;
    background-color: #ff8d8d;
    border-radius: 20px;
    text-align: center
}

@media screen and (max-width: 1560px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .itemsLeft {
        width: 150px
    }
}

@media screen and (max-width: 1060px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .itemsLeft {
        width: 100px
    }
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .itemsLeft {
        width: 80px;
        height: 20px
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .itemsLeft .leftBar {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(crimson), to(red));
    background: linear-gradient(90deg, crimson, red);
    border-radius: 20px
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .itemsLeft span {
    color: #fff;
    font-size: 1.2rem;
    z-index: 2
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-slide .itemsLeft span {
        font-size: 1rem
    }
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-next, .sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-prev {
    -webkit-box-shadow: 0 0 5px rgba(112, 112, 112, 0.5);
    box-shadow: 0 0 5px rgba(112, 112, 112, 0.5);
    border-radius: 50%
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-next {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    background-image: url("../../fimg/v2/index/swiper-arrow-right.png");
    background-repeat: no-repeat;
    background-position: center center
}

.sectionFullWidth.limitedTime .sectionFullWidthBottom .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    background-image: url("../../fimg/v2/index/swiper-arrow-left.png");
    background-repeat: no-repeat;
    background-position: center center
}

.sectionFullWidth.groupBuy .sectionFullWidthTop .topLeftTag {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    background-image: url("../../fimg/v2/index/top-left-tag_4.png");
    background-repeat: no-repeat;
    background-position: center center
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.groupBuy .sectionFullWidthTop .topLeftTag {
        width: 50px;
        height: 50px;
        background-size: 50px 50px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.groupBuy .sectionFullWidthTop .topLeftTag {
        width: 30px;
        height: 30px;
        background-size: 30px 30px
    }
}

.sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide a > span {
    text-decoration: line-through;
    font-size: 1.4rem;
    color: gray;
    margin: 10px 0
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide a > span {
        font-size: 1rem
    }
}

.sectionFullWidth.groupBuy .sectionFullWidthBottom .swiper-slide p {
    margin: 0
}

.sectionFullWidth.category .sectionFullWidthTop .topLeftTag {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    background-image: url("../../fimg/v2/index/top-left-tag_3.png");
    background-repeat: no-repeat;
    background-position: center center
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.category .sectionFullWidthTop .topLeftTag {
        width: 50px;
        height: 50px;
        background-size: 50px 50px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.category .sectionFullWidthTop .topLeftTag {
        width: 30px;
        height: 30px;
        background-size: 30px 30px
    }
}

.sectionFullWidth.category .sectionFullWidthBottom .swiper-container {
    width: 1260px;
    padding: 10px
}

@media screen and (max-width: 1560px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-container {
        width: 90%
    }
}

@media screen and (max-width: 1260px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-container {
        width: 85%
    }
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-container {
        width: 90%;
        padding: 0
    }
}

.sectionFullWidth.category .sectionFullWidthBottom .swiper-slide a:hover {
    -webkit-box-shadow: 0 0 10px rgba(112, 112, 112, 0.5);
    box-shadow: 0 0 10px rgba(112, 112, 112, 0.5)
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide a:hover {
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap {
    width: 150px;
    height: 150px
}

@media screen and (max-width: 1560px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 120px;
        height: 120px
    }
}

@media screen and (max-width: 960px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 100px;
        height: 100px
    }
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 80px;
        height: 80px
    }
}

.sectionFullWidth.category .sectionFullWidthBottom .swiper-slide h4 {
    font-size: 1.6rem;
    margin: 10px 0;
    text-align: center
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.category .sectionFullWidthBottom .swiper-slide h4 {
        font-size: 1rem
    }
}

.sectionFullWidth.merchants .sectionFullWidthTop .topLeftTag {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    background-image: url("../../fimg/v2/index/top-left-tag_5.png");
    background-repeat: no-repeat;
    background-position: center center
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.merchants .sectionFullWidthTop .topLeftTag {
        width: 50px;
        height: 50px;
        background-size: 50px 50px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.merchants .sectionFullWidthTop .topLeftTag {
        width: 30px;
        height: 30px;
        background-size: 30px 30px
    }
}

.sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap {
    width: 100px;
    height: 100px
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 80px;
        height: 80px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.merchants .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 60px;
        height: 60px
    }
}

.sectionFullWidth.localSpecialty {
    position: relative
}

.sectionFullWidth.localSpecialty .sectionFullWidthLeft {
    width: 67.6923px;
    height: 160px;
    background-size: 67.6923px 160px;
    background-image: url("../../fimg/v2/index/local-specialty-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 45px;
    z-index: 10
}

.sectionFullWidth.localSpecialty .sectionFullWidthLeft h2 {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 5px
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthLeft {
        left: -2px
    }
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthLeft {
        width: 59;
        height: 140px;
        background-size: 59 140px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthLeft {
        width: 50px;
        height: 120px;
        background-size: 50px 120px
    }
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthBottom {
        padding: 30px 0
    }
}

.sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
    width: 90%;
    padding-left: 40px
}

@media screen and (max-width: 1560px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
        padding-left: 60px
    }
}

@media screen and (max-width: 960px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
        width: 80%
    }
}

@media screen and (max-width: 790px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
        padding-left: 5%
    }
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-container {
        padding-left: 10%
    }
}

.sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap {
    width: 100px;
    height: 100px
}

@media screen and (max-width: 480px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 80px;
        height: 80px
    }
}

@media screen and (max-width: 400px) {
    .sectionFullWidth.localSpecialty .sectionFullWidthBottom .swiper-slide .imgWrap {
        width: 60px;
        height: 60px
    }
}

.sectionHalfWidth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0
}

@media screen and (max-width: 790px) {
    .sectionHalfWidth {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0
    }
}

.sectionHalfWidth .halfWidthBlockWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%
}

@media screen and (max-width: 790px) {
    .sectionHalfWidth .halfWidthBlockWrap {
        width: 100%;
        margin: 10px 0;
        background-color: #fff
    }
}

.sectionHalfWidth .halfWidthBlock {
    width: 80%;
    position: relative
}

@media screen and (max-width: 790px) {
    .sectionHalfWidth .halfWidthBlock {
        width: 100%
    }
}

.sectionHalfWidth .halfWidthBlock .halfWidthTop {
    background: -webkit-gradient(linear, left top, right top, from(#FBB03B), to(#F7DF2C));
    background: linear-gradient(90deg, #FBB03B, #F7DF2C);
    padding: 5px 0;
    border-radius: 20px 20px 0 0
}

.sectionHalfWidth .halfWidthBlock .halfWidthTop.greenBg {
    background: -webkit-gradient(linear, left top, right top, from(#39B54A), to(#8CC63F));
    background: linear-gradient(90deg, #39B54A, #8CC63F)
}

.sectionHalfWidth .halfWidthBlock .halfWidthTop h3 {
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    margin: 0
}

@media screen and (max-width: 790px) {
    .sectionHalfWidth .halfWidthBlock .halfWidthTop {
        border-radius: 0
    }
}

.sectionHalfWidth .halfWidthBlock .swiperHalfWidthWrap {
    background-color: #fff
}

.sectionHalfWidth .halfWidthBlock .swiper-container, .sectionHalfWidth .halfWidthBlock .swiper-wrapper {
    position: initial
}

.sectionHalfWidth .halfWidthBlock .swiper-container {
    width: 90%;
    padding: 20px 0
}

.sectionHalfWidth .halfWidthBlock .swiper-slide a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.sectionHalfWidth .halfWidthBlock .swiper-slide a:hover {
    opacity: 0.8
}

.sectionHalfWidth .halfWidthBlock .swiper-slide .imgWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 100px
}

@media screen and (max-width: 1260px) {
    .sectionHalfWidth .halfWidthBlock .swiper-slide .imgWrap {
        width: 80px;
        height: 80px
    }
}

@media screen and (max-width: 1160px) {
    .sectionHalfWidth .halfWidthBlock .swiper-slide .imgWrap {
        width: 60px;
        height: 60px
    }
}

@media screen and (max-width: 860px) {
    .sectionHalfWidth .halfWidthBlock .swiper-slide .imgWrap {
        width: 40px;
        height: 40px
    }
}

@media screen and (max-width: 790px) {
    .sectionHalfWidth .halfWidthBlock .swiper-slide .imgWrap {
        width: 80px;
        height: 80px
    }
}

@media screen and (max-width: 400px) {
    .sectionHalfWidth .halfWidthBlock .swiper-slide .imgWrap {
        width: 40px;
        height: 40px
    }
}

.sectionHalfWidth .halfWidthBlock .swiper-slide .imgWrap img {
    max-width: 100%;
    max-height: 100%
}

.sectionHalfWidth .halfWidthBlock .swiper-slide p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
    font-size: 1.4rem;
    color: #4D4D4D
}

@media screen and (max-width: 1160px) {
    .sectionHalfWidth .halfWidthBlock .swiper-slide p {
        font-size: 1rem
    }
}

.sectionHalfWidth .halfWidthBlock .swiper-button-next, .sectionHalfWidth .halfWidthBlock .swiper-button-prev {
    width: 40px;
    height: 60px;
    color: rgba(169, 169, 169, 0.46);
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit
}

.sectionHalfWidth .halfWidthBlock .swiper-button-next:after, .sectionHalfWidth .halfWidthBlock .swiper-button-prev:after {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 8px;
    background-color: #fff
}

@media screen and (max-width: 790px) {
    .sectionHalfWidth .halfWidthBlock .swiper-button-next, .sectionHalfWidth .halfWidthBlock .swiper-button-prev {
        display: none
    }
}

.sectionHalfWidth .halfWidthBlock .swiper-button-next {
    right: -40px
}

.sectionHalfWidth .halfWidthBlock .swiper-button-next:after {
    content: '\203a';
    padding-right: 7px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-shadow: 10px 1px 10px -2px #F2F2F2;
    box-shadow: 10px 1px 10px -2px #F2F2F2;
    border-radius: 0px 100px 100px 0px
}

.sectionHalfWidth .halfWidthBlock .swiper-button-prev {
    left: -40px
}

.sectionHalfWidth .halfWidthBlock .swiper-button-prev:after {
    content: '\2039';
    padding-left: 7px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-shadow: -10px 1px 10px -2px #F2F2F2;
    box-shadow: -10px 1px 10px -2px #F2F2F2;
    border-radius: 100px 0px 0px 100px
}

.fixedPageAd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000
}

.fixedPageAd.hide {
    display: none
}

.fixedPageAd .countdownText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    height: 80px;
    position: fixed;
    top: 40px;
    right: 40px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer
}

@media screen and (max-width: 480px) {
    .fixedPageAd .countdownText {
        width: 50px;
        height: 50px;
        font-size: 1.2rem
    }
}

.fixedPageAd a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.fixedPageAd a img {
    max-width: 60%
}

.fixedAd {
    position: fixed;
    right: 10px;
    bottom: 100px;
    z-index: 99;
    cursor: pointer
}

.fixedAdWrap {
    position: relative
}

.fixedAdWrap .adBtn {
    width: 80px
}

.fixedAdWrap .adCross {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px
}
*/
