.activity-banner:before {
    top: 15%;
    bottom: 28%;
}

.products-list.type1 {
    margin: 0 -12px;
}

.products-list.type1 .item {
    width: 25%;
    padding: 0 12px;
}

.products-list.type1 .item:nth-child(4n+1) {
    clear: left;
}

.products-list.type2 {
    margin: 0 -10px;
}

.products-list.type2 .item {
    width: 20%;
    padding: 0 10px;
}

.products-list.type2 .item:nth-child(5n+1) {
    clear: left;
}

.products-list.type2 .btn.wish {
    color: #F7AC18;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
    margin: 0 0 10px;
}

.products-list.type2 .btn.wish:hover {
    color: #898889;
}

.products-list.type2 .btn.detail {
    display: none;
}

.products-list .box {
    max-width: 248px;
    margin: 0 auto 25px;
    position: relative;
    border: 4px solid rgba(137, 136, 137, 0.20);
    border-radius: 14px;
}

.products-list .box:hover {
    border-color: #FED100;
}

.products-list .box.new:before {
    content: '';
    background: url('../../images/common/products/new_tag.png');
    width: 48px;
    height: 49px;
    position: absolute;
    z-index: 10;
    top: 25px;
    left: 25px;
}

.products-list .pic-box {
    position: relative;
    overflow: hidden;
}

.products-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 14px;
}

.products-list .pic img {
    border-radius: 10px;
}

.products-list .pic:before {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    border-radius: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.products-list .box:hover .pic:before {
    opacity: 1;
}

.products-list .txt {
    position: relative;
    text-align: center;
    font-weight: bold;
    padding: 0 14px 10px;
    line-height: 1.4;
}

.products-list .name {
    color: #231815;
    font-size: 15px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 21px;
}

.products-list .offers {
    color: #FF5C2D;
    font-family: 'Signika Negative', sans-serif;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 30px;
}

.products-intro {
    margin: 0 0 30px;
}

.gallery {
    float: left;
    width: 48.5%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.pd-intro {
    float: right;
    width: 48.5%;
    font-size: 14px;
    position: relative;
    padding-right: 150px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.gallery .pic {
    max-width: 494px;
    margin: 0 auto;
    border: 4px solid #DDDDDD;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
}

.pd-intro .pd-id {
    color: #999;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

.pd-intro .pd-name {
    color: #231815;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.06em;
    margin: 0;
}

.pd-intro .share_box {
    text-align: left;
    margin: 10px 0 0 0;
}

.pd-info {
    padding: 10px 0;
}

.pd-info-divider {
    border: 0;
    background: url('../../images/common/border_dot_h.png') repeat-x;
    height: 1px;
    margin: .5em 0!important;
}

.pd-price {
    color: #898889;
    font-weight: bold;
}

.pd-price span {
    font-family: 'Signika Negative', sans-serif;
    font-size: 16px;
    font-weight: normal;
}

.pd-price .pd-info-label {
    display: inline-block;
    color: inherit;
    width: 54px;
    margin: 0 6px 0 0;
}

.pd-price-better {
    display: inline-block;
    vertical-align: middle;
    background: #FF5C2D;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 32px;
    border-radius: 16px;
    padding: 0 16px;
    margin: 0 0 15px;
}

.pd-price-better span {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
}


/*---------------------------*/

.pd-activity {
    background: rgb(228, 57, 43);
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    padding: 5px 15px 5px 40px;
    transition: all .2s;
    position: relative;
    border-radius: 30px;
    margin: 10px 0;
}

.pd-activity:hover {
    background: #F76171;
}

.pd-activity:before,
.pd-activity:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    vertical-align: middle;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    position: absolute;
    animation-direction: alternate;
    top: 11px;
}

.pd-activity:before {
    animation-name: activity-ani;
    opacity: .5;
    left: 8px;
}

.pd-activity:after {
    animation-name: activity-ani2;
    opacity: 1;
    left: 20px;
}

@keyframes activity-ani {
    from {
        opacity: .5;
    }
    to {
        opacity: 1;
    }
}

@keyframes activity-ani2 {
    from {
        opacity: 1;
    }
    to {
        opacity: .5;
    }
}

.pd-activity a {
    display: block;
}

.pd-description {
    color: #878787;
    line-height: 1.8;
}

.pd-info-label {
    color: #231815;
    font-weight: bold;
    margin-bottom: 6px;
}

.pd-info select.form-control {
    display: inline-block;
    margin: 0;
    max-width: 234px;
}

.pd-intro .btn.wish {
    color: #F7AC18;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
}

.pd-intro .btn.wish:hover {
    color: #FF5C2D;
}

.pd-intro .btn.wish .ic {
    vertical-align: text-bottom;
    font-size: 1.2em;
}

.pd-intro .btn.wish:hover .ic {
    color: #FD9731;
}

.pd-intro .btn-group {
    position: absolute;
    right: 0;
    top: 0;
}

.pd-intro .btn-group .btn {
    display: block;
    width: 126px;
    height: 126px;
    white-space: normal;
    line-height: 1.4;
    color: #999;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.06em;
    background: #FEF9E9;
    border: 1px solid #fff;
    border-radius: 10px;
    padding-top: 18px;
    margin-bottom: 4px;
}

.pd-intro .btn-group .btn:hover {
    color: #555;
}

.pd-intro .btn-group .btn .ic {
    display: block;
    color: #BC966B;
    background: #FDEFC6;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    margin: 0 auto 10px;
    border-radius: 50%;
}

.pd-intro .btn-group .btn:hover .ic {
    background: #FCE7A7;
}

.pd-intro .btn-group .btn small {
    display: block;
    color: #CDCDBF;
    font-family: 'Signika Negative', sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.pd-intro .btn-group .btn:hover small {
    color: #B6B6A3;
}

.pd-intro .btn-group .btn.addcart {
    background: #FCE9AF;
    color: #60370A;
}

.pd-intro .btn-group .btn.addcart .ic {
    color: #86643D;
    background: #FEF7DE;
}

.pd-intro .btn-group .btn.addcart small {
    color: #FF5B2C;
}

.pd-intro .btn-group .btn.buynow {
    background: #FD9731;
    color: #fff;
}

.pd-intro .btn-group .btn.buynow .ic {
    background: #FDE7A4;
    color: #FD9731;
}

.pd-intro .btn-group .btn.buynow small {
    color: #FCE9AF;
}

.pd-intro .btn-group .btn.addcart:hover,
.pd-intro .btn-group .btn.buynow:hover {
    background: #FF5C2D;
    color: #FDFDFD;
}

.pd-intro .btn-group .btn.addcart:hover .ic,
.pd-intro .btn-group .btn.buynow:hover .ic {
    color: #FD9731;
    background: #FEF7DE;
}

.pd-intro .btn-group .btn.addcart:hover small,
.pd-intro .btn-group .btn.buynow:hover small {
    color: #FCE9AF;
}

.pd-intro .btn-group .btn.soldout {
    cursor: not-allowed;
}

.buymore-box .title,
.related-box .title,
.products-detail .title {
    background: url('../../images/common/border_dot_h.png') 0 100% repeat-x;
    color: #231815;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.buymore-box {
    clear: both;
    margin-bottom: 30px;
}

.buymore-list .item {
    background: #eee;
    margin-top: 3px;
    padding: 5px 10px;
}

.buymore-list .item:hover,
.buymore-list .item.checked {
    background: rgba(254, 209, 0, .2);
}

.buymore-list .price {
    display: inline-block;
    color: #FF5C2D;
    font-size: 15px;
    font-weight: bold;
}

.buymore-list .name {
    display: inline-block;
    color: #555;
    font-size: 14px;
}

.buymore-list .name:hover {
    text-decoration: underline;
}

.buymore-list .pd-txt {
    float: left;
    padding: 3px 0;
}

.buymore-list .pd-info {
    float: right;
    width: 240px;
    padding: 0;
    margin: 0;
    border: 0;
}

.buymore-list .pd-info .form-control {
    margin: 2px 0;
    padding: 0 5px;
    height: 26px;
    line-height: 24px;
    max-width: none;
    border-radius: 0;
}

.buymore-list .pd-info .spec {
    float: left;
    width: calc(100% - 75px);
}

.buymore-list .pd-info .qty {
    float: right;
    width: 70px;
}

.related-box {
    position: relative;
    clear: both;
    margin-bottom: 30px;
}

.related-box .slick-prev,
.related-box .slick-next {
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    line-height: 28px;
    font-size: 20px;
    color: #FDDAA4;
}

.related-box .slick-prev:hover,
.related-box .slick-next:hover {
    color: #FD9731;
}

.related-box .slick-prev {
    right: 30px;
}

.related-box .slick-next {
    right: 0;
}

.related-slider {
    position: relative;
}

.related-list {
    margin: 0 -10px;
}

.related-list .item {
    width: 20%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.related-list .box {
    display: block;
    max-width: 220px;
    margin: 0 auto;
    border: 4px solid #ddd;
    text-align: center;
    line-height: 1.4;
    padding: 12px 12px 6px;
    border-radius: 15px;
    position: relative;
}

.related-list .box:hover {
    border-color: #FED100;
}

.related-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 6px;
}

.related-list .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #fff;
    transition: all 0.3s;
}

.related-list .box:hover .pic:before {
    opacity: 0.5;
}

.related-list .name {
    color: #231815;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.06em;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 19px;
}

.related-list .offers {
    color: #FF5C2D;
    font-family: 'Signika Negative', sans-serif;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.02em;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 25px;
}

.products-detail {
    position: relative;
    margin-bottom: 30px;
}


/*------------ sort_box ------------*/

.sort_box {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    padding: 0;
    margin-top: 0px;
}

.sort_box .control-label {
    float: left;
    margin-right: 10px;
    line-height: 30px;
}

.sort_box .control-box {
    float: left;
}

.sort_box .form-control {
    margin-bottom: 0px;
    color: #666;
    background: #fff;
    padding: 0 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.sort_box .form-control:focus {
    outline: none;
    background: #ddd;
}

.sort_box .form-group {
    float: left;
    padding: 5px 0;
}

.sort_box .form-group:after {
    content: '';
    display: block;
    float: left;
    z-index: 10;
    height: 22px;
    left: 0;
    top: 0;
    margin: 4px 4px;
}

.sort_icon {
    float: left;
    line-height: 30px;
    padding: 5px 0;
}

.sort_icon .ibtn.one {
    background-image: url(../../images/common/products/sort_pic3.png);
    width: 24px;
    height: 24px;
    display: none;
}

.sort_icon .ibtn.two {
    background-image: url(../../images/common/products/sort_pic1.png);
    width: 24px;
    height: 24px;
}

.sort_icon .ibtn.four {
    background-image: url(../../images/common/products/sort_pic2.png);
    width: 24px;
    height: 24px;
}

.sort_icon .ibtn.active {
    background-position: 0 100%;
}

@media screen and (max-width: 767px) {
    .sort_icon .ibtn.one {
        display: inline-block;
    }
    .sort_icon .ibtn.four {
        display: none;
    }
}


/*************************************/


/***products_view_two***/

.products-list.type1 li.item_two {
    width: 50%;
    padding: 0 10px;
}

.products-list.type1 li.item_two:nth-child(4n+1) {
    clear: none;
}

.products-list.type1 li.item_two:nth-child(3n+1) {
    clear: none;
}

.products-list.type1 li.item_two:nth-child(2n+1) {
    clear: left;
}

.products-list.type1 li.item_two .box {
    max-width: 100%;
}

@media screen and (max-width: 480px) {
    .products-list.type1 li.item_two {
        padding: 0 5px;
    }
    .products-list.type1 li.item_two .pic {
        padding: 5px 5px 10px;
    }
    .products-list.type1 li.item_two .txt {
        padding: 0 5px 10px;
    }
}


/***products_view_one***/

.products-list.type1 li.item_one:nth-child(n) {
    clear: none;
    width: 100%;
}

.products-list.type1 li.item_one .box {
    max-width: 520px;
}

@media screen and (max-width: 1300px) {
    .gallery,
    .pd-intro,
    .buymore-box,
    .related-box {
        float: none;
        width: auto;
        clear: both;
    }
    .gallery {
        margin-bottom: 20px;
    }
    .gallery .pic {
        margin: 0;
    }
    .related-list .item {
        width: 25%;
    }
}

@media screen and (max-width: 1280px) {
    .products-list.type1 {
        margin: 0 -7px;
    }
    .products-list.type1 .item {
        padding: 0 7px;
        width: 33.33%;
    }
    .products-list.type1 .item:nth-child(4n+1) {
        clear: none;
    }
    .products-list.type1 .item:nth-child(3n+1) {
        clear: left;
    }
}

@media screen and (max-width: 1200px) {
    .products-list.type2 {
        margin: 0 -7px;
    }
    .products-list.type2 .item {
        padding: 0 7px;
        width: 25%;
    }
    .products-list.type2 .item:nth-child(5n+1) {
        clear: none;
    }
    .products-list.type2 .item:nth-child(4n+1) {
        clear: left;
    }
}

@media screen and (max-width: 1100px) {
    .related-list .item {
        width: 33.33%;
    }
}

@media screen and (max-width: 1000px) {
    .gallery .pic {
        margin: 0 auto;
    }
    .related-list .item {
        width: 25%;
    }
}

@media screen and (max-width: 860px) {
    .products-list.type2 {
        max-width: 700px;
        margin: 0 auto;
    }
    .products-list.type2 .item {
        width: 50%;
    }
    .products-list.type2 .item:nth-child(4n+1) {
        clear: none;
    }
    .products-list.type2 .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 767px) {
    .products-list.type1 .item {
        width: 50%;
    }
    .products-list.type1 .item:nth-child(3n+1) {
        clear: none;
    }
    .products-list.type1 .item:nth-child(2n+1) {
        clear: left;
    }
    .products-list.type2 {
        margin: 0 -7px;
    }
    .pd-intro {
        padding: 0;
    }
    .pd-intro .btn-group {
        position: static;
        padding-top: 10px;
    }
    .pd-intro .btn-group .btn {
        display: inline-block;
    }
    .buymore-list .pd-txt,
    .buymore-list .pd-info {
        float: none;
        width: auto;
    }
    .related-list {
        margin: 0 -4px;
    }
    .related-list .item {
        width: 33.33%;
        padding: 0 4px;
    }
}

@media screen and (max-width: 570px) {
    .related-list .item {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .products-list.type1 .item {
        width: 100%;
    }
    .products-list.type1 .item:nth-child(n) {
        clear: none;
    }
    .products-list.type2 .item {
        width: 100%;
    }
    .products-list.type2 .item:nth-child(n) {
        clear: none;
    }
}

@media screen and (max-width: 380px) {
    .related-list .item {
        width: 100%;
    }
}
