.common-banner {
    background: url('../img/news-detail/banner.png') no-repeat center;
    background-size: cover;
    background-position: center center;
}
.tabs{
    height: 9rem;
    display: flex;
    max-width: 140rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-bottom:  1px solid rgba(151, 151, 151, 0.32);
    > div {
        flex: 1;
        color: #202020;
        font-size: 1.8rem;
        line-height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        &.active {
            color: #32D088;
        }
    }
    .tabs-line {
        position: absolute;
        bottom: -1px;
        height: 1px;
        width: 25%;
        left: 0;
        display: block;
        background: #32D088;
        transition: all 0.5s;
      
    }
}
.title-h1{
    margin-top: 4.5rem;
}
.common-line{
    margin-top: 4.4rem;
}

.detail {
    max-width: 140rem;
    width: 100%;
    margin: 0 auto 10rem;
    .title {
        line-height: 3.3rem;
        color: #202020;
        font-size: 2.4rem;
        font-weight: 500;
        margin-top: 5.6rem;
        text-align: center;
    }
    .desc {
        width: 100%;
        max-width: 139.4rem;
        margin: 4rem auto;
        height: 9rem;
        background: #F7F7F7;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 26.2rem;
        
    }
    &-c {
        margin-top: 3.2rem;
        font-size: 2rem;
        color: #757575;
        line-height: 3rem;
        
        > div {
            margin-bottom: 4rem;
        }
    }
}

@media screen and (max-width: 916px){
    .content {
       .detail-c{
        padding: 0 2rem;
       }
       .desc {
            padding: 0 10rem;    
       }
    }

}
@media screen and (max-width: 580px){
    .content {
        
        .tabs{
            text-align: center;
        }
        .desc {
            padding: 0 2rem;    
            text-align: center;
       }
    }

}