.product-list{
    width: 100%;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}
.product-item {
    width: 100%;
    height: 100%;
    margin-bottom: 75px;
    display: flex;
}
.product-item .img-div{
    position: relative;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: 20%;
}
.product-item .img-div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
}
.product-item .img-div a{
    width: 100%;
    height: 100%;
}

.product-item .content{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    width: 70%;
    padding: 0 50px;
}
.info{
    /*position: absolute;*/
    color: black;
    font-size: 16px;
    font-family: Microsoft YaHei;
    word-wrap: break-word;
    overflow: hidden;
    width: 100%;
}
.product-item .info-list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.product-item .info-list .list-item{
    width: 100%;
    display: flex;
    margin-bottom: 5px;
}
.item-name{
    width: 100%;
    font-weight: 400;
    line-height: 26px;
    max-height: 52px;
}
.item-title{
    font-weight: 700;
    line-height: 32px;
    height: 32px;
    width: 15%;
}
.item-content{
    width: 83%;
    /*height: 32px;*/
    /*overflow: hidden;*/
}
.item-content.en {
    padding-left: 1vw;
}
.title{
    font-weight: 400;
    line-height: 28px;
    font-size: 28px;
    height: 28px;
    text-align: left;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.en-title{
    font-weight: 400;
    line-height: 28px;
    font-size: 28px;
    height: 28px;
    margin-bottom: 10px;
}
.line{
    width: 100%;
    height: 1px;
    background: black;
}
@media screen and (max-width: 767px) {
    .product-item{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .product-item .img-div{
        width: 92vw;
        height: 92vw;
    }
    .product-item .content{
        width: 100%;
    }
}