/*------------ product-list ------------*/
.product-list {
    margin: 0 -5px;
}
.product-list .box{
    position: relative;
    /* max-width: 334px; */
    margin: auto;
}
.product-list .box .cover{
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 0;
    z-index: 30;
    position: absolute;
}
.product-list li {
    width: 25%;
    padding: 0 5px 50px;
}
.product-list li:nth-child(4n+1) {
    clear: left;
}
.product-list .pic {
    position: relative;
    box-sizing: border-box;
    border: 7px solid #fff;
    margin: 0 0 15px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all .2s;
}
.product-list .box:hover .pic {
    border: 7px solid #fff;
    border-color: #2A9990;
    transition: all .2s;
}
.product-list .box img {
    width: 100%;
}
.product-list .text-box {
    padding: 0 10px;
    text-align: left;
    /* max-width: 334px; */
    margin: 0 auto;
}
.product-list .name {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #2A9990;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-list .description {
    font-size: 14px;
    color: #8B8B8B;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}
/*------------ detail ------------*/
.products-info {
    background: rgba(255, 255, 255, .8);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}
.product-name {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 14px 10px;
    margin: 0 -15px;
    background: url(../../images/common/bg/bg4.png);
}
.product-name:before,
.product-name:after {
    content: "";
    width: 27px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 25px 0 0;
    background: url('../../images/common/products/ic.png');
}
.product-name:after {
    transform: rotate(180deg);
    margin: 0 0 0 25px;
}
.products-info .gallery {
    max-width: 840px;
    margin: 60px auto 0;
}
.products-info .thumbnails {
    max-width: 840px;
    margin: 15px auto;
}
.products-info .thumbnails ul {
    margin: 0 -9px;
}
.products-info .thumbnails li {
    width: calc(100% / 6);
    padding: 0 9px;
    transition: all .2s;
}
.products-info .thumbnails li:hover,
.products-info .thumbnails li.active {
    opacity: .7;
    transition: all .2s;
}
.products-info .text {
    max-width: 840px;
    margin: 50px auto;
    font-size: 15px;
    color: #8B8B8B;
    line-height: 1.45;
}
/*------------ products-detail ------------*/
.products-detail {
    margin: 50px 0 0 0;
}
.products-detail .title {
    font-size: 20px;
    font-weight: bold;
    color: #2B9990;
    text-align: center;
    margin: 0 0 20px;
}
.products-detail .title i {
    background-position: -75px 0;
    display: block;
    margin: 0 auto 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;
    background: #ddd;
    color: #666;
    padding: 0 5px;
    border: 1px solid #ddd;
}
.sort_box .form-control:focus {
    outline: none;
    background: #fff;
    color: #666;
}
.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: 2px 0;
    position: relative;
    z-index: 0;
}
.sort_icon .ibtn{
    position:relative;
}
.sort_icon .ibtn:before{
    content:'';
    display:block;
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background:#aaa;
    z-index:-1;
    transition: all .3s;
}
.sort_icon .ibtn:hover:before,
.sort_icon .ibtn.active:before {
    background:#7E9628;
}
.sort_icon .ibtn.one {
    background-image: url(../../images/common/products/sort_pic3.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: none;
}
.sort_icon .ibtn.two {
    background-image: url(../../images/common/products/sort_pic1.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.sort_icon .ibtn.four {
    background-image: url(../../images/common/products/sort_pic2.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.sort_box .form-control.sort-mobile{
    display:none;
}
.form-group select.form-control{
    height: 26px;
    margin: 0;
    font-weight: normal;
    border-radius: 0;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1440px) {
    .product-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .product-list li:nth-child(4n+1) {
        clear: none;
    }
    .product-list li:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 900px) {
    .product-list li {
        width: 50%;
        text-align: center;
    }
    .product-list li:nth-child(3n+1) {
        clear: none;
    }
    .product-list li:nth-child(2n+1) {
        clear: left;
    }
    .product-list .text-box {
        max-width: 325px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .products-list .item{
        width: 50%;
    }
    .products-list .item:nth-child(n){
        clear: inherit;
    }
    .products-list .item:nth-child(2n+1){
        clear: left;
    }
    .sort_icon .ibtn.one {
        display: inline-block;
    }
    .sort_icon .ibtn.four {
        display: none;
    }
    .products-info .thumbnails li {
        width: calc((100% / 3) - 0.1px);
        padding: 0 9px 15px;
    }
    .products-info .thumbnails li:nth-child(3n+1) {
        clear: both;
    }
}
@media screen and (max-width: 600px) {
    .product-list {
        margin: 0;
    }
    .product-list li {
        width: 100%;
        padding: 0 0 50px;
    }
    .products-info .gallery {
        margin: 30px auto 0;
    }
    .products-info .thumbnails ul {
        margin: 0 -5px;
    }
    .products-info .thumbnails li {
        padding: 0 5px 15px;
    }
    .products-info .text {
        margin: 20px auto;
    }
}
@media screen and (max-width: 400px) {
    .sort_box .form-control.sort-pc{
        display:none;
    }
    .sort_box .form-control.sort-mobile{
        display: block;
        width:60px;
    }
}
/*product_column欄位*/
.product_column_one .item{
    width: 100%;
}
.product_column_two .item{
    width: 50%;
}
.product_column_two .item:nth-child(n){
    clear: inherit;
}
.product_column_two .item:nth-child(2n+1){
    clear: left;
}
/*!product_column欄位*/