.activity-banner {
    margin-bottom: 50px;
}

.products-list.type1 {
    margin: 23px -25px;
}

.products-list.type1 .item {
    padding: 0 25px;

}
.products-list .item{
     width:25%;
}
.products-list.type2 {
    margin: 0 -18px;
}

.products-list.type2 .item {
    width: 20%;
    padding: 0 18px;
}

.products-list .box {
    /*  max-width: 320px;*/
    margin: 10px auto 40px;
    position: relative;
    text-align: left;
}

.products-list .box.new .pic-box:before {
    content: '';
    display: block;
    /* background: url('../../images/common/products/hot.png') no-repeat; */
    width: 46px;
    height: 52px;
    position: absolute;
    z-index: 15;
    left: 0px;
    top: 0px;
}
.products-list .pic img{
    max-width:100%;
    object-fit: scale-down;
}
.products-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border: solid 1px #ededed;
    transition: all .3s ease-in-out;
    border: 3px solid;
    border-radius: 10px 10px 10px 10px;
}
.products-list .box:hover .pic{
    border-color: #184c59;
}


.products-list .pic:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    /* background:  url(../../images/common/products/hover_bg.jpg) repeat 50% 50%; */
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 2;
}
.products-list .box:hover .pic:before {
    opacity: 0.9;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.products-list .pic:after{
    content: '更多資訊';
    color: black;
    background: #2af5c5;
    border-bottom: solid 2px #fff;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    width: 150px;
    height: 25px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    transition: all .4s ease-in-out;
    z-index: 3;
    opacity: 0;
    transform: translate(0px,50px);
}
.products-list .box:hover .pic:after{
    opacity: 1;
    transform: translate(0px,0);
}

.products-list .pic-box {
    position: relative;
}
.products-list .pic-box .btn {
    background: url(../../images/common/products/product_love.png) no-repeat 0% 0%;
    width: 23px;
    height: 47px;
    position: absolute;
    z-index: 2;
    right: 7px;
    bottom: -5px;
    border-radius: 0;
    transition: all .4s ease-in-out;
}

.products-list .pic-box .btn:hover {
    opacity: 0.7;
}
.products-list .pic-box .btn:after{
    content: '';
    display: block;
    background: url(../../images/common/products/tips.png) no-repeat;
    width: 23px;
    height: 49px;
    position: absolute;
    bottom: 48px;
    right: 0px;
    transition: all .3s ease-in-out;
    opacity: 0;
}
.products-list .box:hover .pic-box .btn:after{
    opacity: 1;
}

.products-list .pic-box .btn i {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    display: none;
}

.products-list .pic-box .ibtn.wish {
    background-position: 0 0;
}

.products-list .pic-box .ibtn.wish:hover {
    background-position: 0 100%;
}

.products-list .pic-box .ibtn.delete {
    background-position: 100% 0;
}

.products-list .pic-box .ibtn.delete:hover {
    background-position: 100% 100%;
}

.products-list .txt {
    padding-top: 10px;
}

.products-list .name {
    color: #666 ;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 28px;
    position: relative;
    margin: 0px 0 0px 0;
    padding: 0 0 10px 0;
    text-align: center;
}
.products-list .name:before{
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    background:#9f7e4d;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 1px;
    content: '';
    display: block;
    transition:  all .3s ease-in-out;
}
.products-list .box:hover .name:before{
    width: 0%;
    height: 0px;
}
.products-list .name:after{
    width: 0px;
    height: 1px;
    background:#9f7e4d;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 1px;
    content: '';
    display: block;
    transition:  all .3s ease-in-out;
}
.products-list .box:hover .name:after{
    width: 100%;
}
.products-list .description {
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 64px;
    line-height: 1.75;
    font-size: 13px;
    overflow: hidden;
    margin: 8px 0 13px;
}

.products-list .more {
    margin: 8px 0 0;
    display: block;
    border: 0;
    overflow: hidden;
    outline: none;
    transition: all .3s ease-in-out;
    width: 100px;
    height: 30px;
    transition: all .3s ease-in-out;
    position: relative;
    color:#184c59;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    line-height: 30px;
    border-radius: 20px;
    border: solid 1px #184c59;
    padding: 0 10px;
    text-transform: lowercase;
    margin: 8px auto;
}
.products-list .box:hover .more{
    color: #fff ;
    background:#184c59;
    border-color: #184c59;
}

.products-list .more i {
    margin-right: 5px;
}


.products-list .offers {
    color: #9f7e4d;
    font-size: 16px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 30px;
    text-align: center;
    margin-top: 5px;
    font-family: 'Open Sans', serif;
}

.products-list .btn-group {
    overflow: hidden;
    margin-top: 8px;
}

.products-intro {
    margin-bottom: 10px;
}

.gallery {
    float: left;
    width: 54%;
    max-width: 595px;
}

.related-box {}

.pd-intro {
    float: right;
    width: 45%;
}

.pd-intro .pd-id {
    color: #aaa;
    font-size: 14px;
}

.pd-intro .pd-name {
    color: #131c01;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 10px;
    line-height: 1.2;
    padding: 0 0 5px 0;
    max-width: 90%;
    display: inline-block;
}

.pd-info-box {
    border-top: 1px dotted #c9c9c9;
}

.pd-info-box,
.pd-info.price {
    border-bottom: 1px dotted #c9c9c9;
}

.pd-info {
    margin: 12px 0;
}

.pd-info b {
    color: #9f7e4d;
    font-size: 20px;
    font-family:  'Open Sans', sans-serif;
}

.pd-info select.form-control {
    display: inline-block;
    margin: 0;
    max-width: 60%;
     height: 30px;
    line-height: 25px;
     background-color: #fff;
    border-color: #ccc;
    border-radius: 0;
    font-size: 12px;
}

.pd-info select.form-control:focus {
    border-color:#9f7e4d;
}

.pd-price {
    display: block;
    vertical-align: middle;
    margin-right: 20px;
    text-decoration: line-through;
}

.pd-price.better {
    text-decoration: none;
}

.pd-info-label {
    margin-bottom: 6px;
    float: left;
    width: 40%;
    line-height:2;
}

.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: #9f7e4d;
}

.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: #9f7e4d;
}

.pd-info .size-radio input {
    visibility: hidden;
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
}


/*----- 貨到通知燈箱 -----*/

.pd-arrival-fancybox .pd-info {
    text-align: center;
}

.pd-arrival-fancybox .pd-info-label {
    margin-bottom: 6px;
    /* width: 20%; */
    text-align: right;
    font-size: 14px;
}

.pd-arrival-fancybox {
    background: #f5f5f5;
    padding: 5px 0;
    margin: 10px 0;
}

.pd-arrival-fancybox .pd-info select.form-control {
    width: 40%;
    margin-left: -70px;
}


/*----- 按鈕區域 -----*/

.pd-intro .btn-group .btn {
    /*  float: left;*/
    width: 30%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    margin: 5px 5px;
    padding: 10px 0;
    border: 1px solid #d5d6cd;
}

.pd-intro .btn-group .btn.addcart,
.pd-intro .btn-group .btn.buynow {}

.pd-intro .btn-group .btn.addcart {
    /*background: #184c59;
    border-color: #184c59;*/
    background: #9f7e4d;
    border-color: #9f7e4d;
}

.pd-intro .btn-group .btn.addcart:hover {
    /*background: #9f7e4d;
    border-color: #9f7e4d;*/
    background: #184c59;
    border-color: #184c59;
}

.pd-intro .btn-group .btn.buynow {
    /*background: #9f7e4d;
    border-color: #9f7e4d;*/
    background: #ea7c0a;
    border-color: #ea7c0a;
}

.pd-intro .btn-group .btn.buynow:hover {
    /*background: #131c01;
    border-color: #131c01;*/
    background: #184c59;
    border-color: #184c59;
}

.pd-intro .btn-group .btn.soldout,
.pd-intro .btn-group .btn.arrival {}

.pd-intro .btn-group .btn.soldout {
    cursor: not-allowed;
    color: #797676;
}

.pd-intro .btn-group .btn.arrival {
    background: #c5c5c5;
    border-color: #c5c5c5;
    padding: 9px 0;
}

.pd-intro .btn-group .btn.arrival:hover {
    background: #6C6D5A;
    border-color: #6C6D5A;
}

.pd-intro .btn-group .btn.wish {
    /*  clear: both;*/
    background:#9f7e4d;
    border-color: #9f7e4d;
}

.pd-intro .btn-group .btn.wish:hover {
    background:#184c59;
    border-color: #184c59;
}

.pd-intro .btn-group .btn .ic {
    display: block;
    margin: 0 auto;
    font-size: 10px;
}

.pd-intro .btn-group .btn.wish .ic {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0px 5px 0;
}


/*------------ 新加購--------------*/

.buymore-box {
    padding-top: 15px;
}

.buymore-box .buymore-title {
    color: #505050;
    font-family: 'Open Sans', '微軟正黑體', sans-serif;
    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: #70ac92;
    margin-right: 10px;
}

.buymore-list .item {
    background:#fdf8e5;
    margin-top: 3px;
    padding: 8px 12px;
    width: 49%;
    margin: 5px 0.5%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
}

.buymore-list .item:hover {
    background:#f5f1e1;
}

.buymore-list .price {
    display: inline-block;
    color: #9f7e4d;
    font-size: 15px;
    font-weight: bold;
}

.buymore-list .name {
    display: inline-block;
    color: #555;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.buymore-list .name:hover {
    text-decoration: underline;
}

.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 .pd-info .qty {
    float: right;
    width: 70px;
}

.buymore-box img {
    width: 40px;
}

.left-buymore {
    display: inline-block;
}

.right-buymore {
    width: calc(100% - 70px);
    float: right;
}

.buymore-list .ic.ic3-down2 {
    color:#184c59;
    font-size: 13px;
    position: absolute;
    top: 10px;
    left: 15px;
}

.buymore-bth {
    position: relative;
    text-align: center;
    background: #184c59;
    max-width: 85px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    margin: -50px 0;
    float: right;
    cursor: pointer;
}

.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 {
    background: #9f7e4d;
}

.buymore-bth.active .up {
    display: block;
}

.buymore-bth.active .down {
    display: none;
}

.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.active {
    background: #70ac92;
}

.btn.buymore-add i {
    color: #fbfbfb;
    font-size: 16px;
}


/*----  加購結束 ----*/


/*----  相關產品 ----*/

.related-box {
    margin-top: 15px;
}

.related-slider {
    position: relative;
}

.related-slider .slick-dots {
    position: absolute;
    text-align: center;
    bottom: 0px;
    width: 100%;
}

.related-slider .slick-dots li button {
    white-space: nowrap;
    text-indent: 101%;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: url('../../images/common/products/related_dot.png') no-repeat;
    width: 20px;
    height: 20px;
    opacity: 1;
    border-radius: 0;
}

.related-slider .slick-dots li.slick-active button {
    background-position: 100% 0;
}

.related-list {
    margin: 0 -2px;
}

.related-list .item {
    padding: 0 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.related-list .box {
    display: block;
    max-width: 145px;
    margin: 0 auto;
}

.related-list .pic {
    position: relative;
    overflow: hidden;
}

.related-list .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    background: rgba(239,221,197,0.5);
    opacity: 0;
    transition: all 0.3s;
}

.related-list .box:hover .pic:before {
    width: 100%;
    height: 100%;
}

.products-detail {
    position: relative;
}

.related-box .title,
.products-detail .title {
    color: #184c59;
    font-family: '微軟正黑體', 'Open Sans', sans-serif;
    font-size: 22px;
    margin: 30px 0 15px;
    border-bottom: 1px solid #E1E1E1;
    padding: 0 0 5px 0;
}

.related-box .title i,
.products-detail .title i {
    font-size: 15px;
    color:#184c59;
    margin-right: 10px;
    position: relative;
    top:-1px;
}


/*----  相關結束 ----*/


/*----  活動連結 ----*/

.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: 7px;
}

.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;
}


/*----  活動結束 ----*/


/*------------ sort_box ------------*/

.sort_box {
    margin-bottom: 10px;
    display:none;
    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-color: #fff;
    color: #666;
    padding: 0 5px;
    border: 1px solid #ddd;
}

.sort_box .form-control:focus {
    outline: none;
    border-color: #9f7e4d;
    color: #666;
    background: #fff;
}

.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: 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%;
}

.sort_box .form-control.sort-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .sort_icon .ibtn.one {
        display: inline-block;
    }
    .sort_icon .ibtn.four {
        display: none;
    }
}


/*************************************/


/***products_view_two***/

.products-list.type1 li.item_two {
    width: 50%;
    padding: 0 10px;
}

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

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

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

.products-list.type1 li.item_two .box {
    max-width: 100%;
}

@media screen and (max-width: 480px) {
    .products-list.type1 li.item_two {
        padding: 0 5px;
    }
}


/***products_view_one***/

.products-list.type1 li.item_one:nth-child(n) {
    clear: none;
    width: 100%;
}


/********************************/


/*------------ 拆單開始 ------------*/

.shopping_way.hot {
    text-align: left;
    margin-top: 8px;
}

.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;
}


/*------------ 拆單結束 ------------*/


/*------------ 手機分享 ------------*/

.share-link.list-inline {
    text-align: left;
}

.share_box .share-link .btn.blogger,
.share_box .share-link .btn.facebook,
.share_box .share-link .btn.google,
.share_box .share-link .btn.twitter,
.share_box .share-link .btn.mail,
.share_box .share-link .btn.linkedin,
.share_box .share-link .btn.tumblr,
.share_box .share-link .icon-ic-share-t,
.share_box .share-link .btn.line,
.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w,
.share_box .share-link .btn.pinterest,
.share_box .share-link .btn.plurk {
    cursor: pointer;
    font-size: 25px;
}

.share_box {
    margin: 2px 0 2px;
    text-align: center;
}

.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w {
    font-size: 25px;
    width: 25px;
    height: 30px;
    line-height: 33px;
    border-radius: 15px;
    margin: 0;
    padding: 0;
}

.share_box .share-link .btn {
    width: 25px;
}

.share-out-bth {
    display: inline-block;
    float: right;
    margin-top: 5px;
}

.share-buttom {
    border-radius: 100%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    font-size: 16px;
    color: #fff;
    background: #f0d896;
    cursor: pointer;
}

.share-buttom:hover {
    background: #f0d485;
}

.share-buttom .share_box {
    background: #184c59;
    padding: 0 5px;
    position: absolute;
    margin-top: -50px;
    right: 1%;
}

.share-buttom .share_box:after {
    content: '▼';
    display: block;
    font-size: 20px;
    color: #184c59;
    position: absolute;
    margin-top: -10px;
    right: 1%;
}

.share_box {
    display: none;
}

.share-buttom:hover .share_box {
    display: block;
}


/*------------ 手機分享 ------------*/


/*------------ Q&A ------------*/

.pd-content {
    margin: 30px 0;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.go-msg-box {
    text-align: center;
}

.go-msg {
    position: relative;
    color: #444533;
    border: 1px solid #70ac92;
    font-size: 23px;
    font-weight: bold;
    line-height: 32px;
    padding: 7px 20px 7px 20px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.go-msg span {
    color: #70ac92;
}

.go-msg-box p {
    color: #999999;
}

.go-msg .ic {
    background: #70ac92;
    color: #fff;
    border-radius: 100%;
    padding: 10px;
    font-size: 26px;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 0px;
}

a.go-msg:hover span,
a.go-msg:hover {
    background: #70ac92;
    color: #fff;
}

a.go-msg:hover .ic {
    background: #fff;
    color: #70ac92;
}

.message-item {
    margin: 20px 40px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 10;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.message-item.active {
    background: #F0F0E1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.message-item .ic {
    font-size: 30px;
    color: #70ac92;
    vertical-align: middle;
    position: absolute;
    left: 10px;
}

.message-item .message-question .message-from {
    color: #A6CCBC;
    font-size: 12px;
    width: 24%;
    padding: 0 10px 0 20px;
    z-index: 1;
    text-align: right;
    float: right;
    line-height: 2;
}

.message-item .message-from .date {
    display: inline-block;
}

.message-question {
    padding: 8px 0px 8px 15px;
    position: relative;
    display: block;
}

.message-question {
    cursor: pointer;
}

.message-question .title {
    color: #5F5F5F;
    font-size: 16px;
       width: calc(100% - 100px);
   display:table-cell;
}

.message-question:hover .title {
    text-decoration: underline;
}

.message-item.active .message-question .title {}

.message-question .txt {
    height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.message-item.active .message-question .txt {
    height: auto;
    visibility: visible;
    padding: 10px 0;
}

.message-answer .message-from {
    font-weight: bold;
}

.message-answer {
    padding: 10px 20px;
    position: relative;
    display: none;
    background: #fff;
    border: 20px solid #F0F0E1;
    border-top: none;
}

.message-answer .editor {
    padding: 5px 0;
    min-height: 20px;
}

.message-answer .date {
    color: #adad56;
}
.btn-box.messages-bth{
        padding: 10px 0 20px;
    }
#message-sect .form-wrap {
    border: 1px dotted rgba(112, 172, 146, 0.5);
    padding: 20px;
    border-radius: 0px;
    margin: 20px 40px 10px;
}

#message-sect .form-wrap .btn-box {
    max-width: none;
}
.btn-box.messages-bth{
        padding-top: 0px;
    }
#message-sect .form-wrap.type3 .form-box {
    max-width: 950px;
}

.btn-box.messages {
    padding: 0px;
}

.btn-box.messages .simple {
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    width: 80px;
}

.pd-reply {
    display: inline-block;
    position: relative;
    font-size: 13px;
}

.pd-reply .status {
    background:#c3c3c3;
    padding: 5px;
    color: #fff;
    border-radius: 0px;
}

.pd-reply .status.replied {
    background-color: #9cdabc;

}
/*------------ Q&A ------------*/

@media screen and (max-width: 1440px) {
    .products-list.type1 {
        margin: 23px 23px;
    }
    .products-list.type1 .item {
        padding: 0 23px;
        transition: all .6s;
    }
}

@media screen and (max-width: 1380px) {
    .buymore-list .img {
        /* margin: auto; */
    }
}

@media screen and (max-width: 1320px) {
  /*  .products-list.type1 .item {
        width: 33.33%;
    }*/
    .products-list.type2 {
        margin: 0 -10px;
    }
    .products-list.type2 .item {
        padding: 0 10px;
    }
    .buymore-list .price {
        padding: 0px;
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        overflow: hidden;
        -webkit-box-orient: vertical;
    }
}

@media screen and (max-width: 1260px) {
    .buymore-box,
    .related-box {
        float: none;
        width: auto;
        clear: both;
    }
    .buymore-list .buymore-item {
        padding: 5px 5px;
    }
    .related-box {
        margin: 0;
        padding-top: 15px;
        max-width: none;
    }
}

@media screen and (max-width: 1210px) {
    .pd-intro .btn-group .btn {
        font-size: 12px;
        margin: 5px 0px;
    }
}

@media screen and (max-width: 1000px) {
    .products-list.type2 .item {
        width: 33.33%;
    }
    .message-item {
          margin: 0px 0px 20px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
        position: relative;
        z-index: 10;
    }
    #message-sect .form-wrap {
        margin: 0 auto;
    }
    #message-sect .col {
        width: 100%;
        float: none;
    }
    .buymore-list .pd-info .spec,
    .buymore-list .pd-info .qty {
        /* width: 100%; */
    }
    .buymore-list .img {
        width: 45px;
    }
    .buymore-box {
        padding-top: 0px;
    }
    .shopping_way {
        font-size: 13px;
    }
    .products-list .description {
    }
}
@media screen and (max-width: 900px) {
.share-buttom .share_box {

    padding: 0 5px 5px;

}

.share-buttom .share_box:after {

    margin-top: -5px;

}

}

@media screen and (max-width: 800px) {
.pd-info-label {
     line-height: 30px;
}

}
@media screen and (max-width: 767px) {
    /*.products-list.type1 .item {
        width: 50%;
    }*/
    .products-list.type1 .box {
        margin-bottom: 30px;
    }
    .products-list.type2 {
        margin: 0 -7px;
    }
    .products-list.type2 .item {
        padding: 0 7px;
        width: 50%;
    }
    .products-list.type2 .box {
        margin-bottom: 30px;
    }
    .pd-activity {
    margin-left: 0px;
}
    .gallery,
    .pd-intro {
        float: none;
        width: auto;
    }
    .gallery {
        margin: 0 auto 25px;
    }
    .buymore-bth {
    padding: 2px 10px;
    }
    .buymore-list .item {
        padding-bottom: 6px;
    }
    .buymore-list .pd-txt,
    .buymore-list .pd-info {
        float: none;
        width: auto;
    }
    .products-detail,
    .related-box{
            margin: 25px 0 0;
    }
    .products-detail .title {
        font-size: 21px;
        margin-bottom: 20px;
    }
    .products-detail .title:before {
        font-size: 30px;
        margin-right: 5px;
    }
    .products-detail .title:after {
        left: 180px;
    }
    .buymore-list .buymore-item {
        width: 48%;
        float: left;
    }
    .btn.buymore-add {
        line-height: 2.2;
    }
    .buymore-list .item {
        width: 100%;
    }
    .go-msg {
        font-size: 16px;
        line-height: 15px;
    }
     .pd-reply{
        padding:5px 0 8px;
    }
}

@media screen and (max-width: 1400px) {
    .buymore-box .buymore-title span,
    .products-detail .title span,
    .related-box .title span {
        display: none;
    }
    .buymore-list .buymore-item {
        width: 32%;
    }
    .products-list .item{
     width:33.33%;
          margin:0 0 15px;
    }
}

@media screen and (max-width: 620px) {
    .message-item .message-question .message-from {
        line-height: 1.2;
    }
}


@media screen and (max-width: 990px) {
    /*.products-list.type1 .item {
        width: 100%;
    }*/
    .products-list.type2 .item {
        width: 100%;
    }
    .message-answer {
        display: none;
        background: #fff;
        border: 5px solid #F0F0E1;
        border-top: none;
        padding: 10px 20px;
    }
    .products-list .item{
         width:50%;
          margin:0 0 15px;
    }
  }

@media screen and (max-width: 600px) {
    /*.products-list.type1 .item {
        width: 100%;
    }*/
    .products-list.type2 .item {
        width: 100%;
    }
    .message-answer {
        display: none;
        background: #fff;
        border: 5px solid #F0F0E1;
        border-top: none;
        padding: 10px 20px;
    }
    .products-list .item{
         width:100%;
          margin:0 0 15px;
    }
     .products-list .more {
        margin: 20px auto 10px;
    }
    #message-sect .col {
        padding: 0 0px;
    }
    #message-sect .form-wrap {
        padding: 10px 6%;
    }
    /*****優化區域*****/

    .products-list.type1 .box {
        margin-bottom: 10px;
    }
    .products-sect .sect-title {
        padding: 15px 0 15px 0;
        display: block;
        line-height: 1.4em;
    }
    .products-list .name {
         font-size: 16px;
        height: 20px;
        margin: 0 0 8px 0;
        padding: 0 0 10px;
    }
    .sort_box {
        margin: 0px;
        font-size: 12px;
    }
    .products-list .offers {
        font-size: 15px;
        height: auto;
        line-height: 1.4;
    }
    .pd-intro .pd-name {
        font-size: 16px;
        line-height: 1;
        margin: 10px 0;
    }
    .pd-info {
         margin: 12px 0;
        font-size: 14px;
    }
    .pd-info b {
        font-size: 16px;
    }
    .pd-intro .btn-group .btn {
        width: 30%;
        font-size: 14px;
        padding: 5px 0;
        float: none;
        margin: 3px 1px;
    }
    .pd-intro .btn-group .btn.arrival {
        padding: 5px 0;
    }
    .pd-intro .btn-group .btn.wish {
        clear: none;
    }
    .buymore-list .price,
    .buymore-list .name,
    .pd-intro .pd-id {
        font-size: 14px;
    }
    .buymore-box .buymore-title {
        margin: 0;
    }
    .related-box .title,
    .products-detail .title,
    .related-box .title,
    .buymore-box .buymore-title {
        margin: 15px 0 10px;
        font-size: 16px;
    }
    .products-intro {
        margin-bottom: 0px;
    }
    .go-msg-box p,
    .message-question,
    .message-answer {
            padding: 0px 10px;
    }
     .message-answer {
        padding-bottom:10px;''
    }
    .pd-intro .btn-group{
         margin:0 0 30px;
    }
      .message-question .title {
        font-size: 14px;
        display:block;
        width:auto;
    }

    .message-question {
        padding: 5px 5px 5px 10px;
    }
    .message-item {
         margin: 10px 0px 18px;
    }
     .message-item .message-question .message-from {
        font-size: 14px;
        padding: 0px;
        float:left;
        width:100%;
        text-align:left;
    }
    .message-answer .editor {
    padding: 10px 0 0;
    }

    .pd-content {
        margin: 25px 0;
        padding-top: 15px;
    }
    .related-box {
        padding-top: 0px;
    }
    .btn.buymore-add {
        height: 24px;
    }
    .activity-banner {
        margin-bottom: 0px;
    }
    .buymore-list .buymore-item {
        padding: 5px;
        width: 48%;
    }
    .pd-arrival-fancybox .pd-info-label {
        padding: 0 10px;
        text-align: left;
        font-size: 13px;
    }
    .pd-arrival-fancybox .pd-info select.form-control {
        width: 50%;
        margin-left: -50px;
    }
}

@media screen and (max-width: 400px) {
    .pd-intro .btn-group .col {
        width: 100%;
    }
    .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-pc {
        display: none;
    }
    .sort_box .form-control.sort-mobile {
        display: block;
       width: 60px;
    }
}
@media screen and (max-width: 356px) {
.share-buttom .share_box {

    margin-top: -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欄位*/
