
    .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 20px;
    }

    /* 头部标题 */
    .aboutheader {
      text-align: center;
      padding: 40px 0;
      color: #004994;
    }

    .aboutheader h1 {
      font-size: 32px;
      margin-bottom: 10px;
      border-bottom: 3px solid #0762bf;
      display: inline-block;
      padding-bottom: 10px;
    }

    /* 板块通用样式 */
    .section {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .section:hover {
      transform: translateY(-5px);
    }

    .section h2 {
      color: #004994;
      font-size: 24px;
      margin-bottom: 20px;
      border-left: 5px solid #0762bf;
      padding-left: 12px;
    }

    /* 左右布局 */
    .flex-row {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .flex-row-reverse {
      flex-direction: row-reverse;
    }

    .text {
      flex: 1;
      font-size: 16px;
      text-align: justify;
    }

    .img-box {
      flex: 0 0 380px;
      height: 260px;
      background: #e6f4ec;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0762bf;
      font-weight: bold;
      overflow: hidden;
    }

    .img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 列表样式 */
    .list {
      padding-left: 20px;
      margin: 10px 0;
    }

    .list li {
      margin-bottom: 8px;
    }

    /* 企业文化卡片 */
    .culture-card {
      background: #f0f6f9;
      border-left: 4px solid #0762bf;
      padding: 15px 20px;
      margin-bottom: 15px;
      border-radius: 6px;
    }

    .culture-card h3 {
      color: #004994;
      margin-bottom: 5px;
    }

    /* 响应式 */
    @media (max-width: 992px) {
      .flex-row, .flex-row-reverse {
        flex-direction: column!important;
      }
      .img-box {
        width: 100%;
        flex: none;
      }
      .aboutheader h1 {
    font-size: 22px;}
    }

    @media (max-width: 768px) {
        .aboutheader{padding:10px 0;}
      .header h1 {
        font-size: 24px;
      }
      .section h2 {
        font-size: 20px;
      }
      .section h3 {
        font-size: 20px;
      }
      .section {
        padding: 20px;
      }
      .culture-card h3{
        font-size: 20px;}
    }