.box1 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 0.89rem;
    padding-bottom: 1rem;
}

.box1_p1 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.36rem;
    color: #333333;
    text-align: center;
    position: relative;
}

.box1_p1::after {
    content: "";
    width: 1rem;
    height: 0.03rem;
    background: #BD261D;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.14rem;
}
.box1_body{
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 1.06rem;
}
.box1_box {
    max-width: 4.8rem;
    width: 31.5%;
    height: 4.3rem;
    background: rgb(255, 255, 255, 0.5);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.box1_box_hoverBox {
    width: 100%;
    height: 100%;
    background: #BD261D;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: 0.3s;
    transform: translateY(100%);
}

.box1_box_imgBox {
    width: 1rem;
    height: 1rem;
    background: rgb(189, 38, 29, 0.1);
    border-radius: 50%;
    position: relative;
}

.box1_box_imgBox img {
    width: 0.6rem;
    height: 0.6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    object-fit: contain !important;
}

.box1_p2 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.24rem;
    color: #333333;
}

.box1_box_imgBox_hover {
    background: rgb(255, 255, 255, 0.2);
    margin: 0.4rem 0;
}

.box1_box_imgBox_hover img {
    filter: brightness(0) invert(100%);
}

.box1_p3 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.24rem;
    color: #FFFFFF;
    margin-bottom: 0.15rem;
}

.box1_p4 {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 0.5rem;
}
.box1_box:hover .box1_box_hoverBox{
    transform: translateY(0);
}
@media only screen and (max-width: 768px) {
.box1_box{
            width: 47.5%;
    }
    .box1_body{
            justify-content: space-between;
    }
}