
/* 搜索框 */
.information_search {
    position: relative;
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.information_search input {
    height: 66px;
    width: 60%;
    background-color: #efefef;
    padding-left: 10px;
    padding-right: 66px;
    border: 0;
    color: #999999;
}
.information_search_dw {
    position: absolute;
    top: 0;
    right: 20%;
    height: 66px;
    width: 66px;
    text-align: center;
    line-height: 66px;
}
.information_search_dw>a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.information_search_dw a i {
    color: #222;
    font-size: 30px;
}
/* 媒体查询 */
@media screen and (max-width: 992px) {
    .information_search {
        margin-top: 60px;
    }
}
/* 资讯列表 */
.news_box>h3 {
    text-align: center;
    height: 70px;
/*    margin: 0;*/
    border-bottom: 2px solid #222;
}
.news_box_list>ul>li {
    border-bottom: 1px solid #cccccc;
}
.news_box_list>ul>li:hover .news_list_p>p {
    color: #e02b20;
}
.news_box_list>ul>li:hover .news_list_i>i {
    transform: scale(1.4);
    color: #e02b20;
}
.news_box_list>ul>li>a {
    padding: 13px 20px;
    display: flex;
}
.news_box_list>ul>li>a>div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.news_box_list .news_list_date {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.news_box_list .news_list_date .news_date_nian {
   font-size: 38px;
    /* font-weight: 700; */
    color: #175ba6;
    height: 45px;
    line-height: 1;
}
.news_box_list .news_list_date .news_date_yue {
    margin-top: -8px;
    font-size: 12px;
    color: #222;
}
.news_box_list .news_list_i {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.news_box_list .news_list_i>i {
    font-size: 24px;
    color: #222;
    transition: all .4s;
}
.news_box_list .news_list_p {
    flex: 7;
    overflow: hidden;
}
.news_box_list .news_list_p>p {
    width: 100%;
    text-align: left;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    color: #222;
	transition: all .3s;
}
.news_box_list li:hover p{ transform: translateX(5px)}
/* 分页 */
.information_pag {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.information_pag>a {
    width: 46px;
    height: 46px;
    border: 1px solid #dbdbdb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}
.information_pag>a>i::before {
    color: #222;
    font-size: 20px;
}
.information_pag_shu {
    display: flex;
}
.information_pag_shu>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin: 0 16px;
    color: #999;
}
.information_pag_shu>a:hover {
    color: #e02b20;
}
@media screen and (max-width: 992px) {
    .information_pag {
        margin-top: 60px;
    }
}
@media screen and (max-width: 768px) {
    .information_pag_shu>a {
        display: none;
    }
    .information_pag_shu>a:nth-child(-n+3) {
        display: block;
        display: flex;
    }
    .information_pag_shu>a {
        margin: 0 8px;
    }
	.news_box_list .news_list_i { display: none}
	.news_box_list .news_list_date { flex: 2.5;}
	.news_box_list .news_list_date .news_date_nian { font-size: 32px; height: 38px;}
	.news_box_list .news_list_date .news_date_yue { font-size: 12px;}
	.news_box_list .news_list_p>p { font-size: 14px;}
	.information_search { display: none;}
}