.development_2_box {
    width: 100%;
    padding: calc(30px + 5rem) 0;

    .development_2 {
        max-width: 1400px;
        width: 85%;
        margin: auto;
    }
}

.development_2_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc(3px + 3rem);

    .development_2_main_item {
        width: 24.2857%;
        transition: .5s;
        background: linear-gradient(-46deg, #E1E7EB, #F7F7F9);
        border-radius: calc(0px + 0.2rem);
        padding: 0 calc(4px + 1.5rem);
        padding-bottom: calc(16px + 2rem);

        .development_2_main_item_icon {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: calc(2px + 2rem);

            .deve2_icon_left {
                width: calc(2px + 3rem);
                height: calc(2px + 3rem);
                background: linear-gradient(-46deg, #4196E1, #0072C1);
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    height: calc(3px + 1.5rem);
                }
            }

            .deve2_icon_right {
                width: calc(8px + 1rem);

                img {
                    width: 100%;
                    display: none;
                }

                img:nth-of-type(1) {
                    display: block;
                }
            }
        }

        .deve2_title {
            margin-top: calc(7px + 1rem);

            p:nth-of-type(1) {
                font-family: Microsoft YaHei;
                font-weight: bold;
                font-size: calc(4px + 1rem);
                color: #444C51;

            }

            p:nth-of-type(2) {
                font-family: Microsoft YaHei;
                font-weight: 400;
                font-size: calc(6px 0.5rem);
                color: #333333;

                opacity: 0.7;
                margin-top: calc(3px + 0.25rem);
            }
        }

        .deve2_con {
            margin-top: calc(6px + 2rem);
            font-family: Microsoft YaHei;
            font-weight: 300;
            font-size: calc(6px + 0.5rem);
            color: #666666;
            line-height: calc(8px + 1rem);
        }
    }

    .development_2_main_item:hover {
        background: linear-gradient(-46deg, #4196E1, #0072C1);

        .deve2_icon_right {
            img:nth-of-type(1) {
                display: none;
            }

            img:nth-of-type(2) {
                display: block;
            }
        }


        .deve2_icon_left {
            background: #FFFFFF24;
        }

        .deve2_title {
            p:nth-of-type(1) {
                color: #ffffff;
            }

            p:nth-of-type(2) {
                color: #ffffff;
                opacity: 0.7;
            }
        }

        .deve2_con {
            color: #ffffff;
        }
    }

}


.deve2_zhaopin {
    margin-top: calc(15px + 5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;

    .deve_zhaopin_item {
        width: 49%;
        height: calc(25px + 15rem);
        border-radius: calc(0px + 0.2rem);
        position: relative;

        .deve_zhaopin_item_pic {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .deve_zhaopin_item_text {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: calc(0px + 0.5rem);

            p:nth-of-type(1) {
                font-family: Microsoft YaHei;
                font-weight: bold;
                font-size: calc(10px + 1rem);
                color: #FFFFFF;
            }

            p:nth-of-type(2) {

                font-family: Microsoft YaHei;
                font-weight: 400;
                font-size: calc(6px + 0.5rem);
                color: #FFFFFF;
                opacity: 0.6;
            }
        }
    }
}

@media (max-width: 1100px) {
    .development_2_main {
        flex-wrap: wrap;

        .development_2_main_item {
            width: 48.5%;

            .development_2_main_item_icon {
                .deve2_icon_left {
                    width: calc(15px + 3rem);
                    height: calc(15px + 3rem);

                    img {
                        height: calc(7px + 1.5rem);
                    }
                }
            }

        }
    }

    .development_2_main {
         .development_2_main_item {
             .deve2_title {
                p:nth-of-type(1) {
                  font-size: calc(14px + 1rem);
                }
            }
            .deve2_con {
                font-size: calc(10px + 1rem);
                line-height: 1.5;
            }
        }
    }
    .deve2_zhaopin{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
        .deve_zhaopin_item{
            width: 100%;
            height: calc(25px + 32rem);
            .deve_zhaopin_item_text {
                p:nth-of-type(1) {
                  font-size: calc(14px + 1rem);
                }
                p:nth-of-type(2){
                    font-size: calc(10px + 1rem);
                }
            }
        }
    }
}