        /* 图片展示区域样式 */
        .gallery-section {
            padding: 60px 0;
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--gray-700);
            font-size: 32px;
            font-weight: 600;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .gallery-item {
            aspect-ratio: 1;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            border-radius: 4px;
        }
        
        .gallery-item:hover {
            transform: scale(1.02);
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }
        
        .gallery-image:hover {
            opacity: 0.9;
        }
        
        /* 放大查看模态框 */
        .lightbox-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 3000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .lightbox-modal.active {
            display: block;
            opacity: 1;
        }
        
        .lightbox-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            max-width: 1000px;
        }
        
        .lightbox-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3001;
        }
        
        .lightbox-close:hover {
            opacity: 0.8;
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 3001;
        }
        
        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .lightbox-prev {
            left: 20px;
        }
        
        .lightbox-next {
            right: 20px;
        }
        
        .lightbox-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 15px;
            border-radius: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .gallery-title {
                font-size: 28px;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-section {
                padding: 40px 0;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .gallery-title {
                font-size: 24px;
                margin-bottom: 25px;
            }
            
            .lightbox-content {
                width: 90%;
                height: 70%;
            }
            
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .gallery-title {
                font-size: 20px;
                margin-bottom: 20px;
            }
            
            .gallery-section {
                padding: 30px 0;
            }
            
            .lightbox-content {
                width: 95%;
                height: 60%;
            }
            
            .lightbox-nav {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .lightbox-prev {
                left: 10px;
            }
            
            .lightbox-next {
                right: 10px;
            }
        }
		
 /* 应用详情内容区域样式 */
 .application-detail {
     border-top: 1px solid var(--color-border);
     border-bottom: 1px solid var(--color-border);
 }
 
 .detail-content {
     max-width: 1200px; /* 与主容器保持一致 */
     margin: 0 auto;
     padding: 0 var(--spacing-lg);
 }
 
 .content-container {
     font-size: 16px;
     line-height: 1.8;
     color: var(--color-text-dark);
     max-width: 100%;
     word-wrap: break-word;
     overflow-wrap: break-word;
     word-break: break-word; /* 确保长单词和URL可以换行 */
     hyphens: auto; /* 自动连字符换行 */
 }
 
 /* 确保所有内联元素也能正确换行 */
 .content-container * {
     max-width: 100%;
     word-wrap: break-word;
     overflow-wrap: break-word;
 }
 
 /* 特别处理链接和代码块 */
 .content-container a,
 .content-container code,
 .content-container pre {
     word-break: break-word;
     overflow-wrap: break-word;
 }
 
 /* 表格特别处理 */
 .content-container table {
     width: 100%;
     max-width: 100%;
     table-layout: fixed; /* 固定表格布局，确保不会溢出 */
     word-break: break-word;
 }
 
 .content-container table th,
 .content-container table td {
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 /* 代码块特别处理 */
 .content-container pre {
     overflow-x: auto;
     white-space: pre-wrap; /* 允许代码换行 */
     word-wrap: break-word;
 }
 
 /* 长URL或特殊字符处理 */
 .content-container a[href*="//"] {
     word-break: break-all; /* 对URL使用更激进的换行策略 */
 }
 
 /* 内容区域基本样式 */
 .content-container h1,
 .content-container h2,
 .content-container h3,
 .content-container h4,
 .content-container h5,
 .content-container h6 {
     color: var(--color-text-dark);
     margin: 1.5em 0 0.8em;
     font-weight: 600;
     line-height: 1.3;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container h1 {
     font-size: 32px;
     border-bottom: 2px solid var(--primary-blue);
     padding-bottom: 10px;
 }
 
 .content-container h2 {
     font-size: 28px;
     color: var(--blue-700);
 }
 
 .content-container h3 {
     font-size: 24px;
 }
 
 .content-container h4 {
     font-size: 20px;
 }
 
 .content-container p {
     margin-bottom: 1.5em;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container ul,
 .content-container ol {
     margin: 1em 0 1.5em 2em;
     padding-left: 1em;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container li {
     margin-bottom: 0.5em;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container a {
     color: var(--primary-blue);
     text-decoration: none;
     border-bottom: 1px solid transparent;
     transition: all 0.3s ease;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container a:hover {
     border-bottom-color: var(--primary-blue);
 }
 
 .content-container img {
     max-width: 100%;
     height: auto;
     margin: 2em auto;
     display: block;
     border-radius: 4px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }
 
 .content-container figure {
     margin: 2em 0;
     text-align: center;
     max-width: 100%;
 }
 
 .content-container figcaption {
     font-size: 14px;
     color: var(--gray-500);
     margin-top: 8px;
     font-style: italic;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container blockquote {
     border-left: 4px solid var(--primary-blue);
     padding: 1em 1.5em;
     margin: 2em 0;
     background-color: var(--color-bg-alt);
     font-style: italic;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container table {
     width: 100%;
     border-collapse: collapse;
     margin: 2em 0;
     font-size: 14px;
     max-width: 100%;
     table-layout: fixed;
 }
 
 .content-container table th,
 .content-container table td {
     padding: 12px 15px;
     border: 1px solid rgba(0, 0, 0, 0.9);
     text-align: left;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container table th {
     background-color: #0e3a7a;
     font-weight: 600;
     color: white;
 }
 
 .content-container code {
     background-color: var(--color-bg-alt);
     padding: 2px 6px;
     border-radius: 3px;
     font-family: monospace;
     font-size: 14px;
     overflow-wrap: break-word;
     word-break: break-word;
 }
 
 .content-container pre {
     background-color: var(--color-bg-alt);
     padding: 1em;
     border-radius: 4px;
     overflow-x: auto;
     margin: 1.5em 0;
     white-space: pre-wrap;
     word-wrap: break-word;
 }
 
 /* 移动端适配 */
 @media (max-width: 768px) {
     .application-detail {
         padding: 40px 0;
         margin: 30px 0;
     }
     
     .detail-content {
         padding: 0 var(--spacing-md);
     }
     
     .content-container {
         font-size: 15px;
         line-height: 1.7;
     }
     
     .content-container h1 {
         font-size: 26px;
     }
     
     .content-container h2 {
         font-size: 22px;
     }
     
     .content-container h3 {
         font-size: 20px;
     }
     
     .content-container h4 {
         font-size: 18px;
     }
     
     .content-container ul,
     .content-container ol {
         margin-left: 1.5em;
     }
     
     .content-container table {
         font-size: 13px;
     }
     
     .content-container table th,
     .content-container table td {
         padding: 8px 10px;
     }
     
     /* 移动端更激进的换行策略 */
     .content-container {
         word-break: break-word;
     }
     
     .content-container a[href*="//"] {
         word-break: break-all;
     }
 }
 
 @media (max-width: 480px) {
     .application-detail {
         padding: 30px 0;
         margin: 20px 0;
     }
     
     .content-container {
         font-size: 14px;
         line-height: 1.6;
         word-break: break-word; /* 小屏幕使用更激进的换行 */
     }
     
     .content-container h1 {
         font-size: 22px;
     }
     
     .content-container h2 {
         font-size: 20px;
     }
     
     .content-container h3 {
         font-size: 18px;
     }
     
     .content-container p {
         margin-bottom: 1.2em;
         text-align: left; /* 小屏幕不使用两端对齐，更易读 */
     }
     
     .content-container img {
         margin: 1.5em auto;
     }
     
     .content-container blockquote {
         padding: 0.8em 1em;
         margin: 1.5em 0;
     }
     
     /* 超小屏幕上对长内容更友好 */
     .content-container * {
         word-break: break-word;
     }
 }
.contact-form-section {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-title {
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.contact-form-description {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 表单样式 */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: var(--color-bg-default);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.1);
}

/* 文件上传区域 */
.file-upload-group {
    margin-top: 10px;
}

.file-upload-area {
    border: 2px dashed var(--color-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    background-color: var(--color-bg-default);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--primary-blue);
    background-color: rgba(26, 95, 180, 0.05);
}

.upload-icon {
    margin: 0 auto 15px;
}

.upload-text {
    font-size: 16px;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.browse-link {
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
}

.upload-hint {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 5px;
}

/* 文件列表样式 */
.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: var(--color-bg-default);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 8px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.file-name {
    font-size: 14px;
    color: var(--color-text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.file-size {
    font-size: 12px;
    color: var(--gray-500);
}

.remove-file {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background-color: var(--red-100);
    color: var(--primary-red);
}

/* 提交按钮区域 */
.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 180, 0.2);
}

.form-note {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .file-upload-area {
        padding: 20px 15px;
    }
    
    .upload-text {
        font-size: 14px;
    }
    
    .upload-hint {
        font-size: 12px;
    }
    
    .file-name {
        max-width: 180px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .contact-form-header {
        margin-bottom: 30px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .contact-form-description {
        font-size: 1rem;
    }
    
    .file-name {
        max-width: 120px;
    }
} 
 /* 其他定制产品展示区域样式 */
  .custom-products-section {
      padding: 60px 0;
      border-bottom: 1px solid var(--color-border);
  }
  
  .custom-products-title {
      font-size: 1.8rem;
      color: var(--color-text-dark);
      margin-bottom: 30px;
      font-weight: 600;
      text-align: left;
  }
  
  .custom-products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
  }
  
  .custom-product-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: var(--color-text-dark);
      transition: all 0.3s ease;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid transparent;
      height: 100%;
  }
  
  .custom-product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-blue);
  }
  
  .product-image-container {
      position: relative;
      width: 100%;
      padding-top: 100%; /* 1:1 正方形比例 */
      overflow: hidden;
      background-color: var(--color-bg-alt);
  }
  
  .product-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }
  
  .custom-product-card:hover .product-image {
      transform: scale(1.05);
  }
  
  .product-title {
      padding: 15px 10px;
      font-size: 1rem;
      font-weight: 500;
      text-align: center;
      margin: 0;
      line-height: 1.3;
      background-color: var(--color-bg-default);
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  /* 平板设备适配 */
  @media (max-width: 992px) {
      .custom-products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
      }
      
      .custom-products-section {
          padding: 50px 0;
      }
      
      .custom-products-title {
          font-size: 1.6rem;
          margin-bottom: 25px;
      }
  }
  
  /* 移动设备适配 */
  @media (max-width: 576px) {
      .custom-products-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          max-width: 350px;
          margin: 0 auto;
      }
      
      .custom-products-section {
          padding: 40px 0;
      }
      
      .custom-products-title {
          font-size: 1.5rem;
          margin-bottom: 20px;
          text-align: center;
      }
      
      .product-title {
          padding: 12px 8px;
          font-size: 0.95rem;
      }
  }
  
  /* 超小屏幕优化 */
  @media (max-width: 380px) {
      .custom-products-grid {
          max-width: 100%;
      }
      
      .custom-products-title {
          font-size: 1.4rem;
      }
  }