    /* 基础重置（限制作用域，避免全局污染） */
    .about-wrap * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    /* 变量定义（添加前缀，避免冲突） */
    .about-wrap {
      --about-primary: #FF0000;
      --about-gray-50: #f9fafb;
      --about-gray-700: #374151;
      --about-white: #ffffff;
      --about-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    /* 基础样式（限定在包裹容器内） */
    .about-wrap {
      
      line-height: 1.6;
    }
    
    /* 主容器（添加独特前缀） */
    .about-container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 1rem;
      
    }
    
    /* 内容布局 */
    .about-content {
      display: flex;
      flex-direction: column;
    }
    
    /* 图片区域 */
    .about-image-section {
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    
    .about-image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .about-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top right, rgba(255, 0, 0, 0.1), transparent);
      opacity: 0.7;
    }
    
    /* 文字区域 */
    .about-text-section {
      width: 100%;
      padding: 1.5rem;
    }
    
    /* 标题样式 */
    .about-section-title {
      font-size: 36px;
      font-weight: 700;
      color: var(--about-primary);
      margin: 0 0 2.5rem;
      position: relative;
      display: inline-block;
      letter-spacing: 0.05em;
    }
    
    .about-section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 75%;
      height: 2px;
      background: var(--about-primary);
      border-radius: 1px;
    }
    
    /* 正文样式 */
    .about-text-content {
      color: var(--about-gray-700);
      font-size: 16px;
      margin-bottom: 1.5rem;
    }
    
    .about-text-content p {
      margin-bottom: 1rem;
    }
    
    /* 装饰元素 */
    .about-decor {
      display: flex;
      align-items: center;
    }
    
    .about-decor-line {
      width: 3rem;
      height: 1px;
      background: var(--about-primary);
    }
    
    .about-decor-text {
      margin-left: 1rem;
      color: var(--about-primary);
      font-weight: 500;
    }
    
    /* 响应式调整 */
    @media (min-width: 768px) {
      .about-container {
        padding: 2rem;
        margin: 3rem auto;
      }
      
      .about-content {
        flex-direction: row;
      }
      
      .about-image-section, .about-text-section {
        width: 50%;
      }
      
      .about-text-section {
        padding: 2rem;
      }
    }