/* 现代化企业介绍页面样式 */
        :root {
            --primary-color: #a32024; /* 企业主色-红色 */
            --secondary-color: #0056b3; /* 辅助色-蓝色 */
            --accent-color: #28a745; /* 强调色-绿色 */
            --text-dark: #333333; /* 深色文字 */
            --text-light: #666666; /* 浅色文字 */
            --bg-light: #f8f9fa; /* 浅色背景 */
            --border-color: #e0e0e0; /* 边框颜色 */
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        
        /* 文章内容现代化样式 */
        .article {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
        }
        
        .article p {
            margin-bottom: 1.2em;
            font-size: 16px;
            
        }
        
        .article strong {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .article img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        /* 企业价值观卡片样式 */
        .company-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .value-card {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .value-card h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        
        .value-card .value-content {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .value-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            color: rgba(163, 32, 36, 0.1);
            font-size: 40px;
        }
        
        /* 企业优势展示 */
        .company-advantages {
            background: var(--bg-light);
            border-radius: var(--radius);
            padding: 40px;
            margin: 40px 0;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: var(--radius);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .advantage-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 24px;
        }
        
        .advantage-item h4 {
            color: var(--text-dark);
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        /* 时间线样式 - 企业发展历程 */
        .company-timeline {
            position: relative;
            margin: 50px 0;
            padding-left: 30px;
        }
        
        .company-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
        
        .timeline-year {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .timeline-content {
            background: white;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        /* 产品领域展示 */
        .product-domains {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .domain-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .domain-card:hover {
            transform: translateY(-5px);
        }
        
        .domain-header {
            background: linear-gradient(135deg, var(--primary-color), #8a1b1f);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .domain-header h3 {
            margin: 0;
            font-size: 18px;
        }
        
        .domain-content {
            padding: 25px;
        }
        
        .domain-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .domain-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-color);
            position: relative;
            padding-left: 20px;
        }
        
        .domain-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }
        
        /* 团队介绍 */
        .team-section {
            background: linear-gradient(135deg, var(--bg-light) 0%, #e8e8e8 100%);
            padding: 50px;
            border-radius: var(--radius);
            margin: 50px 0;
            text-align: center;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .member-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), #2980b9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 30px;
        }
        
        .member-role {
            color: var(--primary-color);
            font-weight: 600;
            margin: 10px 0 5px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .company-values,
            .advantages-grid,
            .product-domains,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .company-advantages {
                padding: 20px;
            }
            
            .team-section {
                padding: 30px 20px;
            }
            
            .article p {
                font-size: 15px;
            }
            
            .value-card {
                padding: 20px;
            }
        }
        
        /* 现代化标题样式 */
        .modern-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 15px;
            font-weight: 600;
        }
        
        .modern-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .modern-subtitle {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
            font-weight: 500;
        }
        
        /* 现代化引用样式 */
        .modern-quote {
            border-left: 4px solid var(--primary-color);
            padding: 20px 30px;
            margin: 30px 0;
            background: var(--bg-light);
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            position: relative;
        }
        
        .modern-quote::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: rgba(163, 32, 36, 0.2);
            font-family: Georgia, serif;
        }
        
        /* 现代化列表样式 */
        .modern-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }
        
        .modern-list li {
            padding: 12px 0 12px 35px;
            position: relative;
            margin-bottom: 8px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .modern-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            top: 12px;
            color: var(--primary-color);
            font-size: 12px;
        }
        
        /* 现代化按钮样式 */
        .modern-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(163, 32, 36, 0.2);
        }
        
        .modern-btn:hover {
            background: #8a1b1f;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(163, 32, 36, 0.3);
            color: white;
        }
        
        /* 现代化卡片容器 */
        .modern-card {
            background: white;
            border-radius: var(--radius);
            padding: 35px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary-color);
        }
        
        /* 联系信息现代化 */
        .contact-modern {
            background: linear-gradient(135deg, var(--primary-color) 0%, #8a1b1f 100%);
            color: white;
            padding: 40px;
            border-radius: var(--radius);
            text-align: center;
            margin: 40px 0;
        }
        
        .contact-modern h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-item i {
            font-size: 20px;
        }
        
        /* 页面容器优化 */
        .container .wrap {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .main {
            padding: 10px 0 0 10px !important;
        }
        
        /* 现代化分隔线 */
        .modern-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
            margin: 40px 0;
        }