
        /* 整个版块的背景色 */
        .custom-capabilities-section {
            background-color: #f5f5f5;
padding: 30px 30px;
            text-align: center;
            /* 继承 body 的统一字体 */
        }

        /* 标题样式 */
        .section-title {
            font-size: 28px;
font-weight: bold;
            color: #333;
            margin-bottom: 40px;
        }

        /* 内容容器 */
        .capabilities-container {
            display: flex;
justify-content: center;
            gap: 10px; /* PC端项目之间的间距 */
            max-width: 1200px;
margin: 0 auto;
        }

        /* 单个内容块样式 */
        .capability-item {
            flex: 1;
/* PC端平均分配宽度 */
            max-width: 380px;
/* 限制最大宽度 */
            background-color: #f5f5f5;
/* 内容块背景色 */
            padding: 0px;
            border-radius: 8px;
/* 轻微圆角，可选 */
            /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
/* 移除或注释掉此行以去除投影 */
            text-align: left;
}

        /* 图片容器和图片样式 */
        .capability-image {
            margin-bottom: 20px;
}

        .capability-image img {
            width: 100%;
height: auto;
            display: block;
            border-radius: 4px; /* 图片圆角，可选 */
        }

        /* 内容标题样式 */
        .capability-title {
            font-size: 18px;
font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        /* 描述文字样式 */
        .capability-description {
            font-size: 14px;
line-height: 1.6;
            color: #666;
        }

        /* 按钮容器 */
        .button-container {
            margin-top: 10px;
}

        /* 按钮样式 */
        .custom-button {
            display: inline-block;
padding: 12px 30px;
            background-color: #2a494a; /* 按钮颜色 */
            color: #fff;
text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
}

        .custom-button:hover {
            background-color: #3e6d6e;
/* 鼠标悬停时的颜色 */
        }

        /* 移动端适配 (最大宽度768px时，一排只展示一个) */
        @media (max-width: 768px) {
            .capabilities-container {
                flex-direction: column;
/* 垂直排列 */
                gap: 20px;
/* 移动端项目之间的间距 */
                padding: 0 15px;
/* 增加左右内边距 */
            }

            .capability-item {
                max-width: 100%;
/* 移动端全宽 */
            }

            .section-title {
                font-size: 24px;
}
        }
    