/* 确保页面占满整个宽度 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

/* 确保容器类占满宽度 */
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* 确保导航栏占满宽度 */
.navbar {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 确保轮播图占满宽度 */
.owl-carousel {
    width: 100% !important;
}

/* 确保各个 section 占满宽度 */
section {
    width: 100% !important;
}

/* 确保页脚占满宽度 */
.footer {
    width: 100% !important;
}

/* 移除可能的默认边距 */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 确保卡片和内容块占满宽度 */
.service-item,
.feature-item,
.team-item,
.statistic {
    width: 100% !important;
}
