
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        /* 页面容器 */
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        /* 标题区域 */
        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .main-title {
            font-size: 28px;
            font-weight: 700;
            color: #0f4c81;
            margin-bottom: 10px;
        }
        .sub-title {
            font-size: 16px;
            color: #666;
            max-width: 1200px;
            margin: 0 auto;
        }
        /* 表格容器 - 适配超宽表格 */
        .table-wrapper {
            overflow-x: auto;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            margin-bottom: 30px;
        }
        /* 表格样式 */
        .manufacturer-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1400px;
        }
        .manufacturer-table th {
            background-color: #0f4c81;
            color: #fff;
            padding: 14px 10px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            white-space: nowrap;
            border-right: 1px solid #1a6bb9;
        }
        .manufacturer-table th:last-child {
            border-right: none;
        }
        .manufacturer-table td {
            padding: 12px 10px;
            font-size: 12px;
            color: #444;
            border-bottom: 1px solid #eee;
            border-right: 1px solid #f0f0f0;
            vertical-align: top;
        }
        .manufacturer-table td:last-child {
            border-right: none;
        }
        .manufacturer-table tr:nth-child(even) {
            background-color: #f9fbff;
        }
        .manufacturer-table tr:hover {
            background-color: #f0f7ff;
        }
        /* 高亮核心信息 */
        .company-name {
            font-weight: 600;
            color: #0f4c81;
        }
        .country {
            font-weight: 500;
            color: #2a78c4;
        }
        /* 官网链接样式 */
        .website-link {
            color: #0f4c81;
            text-decoration: none;
            font-weight: 500;
        }
        .website-link:hover {
            color: #2a78c4;
            text-decoration: underline;
        }
        /* 联系方式区域（沿用之前样式） */
        .contact-section {
            background-color: #0f4c81;
            color: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            font-size: 16px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .contact-section a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .contact-section a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        /* 响应式优化 */
        @media (max-width: 768px) {
            .main-title {
                font-size: 24px;
            }
            .manufacturer-table th,
            .manufacturer-table td {
                padding: 10px 8px;
                font-size: 11px;
            }
            .contact-section {
                font-size: 14px;
                padding: 15px;
            }
        }
    