@charset "utf-8";
/* ---- list ---- */
.products-list {
    margin: 0 -12px;
}
.products-list li {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: calc(100% / 5 - 3px);
    padding: 0 12px;
    text-align: center;
    margin: 0 auto 30px;
}
.products-list li:nth-child(5n+1) {
    clear: left;
}
.products-list li .pic {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    line-height: 1;
    transition: all .3s ease;
    overflow: hidden;
}
.products-list .pic a:before {
    content: 'LEARN MORE';
    display: block;
    position: absolute;
    top: 0%;
    left: 50%;
    border-radius: 100%;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    width: 130px;
    height: 130px;
    line-height: 130px;
    font-family: 'Tenor Sans', serif;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease;
}
.products-list li:hover .pic a:before {
    top: 50%;
    opacity: 1;
}
.products-list .pic a::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    z-index: 1;
    transition: all 0.5s ease;
}
.products-list li:hover .pic a:after {
    opacity: 1;
}
.products-list li .pic a{
    overflow: hidden;
}
.products-list li .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.products-list li:hover .pic img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}
.products-list .new>.pic::before {
    content: 'HOT';
    position: absolute;
    display: block;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    background: url(../../images/common/products/new_tag.png) no-repeat;
    background-size: contain;
    font-family: 'Tenor Sans', serif;
    z-index: 10;
}
.products-list .text {
    position: relative;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
    padding: 5px 0 0;
}
.products-list .name {
    position: relative;
    display: block !important;
    text-align: left;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 38px;
    font-size: 18px;
    color: #555;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}
.products-list .name::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
}
.products-list li .offers {
    position: relative;
    box-sizing: border-box;
    padding: 15px 0 7px;
    display: block;
    text-align: left;
    color: #AB1748;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.8px;
    line-height: 1.2;
    font-family: 'Tenor Sans', serif;
}
/* ---- wish ---- */
.products-list .btn.wish {
    position: absolute;
    display: block;
    text-align: center;
    bottom: 3px;
    right: 0;
    transition: all .3s ease;
}
.products-list .btn.wish i {
    display: block;
    color: #ccc;
    font-size: 25px;
    width: 26px;
    height: 26px;
    line-height: 26px;
}
.products-list .btn.wish i::before {
    content: "\e9077";
}
.products-list .btn.wish.del i::before {
    content: "\e814";
}
.products-list .btn.wish:hover i {
    color: #A51B50;
}
.products-list .btn.wish.del {
    bottom: 0;
    font-size: 0;
}
.products-list .btn.wish.del i {
    transform: rotate(45deg);
}
/* ---- /list ---- */
/* ---- search-list ---- */
.search-top span {
    display: inline-block;
}
.search-list li {
    width: 25%;
    padding: 0;
}
.search-list li:nth-child(3n+1) {
    clear: none;
}
.search-list li:nth-child(4n+1) {
    clear: left;
}
/*radio*/
.pd-price.better {
    text-decoration: none;
}
.pd-info-label {
    margin-bottom: 6px;
    float: left;
    width: 40%;
}
.pd-info .color-radio {
    display: inline-block;
    padding: 2px;
    border: 1px solid #DCDCDC;
    position: relative;
    line-height: normal;
    margin: 0 3px 6px 0;
    cursor: pointer;
}
.pd-info .color-radio.checked {
    border-color: #7FCAA5;
}
.pd-info .color-radio input {
    visibility: hidden;
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
}
.pd-info .size-radio {
    display: inline-block;
    padding: 2px;
    border: 1px solid #DCDCDC;
    position: relative;
    line-height: normal;
    margin: 0 3px 6px 0;
    cursor: pointer;
    min-width: 15px;
    text-align: center;
    background: #fff
}
.pd-info .size-radio.checked {
    border-color: #7FCAA5;
}
.pd-info .size-radio input {
    visibility: hidden;
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
}
/*!radio*/
/* ---- arrival ---- */
.pd-arrival-fancybox .pd-info {
    text-align: center;
}
.pd-arrival-fancybox .pd-info-label {
    margin-bottom: 6px;
    float: none;
    width: auto;
}
/* ---- /arrival ---- */
/* ---- icon ---- */
.pd-intro .btn.wish {
    color: #000;
    margin-left: 15px;
    line-height: 25px;
}
.pd-intro .btn-group .btn.wish:hover {
    background: #FF732F;
    border-color: #FF732F;
}
.pd-intro .btn.wish .icon {
    margin: 0 4px 3px 0;
    background-position: -125px -50px;
}
.pd-intro .btn.wish:hover .icon {
    background-position: -125px -75px;
}
.pd-intro .btn-group {
    margin: 25px -6px 0;
}
.pd-intro .btn-group .col {
    float: left;
    width: 50%;
    padding: 0 6px;
}
.pd-intro .btn-group .btn {
    float: left;
    width: 30%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    line-height: 25px;
    margin: 5px 5px;
    padding: 10px 0;
    border: 1px solid #d5d6cd;
}
.pd-intro .btn-group .btn.wish {
    clear: both;
    background: #D96893;
    border-color: #D96893;
}
.pd-intro .btn-group .btn.addcart {
    background: #FF732F;
}
.pd-intro .btn-group .btn.buynow {
    background: #FF2626;
}
.pd-intro .btn-group .btn.addcart:hover,
.pd-intro .btn-group .btn.buynow:hover {
    background: #000;
}
.pd-intro .btn-group .btn.arrival {
    border: 1px solid #ccc;
    color: #878787;
    letter-spacing: 0.3em;
}
.pd-intro .btn-group .btn.arrival:hover {
    border-color: #FF732F;
}
.pd-intro .btn-group .btn.soldout {
    background: #ADADAD;
    letter-spacing: 0.3em;
    cursor: not-allowed;
}
.pd-intro .btn-group .btn .icon {
    margin: 0 12px 5px 0;
}
.pd-intro .btn-group .btn.addcart .icon {
    background-position: -25px -50px;
}
.pd-intro .btn-group .btn.buynow .icon {
    background-position: -50px -50px;
    width: 40px;
}
/* ---- /icon ---- */
/* ---- content ---- */
/* common */
.products-info {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.products-info .product-name {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-weight: normal;
    color: #505050;
    margin: 0 0 20px;
}
.products-info .product-id {
    color: #aaa;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.prodout_main {
    display: flex;
    background: #eee;
    width: 100%;
}
.products-info .gallery {
    margin: 0;
    width: 43.637%;
}
.products-info .gallery img {
    width: 100%;
}
.products-info .txt {
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 18px 14px;
    width: 56.363%;
}
.products-info .form-group {
    line-height: 26px;
    color: #555;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 10px;
}
.products-info .form-group.price .form-col {
    display: inline-block;
}
.products-info .form-group.price .form-col+.form-col {
    margin-left: 20px;
}
.products-info .control-label {
    color: #555;
    letter-spacing: 0.1em;
    margin: 0 5px 0 0;
}
.form-group.spec .control-label {
    width: 50px;
    display: inline-block;
}
.products-info .control-box {
    display: inline-block;
}
.form-group.spec .control-box {
    width: calc(100% - 60px);
}
.products-info .form-col+.form-col {
    margin: 15px 0 0 0;
}
/* member-pricec活動價 */
.products-info .member-price .control-label {
    color: #46392C;
}
.products-info .member-price .control-box {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    font-family: 'Tenor Sans','Noto Sans TC', serif;
    margin: 13px 0 0 0;
    color: #A51B50;
}
/* btn-box */
.products-info .btn-box {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 30px 0 0;
}
.products-info .btn-box .btn {
    display: inline-block;
    border: 1px solid #fff;
    width: 33%;
    border-radius: 0;
    background: #666;
    color: #fff;
    transition: all 0.3s ease;
}
.products-info .btn-box .btn:hover {
    background: #CFD69B;
    color: #fff;
    opacity: 1;
}
.products-info .btn-box .btn:hover i {
    color: #CFD69B;
    border-color: #CFD69B;
}
.products-info .btn-box .arrival {
    color: #aaa;
    background: #fff;
    border: 1px solid #aaa;
}
.products-info .btn-box .arrival i {
    background: #fff !important;
    color: #aaa !important;
}
.products-info .btn-box .nobuy {
    background: #ADADAD;
    cursor: not-allowed;
}
/* title */
.products-detail,
.buymore-box {
    max-width: 1345px;
    position: relative;
}
.buymore-box,
.products-detail,
.related-box {
    margin: 55px 0 60px;
}
.buymore-box .title,
.products-detail .title,
.related-box .title {
    position: relative;
    display: block;
    text-align: center;
    color: #555;
    font-size: 20px;
    padding: 0 0 10px;
    margin: 0 0 15px;
    font-weight: normal;
    letter-spacing: 1.5px;
    line-height: 1.2;
    border-bottom: 1px solid #e9e9e9;
} 
/* ---- content ---- */
/* ---- share ---- */
.share_box .share-link .btn,
.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w {
    color: #fff;
    cursor: pointer;
    font-size: 25px;
}
.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w{
    line-height: 30px;
}
.share_box .share-link .btn {
    line-height: 1;
}
.share-link.list-inline {
    text-align: left;
}
.share-out-bth {
    display: inline-block;
    float: right;
    margin-top: 0;
    padding-right: 5px;
}
.share-buttom {
    border-radius: 100%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 16px;
    color: #fff;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}
.share-buttom:hover {
    background: #444;
}
.share-buttom .share_box {
    position: absolute;
    background: #46392C;
    padding: 3px 5px;
    margin-top: -50px;
    right: 3%;
}
.share-buttom .share_box:after {
    content: '▼';
    display: block;
    font-size: 20px;
    color: #444;
    position: absolute;
    margin-top: -6px;
    right: 1%;
}
.share_box {
    display: none;
}
.share-buttom:hover .share_box {
    display: block;
}
.a2a_svg {
    display: none !important;
}
/* ---- /share ---- */
/* ---- 我要加購 ---- */
.buymore-list .form-control {
    height: 30px;
    margin: 0;
    font-weight: normal;
    border-radius: 0;
}
.buymore-list .pd-info {
    margin: 0;
    padding-top: 4px;
}
.buymore-list .pd-info .form-control {
    margin: 2px 0;
    padding: 0 5px;
    max-width: none;
}
.buymore-list .pd-info .spec {
    float: left;
    width: calc(100% - 75px);
}
.buymore-list .item {
    padding: 8px 12px;
    width: 49%;
    margin: 5px 0.5%;
    background: #fff;
    border: 1px solid #ccc;
    float: left;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.buymore-list .item:hover {
    background: #eee;
}
.buymore-box img {
    width: 50px;
}
.left-buymore {
    display: inline-block;
}
.right-buymore {
    width: calc(100% - 100px);
    float: right;
}
.buymore-list .name {
    color: #46392C;
    font-size: 16px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 25px;
    transition: all 0.3s ease;
    line-height: 1.6;
    height: 25px;
    letter-spacing: 0.8px;
}
.buymore-list .price {
    display: inline-block;
    color: #A51B50;
    font-size: 15px;
    font-weight: normal;
    font-family: 'Tenor Sans','Noto Sans TC', serif;
    line-height: 1.2;
}
.buymore-list .pd-info .qty {
    float: right;
    width: 70px;
}
.buymore-list .ic.ic3-down2 {
    color: #80caa5;
    font-size: 13px;
    position: absolute;
    top: 10px;
    left: 15px;
}
.buymore-bth {
    position: relative;
    text-align: center;
    background: #CFD69B;
    max-width: 85px;
    padding: 3px 10px;
    font-size: 15px;
    color: #fff;
    border-radius: 0;
    margin: -49px 7px 0 0;
    float: right;
    cursor: pointer;
    transition: all 0.3s ease;
}
.buymore-bth i {
    font-size: 10px;
    margin-right: 5px;
    -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}
.buymore-bth .up {
    display: none;
}
.buymore-bth.active .up {
    display: block;
}
.buymore-bth.active .down {
    display: none;
}
.buymore-bth.active {
    background: #666;
}
.buymore-bth.active .up i {
    transform: scaleY(1);
}
.btn.buymore-add {
    max-width: 30px;
    width: auto;
    display: inline-block;
    background: #b8b9aa;
    padding: 1px 5px;
}
.btn.buymore-add:hover {
    background: #72b1aa;
}
.btn.buymore-add i {
    color: #fbfbfb;
    font-size: 16px;
}
/* ---- /我要加購 ---- */
/* ---- message ---- */
.pro-in-message {
    margin: 80px 0 30px;
}
.buymore-list .form-checkbox {
    display: block;
}
.buymore-list {
    height: auto;
    overflow: hidden;
}
/* ---- /message ---- */
/* ---- 詳細介紹 ---- */
.products-detail {
    position: relative;
    clear: both;
}
/* ---- /詳細介紹 ---- */
/* ---- 相關商品 ---- */
.related-box {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    border: 1px solid #ccc;
    background: #fff;
    padding: 50px;
    margin-bottom: 0;
}
.related-box .title {
    margin: 0 0 30px;
}
.related-slider {
    position: relative;
}
.related-list {
    display: block;
    vertical-align: middle;
    margin: 0 -10px;
}
.related-list .item {
    padding: 0 10px;
    box-sizing: border-box;
}
.related-list .shopping_way.hot {
    text-align: center;
}
.related-list .pic {
    position: relative;
    overflow: hidden;
}
.related-list li .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.related-list li:hover .pic img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
}
.related-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #46392C;
    letter-spacing: 0.8px;
    margin: 5px 0 0;
    text-align: left;
    transition: all 0.3s ease;
}
/* arr */
.arrow-box {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    height: 42px;
    top: 50%;
    margin-top: -21px;
    z-index: unset;
}
.arrow-box .slick-arrow {
    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;
    color: transparent;
    border: 0;
    background: #666;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    padding: 0;
    position: absolute;
    font-size: 26px;
    cursor: pointer;
    transition: all .3s ease;
    left: 0;
    right: unset;
}
.arrow-box .slick-next {
    right: 0;
    left: unset;
}
.arrow-box .slick-arrow:hover {
    background: #CFD69B;
}
.arrow-box .slick-arrow:before {
    color: #fff;
    display: block;
}
.arrow-box .slick-prev:before {
    content: "\f104";
}
.arrow-box .slick-next:before {
    content: "\f105";
}
.arrow-box .slick-next:after {
    content: "";
    width: 1px;
    height: 17px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    top: 13px;
    left: 0;
}
/* ---- /相關商品 ---- */
/* ---- 貨到通知燈箱 ---- */
.pd-arrival-fancybox .pd-info {
    text-align: center;
}
.pd-arrival-fancybox .pd-info-label {
    margin-bottom: 6px;
    text-align: right;
    font-size: 14px;
    display: inline-block;
}
.pd-arrival-fancybox {
    padding: 5px 0;
    margin: 10px 0;
}
.pd-arrival-fancybox .pd-info select.form-control {
    width: 40%;
    display: inline-block;
}
.form-box .captcha .form-control {
    display: inline-block;
    vertical-align: top;
    width: 46%;
    max-width: 280px;
}
.pd-arrival-fancybox .control-box {
    display: inline-block;
    max-width: 380px;
    width: 100%;
}
.pd-arrival-fancybox.box {
    max-width: 440px;
    margin: auto;
}
/* ---- /貨到通知燈箱 ---- */
.form-group select.form-control {
    margin: 0;
    font-weight: normal;
    border-radius: 0;
}
.buymore-box .buymore-title {
    color: #A98865;
    font-size: 22px;
    margin: 10px 0;
    border-bottom: 1px solid #E1E1E1;
    padding: 0 0 5px 0;
}
.buymore-box .buymore-title i {
    font-size: 15px;
    color: #72B1AA;
    margin-right: 10px;
}
/* ---- 產品活動activity ---- */
/* banner */
.activity-banner .item {
    position: static;
    height: auto;
}
/* price's red hover */
.pd-activity {
    background: rgb(228, 57, 43);
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px 0 40px;
    transition: all .2s;
    position: relative;
    margin-left: 15px;
}
.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: calc(50% - 5px);
}
.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;
}
/* ---- /產品活動activity ---- */
/* ---- 拆單 ---- */
.shopping_way.hot {
    text-align: center;
    margin-top: 12px;
}
.shopping_way .general {
    border: 1px solid #333;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #333;
}
.shopping_way .cold {
    border: 1px solid #42b354;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #42b354;
}
.shopping_way .freezing {
    border: 1px solid #68a0da;
    padding: 5px;
    bottom: 5px;
    position: relative;
    color: #68a0da;
}
.shopping_way span+span {
    margin-left: 10px;
}
.pd-intro .btn-group .btn.general {
    border: 1px solid #4e4e4e;
    color: #4e4e4e;
    background: #fff;
}
.pd-intro .btn-group .btn.general:hover {
    color: #fff;
    background: #4e4e4e;
}
.pd-intro .btn-group .btn.cold {
    border: 1px solid #42b354;
    color: #42b354;
    background: #fff;
}
.pd-intro .btn-group .btn.cold:hover {
    color: #fff;
    background: #42b354;
}
.pd-intro .btn-group .btn.freezing {
    border: 1px solid #68a0da;
    color: #68a0da;
    background: #fff;
}
.pd-intro .btn-group .btn.freezing:hover {
    color: #fff;
    background: #68a0da;
}
/* ---- /拆單 ---- */
/* ---- plus-box ---- */
.plus-list .shopping_way.hot {
    text-align: center;
}
.plus-list {
    margin: 0 -14px;
}
.plus-list li {
    width: 25%;
    padding: 0 14px 65px;
}
.plus-list li:nth-child(4n+1) {
    clear: left;
}
.plus-list li:nth-child(5n+1) {
    clear: none;
}
.plus-list .name {
    border: 0;
    display: block;
    margin: 0 0 5px 0;
    text-align: center;
}
.plus-list .name::before {
    right: 0;
    margin: 0 auto;
}
.plus-list li .offers {
    display: inline-block;
    text-align: left;
    font-size: 16px;
}
.plus-list li .offers .pic{
    margin: 0;
    text-align: left;
}
.plus-list .qty-box {
    width: 120px;
    margin-left: 10px;
}
.plus-list select.form-control {
    width: 100%;
    max-width: 100%;
    margin: 0px 0 0px;
}
.plus-list .form-group {
    min-height: 26px;
    margin: 5px 0 0;
}
.plus-list .btn.addcart {
    color: #fff;
    font-size: 16px;
    margin: 8px 0 0 0;
    background: #666;
    border-radius: 0;
    line-height: 33px;
    transition: all 0.3s ease;
}
.plus-list .btn.addcart i {
    margin: 0 10px 0 0;
    display: inline-block;
}
.plus-list .btn.addcart:hover {
    background: #CFD69B;
    color: #fff;
}
/* ---- /plus-box ---- */
/* ---- rwd ---- */
@media screen and (max-width: 1000px) {
    .products-list li {
        width: 50%;
        margin: 0 auto 20px;
    }
    .products-list .shopping_way.hot {
        text-align: center;
    }
    .products-list li:nth-child(5n+1) {
        clear: none;
    }
    .products-list li:nth-child(2n+1) {
        clear: left;
    }
    .products-list .name {
        font-size: 16px;
        height: 35px;
    }
    .products-list li .offers {
        font-size: 16px;
    }
    .shopping_way .freezing,
    .shopping_way .cold,
    .shopping_way .general {
        padding: 3px;
    }
    .sort_box {
        margin-bottom: 5px;
    }
    .products-info .product-name {
        font-size: 20px;
        margin: 0 0 15px;
    }
    .products-info .product-id {
        font-size: 13px;
        margin: 0 0 20px;
    }
    .products-info .txt {
        padding: 10px;
        width: 100%;
    }
    .prodout_main {
        display: block;
    }
    .gallery,
    .pd-intro,
    .related-box,
    .buymore-box {
        float: none;
        width: auto;
    }
    .products-info .gallery {
        width: 100%;
        margin: 0 auto 20px;
    }
    .products-info .form-group {
        display: block;
        margin: 0 0 15px;
        text-align: left;
    }
    .products-info .form-col+.form-col {
        margin-top: 0;
    }
    .form-group select.form-control,
    .buymore-list .form-control {
        margin-bottom: 15px;
    }
    .products-info .member-price .control-box {
        font-size: 18px;
    }
    .share-out-bth {
        padding-right: 0;
    }
    .share-buttom .share_box {
        margin: -45px -15px 0;
    }
    .products-info .btn-box .btn {
        display: inline-block;
        width: calc((100% / 2) - 0.1px);
        margin: 0px -5px 25px 0;
        padding: 20px 10px 10px;
    }
    .products-info .btn-box .btn {
        margin: 0px -5px 25px 0;
    }
    #addtocart {
        margin: 0;
        padding-bottom: 0;
    }
    .pro-in-message {
        margin: 70px 0 30px;
    }
    .plus-list .name {
        margin: 5px 0 1px;
    }
    .buymore-box,
    .products-detail,
    .related-box {
        margin: 30px 0;
    }
    .buymore-bth{
        font-size: 14px;
        margin: -45px 0 0 0;
    }
    .buymore-list .item {
        width: 100%;
        margin: 0;
    }
    .buymore-list .item+.item{
        margin: 10px 0 0;
    }
    .related-box {
        padding: 5px 25px 35px;
        margin: 5px 0 40px;
    }
    .pd-arrival-fancybox .pd-info-label {
        font-size: 14px;
    }
    .arrival-box .pd-name{
        font-size: 20px;
    }
    .buymore-box .title,
    .products-detail .title,
    .related-box .title{
        font-size: 16px;
    }
    .related-box {
        padding: 30px 30px 50px;
    }
    .related-box .title {
        margin: 0 0 20px;
    }
    .related-list .name,
    .buymore-list .name {
        font-size: 15px;
    }
}
@media screen and (max-width: 900px) {
    .arrival-box .pd-name{
        font-size: 16px;
        margin: 30px 0 15px;
    }
}
@media screen and (max-width: 767px) {
    .products-list {
        margin: 0 -5px;
    }
    .products-list li{
        padding: 0 5px;
    }
    .products-list .text {
        position: static;
    }
    .products-list .new>.pic::after{
        top: 10px;
        left: 10px;
    }
    .products-list .btn.wish i {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 16px;
        margin: 0 auto;
    }
    .buymore-list .pd-txt,
    .buymore-list .pd-info {
        float: none;
        width: auto;
    }
}
@media screen and (max-width: 480px) {
    .products-info .product-name {
        font-size: 16px;
    }
    .buymore-box .title {
        text-align: left;
    }
    .pd-intro .btn-group .col {
        width: 100%;
    }
    .shopping_way span+span {
        margin-left: 3px;
    }
    .pd-all-fancybox {
        padding: 0 10px;
    }
    .share-buttom .share_box {
        margin: -40px -20px 0;
    }
    .sort_box .control-box span {
        display: none;
    }
    .pd-intro .btn-group .btn.wish .ic {
        display: none;
    }
    .pd-intro .btn-group .btn {
        font-size: 12px;
    }
    .sort_box .form-control.sort-mobile {
        display: block;
        width: 60px;
    }
    .products-info .btn-box .btn {
        margin: 0px -5px 10px 0;
        padding: 8px 5px;
    }
    #addtocart{
        padding: 15px 0 20px;
    }
    .products-info .form-group.price .form-col+.form-col {
        margin: 0px;
        display: block;
    }
    .products-info .btn-box {
        margin: 25px 0 0 0;
    }
    .related-box{
        padding: 15px 15px 40px;
    }
}
/*product_column欄位*/
.sort_column_one .item {
    width: 100%;
}
.sort_column_two .item {
    width: 50%;
}
.sort_column_two .item:nth-child(n) {
    clear: inherit;
}
.sort_column_two .item:nth-child(2n+1) {
    clear: left;
}
/*!product_column欄位*/