:root {
    /* 现代科技蓝调 - 完全不同的色彩方案 */
    --primary-color: #2563eb;           /* 活力蓝色 - 创新科技 */
    --secondary-color: #06b6d4;         /* 青色 - 专业精致 */
    --accent-color: #8b5cf6;            /* 紫色 - 创意时尚 */
    --success-color: #10b981;           /* 绿色 - 环保可持续 */
    --warning-color: #f59e0b;           /* 琥珀色 - 温暖活力 */
    --dark-bg: #0f172a;                 /* 深空蓝 - 高端背景 */
    --light-bg: #f1f5f9;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --shadow-elevation: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.editor-content-1 h4 {
    font-size: 18px;
    line-height: 1.8;
}
.editor-content-1 p {
    line-height: 2;
    font-size: 14px;
}
/* 公司实力展示板块 - 浅色主题完整样式 */
.capability-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
    margin: 60px 0;
    color: #334155;
    position: relative;
    overflow: hidden;
}

.capability-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.showcase-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
    line-height: 1.6;
}

.showcase-header p {
    font-size: 14px;
    line-height: 2;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* 核心能力展示 */
.core-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.capability-column {
    position: relative;
}

.capability-item {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.capability-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.capability-item:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* CSS图标系统 */
.capability-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    position: relative;
}

.research-icon::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: 3px solid #2563eb;
    border-radius: 50%;
    top: 5px;
    left: 17px;
}

.research-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #2563eb;
    border-top: none;
    border-right: none;
    bottom: 12px;
    left: 26px;
    transform: rotate(-45deg);
}

.factory-icon::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    top: 12px;
    left: 12px;
    border-radius: 4px;
}

.factory-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 22px;
    background: #1e40af;
    bottom: 8px;
    left: 26px;
    border-radius: 2px 2px 0 0;
}

.global-icon::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border: 3px solid #10b981;
    border-radius: 50%;
    top: 7px;
    left: 12px;
}

.global-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #10b981;
    top: 50%;
    left: 12px;
    transform: rotate(45deg);
}

.capability-content h3 {
    font-size: 18px;
    line-height: 1.6;
    color: #1e40af;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.capability-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.8;
}

.stat-label {
    display: block;
    font-size: 14px;
    line-height: 2;
    color: #64748b;
    margin-top: 6px;
    font-weight: 500;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-features li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 2;
    border-bottom: 1px solid #f1f5f9;
}

.capability-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #10b981;
    border-radius: 50%;
}

.capability-features li:last-child {
    border-bottom: none;
}

/* 应用领域展示 */
.application-showcase {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.application-showcase h3 {
    font-size: 20px;
    line-height: 1.6;
    color: #1e40af;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.application-item {
    text-align: center;
    padding: 35px 25px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.application-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 应用图标 */
.app-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    position: relative;
}

.ad-icon::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    top: 8px;
    left: 10px;
    border-radius: 3px;
}

.ad-icon::after {
    content: 'A';
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 12px;
    top: 14px;
    left: 22px;
}

.sports-icon::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid #f59e0b;
    border-radius: 50%;
    top: 6px;
    left: 11px;
}

.sports-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #f59e0b;
    border-top: none;
    border-right: none;
    bottom: 12px;
    left: 20px;
    transform: rotate(-45deg);
}

.construction-icon::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 22px;
    background: #ef4444;
    top: 12px;
    left: 11px;
}

.construction-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 14px;
    background: #dc2626;
    bottom: 12px;
    left: 18px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.automotive-icon::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 18px;
    background: #6b7280;
    top: 15px;
    left: 10px;
    border-radius: 8px 8px 0 0;
}

.automotive-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 14px;
    background: #4b5563;
    bottom: 12px;
    left: 13px;
    border-radius: 4px;
}

.application-item h4 {
    font-size: 18px;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.application-item p {
    color: #64748b;
    line-height: 2;
    font-size: 14px;
    margin: 0;
}

/* 质量认证区域 */
.quality-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.quality-content h3 {
    font-size: 1.7em;
    color: #1e40af;
    margin-bottom: 30px;
    font-weight: 600;
}

.quality-features {
    display: grid;
    gap: 18px;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.quality-item:hover {
    background: #f8fafc;
    transform: translateX(8px);
    border-color: #3b82f6;
}

.quality-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    position: relative;
}

.cert-icon::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid #10b981;
    border-radius: 50%;
    top: 5px;
    left: 8px;
}

.cert-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    border: 2px solid #10b981;
    border-top: none;
    border-left: none;
    top: 12px;
    left: 15px;
    transform: rotate(45deg);
}

.eco-icon::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 18px;
    background: #10b981;
    top: 10px;
    left: 8px;
    border-radius: 12px 12px 0 0;
}

.eco-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 14px;
    background: #059669;
    bottom: 8px;
    left: 11px;
    border-radius: 8px 8px 0 0;
}

.test-icon::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid #f59e0b;
    top: 7px;
    left: 10px;
}

.test-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 7px;
    border: 2px solid #f59e0b;
    border-top: none;
    border-right: none;
    bottom: 14px;
    left: 15px;
    transform: rotate(-45deg);
}

.recycle-icon::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid #06b6d4;
    border-radius: 50%;
    top: 7px;
    left: 10px;
}

.recycle-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #06b6d4;
    border-radius: 50%;
    bottom: 8px;
    left: 14px;
}

.quality-text {
    flex: 1;
}

.quality-text strong {
    display: block;
    color: #1e293b;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 4px;
    font-weight: 600;
}

.quality-text span {
    color: #64748b;
    font-size: 14px;
    line-height: 2;
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-badge {
    background: white;
    color: #334155;
    padding: 12px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cert-badge:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: scale(1.05);
    border-color: transparent;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .core-capabilities {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quality-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certification-badges {
        flex-direction: row;
        justify-content: center;
        line-height: 2;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .capability-showcase {
        padding: 60px 0;
    }
    
    .showcase-header h2 {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-showcase {
        padding: 40px 25px;
    }
    
    .capability-item {
        padding: 30px 25px;
    }
    
    .core-capabilities {
        margin-bottom: 40px;
    }
}


/* 基础样式 - 现代简约风 */
body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}



/* 响应式设计 */
@media (max-width: 1024px) {
    .core-capabilities {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certification-badges {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .capability-item {
        padding: 40px 30px;
    }
    .stat-label {
        line-height: 2;
        font-size: 14px;
    }
    .application-showcase {
        padding: 40px 30px;
    }
    
    .showcase-header h2 {
        font-size: 2.5em;
    }
    
    .capability-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 14px;
        line-height: 2;
    }
}

/* 完善所有H标签样式 */
.editor-module h1,
.editor-module h2,
.editor-module h3,
.editor-module h4,
.editor-module h5,
.editor-module h6 {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin: 1.5em 0 0.8em 0;
    color: var(--primary-color);
}

.editor-module h1 {
    font-size: 2.5em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}

.editor-module h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.editor-module h2 {
    font-size: 2em;
    color: var(--primary-color);
    padding-left: 20px;
    border-left: 4px solid var(--secondary-color);
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05), transparent);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.editor-module h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.editor-module h3::before {
    content: '▶';
    color: var(--accent-color);
    font-size: 0.8em;
}

.editor-module h4 {
    font-size: 1.3em;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(37, 99, 235, 0.1));
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.editor-module h5 {
    font-size: 1.1em;
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid var(--border-color);
}

.editor-module h6 {
    font-size: 1em;
    color: var(--text-light);
    font-weight: 600;
    font-style: italic;
}

/* 确保所有det模块字体大小从14px起步 */
.editor-module {
    font-size: 16px; /* 基础字体大小 */
    line-height: 1.8;
}

.editor-module p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 1.2em;
    color: var(--text-color);
}

.editor-module ul, 
.editor-module ol {
    font-size: 16px;
}

.editor-module li {
    font-size: 16px;
    margin-bottom: 0.8em;
}

.editor-module table {
    font-size: 14px;
    line-height: 2;
}

.editor-module table th,
.editor-module table td {
    font-size: 14px;
    padding: 12px 15px;
    line-height: 2;
}

/* 特别为det模块内容设置最小字体 */
.info-column1,
.editor-module-service {
    font-size: 16px;
}

.info-column1 p,
.editor-module-service p {
    font-size: 14px;
    line-height: 2;
}

.info-column1 li,
.editor-module-service li {
    font-size: 16px;
}

.tag-page-container {
    max-width: 1400px;
    margin: 100px auto 0;
    padding: 40px 30px 80px;
}

/* 头部英雄区域 - 现代卡片式设计 */
.tag-hero-section {
    background: var(--card-bg);
    padding: 80px 60px;
    border-radius: var(--radius);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevation);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.tag-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50%;
    transform: rotate(45deg);
}

.tag-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: var(--gradient-secondary);
    opacity: 0.02;
    border-radius: 50%;
}

.tag-title {
    font-size: 4em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-section-p {
    font-size: 14px;
    line-height: 2;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.editor-content-1 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
    padding: 40px;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* 内容矩阵布局 - 现代不对称设计 */
.content-matrix {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.main-content-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-content-column {
    position: sticky;
    top: 120px;
}

/* 编辑器模块 - 现代玻璃态设计 */
.editor-module {
    background: rgba(255, 255, 255, 0.8);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elevation);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.editor-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.editor-module:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.9);
}

/* 标题层次 - 现代简约 */
.editor-module h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
}

.editor-module h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.editor-module h3 {
    font-size: 1.7em;
    color: var(--secondary-color);
    margin: 40px 0 25px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.editor-module h3::before {
    content: '▸';
    color: var(--accent-color);
    font-size: 1.2em;
}

.editor-module h4 {
    font-size: 18px;
    line-height: 1.6;
    color: #1e40af;
    margin: 30px 0 20px 0;
    font-weight: 600;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

/* 现代列表样式 */
.editor-module ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.editor-module li {
    padding: 20px 25px 20px 70px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.editor-module li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.editor-module li::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9em;
}

.editor-module li:nth-child(1)::before { content: '01'; }
.editor-module li:nth-child(2)::before { content: '02'; }
.editor-module li:nth-child(3)::before { content: '03'; }
.editor-module li:nth-child(4)::before { content: '04'; }
.editor-module li:nth-child(5)::before { content: '05'; }

/* 公司介绍 - 现代企业风格 */
.about-page3 {
    background: var(--dark-bg);
    padding: 100px 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-page3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.about-1 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.about-1 h3 {
    font-size: 2.8em;
    color: white;
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-page .about-1 .list {
    background:unset!important;
}
.about-1 .text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/*.about-1 .text a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    transition: var(--transition);
}*/

.about-1 .text a:hover {
    color: white;
    border-bottom-color: white;
}

/* 数据统计 - 现代卡片 */
.about-1 .list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.about-1 .list li {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.about-1 .list li:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-1 .list h6 {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-1 .list p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    font-weight: 500;
}

/* 推荐链接 - 现代标签云 */
.recommended-links-modern {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 40px;
    box-shadow: var(--shadow-elevation);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.recommended-links-modern .linksys {
    font-size: 16px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.recommended-links-modern a {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 15px 15px 0;
    border-radius: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 14px;
    line-height: 2;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.recommended-links-modern a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.6s ease;
    z-index: -1;
}

.recommended-links-modern a:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.recommended-links-modern a:hover::before {
    left: 0;
}

/* 询盘表单样式修复 - 确保边框和内容可见 */
.Auxil-form {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 70px 50px;
    border-radius: 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.grid-box.two>.column {
    width: 100%;
}

.Auxil-form .title {
    font-size: 28px;
    line-height: 1.2;
    color: #1e40af;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.Auxil-form form {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.Auxil-form .grid-box.two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.Auxil-form .wid-100 {
    grid-column: 1 / -1;
}

/* 修复输入框样式 - 确保边框和内容可见 */
.Auxil-form input,
.Auxil-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.6); /* 更明显的白色边框 */
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95); /* 更白的背景确保文字可读 */
    color: #334155; /* 深色文字确保可读性 */
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

/* 确保placeholder文字可见 */
.Auxil-form input::placeholder,
.Auxil-form textarea::placeholder {
    color: #64748b; /* 灰色placeholder文字 */
    font-weight: 500;
    opacity: 1; /* 确保不透明 */
}

/* 焦点状态 - 更明显的边框 */
.Auxil-form input:focus,
.Auxil-form textarea:focus {
    outline: none;
    border-color: #f59e0b; /* 橙色焦点边框 */
    background: white; /* 纯白背景 */
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3); /* 橙色光晕 */
    transform: translateY(-2px);
}

/* 文本区域样式 */
.Auxil-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
    font-family: inherit;
}

/* 提交按钮样式 */
.Auxil-form input[type="submit"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    padding: 18px 30px;
    border-radius: 10px;
    text-transform: uppercase;
}

.Auxil-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.Auxil-form input[type="submit"]:active {
    transform: translateY(-1px);
}

/* 表单字段标签样式（如果需要显示标签） */
.form-field {
    position: relative;
    margin-bottom: 0;
}

/* 为每个输入框添加视觉标签效果 */
.Auxil-form input:not([type="submit"])::before,
.Auxil-form textarea::before {
    display: none;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .Auxil-form {
        padding: 50px 30px;
        margin: 40px 0;
    }
    
    .Auxil-form .title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .Auxil-form .grid-box.two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .Auxil-form input,
    .Auxil-form textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .Auxil-form input[type="submit"] {
        padding: 16px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .Auxil-form {
        padding: 40px 20px;
    }
    
    .Auxil-form .title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
}



/* 移动端换行修复 */
.editor-module {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 确保所有文本元素都能正确换行 */
.editor-module p,
.editor-module li,
.editor-module td,
.editor-module th,
.editor-module span,
.editor-module div {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* 特别处理表格在移动端的显示 */
.editor-module table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

.editor-module table th,
.editor-module table td {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 60px; /* 确保表格单元格有最小宽度 */
}

/* 处理长单词和URL的换行 */
.editor-module a {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* 处理连续字符（如长数字、无空格英文） */
.editor-module {
    overflow-wrap: break-word;
}

/* 移动端特定样式 */
@media (max-width: 768px) {
    /* 基础字体大小调整 */
    .editor-module {
        font-size: 16px;
        line-height: 1.6;
        padding: 25px 20px;
    }
    
    /* 段落换行优化 */
    .editor-module p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 1.2em;
        text-align: justify;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* 列表项换行 */
    .editor-module li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0.8em;
        word-break: break-word;
        padding-left: 25px;
        padding-right: 10px;
    }
    
    /* 标题换行 */
    .editor-module h1,
    .editor-module h2,
    .editor-module h3,
    .editor-module h4,
    .editor-module h5,
    .editor-module h6 {
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .editor-module h1 {
        font-size: 1.8em;
    }
    
    .editor-module h2 {
        font-size: 1.6em;
    }
    
    .editor-module h3 {
        font-size: 1.4em;
    }
    
    .editor-module h4 {
        font-size: 1.2em;
    }
    
    /* 表格移动端优化 */
    .editor-module table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .editor-module table th,
    .editor-module table td {
        min-width: 100px;
        font-size: 14px;
        padding: 10px 8px;
    }
    
    /* 特别处理规格表格 */
    .info-column1 table {
        font-size: 14px;
    }
    
    .info-column1 table th,
    .info-column1 table td {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    /* 处理长英文单词 */
    .editor-module {
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }
    
    /* 确保内容矩阵在移动端正确显示 */
    .content-matrix {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .main-content-column,
    .sidebar-content-column {
        width: 100%;
    }
}

/* 针对小屏手机的额外优化 */
@media (max-width: 480px) {
    .editor-module {
        padding: 20px 15px;
        font-size: 15px;
    }
    
    .editor-module p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .editor-module li {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .editor-module table {
        font-size: 13px;
    }
    
    .editor-module table th,
    .editor-module table td {
        padding: 8px 6px;
        font-size: 13px;
    }
    
    /* 强制换行处理 */
    .editor-module * {
        max-width: 100%;
    }
}

/* 处理特定情况的长内容 */
.editor-module pre,
.editor-module code {
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
}

/* 确保图片不会破坏布局 */
.editor-module img {
    max-width: 100%;
    height: auto;
}

/* 处理浮动元素 */
.editor-module .float-left,
.editor-module .float-right {
    float: none;
    margin: 10px 0;
}

@media (min-width: 769px) {
    .editor-module .float-left {
        float: left;
        margin: 0 20px 10px 0;
    }
    
    .editor-module .float-right {
        float: right;
        margin: 0 0 10px 20px;
    }
}


/* 修复列表项样式 - 确保数字不遮盖内容 */
.editor-module ul,
.editor-module ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.editor-module li {
    position: relative;
    padding: 12px 15px 12px 50px; /* 增加左边距给数字留空间 */
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-word;
}

/* 修复数字图标位置 */
.editor-module li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8em;
    z-index: 1;
}

/* 为每个列表项设置不同的数字 */
.editor-module li:nth-child(1)::before { content: '1'; }
.editor-module li:nth-child(2)::before { content: '2'; }
.editor-module li:nth-child(3)::before { content: '3'; }
.editor-module li:nth-child(4)::before { content: '4'; }
.editor-module li:nth-child(5)::before { content: '5'; }
.editor-module li:nth-child(6)::before { content: '6'; }
.editor-module li:nth-child(7)::before { content: '7'; }
.editor-module li:nth-child(8)::before { content: '8'; }
.editor-module li:nth-child(9)::before { content: '9'; }
.editor-module li:nth-child(10)::before { content: '10'; }

/* 移动端优化 */
@media (max-width: 768px) {
    .editor-module li {
        padding: 10px 12px 10px 45px; /* 移动端调整间距 */
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .editor-module li::before {
        width: 24px;
        height: 24px;
        left: 12px;
        font-size: 0.7em;
    }
}

/* 如果是无序列表，使用圆点而不是数字 */
.editor-module ul li::before {
    content: '';
    background: #10b981; /* 绿色圆点 */
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.editor-module ul li::after {
    display: none; /* 清除可能的多余内容 */
}

/* 确保有序列表保持数字 */
.editor-module ol {
    counter-reset: list-counter;
}

.editor-module ol li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8em;
}

/* 移动端有序列表调整 */
@media (max-width: 768px) {
    .editor-module ol li::before {
        width: 24px;
        height: 24px;
        font-size: 0.7em;
    }
}