@charset "utf-8";
.inside_banner {
    width: 100%;
    max-width: 1920px;
    min-width: 1200px;
    height: 360px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.inside_banner img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1920px;
    height: 360px;
    margin-left: -960px;
}

.news .newsList .item {
    border-bottom: 1px solid #d9d9d9;
    padding: 40px 0;
}

.news .newsList .item:last-child {
    border-bottom: none;
}

.news .newsList .item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 187px;
}

.news .newsList .item a .pic {
    width: 311px;
    height: 100%;
    overflow: hidden;
}

.news .newsList .item a .pic img {
    width: 100%;
    min-height: 100%;
}

.news .newsList .item a .text {
    height: 100%;
    flex: 1;
    margin-left: 40px;
    overflow: hidden;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news .newsList .item a .text .title {
    font-size: 22px;
}

.news .newsList .item a .text .desc {
    line-height: 24px;
    color: #666;
}

.news .newsList .item a .text .date {
    font-size: 20px;
    color: #999;
}

.news .newsList .item a .text .enter {
    width: 36px;
    height: 28px;
    border-radius: 2px;
    background: #003478 url(../img/icon_news_enter.png) no-repeat center center;
}

.news .newsList .item a:hover .text .title {
    color: #003478;
}

.news .newsList .item a .pic:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
}

#news_pages {
    text-align: center;
}

.newsInfo .titleBar {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
}

.newsInfo .titleBar h4 {
    font-size: 20px;
}

.newsInfo .titleBar .date {
    color: #999;
}

.newsInfo .main {
    padding-top: 20px;
    line-height: 2;
}

.newsInfo .main img {
    display: block;
    max-width: 100%;
    margin: 20px auto;
}