main {
    padding: 0;
    position: relative;
}
.newsItem {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content :space-between;
    flex-flow:wrap;
}
.newsItem div{
    width: 50%;
    box-sizing:border-box;
    height: 400px;
}
.newsItem .img_part {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.newsItem .text_part {
    padding: 20px;
}
.newsItem .text_part h2 {
    text-align: center;
    color: #444;
    text-transform: uppercase;
    height: 100px;
    overflow: hidden;
    padding: 0 10px;
    line-height: 38px;
}
.newsItem .text_part p {
    text-align: center;
    color: #555;
    height: 150px;
    overflow: hidden;
    padding: 0 10px;
    line-height: 26px;
}
.newsItem .text_part a {
    width: 160px;
    text-align: center;
    color: #7D0000;
    text-decoration: none;
    display: block;
    margin: auto;
    text-transform: uppercase;
}

.newsInfo_item {
    max-width: 800px;
    margin: auto;
    padding: 20px 0;
}
.news_cover {
    width: 500px;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: auto;
    margin-top: 30px;
}
.newsInfo_item h2 {
    text-align: center;
    color: #444;
    text-transform: uppercase;
    margin: 30px 0;
}
.newsInfo_item .date_p {
    color: #777;
    font-size: 14px;
    text-align: center;
}
.newsInfo_text {
    width: 100%;
    line-height: 30px;
    color: #555;
    text-align: justify;
    margin-top: 30px;
    padding-bottom: 15px;
}
.backToNews {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 15px;
}
.backToNews a{
    font-size: 14px;
    color: #555;
    transition: 0.5s;
    text-decoration: none;
}
.backToNews a:hover {
    color: #444;
    transition: 0.5s;
}
.newsInfoVideo {
    width: 500px;
    display: block;
    margin: auto;
}
.pagingBox {
    width: 100%;
    display: flex;
    justify-content: center;
    /*background-color: rgba(0,0,0,0.5);*/
    margin-top: 10px;
    padding: 6px 20px;
    box-sizing: border-box;
}
.pagingBox a {
    text-decoration: none;
    color: #fff;
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 3px;
    margin-left: 5px;
    padding: 0 5px;
}

#activePage {
    color: #444;
    border: 1px solid #444;
    font-weight :bold;
}
.zoomBox {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    position: relative;
    display: none;
    cursor: pointer;
}
.zoomBox img {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



