/* 页面容器 */
        .company-introduction-container {
            max-width: 1420px;
            margin: 40px auto;
            padding: 0 15px;
			padding-top: 115px;
        }

        /* 标题样式 */
        .company-section-title {
            font-size: 28px;
            color: #c00;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
            border-bottom: 2px solid #c00;
            padding-bottom: 10px;
        }

        /* 内容区域样式 */
        .company-section {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            padding: 20px;
            transition: transform 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .company-section:hover {
            transform: translateY(-10px);
        }

        /* 图标样式 */
        .company-section .icon {
            font-size: 40px;
            color: #c00;
            margin-bottom: 15px;
        }

        /* 内容文字样式 */
        .company-section .section-content {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
            text-align: center;
        }

        /* Flex 布局，三列展示，每行3个 */
        .company-sections {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 每行3个 */
            gap: 30px;
        }

        .company-sections .company-section {
            flex: 1;
        }

        /* 响应式设计：适配移动端 */
        @media (max-width: 768px) {
            .company-section-title {
                font-size: 24px;
            }

            .company-section .section-content {
                font-size: 14px;
                line-height: 1.6;
            }

            .company-sections {
                grid-template-columns: 1fr; /* 在移动端每行1个 */
            }

            .company-sections .company-section {
                flex: 1 1 100%;
                margin-bottom: 20px;
            }
        }