.product-box{
    height: 800px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 150px;
    margin-top: 100px;
}
.left{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.left .line{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.left .line .item{
    width: 50%;
    height: 100%;
}
.product-item{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    text-align: center;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;

}
.product-item *{
    transition: unset;
}

.product-item .hover{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: unset!important;
}
.product-item:hover{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-item .name-box{
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    color: #123EAB;
    font-weight: bolder;
}
.product-item .name-box i{
    font-size: 30px;
    line-height: 70px;
}

.right{
    width: 40%;
    height: 100%;
}

