/* 关于简爱部分样式 */
        #regarding-section {
            /* padding:0 0 64px; */
            /* 移除原有的 border-bottom，如果需要可以保留 */
        }

        .regarding-wrapper {
            width: 1200px;
            height: 450px;
            margin: 0 auto;
            display: flex;
            background-color: #f8f7f5; /* 背景色可根据设计图调整 */
            position: relative; /* 用于定位左下角按钮 */
            overflow: hidden; /* 防止内容溢出 */
        }

        /* 左侧内容区 */
        .regarding-left {
            width: 600px;
            height: 450px;
            padding: 64px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* 内容顶部对齐 */
            position: relative;
        }

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

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

        /* 左下角切换按钮容器 */
        .regarding-controls {
            position: absolute;
            bottom: 64px; /* 距离底部一定距离，或者根据设计要求调整 */
            left: 64px;   /* 与 padding 保持一致 */
            display: flex;
            gap: 40px;
        }

        .control-btn {
            width: 32px;
            height: 32px;
            cursor: pointer;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            transition: opacity 0.3s;
            border: none;
            background-color: transparent;
            padding: 0;
        }

        .control-btn:hover {
            opacity: 0.7;
        }

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

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

        /* 右侧图片区 */
        .regarding-right {
            width: 600px;
            height: 450px;
            overflow: hidden;
        }

        .regarding-right img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 确保图片填满且不变形 */
            transition: opacity 0.5s ease-in-out; /* 切换时的淡入淡出效果 */
        }
        


         /* 内容展示区域 */
        .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;
        }


/* 养牛人故事区域整体容器 */
.story-section {
    width: 1200px;
    height: 450px;
    background-color: #F8F7F5;
    margin: 0 auto; /* 居中显示 */
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

/* 内容包装器，用于定位内部元素 */
.story-content-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 顶部文字部分 */
.story-text {
    position: absolute;
    left: 118px;
    top: 92px;
    width: calc(100% - 188px - 40px); /* 减去左边距和右边箭头预留空间，防止重叠 */
    
    font-weight: 400;
    font-size: 16px;
    color: #6C6D6D;
    line-height: 26px;
    
    /* 可选：如果文字过长，限制高度并隐藏溢出 */
    max-height: 200px; 
    overflow-y: auto;
}

/* 左右切换箭头 */
.story-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.story-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.story-prev {
    left: 40px;
}

.story-next {
    right: 40px;
}

/* 底部线条 */
.story-divider {
    position: absolute;
    bottom: 92px;
    left: 118px;
    width: 964px;
    height: 1px;
    background-color: rgba(108, 109, 109, 0.4);
}

/* 底部来源名 */
.story-source {
    position: absolute;
    right: 118px;
    bottom: 46px;
    
    font-weight: 500;
    font-size: 16px;
    color: #1F1F1F;
    line-height: 26px;
    text-align: right;
}