.conTopImg_img .text_show {
    padding-top: 240px;
}

.strength {
    background: #f5f5f5;
    padding: 60px 0 120px;
}

.strength .title {
    width: auto;
    font-size: 36px;
    color: #363636;
}

.strength .six {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.strength .sixBox {
    position: relative;
    width: 400px;
    height: 248px;
    border: 1px solid #D4D4D4;
    text-align: center;
    box-sizing: border-box;
    /* 确保边框和内边距不影响宽度计算 */
    margin-bottom: 56px;
    overflow: hidden;
}

.strength .sixBox::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    /* 从底部开始 */
    width: 100%;
    height: 0;
    /* 初始高度为0，不可见 */
    background-color: #fff;
    /* 覆盖背景色 */
    transition: height 0.3s ease;
    /* 高度过渡动画 */
    z-index: 0;
    /* 确保在内容下方 */
}

.strength .sixBox .six_part {
    position: relative;
    z-index: 1;
}

.strength .sixBox:hover::after {
    height: 100%;
}

.strength .sixBox:hover {
    border: 0;
}

.strength .six_part img {
    width: 62px;
    height: 62px;
    padding-top: 34px;
}

.strength .six_part .part_b {
    font-size: 24px;
    color: #363636;
    padding: 26px 0 20px;
}

.strength .six_part .part_t {
    font-size: 14px;
    color: #363636;
    line-height: 18px;
    padding: 0 30px;
}

/* 咨询 */
.consultIN {
    display: flex;
    justify-content: space-between;
    width: auto;
    height: 392px;
    background: #fff;
    margin-top: 70px;
}

.consultIN .consult_text {
    padding: 38px 0 0 30px;
}

.consultIN .consult_text img {
    width: 164px;
    height: 54px;
}

.consultIN .consult_text .consult_i {
    font-size: 18px;
    color: #363636;
    margin-top: 30px;
}

.consultIN .consult_text .consult {
    width: 184px;
    height: 46px;
    background-color: #ED6A90;
    border-radius: 8px;
    border: 0;
    color: #fff;
    font-size: 20px;
    margin-top: 42px;
}

.consultIN .consult_text .consult:hover {
    background-color: #d54d74;
}

.consultIN .consult_img {
    width: 836px;
    height: 392px;
    overflow: hidden;
}

.consultIN .consult_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.consultIN .consult_img:hover img {
    transform: scale(1.2);
}