@charset "utf-8";

/* 产品系列 */
.product-main{
    width: 100%;
}
.product-main .product-nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}
.product-main .product-nav li{
    display: block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 20px;
    color: #333333;
    cursor: pointer;
}
.product-main .product-nav li.active{
    background-color: #288fe7;
    color: #ffffff;
}
.product-main .product-content{
    margin: 40px 0px;
}
.product-main .product-content .product-item{
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.product-main .product-content .product-item.active{
    display: flex;
}
.product-main .product-content .product-item .item-left{
    width: 50%;
    position: relative;
    padding: 0px 67px;
    z-index: 5;
}
.product-main .product-content .product-item .item-left .item-index{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    padding: 16px 0px;
    border-bottom: 2px solid #fbc02d;
    color: #fbc02d;
    font-size: 46px;
    width: 120px;
    transition: all 0.25s;
}
.product-main .product-content .product-item .item-left .item-image{
    width: 470px;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(1,1);
    transition: all 0.25s;
}
.product-main .product-content .product-item .item-left:hover .item-image{
    transform: scale(1.1,1.1);
}
.product-main .product-content .product-item .item-right{
    width: 50%;
    font-size: 20px;
    color: #258fe9;
    position: relative;
    z-index: 5;
    line-height: 31px;
}
.product-main .product-content .product-item .item-right .item-right-line .line-title{
    display: inline-block;
    width: 100px;
    flex-shrink: 0;
    text-align-last: justify;
    -moz-text-align-last: justify;
    text-align: justify;
    text-justify: distribute-all-lines;
    font-weight: normal;
    margin: 0;
}
.product-main .product-content .product-item .item-background{
    position: absolute;
    width: 290px;
    height: 395px;
    left: calc(50% - 145px);
    top: -26px;
}
/* 产品系列 */

@media (max-width: 700px){
    .product-main .product-nav{
        font-size: 14px;
        flex-wrap: wrap;
    }
    .product-main .product-nav li{
        width: auto;
        padding: 0px 15px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 20px;
        color: #333333;
        cursor: pointer;
    }
    .product-main .product-content{
        margin: 0px;
    }
    .product-main .product-content .product-item{
        flex-wrap: wrap;
    }
    .product-main .product-content .product-item .item-left{
        width: 100%;
        padding: 10px;
    }
    .product-main .product-content .product-item .item-left .item-index{
        font-size: 30px;
        width: 80px;
    }
    .product-main .product-content .product-item .item-left .item-image{
        width: 100%;
        height: auto;
    }
    .product-main .product-content .product-item .item-left .item-image img{
        width: 100%;
        height: auto;
    }
    .product-main .product-content .product-item .item-right{
        width: 100%;
        padding: 0px 10px;
        font-size: 16px;
        line-height: 24px;
    }
    .product-main .product-content .product-item .item-background{
        display: none;
    }
}

