.new_product_box{
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 30px;
}


.protypetit{
    position: absolute;
    display: flex;
    /* justify-content: space-around; */
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
}
.protypetit1{
    box-sizing: border-box;
    width: 100%;
    text-align: right;
    color: #553826;
    font-weight: bold;
    font-size: 30px;
}
.protypeline{
    width: 50px;
    height: 5px;
    background-color: #553826;
}
.product_box{
    position: relative;
    padding-top: 80px;
}

.product_box1{
    
    width: 50%;
}
.product_box2{
    
    width: 25%;
}
.product_box3{
    width: 25%;
}
.product_box1 .prowap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product_box2 .prowap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.product_box3 .prowap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.product_box1 .prowap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product_item{
    display: block;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important; 
}
.product_item:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.product_item:hover .product_tit_tits1{
    font-weight: bold;
}
.product_box1 .product_item{
    margin-bottom: 20px;
    width: 48%;
    cursor: pointer;
}
.product_box2 .product_item{
    margin-bottom: 20px;
    width: 96%;
    cursor: pointer;
}
.product_box3 .product_item{
    margin-bottom: 20px;
    width: 96%;
    cursor: pointer;
}
.proimgbox{
    width: 100%;
    padding-top: 100%; /* 创建一个正方形比例 */
    position: relative;
    overflow: hidden;
    border: 1px solid #f5f5f5;
}

.product_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片保持比例填充整个容器 */
    display: block;
    /* border: 1px solid #f5f5f5; */
    border: none;
    outline: none;
}
.product_tit{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #f5f5f5;
    border-top: none;
    padding: 10px 0;
}
.product_tit_tits1{
    text-align: center;
    color: #553826;
    font-weight: bold;
}
.product_tit_tits2{
    text-align: center;
    color: #999;
    
}
.product_tit_tits2 p{
    margin-bottom: 0;
}