body {
  font-family: Arial, sans-serif;
  background-color: #f5f7fa;
}

* {
  box-sizing: border-box;
  outline: none;
  border: none;
  -webkit-appearance: none;
  padding: 0px;
  margin: 0px;
}

a {
  color: inherit;
  /* 继承父元素的颜色 */
  text-decoration: none;
  /* 去掉下划线 */
}

a div:hover {
  color: #1e66ae !important;
  /* 鼠标悬停时的颜色 */
}

a span:hover {
  color: #1e66ae !important;
  /* 鼠标悬停时的颜色 */
}

a:hover {
  color: #1e66ae !important;
  /* 鼠标悬停时的颜色 */
}

.ellipsis {
  width: 100%;
  white-space: nowrap;
  /* 禁止文本换行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
}

.container {
  padding: 0px 160px;
}

/* 顶部logo */
.top_logo {
  background-image: url("./postImages/logo_bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 176px;
  padding-top: 45px;
  box-sizing: border-box;
}

.top_logo .logo {
  display: block;
  height: 80px;
  margin-left: 216px;
  width: 800px;
}

.top_logo .imgs {
  display: none;
}

/* 菜单 */
.menu {
  padding: 40px 0px;
  text-align: center;
  background-color: #fff;
}

.menu a {
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  margin: 0px 25px;
}

.chooseMenu {
  padding-bottom: 5px;
  border-bottom: 4px solid #333333;
}

ul {
  display: none;
}

/* banner图 */
.carousel_images {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  perspective: 1000px;
  /* 透视深度 */
  animation: slideShow 10s infinite;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  /* 主要展示的图片宽度 */
  height: auto;
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.slide.current {
  left: 30%;
  /* 调整以适应两侧的图片 */
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide.left {
  transform-origin: left;
  /* 改变旋转原点 */
  transform: perspective(1000px) rotateY(5deg);
  /* 使用正角度 */
  opacity: 1;
  z-index: 1;
}

.slide.right {
  left: 60%;
  transform-origin: right;
  /* 改变旋转原点 */
  transform: perspective(1000px) rotateY(-5deg);
  /* 使用负角度 */
  opacity: 1;
  z-index: 1;
}

/* 定义动画 */
@keyframes slideShow {

  0%,
  33% {
    .slide:nth-child(1) {
      opacity: 1;
    }

    .slide:nth-child(2) {
      opacity: 0.5;
    }

    .slide:nth-child(3) {
      opacity: 0;
    }
  }

  33.1%,
  66% {
    .slide:nth-child(1) {
      opacity: 0;
    }

    .slide:nth-child(2) {
      opacity: 1;
    }

    .slide:nth-child(3) {
      opacity: 0.5;
    }
  }

  66.1%,
  100% {
    .slide:nth-child(1) {
      opacity: 0.5;
    }

    .slide:nth-child(2) {
      opacity: 0;
    }

    .slide:nth-child(3) {
      opacity: 1;
    }
  }
}

/* 服务指南 */
.Service {
  text-align: center;
  margin: 60px auto 27px;
}

.Service div:nth-child(1) {
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.Service div:nth-child(2) {
  font-weight: bold;
  font-size: 18px;
  color: #999999;
}

.platform {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.platform .platformItem {
  flex: 1;
  height: 128px;
  background-color: #004fd4;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-right: 1px solid #fff;
}

.platformItem img {
  width: 47px;
  height: 47px;
  margin-right: 15px;
}

.platform_name div:nth-child(1) {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

.platform_name div:nth-child(2) {
  font-weight: 400;
  font-size: 12px;
}

.platformItem:hover {
  background-color: #fff !important;
}

/* 工作动态,通知公告 */
.section_1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
}

.section_1 .left {
  flex: 0.585;
}

.section_1 .right {
  flex: 0.4;
}

.section_1 .title,
.section_4 .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.section_1 .title div,
.section_4 .title div {
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.section_1 .title a,
.section_4 .title a {
  font-size: 16px;
  color: #666666;
}

.work_box {
  height: 430px;
  background: #ffffff;
  border-radius: 4px;
  padding: 14px 18px;
}

.work {
  display: flex;
  justify-content: space-between;
}

.work .one {
  flex: 1;
  margin-right: 60px;
}

.work .work_list {
  flex: 1;
}

.work_title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.date {
  text-align: center;
  width: 56px;
  margin-right: 10px;
}

.date div:nth-child(1) {
  height: 30px;
  background-color: #005faf;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 30px;
}

.date div:nth-child(2) {
  height: 30px;
  background-color: #e3f3fe;
  font-weight: 400;
  font-size: 14px;
  color: #c3c3c3;
  line-height: 30px;
}

.tit div:nth-child(1) {
  font-weight: bold;
  font-size: 18px;
  color: #42485b;
  margin-bottom: 10px;
  width: 90%;
}

.tit div:nth-child(2) {
  font-size: 12px;
  color: #999999;
}

.tit div:nth-child(2) span:nth-child(1) {
  margin-right: 30px;
}

.one img {
  height: 228px;
  width: 100%;
  margin-bottom: 10px;
}

.work_content {
  font-size: 14px;
  color: #666666;
  display: -webkit-box;
  /* 使用flexbox弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直方向 */
  -webkit-line-clamp: 3;
  /* 限制显示三行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
  margin-bottom: 1rem;
}

.toDetail {
  text-align: right;
  font-size: 14px;
  color: #0168d1;
}

.work_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.work_item div:nth-child(1) span:nth-child(1) {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #b0aeb1;
  border-radius: 50%;
  vertical-align: middle;
}

.work_item div:nth-child(1) span:nth-child(2) {
  display: inline-block;
  width: 180px;
  vertical-align: middle;
}

.work_item div:nth-child(2) {
  font-size: 14px;
  color: #999999;
}

.notice_item {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
}

.notice_tit div:nth-child(1) {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 12px;
  width: 500px;
}

.notice_tit div:nth-child(2) {
  font-weight: 400;
  font-size: 14px;
  color: #9d9d9d;
  width: 490px;
}

/* 就业服务部分 */
.section_2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  height: 635px;
}

.section_2item {
  flex: 0.5;
  background-color: #fff;
  padding: 22px 18px 0px;
}

.section_2 .section_2item:nth-child(1) {
  margin-right: 24px;
}

.section_2item .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid #f5f7fa;
  margin-bottom: 20px;
}

.titles {
  font-weight: bold;
  font-size: 18px;
  color: #42485b;
}

.titles span {
  margin-right: 35px;
  padding-bottom: 7px;
  cursor: pointer;
}

.titles .choose {
  border-bottom: 3px solid #005faf;
  color: #005faf;
}

.bottom_item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid #f5f7fa;
  margin-bottom: 18px;
}

.bottom_item span:nth-child(1) {
  font-size: 14px;
  color: #42485b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0.8;
}

.bottom_item span:nth-child(2) {
  font-size: 12px;
  color: #c0bfbf;
}

.top_bg {
  position: relative;
  background-color: #30c29a;
  height: 87px;
  display: flex;
  align-items: center;
  margin: -22px -18px 10px;
}

.top_bg img {
  position: absolute;
  top: -20px;
  left: 0px;
  width: 91px;
  height: 91px;
}

.chinese_name {
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  margin-left: 110px;
  margin-right: 68px;
}

.english_name {
  font-weight: bold;
  font-size: 40px;
  color: #ffffff;
  opacity: 0.2;
}


/* 优秀毕业生 */
.title {
  font-weight: bold;
  font-size: 30px;
  color: #000000;
  margin-bottom: 10px;
}

.section_3 {
  width: 100%;
  height: 195px;
  position: relative;
  overflow: hidden;
  margin-bottom: 57px;
  align-items: center;
}

.section_3 .title {
  font-weight: bold;
  font-size: 24px;
  color: #42485b;
}

.carousel-container {
  white-space: nowrap;
  width: 2660px;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0px;
}

.section_3 .business_item {
  box-sizing: border-box;
  margin: 0px 5px;
  text-align: center;
  background: #ffffff;
  flex-shrink: 0;
}

/* 清除浮动 */
.section_3:after {
  content: "";
  display: table;
  clear: both;
}

.section_3 .business_item:first-child {
  margin-left: 0;
}

.section_3 .business_item:last-child {
  margin-right: 0;
}

.section_3 img {
  height: 156px;
  width: 100%;
}

.business_item div {
  line-height: 20px;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}

/* 招聘单位 */
.section_4 {
  margin-bottom: 50px;
}

table {
  width: 100%;
}

thead tr td:nth-child(1) {
  width: 60%;
}

/* 底部 */
.footer {
  height: 166px;
  background-color: #494949;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer div {
  margin: 0px 60px;
}

.footer div p:nth-child(1) {
  margin-bottom: 5px;
}

/* vocationa内容 */
.vocationa {
  display: flex;
  margin-top: 21px;
}

.vocationalLeft {
  background-color: #fff;
  flex: 0.15;
  margin-right: 16px;
}

.vocationalRight {
  background-color: #fff;
  flex: 0.85;
  padding: 24px;
}

.vocationa_tit {
  display: flex;
  align-items: center;
  height: 64px;
  background: linear-gradient(180deg, #d1e2fb 0%, #ffffff 100%);
  padding: 16px 28px 25px;
}

.vocationa_tit img {
  width: 23px;
  height: 23px;
  margin-right: 3px;
}

.vocationa_tit span {
  font-weight: bold;
  font-size: 18px;
  color: #262626;
}

.tit_item {
  text-align: center;
}

.tit_item div {
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  color: #595959;
  cursor: pointer;
}

.chooseV {
  background: #e7f0fd !important;
  color: #004fd4 !important;
}

.right_top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 26px;
}

.right_top div:nth-child(1) {
  font-weight: bold;
  font-size: 16px;
  color: #004fd4;
}

.right_top div:nth-child(2) {
  font-size: 14px;
  color: #999999;
}

.vocational_list_item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 17px;
}

.vocational_list_item span:nth-child(1) {
  flex: 0.8;
  font-size: 16px;
  color: #42485B;
}

.vocational_list_item span:nth-child(2) {
  font-size: 14px;
  color: #42485B;
}

.bottom_items,
#office_content {
  display: none;
}



/* 移动端 */
@media (max-width: 768px) {

  /* 顶部logo */
  .top_logo .logo {
    display: none;
  }

  .top_logo {
    padding: 1rem 0;
    height: 5rem;
  }

  .top_logo .imgs {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .top_logo .imgs img {
    vertical-align: middle;
  }

  .top_logo .imgs .imgs-logo {
    margin-left: 20px;
    width: 60%;
  }

  .top_logo .imgs .imgs-menu {
    width: 8%;
    height: 100%;
    display: none;
  }

  .top_logo .imgs .show {
    display: block;
  }

  /* 菜单 */
  .menu {
    width: 100%;
    display: none;
    background-color: #174eda;
    color: #fff;
    text-align: center;
    line-height: 3rem;
    position: absolute;
    top: 5rem;
    left: 0;
    z-index: 20;
  }

  .show {
    display: flex;
    flex-direction: column;
  }

  .menu a {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
  }

  .menu a:hover {
    color: #fff;
  }

  .menu a:visited {
    color: #fff;
  }

  .menu a:active {
    color: #fff;
  }

  .chooseMenu {
    padding-bottom: 0.4rem;
    border-bottom: 0 solid #fff;
  }

  /* 轮播图 */
  .carousel_images {
    height: 218px;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
  }

  .slide.current {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    transform: translateX(0%);
  }

  .slide.left {
    transform-origin: left;
    /* 改变旋转原点 */
    transform: translateX(-100%);
    opacity: 1;
    z-index: 1;
  }

  .slide.right {
    left: 0;
    transform-origin: right;
    /* 改变旋转原点 */
    transform: translateX(100%);
    opacity: 1;
    z-index: 1;
  }

  /* 服务指南 */
  .container {
    padding: 1rem;
  }

  .Service {
    text-align: left;
    margin: 1rem 0;
    display: flex;
  }

  .Service div:nth-child(1) {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000000;
  }

  .Service div:nth-child(2) {
    display: none;
  }

  .platform {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .platform .platformItem {
    flex: 1 0 calc(50% - 10px);
    height: 128px;
    background-color: #005faf;
    color: #fff;
    border-right: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.1rem;
  }

  .platform .platformItem:nth-child(2),
  .platform .platformItem:nth-child(3),
  .platform .platformItem:nth-child(5) {
    flex: 1 0 calc(50% - 10px);
    height: 128px;
    background-color: #fff;
    color: #005faf;
    border: 1px solid #005faf;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.1rem;
  }

  .platformItem img {
    width: 47px;
    height: 47px;
    margin-right: 15px;
  }

  .platform_name div:nth-child(1) {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
  }

  .platform_name div:nth-child(2) {
    font-weight: 400;
    font-size: 12px;
  }

  .platformItem:hover {
    background-color: #fff !important;
  }

  /* 工作动态,通知公告 */
  .section_1,
  .section_4 {
    display: block;
    margin-bottom: 2rem;
  }

  .section_1 .title,
  .section_4 .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .section_1 .title div,
  .section_4 .title div {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000000;
  }

  .section_1 .title a,
  .section_4 .title a {
    font-size: 0.8rem;
    color: #666666;
  }

  .work_box {
    width: 100%;
    height: auto;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 1rem;
  }

  .work {
    display: block;
  }

  .work .one {
    flex: 1;
    margin-right: 0;
    width: 100%;
  }

  .work_title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .work_content {
    font-size: 14px;
    color: #666666;
    display: -webkit-box;
    /* 使用flexbox弹性盒子模型 */
    -webkit-box-orient: vertical;
    /* 垂直方向 */
    -webkit-line-clamp: 3;
    /* 限制显示三行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
    margin-bottom: 7px;
  }

  .work_list {
    /* display: none; */
    flex: 1;
  }

  .work_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .work_item div:nth-child(1) span:nth-child(1) {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #b0aeb1;
    border-radius: 50%;
    vertical-align: middle;
  }

  .work_item div:nth-child(1) span:nth-child(2) {
    display: inline-block;
    width: 95%;
    vertical-align: middle;
    font-size: 0.8rem;
    color: #666;
  }

  .work_item div:nth-child(2) {
    font-size: 0.7rem;
    color: #999999;
  }

  .toDetail {
    position: absolute;
    top: 53.7rem;
    right: 2rem;
  }

  .toDetail a {
    text-align: right;
    font-size: 0.8rem;
    color: #0168d1;
  }

  .toDetail a:link {
    color: #0168d1;
  }

  .toDetail a:hover {
    color: #0168d1;
  }

  .toDetail a:visited {
    color: #0168d1;
  }

  .toDetail a:active {
    color: #0168d1;
  }

  .left {
    margin-bottom: 1rem;
  }

  /* 通知公告 */
  .notice_item {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
  }

  .notice_item .date {
    width: 15%;
    flex: 1;
  }

  .notice_tit {
    width: 85%;
    flex: 1;
  }

  .notice_tit div:nth-child(1) {
    font-weight: bold;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 12px;
    width: 100%;
  }

  .notice_tit div:nth-child(2) {
    font-weight: 400;
    font-size: 0.8rem;
    color: #9d9d9d;
    width: 100%;
  }

  /* 就业服务部分 */
  .section_2 {
    width: 100%;
    display: block;
    margin: 2rem 0;
    height: auto;
  }

  .section_2item {
    flex: 1;
    background-color: #fff;
    padding: 22px 18px 0px;
    height: 26rem;
  }

  .section_2 .section_2item:nth-child(1) {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .section_2item .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 7px;
    border-bottom: 1px solid #f5f7fa;
    margin-bottom: 20px;
  }

  .top_bg {
    height: 4rem;
  }

  .top_bg img {
    position: absolute;
    top: -1rem;
    left: 0px;
    width: 4rem;
    height: 4rem;
  }

  .chinese_name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;
    margin-left: 4.5rem;
    margin-right: 1rem;
  }

  .english_name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.2;
  }

  .titles {
    font-weight: bold;
    font-size: 1rem;
    color: #42485b;
  }

  .titles span {
    margin-right: 35px;
    padding-bottom: 7px;
    cursor: pointer;
  }

  .titles .choose {
    border-bottom: 3px solid #005faf;
    color: #005faf;
  }

  .more {
    font-size: 0.8rem;
    color: #666666;
  }

  .top a:hover {
    color: #666;
  }

  .top a:visited {
    color: #666;
  }

  .top a:active {
    color: #666;
  }

  /* 优秀毕业生 */
  .title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 1rem;
  }

  /* 底部 */
  .footer {
    width: 100%;
    height: 5rem;
    background-color: transparent;
    color: #999;
    font-size: 0.8rem;
    display: block;
  }

  .footer-section {
    display: flex;
    justify-content: center;
  }

  .footer-copyright {
    display: block;
    text-align: center;
  }

  .footer div {
    margin: 0;
  }

  .footer div p:nth-child(1) {
    margin-bottom: 0;
  }

  /* vocationa内容 */
  .vocationa {
    display: block;
    margin-top: 21px;
  }

  .vocationalLeft {
    background-color: #fff;
    flex: 0.15;
    margin-right: 0;
    position: relative;
  }

  .vocationalRight {
    background-color: #fff;
    flex: 0.85;
    padding: 24px;
  }

  .vocationa_tit {
    display: flex;
    align-items: center;
    height: 64px;
    background: linear-gradient(180deg, #d1e2fb 0%, #ffffff 100%);
    padding: 16px 28px 25px;
  }

  .vocationa_tit img {
    width: 23px;
    height: 23px;
    margin-right: 3px;
  }

  .vocationa_tit span {
    font-weight: bold;
    font-size: 18px;
    color: #262626;
  }

  .icon {
    position: absolute;
    top: 25px;
    right: 25px;
    display: block;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top: 5px solid #333;
  }

  .tit_item {
    text-align: center;
    display: none;
  }

  .show {
    display: block;
  }

  .tit_item div {
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    color: #595959;
    cursor: pointer;
  }

  .chooseV {
    background: #e7f0fd !important;
    color: #004fd4 !important;
  }

  .right_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 26px;
  }

  .right_top div:nth-child(1) {
    font-weight: bold;
    font-size: 16px;
    color: #004fd4;
  }

  .right_top div:nth-child(2) {
    font-size: 14px;
    color: #999999;
  }

  .vocational_list_item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 7px;
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 17px;
  }

  .vocational_list_item span:nth-child(1) {
    flex: 0.8;
    font-size: 16px;
    color: #42485B;
  }

  .vocational_list_item span:nth-child(2) {
    font-size: 14px;
    color: #42485B;
  }

  .bottom_items,
  #office_content {
    display: none;
  }
}