@charset "utf-8";


#sec_title{
    margin-bottom: 96px;
    height: 120px;
}
#sec_title .title_image {
    position: absolute;
    height: 120px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    background-image: url(../images/notice/notice_title_bg.png);
}
#sec_title h1{
    background: transparent;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
}
#sec_title h1 span{
    font-size: 16px;
    line-height: 25.6px;
}

/* ---------------------------------------------------------------------------------------------------*/
.list_news{
    margin: 0 auto 80px;
    width: 90%;
    max-width: 980px;
    display: flex;
    flex-direction: column;
}
.list_news ul{
    margin-top: -24px;
}
.list_news ul li{
    padding: 24px 0;
    display: flex;
    align-items: flex-start;
    width: 100%;
    border-bottom: 1px solid #DDD;
}
.list_news ul li .date{
    width: 6.6em;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: #999;
    font-size: 15px;
}
.list_news ul li .label{
    margin: 1px 16px 0 0;
    width: 88px;
    flex-shrink: 0;
}
.list_news ul li .label span{
    display: block;
    height: 24px;
    line-height: 22px;
    font-size: 13px;
    text-align: center;
}
.list_news ul li .label span.alignment{
    color: #b50b0b;
    border: 1px solid #b50b0b;
}
.list_news ul li .label span.solar{
    color: #739c07;
    border: 1px solid #739c07;
}
.list_news ul li .label span.ev{
    color: #e5960d;
    border: 1px solid #e5960d;
}
.list_news ul li .label span.other{
    color: #8e3fca;
    border: 1px solid #8e3fca;
}
.list_news ul li p{
    line-height: 1.6em;
    word-break: break-all;
}
.list_news ul li a:hover,
.list_news ul li a:hover span,
.list_news ul li a.hover,
.list_news ul li a.hover span{
    color: #8bd140;
}
.list_news ul li a[target="_blank"]::after{
    content: " \f24d";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 400;
}
.list_news ul li a.pdf[target="_blank"]::after{
    content: none;
}
.list_news ul li a.pdf span.unit{
    font-size: 14px;
    transition: all 0.3s ease-out;;
}
.list_news ul li a.pdf span.unit::before{
    content: " \F1C1";
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
}
.linkbtn_more{
    margin-top: 16px;
    margin-right: auto;
    padding: 0 40px 0 56px;
    height: 38px;
    display: flex;
    text-decoration: none;
    align-items: center;
/*    font-weight: 700; */
    line-height: 38px;
    border-radius: 19px;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 99;
    overflow: hidden;
    background: #FFF;
}
.linkbtn_more:hover,
.linkbtn_more.hover{
    color: #FFF;
}
.linkbtn_more::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: #8bd140;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.2s ease-out;
}
.linkbtn_more:hover::before{
    transform-origin: left top;
    transform: scale(1, 1);
}
.linkbtn_more::after{
    margin-left: 16px;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 16px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(-135deg);
    transition: all 0.2s ease-out;
}
.linkbtn_more:hover::after,
.linkbtn_more.hover::after{
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
}

/* ---------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px){
    #sec_title{
        margin-bottom: 40px;
    }
    #sec_title h1{
        color: #333;
    }
    #sec_title .title_image {
        background-position: 16% center;
    }
    .list_news ul li{
        flex-wrap: wrap;
    }
    .list_news ul li p{
        margin-top: 16px;
        width: 100%;
    }
    .list_news ul li .label{
        margin: 1px 0 0;
    }
    .list_news ul li .label span{
        font-size: 12px;
        height: 22px;
        line-height: 21px;
    }
    .linkbtn_more{
        margin: 16px auto 0;
        border: 1px solid #CCC;
    }
    .linkbtn_more:hover,
    .linkbtn_more.hover{
        border-color: #8bd140;
    }
}