.banner {
    width: 100%;
    padding: 10px 0 0;
}

/* big swiper */
.swiper1 {
    width: 790px;
    height: 400px;
    margin-right: 10px;
    background: #ffffff;
}
.swiper1 .swiper-slide img {
    width: 100%;
    height: 100%;
}
.swiper1 .swiper-pagination {
    margin: 0 auto;
}
.swiper1 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ffffff;
    opacity: 0.5;
    box-shadow: 0 6px 16px 0 rgba(12, 22, 65, 0.65)
}
.swiper1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 70px;
    height: 10px;
    border-radius: 10px;
    opacity: 1;
}
/* 通知公告 */
.notice-box {
    width: 390px;
    height: 400px;
    padding: 20px 30px;
    box-sizing: border-box;
    background: #ffffff;
}
.notice-box .notice-list {
    /* height: 368px; */
    overflow-y: auto;
}
.notice-box .title-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.notice-box .notice-title {
    position: relative;
    width: 80px;
    cursor: pointer;   
    text-align: center;
    font-size: 18px;
    line-height: 26px;  
    color: var(--Font-Color);
    margin-bottom: 15px;
    margin-right: 20px;
}
.notice-box .notice-title.now {
    color: var(--Active-Color);
    font-size: 20px;
}
.notice-box .notice-title.now::before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    border-bottom: 3px solid var(--Active-Color);
    box-shadow: 0px 6px 16px 0px rgba(55, 69, 103, 0.05);
    background: linear-gradient(180deg, rgba(92, 132, 248, 0),rgba(92, 132, 248, 0.15) 100%);
    position: absolute;
    bottom: -6px;
    left: 0;
}
.notice-box .notice-item {
    position: relative;
    display: block;
    padding: 13px 0 13px 16px;
    border-bottom: 2px dashed var(--Border-Color);
}
.notice-box .notice-item::before {
    content: '';
    display: block;   
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B2C5FF;
    position: absolute;
    left: 0;
    top: 19px;
}
.notice-box .notice-item .item-title {
    cursor: pointer;
    color: var(--Font-Color);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* 设置为想要的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice-box .notice-item .item-title:hover {
    color: var(--Active-Color);
}
.notice-box .notice-item .item-time {
    color: var(--Font-Light);
    font-size: 12px;
    line-height: 16px;
    padding: 0 5px;
    margin-top: 5px;
    border: 1px solid var(--Border-Color);
    display: inline-block;
}
.notice-box .notice-more {
    display: block;
    width: 310px;
    height: 34px;
    margin: 12px auto 0;
    border: 1px solid rgb(178, 197, 255);
    border-radius: 6px;
    opacity: 0.5;
    color: #B2C5FF;
    font-size: 12px;
    font-weight: 400;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
} 
.notice-box .notice-more:hover {
    color: #5C84F8;
    opacity: 1;
}

/* small swiper */
.swiper2 {
    width: 1190px;
    margin: 50px auto 0;
    box-sizing: border-box;
}
.swiper2 .swiper-slide {
    width: 260px;
    height: 160px;
    background: #ffffff;
    text-align: center;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    box-shadow: 0 6px 16px 0 rgba(178, 197, 255, 0.5);
    background: #ffffff;
    border-radius: 50%;
}
.swiper-button-next {
    right: -30px;
    left: auto
}
.swiper-button-prev {
    right: auto;
    left: -30px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('../img/narrow.png');
    background-size: cover;
}
.swiper-button-prev:after {
    transform: rotate(180deg);
}

/* 求职专区 */
.zq-box {
    position: relative;
    z-index: 99;
    width: 1190px;
    margin: 10px auto 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.zq-box .zq-item {
    position: relative;
    display: block;
    width: 390px;
    height: 100px;
    cursor: pointer;
    box-sizing: border-box;
    padding: 20px 30px 15px 125px;
    box-shadow: 0 0 1px 0 rgba(58, 80, 243, 0.25);
    /* box-shadow: 0 6px 16px 0 rgba(58, 80, 243, 0.25); */
    background: linear-gradient(180deg, rgb(236, 240, 255),rgb(249, 250, 255) 29.445%,#ffffff 53.318%);
}
/* .zq-box .zq-item:hover .zq-icon {
    top: -20px;
} */
.zq-box .zq-item:hover {
    box-shadow: 0 0 6px 0 rgba(58, 80, 243, 0.25);
}
.zq-item.red {
    background: linear-gradient(180deg, rgb(255, 245, 248),rgb(255, 250, 252) 21.576%,#ffffff 53.318%);
}
.zq-item.green {
    background: linear-gradient(180deg, rgb(243, 253, 255),rgb(250, 254, 255) 23.228%,#ffffff 53.318%);
}
.zq-item .zq-icon {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 16px 0 rgba(178, 197, 255, 0.5);
    background: #ffffff;
    transition: all 0.5s;
}
.zq-item .zq-icon img {
    position: relative;
    width: 30px;
    height: 30px;
    display: block;
    margin: 15px;
}
.zq-item .zq-title {
    color: var(--Font-Color);
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    padding-bottom: 8px;  
}
.zq-item .zq-text {
    color: var(--Font-Light);
    font-size: 16px;
    line-height: 26px;    
    position: relative;
    box-sizing: border-box;   
    cursor: pointer;
}
.zq-item .zq-text::before {
    content: '';
    display: block;   
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: -13px;
    top: 10px;
    background: #B2C5FF;
}
.zq-item.red .zq-text::before {
    background: var(--Money-Color);
}
.zq-item.green .zq-text::before {
    background: #53DBE6;
}


/* 通栏广告 */
.ad-list {
    padding: 0px 0 20px;
}
.ad-list .ad-item {
    display: block;
    width: 100%;
    height: 80px;
    margin: 0 auto 10px;
}
.ad-list .ad-item:hover {
    box-shadow: 0 0 6px rgba(58, 80, 243, 0.3);
}
.ad-list .ad-item:last-child {
    margin: 0 auto;
}
.ad-list img {
    display: block;
    width: 100%;
    height: 100%;
}
.ad-list .half,
.ad-list .quarter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.ad-list .half .ad-item {
    width: 590px;
    height: 80px;
    margin: 0 10px 10px 0;
}
.ad-list .half .ad-item:nth-child(2n) {
    margin-right: 0px;
}
.ad-list .quarter .ad-item {
    width: 290px;
    height: 80px;
    margin: 0 10px 10px 0;
}
.ad-list .quarter .ad-item:nth-child(4n) {
    margin-right: 0px;
}

/* 热点企业 */
.company-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 50px;
}
.company-block .company-item {
    position: relative;
    width: 384px;
    height: 270px;
    padding: 15px 35px;
    margin-right: 18px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid var(--Border-Color);
    box-shadow: 0px 6px 16px 0px rgba(55, 69, 103, 0.05);
    background: #ffffff;
}
.company-block .company-item:nth-child(3n) {
    margin-right: 0;
}
.company-block .company-item::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--Active-Color);
    border-radius: 10px;
    box-shadow: 0px 8px 20px 0px rgba(60, 100, 245, 0.5);
    position: absolute;
    top: -2px;
    left: 30px;
}
.company-block .company-item .company-name {
    width: 100%;
    height: 40px;   
    padding: 15px 0 30px;
    margin-bottom: 25px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;  
    border-bottom: 2px dashed var(--Border-Color);  
}
.company-item .company-name .name-text {
    color: var(--Font-Color);
    width: 340px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}
.company-item .company-name .name-text:hover {
    color: var(--Active-Color);
}
.company-item .company-name .name-logo {
    width: 40px;
    height: 40px;
    background: 50%;
    margin-right: 10px;
}
.company-item .job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.company-item .job-top .job-name { 
    position: relative;
    color: var(--Font-Color);
    font-size: 18px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 10px;
}
.company-item .job-top .job-name:hover {
    color: var(--Active-Color);
}
.company-item .job-top .job-name::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--Active-Color);
}
.company-item .job-top .job-money {
    color: #5C84F8;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
    width: 100px;
} 
.company-item .job-tag {
    display: block;
    color: var(--Font-Light);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 25px;
}
.company-item .job-tag span {
    display: inline-block;
    margin-left: 10px;
}
.company-item .company-more {
    display: block;
    height: 36px;
    box-sizing: border-box;
    border: 1px solid var(--Active-Color);
    border-radius: 6px;
    color: var(--Active-Color);
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
}
.company-item .company-more:hover {
    color: #ffffff;
    background: var(--Active-Color);
}

/* 职位模块 */
.job-tab {
    padding: 20px 0 15px;
    
}
.job-tab .tab-item {
    position: relative;
    width: 49%;
    display: inline-block;
    vertical-align: bottom;
    color: var(--Font-Color);
    cursor: pointer;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    border-bottom: 3px solid #B2C5FF;
}
.job-tab .tab-item.now {
    font-size: 28px;
    line-height: 63px;
    border-bottom: none;
    box-shadow: inset 0 -4px 4px 0 rgba(58, 80, 243, 0.15);
    background: linear-gradient(270.00deg, rgba(60, 100, 245, 0.2),rgba(178, 197, 255, 0.2) 100%);
}
.job-tab .tab-item.now::before {    
    content: '';
    display: block;    
    width: 40px;
    height: 16px;
    background: url('../img/job/tab-active.png');
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;   
}
.job-block {
    min-height: 200px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
/* .job-block .job-more::before {
    bottom: 25px;
}
.job-block .job-more .more-link {
    display: block;
    cursor: pointer;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--Active-Color);
    padding: 14px 0 24px;
    border-bottom: 2px dashed var(--Active-Color);
} */
.job-more {
    display: block;
    cursor: pointer;
    width: 120px;
    height: 40px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 6px 16px 0 rgba(178, 197, 255, 0.5);
    background: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
}
.job-more:hover {
    color: var(--Active-Color);
    box-shadow: 0 6px 16px 0 rgba(178, 197, 255, 0.75);
}


/* 招聘会模块 */
.fair-block {
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    /* margin-bottom: 30px; */
}
.fair-block .fair-item {
    position: relative;
    width: 384px;
    height: 190px;
    padding: 50px 24px 22px;
    margin-right: 19px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid var(--Border-Color);
    box-shadow: 0 6px 16px 0 rgba(55, 69, 103, 0.05);
    background: #ffffff
}
.fair-block .fair-item:nth-child(3n) {
    margin-right: 0;
}
.fair-block .fair-item .fair-tag {
    position: absolute;
    left: 20px;
    top: 0px;  
    width: 80px;
    height: 32px;
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    color: var(--Money-Color);
    text-align: center;
    background: rgba(250, 66, 125, 0.1);
    border-top: 2px solid var(--Money-Color);
}
.fair-block .fair-item .fair-tag.gray {
    color: var(--Font-Light);
    background: rgba(155, 162, 179, 0.1);
    border-color: var(--Font-Light);
}
.fair-block .fair-item .fair-title {
    color: var(--Font-Color);
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fair-block .fair-item .fair-title:hover {
    color: var(--Active-Color);
}
.fair-block .fair-item .fair-text {
    color: var(--Font-Light);
    font-size: 15px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 人才活动 */
.block-title {
    width: 1190px;
    margin: 0 auto;
    position: relative;
    color: var(--Font-Color);
    font-size: 30px;
    line-height: 1;
    padding: 20px 0;
}
.block-title .subtitle {
    color: var(--Font-Light);
    font-size: 28px;
    font-weight: lighter;
    line-height: 44px;
    text-transform: uppercase;
    padding-left: 20px;
}
.block-title .more {
    cursor: pointer;
    color: #5C84F8;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    position: absolute;
    right: 0;
    top: 28px;
}
.block-title .more img {
    position: relative;
    top: -2px;
}

.news-list {
    padding: 0 0 10px;
}

/* 友情链接 */
.link-block {
    position: relative;   
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
}
.link-block::before {
    content: '';
    display: block;
    width: 35%;
    max-width: 600px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(270deg, rgba(244, 245, 252, 0),rgba(244, 245, 252, 0.85) 57.852%,rgb(244, 245, 252) 90.618%);
}
.link-block::after {
    content: '';
    display: block;
    width: 35%;
    max-width: 600px;
    height: 100%;
    position: absolute;   
    right: 0;
    top: 0;
    z-index: 10;
    background: linear-gradient(270deg, rgb(244, 245, 252) 9.382%,rgba(244, 245, 252, 0.85) 42.148%,rgba(244, 245, 252, 0) 100%);
}

.link-block .link-box {
    height: 54px;
    margin: 24px auto;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
.link-block .link-box .tags {
    font-size: 0;
    position: absolute;
    left: 0;
    /* animation: scrollLeft 15s linear infinite; */
}
.link-block .link-box .tag {
    display: inline-block;
    height: 54px;
    margin: 0 12px;
    padding: 0 50px;
    box-sizing: border-box;
    border: 1px solid rgb(230, 231, 236);
    box-shadow: 0px 6px 16px 0px rgba(55, 69, 103, 0.05);
    background: #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 54px;
    font-weight: 400;
    color: var(--Font-Color);
    text-decoration: none;
}
.link-block .link-box .tag:hover {
    text-decoration: underline;
}
@keyframes scrollLeft {
    0% {
        transform: translate(0)
    }

    100% {
        transform: translate(-100%)
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(0)
    }
}