.home{
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(../images/index/home-back.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(1, 1, 1,.72);
}

.home_l{
    width: 5.6rem;
    position: absolute;
    left: 2.2rem;
    top: 5rem;
    z-index: 100;
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    line-height: 0.38rem;
    animation: identifier2 1s linear forwards;
}

.home_r{
    width: 7.44rem;
    height: 6.82rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    position: absolute;
    right: 2.2rem;
    top: 1.98rem;
    z-index: 100;
    animation: identifier 1s 1s  linear forwards;
    opacity: 0;
}

.home_item{
    width: 3.6rem;
    height: 3.3rem;
    box-sizing: border-box;
    border: 0.01rem solid rgba(255, 255, 255,.3);
    padding: .3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home_item_tit{
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 0.2rem;
    color: #FFFFFF;
}

.home_item_more{
    font-family: MiSans, MiSans;
    font-weight: 500;
    font-size: 0.18rem;
    color: #DA0C1A;
}

@keyframes identifier {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes identifier2 {
    0%{
        top: 5rem;
        opacity: 0;
    }
    100%{
        top: 3.7rem;
        opacity: 1;
    }
}

@media screen and (max-width:1024px){
    .home_l{
        width: 100%;
        padding: 0 0.2rem 0 0.2rem;
        left: 0;
        top: 15%!important;
        box-sizing:border-box;
        font-size: 16px;
        line-height: 1.5;
    }
    .home_r{
        width: 100%;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        box-sizing: border-box;
        top: 37%;
        right: 0;
    }
    .home_item {
        width: 175px;
    }
    .home_item_tit{
        font-size: 16px;
    }
    .home_item_more{
        font-size: 14px;
    }
}