/*[2025/12/24 15:54:00] This file is generated by code, DO NOT edit this file! */
/* 1. 确保整体四个项在页面水平居中 */
#bceddd4cea96 .design-customer-service .row {
    display: flex !important;
    justify-content: center !important; 
    flex-wrap: wrap !important;
}

/* 2. 确保每个小项内部（图标+文字）垂直居中对齐 */
#bceddd4cea96 .design-customer-service .item {
    display: flex !important;
    flex-direction: column !important; /* 强制垂直排列 */
    align-items: center !important;    /* 核心：图标和文字水平居中对齐 */
    text-align: center !important;
    float: none !important;
    padding: 10px !important;
}

/* 3. 增加图标与下方文字之间的距离 */
#bceddd4cea96 .design-customer-service .item .icon, 
#bceddd4cea96 .design-customer-service .item img {
    margin-bottom: 3px !important;    /* 这里的 20px 可以根据你的喜好调大或调小 */
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 4. 确保标题文字没有多余的边距干扰对齐 */
#bceddd4cea96 .design-customer-service .item h4 {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
    display: block !important;
}