@charset "utf-8";

/* latest notice  */
.notice_latest .title_flex {
    display: flex;
    margin-bottom: 30px;
}

.notice_latest .title_flex h1 {
    font-family: 'Poppins', 'NotoSans', sans-serif;
    font-size: 25px;
    font-weight: 800;
}

.notice_latest .title_flex a {
    margin-left: auto;
}

.notice_latest .title_flex a p {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}

.notice_latest .title_flex a p i {
    color: #fff;
    transition: .4s;
}

.notice_latest .title_flex a:hover {
    text-decoration: none;
}

.notice_latest .title_flex a:hover p i {
    transform: rotate(90deg);
    color: #fff;

}
.notice_latest ul li a::before {
    content: "·  ";
    font-weight:400;
    color: rgb(119, 119, 119);
    padding-right: 8px;
}
.notice_latest ul li a {
    border-bottom: 1px rgb(235, 235, 235) solid;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #000;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.notice_latest ul li {}

.notice_latest ul li a:hover {
    text-decoration: none;
    background: #f2f2f2;
    padding-left: 4px;
}

@media(max-width:992px){  
    .notice_latest {
        border-top: 1px #e7e7e7 solid;
        padding-top: 25px;
    }
    .notice_latest .title_flex {
        display: flex;
        margin-bottom: 14px;
    }
    
    .notice_latest .title_flex h1 {
        font-family: 'Poppins', 'NotoSans', sans-serif;
        font-size: 14px;
        font-weight: 800;
    }
    .notice_latest .title_flex a p {
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
    }
    .notice_latest ul li a {
        font-size:13px;
        font-weight:400;
    }
}
/* latest notice end */