/*------------ product-list ------------*/

.product-list {
    margin: 0 -14px;
}

.product-list li {
    width: 25%;
    padding: 0 14px 30px;
}

.product-list li:nth-child(4n+1) {
    clear: left;
}

.product-list > li > a {
    max-width: 280px;
    margin: 0 auto;
    padding: 10px 0px 0;
    box-sizing: border-box;
    transition: all .2s;
}

.product-list > li > a:hover {
    transition: all .2s;
   
}
.product-list .pic {
    /*max-width: 260px;*/
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}

.product-list .name{
   text-align: center;
    line-height: 1.2;
    color: #000;
    font-size: 17px;
    height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 15px 0 5px;
}
.product-list  li > a:hover .name{
    transition: all .2s;
    color: #4da592;
}
.product-list .description{
    font-size: 14px;
    color: #b1b1b1;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    margin: 5px 5px 10px;
}

.product-list .box.new:before {
    content: 'NEW';
     width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    text-align: center;
    border-radius: 50%;
    z-index: 15;
     left: 10px;
    color:#fff;
    line-height: 50px;
    background: #89c3b7;
    font-weight: normal;
    font-family:'Josefin Sans';
}

.product-list li.top .cover{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    text-align: center;
    border-radius: 50%;
    z-index: 15;
    left: 20px;
    color:#fff;
    line-height: 50px;
    background: #89c3b7;
    font-weight: normal;
    font-family:'Josefin Sans';
}
/*
.product-list  li > a:hover .description{
    transition: all .2s;
    color: #545454;
}*/

.product-list .more {
    border:1px solid #89c3b7;
    color: #89c3b7;
    letter-spacing: 3px;
    display: block;
    font-size:14px;
    text-align: center;
    font-family:'Josefin Sans';
    margin: 0;
    padding:8px 10px;
    transition: all .2s;
}

.product-list a:hover .more {
    background: #89c3b7;
    transition: all .2s;
    color:#fff;
}
.product-list .more:after{
        height: 7px;
        content: "";
        display: inline-block;
        right: -5px;
        width:0px;
        transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
        -moz-transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
        -webkit-transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
        -ms-transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1); 
        bottom: 2px;
        position:relative;
        margin-top: auto;
        margin-bottom: auto;
        z-index:1;
        background:url(../../images/common/products/hover.png)no-repeat;
 }

.product-list .more:hover:after{
    opacity:1;
    width:55px;
}
/*------------ search ------------*/

.search-title {
    font-size: 15px;
}

.search-title b {
    font-size: 20px;
    color: #444444;
}


/*------------ detail ------------*/

.products-intro {
    padding: 10px;
    background: #FFF;
    margin: 0 0 40px;
}

.products-intro .product-name {
    color: #000000;
    font-size: 19px;
    font-weight: bold;
    letter-spacing:0.1em;
    line-height: 1.5;
    border-bottom: 1px solid #888888;
    padding: 0px 0px 15px 0px;
    margin: 0 0 10px;
    position: relative;
}

.products-intro .product-name .icon02 {
    display: inline-block;
    margin: 0 5px 0px 0;
    border: 0;
    vertical-align: middle;
    position: absolute;
    left: 0px;
    display: none;
}

.products-intro .gallery {
    width: 53%;
    float: left;
}

.products-intro .slick-item img {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.share_box .products{
    margin: 0;
    text-align: left;
}

.pd-intro,
.products-intro .thumbnails{
    float: right;
    width: calc(47% - 20px);
}

.no-pic .pd-intro,
.no-pic .thumbnails {
    float: none;
    width: 100%;
}

.product-text {
    margin: 0px 0 23px;
}

.products-intro .thumbnails .item {
    width: calc((100% / 3) - 0.1px);
    border: 1px solid #fff;
}

.products-intro .thumbnails li a {
    position: relative;
}

.products-intro .thumbnails li a:before {
    content: "\e1013";
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 23px;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    margin: -11px 0 0 -11px;
    opacity: 0;
    transition: all .2s;
}

.products-intro .thumbnails li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 255,.3);
    opacity: 0;
    transition: all .2s;
}

.products-intro .thumbnails li a:hover:before,
.products-intro .thumbnails li a:hover:after {
    opacity: 1;
    transition: all .2s;
}



/*------------ products-title ------------*/
.products-detail .title {
    font-weight:bold;
    border-bottom:1px solid #b7b7b7;
    color: #000;
    padding: 3px 0px 0 12px;
    font-size: 18px;
    margin: 0 0 35px;
    letter-spacing:0.1em;
    position:relative;
}
.products-detail .title:before{
    content:'';
    width:4px;
    height:33px;
    left:0px;
    display:inline-block;
    background:#89c3b7;
    position:absolute;
}
.content-top.product_title{
    
}
/**********sort_box**********/
/***產品列表頁排序功能，下拉選單跟變換列表尺寸的小圖***/

.sort_box{
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    padding: 0;
    margin-top: 0px;
}
.control-label{
    float: left;
    margin-right: 10px;
    line-height: 30px;
}
.control-box{
    float: left;
}
.sort_box .form-control {
    margin-bottom: 0px;
    background: #fff;
    color: #111;
    padding: 0 5px;
    border: 1px solid #ddd;
}
.sort_box .form-control:focus {
    outline: none;
    border-color: #89c3b7;
   
}
.form-group {
    float: left;
    padding: 5px 0;
}
.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%;
}
/***********nonenav**************/
.product-list .nonenav > a {
    max-width: 310px;
    margin: 0 auto;
    padding: 10px 10px 0;
    background: #FFFFFF;
    box-sizing: border-box;
    transition: all .2s;
}
.product-list .pic.nonenav {
    max-width: 284px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}
/***products_view_two***/

.product-list.item_two li {
    width: 50%;
}

.product-list.item_two > li > a {
    max-width: 490px;
}

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

.product-list .item_two {
    max-width: 1300px;
    margin: 0 auto;
}

.product-list li.item_two {
    width: 50%;
    padding: 0 14px 30px;
}

.product-list > li.item_two > a {
    max-width: 520px;
    margin: 0 auto;
    padding: 10px 10px 0;
    background: #FFFFFF;
    box-sizing: border-box;
    transition: all .2s;
}

.product-list > li.item_two a:hover {
    transition: all .2s;
    background: #FAD038;
}

.product-list li.item_two .pic {
    max-width: 496px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}

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

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

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

.product-list .text-box {
    max-width: 620px;
    margin: 0 auto;
}

/***products_view_one***/

.product-list li.item_one:nth-child(n) {
    clear: none;
}
.product-list > li.item_one {
    width: 100%;
    padding: 0 8px;
    max-width: 1055px;
}
.product-list .item_one{
    margin: 0 auto;
}

.product-list > li.item_one > a {
    max-width: 520px;
    margin: 0 auto;
    padding: 10px 10px 0;
    background: #FFFFFF;
    box-sizing: border-box;
    transition: all .2s;
}

.product-list > li.item_one a:hover {
    transition: all .2s;
    background: #FAD038;
}

.product-list li.item_one .pic {
    max-width: 496px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}

.product-list li.item_one {
    width: 100%;
    padding: 0 14px 30px;
}

/*------------ rwd ------------*/

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1200px) {

    .products-intro {
        text-align: center;
    }
    .pd-intro,
    .products-intro .gallery,
    .products-intro .thumbnails {
        width: auto;
        float: none;
        max-width: 580px;
        margin: 0 auto;
    }
    .products-intro .gallery{
        margin-bottom: 15px;
    }
    .share_box.product {
        margin-top: 15px;
        padding: 0px 0px 5px 0px;
    }
    .products-intro .product-name{
        text-align: left;
    }
    .product-text {
        text-align: left;
    }
    .products-intro .thumbnails .item {
        width: calc((100% / 6) - 0.1px);
        border: 1px solid #fff;
    }
}
@media screen and (max-width: 1100px) {
    .product-list li {
        width: 50%;
    }
    .product-list li:nth-child(2n+1) {
        clear: left;
    }
    .product-list li:nth-child(3n+1) {
        clear: none;
    }
    .product-list > li > a,
    .product-list .nonenav > a {
        max-width: 520px;
    }
    .product-list li .pic,
    .product-list .nonenav .pic {
        max-width: 496px;
    }
}
@media screen and (max-width: 960px) {
    .products-info {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 600px) {
    .products-intro .product-name .icon02{
        display: none;
    }
    .products-intro .product-name {
          padding: 5px 0 10px;
    font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .product-list {
        margin: 0;
    }
    .product-list li {
        width: 100%;
        padding: 0 0 30px;
    }
}

@media screen and (max-width: 400px) {}
