.product {
    background: #F8F8F8;
}

.product .box1 {
    position: relative;
    padding-top: 50px;
}

.product .box1 .box-c {
    position: relative;
}

.product .box1::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #DEDEDE;
}

.product .box1 .swiper-slide {
    position: relative;
    width: 19%;
    padding: 20px 0;
}

.product .box1 .swiper-slide::before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    bottom: 0;
    background: #FF2700;
    transition: all 0.6s;
}

.product .box1 .swiper-slide.active:before {
    width: 100%;
}

.product .box1 .swiper-slide:not(:last-child) {
    margin-right: 1.25%;
}

.product .box1 .swiper-slide .picCover {
    padding-top: 45.28%;
}

.product .box1 .swiper-slide .picCover .pic img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.product .box1 .swiper-slide .text-title {
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    text-align: center;
    transition: all 0.6s;
    margin-top: 19px;
}

.product .box1 .swiper-slide:hover .text-title,
.product .box1 .swiper-slide.active .text-title {
    color: #FF2700;
}

.product .box1 .btn {
    position: absolute;
    top: 50%;
    cursor: pointer;
    transition: all .6s;
}

.product .box1 .btn.swiper-button-disabled {
    opacity: .3;
    cursor: not-allowed;
}

.product .box1 .btn:not(.swiper-button-disabled):hover {
    color: #FF2700;
}

.product .box1 .btn .iconfont {
    font-size: 22px;
}

.product .box1 .btn.btn-prev {
    left: 0;
    transform: translate(-100%, -50%);
}

.product .box1 .btn.btn-next {
    right: 0;
    transform: translate(100%, -50%);
}

.product .box2 {
    margin-top: 55px;
}

.product .box2 .pic {
    border-radius: 10px;
}

.product .box3 {
    padding: 80px 0 140px;
}

.product .box3 .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product .box3 .list li {
    position: relative;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 30px;
}
.product .box3 .list li .text-title{
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 1;
}
.product .box3 .list li .text-des{
    font-family: Rany-Bold;
    font-weight: bold;
    color: #222222;
    line-height: 1;
    margin-top: .33em;
    transition: all .6s;
}
.product .box3 .list li:hover .text-des{
    color: #FF2700;
}
.product .box3 .list li .picCover{
    margin-top: 30px;
    padding-top: 83.69%;
}
.product .box3 .list li .picCover .pic img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.product .box3 .list li .more{
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    padding: 0 17px;
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 50px;
    background: #FF2700;
    border-radius: 25px;
    opacity: 0;
    transition: all .6s;
}
.product .box3 .list li:hover .more{
    opacity: 1;
}
.product .box3 .list li .more .iconfont{
    margin-left: 20px;
    font-size: 22px;
}
.productDetails{
    background-color: #F8F8F8;
}
.productDetails .box1{
    padding: 62px 0 113px;
    background-color: #fff;
}
.productDetails .box1 .box-c{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.productDetails .box1 .box-c .l{
    width: 42.85%;
}
.productDetails .box1 .box-c .l .galleryTop{
    position: relative;
    padding-top: 100%;
}
.productDetails .box1 .box-c .l .galleryTop .btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FF2700;
    cursor: pointer;
    z-index: 3;
}
.productDetails .box1 .box-c .l .galleryTop .btn .iconfont{
    font-weight: bold;
    font-size: 20px;
}
.productDetails .box1 .box-c .l .galleryTop .btn.btn-prev{
    left: 20px;
}
.productDetails .box1 .box-c .l .galleryTop .btn.btn-next{
    right: 20px;
}
.productDetails .box1 .box-c .l .galleryTop .swiper{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.productDetails .box1 .box-c .l .galleryTop .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.productDetails .box1 .box-c .l .galleryThumbs{
    position: relative;
    margin-top: 16px;
    padding: 0 46px;
}
.productDetails .box1 .box-c .l .galleryThumbs .btn{
    position: absolute;
    top: 0;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    color: #FF2700;
    transition: all .6s;
    cursor: pointer;
}
.productDetails .box1 .box-c .l .galleryThumbs .btn:hover{
    background: #222222;
    color: #F6F6F6;
}
.productDetails .box1 .box-c .l .galleryThumbs .btn .iconfont{
    font-weight: bold;
}
.productDetails .box1 .box-c .l .galleryThumbs .btn.btn-prev{
    left: 0;
}
.productDetails .box1 .box-c .l .galleryThumbs .btn.btn-next{
    right: 0;
}
.productDetails .box1 .box-c .l .galleryThumbs .swiper-slide{
    position: relative;
    background: #F6F6F6;
    cursor: pointer;
}
.productDetails .box1 .box-c .l .galleryThumbs .swiper-slide::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #FF2700;
    opacity: 0;
    box-sizing: border-box;
}
.productDetails .box1 .box-c .l .galleryThumbs .swiper-slide-thumb-active::before{
    /* opacity: 1; */
}
.productDetails .box1 .box-c .l .galleryThumbs .picCover{
    padding-top: 100%;
}
.productDetails .box1 .box-c .l .galleryThumbs .picCover img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.productDetails .box1 .box-c .r{
    width: 52.85%;
    padding-top: 43px;
}
.productDetails .box1 .box-c .r-title{
font-family: Rany-Bold;
color: #222222;
line-height: 1.5;
}
.productDetails .box1 .box-c .r-des{
font-family: Rany;
font-weight: 400;
font-size: 18px;
color: #222222;
line-height: 30px;
}
.productDetails .box1 .box-c .r .priceBox{
    margin-top: 20px;
    font-family: Rany;
font-weight: 400;
}
.productDetails .box1 .box-c .r .price-text{
font-size: 18px;
color: #999999;
line-height: 30px;
}
.productDetails .box1 .box-c .r .price-number{
    margin-top: 10px;
    line-height: 1;
    color: #222222;
}
.productDetails .box1 .box-c .r .list{
    margin-top: 40px;
}
.productDetails .box1 .box-c .r .list li{
    display: flex;
    align-items: flex-start;
}
.productDetails .box1 .box-c .r .list li:not(:last-child){
    margin-bottom: 20px;
}
.productDetails .box1 .box-c .r .list .li-l{
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    line-height: 40px;
    min-width: 70px;
}
.productDetails .box1 .box-c .r .list .li-r{
    flex: 1;
    margin-left: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.productDetails .box1 .box-c .r .list .li-r a{
   padding: 0 20px;
line-height: 38px;
font-family: Rany;
font-weight: 400;
font-size: 18px;
color: #222222;
background: #FFFFFF;
border-radius: 5px;
border: 1px solid #DEDEDE;
transition: all .6s;
}
.productDetails .box1 .box-c .r .list .li-r a:hover{
    color: #FF2700;
}
.productDetails .box1 .box-c .r .list .li-r a.active{
    background-color: #222222;
    color: #fff;
    border-color: #222222;
}
.productDetails .box1 .box-c .r .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEDEDE;
    border-radius: 25px;
    width: 160px;
    margin-top: 45px;
    height: 50px;
}

.productDetails .box1 .box-c .r .quantity-selector button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: Rany;
    font-weight: 400;
    font-size: 24px;
    color: #222222;
    line-height: 48px;
    width: 40px;
    height: 100%;
}

.productDetails .box1 .box-c .r .quantity-selector .quantity-value {
    margin: 0 10px;
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
}
.productDetails .box1 .box-c .r .btns{
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.productDetails .box1 .box-c .r .btns .btn{
    line-height: 50px;
    background: #FF2700;
    border-radius: 25px;
    padding: 0 30px;
    font-family: Rany;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}
.productDetails .box1 .box-c .r .payWay{
    margin-top: 25px;
}
.productDetails .box1 .box-c .r .payWay img{
    display: block;
    max-width: 100%;
}
.productDetails .box2{
    position: sticky;
    top: 90px;
    padding: 10px 0;
    background-color: #F8F8F8;
    z-index: 4;
}
.productDetails .box2 .box-c{
    display: flex;
    justify-content: center;
    gap: 30px;
}
.productDetails .box2 .box-c a{
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    color: #222222;
    border-radius: 10px;
    padding: 0 30px;
    line-height: 50px;
    transition: all .6s;
}
.productDetails .box2 .box-c a:hover{
    color: #FF2700;
}
.productDetails .box2 .box-c a.active{
    background: #FF2700;
    color: #fff;
}
.productDetails .box3 img{
    display: block;
    width: 100%;
}
.productDetails .box4{
    padding-top: 90px;
}
.productDetails .box4 .box-c img{
    display: block;
    width: 100%;
}
.productDetails .box5{
    margin-top: 80px;
}
.productDetails .box5 .box-c .list li{
    display: flex;
    justify-content: space-between;
}
.productDetails .box5 .box-c .list li:not(:last-child){
    margin-bottom: 80px;
}
.productDetails .box5 .box-c .list li:nth-child(2n){
    flex-direction: row-reverse;
}
.productDetails .box5 .box-c .list li .pic{
    width: 50%;
    border-radius: 5px;
}
.productDetails .box5 .box-c .list li  .text-box{
    width: 44.71%;
    padding-top: 66px;
}
.productDetails .box5 .box-c .list li .text-des{
    font-family: Rany-Bold;
    font-size: 24px;
    color: #222222;
    line-height: 1.5;
}
.productDetails .box5 .box-c .list li .text-title{
    font-family: Rany-Bold;
    color: #FF2700;
    line-height: 1;
    margin: .4em 0 .5em;
}
.productDetails .box5 .box-c .list li .text{
font-family: Rany;
font-weight: 400;
font-size: 18px;
color: #222222;
line-height: 30px;
margin-top: 43px;
}
.productDetails .box6{
    padding-top: 109px;
}
.productDetails .box7 .title,
.productDetails .box6 .title{
    padding-bottom: 1em;
    border-bottom: 1px solid #DEDEDE;
}
.productDetails .box6 .box-c{
    display: flex;
    justify-content: space-between;
    margin-top: 78px;
}
.productDetails .box6 .text-title{
font-family: Rany-Bold;
font-size: 24px;
color: #222222;
line-height: 1;
    margin-bottom: 49px;
}
.productDetails .box6 .box-b .l,
.productDetails .box6 .box-c .l{
    width: 42.85%;
}
.productDetails .box6 .box-c .l .list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0 30px;
    text-align: right;
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 2;
    width: 500px;
    max-width: 100%;
}
.productDetails .box6 .box-c .l .list li:nth-child(2n+1){
    text-align: left;
}
.productDetails .box6 .box-c .l .list li span{
    color: #999999;
}
.productDetails .box6 .box-b .r,
.productDetails .box6 .box-c .r{
    width: 52.42%;
}
.productDetails .box6 .box-c .r .list li{
    display: flex;
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 2;
}
.productDetails .box6 .box-c .r .list .li-l{
    width: 165px;
    text-align: right;
}
.productDetails .box6 .box-c .r .list .li-r{
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    line-height: 36px;
    margin-left: 24px;
}
.productDetails .box6 .box-b{
    margin-top: 67px;
}
.productDetails .box6 .box-b-container{
    display: flex;
    justify-content: space-between;
}
.productDetails .box6 .box-b-container .l img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 5px;
}
.productDetails .box6 .box-b-container .r{
    padding-top: 18px;
}
.productDetails .box6 .box-b-container .r .text-des{
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}
.productDetails .box6 .box-b-container .r .text-box{
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    line-height: 36px;
    margin-top: 26px;
}
.productDetails .box7{
    padding: 153px 0 140px;
}
.productDetails .box7 .box-c{
    margin-top: 42px;
}
@media (max-width: 1280px) {
    .product .box1 .swiper-slide{
        width: 24%;
    }
    .product .box1 .swiper-slide:not(:last-child){
        margin-right: 1.33%;
    }
}
@media (max-width: 1199px) {
    .productDetails .box1 .box-c .r{
        padding-top: 0;
    }
    .productDetails .box7{
        padding: 80px 0;
    }
    .productDetails .box1{
        padding-bottom: 80px;
    }
    .productDetails .box6,
    .productDetails .box4{
        padding-top: 80px;
    }
    .productDetails .box6 .box-c{
        margin-top: 45px;
    }
    .productDetails .box6 .text-title{
        margin-bottom: 45px;
    }
    .productDetails .box1 .box-c .r .priceBox{
        margin-top: 15px;
    }
    .productDetails .box1 .box-c .r .btns,
    .productDetails .box1 .box-c .r .quantity-selector,
    .productDetails .box1 .box-c .r .list{
        margin-top: 30px;
    }
    .productDetails .box1 .box-c .r .btns{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .productDetails .box5 .box-c .list li:not(:last-child){
        margin-bottom: 60px;
    }
    .product .box2{
        margin-top: 45px;
    }
    .product .box1{
        padding-top: 45px;
    }
    .product .box3{
        padding: 80px 0;
    }
    .product .box3 .list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width:1024px) {
    .product .box3 .list{
        grid-template-columns: repeat(2,1fr);
    }
    .product .box3 .list li .more{
        font-size: 16px;
        line-height: 45px;
    }
    .product .box3 .list li .more .iconfont{
        margin-left: 10px;
    }
    .product .box1 .swiper-slide{
        width: 32%;
    }
    .product .box1 .swiper-slide:not(:last-child){
        margin-right: 2%;
    }
    .product .box2{
        margin-top: 40px;
    }
    .product .box1{
        padding-top: 40px;
    }
    .product .box3{
        padding: 70px 0;
    }
    .productDetails .box1 .box-c .r .btns .btn{
        line-height: 40px;
        padding: 0 20px;
        font-size: 16px;
    }
    .productDetails .box1 .box-c .r .btns, .productDetails .box1 .box-c .r .quantity-selector, .productDetails .box1 .box-c .r .list{
        margin-top: 20px;
    }
    .productDetails .box1 .box-c .r .quantity-selector{
        height: 40px;
    }
    .productDetails .box1 .box-c .r .quantity-selector button{
        line-height: 38px;
    }
    .productDetails .box1 .box-c .r .list li:not(:last-child){
        margin-bottom: 15px;
    }
    .productDetails .box1 .box-c .r .list .li-r a{
        font-size: 16px;
        line-height: 28px;
        padding: 0 14px;
    }
    .productDetails .box1 .box-c .r .list .li-l{
        font-size: 16px;
        line-height: 30px;
    }
    .productDetails .box1 .box-c .r .price-number{
        margin-top: 5px;
    }
    .productDetails .box1 .box-c .r .price-text,
    .productDetails .box1 .box-c .r-des{
        font-size: 16px;
        line-height: 24px;
    }
    .productDetails .box1 .box-c .l{
        width: 44.85%;
    }
     .productDetails .box5{
        margin-top: 70px;
     }
    .productDetails .box7{
        padding: 70px 0;
    }
    .productDetails .box1{
        padding-bottom: 70px;
    }
    .productDetails .box6,
    .productDetails .box4{
        padding-top: 70px;
    }
    .productDetails .box6 .box-c{
        margin-top: 40px;
    }
    .productDetails .box6 .text-title{
        margin-bottom: 40px;
    }
    .productDetails .box2 .box-c a{
        line-height: 40px;
        font-size: 16px;
        padding: 0 20px;
    }
    .productDetails .box5 .box-c .list li .text-des{
        font-size: 20px;
    }
    .productDetails .box5 .box-c .list li .text{
        font-size: 16px;
        margin-top: 20px;
        line-height: 24px;
    }
    .productDetails .box5 .box-c .list li .text-title{
        margin: .3em 0 .4em;
    }
    .productDetails .box5 .box-c .list li .text-box{
        padding-top: 20px;
    }
     .productDetails .box5 .box-c .list li:not(:last-child){
        margin-bottom: 50px;
    }
    .productDetails .box5 .box-c .list li .text-box{
        width: 46%;
    }
    .productDetails .box6 .box-b-container .r .text-des,
    .productDetails .box6 .box-b-container .r .text-box,
    .productDetails .box6 .box-c .r .list .li-r,
    .productDetails .box6 .box-c .r .list li,
    .productDetails .box6 .box-c .l .list{
        font-size: 16px;
    }
    .productDetails .box6 .box-b-container .r .text-box{
        margin-top: 14px;
    }
    .productDetails .box7 .box-c{
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .product .box3 .list li .more{
        bottom: 10px;
        right: 10px;
        font-size: 14px;
        line-height: 40px;
        padding: 0 13px;
    }
    .product .box3 .list{
        gap: 20px;
    }
    .product .box3 .list li{
        padding: 20px;
    }
    .product .box1 .swiper-slide .text-title{
        font-size: 16px;
        line-height: 24px;
        margin-top: 14px;
    }
    .product .box1 .swiper-slide{
        padding: 15px 0;
    }
    .product .box1 .box-c{
        padding: 0 15px;
    }
    .product .box1 .btn.btn-prev{
        left: 13px;
    }
    .product .box1 .btn.btn-next{
        right: 13px;
    }
    .product .box1 .swiper-slide{
        width: 48.5%;
    }
    .product .box1 .swiper-slide:not(:last-child){
        margin-right: 3%;
    }
    .product .box2{
        margin-top: 30px;
    }
    .product .box1{
        padding-top: 30px;
    }
    .product .box3{
        padding: 60px 0;
    }
    .productDetails .box7 .box-c{
        margin-top: 30px;
    }
    .productDetails .box5 .box-c .list li,
    .productDetails .box5 .box-c .list li:nth-child(2n){
        flex-direction: column;
    }
     .productDetails .box5 .box-c .list li:not(:last-child){
        margin-bottom: 40px;
    }
    .productDetails .box5 .box-c .list li .pic,
    .productDetails .box5 .box-c .list li .text-box{
        width: 100%;
    }
    .productDetails .box1 .box-c .l,
    .productDetails .box1 .box-c .r{
        width: 100%;
    }
    .productDetails .box1 .box-c .r{
        margin-top: 30px;
    }
    .productDetails .box1 .box-c{
        flex-direction: column;
    }
     .productDetails .box5{
        margin-top: 60px;
     }
    .productDetails .box7{
        padding: 60px 0;
    }
    .productDetails .box1{
        padding-bottom: 60px;
    }
    .productDetails .box6{
        padding-top: 50px;
    }
    .productDetails .box1{
        padding-top: 40px;
    }
    .productDetails .box6 .box-b-container,
    .productDetails .box6 .box-c{
        margin-top: 30px;
        flex-direction: column;
    }
    .productDetails .box6 .box-c .r{
        margin-top: 30px;
    }
    .productDetails .box6 .box-c .l .list,
    .productDetails .box6 .box-b .r, .productDetails .box6 .box-c .r,
    .productDetails .box6 .box-b .l, .productDetails .box6 .box-c .l{
        width: 100%;
    }
    .productDetails .box6 .text-title{
        margin-bottom: 30px;
    }
    .productDetails .box6 .box-b{
        margin-top: 40px;
    }
    .productDetails .box2{
        top: 50px;
        padding: 5px 0;
    }
    .productDetails .box2 .box-c a{
        line-height: 34px;
    }
    .productDetails .box6 .box-b-container .r{
        padding-top: 30px;
    }
    .productDetails .box6 .text-title{
        font-size: 22px;
    }
    .productDetails .box7 .title, .productDetails .box6 .title{
        padding-bottom: .5em;
    }
    .product .box3 .list li .text-title{
        font-size: 14px;
    }
    .product .box3 .list li .text-des{
        font-size: 18px;
    }
    .product .box3 .list li .picCover{
        margin-top: 20px;
    }
}
@media (max-width: 500px) {
    .product .box1 .swiper-slide .text-title{
        font-size: 14px;
        line-height: 18px;
    }
    .product .box2{
        margin-top: 25px;
    }
    .product .box1{
        padding-top: 25px;
    }
    .product .box3{
        padding: 40px 0;
    }
    .productDetails .box7 .box-c{
        margin-top: 25px;
    }
    .productDetails .box5 .box-c .list li .text{
        font-size: 14px;
        margin-top: 14px;
    }
    .productDetails .box5 .box-c .list li .text-des{
        font-size: 18px;
    }
    .productDetails .box5 .box-c .list li .text-box{
        padding-top: 10px;
    }
     .productDetails .box5 .box-c .list li:not(:last-child){
        margin-bottom: 35px;
    }
    .productDetails .box2 .box-c a{
        font-size: 14px;
        line-height: 30px;
    }
    .productDetails .box1 .box-c .r .btns .btn,
    .productDetails .box1 .box-c .r .list .li-r a{
        font-size: 14px;
    }
    .productDetails .box1 .box-c .r .list .li-l{
        font-size: 14px;
        min-width: 60px;
    }
    .productDetails .box1 .box-c .r .priceBox{
        margin-top: 10px;
    }
    .productDetails .box1 .box-c .r{
        margin-top: 23px;
    }
     .productDetails .box5{
        margin-top: 50px;
     }
    .productDetails .box7{
        padding: 50px 0;
    }
    .productDetails .box1{
        padding-bottom: 50px;
    }
    .productDetails .box1{
        padding-top: 30px;
    }
    .productDetails .box6,
    .productDetails .box4{
        padding-top: 50px;
    }
    .productDetails .box6 .box-c{
        margin-top: 25px;
    }
    .productDetails .box6 .text-title{
        margin-bottom: 15px;
        font-size: 20px;
    }
    .productDetails .box6 .box-b-container .r .text-des, .productDetails .box6 .box-b-container .r .text-box, .productDetails .box6 .box-c .r .list .li-r, .productDetails .box6 .box-c .r .list li, .productDetails .box6 .box-c .l .list{
        font-size: 14px;
        line-height: 24px;
    }
    .productDetails .box6 .box-b-container,
    .productDetails .box6 .box-c .r{
        margin-top: 20px;
    }
    .productDetails .box6 .box-b{
        margin-top: 25px;
    }
    .productDetails .box6 .box-b-container .r{
        padding-top: 25px;
    }
}