.banner {
    background-image: url(../images/4.1/banner.png);
}

.content{
    width: 100%;
    background: #1A1A1A;
}

.content_box{
    width: 14.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1.18rem 0 .68rem;
}
.content_item{
    width: 7.2rem;
    height: 4.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
    border: 0.01rem solid #FFFFFF;
    padding: .48rem;
    padding-top: .8rem;
    box-sizing: border-box;
    margin-bottom: .5rem;
}

.content_item_up{
    display: flex;
    justify-content: space-between;
    padding-bottom: .3rem;
    border-bottom: .02rem solid #DA0C1A;
    margin-bottom: .4rem;
    align-items: flex-end;
}

.name{
    font-family: MiSans, MiSans;
    font-weight: 500;
    font-size: 0.36rem;
    color: #FFFFFF;
}

.identity{
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 0.2rem;
    color: #FFFFFF;
    line-height: 0.31rem;
}

.content_item_down{
    font-family: MiSans, MiSans;
    font-weight: 400;
    font-size: 0.16rem;
    color: #DCDCDC;
    line-height: 0.3rem;
}

@media screen and (max-width:1024px){
    .content_box{
        width: 100%;
        padding: 150px 7px 0px 7px;
        box-sizing: border-box;
        flex-direction: column;
    }
    .identity{
        font-size: 14px;
    }
    .content_item_down{
        font-size: 14px;
        line-height: 1.5;
    }
    .content_item{
        height: auto;
    }
}