/* 1. PC端基础样式（保持原逻辑） */
.newest-title {
    width: 100%;
    height: 400px;
    /* PC端固定高度 */
    background: #dce4fd;
    position: relative;
    overflow: hidden;
    /* 防止装饰图超出容器（关键！） */
}

.newest-title-container {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    /* 优化：从baseline改为center，垂直居中更协调 */
    height: 100%;
    padding: 0 20px;
    /* 预留左右边距，避免贴边 */
}

.newest-title-left,
.newest-title-right {
    width: 240px;
    height: 200px;
}

.newest-title-center {
    text-align: center;
    /* 文字居中，PC/手机端通用 */
}

.text-stroke {
    font-size: 28px;
    /* PC端标题大小 */
    margin: 0 0 15px;
    /* 标题与正文间距 */
    color: #5453db;
}

.text-stroke-p {
    font-size: 16px;
    /* PC端正文大小 */
    line-height: 1.6;
    /* 行高优化，提升可读性 */
    margin: 0;
}

/* 2. 手机端适配（屏幕宽度≤768px时生效） */
@media (max-width: 768px) {

    /* 容器高度：从固定400px改为自适应，避免空白过长 */
    .newest-title {
        height: auto;
        padding: 40px 0 80px;
        /* 上下内边距，控制整体高度 */
    }

    /* 布局：从flex横向排列改为垂直排列 */
    .newest-title-container {
        flex-direction: column;
        /* 垂直堆叠 */
        gap: 20px;
        /* 上下元素间距，避免拥挤 */
    }

    /* 左右装饰图：缩小尺寸，适应手机宽度 */
    .newest-title-left,
    .newest-title-right {
        width: 180px;
        /* 比PC端小，避免超出屏幕 */
        height: 150px;
    }

    /* 文字：缩小字号，适配手机屏幕 */
    .text-stroke {
        font-size: 22px;
    }

    .text-stroke-p {
        font-size: 14px;
        padding: 0 20px;
        /* 正文左右留边，避免贴边 */
    }

    /* 底部楼房装饰：缩小尺寸+调整位置，避免重叠/超出 */
    .newest-title-lou img {
        width: 120px !important;
        /* 强制缩小（原300px） */
        bottom: -5px !important;
        /* 轻微上移，避免露底 */
    }

    /* 单独调整楼房位置，避免手机端重叠 */
    .newest-title-lou img:nth-child(1) {
        left: 5% !important;
    }

    .newest-title-lou img:nth-child(2) {
        left: 35% !important;
    }

    .newest-title-lou img:nth-child(3) {
        left: 65% !important;
    }
}



.section-title {
  font-weight: bold;
  text-align: center;
  margin: 40px 0 20px;
  font-size: 20px;
}
/* 调整企业文化项的字体大小 */
.culture-item {
  text-align: center;
  margin: 15px 0;
  font-size: 16px; /* 可根据实际需求调整，这里设置为和企业简介段落文字大小一致 */
}
.culture-center-img {
  max-width: 200px;
  margin: 20px auto;
  display: block;
}