.hatch {
    width: 100%;
}

.header-bg {
}

.banner_swiper {
    height: 250px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.banner_swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper-slide-banner {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.recommend {
    width: var(--content-width);
    margin: var(--title-margin) auto;
}

.recommend-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.recommend-nav-item {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    font-size: 20px;
}

.nav-bg:hover .recommend-item-content {
    background: linear-gradient(-45deg, var(--color) 0%, var(--color) 40%, #fff 50%, var(--color) 60%, var(--color) 100%) 100px 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: slidetounlock 1s;
    -webkit-text-size-adjust: none;
}

@keyframes slidetounlock {
    0% {
        background-position: -100px 0;
    }
    100% {
        background-position: 100px 0;
    }
}

.nav-bg {
    background: rgba(34, 97, 228, 0.1);
    font-weight: 400;
    color: var(--color);
}

.nav-bg-active {
    background: linear-gradient(329deg, #2C70FF 0%, #72A3FE 100%);
    font-weight: 500;
    color: #FFFFFF;
    position: relative;
}

.nav-active {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
}

.recommend-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.recommend-nav-item img {
    width: 26px;
    margin-right: 4px;
}

/*推荐职位列表*/
.recommend-position {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
    grid-column-gap: 20px;
}

.position-item {
    cursor: pointer;
    width: 386px;
    height: 212px;
    background: #FFFFFF;
    box-shadow: 0 6px 15px 0 rgba(225, 225, 225, 0.4);
    border-radius: 4px;
}

.position-item:hover {
    box-shadow: 0 6px 30px 0 rgba(128, 142, 171, 0.6);
    transform: translateY(-10px);
    transition: all 0.4s;
}

.position-item-top {
    padding: 19px 21px 25px;
}

.position-item-job-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-item-job-name .position-name {
    max-width: 70%;
    font-size: 18px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #333333;
}

.position-item-job-name .position-name:hover {
    color: var(--color);
}

.position-item-job-name .position-salary {
    font-size: 18px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #FA4200;
}

.position-item-exp {
    margin-top: 19px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
}

.position-item-exp > span:first-child {
    margin-right: 16px;
}

.position-item-tag {
    margin-top: 16px;
}

.position-item-tag > span {
    padding: 4px 10px;
    box-sizing: border-box;
    text-align: center;
    height: 25px;
    background: #F5F5F5;
    border-radius: 4px;

    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 25px;
}

.position-item-bottom {
    padding: 6px 15px;
    box-sizing: border-box;
    width: 386px;
    height: 64px;
    background: rgba(34, 97, 228, 0.05);
    border-radius: 0 0 4px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.position-item-company {
    display: flex;
    align-items: center;

    font-size: 14px;
    font-family: PingFang-SC-Regular, PingFang-SC;
    font-weight: 400;
    color: #666666;
}

.position-item-company > div {
    width: 220px;
}

.position-item-company > div:hover {
    color: var(--color);
}

.position-item-company > img {
    object-fit: cover;
    object-position: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #9a9a9a26;
}

.position-btn {
    width: 89px;
    height: 35px;
    background: rgba(34, 97, 228, 0.1);
    border-radius: 4px;
    text-align: center;
    line-height: 35px;

    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: var(--color);
    padding: 0;
    border: 0;
}

.position-btn:hover {
    opacity: 0.75;
}

.position-more-button {
    width: 154px;
    height: 48px;
    background: var(--color);
    border-radius: 2px;
    margin: 40px auto 0;

    font-size: 20px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
}

.position-more-button:hover {
    opacity: 0.75;
}


/*揭榜挂帅*/
.recommend-bang {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
    grid-column-gap: 20px;
}

.bang-item {
    width: 386px;
    height: 260px;
    background: #FFFFFF;
    box-shadow: 0 6px 15px 0 rgba(225, 225, 225, 0.4);
    border-radius: 4px;
    cursor: pointer;
}

.bang-item:hover {
    box-shadow: 0 6px 30px 0 rgba(128, 142, 171, 0.6);
    transform: translateY(-10px);
    transition: all 0.4s;
}

.bang-top {
    height: 66px;
    background: rgba(34, 97, 228, 0.05);
    border-radius: 0 0 4px 4px;
    padding: 0 22px;
    box-sizing: border-box;
    line-height: 66px;
}

.bang-name {
    width: 324px;
    font-size: 18px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #333333;
}

.bang-name:hover {
    color: var(--color);
}

.bang-bottom {
    padding: 18px 21px;
    box-sizing: border-box;
}

.bang-content-label {
    display: flex;
    align-items: center;

    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.bang-content-label > img {
    width: 16px;
    height: 15px;
    margin-right: 7px;
}

.bang-content {
    margin-top: 14px;
    width: 342px;
    height: 120px;
    font-size: 14px;
    font-family: PingFang-SC-Regular, PingFang-SC;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
}

/*科创项目*/

.recommend-project {
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    width: var(--content-width);

}

.project-hot-item {
    display: flex;
    padding: 22px 17px;
    box-sizing: border-box;
    background: rgba(34, 97, 228, 0.05);
    cursor: pointer;
    border-radius: 4px;
}

.project-hot-item:hover {
    box-shadow: 0 6px 30px 0 rgba(128, 142, 171, 0.6);
}

.project-item-expert {
    text-align: center;
    width: 140px;

}

.project-item-expert > .project-item-img {
    width: 96px;
    height: 131px;
    overflow: hidden;
    margin: 0 auto;
}

.project-item-expert > .project-item-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    -o-object-fit: cover;
    -o-object-position: top;
    transition: transform .3s;
}

.project-item-expert > .project-item-img > img:hover {
    transform: scale(1.1);
}

.project-expert-name {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 30px;
    font-family: PingFangSC-Regular, PingFang SC;
}

.project-expert-name:hover {
    color: var(--color);
}

.project-expert-title {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 30px;
    font-family: PingFangSC-Regular, PingFang SC;
}

.project-item-content {
    margin-left: 19px;
}

.project-content-projectname {
    display: flex;
    align-items: center;
}

.project-content-projectname > span {
    max-width: 320px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    font-family: PingFangSC-Medium, PingFang SC;
    color: #333333;
}

.project-content-projectname > span:hover {
    color: var(--color);
}

.project-content-projectname > img {
    width: 18px;
    height: 18px;
    margin-left: 11px;
}

.project-content-industry {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 30px;
    font-family: PingFangSC-Regular, PingFang SC;
}

.project-content-company {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 30px;
    display: flex;
    align-items: center;
    height: 30px;
    font-family: PingFangSC-Regular, PingFang SC;
}

.project-content-company > img {
    height: 12px;
    width: 10px;
    margin-right: 6px;
}

.project-content-business {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 30px;
    width: 395px;
    height: 90px;
    justify-content: space-between;
    font-family: PingFangSC-Regular, PingFang SC;
}

/*标题*/
.subject_title_header {
    text-align: center;
}

.subject_title {
    font-size: 30px;
    font-weight: 500;
    color: #333333;
    font-family: PingFangSC-Medium, PingFang SC;
}

.subject_intro {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 30px;

}

.subject_intro .more_btn {
    color: var(--color);
    margin-left: 19px;
    margin-right: 9px;

}

.subject_intro > div {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.subject_intro > div > img {
    display: block;
    width: 7px;
    height: 13px;
    transition: all .3s;
}

.subject_intro > div:hover img {
    transform: translateX(3px);
}

/*会议活动*/
.active-warp {
    padding: var(--title-margin) 0 40px;
    width: 100%;
    background: linear-gradient(360deg, rgba(233, 239, 253, 0.62) 0%, #BCD4F8 100%);
    box-sizing: border-box;
}

.active-content {
    margin: 0 auto;
    width: var(--content-width);
}

.active-top {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.active-top-item {
    cursor: pointer;
    width: 300px;
    height: 326px;
    transition: all .3s;
}

.active-top-item-hover {
    cursor: pointer;
    width: 580px;
    height: 326px;
    transition: all .3s;
}

.active-banner {
    width: 100%;
    height: 100%;
}

.active-top-item .active-banner {
    object-fit: cover;
    object-position: center;
}

.active-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.active-bottom-item {
    height: 298px;
    width: 386px;
    background: #FFFFFF;
    cursor: pointer;
}

.active-bottom-banner {
    width: 100%;
    height: 242px;
}

.active-bottom-item > div {
    margin: 0 auto;
    text-align: center;
    height: 47px;
    line-height: 47px;
    width: 320px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.active-bottom-item > div:hover {
    color: var(--color);
}

.active-bottom-item:hover {
    box-shadow: 0 6px 30px 0 rgba(128, 142, 171, 0.6);
}


/*路演*/
.roadshow-warp {
    width: var(--content-width);
    margin: var(--title-margin) auto;
}

.roadshow-mask {
    width: var(--content-width);
    position: relative;
}

.roadshow-content {
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 30px;
}

.roadshow-content::-webkit-scrollbar {
    display: none;
}


.roadshow-item {
    cursor: pointer;
    display: inline-block;
    width: 302px;
    height: 214px;
    clip-path: polygon(100% 0%, 80% 100%, 0% 100%, 20% 0%);
    position: relative;
}


.roadshow-item-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(34, 97, 228, 0.5);
    top: 0;
    pointer-events: none;
}

.roadshow-item-hover-text {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: absolute;
    top: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.roadshow-item-hover-text-title {
    margin: 0 auto;
    font-size: 24px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 33px;
    text-shadow: 0 1px 2px rgba(0, 8, 45, 0.7);
    width: 60%;
    /*height: 66px;*/
    white-space: break-spaces;
    text-align: center;
}


.roadshow-item:not(:first-child) {
    margin-left: -30px;
}

.roadshow-item > img {
    width: 100%;
    height: 100%;
}

.roadshow-right-mask {
    top: 0;
    right: 0;
    position: absolute;
    width: 110px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 46%, rgba(255, 255, 255, 0.8) 68%, rgba(255, 255, 255, 0.94) 87%, #FFFFFF 100%);
}

.roadshow-page {
    float: right;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.page-total {
    margin-right: 19px;
}

.page-btn {
    cursor: pointer;
    width: 34px;
    height: 34px;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-btn > img {
    width: 7px;
    height: 13px;
}


/*智库专家*/
.expert-warp {
    padding: 40px 0;
    width: 100%;
    background: #F6F7FB;
    box-sizing: border-box;
}


.expert-content {
    width: var(--content-width);
    margin: 0 auto;
}

.expert-list {
    margin-top: 30px;
    background: #FFFFFF;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 0;
    border: none;
}

.expert-item:nth-child(4n+4), .expert-item:last-child {
    border-right: 0;
}

.expert-item:nth-child(4n+1), .expert-item:first-child {
    border-left: 0;
}

.expert-item:nth-child(4n+1):nth-last-child(-n+4),
.expert-item:nth-child(4n+1):nth-last-child(-n+4) ~ .expert-item {
    border-bottom: 0;
}

.expert-item:nth-child(-n+4) {
    border-top: 0;
}

.expert-item {
    cursor: pointer;
    box-sizing: border-box;
    border: 1px dashed var(--color);
    width: 300px;
    height: 281px;
    padding: 23px 27px 30px 23px;
}

.expert-item:hover {
    background: linear-gradient(315deg, #598FFC 0%, var(--color) 100%);
}

.expert-item:hover .expert-name, .expert-item:hover .expert-title, .expert-item:hover .expert-item-desc {
    color: white;
}

.expert-item-header {
    display: flex;
    /*align-items: center;*/
    pointer-events: none;
}

.expert-item-header-name {
    margin-left: 20px;
    width: 115px;
    margin-top: 25px;
}

.expert-item-header-name .expert-name {
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.expert-item-header-name .expert-title {
    margin-top: 7px;
    font-size: 14px;
    font-family: PingFang-SC-Regular, PingFang-SC;
    font-weight: 400;
    color: #999999;
}

.expert-item-header > img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
}

.expert-item-desc {
    text-align: justify;
    pointer-events: none;
    margin-top: 24px;
    width: 250px;
    height: 88px;
    font-size: 14px;
    font-family: PingFang-SC-Regular, PingFang-SC;

    font-weight: 400;
    color: #999999;
    line-height: 22px;
}

/*科创头条*/
.headlines-warp {
    width: var(--content-width);
    margin: 60px auto;
}

.headlines-nav {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.headlines-nav-item {
    cursor: pointer;
    margin-right: 74px;
    font-size: 20px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.headlines-nav-item:hover {
    color: var(--color);
    font-weight: 500;
    font-family: PingFangSC-Medium, PingFang SC;
}

.headlines-nav-item-selected {
    color: var(--color);
    font-weight: 500;
    font-family: PingFangSC-Medium, PingFang SC;
}

.headlines-nav-item:last-child {
    margin-right: 0;
}

.headlines-nav-selected-line {
    width: 40px;
    height: 5px;
    background: var(--color);
    border-radius: 3px;
    margin: 5px auto auto;
}

.headlines-content {
    margin-top: 20px;
    display: flex;
    height: 340px;
}

.headlines-img {
    width: 700px;
}

.headlines-list {
    width: 500px;
    height: 340px;
    background: #FFFFFF;
    box-shadow: 5px 4px 6px 0 rgba(4, 54, 130, 0.05);
    border: 1px solid rgba(47, 130, 255, 0.1);
    /*overflow: auto;*/
    /*scrollbar-width: thin;*/
    /*scrollbar-color: transparent transparent;*/
}

.headlines-list::-webkit-scrollbar {
    width: 0;
}

.headlines-item {
    cursor: pointer;
    padding-top: 16px;
    padding-left: 22px;
    padding-bottom: 12px;
    position: relative;
}

.headlines-item:hover .headlines-item-title {
    color: var(--color);
}

.headlines-item-selected {
    background: rgba(231, 241, 255, 0.4);
}

.headlines-item-header {
    display: flex;
    align-items: center;
    pointer-events: none;
    height: 20px;
}

.headlines-item-index {
    width: 16px;
    height: 16px;
    background: #C3C5CB;
    margin-right: 7px;

    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 16px;
    text-align: center;
}

.headlines-item-index-selected {
    background: var(--color);

}

.headlines-item-title {
    width: 415px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.headlines-item-desc {
    pointer-events: none;
    margin-top: 5px;
    margin-left: 23px;
    width: 422px;
    height: 32px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 16px;
}

.headlines-item-selected-right {
    height: 100%;
    position: absolute;
    width: 11px;
    background: var(--color);
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.headlines-item-selected-right > div {
    margin-right: 1px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #FFFFFF;
}

.swiper-slide {
    cursor: pointer;

}

.swiper {
    height: 340px;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 27px;
}

.swiper-pagination {
    text-align: left;
    margin-left: 59px;
}

.swiper-pagination-bullet {
    background: #FFF;
    opacity: 1;

}

.swiper-pagination-bullet-active {
    background: var(--color);
}

.statement{
    position: absolute;
    width: 200px;
    height: 130px;
    z-index: 10;
}
.statement img{
    width: 200px;
}
.statement_close{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width:15px;
    height:15px;
    font-size:13px;
    color: #ffffff;
}

