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

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

.box1_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 4.8rem;
    width: 31.5%;
    height: 4.54rem;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0, 0, 0, 0.1);
    border-radius: 0.1rem;
    overflow: hidden;
    transition: 0.3s;
    padding-bottom: 0.2rem;
}

.box1_imgBox {
    width: 4.8rem;
    height: 2.54rem;
    overflow: hidden;
}

.box1_imgBox img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
}

.box1_p1 {
    max-width: 3.84rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.2rem;
    color: #333333;
    line-height: 0.35rem;
    margin: 0 0.48rem;
    margin-top: 0.16rem;
    transition: 0.3s;
}

.box1 hr {
    width: 4.36rem;
    border: 0.01rem solid #E5E5E5;
    margin: 0 auto;
    margin-bottom: 0.19rem;
    transition: 0.3s;
}

.box1_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0.48rem;
    margin-right: 0.45rem;
}

.box1_p2 {
    font-family: Impact, Impact;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    transition: 0.3s;
}

.box1_p3 {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 0.18rem;
    color: #757575;
    transition: 0.3s;
}

.box1_icon {
    width: 0.48rem;
    height: 0.48rem;
    transition: 0.3s;
}

.back {
    display: none;
}

.box1_box:hover {
    background: #BD261D;
}

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

.box1_box:hover p,
.box1_box:hover span {
    color: #FFFFFF;
}

.box1_box:hover hr {
    opacity: 0.25;
}

.box1_box:hover .box1_icon {
    animation: icon 0.5s forwards;
}

.box1_box:hover .face {
    display: none;
}

.box1_box:hover .back {
    display: block;
}

@keyframes icon {
    to {
        transform: rotateX(180deg);
    }
}
.page{
    margin-top: 0.75rem !important;
}






@media only screen and (max-width: 768px) {
.box1 .main{
        justify-content: space-between;
    }
    .box1_box{
        width: 47.5%;
    }
    .box1_imgBox img{
        object-fit: contain;
    }
    .box1_imgBox{
            width: 3.4rem;
            margin: 0 auto;
    }
}