/*------------ 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 > .box{
   /* max-width: 280px;*/
    margin: 0 auto;
    padding: 10px 10px 0;
    background: #FFFFFF;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    position: relative;
    border: solid 1px #fff;
}
.product-list .box .cover2{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}

.product-list > li > .box:hover {
}

.product-list .pic {
    /*max-width: 260px;*/
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    transition: all .3s ease-in-out;
}
.product-list .pic:before{
    content: '';
    display: block;
    width: 90%;
    height:90%;
    background: rgba(68, 68, 68, 0.9);
    width: 100%;
    transition: all .3s ease-in-out;
    position: absolute;
    margin: auto;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
}
.product-list .box:hover .pic:before{
    width: 100%;
    height:100%;
    opacity: 1;
}
.product-list .pic:after{
    content: 'Read More';
    display: block;
    border:  solid 1px #fff;
    background: url(../../images/common/plus.png) no-repeat 100% 50%;
    border-width:  1px 0;
    font-family: 'Titillium Web', sans-serif;
    text-align: left;
    position: absolute;
    width: 0px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    letter-spacing: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transition: all .35s ease-in-out;
    opacity: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 15px;
}
.product-list .box:hover .pic:after{
     opacity: 1;
     width: 150px;
}

.product-list .name {
    text-align: left;
    line-height: 1.2;
    color: #333;
    font-size: 17px;
    height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 15px 0 5px;
    box-sizing: border-box;
    padding: 0 5px;
}

.product-list .description {
    font-size: 14px;
    color: #909090;
    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';
    font-family: 'Titillium Web', serif;
    width: 60px;
    height: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    border-radius: 20px;
    z-index: 15;
    line-height: 25px;
    color: #fff;
    background: #2d57a7;
}

.product-list li.top .cover{
    font-family: Arial;
    width: 60px;
    height: 30px;
    position: absolute;
    top: 20px;
    text-align: center;
    border-radius: 20px;
    z-index: 15;
    left: 20px;
    line-height: 30px;
    background: #f8d038;
    font-weight: bold;
}

.product-list  li > .box:hover .description {
    transition: all .2s;
    color: #545454;
}


.product-list .more {
    color:#2d2d2d;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    margin: 0 auto;
    max-width: 180px;
    padding: 5px 10px;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    font-family: 'Titillium Web', sans-serif;
    font-size: 13px;
    border: solid 2px #fff;
    max-width: 120px;
}
.product-list .link-pd{
    position: relative;
}
.product-list .link-pd:before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(#2d57a7,#27e9f0);
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
}
.product-list .box:hover .link-pd:before{
    width: 0;
    left: inherit;
    right: 0;
}

.product-list .box:hover .more {
    background:  #2d57a7;
    border-color: #2d57a7;
    color: #fff;
    max-width: 200px;
}

/*------------ 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: #333;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    border-bottom: 1px solid #bbbab5;
    padding: 15px 0px 10px 30px;
    margin: 0 0 20px;
    position: relative;
}

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

.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: linear-gradient(to bottom, #999999,#444444) 50% 50%;
    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 {
    background: #e8e8e8;
    color: #555;
    padding: 3px 13px;
    box-sizing: border-box;
    font-size: 18px;
    margin: 0 0 35px;
}
.content-top.product_title{
    margin: 0 0 0px;
}
/**********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: #666;
    padding: 0 5px;
    border: 1px solid #ddd;
}
.sort_box .form-control:focus {
    outline: none;
    border-color: #2d57a7;
    background: #e8e8e8;
    color: #444;
}
.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: #4e5454;
}

.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: #4e5454;
}

.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) {
    .sort_icon .ibtn.one {
        display: inline-block;
    }
    .sort_icon .ibtn.four {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .products-intro .product-name .icon02{
        display: none;
    }
    .products-intro .product-name {
        padding: 15px 0 25px;
    }
}

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

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