p {
font-family: 'Yu Mincho', '游明朝', YuMincho, 'Hiragino Mincho ProN', serif;
}
.top-bg {
    position: relative;
    min-height: 600px;
    padding-top: 140px;
    overflow: hidden;
}
.top-bg:before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../imgs/pattern01.png);
}
.news_list {
    margin: 0 5%;
}
.news_list_item {
    padding: 25px 0;
    border-bottom: 1px solid #E6E6E6;
}
.news_list_item:first-child {
    border-top: 1px solid #E6E6E6;
}
.news_list_item a {
    position: relative;
    display: flex;
    padding-right: 30px;
	font-size: 13px;
	color: #000;
}
.news_list_date {
    font-size: 13px;
    display: flex;
    margin-right: 15px;
    align-items: center;
	color: #000;
}
.news_item {
    background: rgba(12, 22, 39, 0.7);
    border-radius: 2px;
    width: 6em;
    color: #fff;
    text-align: center;
    margin-left: 20px;
    line-height: 1;
    padding: 8px 0;
    font-size: 13px;
}
.arrow {
    width: 25px;
    height: 1px;
    background: #707070;
    position: absolute;
    top: 50%;
    right: 0;
}
.arrow::after {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background: #707070;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    bottom: 2px;
}
@media screen and (max-width: 1024px) {
    .news_list_item a {
        display: block;
    }
}
@media screen and (max-width: 769px) {
    .news_list_item a {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .arrow {
        display: none;
    }
    .news_list_item a {
        padding-right: 0;
    }
    .news_list_item {
        padding: 18px 0;
    }
    .news_item {
        padding: 5px 0;
    }
}
@media screen and (max-width: 767px) {
    .top-bg {
        min-height: 0px;
    }
}