.hire_box {
    width: 100%;
    padding: calc(30px + 5rem) 0;

    .hire {
        max-width: 1400px;
        width: 85%;
        margin: auto;
    }
}

.hire_main {
    margin-top: calc(19px + 2rem);
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: calc(1px + 1.5rem);
    row-gap: calc(2px + 2rem);

    .hire_main_item {
        width: 31.8571%;
        height: calc(87px + 5rem);
        background: #FFFFFF;
        box-shadow: 0px 0px calc(6px + 0.5rem) 0px rgba(0, 0, 0, 0.08);
        border-radius: calc(6px + 0.5rem) 0px calc(6px + 0.5rem) 0px;

        .hire_con {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;

            gap: calc(9px + 0.5rem);

            .hire_con1 {
                font-family: Microsoft YaHei;
                font-weight: 400;
                font-size: calc(6px + 1rem);
                color: #333333;
                line-height: 1;
            }

            .hire_con2 {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: calc(2px + 0.5rem);

                p:nth-of-type(1) {
                    font-family: Microsoft YaHei;
                    font-weight: 400;
                    font-size: calc(6px + 0.5rem);
                    color: #0072C1;
                    line-height: 1;
                }

                p:nth-of-type(2) {
                    font-family: Microsoft YaHei;
                    font-weight: 400;
                    font-size: calc(6px + 0.5rem);
                    color: #666666;
                    line-height: 1;
                    border-left: 1px #DAE3EF solid;
                    padding-left: calc(2px + 0.5rem);
                }

            }

            .hire_con3 {
                font-family: Microsoft YaHei;
                font-weight: 400;
                font-size: calc(6px + 0.5rem);
                color: #989CB2;
                line-height: 1;
                margin-top: calc(3px + 0.25rem);
            }
        }

        .hire_more {
            width: calc(6px + 2rem);

            img {
                width: 100%;
                display: none;
            }

            img:nth-of-type(1) {
                display: block;
            }
        }
    }
}

.hire_main_item {
    a {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: calc(14px + 5rem);
    }
}

.hire_main_item:hover {
    .hire_more {

        img:nth-of-type(1) {
            display: none;
        }

        img:nth-of-type(2) {
            display: block;
        }
    }
}

@media (max-width: 1100px) {
    .hire_main {
        .hire_main_item {
            width: 100%;

            .hire_con {
                .hire_con1 {
                    font-size: calc(14px + 1rem);
                }

                .hire_con2 {
                    p:nth-of-type(1) {
                        font-size: calc(10px + 1rem);
                    }

                    p:nth-of-type(2) {
                        font-size: calc(10px + 1rem);
                    }

                }

                .hire_con3 {
                    font-size: calc(10px + 1rem);
                }
            }

            .hire_more {
                width: calc(6px + 10rem);
            }
        }
    }

    .hire_main_item {
        a {

            gap: calc(14px + 16rem);
        }
    }
}