
#banner-page{
    background: url(/images/bg_page.png) #000 center no-repeat;
    background-size: cover;
    height: 190px;
    text-align: center;
    display: grid;
    align-items: center;
    margin-bottom: 40px;
}
#banner-page h1{
    color: white;

}
#banner-page h1 span{
    position: relative;
    font-weight: 700;
}
#banner-page h1 span::before{
    content: '';
    height: 6px;
    width: 100%;
    position: absolute;
    background: #02E0B8;
    bottom: -12px;
}


main#main {
    transition: all .3s;
    background: #07071C;
    color: white;
}
.box-detail{
    padding-bottom: 100px;
    min-height: 800px;
}


.item-new{
    margin-bottom: 60px;
}
.item-new .box-image{
    width: 100%;
    display: block;
    height: 200px;
    text-align: center;
}
.item-new .box-image img{
    height: 100%;
}
.item-new .box-content{
    padding-top: 32px;
}
.item-new .box-content .date-new{
    margin-bottom: 12px;
    font-size: 14px;
    color: #007AFF;
    font-weight: 700;
    text-transform: uppercase;
}
.item-new .box-content .title h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: WHITE;
}
.item-new .box-content .content-detail{
    color: white;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}