  .zzyry {
    margin: 0;
    padding: 0;
    display: flex;
flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

       .top-text {
    width: 1200px;
    margin: 0px auto 40px;
    text-align: left;
    line-height: 32px;
}

.timeline-wrapper {
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    /* 为了给下移的横线留出足够空间，增加底部内边距 */
    padding-bottom: 130px;
}

.timeline {
    display: flex;
    gap: 20px;
    padding: 20px;
    position: relative;
    width: max-content;
    animation: moveLeft linear infinite;
    animation-play-state: paused;
}

.timeline-line {
    position: absolute;
    height: 2px;
    background-color: #064377;
    /* 将横线向下移动 50px，原 bottom 值为 20px，现调整为 70px */
    bottom: -32px;
    left: 20px;
    right: 20px;
    z-index: 1;
}

.event {
    min-width: 200px;
    background-color: #F6F6F6;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
	            display: flex;
            flex-direction: column;
}

.event::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 50px;
    background-color: #CCCCCC;
    /* 调整竖线的底部位置，使其能连接到下移后的横线 */
    bottom: -50px;
    left: 50%;
    transform: translate(-50%, 0)
    z-index: 2;
}

.zzyry_data {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
	text-align: center;
    align-self: stretch;
}

.description {
    font-size: 14px;
    color: #666;
	 text-align: center;
      display: flex;
	justify-content: center;
     align-items: center;
	             flex: 1;
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * (var(--original-width))));
    }
}
       .additional-text {
    width: 1200px;
    margin: -60px auto;
    text-align: left;
    line-height: 1.6;/* CSS Document */

