    /* 简爱大事记部分样式 */
        #events-section {
            padding: 40px 0;
        }

        /* 年份导航容器 */
        .events-nav-wrapper {
            width: 1200px;
            height: 32px;
            margin: 0 auto 30px auto; /* 底部间距 */
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        /* 左右切换箭头 */
        .events-arrow {
            width: 32px;
            height: 32px;
            cursor: pointer;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            z-index: 2;
        }

        .events-arrow-left {
            background-image: url('https://simlove-sdk.oss-cn-shenzhen.aliyuncs.com/img/jianai-website/arrow-left-mini.png');
        }

        .events-arrow-right {
            background-image: url('https://simlove-sdk.oss-cn-shenzhen.aliyuncs.com/img/jianai-website/arrow-right-mini.png');
        }

        /* 年份标签滚动区域 */
        .events-tags-container {
            flex-grow: 1;
            height: 100%;
            overflow: hidden; /* 隐藏超出部分 */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .events-tags-track {
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
            white-space: nowrap;
        }

        .event-tag {
            font-size: 16px;
            color: #6C6D6D;
            text-align: center;
            margin: 0 54px;
            cursor: pointer;
            transition: all 0.3s;
            /* 确保每个tag占据固定宽度以便计算滚动位置，或者使用flex gap */
            /* 这里我们使用固定宽度的方式来实现“中间对齐”的效果会更稳定 */
            min-width: 60px; 
            box-sizing: border-box;
        }

        /* 选中状态 */
        .event-tag.active {
            color: #54C8E8;
            /* border-bottom: 2px solid #54C8E8; */
            font-weight: 500; /* 可选：加粗一点更明显 */
            position: relative;
        }
        .event-tag.active::after {
            content: "";
            position: absolute;
            bottom: 0px;
            left: 15px;
            width: 30px;
            height: 1px;
            background-color: #54C8E8;
        }

        /* 内容展示区域 */
        .events-content-wrapper {
            width: 1200px;
            height: 450px;
            margin: 0 auto;
            display: flex;
            background-color: #f8f7f5; /* 内容背景白，与外部灰底区分，或者透明 */
        }

        /* 左侧图片 */
        .events-left-img {
            width: 600px;
            height: 450px;
            overflow: hidden;
        }

        .events-left-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s;
        }

        /* 右侧文字 */
        .events-right-text {
            width: 600px;
            height: 450px;
            padding: 64px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            background: #;
        }

        .events-year-title {
            font-weight: 500;
            font-size: 24px;
            color: #54C8E8;
            line-height: 60px;
            border-bottom: 1px solid rgba(108, 109, 109, 0.4);
        }

        .events-desc {
           font-weight: 400;
            font-size: 16px;
            color: #6C6D6D;
            line-height: 26px;
            text-align: justified;
            font-style: normal;
            text-transform: none;
        }
        

               /* 简爱大事记 - 年份导航样式 */
        .events-nav-wrapper {
            width: 1200px;
            height: 32px;
            margin: 0 auto 30px auto;
            display: flex;
            align-items: center;
            position: relative;
        }

        .events-arrow {
            width: 32px;
            height: 32px;
            cursor: pointer;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            z-index: 10;
            flex-shrink: 0; /* 防止箭头被压缩 */
        }

        .events-arrow-left {
            background-image: url('https://simlove-sdk.oss-cn-shenzhen.aliyuncs.com/img/jianai-website/arrow-left-mini.png');
        }

        .events-arrow-right {
            background-image: url('https://simlove-sdk.oss-cn-shenzhen.aliyuncs.com/img/jianai-website/arrow-right-mini.png');
        }

        .events-tags-container {
            padding: 0; 
            overflow: hidden;
            flex-grow: 1;
            height: 100%;
            overflow: hidden; /* 关键：隐藏超出部分 */
            position: relative;
            display: flex;
            align-items: center;
        }

        .events-tags-track {
            display: flex;
            align-items: center;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* 平滑过渡 */
            will-change: transform;
        }

        .event-tag {
            margin: 0 54px; 
            font-size: 16px;
            color: #6C6D6D;
            text-align: center;
            cursor: pointer;
            padding-bottom: 4px;
            white-space: nowrap;
            
            /* 关键：通过 margin 控制间隔 */
            /* 左右各 54px，两个标签中心点之间的距离即为 108px (假设标签宽度一致或内容居中) */
            margin: 0 54px; 
            
            transition: all 0.3s;
        }

        .event-tag:hover{
            transform: scale(1.2) translateY(-5px);
        }


        .home-title{
    font-weight: 500;
    font-size: 28px;
    color: #54C8E8;
    text-align: center;
    font-style: normal;
    text-transform: none;
    width: 100%;
    margin: 120px auto 64px;
}