@media (min-width:751px) {
    .produce-main-box{
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .produce-img img{
        max-height: 8.5rem;
        width: 100%;
    }
    .produce-text{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: #fff;
        padding-top: 10px;
        background-color: rgba(0,43,90,0.8);
        width: 30%;
        text-align: center;
    }
    .produce-text h1{
        margin: 0;
        font-size: 0.6rem;
        font-weight: bold;
        letter-spacing: 0.5rem;
        text-indent: 0.5rem;
        text-align: center;
    }
    .produce-text span{
        font-size: 0.3rem;
        letter-spacing: 0rem;
    }
    .produce-list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 90%;
        margin: 0 auto;
        min-height: 5rem;
        padding: 0.5rem 0;
    }
    .produce-item{
        width: 23%;
    }
    .produce-item:hover{
        transform: translate(0,-10px);
    }

    .produce-item-img{
        width: 100%;
        height: 2.8rem;
        overflow: hidden;
        border-radius: 10px 10px 0 0;
    }
    .produce-item-img img{
        width: 100%;
        min-height: 2.8rem
    }
    .produce-item-info{
        background: #ffffff;
        padding: 0.15rem;
        height: 2.2rem;
        border-radius: 0 0 10px 10px;
        transition: all 1s ease-out;
    }
    .produce-item-info h1{
        font-size: 0.25rem;
        font-weight: bold;
        color: #333;
    }
    .produce-item-info p{
        color: #626262;
        line-height: 0.3rem;
        font-size: 0.18rem;
    }
}
@media (max-width:750px) {
    .produce-main-box{
        width: 100%;
        position: relative;
        height: 35vh;
        overflow: hidden;
    }
    .produce-img img{
        height: 100%;
    }
    .produce-text{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: #fff;
        padding: 10px;
        background-color: rgba(0,43,90,0.8);
        width: 30%;
        text-align: center;
    }
    .produce-text h1{
        margin: 0;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
    }
    .produce-text span{
        font-size: 16px;
    }
    .produce-list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 90%;
        margin: 0 auto;
        min-height: 200px;
        padding: 20px 0;
    }
    .produce-item{
        width: 45%;
        margin-top: 10px;
    }
    .produce-item-img{
        width: 100%;
        height: 100px;
        overflow: hidden;
        border-radius: 10px 10px 0 0;
    }
    .produce-item-img img{
        width: 100%;
        min-height: 100px
    }
    .produce-item-info{
        background: #ebecf3;
        padding: 15px;
        height: 100px;
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }
    .produce-item-info h1{
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }
    .produce-item-info p{
        color: #626262;
        line-height: 24px;
        font-size: 14px;
    }
}