﻿/* ------------------------------------------------------------------------------ 解决方案 */
.ins_solutionCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    padding-top: 70px;
    padding-bottom: 100px;
    overflow: hidden;
}

    .ins_solutionCon1 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_solutionCon1 .center_box .ins_title .f20 {
            margin-top: 10px;
        }

        .ins_solutionCon1 .center_box .select_box {
            width: fit-content;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            margin-top: var(--num_100);
            position: relative;
            z-index: 1;
        }

            .ins_solutionCon1 .center_box .select_box::after {
                content: '';
                position: absolute;
                z-index: 1;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 100%;
                border-radius: 100px;
                border: 1px solid #d1d1d1;
                -webkit-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .ins_solutionCon1 .center_box .select_box .item {
                min-height: 42px;
                font-size: var(--font16);
                padding: 0 25px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                cursor: pointer;
                position: relative;
                z-index: 2;
                border-radius: 100px;
            }

                .ins_solutionCon1 .center_box .select_box .item span {
                    -webkit-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                .ins_solutionCon1 .center_box .select_box .item:hover span {
                    color: #FFF;
                }

                .ins_solutionCon1 .center_box .select_box .item.active {
                    background: #e60012;
                }

                    .ins_solutionCon1 .center_box .select_box .item.active span {
                        color: #FFF;
                    }

        .ins_solutionCon1 .center_box .item_box {
            width: 100%;
            height: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--num_70) 30px;
            margin-top: var(--num_80);
        }

            .ins_solutionCon1 .center_box .item_box .item {
                width: 100%;
                height: auto;
                cursor: pointer;
            }

                .ins_solutionCon1 .center_box .item_box .item .images {
                    width: 100%;
                    height: auto;
                    border-radius: var(--border-radius20);
                    overflow: hidden;
                    position: relative;
                    z-index: 1;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                }

                    .ins_solutionCon1 .center_box .item_box .item .images .icon {
                        position: absolute;
                        z-index: 7;
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        background: #e60012;
                        transform: translateY(-20px);
                        opacity: 0;
                        -webkit-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }

                        .ins_solutionCon1 .center_box .item_box .item .images .icon img {
                            filter: brightness(0) invert(1);
                        }

                    .ins_solutionCon1 .center_box .item_box .item .images::after {
                        content: '';
                        position: absolute;
                        z-index: 6;
                        bottom: 0;
                        right: 0;
                        width: 100%;
                        height: 100%;
                        background: #000000;
                        opacity: 0;
                        -webkit-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                        border-radius: var(--border-radius20);
                    }

                    .ins_solutionCon1 .center_box .item_box .item .images .pb {
                        padding-bottom: 58%;
                    }

                        .ins_solutionCon1 .center_box .item_box .item .images .pb .ab img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            -webkit-transition: all 0.3s ease;
                            -o-transition: all 0.3s ease;
                            transition: all 0.3s ease;
                        }

                .ins_solutionCon1 .center_box .item_box .item .f24 {
                    margin-top: 20px;
                    font-weight: 700;
                    -webkit-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                .ins_solutionCon1 .center_box .item_box .item .f16 {
                    margin-top: 20px;
                    height: calc(2em * 1.5);
                    line-height: 1.5;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                }

                .ins_solutionCon1 .center_box .item_box .item .list {
                    margin-top: 20px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    gap: 10px;
                    flex-wrap: wrap;
                    -ms-flex-wrap: wrap;
                }

                    .ins_solutionCon1 .center_box .item_box .item .list .one {
                        font-size: var(--font14);
                        width: auto;
                        height: auto;
                        background: #f5f5f5;
                        min-height: 32px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        padding: 5px 16px;
                        border-radius: 100px;
                        color: #666666;
                        -webkit-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }

                        .ins_solutionCon1 .center_box .item_box .item .list .one:hover {
                            background: #e60012;
                            color: #FFFFFF;
                        }

                .ins_solutionCon1 .center_box .item_box .item:hover .f24 {
                    color: #e60012;
                }

                .ins_solutionCon1 .center_box .item_box .item:hover .images .icon {
                    transform: translateY(0);
                    opacity: 1;
                }

                .ins_solutionCon1 .center_box .item_box .item:hover .images::after {
                    opacity: 0.5;
                }

                .ins_solutionCon1 .center_box .item_box .item:hover .images .pb .ab img {
                    transform: scale(1.02);
                    filter: blur(10px);
                }

@media (max-width:990px) {
    .ins_solutionCon1 {
        padding: 50px 0;
    }

        .ins_solutionCon1 .center_box .item_box {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
        }
}

.ins_solutionbdtCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    padding-top: 100px;
    overflow: hidden;
}

    .ins_solutionbdtCon1 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_solutionbdtCon1 .center_box .ins_title .f20 {
            margin-top: 10px;
        }

        .ins_solutionbdtCon1 .center_box .item_box {
            width: 100%;
            height: auto;
            padding-top: var(--num_60);
            padding-bottom: var(--num_80);
            position: relative;
            z-index: 1;
            margin-top: var(--num_60);
        }

            .ins_solutionbdtCon1 .center_box .item_box::after {
                content: '';
                position: absolute;
                z-index: 1;
                bottom: 0;
                left: 50%;
                transform: translateX(-50vw);
                width: 100vw;
                height: 100%;
                background: #f5f5f5;
                -webkit-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .ins_solutionbdtCon1 .center_box .item_box .item {
                width: 100%;
                height: auto;
                position: relative;
                z-index: 2;
                background: #FFFFFF;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                padding: 40px;
                border-radius: var(--border-radius16);
                -webkit-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

                .ins_solutionbdtCon1 .center_box .item_box .item .images {
                    width: 37.83%;
                    border-radius: 8px;
                    overflow: hidden;
                }

                    .ins_solutionbdtCon1 .center_box .item_box .item .images .pb {
                        padding-bottom: 60.728%;
                    }

                .ins_solutionbdtCon1 .center_box .item_box .item .word_box {
                    width: 56.75%;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -ms-flex-direction: column;
                    -webkit-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    -webkit-justify-content: space-between;
                    justify-content: space-between;
                }

                    .ins_solutionbdtCon1 .center_box .item_box .item .word_box .font_box {
                        width: 100%;
                        height: auto;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: -webkit-flex;
                        display: flex;
                        -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                        -webkit-justify-content: space-between;
                        justify-content: space-between;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        -webkit-align-items: center;
                        align-items: center;
                        gap: 20px;
                    }

                        .ins_solutionbdtCon1 .center_box .item_box .item .word_box .font_box .font {
                            width: auto;
                            height: auto;
                        }

                            .ins_solutionbdtCon1 .center_box .item_box .item .word_box .font_box .font .f24 {
                                font-weight: 800;
                                -webkit-transition: all 0.3s ease;
                                -o-transition: all 0.3s ease;
                                transition: all 0.3s ease;
                            }

                            .ins_solutionbdtCon1 .center_box .item_box .item .word_box .font_box .font .f16 {
                                margin-top: 10px;
                            }

                        .ins_solutionbdtCon1 .center_box .item_box .item .word_box .font_box .icon {
                            width: var(--num_wh48);
                            height: var(--num_wh48);
                            flex-shrink: 0;
                            border-radius: 50%;
                            border: 1px solid #e5e5e5;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            -webkit-align-items: center;
                            align-items: center;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            -webkit-justify-content: center;
                            justify-content: center;
                            -webkit-transition: all 0.3s ease;
                            -o-transition: all 0.3s ease;
                            transition: all 0.3s ease;
                        }

                            .ins_solutionbdtCon1 .center_box .item_box .item .word_box .font_box .icon img {
                                filter: brightness(0) invert(0);
                                -webkit-transition: all 0.3s ease;
                                -o-transition: all 0.3s ease;
                                transition: all 0.3s ease;
                            }

                    .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box {
                        width: 100%;
                        height: auto;
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 24px;
                    }

                        .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box .list {
                            width: 100%;
                            height: auto;
                            overflow: hidden;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: -webkit-flex;
                            display: flex;
                            gap: 25px;
                            background: #f5f5f5;
                            border-radius: 8px;
                            padding: 10px;
                        }

                            .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box .list .img_box {
                                width: 41.6%;
                                flex-shrink: 0;
                                border-radius: 8px;
                                overflow: hidden;
                            }

                            .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box .list .one_box {
                                width: 100%;
                                height: auto;
                                padding: 20px 0;
                                padding-right: var(--num_60);
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: -webkit-flex;
                                display: flex;
                                -webkit-box-orient: vertical;
                                -ms-flex-direction: column;
                                -webkit-flex-direction: column;
                                flex-direction: column;
                                -webkit-box-pack: justify;
                                -ms-flex-pack: justify;
                                -webkit-justify-content: space-between;
                                justify-content: space-between;
                            }

                                .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box .list .one_box .ins_more {
                                    width: fit-content;
                                    height: auto;
                                    display: -webkit-box;
                                    display: -ms-flexbox;
                                    display: -webkit-flex;
                                    display: flex;
                                    -webkit-box-align: center;
                                    -ms-flex-align: center;
                                    -webkit-align-items: center;
                                    align-items: center;
                                    gap: 8px;
                                    -webkit-transition: all 0.3s ease;
                                    -o-transition: all 0.3s ease;
                                    transition: all 0.3s ease;
                                }

                                    .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box .list .one_box .ins_more span {
                                        font-size: var(--font14);
                                        color: #e60012;
                                    }

                                    .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box .list .one_box .ins_more:hover {
                                        gap: 15px;
                                    }

                .ins_solutionbdtCon1 .center_box .item_box .item:hover {
                    box-shadow: 0px 0px 31.86px 22.14px rgba(56, 44, 45, 0.07);
                }

                    .ins_solutionbdtCon1 .center_box .item_box .item:hover .word_box .font_box .font .f24 {
                        color: #e60012;
                    }

                    .ins_solutionbdtCon1 .center_box .item_box .item:hover .word_box .font_box .icon {
                        background: #e60012;
                        border: 1px solid #e60012;
                    }

                        .ins_solutionbdtCon1 .center_box .item_box .item:hover .word_box .font_box .icon img {
                            filter: brightness(0) invert(1);
                        }

                .ins_solutionbdtCon1 .center_box .item_box .item + .item {
                    margin-top: var(--num_60);
                }

@media (max-width:990px) {
    .ins_solutionbdtCon1 {
        padding: 50px 0;
    }

        .ins_solutionbdtCon1 .center_box .item_box .item {
            flex-direction: column;
            padding: 20px;
        }

            .ins_solutionbdtCon1 .center_box .item_box .item .images,
            .ins_solutionbdtCon1 .center_box .item_box .item .word_box {
                width: 100%;
            }

            .ins_solutionbdtCon1 .center_box .item_box .item .word_box {
                margin-top: 20px;
            }

                .ins_solutionbdtCon1 .center_box .item_box .item .word_box .list_box {
                    display: grid;
                    grid-template-columns: repeat(1, 1fr);
                    margin-top: 20px;
                }
}

.ins_solutionbdtCon2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 90px;
    overflow: hidden;
}

    .ins_solutionbdtCon2 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_solutionbdtCon2 .center_box .ins_title {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            gap: 40px;
        }

            .ins_solutionbdtCon2 .center_box .ins_title .left {
                width: 100%;
                height: auto;
                max-width: 1000px;
            }

                .ins_solutionbdtCon2 .center_box .ins_title .left .f16 {
                    margin-top: 20px;
                    line-height: 1.5;
                }

            .ins_solutionbdtCon2 .center_box .ins_title .right {
                flex-shrink: 0;
            }

                .ins_solutionbdtCon2 .center_box .ins_title .right .ins_more {
                    min-width: clamp(6.25rem, calc(0.096rem + 7.69vw), 8.75rem);
                    height: clamp(2.5rem, calc(0.962rem + 1.92vw), 3.125rem);
                    padding: 0 20px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    gap: 10px;
                    border: 1px solid #e5e5e5;
                    border-radius: 100px;
                    font-size: var(--font16);
                }

                    .ins_solutionbdtCon2 .center_box .ins_title .right .ins_more span,
                    .ins_solutionbdtCon2 .center_box .ins_title .right .ins_more img {
                        -webkit-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }

                    .ins_solutionbdtCon2 .center_box .ins_title .right .ins_more:hover span {
                        color: #FFF;
                    }

                    .ins_solutionbdtCon2 .center_box .ins_title .right .ins_more:hover img {
                        filter: brightness(0) invert(1);
                    }

        .ins_solutionbdtCon2 .center_box .content {
            width: 100%;
            height: auto;
            margin-top: var(--num_80);
        }

            .ins_solutionbdtCon2 .center_box .content .name {
                font-weight: 800;
            }

            .ins_solutionbdtCon2 .center_box .content .item_box {
                width: 100%;
                height: auto;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: var(--num_40);
                margin-top: 30px;
            }

                .ins_solutionbdtCon2 .center_box .content .item_box .item {
                    width: 100%;
                    height: auto;
                    min-height: 208px;
                    box-shadow: 0px 0px 14px 6px rgba(56, 44, 45, 0.05);
                    border-radius: var(--border-radius16);
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -ms-flex-direction: column;
                    -webkit-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                }

                    .ins_solutionbdtCon2 .center_box .content .item_box .item .name {
                        margin-top: var(--num_35);
                        font-size: var(--font18);
                        font-weight: 800;
                    }

@media (max-width:990px) {
    .ins_solutionbdtCon2 {
        padding: 50px 0;
    }

        .ins_solutionbdtCon2 .center_box .ins_title .right {
            display: none;
        }

        .ins_solutionbdtCon2 .center_box .content .item_box {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

            .ins_solutionbdtCon2 .center_box .content .item_box .item {
                min-height: unset !important;
                padding: 20px;
            }

                .ins_solutionbdtCon2 .center_box .content .item_box .item .icon {
                    width: 40px;
                }
}

.ins_solutionbdtCon3 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #F7F7F7;
    padding-top: 60px;
    padding-bottom: 90px;
    overflow: hidden;
}

    .ins_solutionbdtCon3 .center_box {
        width: 100%;
        height: auto;
    }

        .ins_solutionbdtCon3 .center_box .ins_title .f24 {
            font-weight: 800;
        }

        .ins_solutionbdtCon3 .center_box .item_box {
            width: 100%;
            height: auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-orient: vertical;
            -ms-flex-direction: column;
            -webkit-flex-direction: column;
            flex-direction: column;
            gap: var(--num_90) 0;
        }

            .ins_solutionbdtCon3 .center_box .item_box .item {
                width: 100%;
                height: auto;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
            }

                .ins_solutionbdtCon3 .center_box .item_box .item .images {
                    width: 50%;
                    border-radius: var(--border-radius16);
                    overflow: hidden;
                }

                    .ins_solutionbdtCon3 .center_box .item_box .item .images img {
                        width: 100%;
                        height: auto;
                    }

                .ins_solutionbdtCon3 .center_box .item_box .item .word_box {
                    width: 43.58%;
                    padding: 25px;
                }

                    .ins_solutionbdtCon3 .center_box .item_box .item .word_box .title {
                        font-size: var(--font20);
                        font-weight: 800;
                        padding-bottom: 20px;
                        position: relative;
                        z-index: 1;
                    }

                        .ins_solutionbdtCon3 .center_box .item_box .item .word_box .title::after {
                            content: '';
                            position: absolute;
                            z-index: 1;
                            bottom: 0;
                            right: 0;
                            width: 100%;
                            height: 1px;
                            background: #e8e8e8;
                            -webkit-transition: all 0.3s ease;
                            -o-transition: all 0.3s ease;
                            transition: all 0.3s ease;
                        }

                        .ins_solutionbdtCon3 .center_box .item_box .item .word_box .title::before {
                            content: '';
                            position: absolute;
                            z-index: 2;
                            bottom: 0;
                            left: 0;
                            width: 30px;
                            height: 2px;
                            background: #e60012;
                            -webkit-transition: all 0.3s ease;
                            -o-transition: all 0.3s ease;
                            transition: all 0.3s ease;
                        }

                    .ins_solutionbdtCon3 .center_box .item_box .item .word_box .subtitle {
                        font-size: var(--font16);
                        line-height: 1.5;
                        margin-top: 40px;
                    }

                .ins_solutionbdtCon3 .center_box .item_box .item:nth-child(2n) {
                    flex-direction: row-reverse;
                }

@media (max-width:990px) {
    .ins_solutionbdtCon3 .center_box .item_box {
        margin-top: 30px;
        gap: 30px;
    }

        .ins_solutionbdtCon3 .center_box .item_box .item {
            flex-direction: column !important;
        }

            .ins_solutionbdtCon3 .center_box .item_box .item .images,
            .ins_solutionbdtCon3 .center_box .item_box .item .word_box {
                width: 100%;
            }

            .ins_solutionbdtCon3 .center_box .item_box .item .word_box {
                padding: 0;
                padding-bottom: 20px;
            }
}
/* ------------------------------------------------------------------------------  */
