@charset "utf-8";
/* CSS Document */

body {
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

a {
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    border: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cb {
    clear: both;
    height: 0;
}

li {
    list-style: none;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
label,
input,
textarea,
img,
ul,
li,
dl,
dt,
dd {
    padding: 0;
    margin: 0;
}

.img_scale {
    overflow: hidden;
}

.img_scale img {
    transition: 0.6s all;
    -webkit-transition: 0.6s all;
}

.img_scale:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
}

.hide {
    display: none;
}

.dis_flex {
    display: flex;
}

.justify_space_between {
    justify-content: space-between;
}

.justify_left {
    justify-content: left;
}

.justify_center {
    justify-content: center;
}

.justify_end {
    justify-content: end;
}

.align-items-center {
    align-items: center;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    width: 100%;
    height: 127px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* 头部右侧 */
.header-right {
    height: 127px;
}

.header-right .header-top {
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 28px;
}

.header-right .header-top a {
    color: #fff;
    font-size: 16px;
    padding: 0 10px;
}



.search-box {
    position: relative;
    height: 50px;
    width: 250px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
}

.search-box input {
    width: 250px;
    height: 50px;
    padding: 0 40px 0 15px;
    font-size: 14px;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}

.search-box input::placeholder {
    color: #fff;
}

.search-box .search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    background: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

/* 主导航样式 */

.main-nav {
    display: flex;
    list-style: none;
    position: relative;
    justify-content: space-between;
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

.nav-link:hover {
    color: #fff;
    text-decoration: none;
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: 72px;
    left: -40px;
    background: linear-gradient(to bottom, #ffffff 0%, #d2efff 100%);
    min-width: 220px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 15px 0;
}

/* 蓝色箭头 */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 100px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #288aee;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 24px;
    color: #373737;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.dropdown-item:hover {
    color: #fff;
    background: url(../images/nav_bgnew.png) left bottom no-repeat;
    text-decoration: none;
}

/* 首页特殊处理，没有下拉菜单 */
.nav-item:first-child .nav-link {
    color: #fff;
}

/* Banner区域 */
.banner {
    height: 920px;
    position: relative;
    overflow: hidden;
}

.banner .mask01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/mask01.png) top repeat-x;
    z-index: 10;
}

.banner .mask02 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/mask02.png) bottom center no-repeat;
    z-index: 10;
    height: 77px;
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    position: relative;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-pagination {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: auto;
    z-index: 10;
}

/* .banner .swiper-pagination-bullet {
    width: 27px;
    height: 27px;
    background: url(../images/swiper-pagination01.png) no-repeat;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
    background: url(../images/swiper-pagination02.png) no-repeat;
} */

.banner .swiper-button-prev,
.banner .swiper-button-next {
    color: #fff;
    font-size: 16px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
    font-size: 24px !important;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.ny_banner {
    height: 920px;
    position: relative;
    width: 100%;
}

.ny_banner .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/mask01.png) top repeat-x;
    z-index: 10;
}

.bg06 {
    background: url(../images/bg06.png) top right no-repeat;
}

.bg07 {
    background: url(../images/bg07.png) bottom left no-repeat;
}

.ny_header {
    height: 135px;
    background: linear-gradient(to bottom, #0d5baf 0%, #2b86d3 100%);
}

.ny_header .header-right {
    height: 135px;
}

.ny_bg01 {
    background: url(../images/ny_bg01.png) bottom center no-repeat #d9ebfb;
    padding: 80px 0;
}

.ny_white {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 表格容器 - 用于实现滚动 */
.table-container {
    max-height: 600px;
    overflow-y: auto;
    border-radius: 10px;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

/* 表头样式 */
table th {
    background: url(../images/ny07.png) repeat-x;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* 表格单元格样式 */
table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    vertical-align: top;
}

/* 表格行样式 */
table tr {
    transition: background-color 0.3s ease;
}

/* 表格行悬停效果 */
table tr:hover {
    background: #f0f8ff;
}

/* 表格最后一列边框 */
table th:last-child,
table td:last-child {
    border-right: none;
}

/* 表格滚动条样式 */
.table-container::-webkit-scrollbar {
    width: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #0063af;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #0056a0;
}

.copyright {
    background: #1685c7;
    padding: 15px 20px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.bg04 {
    background: url(../images/bg04.png) bottom center no-repeat;
}

.bg05 {
    background: url(../images/bg05.png) top center no-repeat;
}
.page_detail{
    padding: 20px;
}
.page_detail .detail_header{
    border-bottom: 1px solid #caced1;
    text-align: center;
    padding-bottom: 20px;
}
.page_detail .detail_header h2{
    color: #373737;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.page_detail .detail_header p{
    color: #777777;
}
.page_detail .content{
    padding: 20px;
    line-height: 1.5;
    font-size: 16px;
    color: #373737;
}

@media screen and (min-width: 1720px) {
    .wrapper {
        width: 1600px;
    }

    .openFacultyPositionInDut {
        width: 100%;
        height: 600px;
    }

    .openFacultyPositionInDut .t {
        text-align: center;
        padding: 40px 0 20px 0;
    }

    .openFacultyPositionInDut .con {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 20px;
    }

    .openFacultyPositionInDut .con .item {
        width: 270px;
        height: 325px;
        background: #fff;
        border-radius: 25px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 16px 14px 26px 12px;
    }

    .openFacultyPositionInDut .con .item .img {
        width: 270px;
        height: 152px;
    }

    .openFacultyPositionInDut .con .item .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
    }

    .openFacultyPositionInDut .con .item .txt {
        padding-top: 20px;
        min-height: 120px;
    }

    .openFacultyPositionInDut .con .item .txt h2 {
        font-size: 18px;
        color: #292929;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
        text-align: center;
    }

    .openFacultyPositionInDut .con .item .txt p {
        font-size: 12px;
        color: #bcbcbc;
        margin-bottom: 10px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .openFacultyPositionInDut .con .item .more {
        text-align: center;
    }

    .openFacultyPositionInDut .con .item .more a {
        color: #288aee;
        text-decoration: none;
        display: inline-block;
        background: linear-gradient(90deg, #0063af 0%, #2390e3);
        padding: 5px 10px;
        border-radius: 20px;
        color: #fff;
        font-size: 18px;
    }

    .openFacultyPositionInDut .con .item:hover {
        background: url(../images/index03.png) no-repeat;
        background-size: 100% 100%;
    }

    .openFacultyPositionInDut .con .item:hover .txt h2,
    .openFacultyPositionInDut .con .item:hover .txt p {
        color: #fff;
    }

    .openFacultyPositionInDut .con .item:hover .more a {
        color: #0854bc;
        background: linear-gradient(90deg, #f6fbfe 0%, #d8eeff);
    }

    .TalentRecruitment {
        background: url(../images/bg01.png) bottom center no-repeat;
        height: 650px;
        background-size: auto 100%;
    }

    .TalentRecruitment .t {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 160px;
    }

    .TalentRecruitment .con {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        height: 378px;
        align-items: center;
    }

    .TalentRecruitment .con .item {
        width: 397px;
        height: 303px;
        position: relative;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .pic {
        width: 397px;
        height: 303px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item h2 {
        height: 40px;
        width: 347px;
        color: #fff;
        background: linear-gradient(to right, #0bbafb 0%, #3b8cee);
        padding: 20px 25px;
        font-size: 18px;
        position: absolute;
        left: 0;
        bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .date {
        width: 62px;
        height: 68px;
        position: absolute;
        top: 14px;
        left: 14px;
        background: linear-gradient(90deg, #4eb0e8 0%, #1384c5);
        color: #fff;
        font-size: 12px;
        line-height: 24px;
        text-align: center;
        border-radius: 25px 0 25px 0;
    }

    .TalentRecruitment .con .item .date span {
        display: block;
        line-height: 43px;
        border-top: 1px solid #fff;
        font-size: 24px;
    }

    .TalentRecruitment .con .item .mask {
        width: 397px;
        height: 303px;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../images/mask03.png) bottom repeat-x;
        display: none;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover {
        width: 672px;
        height: 378px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover .pic {
        width: 672px;
        height: 378px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover h2 {
        background: transparent;
        width: 622px;
        z-index: 11;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover .mask {
        display: block;
        width: 672px;
        height: 378px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .more {
        text-align: center;
    }

    .TalentRecruitment .more a {
        display: inline-block;
        color: #0d549a;
        border: 1px solid #0d549a;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
    }

    .TalentRecruitment .more a:hover {
        background: #0d549a;
        color: #fff;
    }

    .bg02 {
        background: url(../images/bg02.png) bottom center no-repeat;
        height: 800px;
        padding-top: 60px;
    }

    .WhyChooseUs {
        background: url(../images/bg03.png) top center no-repeat;
        height: 780px;
        background-size: 100% 100%;
        padding-left: 360px;
    }

    .WhyChooseUs .t {
        height: 143px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .WhyChooseUs .con {
        height: 520px;
        padding: 20px;
        color: #fff;
        font-size: 30px;
        line-height: 1.5;
    }

    .WhyChooseUs .more {
        text-align: center;
    }

    .WhyChooseUs .more a {
        display: inline-block;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
    }

    .WhyChooseUs .more a:hover {
        background: #fff;
        color: #0d549a;
    }



    .ny_title {
        text-align: center;
        color: #292929;
        font-size: 40px;
        line-height: 1.5;
        padding: 15px 0;
    }

    .RecruitingOrganization {
        margin-bottom: 30px;
    }

    .RecruitingOrganization .RecruitingOrganization_item {
        display: flex;
        justify-content: start;
        align-items: start;
        margin: 15px 0;
    }

    .RecruitingOrganization .RecruitingOrganization_item i {
        color: #2491e4;
        margin-right: 10px;
        font-size: 24px;
    }

    .RecruitingOrganization .RecruitingOrganization_item .c {
        font-weight: bold;
        color: #373737;
        font-size: 24px;
        margin-right: 10px;
    }

    .RecruitingOrganization .RecruitingOrganization_item .term {
        color: #373737;
        font-size: 24px;
        max-width: 800px;
    }

    .RecruitingOrganization_con {
        margin-top: 30px;
        line-height: 2;
        color: #292929;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .RecruitingOrganization_con h2 {
        font-weight: bold;
    }

    .RecruitingOrganization_con .tips {
        color: #1567b9;
    }

    .ny_more {
        text-align: center;
    }

    .ny_more a {
        display: inline-block;
        color: #fff;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
        background: linear-gradient(to bottom, #0063af 0%, #2390e3);
    }

    .ny_more a:hover {
        color: #0854bc;
        background: linear-gradient(to bottom, #f6fbfe 0%, #d8eeff);
    }

    .ny_con {
        padding: 30px 0;
    }

    .ny_left {
        width: 334px;
        background: #fff;
        border-radius: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .ny_left .t {
        height: 80px;
        text-align: center;
        line-height: 80px;
        background: linear-gradient(to bottom, #0063b0 0%, #228cdc);
        color: #fff;
        font-size: 30px;
    }

    .ny_con .ny_left a {
        display: flex;
        height: 60px;
        line-height: 60px;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
    }

    .ny_con .ny_left a i {
        width: 35px;
        height: 35px;
        display: inline-block;
        background: url(../images/ny01.png) center center no-repeat;
    }

    .ny_con .ny_left a span {
        width: 260px;
        display: inline-block;
        color: #373737;
        font-size: 24px;
        text-align: center;
    }

    .ny_con .ny_left a:hover {
        background: linear-gradient(to bottom, #0063b0 0%, #2391e4);
    }

    .ny_con .ny_left a:hover span {
        color: #fff;
    }

    .ny_con .ny_left a.active {
        background: linear-gradient(to bottom, #0063b0 0%, #2391e4);
    }

    .ny_con .ny_left a.active span {
        color: #fff;
    }

    .ny_right {
        width: 1220px;
    }

    .ny_right .ny_white {
        background: rgba(245, 250, 253, 0.4);
        padding: 20px;
        border-radius: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .ny_right .ny_white .txtList .item{
        height: 140px;
        background: linear-gradient(to bottom, #ffffff 0%, #e5f3ff);
        border-radius: 40px 15px 40px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }
    .ny_right .ny_white .txtList .item .item_bg{
        background: url(../images/ny02.png) right center no-repeat;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 140px;
    }
    .ny_right .ny_white .txtList .item .item_bg .date{
        width: 90px;
        height: 100px;
        border-radius: 10px;
        border: 1px solid #1162b4;
        text-align: center;
        color: #0f57a9;
        line-height: 60px;
        font-size: 16px;
        overflow: hidden;
        background: #fff;
    }
    .ny_right .ny_white .txtList .item .item_bg .date span{
        display: block;
        background: linear-gradient(to bottom, #0855bd 0%, #1691e8);
        color: #fff;
        line-height: 40px;
    }
    .ny_right .ny_white .txtList .item .item_bg a{
        width: 1000px;
        color: #373737;
        font-size: 18px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
    }
    .ny_right .ny_white .txtList .item:hover{
        background: linear-gradient(to bottom, #063d77 0%, #228fe1);
    }
    .ny_right .ny_white .txtList .item:hover .item_bg a{
        color: #fff;
    }
    
    .ny_con .ny_white .txtList01 .item{
        height: 140px;
        background: linear-gradient(to bottom, #ffffff 0%, #e5f3ff);
        border-radius: 40px 15px 40px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }
    .ny_con .ny_white .txtList01 .item .item_bg{
        background: url(../images/ny02.png) right center no-repeat;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        height: 140px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg .date{
        width: 90px;
        height: 100px;
        border-radius: 10px;
        border: 1px solid #1162b4;
        text-align: center;
        color: #0f57a9;
        line-height: 60px;
        font-size: 16px;
        overflow: hidden;
        background: #fff;
        margin-right: 20px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg .date span{
        display: block;
        background: linear-gradient(to bottom, #0855bd 0%, #1691e8);
        color: #fff;
        line-height: 40px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg a{
        color: #373737;
        font-size: 18px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
        max-width: 1350px;
    }
    .ny_con .ny_white .txtList01 .item:hover{
        background: linear-gradient(to bottom, #063d77 0%, #228fe1);
    }
    .ny_con .ny_white .txtList01 .item:hover .item_bg a{
        color: #fff;
    }
}

@media screen and (max-width: 1719px) and (min-width: 1600px) {
    .wrapper {
        width: 1400px;
    }

    .openFacultyPositionInDut {
        width: 100%;
        height: 600px;
    }

    .openFacultyPositionInDut .t {
        text-align: center;
        padding: 40px 0 20px 0;
    }

    .openFacultyPositionInDut .con {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 20px;
    }

    .openFacultyPositionInDut .con .item {
        width: 250px;
        height: 301px;
        background: #fff;
        border-radius: 25px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 16px 14px 26px 12px;
    }

    .openFacultyPositionInDut .con .item .img {
        width: 250px;
        height: 141px;
    }

    .openFacultyPositionInDut .con .item .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
    }

    .openFacultyPositionInDut .con .item .txt {
        padding-top: 20px;
        min-height: 120px;
    }

    .openFacultyPositionInDut .con .item .txt h2 {
        font-size: 18px;
        color: #292929;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
        text-align: center;
    }

    .openFacultyPositionInDut .con .item .txt p {
        font-size: 12px;
        color: #bcbcbc;
        margin-bottom: 10px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .openFacultyPositionInDut .con .item .more {
        text-align: center;
    }

    .openFacultyPositionInDut .con .item .more a {
        color: #288aee;
        text-decoration: none;
        display: inline-block;
        background: linear-gradient(90deg, #0063af 0%, #2390e3);
        padding: 5px 10px;
        border-radius: 20px;
        color: #fff;
        font-size: 18px;
    }

    .openFacultyPositionInDut .con .item:hover {
        background: url(../images/index03.png) no-repeat;
        background-size: 100% 100%;
    }

    .openFacultyPositionInDut .con .item:hover .txt h2,
    .openFacultyPositionInDut .con .item:hover .txt p {
        color: #fff;
    }

    .openFacultyPositionInDut .con .item:hover .more a {
        color: #0854bc;
        background: linear-gradient(90deg, #f6fbfe 0%, #d8eeff);
    }

    .TalentRecruitment {
        background: url(../images/bg01.png) bottom center no-repeat;
        height: 650px;
        background-size: auto 100%;
    }

    .TalentRecruitment .t {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 160px;
    }

    .TalentRecruitment .con {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        height: 378px;
        align-items: center;
    }

    .TalentRecruitment .con .item {
        width: 397px;
        height: 303px;
        position: relative;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .pic {
        width: 397px;
        height: 303px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item h2 {
        height: 40px;
        width: 347px;
        color: #fff;
        background: linear-gradient(to right, #0bbafb 0%, #3b8cee);
        padding: 20px 25px;
        font-size: 18px;
        position: absolute;
        left: 0;
        bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .date {
        width: 62px;
        height: 68px;
        position: absolute;
        top: 14px;
        left: 14px;
        background: linear-gradient(90deg, #4eb0e8 0%, #1384c5);
        color: #fff;
        font-size: 12px;
        line-height: 24px;
        text-align: center;
        border-radius: 25px 0 25px 0;
    }

    .TalentRecruitment .con .item .date span {
        display: block;
        line-height: 43px;
        border-top: 1px solid #fff;
        font-size: 24px;
    }

    .TalentRecruitment .con .item .mask {
        width: 397px;
        height: 303px;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../images/mask03.png) bottom repeat-x;
        display: none;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover {
        width: 600px;
        height: 338px;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .TalentRecruitment .con .item:hover .pic {
        width: 600px;
        height: 338px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover h2 {
        background: transparent;
        width: 550px;
        z-index: 11;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover .mask {
        display: block;
        width: 600px;
        height: 338px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .more {
        text-align: center;
    }

    .TalentRecruitment .more a {
        display: inline-block;
        color: #0d549a;
        border: 1px solid #0d549a;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
    }

    .TalentRecruitment .more a:hover {
        background: #0d549a;
        color: #fff;
    }

    .bg02 {
        background: url(../images/bg02.png) bottom center no-repeat;
        height: 800px;
        padding-top: 60px;
    }

    .WhyChooseUs {
        background: url(../images/bg03.png) top center no-repeat;
        height: 780px;
        background-size: 100% auto;
        padding-left: 316px;
    }

    .WhyChooseUs .t {
        height: 143px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .WhyChooseUs .con {
        height: 440px;
        padding: 20px;
        color: #fff;
        font-size: 30px;
        line-height: 1.5;
    }

    .WhyChooseUs .more {
        text-align: center;
    }

    .WhyChooseUs .more a {
        display: inline-block;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
    }

    .WhyChooseUs .more a:hover {
        background: #fff;
        color: #0d549a;
    }

    .ny_title {
        text-align: center;
        color: #292929;
        font-size: 40px;
        line-height: 1.5;
        padding: 15px 0;
    }

    .RecruitingOrganization {
        margin-bottom: 30px;
    }

    .RecruitingOrganization .RecruitingOrganization_item {
        display: flex;
        justify-content: start;
        align-items: start;
        margin: 15px 0;
    }

    .RecruitingOrganization .RecruitingOrganization_item i {
        color: #2491e4;
        margin-right: 10px;
        font-size: 24px;
    }

    .RecruitingOrganization .RecruitingOrganization_item .c {
        font-weight: bold;
        color: #373737;
        font-size: 24px;
        margin-right: 10px;
    }

    .RecruitingOrganization .RecruitingOrganization_item .term {
        color: #373737;
        font-size: 24px;
        max-width: 800px;
    }

    .RecruitingOrganization_con {
        margin-top: 30px;
        line-height: 2;
        color: #292929;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .RecruitingOrganization_con h2 {
        font-weight: bold;
    }

    .RecruitingOrganization_con .tips {
        color: #1567b9;
    }

    .ny_more {
        text-align: center;
    }

    .ny_more a {
        display: inline-block;
        color: #fff;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
        background: linear-gradient(to bottom, #0063af 0%, #2390e3);
    }

    .ny_more a:hover {
        color: #0854bc;
        background: linear-gradient(to bottom, #f6fbfe 0%, #d8eeff);
    }
    .ny_con {
        padding: 30px 0;
    }

    .ny_left {
        width: 334px;
        background: #fff;
        border-radius: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .ny_left .t {
        height: 80px;
        text-align: center;
        line-height: 80px;
        background: linear-gradient(to bottom, #0063b0 0%, #228cdc);
        color: #fff;
        font-size: 30px;
    }

    .ny_con .ny_left a {
        display: flex;
        height: 60px;
        line-height: 60px;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
    }

    .ny_con .ny_left a i {
        width: 35px;
        height: 35px;
        display: inline-block;
        background: url(../images/ny01.png) center center no-repeat;
    }

     .ny_con .ny_left a span {
        width: 260px;
        display: inline-block;
        color: #373737;
        font-size: 24px;
        text-align: center;
    }

    .ny_con .ny_left a:hover {
        background: linear-gradient(to bottom, #0063b0 0%, #2391e4);
    }

    .ny_con .ny_left a:hover span {
        color: #fff;
    }

    .ny_con .ny_left a.active {
        background: linear-gradient(to bottom, #0063b0 0%, #2391e4);
    }

    .ny_con .ny_left a.active span {
        color: #fff;
    }

    .ny_right {
        width: 1020px;
    }

    .ny_right .ny_white {
        background: rgba(245, 250, 253, 0.4);
        padding: 20px;
        border-radius: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .ny_right .ny_white .txtList .item{
        height: 140px;
        background: linear-gradient(to bottom, #ffffff 0%, #e5f3ff);
        border-radius: 40px 15px 40px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }
    .ny_right .ny_white .txtList .item .item_bg{
        background: url(../images/ny02.png) right center no-repeat;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 140px;
    }
    .ny_right .ny_white .txtList .item .item_bg .date{
        width: 90px;
        height: 100px;
        border-radius: 10px;
        border: 1px solid #1162b4;
        text-align: center;
        color: #0f57a9;
        line-height: 60px;
        font-size: 16px;
        overflow: hidden;
    }
    .ny_right .ny_white .txtList .item .item_bg .date span{
        display: block;
        background: linear-gradient(to bottom, #0855bd 0%, #1691e8);
        color: #fff;
        line-height: 40px;
    }
    .ny_right .ny_white .txtList .item .item_bg a{
        width: 810px;
        color: #373737;
        font-size: 18px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ny_right .ny_white .txtList .item:hover{
        background: linear-gradient(to bottom, #063d77 0%, #228fe1);
    }
    .ny_right .ny_white .txtList .item:hover .item_bg a{
        color: #fff;
    }

    .ny_con .ny_white .txtList01 .item{
        height: 140px;
        background: linear-gradient(to bottom, #ffffff 0%, #e5f3ff);
        border-radius: 40px 15px 40px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }
    .ny_con .ny_white .txtList01 .item .item_bg{
        background: url(../images/ny02.png) right center no-repeat;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        height: 140px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg .date{
        width: 90px;
        height: 100px;
        border-radius: 10px;
        border: 1px solid #1162b4;
        text-align: center;
        color: #0f57a9;
        line-height: 60px;
        font-size: 16px;
        overflow: hidden;
        background: #fff;
        margin-right: 20px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg .date span{
        display: block;
        background: linear-gradient(to bottom, #0855bd 0%, #1691e8);
        color: #fff;
        line-height: 40px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg a{
        color: #373737;
        font-size: 18px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
        max-width: 1150px;
    }
    .ny_con .ny_white .txtList01 .item:hover{
        background: linear-gradient(to bottom, #063d77 0%, #228fe1);
    }
    .ny_con .ny_white .txtList01 .item:hover .item_bg a{
        color: #fff;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1200px) {
    .wrapper {
        width: 1200px;
    }

    .openFacultyPositionInDut {
        width: 100%;
        height: 600px;
    }

    .openFacultyPositionInDut .t {
        text-align: center;
        padding: 40px 0 20px 0;
    }

    .openFacultyPositionInDut .con {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 20px;
    }

    .openFacultyPositionInDut .con .item {
        width: 220px;
        height: 285px;
        background: #fff;
        border-radius: 25px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 16px 14px 26px 12px;
    }

    .openFacultyPositionInDut .con .item .img {
        width: 220px;
        height: 124px;
    }

    .openFacultyPositionInDut .con .item .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
    }

    .openFacultyPositionInDut .con .item .txt {
        padding-top: 20px;
        min-height: 120px;
    }

    .openFacultyPositionInDut .con .item .txt h2 {
        font-size: 18px;
        color: #292929;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
        text-align: center;
    }

    .openFacultyPositionInDut .con .item .txt p {
        font-size: 12px;
        color: #bcbcbc;
        margin-bottom: 10px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .openFacultyPositionInDut .con .item .more {
        text-align: center;
    }

    .openFacultyPositionInDut .con .item .more a {
        color: #288aee;
        text-decoration: none;
        display: inline-block;
        background: linear-gradient(90deg, #0063af 0%, #2390e3);
        padding: 5px 10px;
        border-radius: 20px;
        color: #fff;
        font-size: 18px;
    }

    .openFacultyPositionInDut .con .item:hover {
        background: url(../images/index03.png) no-repeat;
        background-size: 100% 100%;
    }

    .openFacultyPositionInDut .con .item:hover .txt h2,
    .openFacultyPositionInDut .con .item:hover .txt p {
        color: #fff;
    }

    .openFacultyPositionInDut .con .item:hover .more a {
        color: #0854bc;
        background: linear-gradient(90deg, #f6fbfe 0%, #d8eeff);
    }

    .TalentRecruitment {
        background: url(../images/bg01.png) bottom center no-repeat;
        height: 650px;
        background-size: auto 100%;
    }

    .TalentRecruitment .t {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 160px;
    }

    .TalentRecruitment .con {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        height: 378px;
        align-items: center;
    }

    .TalentRecruitment .con .item {
        width: 397px;
        height: 303px;
        position: relative;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .pic {
        width: 397px;
        height: 303px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item h2 {
        height: 40px;
        width: 347px;
        color: #fff;
        background: linear-gradient(to right, #0bbafb 0%, #3b8cee);
        padding: 20px 25px;
        font-size: 18px;
        position: absolute;
        left: 0;
        bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item .date {
        width: 62px;
        height: 68px;
        position: absolute;
        top: 14px;
        left: 14px;
        background: linear-gradient(90deg, #4eb0e8 0%, #1384c5);
        color: #fff;
        font-size: 12px;
        line-height: 24px;
        text-align: center;
        border-radius: 25px 0 25px 0;
    }

    .TalentRecruitment .con .item .date span {
        display: block;
        line-height: 43px;
        border-top: 1px solid #fff;
        font-size: 24px;
    }

    .TalentRecruitment .con .item .mask {
        width: 397px;
        height: 303px;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../images/mask03.png) bottom repeat-x;
        display: none;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover {
        width: 397px;
        height: 303px;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .TalentRecruitment .con .item:hover .pic {
        width: 397px;
        height: 303px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover h2 {
        background: transparent;
        width: 347px;
        z-index: 11;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .con .item:hover .mask {
        display: block;
        width: 397px;
        height: 303px;
        transition: all 0.3s ease;
    }

    .TalentRecruitment .more {
        text-align: center;
    }

    .TalentRecruitment .more a {
        display: inline-block;
        color: #0d549a;
        border: 1px solid #0d549a;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
    }

    .TalentRecruitment .more a:hover {
        background: #0d549a;
        color: #fff;
    }

    .bg02 {
        background: url(../images/bg02.png) bottom center no-repeat;
        height: 620px;
        padding-top: 60px;
    }

    .WhyChooseUs {
        background: url(../images/bg03.png) top center no-repeat;
        height: 580px;
        background-size: 100% auto;
        padding-left: 270px;
    }

    .WhyChooseUs .t {
        height: 106px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .WhyChooseUs .con {
        height: 380px;
        padding: 20px;
        color: #fff;
        font-size: 24px;
        line-height: 1.5;
    }

    .WhyChooseUs .more {
        text-align: center;
    }

    .WhyChooseUs .more a {
        display: inline-block;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
    }

    .WhyChooseUs .more a:hover {
        background: #fff;
        color: #0d549a;
    }

    .ny_title {
        text-align: center;
        color: #292929;
        font-size: 40px;
        line-height: 1.5;
        padding: 15px 0;
    }

    .RecruitingOrganization {
        margin-bottom: 30px;
    }

    .RecruitingOrganization .RecruitingOrganization_item {
        display: flex;
        justify-content: start;
        align-items: start;
        margin: 15px 0;
    }

    .RecruitingOrganization .RecruitingOrganization_item i {
        color: #2491e4;
        margin-right: 10px;
        font-size: 24px;
    }

    .RecruitingOrganization .RecruitingOrganization_item .c {
        font-weight: bold;
        color: #373737;
        font-size: 24px;
        margin-right: 10px;
    }

    .RecruitingOrganization .RecruitingOrganization_item .term {
        color: #373737;
        font-size: 24px;
        max-width: 800px;
    }

    .RecruitingOrganization_con {
        margin-top: 30px;
        line-height: 2;
        color: #292929;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .RecruitingOrganization_con h2 {
        font-weight: bold;
    }

    .RecruitingOrganization_con .tips {
        color: #1567b9;
    }

    .ny_more {
        text-align: center;
    }

    .ny_more a {
        display: inline-block;
        color: #fff;
        border-radius: 20px;
        padding: 5px 10px;
        font-size: 18px;
        text-decoration: none;
        background: linear-gradient(to bottom, #0063af 0%, #2390e3);
    }

    .ny_more a:hover {
        color: #0854bc;
        background: linear-gradient(to bottom, #f6fbfe 0%, #d8eeff);
    }
    .ny_con {
        padding: 30px 0;
    }

    .ny_left {
        width: 334px;
        background: #fff;
        border-radius: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .ny_left .t {
        height: 80px;
        text-align: center;
        line-height: 80px;
        background: linear-gradient(to bottom, #0063b0 0%, #228cdc);
        color: #fff;
        font-size: 30px;
    }

    .ny_con .ny_left a {
        display: flex;
        height: 60px;
        line-height: 60px;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
    }

    .ny_con .ny_left a i {
        width: 35px;
        height: 35px;
        display: inline-block;
        background: url(../images/ny01.png) center center no-repeat;
    }

    .ny_con .ny_left a span {
        width: 260px;
        display: inline-block;
        color: #373737;
        font-size: 24px;
        text-align: center;
    }

    .ny_con .ny_left a:hover {
        background: linear-gradient(to bottom, #0063b0 0%, #2391e4);
    }

    .ny_con .ny_left a:hover span {
        color: #fff;
    }

    .ny_con .ny_left a.active {
        background: linear-gradient(to bottom, #0063b0 0%, #2391e4);
    }

    .ny_con .ny_left a.active span {
        color: #fff;
    }

    .ny_right {
        width: 820px;
    }

    .ny_right .ny_white {
        background: rgba(245, 250, 253, 0.4);
        padding: 20px;
        border-radius: 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .ny_right .ny_white .txtList .item{
        height: 140px;
        background: linear-gradient(to bottom, #ffffff 0%, #e5f3ff);
        border-radius: 40px 15px 40px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }
    .ny_right .ny_white .txtList .item .item_bg{
        background: url(../images/ny02.png) right center no-repeat;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 140px;
    }
    .ny_right .ny_white .txtList .item .item_bg .date{
        width: 90px;
        height: 100px;
        border-radius: 10px;
        border: 1px solid #1162b4;
        text-align: center;
        color: #0f57a9;
        line-height: 60px;
        font-size: 16px;
        overflow: hidden;
    }
    .ny_right .ny_white .txtList .item .item_bg .date span{
        display: block;
        background: linear-gradient(to bottom, #0855bd 0%, #1691e8);
        color: #fff;
        line-height: 40px;
    }
    .ny_right .ny_white .txtList .item .item_bg a{
        width: 610px;
        color: #373737;
        font-size: 18px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ny_right .ny_white .txtList .item:hover{
        background: linear-gradient(to bottom, #063d77 0%, #228fe1);
    }
    .ny_right .ny_white .txtList .item:hover .item_bg a{
        color: #fff;
    }

    .ny_con .ny_white .txtList01 .item{
        height: 140px;
        background: linear-gradient(to bottom, #ffffff 0%, #e5f3ff);
        border-radius: 40px 15px 40px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }
    .ny_con .ny_white .txtList01 .item .item_bg{
        background: url(../images/ny02.png) right center no-repeat;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        height: 140px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg .date{
        width: 90px;
        height: 100px;
        border-radius: 10px;
        border: 1px solid #1162b4;
        text-align: center;
        color: #0f57a9;
        line-height: 60px;
        font-size: 16px;
        overflow: hidden;
        background: #fff;
        margin-right: 20px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg .date span{
        display: block;
        background: linear-gradient(to bottom, #0855bd 0%, #1691e8);
        color: #fff;
        line-height: 40px;
    }
    .ny_con .ny_white .txtList01 .item .item_bg a{
        color: #373737;
        font-size: 18px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
        max-width: 950px;
    }
    .ny_con .ny_white .txtList01 .item:hover{
        background: linear-gradient(to bottom, #063d77 0%, #228fe1);
    }
    .ny_con .ny_white .txtList01 .item:hover .item_bg a{
        color: #fff;
    }
}