@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: 20px;
    font-weight: 600;
    color: #fff;
    background: #07115b;
    padding: 16px 38px;
    letter-spacing: 1px;
}

.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;
    margin-top: 16px;
}

.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, .1) solid;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #07115b;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-shadow: -1px 0px #fff, 0px 1px #fff, 1px 0px #fff, 0px -1px #fff;
    text-align: left;
}

.notice_latest ul li {}

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

@media(max-width:991px){  
    .notice_latest {
        border-top: 0;
        padding-top: 0;
    }
    .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;
        padding: 0;
    }
    .notice_latest .title_flex a p {
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        margin-top: 0;
    }
    .notice_latest ul li a {
        font-size:13px;
        font-weight:400;
    }

}
/* latest notice end */