.kv-bg{
    width: 100%
}
.kv-bg img{
    width: 100%
}
.c-content{
    width: 100%;
    position: relative;
}
.c-content .bg{
    width: 100%;
}
.c-content .detail{
    position: absolute;
    width: 100%;
    padding: 0 1.4rem;
    display: flex;
    align-items: flex-start;
    top: 2rem;
    left: 0;
    justify-content: space-between
}
.c-content .detail .left{
    font-size: .3rem;
    color: #fff;
    position: relative
}
.c-content .detail .left::after{
    position: absolute;
    display: block;
    content: '';
    bottom: -.9rem;
    left: 0;
    width: 1.25rem;
    height: 1px;
    background: #fff
}
.c-content .detail .right{
    font-size: .18rem;
    color: #fff;
    width: 50%;
    line-height: 2
}
@media (max-width: 768px) {
    .c-content .detail{
        flex-direction: column;
        padding: 0 .8rem;
    }
    .c-content .detail .left::after{
        display: none
    }
    .c-content .detail .right{
        width: 100%;
        margin-top: .5rem;
    }
    .c-content .detail .left{
        font-size: .27rem;
        line-height: 1.8
    }
    .c-content .detail .right{
        font-size: .24rem;
        margin-top: 1rem;
    }
    .c-content{
        position: absolute;
        top: 4rem;
    }
}