
    /* 整个版块的背景色 */
    .custom-capabilities-section {
        background-color: #f5f5f5;
        padding: 30px 30px;
        text-align: center;
        /* 继承 body 的统一字体 */
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    /* 标题样式 */
    .section-title {
        font-size: 28px;
        font-weight: bold;
        color: #333;
        margin-bottom: 40px;
    }

    /* 内容容器 */
    .capabilities-container {
        display: flex;
        flex-wrap: wrap; /* 允许项目换行（实现两行） */
        justify-content: center;
        gap: 10px; /* PC端项目之间的间距 */
        max-width: 1200px;
        margin: 0 auto;
    }

    /* 单个内容块样式 - 调整为每行4个 */
    .capability-item {
        /*
        设置为 4 个项目平分空间，并考虑 10px 的间距。
        calc(25% - 7.5px) 是 (100% - 3 * 10px 间距) / 4 的近似值，用于精确布局。
        */
        flex: 0 0 calc(25% - 7.5px); 
        max-width: calc(25% - 7.5px); 
        background-color: #f5f5f5;
        padding: 0px;
        border-radius: 8px;
        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 {
            flex: 0 0 100%; /* 移动端强制占满一行 */
            max-width: 100%; /* 移动端全宽 */
        }

        .section-title {
            font-size: 24px;
        }
    }
