/* 商品详情 */
.goodsDtlBox {
    width: 100%;
    display: flex;
    align-items: stretch;
    margin-top: 30px;
}

.goodsDtlBox .goodsSprBox {
    width: 50%;
    min-width: 700px;
    margin-right: 70px;
    flex-shrink: 0;
    /* display: flex;
    flex-wrap: wrap;
    align-content: space-between; */
}

.goodsDtlBox .goodsSprBox .goodsBigBox {
    width: 100%;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* 标签 */
.goodsDtlBox .goodsSprBox .goodsBigBox .goodsTags {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 2;
}

.goodsDtlBox .goodsSprBox .goodsBigBox .goodsTag {
    padding: 0px 10px;
    height: 28px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    margin-right: 15px;
    background: linear-gradient(135deg, #FFBB36 0%, #FF5732 100%);
    border-radius: 8px 0px 8px 0px;
    color: #fff;
}

.goodsDtlBox .goodsSprBox .goodsBigBox .goodsTag-New {
    background: #c9831d;
}

.goodsDtlBox .goodsSprBox .goodsBigBox .goodsTag-Flash {
    background: #ca1600;
}
/* 商品图片轮播图大 */
#goodsSprBig {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.goodsDtlBox .goodsSprBox .goodsBigBox .goodsImgBox {
    width: 100%;
    display: flex;
    cursor: pointer;
    padding: 2px;
    box-sizing: border-box;
    aspect-ratio: 3 / 2;
    position: relative;
    justify-content: center;
    align-items: center;
}

.goodsDtlBox .goodsSprBox .goodsBigBox .goodsImgBox img {
    width: 100%;
    height: auto;
    /* position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); */
    /* object-fit: cover; */
}

/* Tryon */

.goodsDtlBox .goodsSprBox .tryon {
    margin: 5px auto 0;
    height: 32px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px 0 #FFFFFF1A;
    background-color: #333333;
    transition: all .3s linear;
}

.goodsDtlBox .goodsSprBox .tryon:hover{
    box-shadow: 0px 0px 6px 0px rgba(64, 28, 0, 0.50);
}

.goodsDtlBox .goodsSprBox .tryon .icoBox {
    width: 38px;
    display: flex;
    margin-right: 8px;
}

.goodsDtlBox .goodsSprBox .tryon .icoBox svg {
    width: 100%;
    height: auto;
}

/* 商品图片轮播图小 */
.goodsSmBox {
    width: 100%;
    position: relative;
    padding: 0 36px;
    margin-top: 20px;
    box-sizing: border-box;
}

.swiper-but {
    width: 34px;
    display: flex;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-but svg {
    height: auto;
    fill: #cbcbcb;
}

.swiper-but:hover svg {
    fill: #333;
}

.swiper-next {
    right: 0;
}

.swiper-prev {
    left: 0;
}

.goodsSmBox .swiper-slide{
    padding: 0 5px;
    box-sizing: border-box;
}

.goodsSmBox .goodsImgBox {
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #E6E6E6;
    position: relative;
}

.goodsSmBox .goodsImgBox img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.goodsSmBox .goodsImgBox:hover {
    border-color: #FA6E07;
}

.goodsSmBox .swiper-slide-thumb-active .goodsImgBox {
    border-color: #FA6E07;
}

/* 详情右方内容 */
.goodsDtlBox .goodsDescBox {
    flex: 1;
}

.goodsDescBox .goodsTitle {
    width: 100%;
    font-size: 30px;
    font-weight: 700;
}

.goodsDescBox .xingBox {
    display: flex;
    position: relative;
    margin-right: 6px;
}

.goodsDescBox .xingBox .xingList {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.goodsDescBox .xingBox .xingList-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
}

.goodsDescBox .xingBox .xingList li {
    width: 16px;
    margin: 0 1px;
    display: flex;
    flex-shrink: 0;
}

.goodsDescBox .xingBox .xingList li svg {
    width: 100%;
    height: auto;
}

/* 价钱 */
.goodsDescBox .goodsPic {
    width: 100%;
    font-size: 36px;
    font-weight: 700;
    color: #f00145;
    display: flex;
    align-items: flex-end;
}

.goodsDescBox .goodsPic .delPic {
    color: #989898;
    font-size: 18px;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 500;
    margin-bottom: 5px;
}

.goodsDescBox .goodsPic .picDeso{
    font-size: 13px;
    color: #333;
    margin-left: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* paypal */
.goodsDescBox .paypalBox {
    width: 60px;
    margin-right: 6px;
    flex-shrink: 0;
}

.goodsDescBox .paypalBox img {
    width: 100%;
    height: auto;
}

/* 眼镜尺寸 */
.goodsSizeBox {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.goodsSize {
    height: 20px;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 3px;
    background-color: #F6F6F6;
    display: flex;
    align-items: center;
    margin-left: 4px;
    font-weight: 500;
}

.goodsSizeBox .fk {
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    border: 1px solid #333;
    margin: 0 4px;
}

/* 颜色 */
.goodsDescBox .goodsColorName {
    margin-left: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
}

.goodsDescBox .colorLists {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.goodsDescBox .colorList {
    width: calc((100% - 48px) / 7);
    aspect-ratio: 8.4 / 7;
    box-sizing: border-box;
    margin-right: 8px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #ECECEC;
    background-color: #fff;
    display: flex;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.goodsDescBox .colorList:hover {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

.goodsDescBox .colorList:nth-child(7n) {
    margin-right: 0;
}

.goodsDescBox .colorList:nth-child(-n+7) {
    margin-top: 0;
}

.goodsDescBox .colorList-active {
    padding: 1.5px;
    border: 1px solid #FA6E07;
}

.goodsDescBox .colorList-active:hover {
    box-shadow: none !important;
}

.goodsDescBox .colorList img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
}

.goodsDescBox .colorList .sku-not{
    width: auto;
    height: 60%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
}

.goodsDescBox .colorList-not .sku-not{
    display: flex;
}

.goodsDescBox .colorList .sku-not img{
    position: static;
    height: 100%;
    width: auto;
    transform: none;
}

.goodsDescBox .colorList-not2 .sku-not{
    display: flex;
}

/* Not Sure */
.notSure {
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
}

.notSure .icoBox {
    width: 16px;
    display: flex;
    margin-left: 4px;
}

.notSure .icoBox svg {
    width: 100%;
    height: auto;
    fill: #666;
}

.notSure:hover {
    color: #FA6E07;
}

.notSure:hover .icoBox svg {
    fill: #FA6E07;
}

/* Lens Type: */
.lensTypeLists {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.lensTypeList {
    width: calc((100% - 20px) / 3);
    min-height: 42px;
    padding: 8px;
    border: 1px solid #CBCBCB;
    color: #666;
    box-sizing: border-box;
    background-color: #FCFCFC;
    border-radius: 4px;
    margin-top: 5px;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.lensTypeList:hover {
    border-color: #FA6E07;
    color: #FA6E07;
}

.lensTypeList-active {
    border-color: #FA6E07;
    color: #FA6E07;
}

.lensTypeList:nth-child(-n+3) {
    margin-top: 0;
}

.lensTypeList:nth-child(3n) {
    margin-right: 0;
}

.lensTypeList .imgBox {
    width: 30px;
    display: flex;
    flex-shrink: 0;
    margin-right: 6px;
}

.lensTypeList .imgBox img {
    width: 100%;
    height: auto;
}

.lensTypeList .picBox {
    height: 20px;
    position: absolute;
    top: -9px;
    right: -1px;
    background-color: #FA6E07;
    color: #fff;
    border-radius: 4px 4px 4px 0;
    padding: 0 8px;
    font-size: 12px;
    display: none;
    align-items: center;
}

.lensTypeList:hover .picBox{
    display: flex;
}

.lensTypeList-active .picBox {
    display: flex;
}

/* Magnification:: */
.magnLists {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.magnList {
    width: calc((100% - 20px) / 6);
    min-height: 38px;
    padding: 8px;
    border: 1px solid #CBCBCB;
    color: #666;
    box-sizing: border-box;
    border-radius: 4px;
    margin-top: 5px;
    margin-right: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.magnList-not {
    background-color: #F6F6F6 !important;
    color: #a3a3a3 !important;
    border-color: #D0D6D9 !important;
    cursor: not-allowed;
}

.magnList-not::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, transparent 49.5%, #aaaaaa80 49.5%, #aaaaaa80 50.5%, transparent 50.5%);
    transform-origin: 0 0;
    /* 使旋转围绕左上角 */
    z-index: 1;
    pointer-events: none;
    /* 确保线段不会影响元素交互 */
}

.magnList:nth-child(-n+6) {
    margin-top: 0;
}

.magnList:nth-child(6n) {
    margin-right: 0;
}

.magnList:hover {
    border-color: #FA6E07;
    color: #FA6E07;
}

.magnList-active {
    border-color: #FA6E07;
    color: #FA6E07;
}


/* 按钮区域 */
.goodsDescBox .collBut {
    width: 48px;
    height: 48px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
    position: relative;
}

.goodsDescBox .collBut .collAlt{
    padding: 12px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    bottom: 100%;
    right: -5px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
    display: none;
}

.goodsDescBox .collBut:hover .collAlt{
    display: flex;
    cursor: default;
}

.goodsDescBox .collBut .collAlt::before{
    content: "";
    width: 13px;
    height: 13px;
    position: absolute;
    top: calc(100% - 9px);
    right: 21px;
    background-color: #fff;
    transform: rotate(45deg);
    z-index: -1;
}

.goodsDescBox .collBut .collAlt .logBox{
    width: 30px;
    display: flex;
    margin-left: 15px;
    cursor: pointer;
}

.goodsDescBox .collBut .collAlt .logBox:nth-child(1){
    margin-left: 0;
}

.goodsDescBox .collBut .collAlt .logBox img{
    width: 100%;
    height: auto;
}



.goodsDescBox .collBut svg {
    width: 24px;
    height: auto;
    fill: #333333;
}

.goodsDescBox .collBut:hover svg {
    fill: #FA6E07;
}

.goodsDescBox .collBut .call-active{
    display: none;
}

.goodsDescBox .goodsColl-active .call{
    display: none;
}

.goodsDescBox .goodsColl-active .call-active{
    fill: #FA6E07;
    display: block;
}

/* 补充说明 */
.goodsDescBox .supExpBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.supExpBox .supExp {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.supExpBox .supExp .icoBox {
    width: 28px;
    display: flex;
    margin-right: 10px;
    flex-shrink: 0;
}

.supExpBox .supExp .icoBox img {
    width: 100%;
    height: auto;
}

.supExpBox .xian {
    width: 1px;
    height: 25px;
    max-height: 100%;
    background-color: #CBCBCB;
    margin: 0 15px;
}

/* 特征性配置 */
.featureBox {
    width: 100%;
    padding: 20px 30px;
    border-radius: 6px;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

.featureList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.featureList li {
    width: 50%;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.featureList li:nth-child(-n+2) {
    margin-top: 0;
}

.featureList li .qiu {
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 4px;
    flex-shrink: 0;
}

.featureImgBox {
    width: 100%;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
}

.featureImgBox img {
    width: 100%;
    height: auto;
}






/* 下方商品描述评论tab */

.descTabs {
    width: 100%;
    padding-bottom: 12px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
}

.descTab {
    margin-left: 60px;
    position: relative;
    cursor: pointer;
}

.descTab-active {
    color: #FA6E07;
}

.descTab-active::before {
    content: "";
    width: 100%;
    height: 1.5px;
    background-color:#FA6E07 ;
    position: absolute;
    left: 0;
    bottom: -12.5px;
}

.descTab:nth-child(1) {
    margin-left: 0;
}

.descContent{
    width: 100%;
    margin-top: 20px;
}


/* Details */
.DetailsBox{
    width: 100%;
    padding: 28px 50px;
    background-color: #F9F9F9;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
}

.DetailsBox .DetailItem{
    width: calc((100% - 40px) / 3);
    margin-left: 20px;
}

.DetailsBox .DetailItem:nth-child(1){
    margin-left: 0;
}

.DetailsBox .DetailsTit{
    width: 100%;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.DetailsBox .DetailsList{
    width: 100%;
}

.DetailsBox .DetailsList li{
    margin-top: 12px;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.DetailsBox .DetailsList li:nth-child(1){
    margin-top: 0;
}

.DetailsBox .DetailsList li .icoBox{
    width: 55px;
    display: flex;
    margin-right: 10px;
}

.DetailsBox .DetailsList li .icoBox img{
    width: 100%;
    height: auto;
}

.DetailsBox .DetailsList li .text{
    font-weight: 700;
}

/* Description */
.DescriptionBox{
    display: flex;
    align-items: center;
}

.DescriptionBox .DescriptionL{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.DescriptionBox .DescriptionR{
    width: auto;
    flex-shrink: 0;
    margin-left: 40px;
}

/* 下方带尺寸svg的眼镜图 */
.goodsSizeImg {
    width: 600px;
    aspect-ratio: 6 / 4;
    overflow: hidden;
    position: relative;
}

.goodsSizeImg img {
    width: 94%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%) scale(1.02);
    z-index: 1;
}

.goodsSizeImg .icoBox {
    width: 94%;
    position: absolute;
    top: 50%;
    left: -3px;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
}

.goodsSizeImg .icoBox svg {
    width: 100%;
    height: auto;
}

.goodsDescriptionImgBox{
    font-size: 18px;
    color: #333;
}

.goodsDescriptionImgBox img{
    max-width: 100%;
    height: auto;
}

#goodsDescription img{
    max-width: 100% !important;
}


/* Delivery */

.detail-3-1-left {
    text-align: center;
    position: relative;
}

.detail-3-1-left .icoBox {
    width: 54px;
    display: flex;
}

.detail-3-1-left .icoBox svg{
    width: 100%;
    height: auto;
}

.detail-3-text-1 {
    font-size: 14px;
    font-weight: bold;
    color: #666666;
    margin-top: 4px;
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);

}

.detail-3-1-center{

    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    flex: 1;
    margin: 0 10px;
    
}

.detail-3-text-2 {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.detail-3-line {
    width: 100%;
    margin: 5px 0px;
    border: 1px dashed #FA6E07;

}

.detail-3-text-3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;

    margin-top: 20px;
    margin-bottom: 10px;
}

.detail-3-table1 table {
    width: 100%;
    border-collapse: collapse;
}

.detail-3-table1 table,
.detail-3-table1 th,
.detail-3-table1 td {
    border: 1px solid #CBCBCB;
}

.detail-3-table1 .td-center {
    text-align: center;
}

.detail-3-table1 .td-title {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    background: rgba(250, 110, 5, 0.1);
}

.detail-3-table1 .td-title-width {
    width: 20%;
}


.detail-3-table1 table tr td {
    padding: 14px 14px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

.detail-3-table1 .table-titps {
    font-size: 14px;
    font-family: Outfit, Outfit;
    font-weight: 400;
    color: #999999;
    text-align: right;
    margin-top: 6px;
}




/* Reviews */
.ReviewsBox{
    width: 100%;
    margin-top: 50px;
}

.ReviewsBox .qsfBox{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.ReviewsBox .qsfBoxL{
    display: flex;
    align-items: center;
    align-content: center;
    margin-right: 40px;
}

.ReviewsBox .qsfBoxL .xingBox{
    width: 30px;
    display: flex;
    margin-left: 8px;
}

.ReviewsBox .qsfBoxL .xingBox svg{
    width: 100%;
    height: auto;
}

/* .ReviewsBox .qsfBoxR{
    
} */

.ReviewsBox .qsfItem{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.ReviewsBox .qsfItem:nth-child(1){
    margin-top: 0;
}

.ReviewsBox .qsfItem .titNum{
    width: 120px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-right: 10px;
}

.ReviewsBox .qsfItem .xianBox{
    width: 360px;
}

.ReviewsBox .qsfItem .xianBox .xian{
    height: 10px;
    border-radius: 5px;
    background-color: #FA6E0780;
}

.ReviewsBox .sobyBox{
    display: flex;
    align-items: center;
    margin-right: 30px;
    color: #333;
    font-size: 16px;
}

.ReviewsBox .sobyBox .sobyTit{
    font-weight: 700;
    margin-right: 10px;
}

.ReviewsBox .sobyBox .sobyBut{
    min-width: 156px;
    height: 40px;
    padding: 0 42px 0 10px;
    border-radius: 4px;
    border: 1px solid #CBCBCB;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ReviewsBox .sobyBox .sobyBut .icoBox{
    width: 12px;
    display: flex;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.ReviewsBox .sobyBox .sobyBut-active .icoBox{
    transform: translateY(-50%) rotate(180deg);
}

.ReviewsBox .sobyBox .sobyBut .sobList{
    width: 100%;
    min-width: 225px;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1);
    box-sizing: border-box;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background-color: #fff;
    display: none;
    z-index: 2;
}

.ReviewsBox .sobyBox .sobyBut-active .sobList {
    display: block;
}

.ReviewsBox .sobyBox .sobyBut .sobList li{
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.ReviewsBox .sobyBox .sobyBut .sobList li:hover{
    color: #FA6E07;
}

.ReviewsBox .sobyBox .sobyBut .sobList li:nth-child(1){
    margin-top: 0;
}

.ReviewsBox .sobyBox .sobyBut .sobList .active{
    color: #FA6E07;
}

.ReviewsBox .rateBut{
    padding: 0 20px;
    height: 40px;
    border-radius: 4px;
    background-color: #FA6E07;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.ReviewsBox .rateBut .icoBox{
    width: 15px;
    display: flex;
    margin-left: 15px;
}

.ReviewsBox .rateBut .icoBox svg{
    width: 100%;
    height: auto;
}

.ReviewsBox .commentLists{
    width: 100%;
}

.ReviewsBox .commentList{
    width: 100%;
    margin-top: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E6E6E6;
}

.ReviewsBox .commentList .xingBox{
    display: flex;
    position: relative;
}

.ReviewsBox .commentList .xingBox .xingList{
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ReviewsBox .commentList .xingBox .xingList-active{
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
}

.ReviewsBox .commentList .xingBox .xingList li{
    width: 18px;
    margin: 0 1px;
    display: flex;
    flex-shrink: 0;
}

.ReviewsBox .commentList .xingBox .xingList li svg{
    width: 100%;
    height: auto;
}

.ReviewsBox .commentList .commentImgs{
    width: calc(50% - 10px);
    margin-left: 20px;
    overflow: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
}

.ReviewsBox .commentList .commentImg{
    height: 80px;
    margin-left: 10px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.ReviewsBox .commentList .commentImg:nth-child(1){
    margin-left: 0;
}

.ReviewsBox .commentList .commentImg img{
    width: auto;
    height: 100%;
}

.ReviewsBox .likeBox{
    display: flex;
    align-items: center;
}

.ReviewsBox .likeBox .like{
    width: 23px;
    display: flex;
    margin-right: 8px;
    cursor: pointer;
}

.ReviewsBox .likeBox .like svg{
    width: 100%;
    height: auto;
}

.ReviewsBox .likeBox .like .like-chk{
    display: none;
}

.ReviewsBox .likeBox .like-active .like-chk{
    display: block;
}

.ReviewsBox .likeBox .like-active .like-noChk{
    display: none;
}



.ReviewsBox .viewBut{
    width: 200px;
    height: 45px;
    margin: 40px auto 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    border: 1px solid #333333;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ReviewsBox .viewBut:hover{
    color: #FA6E07;
    border-color: #FA6E07;
}


/* 发表评论弹窗 */

.commentAlt{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3333334D;
    z-index: 9999;
}

.commentAltBox{
    width: 570px;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
}

.commentAltBox .chaBox{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color:#0000004D ;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: -15px;
    right: -17px;
}


.commentAltBox .chaBox svg{
    width: 16px;
    height: auto;
}

.commentAltBox .comImg{
    width: 150px;
    aspect-ratio: 6 / 5;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.commentAltBox .comImg img{
    width:100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.commentAltBox .comInpBox{
    width: 100%;
    height: 32px;
    border: 1px solid #CBCBCB;
    padding: 0px 12px;
    border-radius: 4px;
    box-sizing: border-box;
    position: relative;
}

.commentAltBox .comInpBox:focus-within{
    border-color: #FA6E07;
}

.commentAltBox .comInpBox .inpTit{
    position: absolute;
    left: 9px;
    top: -10px;
    padding: 0 4px;
    font-size: 12px;
    background-color: #fff;
    color: #666;
}

.commentAltBox .comInpBox:focus-within .inpTit{
    color: #FA6E07;
}

.commentAltBox .comInpBox input,.commentAltBox .comInpBox textarea{
    width: 100%;
    height: 100%;
    font-size: 12px;
    color: #333;
}

.commentAltBox .comInpBox textarea::-webkit-scrollbar{
    display: none;
}

.commentAltBox .comInpBox .comInpNumBox{
    position: absolute;
    right: 8px;
    bottom: 6px;
    font-size: 12px;
    color: #999;
}

.commentAltBox .comInpBox .comInpNum-not{
    color: #E26A62;
}


.commentAltBox .upImgBox{
    width: 100%;
    height: 56px;
    border-radius: 4px;
    border: 1px dashed #CBCBCB;
    background-color: #F9F9F9;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 10px;
}

.commentAltBox .upImgBox .icoBox{
    width: 25px;
    display: flex;
    margin-right: 7px;
}

.commentAltBox .upImgBox .icoBox svg{
    width: 100%;
    height: auto;
}

.commentAltBox .upImgLists{
    width: 100%;
    display: flex;
    margin-top: 15px;
}

.commentAltBox .upImgList{
    width: 80px;
    aspect-ratio: 6 / 5;
    border-radius: 2px;
    border: 1px solid #cbcbcb;
    box-sizing: border-box;
    position: relative;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commentAltBox .upImgList:nth-child(1){
    margin-left: 0;
}

.commentAltBox .upImgList img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.commentAltBox .upImgList .icoBox{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #333;
    overflow: hidden;
    position: absolute;
    top: -7px;
    right: -7px;
    display: none;
    align-items: center;
    justify-content: center;
}

.commentAltBox .upImgList:hover .icoBox{
    display: flex;
}

.commentAltBox .upImgList .icoBox:hover{
    background-color: #E26A62;
}

.commentAltBox .upImgList .icoBox svg{
    width: 12px;
    height: auto;
}

.commentAltBox .upImgList-not{
    border: none;
    background-color: #D7D7D7;
    font-size: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commentAltBox .upImgList-not svg{
    width: 30px;
    height: auto;
}




/* 下方推荐商品 */

/* 轮播图左右滑动按钮 */
.goods-swiper .swiper-but {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000CC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.goods-swiper .swiper-but svg {
    width: 18px;
    height: auto;
}

.goods-swiper .swiper-but-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.goods-swiper .swiper-but-next {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}



.slideMax .swiper-slide{
    max-width: calc(23.81% - 10px);
    margin-right: 20px;
}




/* 活动风格 */
.eStyle{
    width: calc(100% - 58px);
    background: #f5f5f5;
    border-radius: 5px;
    margin-top: 15px;
    overflow: hidden;
}

.eStyle .conBox{
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
}

.eStyle .conBox .esyImgBox{
    width: 100%;
    display: flex;
    margin-top: 10px; 
}

.eStyle .conBox .esyImgBox img{
    width: 140px;
    height: auto;
    cursor: pointer;
}

/* 活动风格1 */
.eStyle1 .avrBox{
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, #ec6352, #ca1600);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
}

.eStyle1 .avrBox .fs {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
}


.eStyle1 .avrBox .ends {
    display: flex;
    align-items: center;
    color: #fff;
}

.eStyle1 .avrBox .ends span {
    margin: 0 6px;
}

.eStyle1 .avrBox .ends .time {
    height: 18px;
    padding: 0 3px;
    border-radius: 2px;
    color: #db550b;
    background-color: #fff;
    margin: 0 3px;
    font-size: 14px;
    font-weight: 500;
}


.eStyle1 .avrBox .ends .time:last-child{
    margin-right: 10px;
}

.but-eStyle1{
    background-color:initial;
    background: linear-gradient(to right, #ec6352, #ca1600);
}

.but-eStyle1:hover{
    background-color:initial;
    background: linear-gradient(to right, #333, #333);
}

.butq-eStyle1{
    color: #ca1600;
    border-color: #ca1600;
}

.butq-eStyle1:hover{
    border-color: #333;
    color: #333;
}

/* 活动风格2 */
.eStyle2 .avrBox{
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, #fdceb0, #fe7b34);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
}

.eStyle2 .avrBox .fs {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 700;
}


.eStyle2 .avrBox .ends {
    display: flex;
    align-items: center;
    color: #fff;
}

.eStyle2 .avrBox .ends span {
    margin: 0 6px;
}

.eStyle2 .avrBox .ends .time {
    height: 18px;
    padding: 0 3px;
    border-radius: 2px;
    color: #333;
    background-color: #fff;
    margin: 0 3px;
    font-size: 14px;
    font-weight: 500;
}

.eStyle2 .avrBox .ends .time:last-child{
    margin-left: 10px;
}


/* 活动风格3 */
.eStyle3 .avrBox{
    width: 100%;
    height: 30px;
    background: #db0d0d;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
}

.eStyle3 .avrBox .fs {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
}


.eStyle3 .avrBox .ends {
    display: flex;
    align-items: center;
    color: #fff;
}

.eStyle3 .avrBox .ends span {
    margin: 0 6px;
}

.eStyle3 .avrBox .ends .time {
    height: 18px;
    padding: 0 3px;
    border-radius: 2px;
    color: #db550b;
    background-color: #fff;
    margin: 0 3px;
    font-size: 14px;
    font-weight: 500;
}

.eStyle3 .avrBox .ends .time:last-child{
    margin-right: 10px;
}

.but-eStyle3{
    background-color:#db0d0d;
}

.but-eStyle3:hover{
    background-color:#333;
}

