.home {
    width: 100%;
    height: calc(100vh - 400px);
    overflow: hidden;
    position: relative;

}

.home .banner-img {
    width: 100%;
}

.banner {
    height: 100%;
    position: relative;
}

.banner::after {
    transition: 1s;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(31, 161, 160, 0.6);
    z-index: 1;
    width: 100%;
    height: 100%;
}

.home .banner-font {
    text-align: center;
    color: white;
    position: absolute;
    z-index: 2;
    top: calc(50% - 0px);
    width: 100%;
    letter-spacing: 10px;
}

.home .banner-font p {
    font-size: 100px;
    letter-spacing: 3px;
    opacity: 0.4;
}

.subtitle {
    font-size: 35px;
    text-align: center;
    color: #1FA1A0;
    margin-top: 50px;
    letter-spacing: 3px;
}

.subtitle-english {
    font-size: 15px;
    text-align: center;
    color: rgb(101, 101, 101);
    margin-top: -12px;
    margin-bottom: 30px;
}

.department-title {
    width: 100%;
    background-color: #e4f7f7;
    padding-top: 30px;
    padding-bottom: 100px;
}

.department-name {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: 80px;
}

.department-introduction {
    font-size: 20px;
    text-align: center;
    font-weight: lighter;
}

.recruit-email {
    font-size: 20px;
    color: rgb(101, 101, 101);
    text-align: center;
}

.join-Recruitment {
    margin-top: 60px;
}

.moreJob-title {
    position: relative;
    letter-spacing: 3px;
    font-size: 20px;
}

.moreJob-title::after {
    position: absolute;
    content: "";
    width: 120px;
    height: 3px;
    background-color: #1FA1A0;
    bottom: -10px;
    left: 0;
}

.moreJob-title-english {
    font-size: 15px;
}

.moreJob-title,
.moreJob-title-english {

    color: #1FA1A0;
}

strong {
    font-size: 18px;
    color: #1FA1A0;
    display: block;
    margin-bottom: 20px;
    margin-top: 30px;
}

ol li {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 1px;
}

.moreJob-detail {
    margin-bottom: 100px;
}





/* 平板和手机 */
@media (max-width: 992px) {
    .home {
        height: 230px;
    }

    .home .banner-font {
        top: calc(50% + 10px);
    }

    .home .banner-font p {
        font-size: 25px;
    }

    .subtitle {
        font-size: 25px;
    }

    .department-title {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .department-name {
        font-size: 25px;
        margin-top: 20px;
    }

    .department-introduction {
        font-size: 18px;
    }

    strong {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    ol li {
        font-size: 15px;
    }

    .moreJob-detail {
        margin-bottom: 50px;
    }
    .recruit-email {
        font-size: 18px;
    }
}


/* 笔记本电脑 */
@media screen and (max-width: 1920px) and (min-width:1024px) {
    .home {
        height: calc(100vh - 150px);
    }
}