.products-list {
    margin: 0 -10px;
}
.products-list .item {
    width: 25%;
    padding: 0 10px;
    padding: 0 10px 50px;
}
.products-list .item:nth-child(4n+1) {
    clear: left;
}
.products-list .box {
    position: relative;
    background: #FFF;
    border-radius: 25px;
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border: 1px solid #EEEEEE;
}
.products-list .box.new:before {
    content: 'NEW';
    position: absolute;
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    left: 10px;
    top: 10px;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: #EE8AB3;
    
    z-index: 5;
    font-family: "Cabin", sans-serif;
}
.products-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.products-list .pic-box {
    position: relative;
    overflow: hidden;
}
.products-list .pic-box img{
    width: 100%;
}
.products-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}
.products-list .pic:before {
    content: ' ';
    white-space: pre;
    background: rgba(255,255,255,0.5);
   
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    position: absolute;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 100%;
    
     
    transition: all .5s ease;
}
.products-list .box:hover .pic:before {
    
    opacity: 1;
}
.products-list li .txt {
    position: relative;
    box-sizing: border-box;
    z-index: 5;
    right: 0;
    bottom: 0;
    display: block;
    padding: 20px 25px 15px;

    line-height: 1.5;
    letter-spacing: 0.05em;
    pointer-events: none;
    
}
.products-list .name {
    position: relative;
    color: #525252;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 24px;
    margin: 0 0 8px 0;
    transition: all .5s;
}
.products-list .box:hover .name {
    color: #EE8AB3;
}

.products-list .num{
    color: #EE8AB3;
    margin: 5px 0px;
    position: relative;
    display: block;
    text-align: left;
}

.products-list .description {
    position: relative;
    box-sizing: border-box;
    color: #858585;
    font-size: 14px;
     
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    margin: 0;
}



.products-list .products-btn-group{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0px 25px;
}
.products-list .products-btn-group a{
    width: calc(50% - 5px);
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    transition: all .3s ease;
    z-index: 50;
   
}
.products-list .products-btn-group a:nth-child(1){
    background: #6BC8EB;
    
    
    color: #FFF;
}
.products-list .products-btn-group a:nth-child(1):hover{
    background: #5cb0cf;
    
    opacity: 1;
}
.products-list .products-btn-group a:nth-child(2){
    background: #EE8AB3;
    color: #FFF;
    
}
.products-list .products-btn-group a:nth-child(2):hover{
    background: #d67aa0;
    
}

.products-header {
    max-width: 1100px;
    margin: 0 auto;
}
.products-header .title {
    color: #333;
    font-size: 23px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1.4;
    padding: 0 0 16px;
    border-bottom: 1px solid #ddd;
    margin: 0 auto 32px;
    text-align:center;
}

.products-header .num{
    color: #ED8AB2;
    font-size: 16px;
    text-align: center;
    display: block;
    margin: 5px 0;

}

.products-header .product-btn{
    border-radius: 50px;
    width: 160px;
    height: 55px;
    line-height: 55px;
    color: #fff;
    background: #6BC8EB;
    position: relative;
    display: block;
    text-align: center;
    letter-spacing: 2px;
    font-size: 18px;
    transition: all .3s ease;
    margin: 35px auto;
    margin-top: 20px;
}

.products-header .product-btn:hover{
    background: #5cb0cf;
    color: #FFF;
}

.products-intro {
    max-width: 1000px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
}
.gallery {
    width: calc(100% - 420px);
    max-width: 693px;
    flex-shrink: 1;
}
.thumbnails {
    width: 380px;
    margin-left: 40px;
    flex-shrink: 0;
}
.thumbnails ul {
    margin: -10px;
}
.thumbnails li {
    width: 50%; 
    padding: 10px;
    box-sizing: border-box;
}
.thumbnails li a {
    /*max-width: 163px;*/
    margin: 0 auto;
    opacity: 0.35;
    transition: all .5s;
}
.thumbnails li a:hover,
.thumbnails li.active a {
    opacity: 1;
}
.thumbnails li:nth-child(2n+1) {
    clear: both;
}
.products-detail {
    position: relative;
    max-width: 1345px;
    margin: 0 auto;
    padding: 0 0 16px;
    
}

.products-editor{
    max-width: 1100px;
    margin: 0 auto;
}

.products-detail .title {
    position: relative;
    color: #555;
    font-size: 22px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 16px;
    margin: 0 0 16px;
    font-weight: normal;
    letter-spacing: 1.5px;
    line-height: 1;
}
.products-detail .title::before {
    content: '';
    position: absolute;
    top: 32%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background: #52A9A4;;
}
.form-group select.form-control{
    height: 26px;
    margin: 0;
    font-weight: normal;
    border-radius: 0;
}
@media screen and (max-width: 1440px) {
    
}
@media screen and (max-width: 1280px){
    
    .products-list li .txt{
        padding: 15px;
    }
    

    .products-list .products-btn-group {
       
        padding: 0px 15px;
    }
}
@media screen and (max-width: 1000px) {
    .products-list .item {
        width: 33.33%;
        padding-bottom: 20px;
    }
    .products-list .item:nth-child(4n+1) {
        clear: none;
    }
    .products-list .item:nth-child(3n+1) {
        clear: left;
    }
    .products-list .name{
        font-size: 16px;
    }
    .products-header .title{
        font-size: 18px;
        margin-bottom: 24px;
    }
    .products-intro{
        margin-bottom: 24px;
        flex-direction: column;
    }
    .gallery,
    .thumbnails {
        width: 100%;
        margin: 0 auto;
    }
    .gallery {
        max-width: 693px;
        margin: 0 auto 8px;
    }
    .thumbnails ul {
        margin: 0 -5px;
    }
    .thumbnails li {
        width: 16.66%;
        padding: 5px;
    }
    .thumbnails li:nth-child(n) {
        clear: inherit;
    }
    .products-detail .title{
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) {
    .products-list .item {
        width: 50%;
    }
    .products-list .item:nth-child(3n+1) {
        clear: none;
    }
    .products-list .item:nth-child(2n+1) {
        clear: left;
    }
    .products-list .box {
        margin-bottom: 15px;
    }

    .sort_icon .ibtn.one {
        display: inline-block;
    }
    .sort_icon .ibtn.four {
        display: none;
    }

}
@media screen and (max-width: 580px) {
    .products-list .item {
        width: 100%;
    }
    .products-list .item:nth-child(n) {
        clear: none;
    }
}
@media screen and (max-width: 430px) {
    .thumbnails li {
        width: 33.33%;
    }
    .thumbnails li:nth-child(3n+1) {
        clear: both;
    }
}
@media screen and (max-width: 400px) {
    .sort_box .control-box span {
        display: none;
    }
    .sort_box .form-control.sort-pc {
        display: none;
    }
    .sort_box .form-control.sort-mobile {
        display: block;
        width: 80px;
    }
}

/*product_column欄位*/
.products_column_one .item{
    width: 100%;
}
.products_column_two .item{
    width: 50%;
}
.products_column_two .item:nth-child(n){
    clear: inherit;
}
.products_column_two .item:nth-child(2n+1){
    clear: left;
}
/*!product_column欄位*/