.about-body {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 128px 0;
}
/* 确保包裹容器不影响布局 */
.about-numbers-wrapper {
    width: 100%;
}
.about-left {
    flex: 0 0 330px;
    margin-right: 80px;
}

.about-tip {
    font-size: 20px;
    margin-bottom: 18px;
    color: #222;
}

.about-title {
    font-size: 44px;
    font-weight: 600;
    color: #222;
}

.right-about-text {
    font-size: 16px;
    line-height: 180%;
    color: #666;
}

.right-about-btn {
    margin-top: 80px;
    /* 移除多余顶部边距，让卡片居中 */
    min-width: 600px;
    max-width: 100%;
    display: flex;
}

.right-about-btn-item {
    text-align: center;
    /* 让数字与文字居中，更符合常见统计展示 */
}

.right-about-btn-item2 {
    flex: 0 0 1px;
    /* 让分割线只占极窄宽度，保持 flex:1 会撑开太多 */
    display: flex;
    align-items: center;
    justify-content: center;
        margin: 0 80px;
}

.about-line {
    width: 1px;
    height: 92px;
    /* 与数字区域视觉平衡 */
    background: #222;
    opacity: 0.2;
    border-radius: 2px;
}

/* 数字样式 —— 完全保留你的设计 */
.btn-number-body-style {
    display: flex;
    font-size: 64px;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    align-items: center;

}

.btn-number {
    margin-right: 5px;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    /* 等宽数字，避免跳动 */
    letter-spacing: -0.02em;
}

.btn-text {
    font-size: 16px;
    color: #666;
    font-weight: 450;
    letter-spacing: 0.3px;
    text-align: left;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.youshi-body {
    width: 100%;
    background-color: #194AC3;
    padding: 128px 0;
    background-image: url('../img/index/2.jpg');
      /* background-repeat: repeat; */
      background-size: 100% 100%;
background-repeat: no-repeat;
}

.youshi-style {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.youhsi-item-style {
    /* margin-bottom: 20px; */
    background-color: #fff;
    padding: 48px;
}

.mt {
    margin-bottom: 48px;
}

.item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    margin-bottom: 23px;
}

.youshi-item-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

.item-icon {
    width: 48px;
    height: 48px;
}

.item-icon img {
    width: 100%;
}

.youhsi-item-style .item-text2 {
    font-size: 14px;
    color: #666;
    line-height: 180%;
    opacity: 1;
    margin-bottom: 0;
}

.item-text1 {
    font-size: 20px;
    color: #fff;
    text-align: right;
    margin-bottom: 10px;
    opacity: 0.8;
}

.item-title2 {
    font-size: 44px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 67px;
    color: #fff;
}

.rongyu-body {
    padding: 128px 0;
    background-color: #F4F4F4;
}

.rongyu {
    width: 1200px;
    margin: 0 auto;
}

.rongyu-top {
    margin-bottom: 70px;
}

.tongyu-tip {
    font-size: 20px;
    margin-bottom: 16px;
}

.tongyu-title {
    font-weight: bold;
    font-size: 44px;
}

.conten-list {
    display: flex;
    flex-wrap: wrap;
    /* 允许换行 */
    gap: 30px;
    /* 间距（可选） */
}

.conten-item {
    flex: 0 0 380px;
    /* 减去 gap 的修正 */
    /* 或使用 width + flex-shrink: 0 */
    height: 384px;
    flex-shrink: 0;
    background-color: #fff;
    position: relative;
}

.conten-text-tips {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 28px;
}

.conten-item-img-style {
    height: calc(384px - 65px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.conten-item img {
    display: inline-block;
}