/* ===== 公司历史时间线样式 ===== */ 
.royal-history {
    overflow: hidden;
}

.royal-history-item {
    padding: 30px 0;
    border-bottom: 1px solid #e6e6e6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

/* 日期样式 - 大号醒目 */
.royal-history-item-date {
    font-size: 42px;
    padding-right: 30px;
    color: #f7b700;
    font-weight: bold;
    line-height: 1.2;
    width: 180px;
}

/* 内容区域 */
.royal-history-item-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.royal-history-item-info h3 {
    font-size: 24px;
    margin: 0 0 15px 0;   
}

.royal-history-item-txt {
    color: #999;
    line-height: 1.8;
    margin: 0;
}

/* ===== 平板及以下适配 (992px) ===== */
@media (max-width: 992px) {
    
    .royal-history-item {
        padding: 15px 0;
        /* 改为上下布局 */
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    /* 日期横向排列，带装饰线 */
    .royal-history-item-date {
        font-size: 32px;
        padding-right: 0; 
        min-width: auto;
        width: 100%;
        position: relative;
        margin-bottom: 15px; 
        display: inline-block;  /* 线条只占内容宽度 */
    }
    
    /* 标题字体调整 */
    .royal-history-item-info h3 {
        font-size: 20px; 
    }
    
    /* 正文字号稍小，增加可读性 */
    .royal-history-item-txt {
        font-size: 14px;
        line-height: 1.6;
    }
}

 
 
 