/* 把我们所有标签的内外边距清零 */
* {
  margin: 0;
  padding: 0;
  /* css3盒子模型 */
  box-sizing: border-box;
}
/* em 和 i 斜体的文字不倾斜 */
em,
i {
  font-style: normal;
}
/* 去掉li 的小圆点 */
li {
  list-style: none;
}

img {
  /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
  border: 0 none;
  /* 取消图片底侧有空白缝隙的问题 */
  vertical-align: middle;
  border-style: none;
}

button {
  /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
  cursor: pointer;
}

a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

button,
input {
  /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
  font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB,
    "\5B8B\4F53", sans-serif;
  /* 默认有灰色边框我们需要手动去掉 */
  border: 0;
  outline: none;
}

body {
  /* CSS3 抗锯齿形 让文字显示的更加清晰 */
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
  padding-top: 36px;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.float_l {
  float: left;
}
.float_r {
  float: right;
}

.hide,
.none {
  display: none;
}
/* 清除浮动 */
.clearfix:after {
  visibility: hidden;
  clear: both;
  display: block;
  content: ".";
  height: 0;
}
.clearfix::before {
  content: "";
  display: table;
}
.clearfix {
  zoom: 1;
}

/* 页面样式start */
.header {
  margin-bottom: 30px;
}
.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1190px;
  margin: 0 auto;
}
.header .left img {
  position: relative;
  top: -5px;
}
.header .left span {
  font-size: 30px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
}
.header .right input {
  text-indent: 1rem;
  width: 247px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}
.header .right button {
  width: 58px;
  height: 40px;
  background: #004eb3;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
}
.nav-box {
  background: #004eb3;
  margin-bottom: 30px;
}

.nav-box .wrap {
  display: flex;
  justify-content: space-between;
  width: 1190px;
  height: 60px;
  margin: 0 auto;
  line-height: 60px;
}

.nav-box span:first-child {
  padding-left: 0;
}
.nav-box span:last-child {
  padding-right: 0;
}
.nav-box .text {
  cursor: pointer;
  font-size: 20px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  /* font-weight: bold; */
  color: #ffffff;
}

.nav-box span:not(:last-child)::before {
  /* content: ""; */
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.5px;
  height: 40px;
  background-color: #fff;
}

.nav-box .line {
  display: inline-block;
  width: 0.5px;
  height: 30px;
  margin-top: 16px;
  background-color: #fff;
}

.nav-box span a {
  color: #ffffff;
}
.nav-box span:hover::after {
  content: "";
  display: block;
  height: 2px;
  background: #ffffff;
  margin-top: -14px;
}
.nav-box .active::after {
  content: "";
  display: block;
  /* width: 48px; */
  height: 2px;
  background: #ffffff;
  margin-top: -14px;
}
.focus-box {
  margin: 0 auto;
  width: 1200px;
  height: 360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}
.swiper-container {
  width: 760px;
  height: 100%;
  overflow: hidden;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: flex-start;
}

.swiper-slide a {
  width: 100%;
}
.swiper-wrapper img {
  width: 100%;
  height: 100%;
}
.img_footer {
  text-align: left;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  clear: both;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  overflow: hidden;
  color: #fff;
}
.img_footer a {
  margin-left: 20px;

  font-size: 16px;
  color: #ffffff;
}
.focus-box .right-box {
  width: 440px;
  height: 100%;
  background: #f4f5f6;
  padding: 20px;
  overflow-y: hidden;
}
.focus-box .right-box .title {
  width: 100%;
  height: 30px;
  border-bottom: 1px solid #004eb3;
  margin-bottom: 20px;
}
.focus-box .right-box .title span {
  display: inline-block;
  padding: 0 10px;
  height: 100%;
  text-align: center;
  line-height: 30px;
  background: #004eb3;
  font-size: 20px;
  font-family: WDCH-, WDCH;
  font-weight: normal;
  color: #ffffff;
  position: relative;
  top: 0px;
}
.focus-box .right-box .title span a {
  color: #ffffff;
}
.focus-box .right-box li {
  margin-bottom: 50px;
}
.focus-box .right-box .small-title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  margin-bottom: 10px;
  -webkit-line-clamp: 2;
  /* display: -webkit-box; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.focus-box .right-box .news-box {
  font-size: 14px;
  color: #4c4c4c;
}
/* .focus-box .right-box .small-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: #004eb3;
  margin-right: 6px;
  margin-bottom: -2px;
} */
.focus-box .right-box .news-box ul li {
  margin-bottom: 20px;
}
.focus-box .right-box .news-box ul li a {
  cursor: pointer;
  font-size: 16px;
  padding: 0 10px;
  font-family: MicrosoftYaHei;
  color: #333333;
}
.focus-box .right-box .news-box ul li a:hover {
  color: #004eb3;
}

.focus-box .right-box::-webkit-scrollbar {
  width: 10px;
}
/*定义滑块：内阴影+圆角*/
.focus-box .right-box::-webkit-scrollbar-thumb {
  background-color: #f0f0f0;
  border-radius: 10px;
  width: 10px;
  height: 200px;
}

.school-info-box {
  margin: 0 auto;
  width: 1200px;
  height: 362px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.school-info-box .gxzc,
.school-info-box .gxdt,
.school-info-box .gxft {
  width: 380px;
  height: 100%;
  overflow-y: hidden;
}
.school-info-box .gxzc .info-title,
.school-info-box .gxdt .info-title {
  width: 100%;
  height: 33px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.school-info-box .gxzc .info-title span,
.school-info-box .gxdt .info-title span {
  width: 80px;
  height: 100%;
  text-align: center;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #000000;
}
.school-info-box .gxzc .info-title span::after,
.school-info-box .gxdt .info-title span::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #004eb3;
  margin-top: 2px;
}
.img-and-word .main-content {
  cursor: pointer;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.img-and-word .img-content {
  width: 160px;
  height: 100px;
}
.img-and-word .img-content img {
  width: 100%;
  height: 100%;
}
.img-and-word .word-content {
  width: calc(100% - 180px);
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 通用列表样式 start */
.list-box {
  width: 100%;
}

.list-box ul li {
  width: 100%;
  margin-bottom: 20px;
}

.list-box ul li:last-child {
  margin-bottom: 0;
}

.list-box ul li a {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
}

/* .list-box ul li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #d8d8d8;
  margin-right: 5px;
} */
.list-box ul li a:hover {
  color: #004eb3;
}
/* 通用列表样式 end */

.img-title {
  margin-bottom: 14px;
}
.big-img {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}
.big-img img {
  width: 100%;
  height: 100%;
}
.word-title {
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #333333;
  margin-bottom: 14px;
}
.school-server-box {
  width: 100%;
  height: 350px;
  background: #f4f5f6;
  margin-bottom: 50px;
}
.school-server-box .main-box {
  margin: 0 auto;
  width: 1200px;
  height: 100%;
  position: relative;
}
.school-server-box .main-box > div {
  display: inline-block;
}
.school-server-box .main-box .left-title {
  width: 178px;
  height: 100%;
  background: #004eb3;
  padding-top: 128px;
  text-align: center;
}
.school-server-box .main-box .left-title span {
  display: block;
}
.school-server-box .main-box .left-title span:first-child {
  margin-bottom: 10px;
}
.school-server-box .main-box .left-title span:first-child img {
  width: 119px;
  height: 23px;
}
.school-server-box .main-box .left-title span:last-child {
  font-size: 26px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #ffffff;
}
.school-server-box .main-box .right-content {
  position: absolute;
  top: 15%;
  left: 13%;
  display: flex;
}
.school-server-box .main-box .right-content .select-box {
  width: 140px;
  height: 250px;
  background: #ffffff;
  margin-right: 4px;
  padding: 33px 0px 34px 34px;
}
.school-server-box .main-box .right-content .select-box p {
  cursor: pointer;
  font-size: 18px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #010101;
  margin-bottom: 29px;
}
.school-server-box .main-box .right-content .select-box .active-select {
  color: #004eb3;
}
.school-server-box .main-box .right-content .select-box .active-select::after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border-left: 8px solid #004eb3;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: relative;
  top: 2px;
  left: 10px;
}
.school-server-box .main-box .right-content .select-box p:last-child {
  margin-bottom: 0;
}
.school-server-box .main-box .right-content .content-box {
  display: none;
  width: 905px;
  height: 250px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px #e6e6e6;
  padding: 27px 59px;
  flex-wrap: wrap;
}
.school-server-box .main-box .right-content .content-box a {
  margin-right: 3px;
  margin-bottom: 30px;
}
.school-server-box .main-box .right-content .content-box a .content-item {
  width: 128px;
  text-align: center;
}

.school-server-box .main-box .right-content .content-box a:nth-child(6n) {
  margin-right: 0;
}
.school-server-box
  .main-box
  .right-content
  .content-box
  a:nth-last-child(-n + 6) {
  margin-bottom: 0;
}

.school-server-box
  .main-box
  .right-content
  .content-box
  a
  .content-item
  .circle-box {
  margin: 0 auto;
  width: 56px;
  height: 56px;
  background: #004eb3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.school-server-box .main-box .right-content .content-box a .content-item .p {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #333333;
}

.school-data-box {
  margin: 0 auto;
  width: 1200px;
  height: 362px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.school-data-box .message {
  width: 760px;
  height: 100%;
}
.school-data-box .message .message-title {
  width: 100%;
  height: 33px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.school-data-box .message .message-title span {
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #90929c;
  margin-right: 60px;
  padding: 0 20px;
  height: 33px;
}
.school-data-box .message .message-title .message-active {
  border-bottom: 4px solid #004eb3;
  color: #000;
}
.school-data-box .message .message-title .more-see {
  float: right;
  cursor: pointer;
  font-size: 14px !important;
  font-family: MicrosoftYaHei !important;
  color: #004eb3 !important;
  margin-right: 0 !important;
  position: relative;
  top: 7px;
}
/* .school-data-box .message .message-title .message-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #004eb3;
  margin-top: 2px;
} */
.school-data-box .message .message-contnet {
  display: none;
  justify-content: space-between;
}
.school-data-box .message .message-contnet .message-content-left {
  width: 380px;
}
.school-data-box .shushuo {
  width: 380px;
  height: 100%;
  overflow-y: hidden;
}

.hot-school-box {
  margin: 0 auto;
  width: 1200px;
  height: 430px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.hot-school-box .school-list-box {
  width: 790px;
  height: 100%;
}
.hot-school-box .school-list-box .school-list-title {
  width: 100%;
  height: 33px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.hot-school-box .school-list-box .school-list-title span {
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #000000;
  margin-right: 60px;
}
.change {
  cursor: pointer;
  font-size: 14px !important;
  font-family: MicrosoftYaHei !important;
  color: #004eb3 !important;
  margin-right: 0 !important;
  position: relative;
  top: 7px;
}
.change img {
  margin-left: 4px;
  position: relative;
  top: -2px;
}
.hot-school-box .school-list-box .school-list-title .school-list-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #004eb3;
  margin-top: 2px;
}
.hot-school-box .school-list-box .school-list-warp {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.hot-school-box .school-list-box .school-list-warp .school-list-item {
  cursor: pointer;
  width: 250px;
  height: 110px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px #e6e6e6;
  margin-right: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 26px 27px 10px;
  transition: all 0.4s;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item
  .school-img {
  width: 60px;
  height: 60px;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item
  .school-img
  img {
  width: 100%;
  height: 100%;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item
  .school-info {
  width: 144px;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item
  .school-info
  .school-name {
  width: 100%;
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #000000;
  margin-bottom: 21px;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item
  .school-info
  .school-tag {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item
  .school-info
  .school-tag
  .tags {
  width: 52px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #999999;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item
  .school-info
  .school-tag
  .see-school {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #999999;
}
.hot-school-box .school-list-box .school-list-warp .school-list-item:hover {
  transform: translate(0px, -5px);
  box-shadow: 0px 8px 6px 0px rgba(0, 0, 0, 0.1);
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item:hover
  .school-info
  .school-name {
  color: #004eb3;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item:nth-child(3n) {
  margin-right: 0;
}
.hot-school-box
  .school-list-box
  .school-list-warp
  .school-list-item:nth-last-child(-n + 3) {
  margin-bottom: 0;
}
.hot-school-box .talents-box {
  width: 380px;
  height: 100%;
}
.hot-school-box .talents-box .talents-box-title {
  width: 100%;
  height: 33px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.hot-school-box .talents-box .talents-box-title .talents {
  display: inline-block;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #000000;
  margin-right: 60px;
}
.hot-school-box .talents-box .talents-box-title .talents::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #004eb3;
  margin-top: 2px;
}
.hot-school-box .talents-box .talents-list-box {
  width: 380px;
  height: 370px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px #e6e6e6;
  padding: 20px;
}
.hot-school-box .talents-box .talents-list-box .talents-list-item {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 20px;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
.hot-school-box .talents-box .talents-list-box .talents-list-item .school-logo {
  width: 60px;
  height: 60px;
}
.hot-school-box
  .talents-box
  .talents-list-box
  .talents-list-item
  .school-logo
  img {
  width: 100%;
  height: 100%;
}
.hot-school-box
  .talents-box
  .talents-list-box
  .talents-list-item
  .school-message {
  width: 142px;
}
.hot-school-box
  .talents-box
  .talents-list-box
  .talents-list-item
  .school-message
  .name {
  width: 100%;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #000000;
  margin-bottom: 13px;
}
.hot-school-box
  .talents-box
  .talents-list-box
  .talents-list-item
  .school-message
  .department {
  font-size: 12px;
  font-family: MicrosoftYaHei;
  color: #999999;
}
.hot-school-box .talents-box .talents-list-box .talents-list-item .order-job {
  width: 76px;
  height: 31px;
  background: #004eb3;
  text-align: center;
  line-height: 31px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
}
.hot-school-box
  .talents-box
  .talents-list-box
  .talents-list-item:hover
  .school-message
  .name {
  color: #004eb3;
}
.hot-school-box .talents-box .talents-list-box .talents-list-item:first-child {
  border-top: none;
  padding-top: 0;
}
.hot-school-box .talents-box .talents-list-box .talents-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.special-box {
  margin: 0 auto;
  width: 1200px;
  height: 440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.special-box .right-swiper-box,
.special-box .yujian-box {
  width: 50% !important;
}
.special-box .right-swiper-box {
  /* width: 581px; */
  height: 100%;
}
.special-box .right-swiper-box .swiper-special-box {
  padding-right: 20px;
}
.special-box .right-swiper-box .special-title {
  width: 100%;
  height: 33px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.special-box .yujian-box .yujian-title span,
.special-box .right-swiper-box .special-title span {
  display: inline-block;
  padding: 0 90px 0 40px;
  height: 33px;
  border-bottom: 6px solid #004eb3;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #000000;
  font-weight: bold;
}
/* .special-box .right-swiper-box .special-title span::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #004eb3;
  margin-top: 2px;
} */
.swiper-special-box {
  width: 100%;
  height: calc(100% - 53px);
  overflow: hidden;
}
.swiper-special-box img {
  height: 352px;
}
.special-word {
  position: absolute;
  bottom: 0;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #333333;
}
.special-box .yujian-box {
  /* width: 584px; */
  height: 100%;
}
.special-box .yujian-box .yujian-warp {
  padding-left: 20px;
}
.special-box .yujian-box .yujian-title {
  width: 100%;
  height: 33px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.special-box .yujian-box .yujian-warp {
  width: 100%;
  height: calc(100% - 53px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.special-box .yujian-box .yujian-warp .yujian-item {
  height: 185px;
  width: 276px;
  text-align: center;
  margin-right: 28px;
  margin-bottom: 10px;
}
.special-box .yujian-box .yujian-warp .yujian-item .yujian-img {
  width: 100%;
  height: 155px;
  margin-bottom: 10px;
}
.special-box .yujian-box .yujian-warp .yujian-item .yujian-img img {
  width: 100%;
  height: 100%;
}
.special-box .yujian-box .yujian-warp .yujian-item .yujian-word {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  color: #333333;
}
.special-box .yujian-box .yujian-warp .yujian-item:nth-child(2n) {
  margin-right: 0;
}
.special-box .yujian-box .yujian-warp .yujian-item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}
.website {
  display: block;
  height: 200px;
  font-size: 14px;
  background-color: #282f32;
  color: #999;
}
.container {
  width: 1190px;
  margin-left: auto;
  margin-right: auto;
}
.website .logo {
  float: left;
  margin-top: 50px;
  margin-right: 30px;
}
.website .logo img {
  width: 160px;
}
.website .share {
  margin-top: 64px;
  text-align: center;
}
.website .share .item {
  float: left;
}
.website .share .item img {
  width: 90px;
  height: 90px;
}
.website .share .item:not(:first-child) {
  margin-left: 30px;
}
.website .wrap {
  padding-top: 50px;
}
.dtc {
  display: table-cell;
  width: 9999px;
}
.website .list {
  float: left;
  min-height: 110px;
  padding: 0 30px 10px;
}
.website .list:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.website .link {
  display: inline-block;
  margin-bottom: 4px;
  color: inherit;
}
.website .link:hover {
  color: rgb(226, 226, 226);
}
.website .title {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
.pc-footer {
  padding: 20px 0 14px;
  height: 100px;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  background: #004eb3;
  color: #fff;
}
.pc-footer .friendlink .link {
  vertical-align: middle;
  color: inherit;
}
.pc-footer .friendlink .line {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 6px;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.7);
}
.pc-footer .right .link {
  margin: 0 6px;
  color: inherit;
}
.contact .email {
  font: inherit;
  color: inherit;
}

#hot-major {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#hot-major .hot-major-item {
  width: 150px;
  height: 180px;
  background: #ffffff;
  box-shadow: 0px 0px 15px 0px #e6e6e6;
  margin-bottom: 10px;
  padding: 30px 10px 24px 10px;
  text-align: center;
  transition: all 0.4s;
}
#hot-major .hot-major-item .major-name {
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #333333;
  margin-bottom: 7px;
}
#hot-major .hot-major-item .belong {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
  margin-bottom: 23px;
}
#hot-major .hot-major-item .amount {
  font-size: 20px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #ff6e04;
  margin-bottom: 8px;
}
#hot-major .hot-major-item .year {
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #999999;
}

#hot-major .hot-major-item:hover {
  transform: translate(0px, -5px);
  box-shadow: 0px 8px 6px 0px rgba(0, 0, 0, 0.1);
}
#hot-major .hot-major-item:hover .major-name {
  color: #004eb3;
}
#hot-major .hot-major-item:nth-last-child(-n + 5) {
  margin-bottom: 0;
}

/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* -------------------------------- */
/* 2023/07/29 增加 section2 部分 */
.section2 {
  width: 1200px;
  /* height: 362px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.section2 .section2_left,
.section2 .section2_middle {
  width: 475px;
  /* overflow: hidden; */
}

.section2_left .img-and-word .img-content {
  width: 190px;
  height: 120px;
  /* background: red; */
  margin-right: 20px;
}

.section2_left .img-and-word .main-content {
  height: auto;
  display: flex;
  align-items: self-start;
}

/* .section2 .section2_left {
  width: 789px;
  height: 100%;
  overflow-y: hidden;
} */
.section2 .section2_left .section2_left-title {
  /* width: 100%;
  height: 33px;
   */
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-around;
}
.section2 .section2_left .section2_left-title span {
  cursor: pointer;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #90929c;
  height: 34px;
  padding: 0 20px;
  font-weight: bold;
}
.section2 .section2_left .section2_left-title .section2_left-active {
  border-bottom: 6px solid #004eb3;
  color: #000;
}
.section2 .section2_left .section2_left-title .more-see {
  float: right;
  cursor: pointer;
  font-size: 14px !important;
  font-family: MicrosoftYaHei !important;
  color: #004eb3 !important;
  margin-right: 0 !important;
  position: relative;
  top: 7px;
}
/* .section2 .section2_left .section2_left-title .section2_left-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #004eb3;
  margin-top: 2px;
} */
.section2 .section2_left .section2_left-contnet {
  display: none;
  justify-content: space-between;
}

.section2 .shushuo {
  width: 380px;
  height: 100%;
  overflow-y: hidden;
}

.section2_left-contnet .list-box ul li {
  width: 100%;
  margin-bottom: 4px;
}

.section2_left-contnet .list-box ul li a {
  font-weight: normal;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #4c4c4c;
}

.section2_left-contnet .ellipsis {
  font-weight: normal;
  color: #999;
}

/* section2_middle */
.section2_middle .img-and-word .img-content {
  width: 190px;
  height: 120px;
  /* background: red; */
  margin-right: 20px;
}

.section2_middle .img-and-word .main-content {
  height: auto;
  display: flex;
  align-items: self-start;
}

/* .section2 .section2_middle {
  width: 789px;
  height: 100%;
  overflow-y: hidden;
} */
.section2 .section2_middle .section2_middle-title {
  /* width: 100%;
  height: 33px;
   */
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.section2 .section2_middle .section2_middle-title span {
  cursor: pointer;
  font-size: 20px;
  font-family: MicrosoftYaHei;
  color: #000000;
  height: 34px;
  padding: 0 20px;
  font-weight: bold;
}
.section2 .section2_middle .section2_middle-title .section2_middle-active {
  border-bottom: 6px solid #004eb3;
}
.section2 .section2_left .more-see,
.section2 .section2_middle .more-see {
  float: right;
  cursor: pointer;
  font-size: 14px !important;
  font-family: MicrosoftYaHei !important;
  color: #004eb3 !important;
  margin-right: 0 !important;
  position: relative;
  top: 7px;
  font-weight: normal;
}
/* .section2 .section2_middle .section2_middle-title .section2_middle-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #004eb3;
  margin-top: 2px;
} */
.section2 .section2_middle .section2_middle-contnet {
  display: none;
  justify-content: space-between;
}

.section2 .shushuo {
  width: 380px;
  height: 100%;
  overflow-y: hidden;
}

.section2_middle-contnet .list-box ul li {
  width: 100%;
  margin-bottom: 4px;
}

.section2_middle-contnet .list-box ul li a {
  font-weight: normal;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  color: #4c4c4c;
}

.section2_middle-contnet .ellipsis {
  font-weight: normal;
  color: #999;
}

.section2_left-contnet .img-and-word .word-content,
.section2_middle-contnet .img-and-word .word-content {
  line-height: normal;
  width: 275px;
  overflow: visible;
}

/* section2_right */
.section2_right {
  width: 210px;
}
.section2_right-title {
  display: inline-block;
  text-align: center;
  padding: 4px 10px;
  font-size: 20px;
  color: #fff;
  background-color: #004eb3;
  font-weight: bold;
}
.section2_right-content {
  height: 100%;
  margin-top: -14px;
  padding: 30px 20px 20px;
  background-color: #eee;
}

.section2_right-content a {
  display: block;
  line-height: 30px;
  color: #205497;
}

.school-data-box .img-title {
  font-size: 20px;
  font-weight: bold;
  color: #004eb3;
}

.lianmeng,
.qiye {
  width: 1200px;
  margin: 0 auto;
}

.lianmeng-wrap {
  position: relative;
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}

.lianmeng-swiper {
  width: 100%;
  padding: 0 14px;
}

.lianmeng-swiper-button-prev,
.lianmeng-swiper-button-next {
  width: 33px;
  height: 33px;
}

.lianmeng-swiper-button-prev,
.lianmeng-swiper-button-next {
  background: url(/e_include/gy/img/swiperBtn.png) no-repeat center;
}
.lianmeng-swiper-button-next {
  transform: rotate(180deg);
}

/* common */
.column-title {
  padding: 10px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  background-color: #004eb3;
}

/* .lianmeng-content {
  padding: 50px 0;
} */

.lianmeng-content .swiper-slide {
  padding: 50px 6px;
}

.lianmeng-swiper-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 356px;
  height: 156px;
  box-shadow: 0 0 8px #eee;
}

.lianmeng-swiper .swiper-wrapper img {
  width: auto;
  height: auto;
}

.qiye-content {
  padding: 20px;
}

.qiye-content ul {
  margin: 30px -10px 50px;
  font-size: 0;
}

.qiye-content li {
  display: inline-block;
  width: 33.3333%;
  margin-bottom: 20px;
}

.qiye-box {
  display: flex;
  justify-content: space-around;
  width: 95%;
  height: 156px;
  margin: 0 auto;
  box-shadow: 4px 4px 20px #eee;
}

.qiye-box img {
  width: 100%;
}

.qiye-box p {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 16px;
}

/* .qiye-box .img,
.qiye-box p {
  width: 50%;
} */

.school-data-box .list-box li {
  position: relative;
  /* padding-left: 70px; */
  margin-bottom: 0;
  line-height: 60px;
  text-indent: 40px;
}

.school-data-box .list-box li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #004eb3;
  border-radius: 100%;
}

.school-data-box .list-box {
  width: 100%;
}

.school-data-box .list-box li a {
  font-size: 18px;
}

.shushuo .big-img {
  margin-bottom: 10px;
}
.shushuo .word-title {
  margin-bottom: 0;
  padding-left: 10px;
  font-size: 16px;
  font-weight: normal;
}

.shushuo .word-title a {
  color: #4c4c4c;
}

.shushuo .list-boxs {
  padding-left: 10px;
}
.shushuo .list-boxs li {
  margin-top: 10px;
}

/* 轮播图样式覆盖 */
.swiper-gj .swiper-pagination {
  right: 20px;
  bottom: 10px;
  color: #fff;
}

.swiper-gj .swiper-pagination-bullet {
  background: #90929c;
}

.swiper-gj .swiper-pagination-bullet-active {
  background: #fff;
}

.special-bigImage {
  width: 580px;
  height: 386px;
}

.special-bigImage img {
  width: 580px;
  height: 386px;
}

.more-see a {
  font-size: 14px !important;
  color: #004eb3 !important;
}

.shushuo .more-see {
  margin-top: 10px;
  text-align: right;
}

.school-data-box .message .more-see {
  margin-top: -18px;
  text-align: right;
}
