@charset "utf-8";

/* latest notice  */
.notice_latest ul li {
    display:flex;
    justify-content: center;
    align-items: center;
}
.notice_latest ul li p {
    width: 120px;
    text-align: right;
}
.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: 9px;
    padding-bottom: 9px;
    color: #373737;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size:20px;
}

.notice_latest ul li p {
    font-size:16px;
    font-family: 'Poppins', 'NotoSans', sans-serif;
    font-weight:400;
    color: #9b9b9b;
}

.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 ul li a {
        font-size:13px;
        font-weight:400;
    }
    .notice_latest ul li p {
        display:none;
    }

}
/* latest notice end */