.home_content{
    padding-top: 12px;
    padding-bottom: 50px;
    background-color: #fff;
}

.banner{
    position: relative;
    overflow: hidden;
   .banner_item{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.3);
        z-index: -1;
    }
  .banner_content{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: end;
    justify-content: center;
    padding-bottom: 70px;
    h2{
        font-size: 30px;
        font-weight: 500;
        color: $white;
        line-height: 44px;
        background-color: rgba(0,0,0,0.4);
        display: inline-block;
        padding: 5px 12px;
    }
  }
   }
    .swiper-pagination {
        position: absolute;
        text-align: center;
        transition: .3s opacity;
        transform: translate3d(0,0,0);
        z-index: 10;
    }
    .swiper-pagination-bullet {
        width: 18px;
        height: 8px;
        display: inline-block;
        border-radius: 10px;
        background: $white; 
    }
    .swiper-pagination-bullet-active{
        height: 8px;
        width: 40px;
    }

    .swiper-button-prev{
        height: 50px;
        width: 50px;
        background-color: #f3f3f392;
        border-radius: 50%;
        &::after{
            font-size: 24px;
            color: $white;
        }
    } 
    .swiper-button-next{
        height: 50px;
        width: 50px;
        background-color: #f3f3f392;
        border-radius: 50%;
        &::after{
            font-size: 24px;
            color: $white;
        }
    }
}


.notice_board{
    height: 480px;
    width: 100%;
    background-color: #f3f3f3;
    .board_heading{
        padding: 12px 10px;
        background-color: #79829472;
        font-size: 22px;
        font-weight: 500;
        text-align: center;
        color: #000;
        i{
            color: #df4406;
            font-size: 24px;
        }
    }
    .notice_wrapper{
        padding: 20px;
        .notice_wrap{
            width: 100%;
            background-color: #fff;
            border: 1px solid #79829472;
            .notice_item{
                padding: 10px;
                border-bottom: 1px solid #7982945b;
                &:hover{
                    background-color: #f3f3f3;
                    cursor: pointer;
                }
                &:last-child{
                    border-bottom: 1px solid transparent;
                }
                h4{
                    font-size: 16px;
                    font-weight: 500;
                    color: #444444;
                    line-height: 24px;
                    @include text-ellips-2;
                    &:hover{
                        color: #df4406;
                    }
                }
                .pub_date{
                    font-size: 14px;
                    text-align: end;
                    padding-top: 10px;
                    color: $primaryColor;
                }
            }
        }
    }
}

.section_2{
    padding: 40px 0 40px 0;
}