.main-header {
    width: 100%;
    height: 70px;
    display: flex;
    flex-wrap: nowrap;
    background-color: #F2F6FC;
}

.header-log {
    font-size: 40px;
    width: 40%;
    padding-top: 4px;
    color: #67C23A;
    text-align: center;
    font-family: "Arial Black";
}

.header-home {
    font-size: 15px;
    width: 60%;
    /*height: 100%;*/
    line-height: 100%;
    display: flex;
    flex-wrap: nowrap;
    font-size: 23px;
}

.main-body {
    width: 100%;
    height: 850px;
}

.main-footer {
    width: 100%;
    height: 80px;
    font-size: 15px;
    text-align: center;
    background-color: #F2F6FC;
    margin: auto;
    color: black;
    padding-top: 10px;
}

.marquee {
    width: 100%; /* 设置走马灯容器的宽度 */
    overflow: hidden;
    animation: marquee 5s linear infinite; /* 定义动画 */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-900px);
    }
}

.slide {
    display: inline-block;
    width: 100%; /* 设置图片宽度 */
}