  .image-text-container {
    display: flex;
    align-items: center;
    gap: 30px;
    /* max-width: 1200px; */
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .image-wrapper {
    flex: 1;
    min-width: 200px;
  }
  
  .content-image {
    width: 90%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
  }
  
  .text-content {
    flex: 1;
    padding: 0 20px;
  }
  
  .content-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .content-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6d6969;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .content-additional {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .content-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .content-link:hover {
    color: #004499;
    text-decoration: underline;
  }
  
  /* 响应式设计 */
  @media (max-width: 768px) {
    .image-text-container {
      flex-direction: column;
      gap: 20px;
    }
    
    .image-wrapper, 
    .text-content {
      width: 100%;
      padding: 0;
    }
    
    .content-title {
      font-size: 1.5rem;
    }
  }