/**
 * WordPress特定样式
 * 用于WordPress特有的元素和功能
 */

/* 先重置所有导航项，确保没有默认高亮 */
.nav-menu .nav-item > .nav-link,
.nav-menu .nav-item.dropdown > .nav-link {
    color: #333 !important;
    font-weight: 500 !important;
}

/* 强制重置dropdown菜单，移除任何可能的高亮 */
.nav-menu .nav-item.dropdown:not(.active) > .nav-link {
    color: #333 !important;
    font-weight: 500 !important;
}

.nav-menu .nav-item.dropdown:not(.active) > .nav-link::after {
    width: 0 !important;
    background: transparent !important;
}

/* 导航菜单当前页面高亮 - 强制样式 */
nav .nav-menu .nav-item.active > a.nav-link,
.navigation .nav-menu .nav-item.active > a.nav-link,
.nav-menu > .nav-item.active > a.nav-link,
.nav-item.active > .nav-link {
    color: #dc2626 !important;
    font-weight: 700 !important;
    position: relative !important;
}

nav .nav-menu .nav-item.active > a.nav-link::after,
.navigation .nav-menu .nav-item.active > a.nav-link::after,
.nav-menu > .nav-item.active > a.nav-link::after,
.nav-item.active > .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #dc2626 !important;
    display: block !important;
}

nav .nav-menu .nav-item.dropdown.active > a.nav-link,
.navigation .nav-menu .nav-item.dropdown.active > a.nav-link,
.nav-menu > .nav-item.dropdown.active > a.nav-link,
.nav-item.dropdown.active > .nav-link {
    color: #dc2626 !important;
    font-weight: 700 !important;
}

/* 确保active状态下悬停效果正常 */
.nav-item.active > .nav-link:hover {
    color: #b91c1c !important;
}

.nav-item.active > .nav-link:hover::after {
    background: #b91c1c !important;
}

/* 最新动态列表页面宽度控制 */
.news-page-section .container {
    width: 70% !important;
    max-width: none !important;
}

/* 搜索和筛选区域 */
.news-filter-section {
    margin-bottom: 2rem;
}

/* 搜索框样式 */
.news-search-box {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    background: #f9fafb;
}

.search-input:focus {
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.search-btn i {
    font-size: 0.9rem;
}

/* 搜索结果提示 */
.search-result-info {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-result-info p {
    margin: 0;
    color: #1e40af;
    font-size: 0.95rem;
}

.search-result-info i {
    color: #3b82f6;
    margin-right: 0.5rem;
}

.search-result-info strong {
    color: #1e3a8a;
    font-weight: 700;
}

.news-categories-filter {
    width: 100%;
}

.news-list-main {
    width: 100%;
}

/* 响应式：移动端搜索框调整 */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 文章详情页元信息样式修复 */
.page-header .post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: center;
}

.page-header .post-meta .post-date,
.page-header .post-meta .post-author,
.page-header .post-meta .post-views {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-header .post-meta i {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem;
}

.page-header .post-meta .category-tag {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* WordPress自定义Logo尺寸控制 */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* 导航栏Logo区域 */
.nav-logo .custom-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* 如果同时存在Logo图片和文字 */
.nav-logo .custom-logo-link .logo-text {
    display: inline-block;
}

/* 响应式Logo尺寸 */
@media (max-width: 768px) {
    .custom-logo {
        max-height: 40px;
    }
}

/* 产品页面标题区域调整 - 垂直居中 */
.page-header {
    padding: 0 !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.page-header .container {
    max-width: 1200px !important;
    padding: 3rem 20px !important;
    text-align: center !important;
}

/* 确保页面内容区域居中 */
body {
    text-align: center;
}

/* 重置特定元素的对齐方式 */
.container {
    text-align: left;
}

.page-header h1 {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.page-header p {
    font-size: 1.2rem !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Footer区域宽度控制 - 动态自适应 */
.footer .container {
    width: 70%;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer栏目动态宽度 */
.footer-section {
    flex: 1 1 auto;
    min-width: 150px;
}

/* 产品栏稍宽一些（8个链接） */
.footer-section:nth-child(1) {
    flex: 1.5;
}

/* 联系我们栏稍宽（包含二维码） */
.footer-section:nth-child(4) {
    flex: 1.3;
}

/* 文章分类筛选器 */
.news-categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    padding: 2rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 12px;
}

.category-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-filter:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.category-filter.active {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.category-filter .count {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* 文章列表 - 简化版（首页使用） */
.news-item-simple {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.news-item-simple:last-child {
    border-bottom: none;
}

.news-categories-tags {
    margin-bottom: 0.75rem;
}

.news-title-simple {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.news-title-simple a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-simple a:hover {
    color: #dc2626;
}

.news-meta-simple {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.news-meta-simple .news-date {
    margin-right: 1rem;
}

/* 分类标签 */
.category-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* 默认分类颜色 */
.category-tag {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

/* 特定分类颜色（可自定义） */
.category-产品更新,
.category-product-update {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.category-行业动态,
.category-industry-news {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.category-技术分享,
.category-tech-share {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.category-公司新闻,
.category-company-news {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* 文章元信息 */
.post-meta,
.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.post-meta span,
.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i,
.news-meta i {
    color: #9ca3af;
}

/* 文章阅读更多链接 */
.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.news-readmore:hover {
    gap: 0.75rem;
}

/* 没有文章提示 */
.no-posts {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
    font-size: 1.1rem;
}

/* 加载动画 */
.loading {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.loading i {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
    display: block;
}

/* 分页导航 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.pagination .current {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.pagination .dots {
    border: none;
    cursor: default;
}

/* 文章导航（上一篇/下一篇） */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.post-navigation a {
    flex: 1;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: rgba(220, 38, 38, 0.05);
    color: #dc2626;
}

.nav-previous a {
    text-align: left;
}

.nav-next a {
    text-align: right;
}

/* 文章标签 */
.post-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.post-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 0.5rem 0.5rem 0;
    background: #f3f4f6;
    border-radius: 6px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-tags .tag:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

/* 文章缩略图 */
.post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文章内容区域 */
.post-content,
.post-body {
    padding: 3rem 0;
}

.post-body {
    line-height: 1.8;
    color: #374151;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.post-body p {
    margin-bottom: 1rem;
}

.post-body ul,
.post-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* 归档页面特定样式 */
.archive-section {
    padding: 4rem 0;
}

/* 文章列表主区域 */
.news-list-main {
    min-height: 300px;
}

/* 文章列表项 */
.news-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.news-header {
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.news-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #dc2626;
}

.news-excerpt {
    color: #6b7280;
    line-height: 1.8;
    margin: 1rem 0;
}

/* 错误和提示信息 */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* 桌面管理应用场景布局 */
.application-scenarios {
    background: #f8f9fa;
    padding: 5rem 0;
}

.application-scenarios .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.application-scenarios .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.application-scenarios .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.application-scenarios .section-header > p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.application-scenarios .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.application-scenarios .section-badge i {
    font-size: 0.85rem;
}

.application-scenarios .scenarios-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
}

/* 删除旧样式，使用新的main-solutions样式 */

/* 卡片样式重新设计 */
.main-solutions .solution-detail {
    background: white !important;
    border-radius: 16px !important;
    padding: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 580px !important;
    border: 1px solid #e5e7eb !important;
}

.main-solutions .solution-detail:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.25) !important;
    border-color: #dc2626 !important;
}

.main-solutions .solution-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    padding: 2rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    position: relative !important;
}

.main-solutions .solution-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #fbbf24);
}

.main-solutions .solution-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    width: 65px !important;
    height: 65px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    flex-shrink: 0 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.main-solutions .solution-title {
    flex: 1 !important;
}

.main-solutions .solution-title h3 {
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
}

.main-solutions .solution-title p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.75rem !important;
}

.main-solutions .solution-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}

.main-solutions .solution-tags .tag {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(5px) !important;
    transition: all 0.2s ease !important;
}

.main-solutions .solution-tags .tag:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.05) !important;
}

.main-solutions .solution-content {
    padding: 2rem 1.5rem !important;
    flex: 1 !important;
    display: block !important;
    background: white !important;
}

.main-solutions .content-col {
    margin-bottom: 2rem !important;
}

.main-solutions .content-col:last-child {
    margin-bottom: 0 !important;
}

.main-solutions .content-col h4 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 2px solid #e5e7eb !important;
    position: relative !important;
}

.main-solutions .content-col h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #dc2626, #b91c1c) !important;
    border-radius: 1px !important;
}

/* 功能列表样式 */
.main-solutions .feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
}

.main-solutions .feature-list li {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.7rem 0.9rem !important;
    color: #374151 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9) !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.25s ease !important;
}

.main-solutions .feature-list li:hover {
    background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
    border-color: #fecaca !important;
    color: #dc2626 !important;
    transform: translateX(3px) !important;
}

.main-solutions .feature-list li i {
    color: #10b981 !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
}

/* 应用场景样式 */
.main-solutions .scenario-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
    margin-bottom: 1.25rem !important;
}

.main-solutions .scenario-tags .tag {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important;
    color: #1e40af !important;
    padding: 0.4rem 0.85rem !important;
    border-radius: 18px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    border: 1px solid #93c5fd !important;
    transition: all 0.2s ease !important;
}

.main-solutions .scenario-tags .tag:hover {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd) !important;
    transform: scale(1.05) !important;
}

.main-solutions .scenario-desc {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7) !important;
    border-left: 4px solid #10b981 !important;
    padding: 1.25rem !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1) !important;
}

.main-solutions .scenario-desc p {
    color: #1f2937 !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.main-solutions .scenario-desc strong {
    color: #047857 !important;
    font-weight: 700 !important;
}

.main-solutions .content-col {
    margin-bottom: 1.5rem;
}

.main-solutions .content-col:last-child {
    margin-bottom: 0;
}

.main-solutions .content-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.main-solutions .content-col h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.main-solutions .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.main-solutions .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    color: #374151;
    font-size: 0.82rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.main-solutions .feature-list li:hover {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: #fecaca;
    color: #dc2626;
    transform: translateX(3px);
}

.main-solutions .feature-list li i {
    color: #10b981;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.main-solutions .scenario-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.main-solutions .scenario-tags .tag {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 0.35rem 0.75rem;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid #93c5fd;
    transition: all 0.2s ease;
}

.main-solutions .scenario-tags .tag:hover {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd);
    transform: scale(1.05);
}

.main-solutions .scenario-desc {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-left: 3px solid #10b981;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.08);
}

.main-solutions .scenario-desc p {
    color: #1f2937;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

.main-solutions .scenario-desc strong {
    color: #047857;
    font-weight: 700;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-categories-filter {
        padding: 1rem;
    }
    
    .category-filter {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .news-item {
        padding: 1.5rem;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-solutions .solution-header {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }
    
    .main-solutions .solution-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .main-solutions .section-header h2 {
        font-size: 2rem !important;
    }
    
    .main-solutions .section-header > p {
        font-size: 1rem !important;
    }
    
    .main-solutions .solutions-detail {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .main-solutions .solution-content {
        padding: 1.5rem !important;
    }
    
    .main-solutions .solution-title h3 {
        font-size: 1.2rem !important;
    }
    
    .main-solutions .solution-title p {
        font-size: 0.85rem !important;
    }
    
    .main-solutions .content-col h4 {
        font-size: 1rem !important;
    }
    
    .main-solutions .feature-list {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important;
    }
    
    .main-solutions .feature-list li {
        font-size: 0.8rem !important;
        padding: 0.6rem 0.75rem !important;
    }
    
    .main-solutions .scenario-tags .tag {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.7rem !important;
    }
    
    .main-solutions .scenario-desc {
        padding: 1rem !important;
    }
    
    .main-solutions .scenario-desc p {
        font-size: 0.8rem !important;
    }
}

/* 中等屏幕适配 */
@media (max-width: 1200px) and (min-width: 769px) {
    .main-solutions .solutions-detail {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .main-solutions .solution-detail {
        min-height: 550px !important;
    }
    
    .main-solutions .feature-list {
        grid-template-columns: 1fr !important;
    }
}

/* 大屏幕优化 */
@media (min-width: 1400px) {
    .main-solutions .container {
        max-width: 1400px !important;
    }
    
    .main-solutions .solutions-detail {
        gap: 2.5rem !important;
    }
}

