.qing-tl {
    --tl-color: #2a6fdb;
    --tl-line: #c9dcf7;
    position: relative;
    padding: 20px 0;
}

/* 中间竖线 */
.qing-tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--tl-line);
    transform: translateX(-50%);
}

.qing-tl-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 每条条目 */
.qing-tl-item {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* 节点圆点 */
.qing-tl-dot {
    position: absolute;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--tl-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--tl-color);
    z-index: 1;
    flex-shrink: 0;
}

/* 内容区：左右各占 45%，中间 10% 留给节点 */
.qing-tl-content {
    width: 45%;
    position: relative;
}

/* 右侧条目：从点到内容的横向连接线 */
.qing-tl-right .qing-tl-content::before {
    content: '';
    position: absolute;
    left: -11.11%;   /* 间隙 5% 容器宽 ÷ 内容 45% ≈ 11.11% */
    top: 20px;
    width: 11.11%;
    height: 2px;
    background: var(--tl-line);
}

/* 左侧条目：从内容到点的横向连接线 */
.qing-tl-left .qing-tl-content::before {
    content: '';
    position: absolute;
    right: -11.11%;
    top: 20px;
    width: 11.11%;
    height: 2px;
    background: var(--tl-line);
}

/* 右侧条目：内容在右边 */
.qing-tl-right .qing-tl-content {
    margin-left: 55%;
}

/* 左侧条目：内容在左边，右对齐 */
.qing-tl-left .qing-tl-content {
    margin-right: 55%;
    text-align: right;
}

/* 年份块 */
.qing-tl-year {
    background: var(--tl-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 18px;
    display: block;
    line-height: 1.3;
}

/* 描述块 */
.qing-tl-desc {
    background: #f3f7fd;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 14px 18px;
}

/* ── 响应式 ────────────────────────────────── */
@media (max-width: 768px) {
    .qing-tl-line { left: 18px; }

    .qing-tl-item {
        flex-direction: column;
        padding-left: 44px;
    }

    .qing-tl-dot {
        left: 18px;
        top: 12px;
    }

    .qing-tl-right .qing-tl-content,
    .qing-tl-left  .qing-tl-content {
        width: 100%;
        margin: 0;
        text-align: left;
    }
}
