.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.plan-box {
    margin: 100px auto;
    margin-bottom: 120px;
    width: 1190px;
}

.plan-box .left {
    float: left;
    width: 190px;
    /* height: 1337px; */
}
.info_menu {
    height: 1170px !important;
}
#page .plan-box .left .info_menu .sidenav {
    /* height: 1739px; */
    height: 1170px;
}

.plan-box .right {
    float: left;
    width: 890px;
    margin-left: 110px;
}


/*--------------主要格式-------------- */

.title {
    display: block;
    width: 220px;
    height: 44px;
    background: #005DA2;
    margin: 20px auto 0;
    border: none;
    font-size: 16px;
    font-family: Noto Sans SC;
    color: #FFFFFF;
    line-height: 44px;
    text-align: center;
}

.center_news {
    width: 890px;
    /* height: 2300px; */
    margin-top: 50px;
}

.news {
    height: 113px;
}

.news-withimg {
    display: inline-block;
    width: calc(100% - 210px);
    height: 113px;
}

.img {
    float: right;
}


/*------------动效-------------*/


/* 蓝框 */

.block-border {
    height: 107px;
}

.block:hover .block-border {
    border-left: 2px solid #005da2;
}


/* 右移 */

.block-move {
    display: block;
}

.block:hover .block-move,
.block:hover .img {
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transform: translateX(42px);
        -ms-transform: translateX(42px);
            transform: translateX(42px);
    cursor: pointer;
}


/* 标题变色 */

.block:hover .news-title {
    -webkit-transition-property: color;
    transition-property: color;
    color: #005da2;
    font-weight: bold;
}


/*------news-title------ */

.news-title {
    font-size: 18px;
    font-family: Noto Sans SC;
    ;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


/*----content---- */

.news-content {
    width: 100.2%;
    font-size: 16px;
    font-family: Noto Sans SC;
    ;
    font-weight: 300;
    color: #666666;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-author {
    float: right;
    font-size: 14px;
    font-family: Noto Sans SC;
    ;
    font-weight: 300;
    color: #666666;
    line-height: 24px;
}

.fadeInUp {
    animation-name: newsMove;
    animation-duration: 1s;
    -webkit-animation-name: newsMove;
    -webkit-animation-duration: 1s;
}

@keyframes newsMove {
    from {
        opacity: 0;
        -webkit-transform: translateY(10%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-webkit-keyframes newsMove {
    from {
        opacity: 0;
        -webkit-transform: translateY(10%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}