.box1 {
    padding-top: 1rem;
    padding-bottom: 0.73rem;
}

.box1 .main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.6rem;
}

.box1_box {
    max-width: 7.2rem;
    width: 47.8%;
    background: #FFFFFF;
    border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
    border: 0.01rem solid #CFCFCF;
    overflow: hidden;
    padding-bottom: 0.35rem;
}

.box1_box_imgBox {
    width: 7.18rem;
    height: 4.5rem;
    overflow: hidden;
    position: relative;
}

.box1_box_imgBox img {
    transition: 0.5s;
}

.box1_box_imgBox::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 7.2rem;
    height: 0.7rem;
    background: #000000;
    border-radius: 0rem 0rem 0rem 0rem;
    opacity: 0.5;
}

.box1_box_imgBox_p {
    position: absolute;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.26rem;
    color: #FFFFFF;
    text-align: center;
    bottom: 0.19rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.box1_box:hover .box1_box_imgBox img {
    transform: scale(1.1);
}

.box1_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.7rem;
    width: 6.6rem;
    margin: 0 auto;
    border-bottom: 0.01rem solid #E8E8E8;
}

.box1_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.24rem;
    color: #383635;
}

.box1_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.18rem;
    color: #999999;
    transition: 0.3s;
}

.box1_btn:hover .box1_p2 {
    color: #BD261D;
}



@media only screen and (max-width: 768px) {
.box1_box{
        width: 100%!important;
    }
}