.page-boxs {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 25px;
}

.box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px 10px 0px;
    border-bottom: 1px solid #F0F0F0;
}

.box-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    position: relative;
    padding: 18px 15px 15px 15px;
}

.box-title::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 4px;
    height: 30px;
    border-radius: 0 10px 10px 0;
    background-color: #CC0303;
}

.box-content {
    padding: 10px 15px 15px 15px;
}

.title-board-tabs {
    display: flex;
    align-items: center;
    background-color: #000;
    border-radius: 24px;
    overflow: hidden;
    padding: 5px 8px;
}

.title-tab {
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.title-tab.active {
    background-color: #CC0303;
    color: #fff;
}

.nor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nor-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    position: relative;
}

.nor-title::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 44%;
    transform: translateY(-50%);
    width: 4px;
    height: 28px;
    background: #CC0303;
    border-radius: 2px;
}

.nor-bg-white-box{
    border-radius: 5px;
    background: #FFFFFF;
    padding: 5px;
}

@media screen and (max-width: 698px) {
    .box-title{
        font-size: 20px;
    }

    .title-tab{
        padding: 6px 12px;
    }

    .title-board-tabs{
        border-radius: 21px;
    }

    .box-title::before{
        top: 15px;
    }

    .main-container{

        padding: 20px 12px;
        gap: 15px;

    }
    .nor-header{
        margin-bottom: 15px;
    }

}


@media screen and (max-width: 528px) {
    .box-title{
        font-size: 16px;
    }

    .title-tab{
        padding: 6px 6px;
    }

    .title-board-tabs{
        border-radius: 21px;
    }

    .title-tab{
        font-size: 12px;
    }
    
    .nor-bg-white-box{
        padding: 10px 0; 
    }
    
    .nor-title{
        font-size: 18px;
    }
    
    .nor-title::before{
        top: 45%;
    }


}