.home .main {
    width: 90%;
    margin: 182px auto 0 auto;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.home .main .lNav {
    width: 300px;
    opacity: 0;
}

.home .main .lNav .item {
    width: 240px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    display: flex;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 600ms;
}

.home .main .lNav .item .pic {
    position: relative;
}

.home .main .lNav .item .pic img {
    transition: all 600ms;
}

.home .main .lNav .item .pic img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.home .main .lNav .item p {
    margin-left: 20px;
    color: #333333;
    font-size: 20px;
    transition: all 600ms;
}

.home .main .lNav .item:hover {
    background: #0994D7;
}

.home .main .lNav .item:hover p {
    color: white;
}

.home .main .lNav .item:hover .pic img:nth-child(1) {
    opacity: 0;
}

.home .main .lNav .item:hover .pic img:nth-child(2) {
    opacity: 1;
}

.home .main .lNav .active {
    background: #0994D7;
}

.home .main .lNav .active p {
    color: white;
}

.home .main .lNav .active .pic img:nth-child(1) {
    opacity: 0;
}

.home .main .lNav .active .pic img:nth-child(2) {
    opacity: 1;
}

.home .main .content {
    width: calc(95% - 300px);
}

.home .main .content .dom1 {
    margin-bottom: 80px;
}

.home .main .content .dom1 .p1 {
    color: #0994D7;
    font-size: 50px;
    margin-bottom: 40px;
}

.home .main .content .dom1 .types {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.home .main .content .dom1 .types .l {
    width: 50px;
    font-weight: bolder;
}

.home .main .content .dom1 .types .r {
    width: calc(100% - 70px);
    display: flex;
}

.home .main .content .dom1 .types .r a {
    display: inline-block;
    padding: 8px 18px;
    color: #666666;
    font-size: 18px;
    transition: all 600ms;
    margin-right: 20px;
}

.home .main .content .dom1 .types .r a:hover {
    background: #0994D7;
    color: white;
}

.home .main .content .dom1 .types .r .active {
    background: #0994D7;
    color: white;
}

.home .main .content .dom1 .types .r select {
    border: none;
    color: #666666;
    font-size: 16px;
    cursor: pointer;
}

.home .main .content .dom1 .allItems {
    margin: 60px 0;
}

.home .main .content .dom1 .allItems .item .d1 {
    border-top: 1px solid rgba(238, 238, 238, 0.6);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.home .main .content .dom1 .allItems .item .d1::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0090D8, #8FC320);
    transition: all 600ms;
}

.home .main .content .dom1 .allItems .item .d1 .l {
    width: calc(98% - 120px);
    margin-left: 3%;
}

.home .main .content .dom1 .allItems .item .d1 .l p {
    color: #111111;
    font-size: 22px;
    margin-bottom: 10px;
}

.home .main .content .dom1 .allItems .item .d1 .l p:hover {
    color: #0994D7;
}

.home .main .content .dom1 .allItems .item .d1 .l .tags {
    display: flex;
    color: #666666;
}

.home .main .content .dom1 .allItems .item .d1 .l .tags span {
    display: inline-block;
    font-family: auto;
}

.home .main .content .dom1 .allItems .item .d1 .r {
    display: flex;
    align-items: center;
    width: 140px;
}

.home .main .content .dom1 .allItems .item .d1 .r img {
    transform: translateY(2px);
}

.home .main .content .dom1 .allItems .item .d1 .r p {
    margin-left: 10px;
}

.home .main .content .dom1 .allItems .item .active::before {
    width: 100%;
}

.home .main .content .dom1 .allItems .item .d2 {
    background: #FFFFFF;
    box-shadow: 0px 14px 28px 0px rgba(0, 0, 0, 0.04);
    width: 94%;
    padding: 30px 3%;
    display: none;
}

.home .main .content .dom1 .allItems .item .d2 .icon {
    position: absolute;
    right: 0;
    top: 30px;
}

.home .main .content .dom1 .allItems .item .d2 .sp1 {
    color: #111111;
    font-size: 22px;
}

.home .main .content .dom1 .allItems .item .d2 .tags {
    display: flex;
    color: #666666;
    justify-content: space-between;
    margin: 20px 0 40px 0;
}

.home .main .content .dom1 .allItems .item .d2 .contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.home .main .content .dom1 .allItems .item .d2 .contents .job {
    width: 48%;
    color: #333333;
    line-height: 2;
}

.home .main .content .dom1 .allItems .item .d2 .contents .job .sp2 {
    color: #333333;
    font-size: 22px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.home .main .content .dom1 .allItems .item .d2 .contents .job .sp2::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0090D8, #8FC320);
    position: absolute;
    left: 5px;
    bottom: 0;
}

.home .main .content .dom1 .allItems .item .d2 a {
    width: 200px;
    height: 50px;
    background: linear-gradient(90deg, #0090D8, #8FC320);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.home .main .content .dom1 .allItems .item .d2 a img {
    width: 18px;
    height: 10px;
    margin-left: 20px;
    transition: all 600ms;
}

.home .main .content .dom1 .allItems .item .d2 a:hover img {
    transform: translateX(10px);
}

.home .main .content .dom1 .allItems .item:last-child .d1 {
    border-bottom: 1px solid rgba(238, 238, 238, 0.6);
}

.home .main .content .dom1 .pager {
    display: flex;
    justify-content: center;
}

.home .main .content .dom1 .pager a {
    color: #666666;
    font-size: 18px;
    margin: 0 15px;
    transition: all 600ms;
    position: relative;
    padding-bottom: 15px;
}

.home .main .content .dom1 .pager a::after {
    content: "";
    display: block;
    background: #0090D8;
    height: 2px;
    width: 0;
    transition: all 600ms;
    position: absolute;
    left: 0;
    bottom: 0;
}

.home .main .content .dom1 .pager a:hover {
    color: #0090D8;
}

.home .main .content .dom1 .pager a:hover::after {
    width: 100%;
}

.home .main .content .dom1 .pager .active {
    color: #0090D8;
}

.home .main .content .dom1 .pager .active::after {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .home .main {
        flex-direction: column;
        margin-top: 75px;
    }

    .home .main .lNav {
        width: 100%;
        margin-bottom: 30px;
        opacity: 1;
    }

    .home .main .lNav .item {
        width: 90%;
        padding: 20px 5%;
    }

    .home .main .content {
        width: 100%;
    }

    .home .main .content .dom1 {
        margin-bottom: 40px;
    }

    .home .main .content .dom1 .p1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .types {
        flex-wrap: wrap;
    }

    .home .main .content .dom1 .types .r {
        width: 100%;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .home .main .content .dom1 .types .r a {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .home .main .content .dom1 .allItems {
        margin: 30px 0;
    }

    .home .main .content .dom1 .allItems .item .d1 {
        flex-wrap: wrap;
    }

    .home .main .content .dom1 .allItems .item .d1 .tags {
        flex-wrap: wrap;
    }

    .home .main .content .dom1 .allItems .item .d1 .tags span {
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .home .main .content .dom1 .allItems .item .d1 .l {
        width: 100%;
        margin-left: 0;
    }

    .home .main .content .dom1 .allItems .item .d2 {
        padding: 10px 3% 30px 3%;
    }

    .home .main .content .dom1 .allItems .item .d2 .icon {
        top: 15px;
    }

    .home .main .content .dom1 .allItems .item .d2 .tags {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .allItems .item .d2 .tags span {
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .home .main .content .dom1 .allItems .item .d2 .contents {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .allItems .item .d2 .contents .job {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*# sourceMappingURL=join.css.map */
