.information-box,
.information-content,
.information-content div:nth-of-type(2) {
    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;
}

.information-content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #333333;
    text-indent: 32px;
    margin-bottom: 30px;
    text-align: justify;
    font-family: 'Noto Sans SC';
}

.information-content div:nth-of-type(2) {
    margin-top: 20px;
}

.information-content div:nth-of-type(2) img:nth-of-type(1) {
    margin-right: 10px;
}

.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;
}