.main-header {
    width: 100%;
    height: 70px;
    display: flex;
    flex-wrap: nowrap;
    background-color: #F2F6FC;
}

.header-log {
    font-size: 40px;
    width: 40%;
    padding-top: 10px;
    color: #030224;
    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;
    margin-top: 20px;
}

.main-body {
    width: 100%;
    height: 1250px;
}

.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%; /* 设置图片宽度 */
}

.h3dimg {
    position: absolute;
    width: 33.3%;
    left: 33.35%;
    top: 110%;
    height: 200px;
    animation: drawdiv1-2e07b268 1.5s none;
}

.text {
    position: absolute;
    top: 130%; /* 位置调整至容器的垂直中间 */
    left: 72%; /* 位置调整至容器的水平中间 */
    transform: translate(-50%, -50%); /* 使文本居中 */
    color: red; /* 文字颜色 */
    font-size: 25px; /* 文字大小 */
}