/* Tab 导航栏 */
.nav-tabs {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 0.0625rem solid #DDD; /* 1px 转换为 0.0625rem */
}

.nav-tabs .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    width: 33.3333%;
    text-align: center;
}

.nav-tabs .nav-link {
    background-color: #003F7B;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 0.625rem 0; /* 10px 转换为 0.625rem */
}

.nav-tabs .nav-link.active {
    background-color: #2B85FB;
    color: #ffffff;
}

/* Tab 内容 */
.tab-content {
    border-color: #DDD;
    border-width: 0.0625rem;
    border-style: solid;
    padding: 1.5rem; /* 24px 转换为 1.5rem */
    box-sizing: border-box; /* 确保 padding 不影响宽度计算 */
    margin: 0;
}

/* 去掉 container 的内边距 */
.container {
    padding: 0;
}

/* 按钮组 */
.btn-group {
    display: flex;
    width: 60%;
    margin-bottom: 0.5rem; /* 按钮之间的间距 */
}

.btn-group .btn {
    flex: 1; /* 按钮宽度按比例缩放 */
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    padding: 0.75rem; /* 内边距 */
    border-style: solid;
    border-width: 0.125rem; /* 2px 转换为 0.125rem */
    border-color: #DDD;
    border-radius: 0.25rem; /* 4px 转换为 0.25rem */
    background-color: #f8f9fa; /* 默认背景色 */
    color: #333; /* 默认文本颜色 */
    box-sizing: border-box;
    margin-right: 1.5rem; /* 按钮之间的间距 */
    font-size: 0.875rem; /* 14px 转换为 0.875rem */
}

.btn-group .btn.active,
.btn-group .btn:focus,
.btn-group .btn:hover {
    background-color: #eaf3ff; /* 激活状态背景色 */
    color: #333; /* 激活状态文本颜色 */
    border-color: #2B85FB; /* 激活状态边框颜色 */
    box-shadow: none;
}

/* 媒体查询调整按钮的宽度在移动端 */
@media (max-width: 576px) {
    .btn-group {
        width: 100%; /* 按钮组宽度改为 100% */
    }

    .btn-group .btn {
        padding: 0.5rem; /* 调整内边距 */
        margin-right: 0.5rem; /* 调整按钮之间的间距 */
        font-size: 0.625rem; /* 字体大小进一步缩小 */
    }
}

/* 表格样式 */
.table {
    width: 100%; /* 确保表格宽度 100% */
    table-layout: fixed; /* 固定列宽布局 */
    overflow-x: auto; /* 添加水平滚动条 */
    font-size: 0.75rem; /* 字体大小调整 */
    border-collapse: separate; /* 取消表格边框合并 */
    border-spacing: 0; /* 去除单元格之间的间距 */
}

.table th, .table td {
    padding: 0.375rem; /* 内边距调整 */
    border: 1px solid #DDD; /* 边框颜色 */
    vertical-align: middle; /* 垂直居中对齐 */
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden; /* 隐藏超出内容 */
    font-size: 0.625rem; /* 字体大小进一步缩小 */
}

.table thead th {
    border-bottom: none; /* 去掉表头下划线 */
}

/* 奇数偶数行背景色，不包含表头 */
.table tbody tr:nth-child(odd) {
    background-color: #F5F5F5;
}

.table tbody tr:nth-child(even) {
    background-color: #FFFFFF;
}

/* 悬浮时行的背景色 */
.table tbody tr:hover {
    background-color: #003F7B; /* 悬浮背景色 */
    color: #fff;
}

/* 表格无边框样式 */
.table-no-border {
    border-collapse: collapse; /* 确保表格边框合并 */
}

.table-no-border th,
.table-no-border td {
    border: none; /* 去掉单元格边框 */
    padding: 0.75rem; /* 内边距调整 */
    font-size: 0.9rem; /* 字体大小进一步缩小 */
}

.table-no-border th {
    font-weight: bold; /* 表头文字加粗 */
}

/* 按钮样式 */
.button-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem; /* 转换为 rem */
    height: auto;
    border-width: 0.0625rem; /* 1px 转换为 0.0625rem */
    border-style: solid;
    border-color: #2B85DB;
    background: #2B85DB;
    color: #fff;
    border-radius: 0.25rem; /* 4px 转换为 0.25rem */
    cursor: pointer;
    position: relative;
}
@media (max-width: 576px) {
    .table-no-border th, .table-no-border td {
        border: none;
        padding: 0.25rem;
        font-size: 0.325rem;
    }
    .button-g{
        padding: 0.1rem 0.2rem;
    }
}
.table-more {
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.head-service{
    min-height: 300px;
}
.body-container{
    text-align: center;
}
.title-row{
    text-align: center;
    color: #fff;
    padding: 50px;
}

.imgs-row{
    display: flex;
    justify-content: space-around;
    padding: 20px;
    /* margin-top: 40px; */
}
.img-item{
    width: 7.1875rem;         /* 圆的宽度 */
    height: 7.1875rem;        /* 圆的高度，和宽度相等 */
    background-color: #fff; /* 背景色为白色 */
    border-radius: 50%;
}
.service-item{
    text-align: center;
}

.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #0088cc; /* Telegram 蓝色 */
    border-radius: 50%;
    text-align: center;
    color: white;
    font-size: 28px; /* 图标大小 */
    cursor: pointer;
}
/* .icon-circle:hover,.icon-circle:active{
    color: white;
} */