.index_six{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.text_six {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
}

.six_box {
    width: 16.9rem;
    height: 100%;
    display: flex;
    margin: 0 1.1rem 0 1.2rem;
    padding: 2.1rem 0 1.2rem;
    box-sizing: border-box;
    justify-content: space-between;
    background: url(../imgs/index/section-six-line.png) no-repeat;
    background-size: auto 100%;
    background-position: right;
    position: absolute;
}

.six_box_active {
    top: 100%;
    animation: identifier 2s 1.5s forwards;
}

@keyframes identifier {
    0% {
        top: 200%;
    }

    100% {
        top: 0%;
    }
}

.six_box_left {
    max-width: 6rem;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    justify-content: flex-end;
}
.six_txt_box{
    /*margin-top: 3.4rem;*/
}

.six_title {
    font-size: 0.32rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    display: none;
}

.six_txt_item {
    display: none;
}

.six_txt_item:nth-child(1) {
    display: block;
}

.six_tit {
    font-size: 0.26rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    padding-bottom: .2rem;
    margin-bottom: .2rem;
    position: relative;
}

.six_tit::after {
    content: '';
    position: absolute;
    width: 0.8rem;
    height: 0.04rem;
    background: #FFFFFF;
    border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
    left: 0;
    bottom: 0;
}

.six_txt {
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    max-height: 50vh;
    overflow-y: scroll;
}

.six_box_right {
    display: flex;
    flex-direction: column;
    margin-right: .38rem;
}

.six_box_right_item {
    width: 2.2rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, .3);
    border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
    display: flex;
    padding: .1rem;
    box-sizing: border-box;
    align-items: center;
    margin-bottom: .35rem;
    position: relative;
    cursor: pointer;
}

.six_active {
    background: #fff
}

.six_box_right_item::after {
    content: '';
    width: .2rem;
    height: .2rem;
    position: absolute;
    border: .03rem solid #fff;
    border-radius: 50%;
    background: #E50113;
    right: -.5rem;
}

.six_img_box img {
    width: .6rem;
    height: .6rem;
    margin-right: .2rem;
}

.six_img_box img:last-child {
    display: none;
}

.six_active .six_img_box img:first-child {
    display: none;
}

.six_active .six_img_box img:last-child {
    display: block;
}

.six_box_right_text {
    font-size: 0.24rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}

.six_active .six_box_right_text {
    color: #CF000C;
}
.six_item_more{
    display: block;
    line-height: 0.51rem;
    text-indent: 0.38rem;
    width: 1.8rem;
    height: 0.51rem;
    background: #CF000C;
    border-radius: 0.26rem 0.26rem 0.26rem 0.26rem;
    position: relative;
    margin-top: .3rem;
}
.six_item_more span {
    display: block;
    width: 0.35rem;
    height: 0.35rem;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: 0.11rem;
    top: 0.08rem;
    padding: 0.12rem 0.07rem;
    box-sizing: border-box;
}
.six_item_more span img {
    position: absolute;
    left: 0.07rem;
    top: 0.12rem;
    width: 0.2rem;
    height: 0.1rem;
}

@media only screen and (max-width:1024px){
    .six_box{
        width: 95%;
        margin: 0;
        padding-left: 15px;
        padding-bottom: 15px;
    }
    .six_tit{
        font-size: 16px;
    }
    .six_txt p,
    .six_txt p span,
    .six_item_more{
        font-size: 12px!important;
    }
    .six_box_right{
        justify-content: center;
    }
}