html { font-size: 62.5%; }
@media(min-width:2100px){
    html { font-size: 80%; }
}

@media(max-width: 1600px){
    html { font-size: 50%; }
}
@media(max-width: 1280px){
    html { font-size: 45%; }
}
@media(max-width: 1024px){
    html { font-size: 35%; }
}
@media(max-width: 767px) {
    html {
        font-size: 45%;
    }
}
body.product{
    background-color: #101521;
}
.product .headerContent{
    max-width: 1500px;
}

.product .pageContent{
    /*background:rgb(0,0,0,4%);*/
    background-color: #fff;
    /*background-image:url("./images/cat-background.png");*/
    max-width: 1720px;
    margin:auto;
    border-radius: 2rem;
    /*position:relative;*/
}
@media(max-width:1200px){
    .product .pageContent{
        padding:0px 15px;
        box-sizing: border-box;
    }
}
.product-content-box{
    max-width:1200px;
    margin:0 auto;
}

.product-breadcrumb{
    padding-top:7rem;
    display: flex;
    align-items: center;
}
.product-breadcrumb a{
    color:#5B4F78;
    font-size: 1.6rem;
}
.product-breadcrumb>a:nth-child(1){
    color:transparent;
    display: block;
    width:20px;
    height:20px;
    background-image: url("./images/zhuye.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.product-breadcrumb span{
    color:#5B4F78;
    font-size: 2.6rem;
    padding:0 3rem;
}

.product-top{
    display: flex;
    /*margin-top: 15px;
    margin-bottom: 15px;*/
    margin-top: 4rem;
}
.product-top > div{
    /*width:50%;*/
    box-sizing:border-box;
}
#photo-section{
    width:40%;
}
#shop-section{
    width:60%;
}
@media(max-width:1200px){
    #photo-section{
        width:480px;
    }
    #shop-section{
        width:unset;
        flex:1;
    }
}
@media(max-width: 767px){
    .product-top{
        flex-wrap: wrap;
    }
    /*
    .product-top > div{
        width:100%;
    }*/
    #photo-section{
        width:100%;
    }
    #shop-section{
        flex:0 0 100%;
        /*width:100%;*/
    }
    .product-breadcrumb{
        padding-top:28px;
    }
    .product-breadcrumb>a:nth-child(1){
        width:15px;
        height:15px;
    }
    .product-breadcrumb span{
        color:#5B4F78;
        font-size: 10px;
        padding:0 12px;
    }
}
/* image scroller begin */
#photo-section{
    position:relative;
    min-height: 400px;
}

.img-scroller {
    /*width: 300px;*/
    width:100%;
    /*position: absolute;*/
    /*top: 50%;
    left: 50%;
    margin-left: -150px;
    margin-top: -100px;*/
}
.img-scroller .imgs {
    /*height: 600px;*/
    height:480px;
    position: relative;
    overflow: hidden;
    box-shadow: 9px 8px 30px 0px rgba(91, 79, 120, 0.1);
}
.img-scroller .imgs img{
    /*height: 600px;*/
    height:480px;
}
@media(max-width: 767px){
    .img-scroller .imgs {
        height:calc( 100vw );
    }
    .img-scroller .imgs img{
        width:100%;
        height:auto;
    }
}
.img-scroller .imgs > * {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.img-scroller .imgs > .zoom {
    display: block;
    opacity: 0;
    left: 100%;
    top: 100%;
    transform: translate(50%, 50%);
    width:1200px;
    height:1200px;
    transition: opacity .5s linear;
    cursor: crosshair;
}
.imgs:hover .zoom {
    opacity: 1;
}
.img-scroller .menu-box{
    display: flex;
    align-items: center;
    margin-top: 3rem;
}
.img-scroller .menu-wrapper{
    display: block;
    width: calc(100% - 60px);
    margin: 0 auto;
    /*height: 100px;*/
    height:84px;
    overflow: hidden;
}
@media(max-width: 767px){
    .img-scroller .menu-wrapper{
        height:auto;
    }
    .img-scroller .menu-box{
        margin-top: 12px;
    }
}
.img-scroller .menu-box .left-button,.img-scroller .menu-box .right-button{
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}

.img-scroller .imgs *:first-child {
    display: block;
}
.img-scroller .menu {
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /*clear: both;*/

}
.img-scroller .menu li {
    /*float: left;*/
    list-style: none;
    width: 20%;
    position: relative;
    z-index: 2;
}
.img-scroller .menu li img{
    width:100%;
    display: block;
    /*height:100px;*/
    height:84px;
}
@media(max-width: 767px){
    .img-scroller .menu li img{
        height:auto;
    }
}
.img-scroller .menu li.current img{
    box-sizing: border-box;
    border: 1px solid #ccc;
    opacity: 0.7;
}
.img-scroller .menu li a {
    /*height: 50px;*/
    /*line-height: 50px;*/
    display: block;
    text-align: center;
}
.img-scroller .menu li.pointer {
    position: absolute;
    top: 0;
    left: 0;
    /*height: 50px;*/
    width: 25%;
    background: #d9d9d9;
    z-index: 1;
}
.img-scroller .menu li.pointer:after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #d9d9d9 transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
}

/* image scroller end*/
#shop-section{
    /*padding:0px 15px;*/
    padding-left:12rem;
}
@media(max-width: 768px){
    #shop-section{
        padding-left:3rem;
    }
}
@media(max-width: 767px){
    #shop-section{
        padding-left:0px;
        margin-top: 30px;
    }
}

#shop-section .navigation{
    font-size: 20px;
    margin: 15px 0 15px 0;
}
#shop-section .navigation > i{
    padding:0 15px 0 15px;
}
#shop-section .navigation > a{
    color:#777;
}
#shop-section .name{
    /*font-size: 34px;*/
    font-size:4rem;
    color:#5B4F78;
    font-weight: 700;
    text-transform: capitalize;
    /*line-height: 36px;
    margin: 15px 0 15px 0;*/
}
#shop-section .description{
    /*margin: 15px 0 15px 0;*/
    margin:6rem 0px;
    font-size: 1.8rem;
    line-height: 3.2rem;
    color: #857e99;
    font-weight: 400;
    text-transform: capitalize;
    /*line-height: 24px;*/
}
#shop-section .price{
    margin-bottom:3rem;
    font-weight:700;
}
#shop-section .price .current-price{
    font-size: 3rem;
    color:#5B4F78;
}
#shop-section .price .ori-price{
    padding-left: 2rem;
    font-size: 2rem;
    color:#c8c5d0;
    text-decoration: line-through;
}
#shop-section .link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
#shop-section .buy-link{
    width: 24rem;
    height: 5.6rem;
    font-size: 1.8rem;
    background: #EF3F7F;
    box-shadow: 0px 1rem 3rem 0px rgb(239 63 127 / 40%);
    border-radius: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    letter-spacing: .2rem;
}
#shop-section .buy-link:hover{

}
#shop-section .buy-link a{
    /*color:black;*/
}
@media(max-width: 767px){
    /*
    #shop-section .buy-link{
        border-radius: 25px;
        white-space: nowrap;
        padding: 10px;
    }
    */
    #shop-section .description{
        margin:24px 0px;
        font-size: 1.8rem;
        line-height: 12.8px;
    }
    #shop-section .name{
        font-size:20px;
    }
    #shop-section .link{
        margin-bottom: 30px;
    }
    #shop-section .buy-link{
        width: 120px;
        height: 22.4px;
        font-size: 1.8rem;
        box-shadow: 0px 4px 12px 0px rgb(239 63 127 / 40%);
        border-radius: 11.2px;
        letter-spacing: 1px;
        padding:8px;
    }
}


/* shop-info begin */
.shop-info li{
    border-top: 1px solid #f2f1f4;
    padding:2.5rem 0;
}
.shop-info li:last-child{
    border-bottom:1px solid #f2f1f4;
}
.shop-info .first-row{
    justify-content: space-between;
    display: flex;
    font-size: 1.6rem;
    letter-spacing: .2rem;
    color: #5B4F78;
}
.shop-info .second-row{
    display: none;
}
/* shop-info end */

/* product-info begin */
#shop-section .product-info{
    margin:30px 0 30px 0;
}
#shop-section .product-info ul{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#shop-section .product-info ul>li{
    display: flex;
    justify-content: space-between;
    width:100%;
    box-sizing: border-box;
    align-items: center;
}
.product-info-block-icon{
    /*border-radius: 100%;*/
    width: 100px;
    height: 100px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in;
    box-shadow: 0px 0px 0px #ccc;
}
#shop-section .product-info li:hover > .product-info-block-icon{
    box-shadow: 0px 0px 5px 1px #ccc;
}
.product-info-block-text{
    text-align: right;
    width: 50%;
}
.product-info ul li i{
    font-size: 60px;
    background-image:-webkit-linear-gradient(right,rgb(149 112 250), #c069d5, #fb5ea3);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.product-info ul li p.title{
    height: 24px;
    line-height: 24px;
    font-family: MicrosoftYaHei-Bold;
    font-size: 18px;
    color: rgb(51, 51, 51);
    margin-bottom: 0;
}
.product-info ul li p.content{
    line-height: 1.5;
    font-size: 14px;
    color: rgb(102, 102, 102);
    padding-top: 10px;
}
/* product-info end */

/* product social sharing begin */
.product-social-icon{
    /*margin-top:15px;*/
    width:20rem;
    position:relative;
}
.product-social-icon>span{
    position: absolute;
    line-height: 27px;
    color:#857e99;
    font-weight: bold;
    font-size: 1.4rem;
}
.product-social-icon ul{
    display: flex;
    justify-content: flex-end;
}
.product-social-icon ul>li{
    width:25%;
    box-sizing: border-box;
    font-size:22px;
    text-align: right;
}
.product-social-icon li{
    /*background-color: #ccc;
    transition: .3s ease-in;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 0px 0px 0px #ccc;
    text-align: center;*/
}
.product-social-icon li a{
    transition: .3s ease-in;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    -webkit-text-fill-color: #bdb9c9;
    box-shadow: 0px 0px 0px #ccc;
    display: block;
    width: 100%;
    /*width: -moz-fit-content;*/
    margin:auto;
    background-color: #bdb9c9;
}
.product-social-icon li[data-type=facebook]:hover a{
    -webkit-text-fill-color: #435f9f;
    background-color: #435f9f;
}
.product-social-icon li[data-type=twitter]:hover a{
    -webkit-text-fill-color: #00aaf0;
    background-color: #00aaf0;
}
.product-social-icon li[data-type=pinterest] a{
    -webkit-text-fill-color: #e05f83;
    background-color: #e05f83;
}
.product-social-icon li[data-type=google-plus] a{
    -webkit-text-fill-color: #ce1f68;
    background-color: #ce1f68;
}
/*
.product-social-icon li:hover a{
    background-color: transparent;
    background-image:-webkit-linear-gradient(right,rgb(149 112 250), #c069d5, #fb5ea3);
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
}
*/
.product-social-icon li a i{
    transition: .3s ease-in;
}
.product-social-icon li:hover a i{
    /*box-shadow:3px 3px 3px #ccc;*/
}
@media (max-width:767px){
    .product-social-icon{
        width:120px;
    }
}

/* product social sharing end */

/* product temp begin */
.product-temp{
    margin-top:11rem;
    padding:4rem 0px;
    border-top:1px solid #f2f1f4;
    border-bottom:1px solid #f2f1f4;
}
.product-temp ul{
    display: flex;
}
.product-temp ul li{
    width:33%;
    padding:0px 5rem;
}
@media(max-width: 767px){
    .product-temp ul li {
        padding: 0px 0px;
    }
    .product-temp{
        margin-top:30px;
        padding:16px 0px;
    }
}
.product-temp .product-info-block-icon{
    display: block;
    margin:auto;
    width:5rem;
    height:5rem;
    background-repeat: no-repeat;
    background-size: contain;
}
.product-info-temp>ul>li:nth-child(1) .product-info-block-icon{
    background-image: url("./images/shipping.png");
}
.product-info-temp>ul>li:nth-child(2) .product-info-block-icon{
    background-image: url("./images/warranty.png");
}
.product-info-temp>ul>li:nth-child(3) .product-info-block-icon{
    background-image: url("./images/package.png");
}
.product-info-temp .title{
    margin: 2.5rem 0;
    font-size: 1.6rem;
    color: #5B4F78;
}
.product-info-temp .content{
    color:#857e99;
    font-size: 1.4rem;
    line-height: 3.2rem;
}
.product-temp .product-info-block-text{
    text-align: center;
    width:unset;
}
@media (max-width:767px){
    .product-info-temp .title {
        margin: 10px 0;
        font-size: 1.6rem;
    }
    .product-info-temp .content{
        line-height: 15px;
    }
}
/* product temp end */

/* product-middle begin */
.product-middle{
    margin:15px auto 15px auto;
    text-align: unset;
}
.product-middle img{
    width: 100%;
}
.product-middle .product-detail{
    margin-top: 5rem;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: #5B4F78;
    font-weight: bold;
    letter-spacing: .2rem;
    text-align:center;
}
.product-middle .product-parameter{
    margin-bottom:7rem;
}
.product-middle .product-review{
    padding-top:4rem;
    margin-bottom: 7rem;
    border-top:1px solid #f1f2f4;
    text-align:center;
}
@media (max-width:767px){
    .product-middle .product-detail{
        margin-top: 15px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    .product-middle .product-review {
        padding-top: 16px;
        margin-bottom: 28px;
        border-top: 1px solid #f1f2f4;
    }
}
/* product-middle end */

/* review 首页评价 begin */

.home-content-box-title{
    font-weight: 700;
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: #4a4a4a;
    text-align: center;
    height: 1.5em;
    opacity: 1;
    font-size: 35px;
}
.home-content-box-title:before {
    content: '';
    background: #9b9b9b;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}
.home-content-box-title:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: #9b9b9b;
    padding: 0 1em;
    line-height: 1.5em;
    color: #4a4a4a;
    background-color: #f5f5f5;
}
.review-content{
    display:flex;
}
.review-content .left-angle,.review-content .right-angle{
    width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}
.review-content ul{
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #f0f0f0;
}
.review-content ul li{
    flex: 0 0 calc(33% - 40px);
    background: rgba(255, 255, 255, 1);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding:10px;
}
.review-content ul li:nth-child(1),.review-content ul li:nth-child(2),.review-content ul li:nth-child(3){
    display: flex;
}
@media(max-width:1024px){
    .review-content ul li{
        flex: 0 0 calc(50% - 40px);
    }
    .review-content ul li:nth-child(3){
        display: none;
    }
}
@media(max-width:768px){
    .review-content ul li{
        flex: 0 0 calc(100% - 40px);
    }
    .review-content ul li:nth-child(2){
        display: none;
    }
}
@media(max-width:414px){
    .home-banner-review{

    }
    .home-banner-review ul{
        padding:5px;
    }
    .review-content ul li{
        flex: 0 0 calc(100% - 20px);
    }
    .home-content-box-title{
        font-size:20px;
    }
    .home-content-box{
        padding:30px 10px 0 10px;
    }
}

.home-content-box:last-child{
    padding-bottom:40px;
    padding-top:5rem;
    border-top: 1px solid #f1f2f4;
}
.home-content-box.home-banner-block1 a,.home-content-box.home-banner-block2 a{
    display: block;
    overflow: hidden;
    width: 100%;
}

.review-content .review-img{
    width:30%;
}
.review-content .review-img img{
    border-radius: 100%;
    width: 100%;
}
.review-content .review-rate{
    padding:10px;
    color:#8a2be2;
}
.review-content .review-title{
    color: rgba(155, 155, 155, 1);
    font-weight: 700;
    font-family: Arimo;
    font-size: 18px;
    text-align: center;
}
.review-content .review-text{
    overflow-wrap: break-word;
    text-align: center;
    padding: 0px 30px 0px 30px;
    color: rgba(155, 155, 155, 1);
}
.review-content .review-text p{
    text-align:justify;
}
.review-content .review-date{
    color: rgba(155, 155, 155, 1);
}
.review-content .r-visible{
    -webkit-animation: overlay-on 1s forwards;
    animation: overlay-on 1s forwards;
    transition: all .3s;
}

/* review 首页评价 end */

/* list style icon-list begin */

.item-list{
    display: flex;
    flex-wrap:wrap;
}
.item-list li{
    width:25%;
    position:relative;
}
@media(max-width: 767px){
    .item-list li {
        width: 50%;
    }
}
.item-list .item{
    background: #FFFFFF;
    margin: 4rem 1.5rem 1.5rem 1.5rem;
    padding: 3rem 0;
    overflow: unset;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 1rem;
}
.item-list li .image{
    position: relative;
    padding: 5px;
    flex: 0 0 38rem;
    overflow: hidden;
}
@media (min-width:1200px){

}
@media (min-width: 992px) and (max-width: 1199px){

}
@media (min-width: 768px) and (max-width: 991px){

}
@media (max-width:767px){

}
.item-list li .name{
    height:30px;
    line-height:30px;
    padding:0px 10px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.item-list li .description{
    padding: 0px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.item-list li .ori-price{
    padding-right: 15px;
    color: #ccc;
    text-decoration-line: line-through;
    border-right: 1px solid #ccc;
    margin-right: 15px;
}
.item-list li .image a img{
    opacity: 1;
    transition: all .5s ease;
}
.item-list li .image a img:nth-child(2){
    opacity: 0;
    height: 0;
}
.item-list li .image:hover a img:nth-child(1){
    opacity: 0;
    height: 0;
}
.item-list li .image:hover a img:nth-child(2){
    height:auto;
    opacity: 1;
}

.icon-list.item-list li{width:100%}
.icon-list.item-list .item{display:flex;}
/*.icon-list.item-list .image{flex:0 0 50%}*/
.icon-list.item-list .image{flex:0 0 140px;min-height: 140px;}
/*.icon-list.item-list .item .description{display:none;}*/
.icon-list.item-list .item .select-num input{
    margin: 0;
    padding: 0;
    font: inherit;
    text-transform: none;
    line-height: normal;
    background: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    width: 30px;
    text-align: center;
    color: #2e9cc3;
}
.icon-list.item-list .item-info{position: relative;-ms-flex-positive: 1;flex-grow: 1;padding-bottom: 20px;background: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 10px;
}
/* list style icon-list end */

/* product review begin */

.product-bottom{
    margin:15px auto 15px auto;
    text-align: center;
}

.product-review-content{
    display: flex;
    /*background-color: #f0f0f0;*/
    background-color: transparent;
    align-items: center;
    position:relative;
}
.product-review-content .left-angle,.product-review-content .right-angle{
    width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}
.product-review-list-wrapper{
    margin:40px 0;
    position:relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}
.product-review-list-wrapper ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /*max-height:650px;*/
}
.product-review-list-wrapper ul li{
    float: left;
    /*width:33.33%;*/
    width: calc(33.33% - 30px);
    margin:0 15px;
    /*background-color: white;*/
}
@media(max-width:1024px){
    .product-review-list-wrapper ul li{
        width: calc(50% - 30px);
        margin:0 15px;
    }
}
@media(max-width:768px){
    .product-review-list-wrapper ul li{
        width: calc(100% - 30px);
        margin:0 15px;
    }
    .product-review-content .left-angle,.product-review-content .right-angle{
        width: 25px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
    }
}
@media(max-width:414px){
    .product-review-list-wrapper ul li{
        width: calc(100% - 20px);
        margin:0 10px;
    }
}

.product-review-content .product-review-img{
    width:30%;
    margin:15px auto;
}
.product-review-content .product-review-img img{
    border-radius: 100%;
    width: 100%;
}
.product-review-content .product-review-rate{
    padding:10px;
    color:#EF3F7F;
}
.product-review-content li.active .product-review-rate{
    color:white;
}
.product-review-content .product-review-title{
    color: #5B4F78;
    font-weight: 700;
    font-family: Arimo;
    font-size: 18px;
    text-align: center;
}
.product-review-content li.active .product-review-title{
    color: white;
}
.product-review-content .product-review-name{
    color:#5B4F78;
}
.product-review-content .product-review-text{
    overflow-wrap: break-word;
    text-align: center;
    padding: 0px 30px 0px 30px;
    color: #5B4F78;
}
.product-review-content li.active .product-review-text{
    color: white;
}
.product-review-content .product-review-text p{
    text-align:justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 20;
    overflow: hidden;
}
.product-review-content .product-review-date{
    color: #b8b4c3;
}

.product-review-content .r-visible{
    -webkit-animation: l-overlay-on 1s forwards;
    animation: l-overlay-on 1s forwards;
    transition: all 10ms;
}
@-webkit-keyframes l-overlay-on{
    0%{opacity:0;visibility: hidden}
    100%{opacity:1;visibility: visible}
}

.product-review-content .dialog-wrapper{
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 15px 15px #ccc;
    min-height: 439px;
    position:relative;
}
.product-review-content li.active .dialog-wrapper{
    background: -moz-linear-gradient(135deg, #e47bc7, #ffafa6);
    background: -webkit-gradient(linear,0 0,100% 100%,from(#e47bc7),to(#ffafa6));
    background: -webkit-linear-gradient(135deg, #e47bc7, #ffafa6);
    background: -o-linear-gradient(135deg, #e47bc7, #ffafa6);
}
.product-review-content .dialog-wrapper:after{
    content: '';
    z-index: 2;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 16px solid white;
}
.product-review-content li.active .dialog-wrapper:after{
    content: '';
    z-index: 2;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    /*border-top: 16px solid #f9a4ad;*/
    border-top:16px solid #ea86c1;
}
.product-review h2{
    position: relative;
    color:#EF3F7F;
    padding-bottom: 0;
    font-size: 3rem;
    margin-bottom: 4rem;
}
/*
.product-review h2:after{
    content:'';
    z-index: 2;
    position:absolute;
    top:100%;
    left:50%;
    margin-left: -80px;
    width: 160px;
    height: 3px;
    background: -moz-linear-gradient(0deg, #ffafa6, #e47bc7);
    background: -webkit-gradient(linear,0 0,100% 100%,from(#ffafa6),to(#e47bc7));
    background: -webkit-linear-gradient(0deg, #ffafa6, #e47bc7);
    background: -o-linear-gradient(0deg, #ffafa6, #e47bc7);
}
*/
.product-review .product-review-switch{
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    justify-content: center;
}
.product-review .product-review-switch div{
    width:100px;
    height:10px;
    cursor: pointer;
    background-color: #fadeec;
}
.product-review .product-review-switch div.active{
    background-color: #ef4785;
}
.product-review .product-review-switch div:first-child{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.product-review .product-review-switch div:last-child{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
@media (max-width:767px){
    .product-review h2{
        margin-top:0px;
        margin-bottom: 0px;
    }
    .product-review-content .product-review-text{
        padding: 0px 10px 0px 10px;
    }
    .product-review-content .product-review-title{
        font-size: 16px;
    }
    .product-review .product-review-switch{
        left: 12.5%;
        width: 75%;
    }
}
/* product review end */

/* product browsing history start */
.product-view-history{
    padding-bottom: 40px;
    padding-top: 5rem;
    border-top: 1px solid #f1f2f4;
    text-align: center;
}
.product-view-history h2{
    margin-top:0;
    color:#5B4F78;
    font-size: 3rem;
    margin-bottom: 4rem;
    letter-spacing: .2rem;
}
.product-view-history .item-list .item{
    background: #FFFFFF;
    margin: 4rem 1.5rem 1.5rem 1.5rem;
    padding: 3rem 0;
    overflow: unset;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 1rem;
}
.product-view-history .item-list li .image{
    position: relative;
    padding: 5px;
    flex: 0 0 28rem;
    overflow: hidden;
}
.product-view-history .item-info{
    text-align: left;
}
.product-view-history .item-list li .name {
    font-size: 2.4rem;
    color: #5B4F78;
    height: 30px;
    line-height: 20px;
    /*padding: 0px 5px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-view-history .item-list .name a{
    color:#5b4f78;
}
.product-view-history .item-list li .description{
    font-size: 1.6rem;
    color: #a9a4b5;
    /*padding: 0px 5px;*/
    margin: 2rem 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product-view-history  .item-list li .ori-price {
    font-size: 2.4rem;
    padding-right: 15px;
    color: #ccc;
    text-decoration-line: line-through;
    border-right: 1px solid #ccc;
    margin-right: 15px;
}
.product-view-history .item-list .item .currentPrice {
    font-size: 2.4rem;
    color: #5B4F78;
}

.product-view-history .item-list.icon-gallery li .get-more{
    position: absolute;
    bottom: -2rem;
    left: calc(50% - 8.5rem);
    display: none;
}
.product-view-history .item-list li:hover .get-more{
    display: block;
}

.product-view-history li .get-more .get-more-button {
    width: 17rem;
    height: 4.4rem;
    background: #EF3F7F;
    box-shadow: 0px 1rem 3rem 0px rgb(239 63 127 / 40%);
    border-radius: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
}
.product-view-history .item-list li:hover .item{
    box-shadow: 0.9rem 0.8rem 3rem 0px rgb(91 79 120 / 10%);
}
.product-view-history .item-list li .discount{
    position: absolute;
    top:1.5rem;
    right: 0;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    background-color: #FDEBF2;
    color:#EF3F7F;
    font-size: 1.8rem;
    width: 8rem;
    text-align: center;
    letter-spacing: .2rem;
    padding: 1rem 0;
    font-weight: bold;
}
@media (max-width:767px){
    .product-view-history{
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .product-view-history h2{
        font-size: 3rem;
        margin-bottom: 16px;
        letter-spacing: 1px;
    }
    .product-view-history .item-list .item{
        margin: 16px 6px 6px 6px;
        padding: 12px 0;
        border-radius: 4px;
    }
    .product-view-history .item-list li .image{
        flex: 0 0 auto;
        padding: 6px;
    }
    .product-view-history .item-list li .description{
        font-size: 1.6rem;
        margin: 10px 0px;
    }
    .product-view-history .item-list li .discount{
        top:6px;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        font-size: 1.8rem;
        width: 50px;
        padding: 8px 0;
    }
    .product-view-history  .item-list li .ori-price {
        font-size: 16px;
        padding-right: 5px;
        margin-right: 5px;
    }
    .product-view-history .item-list .item .currentPrice {
        font-size: 16px;
    }
    .product-view-history .item-list .item .info{
        padding:0px 6px;
    }
}
/* product browsing history end */

/* product scroll to top begin */
.product-scroll-to-top{
    position: fixed;
    bottom: 26rem;
    right: 14.5rem;
    width:9rem;
    height:9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 9px 8px 30px 0px rgba(91, 79, 120, 0.1);
    border-radius: 1rem;
    background-color: white;
    cursor: pointer;
}
@media(max-width:1600px){
    .product-scroll-to-top{
        right:1.5rem;
        opacity:0.9;
    }
}
.product-scroll-to-top .rocket{
    display: block;
    width:2.6rem;
    height:3.8rem;
    background-image: url("./images/rocket.png");
    background-repeat: no-repeat;
    background-size: contain;
}
.product-scroll-to-top .text{
    color:#5b4f78;
    font-size:1.6rem;
}

@media (max-width:767px){
    .product-scroll-to-top{
        position: fixed;
        bottom: 26rem;
        right: 14.5rem;
        width:60px;
        height:60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 9px 8px 30px 0px rgba(91, 79, 120, 0.1);
        border-radius: 1rem;
        background-color: white;
        cursor: pointer;
    }
    .product-scroll-to-top{
        right:1.5rem;
        opacity:0.9;
    }
}

/* product scroll to top end */

/* product fancybox panzoom begin */
.carousel__button.is-next , .carousel__button.is-prev{
    display:none;
}
/* product fancybox panzoom end */
