#mid {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    border-top: 20px solid #600d01;
    border-bottom: 20px solid #600d01;
    background-color: #fff;
}

#mid p {
    line-height: 30px;
    text-indent: 32px;
}

.more {
    text-align: right;
}

.more a {
    color: #600d01;
}

#picture {
    border-top: 20px solid #fff;
    border-bottom: 20px solid #fff;
    width: 100%;
    height: 118px;
    overflow: hidden;
    background-color: #fff;
}

#picture ul {
    width: 200%;
    animation: move 10s infinite linear;
}

#picture ul li {
    float: left;
}

#picture ul li img {
    width: 200px;
    margin-right: 30px;
}

@keyframes move {
    to {
        transform: translateX(-800px);
    }
}