.fas,.fab{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
        .navbar-nav .nav-link {
            color: #333;
            margin-right: 15px;
        }
        .navbar-nav .nav-link:hover {
            color: #0d6efd;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/static/image/180-1920x1080.jpg) center / cover no-repeat;
            color: white;
            padding: 100px 0;
        }
        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .industry-item {
            transition: all 0.3s;
        }
        .industry-item:hover {
            background-color: #f8f9fa;
            transform: scale(1.02);
        }
        .blog-card img {
            height: 200px;
            object-fit: cover;
        }
        .footer {
            background-color: #343a40;
            color: white;
            padding: 50px 0 20px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
        }
        .footer a:hover {
            color: white;
        }
        .contact-info i {
            width: 24px;
            margin-right: 10px;
        }

        /* 行业解决方案通用样式 */
.industry-solution {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* 标题样式 */
.solution-title {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  font-weight: 600;
}

/* 简介样式 */
.solution-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  text-align: justify;
}

/* 模块容器样式 */
.solution-section {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.solution-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 模块标题样式 */
.solution-section h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.solution-section h3 i {
  color: #3498db;
  margin-right: 10px;
  font-size: 22px;
}

/* 服务列表样式 */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px dashed #eee;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: "✓";
  color: #2ecc71;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-list li strong {
  color: #2c3e50;
  margin-right: 8px;
}

/* 行业优势样式 */
.solution-section p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.solution-section p span {
  display: block;
  margin-bottom: 8px;
}

.solution-section p span:last-child {
  margin-bottom: 0;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .solution-title {
    font-size: 24px;
  }

  .solution-section {
    padding: 20px;
  }

  .solution-section h3 {
    font-size: 18px;
  }

  .solution-intro,
  .solution-section p {
    font-size: 14px;
  }

  .industry-solution {
    padding: 20px 15px;
  }
}

        a{
            text-decoration: none;
        }
        /* 补充自定义间距类（扩展 Bootstrap 工具类） */
        .py-custom {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/static/image/180-1920x1080.jpg) center / cover no-repeat;
            color: white;
            padding: 50px 0;
            margin-bottom:50px;
        }
        .py-custom .text-muted,.breadcrumb-item a,.breadcrumb-item.active,.breadcrumb-item+.breadcrumb-item::before{color:var(--bs-tertiary-bg) !important;}
        .py-custom-12{
            margin-bottom:50px;
        }
        .text-primary h3.card-title{color:var(--bs-body-color) !important;}

/* 通用内边距 (p-*) */
.p-6 {
    padding: 1.5rem !important; /* 比 p-5 (3rem) 小，可根据需求调整 */
}
.p-7 {
    padding: 1.75rem !important;
}
.p-8 {
    padding: 2rem !important;
}

/* 垂直外边距 (mt-* 上外边距 / mb-* 下外边距) */
.mt-6 {
    margin-top: 1.5rem !important;
}
.mt-7 {
    margin-top: 1.75rem !important;
}
.mt-8 {
    margin-top: 2rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}
.mb-7 {
    margin-bottom: 1.75rem !important;
}
.mb-8 {
    margin-bottom: 2rem !important;
}

/* 水平外边距 (ml-* 左外边距 / mr-* 右外边距) */
.ml-6 {
    margin-left: 1.5rem !important;
}
.mr-6 {
    margin-right: 1.5rem !important;
}

/* 垂直内边距 (py-*) 补充 */
.py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
}
.py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* 水平内边距 (px-*) 补充 */
.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
}
.px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
        .py-10 {
            padding-top: 2.5rem !important;
            padding-bottom: 2.5rem !important;
        }
        .py-12 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        /* 文章内容区基础样式 */
        .post-content {
            line-height: 1.8;
            color: #333;
            font-size: 16px;
        }
        
        /* 段落样式 */
        .post-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            padding: 0 2px;
        }
        
        /* 标题样式 */
        .post-content h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #222;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .post-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #222;
            margin: 2rem 0 1rem;
            padding-left: 0.8rem;
            border-left: 4px solid #0d6efd; /* 蓝色左侧边框 */
        }
        
        /* 列表样式 */
        .post-content ul,
        .post-content ol {
            margin: 1.2rem 0 1.5rem 1.5rem;
            padding-left: 1rem;
        }
        
        .post-content li {
            margin-bottom: 0.8rem;
            padding-left: 0.5rem;
        }
        
        .post-content ul li {
            list-style-type: disc;
        }
        
        .post-content ol li {
            list-style-type: decimal;
        }
        
        /* 链接样式 */
        .post-content a {
            color: #0d6efd;
            text-decoration: none;
            border-bottom: 1px dotted #0d6efd;
            transition: all 0.3s ease;
        }
        
        .post-content a:hover {
            color: #0b5ed7;
            border-bottom: 1px solid #0b5ed7;
        }
        
        /* 引用样式（如需使用） */
        .post-content blockquote {
            margin: 1.5rem 0;
            padding: 1rem 1.5rem;
            background-color: #f8f9fa;
            border-left: 4px solid #0d6efd;
            border-radius: 0.25rem;
            font-style: italic;
            color: #666;
        }
        
        /* 图片样式（如需在内容中插入图片） */
        .post-content img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        /* 代码块样式（如需使用） */
        .post-content pre {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 0.5rem;
            overflow-x: auto;
            margin: 1.5rem 0;
            font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
            font-size: 0.9rem;
        }
        
        .post-content code {
            background-color: #f8f9fa;
            padding: 0.2rem 0.4rem;
            border-radius: 0.25rem;
            font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
            font-size: 0.9rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .post-content {
                font-size: 15px;
            }
            
            .post-content h2 {
                font-size: 1.6rem;
            }
            
            .post-content h3 {
                font-size: 1.3rem;
            }
        }
