.information-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
}

.information-box {
    width: 1190px;
    margin: 100px auto 120px;
}

.information-box aside {
    width: 190px;
    margin-right: 100px;
}

.information-content {
    width: 900px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.item {
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 900px;
    height: 156px;
}
.item:nth-child(-n+9) {
    margin-bottom: 50px;
}

.text {
    display: inline-block;
    pointer-events: none;
}

.title {
    width: 604px;
    height: 27px;
    font-family: SourceHanSansCN-Bold;
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    letter-spacing: 0em;
    color: #333333;
    margin-bottom: 10px;
}
.title-1 {
    width: 604px;
    height: 54px;
    font-family: SourceHanSansCN-Bold;
    font-size: 18px;
    font-weight: bold;
    line-height: 27px;
    letter-spacing: 0em;
    color: #333333;
    margin-bottom: 10px;
}

.content {
    width: 604px;
    height: 96px;
    font-family: SourceHanSansCN-Regular;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 0em;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-align: justify;
}

img {
    pointer-events: none;
    width: 246px;
    height: 156px;
    float: right;
}












.fadeInup {
    animation: moveUp 1.5s;
    -webkit-animation: moveUp 1.5s;
}

@keyframes moveUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10%);
                transform: translateY(10%);
    }

    100% {
        opacity: 100%;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10%);
                transform: translateY(10%);
    }

    100% {
        opacity: 100%;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}


/* 返回顶部样式 */

.fadeInright {
    animation: moveRight 1.5s;
    -webkit-animation: moveRight 1.5s;
}

@keyframes moveRight {
    0% {
        -webkit-transform: translateX(200%);
                transform: translateX(200%);
    }

    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@-webkit-keyframes moveRight {
    0% {
        -webkit-transform: translateX(200%);
                transform: translateX(200%);
    }

    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

.fadeOutright {
    animation: moveOutright 1.5s;
    -webkit-animation: moveOutright 1.5s;
}

@-webkit-keyframes moveOutright {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(200%);
                transform: translateX(200%);
    }
}

@keyframes moveOutright {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(200%);
                transform: translateX(200%);
    }
}

.returnTop {
    display: none;
    position: fixed;
    right: 8%;
    bottom: 35%;
    background: url(../images/backtop.png) no-repeat left top;
    width: 60px;
    height: 60px;
}

.returnTop:hover {
    cursor: pointer;
    background: url(../images/backtop-hover.png) no-repeat left top;
}