.product{
    width: 100%;
    height: auto;
    padding: 50px 0;
    overflow: hidden;
}
.container{
    width: 1440px;
    height: auto;
    margin: auto;
}
.product-content{
    width: 100%;
    height: 500px;
    overflow: visible;
}
.product-content-left{
    width: 45%;
    height: 100%;
    float: left;
}
.product-content-right{
    width: 50%;
    height: 100%;
    float: right;
}
.product-images{
    width: 100%;
    height: 400px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
}
.product-images-pagination{
    width: 100%;
    height: 130px;
    /*border: 1px solid rgba(0,0,0,0.1);*/
    border-radius: 6px;
    margin-top: 10px;
    padding: 5px 0;
}
.product-title{
    font-size: 26px;
    font-weight: 600;
}
.product-desc{
    min-height: 170px;
    height: auto;
    font-size: 16px;
    color: rgba(0,0,0,0.6);
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0;
}
.product-txt{
    font-size: 18px;
    color: rgba(0,0,0,0.8);
    text-align: center;
}
.product-btns{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.product-btns a{
    display: inline-block;
    width: 160px;
    height: 40px;
    background-color: rgba(12, 84, 166, 1);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    margin-right: 30px;
}
.product-btns a:last-child{
    margin-right: 0;
}
.product-details{
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.product-details-title{
    height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    line-height: 100px;
}
.product-details img{
    max-width: 100%;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 100%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    overflow: hidden;
    opacity: 0.8;
    border: 1px solid rgba(0,0,0,0.1);
}
.mySwiper .swiper-slide-thumb-active{
    border: 1px solid rgba(12, 84, 166, 1);
}
.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next,
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    width: 60px;
    height: 60px;
    background-color: rgba(0,0,0,0.2);
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

@media (max-width: 600px) {
    .product-content{
        height: auto;
        overflow: hidden;
        padding: 0 10px;
    }
    .product-images{
        height: 240px;
    }
    .product-content-left{
        width: 100%;
    }
    .product-content-right{
        width: 100%;
    }
    .product-images-pagination{
        height: 110px;
    }
    .product-btns{
        justify-content: space-evenly;
    }
    .product-btns a{
        margin-right: 0;
    }
    .product-title{
        font-size: 20px;
    }
}

