html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 1200px;
}
.flash-sale-container {
    background-repeat: repeat-y;
    margin-top: 26px;
    padding-bottom: 150px;
    background-size: 100%;
}
.flash-sale-block {
    width: 82%;
    /* width: 1200px; */
    margin: 0 auto;
}

/* Banner */
.banner-block {
    position: relative;
}
.banner-img {
    width: 100%;
    height: auto!important;
    display: block!important;
}
.banner-block a {
    display: flex;
    display: block;
}

/* 倒计时 */
.countdown-block {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    height: 70px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.countdown-block .end-text {
    color: #fff;
    font-size: 24px;
    margin-right: 30px;
}
.countdown-block .time-item {
    display: block;
    width: 32px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 6px;
    font-size: 21px;
    color: #333333;
    margin: 3px;
}
.countdown-block .split-point {
    font-size: 21px;
    color: #FFFFFF;
}

/* 导航 */
.navs-block {
    padding: 18px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 1;
}
.navs-block .nav {
    display: inline;
    min-width: 180px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #E5E5E5;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    margin: 0 20px 20px 20px;
    border-radius: 2px;
    background-color: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    /* transition: all 0.3s; */
}
.navs-block .nav:hover {
    background: rgba(51, 51, 51, 0.8);
    color: #FFFFFF;
}
.navs-block .navActive {
    background: #000000;
    color: #FFFFFF;
}

/* 产品区 */
.products-block {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}
.product-item {
    width: calc( (100% - 80px) / 5);
    min-height: 300px;
    margin-top: 36px;
    margin-right: 20px;
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-item:nth-child(5n) {
    margin-right: 0;
}
.product-item .img-container {
    position: relative;
    flex: 1;
    display: flex;
}
.product-item .img-container .product-img-a {
    display: flex;
    align-items: center;
}
.product-item .img-container .product-img-a, .product-item .img-container .product-img {
    width: 100%;
    height: auto;
}
.product-tag {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
}
.product-tag .tag-icon {
    height: 20px;
    width: auto;
}
.product-tag .tag-value {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
}
.product-title {
    display: block;
    width: 100%;
    padding: 10px 12px 8px 12px;
    color: #666666;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    box-sizing: border-box;
    text-decoration: none;
}
.product-title:hover {
    text-decoration: underline;
    color: #000;
}
.product-price {
    margin: 0;
    padding: 0 12px;
}
.product-price .new-price {
    font-size: 20px;
    font-weight: 500;
    color: #E63500;
    margin-right: 10px;
}
.product-price .old-price {
    font-weight: 400;
    color: #999999;
    font-size: 14px;
}
.add-to-bag-container {
    display: block;
    width: 100%;
    height: 36px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.add-to-bag-container .add-to-bag-icon {
    width: 17px;
    margin-right: 9px;
}
.add-to-bag-container span {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
}
.color-attribute {
    height: 40px;
    box-sizing: border-box;
    margin: 16px 12px;
    overflow: hidden;
    position: relative;
    display: flex;
}
.color-attribute .color-scroll-container a {
    display: inline-block;
    height: 40px;
    margin-right: 5px;
    letter-spacing: -3px;
}
.color-attribute .color-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    padding: 2px;
    border: 1px solid #fff;
    box-sizing: border-box;
}
.color-attribute .color-icon-active {
    border: 1px solid #000000;
}
.color-scroll-container {
    overflow: hidden;
    flex: 1;
    position: relative;
}
.color-scroll {
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    letter-spacing: -5px;
}
.left-btn, .right-btn {
    width: 25px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    display: none;
}
.right-btn {
    justify-content: flex-end;
}
.left-btn img, .right-btn img {
    width: 10px;
}
.fixed-navs {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
}

/* 加购弹窗      */
.quickcart_box{
    position: relative !important;
    top: -270px!important;
    left: 0!important;
    box-shadow: none;
    border: none;
}
.quickcart_box .quickcart{
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    position: absolute;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
}
.quickcart dl dd, .quickcart dl dd .attr_value select {
    width: 100%;
}
.quickcart dl dd:last-child {
    display: flex;
}

@media screen and (max-width: 1620px) {
    .flash-sale-block {
        width: 84%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1520px) {
    .flash-sale-block {
        width: 88%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1420px) {
    .flash-sale-block {
        width: 92%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1320px) {
    .flash-sale-block {
        width: 96%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1220px) {
    .flash-sale-block {
        width: 100%;
        margin: 0 auto;
    }
}