
    /* 共享样式 */
        .special-container_12345 {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }
 h3 {
            text-align: center; /* 居中显示 */
        }

        .special-item_12345 {
            box-sizing: border-box;
            text-align: center;
            margin: 0 15px;
            margin-bottom: 30px;
            width: 22%; /* 一行的四等分 */
        }

        .special-item_12345 img {
            width: 120px; /* 宽度为120px */
            height: 120px; /* 高度为120px */
        }

        .special-title_12345 {
            font-size: 26px;
            color: #29293a;
        }

        .special-description_12345 {
            font-size: 16px;
            color: #8b8b8b;
        }

        @media screen and (max-width: 600px) {
            /* 在小屏幕上，一行显示2个元素，每个元素宽度为50% */
            .special-container_12345 {
                justify-content: space-between;
            }
            .special-item_12345 {
                width: 42%; /* 2 items in a row for mobile */
            }
        }
 .section-title {
            text-align: center; /* 居中显示 */
            margin-top: 30px; /* 设置上边距为50px */
            margin-bottom: 30px; /* 设置下边距为50px */
            font-size: 36px; /* 设置标题字体大小 */
        }
    