/*------产品详情----------*/

.container {
    background-color: #F7F7F7;
}

.content-box {
    min-height: calc(100vh - 134px);
}

.product-card-box {
    margin-top: 80px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.product-card-left {
    width: 600px;
}

.product-swiper-box {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.swiper-container {
    margin: 0;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.swiper-slide>img {
    width: 100%;
    height: 100%;
}

.gallery-top {
    height: 476px;
    width: 476px;
}

.swiper-change-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 50px;
}

.gallery-thumbs {
    width: 468px;
    padding: 0 2px;
    height: 102px;
    box-sizing: border-box;
}

.gallery-thumbs .swiper-slide {
    width: 100px;
    height: 100px;
    opacity: 0.4;
    transition: all 0.4s;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border: 1px solid #0C0C0B;
    border-radius: 4px;
    opacity: 1;
}

.swiper-button-prev, .swiper-button-next {
    position: static;
    margin: 0;
    width: 28px;
    height: 100px;
    background: url('/assets/img/index/product/icon_left.png') no-repeat;
    background-position: center;
}

.swiper-button-next {
    background: url('/assets/img/index/product/icon_right.png') no-repeat;
    background-position: center;
}

div:focus {
    outline: none !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: "";
}

.swiper-button-disabled {
    opacity: 0 !important;
}

/*----右边产品详情----*/

.product-card-right {
    margin: 20px 20px 20px 0;
    padding: 30px;
    width: 510px;
    background-color: #F7F7F7;
}

.product-name {
    line-height: 42px;
    margin-bottom: 10px;
    font-size: 34px;
    font-family: SourceHanSansCN-Medium, SourceHanSansCN;
    font-weight: 500;
    color: #0C0C0B;
}

.product-tips {
    font-family: SourceHanSansCN-Light, SourceHanSansCN;
    font-weight: 300;
    color: #A97852;
    font-size: 16px;
    margin-bottom: 60px;
}

.product-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.features-item {
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 6px 20px;
    cursor: pointer;
    position: relative;
}
.features-item:hover .features-text{
    z-index: 1;
    opacity: 1;
}
.features-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
}

.features-text {
    z-index: -100;
    position: absolute;
    top: -38px;
    padding: 8px 12px;
    font-size: 12px;
    color: #fff;
    background-color: #0C0C0B;
    font-family: SourceHanSansCN-Light, SourceHanSansCN;
    font-weight: 300;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    transition: all 0.4s;
}
.features-text::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: calc(50% - 6px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #111;
}

.product-title {
    font-size: 16px;
    color: #71767F;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.product-text-box {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 24px;
}

.product-file-box {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    color: #0C0C0B;
    font-family: SourceHanSansCN-Light, SourceHanSansCN;
    font-weight: 300;
}
.file-icon{
    width: 14px;
    height: 14px;
    margin-right: 10px;
}
.same-recommend{
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    cursor: default;
}
.recommend-title{
    flex-shrink: 0;
    margin-right: 44px;
    color: #0C0C0B;
    font-size: 34px;
}
.same-recommend .line{
    width: 100%;
    height: 1px;
    background-color: #0C0C0B;
}
.series-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.series-item-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 270px;
    height: 346px;
    transition: all 1s;
    border-bottom: 1px solid #ddd;
    margin: 0 40px 40px 0;
    background-color: #fff;
    color: #0C0C0B;
    cursor: pointer;
}
.series-item-box:hover{
    color: #0C0C0B;
    border-bottom: 1px solid #0C0C0B;
    box-shadow: 0px 2px 8px 0px rgba(156, 156, 156, 0.5);
}
.series-item-box:nth-of-type(4n){
    margin-right: 0;
}
.item-img-box{
    width: 270px;
    height: 270px;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-item-img{
    width: 100%;
    height: 100%;
    transition: all 1s;
}
.series-item-box:hover .product-item-img{
    transform: scale(1.1);
}