@charset "UTF-8";
.indexPage {
  /* 响应式调整 */
  /* 通知公告区 */
  /* 响应式调整 */
  /* 工作动态区 */
  /* 主营业务区 */
  /* 自适应容器 */
}

.indexPage .banner {
  height: 41.6666vw;
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.indexPage .banner .textImgColor {
  margin: 0 auto;
  font-size: 7vw;
  animation: showup 3s forwards;
  background: linear-gradient(90deg, #FFFFFF, #fae4ff, #29f0fb, #FFFFFF, #fae4ff, #29f0fb);
  /* 从蓝色到浅蓝的水平渐变 */
  /* 2. 关键：让文字裁剪背景，只显示文字区域的背景 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 3. 文字本身设为透明，露出背景渐变 */
  color: transparent;
  /* 可选：增加文字粗细，让渐变更明显 */
  font-weight: 400;
}

@keyframes showup {
  from {
    letter-spacing: -5vw;
    filter: blur(2vw);
  }
  to {
    letter-spacing: 0;
    filter: blur(0vw);
  }
}

.indexPage .banner-cards {
  position: absolute;
  bottom: -7.8125vw;
  /* 150/1920×100 */
  height: 15.625vw;
  /* 300/1920×100 */
  display: flex;
  gap: 1.0417vw;
  /* 20/1920×100 */
  z-index: 9;
}

@media (max-width: 1400px) {
  .indexPage .banner-cards {
    justify-content: space-around;
  }
}

@media (min-width: 1400px) {
  .indexPage .banner-cards {
    justify-content: space-between;
  }
}

.indexPage .banner-card {
  margin-top: 4.6875vw;
  /* 90/1920×100 */
  z-index: 1;
  background: linear-gradient(0deg, #FEFFFF, #DCEAFF);
  border-radius: 0.625vw;
  /* 12/1920×100 */
  border: 1px solid #FFFFFF;
  text-align: left;
  width: 23.4375vw;
  /* 450/1920×100 */
  height: 10.9375vw;
  /* 210/1920×100 */
  position: relative;
  padding-left: 12.2917vw;
  transition: margin-top 3s ease;
  /* 236/1920×100 */
}

.indexPage .banner-card:hover {
  transform: scale(1.02);
}

.indexPage .banner-card .img {
  width: 8.5938vw;
  /* 165/1920×100 */
  height: 8.5938vw;
  /* 165/1920×100 */
  position: absolute;
  top: -2.8125vw;
  /* 54/1920×100 */
  left: 2.8125vw;
  /* 54/1920×100 */
}

.indexPage .banner-card .img2 {
  width: 100%;
  /* 165/1920×100 */
  height: 100%;
  /* 165/1920×100 */
  position: absolute;
  top: 0;
  left: 0;
}

.indexPage .card-title {
  font-weight: bold;
  font-size: 1.25vw;
  /* 24/1920×100 */
  color: #1A1A1A;
  margin-top: 2.8125vw;
  /* 54/1920×100 */
}

.indexPage .card-headline {
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  margin-top: 0.78125vw;
  /* 15/1920×100 */
}

.indexPage .card-exam {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  width: 6.3021vw;
  /* 121/1920×100 */
  height: 1.875vw;
  /* 36/1920×100 */
  border-radius: 1.875vw;
  /* 36/1920×100 */
  margin-top: 1.1458vw;
  /* 22/1920×100 */
  text-align: center;
  line-height: 1.875vw;
  /* 36/1920×100 */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.indexPage .card-exam:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5208vw 1.5625vw rgba(6, 111, 244, 0.2);
}

.indexPage .card-exam::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.indexPage .card-exam:hover::before {
  left: 100%;
}

.indexPage .card-exam img {
  width: 0.9375vw;
  height: 0.73vw;
  margin-left: 0.2vw;
}

.indexPage .inform {
  overflow: hidden;
  width: 100%;
  height: 13.75vw;
  /* 265/1920×100 */
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF, #dde5f7, #dde5f7);
}

.indexPage .inform .informBody {
  /* height: 13.75vw; */
  height: 4.0625vw;
  margin-top: 8.854vw;
  overflow: hidden;
  /* 265/1920×100 */
  position: relative;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF, #E6F5FF);
  box-shadow: 0px 0.1vw 1vw 0px #E2E5EA;
  /* 3/1920×100, 29/1920×100 */
  border-radius: 0.625vw;
  /* 12/1920×100 */
  border: 1px solid #FFFFFF;
}

.indexPage .inform .informBox {
  width: 100%;
  height: 4.0625vw;
  /* 78/1920×100 */
  position: absolute;
  bottom: 0;
  padding: 0 1.5104vw;
  /* 29/1920×100 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

.indexPage .informBox .left {
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #3D3D3D;
  display: flex;
  align-items: center;
}

.indexPage .informBox .right {
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #066FF4;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.indexPage .informBox .right img {
  width: 0.36vw;
  height: 0.52vw;
  margin-left: 0.36vw;
}

.indexPage .notificationMessage {
  margin-right: 0.5vw;
  display: inline-block;
}

@media (max-width: 1400px) {
  .indexPage .notificationMessage {
    max-width: 75vw;
  }
}

@media (min-width: 1400px) {
  .indexPage .notificationMessage {
    max-width: 50vw;
  }
}

.indexPage .bagImg {
  width: 100%;
  height: 78.125vw;
  /* 1500/1920×100 */
}

.indexPage .notice-content {
  height: 33.0208vw;
  /* 634/1920×100 */
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.indexPage .notice-slider {
  width: 33.0208vw;
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  /* 634/1920×100 */
}

.indexPage .notice-slider-img {
  width: 100%;
  height: 21.718vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 408/1920×100 */
}

.indexPage .notice-slider-img:hover .notice-slider-img-conter {
  transform: scale(1.05);
}

.indexPage .notice-slider-img-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.indexPage .notice-slider .slider-desc {
  background: #FFFFFF;
  padding: 1.6667vw;
  /* 32/1920×100 */
  height: 11.3094vw;
  /* 217/1920×100 */
}

.indexPage .slider-desc-name {
  width: 100%;
  display: flex;
  align-items: center;
}

.indexPage .slider-desc-typename {
  width: 4.5833vw;
  /* 88/1920×100 */
  height: 1.6667vw;
  line-height: 1.6667vw;
  /* 32/1920×100 */
  background: rgba(6, 111, 244, 0.14);
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  text-align: center;
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #066FF4;
  margin-right: 1.0417vw;
  /* 20/1920×100 */
}

.indexPage .slider-desc-name-text {
  font-weight: 400;
  font-size: 1.25vw;
  /* 24/1920×100 */
  color: #000000;
}

.indexPage .slider-desc-conter {
  margin: 1.0417vw 0;
  /* 20/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #6D767F;
  line-height: 1.25vw;
  /* 24/1920×100 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.indexPage .slider-desc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.indexPage .slider-desc-bottom .time {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #ADB2B9;
  line-height: 1.25vw;
  /* 24/1920×100 */
}

.indexPage .notice-content .command {
  display: flex;
  position: absolute;
  bottom: 1vw;
  right: 2vw;
}

.indexPage .notice-content .command .left {
  background: url("../img/home/left4.png") no-repeat 0 0/100% 100%;
  transition: all 1s;
}

.indexPage .notice-content .command .left:hover {
  background: url("../img/home/leftAction.png") no-repeat 0 0/100% 100%;
  transition: all 1s;
}

.indexPage .notice-content .command .right {
  background: url("../img/home/right4.png") no-repeat 0 0/100% 100%;
  transition: all 1s;
}

.indexPage .notice-content .command .right:hover {
  background: url("../img/home/rightAction.png") no-repeat 0 0/100% 100%;
  transition: all 1s;
}

.indexPage .notice-content .command .textImg {
  width: 2.0833vw;
  /* 40/1920×100 */
  height: 2.0833vw;
  /* 40/1920×100 */
  cursor: pointer;
}

.indexPage .notice-content .command .textImg + .textImg {
  margin-left: 0.677vw;
}

.indexPage .notice-list {
  flex: 1;
  margin-left: 1.0417vw;
  /* 20/1920×100 */
  height: 33.0208vw;
  /* 634/1920×100 */
}

.indexPage .notice-list-card {
  width: 100%;
  height: calc(50% - 0.5208vw);
  /* 10/1920×100 */
  background: #FFFFFF;
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  border: 1px solid #EAECF1;
  padding: 1.5625vw;
  /* 30/1920×100 */
}

.indexPage .notice-list-card + .notice-list-card {
  margin-top: 1.0417vw;
  /* 20/1920×100 */
}

.indexPage .notice-list-top {
  display: flex;
  margin-bottom: 1.3542vw;
  /* 26/1920×100 */
  justify-content: space-between;
}

.indexPage .notice-list-top .name {
  font-weight: bold;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #000000;
  line-height: 1.25vw;
  /* 24/1920×100 */
}

.indexPage .notice-list-top .look {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #066FF4;
  line-height: 1.25vw;
  /* 24/1920×100 */
  cursor: pointer;
}

.indexPage .notice-item {
  height: 3.75vw;
  /* 72/1920×100 */
  display: flex;
  width: 100%;
  cursor: pointer;
}

.indexPage .notice-item + .notice-item {
  margin-top: 2.4479vw;
  /* 47/1920×100 */
}

.indexPage .notice-item-img {
  width: 6.6667vw;
  /* 128/1920×100 */
  height: 3.75vw;
  /* 72/1920×100 */
  overflow: hidden;
  border-radius: 0.2vw;
}

.indexPage .notice-item-img:hover .notice-item-img-conter {
  transform: scale(1.05);
}

.indexPage .notice-item-img .notice-item-img-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.indexPage .notice-item .right {
  flex: 1;
  margin-left: 0.5208vw;
  /* 10/1920×100 */
}

.indexPage .notice-item .right .name {
  font-size: 0.8333vw;
  /* 16/1920×100 */
  height: 2.7083vw;
  /* 52/1920×100 */
  line-height: 1.454vw;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.indexPage .notice-item .right .time {
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #ADB2B9;
  line-height: 1.25vw;
  /* 24/1920×100 */
}

.indexPage .dynamic-content {
  position: relative;
  overflow: hidden;
  height: 24.5833vw;
  /* 472/1920×100 */
  width: 100%;
  padding: 0 4.1667vw;
  /* 80/1920×100 */
}

.indexPage .dynamic-slider {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  height: 24.5833vw;
  /* 472/1920×100 */
}

.indexPage .dynamic-slider::-webkit-scrollbar {
  display: none;
}

.indexPage .dynamic-card {
  padding: 0 0.5208vw;
  /* 10/1920×100 */
  width: 33.333%;
  flex: 0 0 33.3333%;
  height: 24.5833vw;
  /* 472/1920×100 */
}

.indexPage .dynamic-card-body {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  overflow: hidden;
  /* 2/1920×100, 10/1920×100 */
  scroll-snap-align: start;
}

.indexPage .dynamic-card-body .dynamic-card-body-img {
  width: 100%;
  height: 13.28125vw;
  /* 255/1920×100 */
  overflow: hidden;
}

.indexPage .dynamic-card-body .dynamic-card-body-img:hover .dynamic-card-body-img-conter {
  transform: scale(1.05);
  transition: all 1s ease;
}

.indexPage .dynamic-card-body-img-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.indexPage .dynamic-card .card-content {
  padding: 0.78125vw;
  /* 15/1920×100 */
  height: 11.302vw;
  width: 100%;
  background-color: #F9F9F9;
}

.indexPage .dynamic-card .card-content .name {
  height: 2.65625vw;
  /* 51/1920×100 */
  font-weight: 400;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-top: 1.5625vw;
}

.indexPage .dynamic-card .card-content .data {
  height: 2.0833vw;
  /* 40/1920×100 */
  font-size: 0.78125vw;
  /* 15/1920×100 */
  color: #505050;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.indexPage .dynamic-card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5625vw;
  /* 30/1920×100 */
}

.indexPage .dynamic-card-bottom .time {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #A1A1A1;
  line-height: 1.25vw;
  /* 24/1920×100 */
}

.indexPage .dynamic-card-bottom .look {
  font-weight: 400;
  font-size: 0.8375vw;
  /* 18/1920×100 */
  color: #066FF4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indexPage .dynamic-card-bottom .look img {
  width: 0.9375vw;
  height: 0.73vw;
  margin-left: 0.2vw;
}

.indexPage .dynamic-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.1667vw;
  /* 80/1920×100 */
  height: 4.1667vw;
  /* 80/1920×100 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 1s;
}

.indexPage .dynamic-arrow.left {
  background: url("../img/home/left2.png") no-repeat 0 0/100% 100%;
  left: 0;
}

.indexPage .dynamic-arrow.left:hover {
  background: url("../img/home/left1.png") no-repeat 0 0/100% 100%;
  left: 0;
}

.indexPage .dynamic-arrow.right {
  background: url("../img/home/right2.png") no-repeat 0 0/100% 100%;
  right: 0;
}

.indexPage .dynamic-arrow.right:hover {
  background: url("../img/home/right1.png") no-repeat 0 0/100% 100%;
  right: 0;
}

.indexPage .service {
  width: 100%;
}

.indexPage .service-body {
  width: 100%;
  height: 34.375vw;
  /* 660/1920×100 */
}

.indexPage .service-tabs {
  display: flex;
  justify-content: center;
  gap: 1.0417vw;
  /* 20/1920×100 */
  margin-bottom: 1.5625vw;
  /* 30/1920×100 */
}

.indexPage .service-tab {
  padding: 0.5208vw 1.0417vw;
  /* 10/1920×100, 20/1920×100 */
  border: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.25vw;
  /* 24/1920×100 */
  color: #1A1A1A;
}

.indexPage .service-tab.active {
  border-bottom: 3px solid #007bff;
  color: #007bff;
}

.indexPage .service-body .adaptiveWidth {
  height: 100%;
  margin: 0 auto;
  display: flex;
}

.aboutPage {
  /* 关于我们页面专属样式 */
  /* 轮播区域样式 */
  /* 企业文化 */
  /* hover 特效：背景渐变 + 放大 */
  /* 主营业务区 */
  /* 自适应容器 */
  /* 优势 */
  /* 旋转动画关键帧：绕Z轴旋转 */
  /* 合作伙伴 */
  /* 轮播区域样式 */
}

.aboutPage .about-banner {
  height: 30vw;
  background: url("../img/about/aboutBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
  margin-top: 4.0625vw;
}

.aboutPage .banner-text {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
  line-height: 1.6667vw;
  /* 32/1920×100 */
}

.aboutPage .about-content {
  background-color: #ffffff;
  height: 35.3125vw;
  /* 678/1920×100 */
}

.aboutPage .briefIntroduction .left {
  width: 30.2083vw;
  /* 580/1920×100 */
  height: 17.0833vw;
  /* 328/1920×100 */
  overflow: hidden;
  border-radius: 0.4167vw;
}

.aboutPage .briefIntroduction .briefIntroductionImg {
  width: 30.2083vw;
  /* 580/1920×100 */
  height: 17.0833vw;
  /* 328/1920×100 */
  overflow: hidden;
  border-radius: 0.4167vw;
}

.aboutPage .briefIntroduction .briefIntroductionImg:hover .briefIntroductionImg-conter {
  transform: scale(1.05);
}

.aboutPage .briefIntroduction .briefIntroductionImg .briefIntroductionImg-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.aboutPage .about-section .right {
  width: calc(100% - 30.2083vw);
  /* 580/1920×100 */
  height: 17.0833vw;
  /* 328/1920×100 */
  padding-left: 2.2396vw;
  /* 43/1920×100 */
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #333333;
  line-height: 1.5625vw;
  /* 30/1920×100 */
  overflow-y: auto;
}

.aboutPage .honor {
  width: 100%;
  height: 66.77083vw;
  /* 1282/1920×100 */
  background-color: #F2F6FC;
  position: relative;
}

.aboutPage .honor .bgImg {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 65.5729vw;
  /* 1259/1920×100 */
  height: 24.0625vw;
  /* 462/1920×100 */
  background: url("../img/about/honor.png") no-repeat 0 0/100% 100%;
}

.aboutPage .honor .bgImg2 {
  z-index: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65.5729vw;
  /* 1259/1920×100 */
  height: 24.0625vw;
  /* 462/1920×100 */
  background: url("../img/about/honor2.png") no-repeat 0 0/100% 100%;
}

.aboutPage .honor-body {
  z-index: 1;
  position: relative;
}

.aboutPage .honor-imglist {
  display: flex;
  transition: transform 0.1s linear;
}

.aboutPage .honor-imglist-itemBox {
  width: 18.2292vw;
  /* 350/1920×100 */
  flex: 0 0 18.2292vw;
  /* 350/1920×100 */
  padding: 0 0.5208vw;
  /* 10/1920×100 */
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #1A1A1A;
}

.aboutPage .honor-imglist-item {
  width: 17.1354vw;
  /* 329/1920×100 */
  border: 1px solid #FFFFFF;
  border-radius: 0.625vw;
  /* 12/1920×100 */
  text-align: center;
}

.aboutPage .honor-imglist-item .name {
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #1A1A1A;
  line-height: 1.5104vw;
  /* 29/1920×100 */
  margin-top: 0.8333vw;
  /* 16/1920×100 */
}

.aboutPage .item1 {
  width: 17.1354vw;
  /* 329/1920×100 */
  height: 14.7396vw;
  /* 283/1920×100 */
  background: linear-gradient(0deg, #F5FAFF, #FFFFFF, #FFFFFF);
  padding: 1.40625vw;
  /* 27/1920×100 */
}

.aboutPage .item1 img {
  width: 11.3021vw;
  /* 217/1920×100 */
  height: 8.3333vw;
  /* 160/1920×100 */
  margin: 0 auto;
}

.aboutPage .item2 {
  width: 17.1354vw;
  /* 329/1920×100 */
  height: 20.0vw;
  /* 382/1920×100≈20.0vw（实际382/1920×100=20.0vw） */
  background: linear-gradient(0deg, #F5FAFF, #E7F1FF);
  padding: 1.6146vw;
  /* 31/1920×100 */
}

.aboutPage .item2 img {
  width: 9.8438vw;
  /* 189/1920×100 */
  height: 13.125vw;
  /* 252/1920×100 */
  margin: 0 auto;
}

.aboutPage .item3 {
  width: 17.1354vw;
  /* 329/1920×100 */
  height: 14.7396vw;
  /* 283/1920×100 */
  background: linear-gradient(0deg, #F5FAFF, #FFFFFF, #FFFFFF);
  padding: 1.40625vw;
  /* 27/1920×100 */
}

.aboutPage .item3 img {
  width: 11.3021vw;
  /* 217/1920×100 */
  height: 8.3333vw;
  /* 160/1920×100 */
  margin: 0 auto;
}

.aboutPage .honor-carousel {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.0417vw;
  /* 20/1920×100 */
}

.aboutPage .enterpriseCulture {
  background: #FFFFFF;
}

.aboutPage .enterpriseCulture-body {
  height: 26.2917vw;
  /* 505/1920×100 */
  display: flex;
  gap: 1.3021vw;
  /* 新增：卡片间距 */
}

.aboutPage .enterpriseCulture-body-left,
.aboutPage .enterpriseCulture-body-right-top1,
.aboutPage .enterpriseCulture-body-right-top2,
.aboutPage .enterpriseCulture-body-right-bottom {
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* 新增：过渡动画 */
}

.aboutPage .enterpriseCulture-body-left {
  background: url("../img/about/enterpriseCulture1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 23.4375vw;
  /* 450/1920×100 */
  display: flex;
  align-items: center;
}

.aboutPage .enterpriseCulture-body-right {
  padding-left: 0;
  /* 移除原有左内边距 */
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.3021vw;
  /* 新增：内部卡片间距 */
}

.aboutPage .enterpriseCulture-body-right-top {
  width: 100%;
  height: 12.5vw;
  /* 240/1920×100 */
  display: flex;
  gap: 1.3021vw;
  /* 新增：内部卡片间距 */
}

.aboutPage .enterpriseCulture-body-right-top1 {
  background: url("../img/about/enterpriseCulture2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: calc(50% - 0.651vw);
  /* 自适应宽度 */
  height: 100%;
  display: flex;
  align-items: center;
}

.aboutPage .enterpriseCulture-body-right-top2 {
  background: url("../img/about/enterpriseCulture3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: calc(50% - 0.651vw);
  /* 自适应宽度 */
  height: 100%;
  display: flex;
  align-items: center;
}

.aboutPage .enterpriseCulture-body-right-bottom {
  background: url("../img/about/enterpriseCulture4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 12.5vw;
  /* 240/1920×100 */
  display: flex;
  align-items: center;
}

.aboutPage .enterpriseCulture-text {
  margin-left: 1.8229vw;
  /* 35/1920×100 */
  position: relative;
  z-index: 2;
  opacity: 1;
}

.aboutPage .enterpriseCulture-text .text1 {
  font-weight: bold;
  font-size: 1.25vw;
  /* 24/1920×100 */
  color: #FFFFFF;
  line-height: 1.5625vw;
  /* 30/1920×100 */
}

.aboutPage .enterpriseCulture-text .text2 {
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #FFFFFF;
  line-height: 1.5625vw;
  /* 30/1920×100 */
}

.aboutPage .enterpriseCulture-body-left:hover,
.aboutPage .enterpriseCulture-body-right-top1:hover,
.aboutPage .enterpriseCulture-body-right-top2:hover,
.aboutPage .enterpriseCulture-body-right-bottom:hover {
  background-size: 120% 120%;
  box-shadow: 0 0.5208vw 1.0417vw rgba(0, 0, 0, 0.1);
}

.aboutPage .enterpriseCulture-body-left:hover::before,
.aboutPage .enterpriseCulture-body-right-top1:hover::before,
.aboutPage .enterpriseCulture-body-right-top2:hover::before,
.aboutPage .enterpriseCulture-body-right-bottom:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.aboutPage .service {
  width: 100%;
}

.aboutPage .service-body {
  width: 100%;
  height: 34.375vw;
  /* 660/1920×100 */
}

.aboutPage .service-tabs {
  display: flex;
  justify-content: center;
  gap: 1.0417vw;
  /* 20/1920×100 */
  margin-bottom: 1.5625vw;
  /* 30/1920×100 */
}

.aboutPage .service-tab {
  padding: 0.5208vw 1.0417vw;
  /* 10/1920×100, 20/1920×100 */
  border: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.25vw;
  /* 24/1920×100 */
  color: #1A1A1A;
}

.aboutPage .service-tab.active {
  border-bottom: 3px solid #007bff;
  color: #007bff;
}

.aboutPage .service-body .adaptiveWidth {
  height: 100%;
  margin: 0 auto;
  display: flex;
}

.aboutPage .preponderance {
  background-color: #F4F9FB;
}

.aboutPage .preponderance-body {
  height: 26.7708vw;
  /* 520/1920×100（假设原505px为笔误，若为520px则是26.7708vw；若保持505px则是26.2917vw） */
  position: relative;
  margin-top: 5vw;
}

.aboutPage .preponderance-body {
  display: flex;
  justify-content: center;
}

.aboutPage .circle-img-box {
  position: absolute;
  top: -16.9271vw;
  /* 325/1920×100（原325px） */
  width: 44.8438vw;
  /* 861/1920×100 */
  height: 44.8438vw;
  /* 861/1920×100 */
  transform-style: preserve-3d;
}

.aboutPage .circle-img-box2 {
  position: absolute;
  width: 36.25vw;
  /* 696/1920×100 */
  height: 17.7083vw;
  /* 340/1920×100 */
}

.aboutPage .circle-img1 {
  animation: rotateCircle 15s linear infinite;
  width: 44.8438vw;
  /* 861/1920×100 */
  height: 44.8438vw;
  /* 861/1920×100 */
}

@keyframes rotateCircle {
  0% {
    transform: rotateX(70deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(70deg) rotateZ(360deg);
  }
}

.aboutPage .circle-imgIcon-box {
  display: flex;
  position: absolute;
}

.aboutPage .circle-imgIcon-box .textBox {
  width: 14.375vw;
  /* 276/1920×100 */
}

.aboutPage .circle-imgIcon-box .textBox .text1 {
  font-weight: bold;
  font-size: 1.25vw;
  /* 24/1920×100 */
  color: #1A1A1A;
}

.aboutPage .circle-imgIcon-box .textBox .text2 {
  margin-top: 1.1458vw;
  /* 22/1920×100 */
  width: 14.375vw;
  /* 276/1920×100 */
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #696F77;
}

.aboutPage .circle-imgIcon-loc1 {
  top: -2.5vw;
  /* 48/1920×100 */
  left: -17.3958vw;
  /* 334/1920×100 */
}

.aboutPage .circle-imgIcon-loc2 {
  top: -2.5vw;
  /* 48/1920×100 */
  right: -17.3958vw;
  /* 334/1920×100 */
}

.aboutPage .circle-imgIcon-loc3 {
  top: 11.7188vw;
  /* 225/1920×100 */
  left: -8.3333vw;
  /* 160/1920×100 */
}

.aboutPage .circle-imgIcon-loc4 {
  top: 11.7188vw;
  /* 225/1920×100 */
  right: -8.3333vw;
  /* 160/1920×100 */
}

.aboutPage .circle-imgIcon {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  animation: breath 3s linear infinite;
  margin-left: 0.5208vw;
  /* 10/1920×100 */
}

.aboutPage .circle-imgIcon2 {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  animation: breath 2.5s linear infinite;
  margin-right: 0.5208vw;
  /* 10/1920×100 */
}

.aboutPage .circle-imgIcon3 {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  animation: breath 2.7s linear infinite;
  margin-left: 0.5208vw;
  /* 10/1920×100 */
}

.aboutPage .circle-imgIcon4 {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  animation: breath 3.4s linear infinite;
  margin-right: 0.5208vw;
  /* 10/1920×100 */
}

@keyframes breath {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.aboutPage .preponderance-body-box {
  width: 36.25vw;
  /* 696/1920×100 */
  height: 17.7083vw;
  /* 340/1920×100 */
  background: url("../img/about/circle2.png") no-repeat 0 0/100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutPage .circle-img3 {
  width: 13.0vw;
  /* 249/1920×100≈13.0vw */
  height: 13.0vw;
  /* 249/1920×100≈13.0vw */
}

.aboutPage .partner {
  height: 24.0625vw;
  /* 462/1920×100 */
  background: #fafafa;
}

.aboutPage .partner-carousel {
  width: 100%;
  overflow: hidden;
  padding-bottom: 1.0417vw;
  /* 20/1920×100 */
}

.aboutPage .partner-imglist {
  display: flex;
  transition: transform 0.1s linear;
}

.aboutPage .partner-imglist-itemBox {
  width: 14.5833vw;
  /* 280/1920×100 */
  flex: 0 0 14.5833vw;
  /* 280/1920×100 */
  padding: 0 0.5208vw;
  /* 10/1920×100 */
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #1A1A1A;
}

.aboutPage .partner-imglist-item {
  width: 13.5417vw;
  border-radius: 0.3vw;
  /* 12/1920×100 */
  text-align: center;
  background-color: #FFF;
  box-shadow: 0.26vw 0.26vw 0.52vw #E7E9EA;
  border-radius: 0.125vw;
}

.aboutPage .partner-imglist-item:hover img {
  transform: scale(1.05);
  transition: all 1s ease;
}

.aboutPage .item {
  width: 13.5417vw;
  padding: 0.5208vw;
  /* 10/1920×100 */
}

.aboutPage .item img {
  width: 12.5vw;
  /* 240/1920×100 */
  height: 6.25vw;
  /* 120/1920×100 */
}

.contactPage {
  /* 介绍 */
}

.contactPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/contact/contactBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.contactPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.contactPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.contactPage .about-content {
  background-color: #ffffff;
}

.contactPage .dynamic-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 1.0417vw 0;
  /* 20/1920×100 */
  padding: 1.5625vw 0 3vw 0;
  /* 30/1920×100 */
  position: relative;
}

.contactPage .dynamic-content .left {
  width: 22.3958vw;
  /* 430/1920×100 */
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #6c6c6c;
}

.contactPage .dynamic-content .left h3 {
  font-size: 1.5625vw;
  /* 30/1920×100 */
  color: #1A1A1A;
  margin-bottom: 4.1667vw;
  /* 80/1920×100 */
}

.contactPage .dynamic-content .right {
  width: 45.1042vw;
  /* 866/1920×100 */
  height: 25vw;
  /* 480/1920×100 */
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  overflow: hidden;
  box-shadow: 0 0.1042vw 0.5208vw rgba(0, 0, 0, 0.05);
  /* 2/1920×100, 10/1920×100 */
}

.contactPage .dynamic-content .right .name {
  margin-right: 0.5208vw;
  /* 10/1920×100 */
}

.contactPage .dynamic-content .text {
  margin-bottom: 1.0417vw;
  /* 20/1920×100 */
  line-height: 1.0417vw;
  /* 20/1920×100 */
}

.contactPage .dynamic-content .img {
  width: 6.6667vw;
  /* 128/1920×100 */
  height: 6.6667vw;
  /* 128/1920×100 */
}

.contactPage .dynamic-content .left-footer-box {
  display: flex;
  flex: 0 0;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 300;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #000000;
}

.contactPage .dynamic-content .left-footer-box + .left-footer-box {
  margin-left: 2.0833vw;
  /* 40/1920×100 */
}

.contactPage .dynamic-content .left-footer {
  display: flex;
  justify-content: center;
}

.infoPage {
  background-color: #ffffff;
  /* 园区介绍 */
  /* 通知公告 */
  /* 输入框样式 */
  /* 搜索按钮样式 */
}

.infoPage .jc {
  justify-content: center;
}

.infoPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/info/infoBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.infoPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.infoPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.infoPage .about-content {
  background-color: #ffffff;
}

.infoPage .dynamic-content {
  position: relative;
  overflow: hidden;
  min-height: 24.5833vw;
  width: 100%;
  padding-bottom: 1.5625vw;
  margin-bottom: 1.5625vw;
  border-radius: 0.125vw;
  /* 99/1920×100 */
}

.infoPage .dynamic-slider {
  display: flex;
  flex-wrap: wrap;
}

.infoPage .dynamic-slider::-webkit-scrollbar {
  display: none;
}

.infoPage .dynamic-card {
  width: 33.3333%;
  flex: 0 0 33.33333%;
  height: 24.5833vw;
  padding: 0 1vw;
  margin-bottom: 2vw;
}

.infoPage .dynamic-card-body {
  height: 100%;
  width: 100%;
  background-color: #F9F9F9;
  border-radius: 0.4167vw;
  overflow: hidden;
}

.infoPage .dynamic-card-body .dynamic-card-body-img {
  width: 100%;
  height: 13.28125vw;
  /* 255/1920×100 */
  overflow: hidden;
}

.infoPage .dynamic-card-body .dynamic-card-body-img:hover .dynamic-card-body-img-conter {
  transform: scale(1.05);
  transition: all 1s ease;
}

.infoPage .dynamic-card-body-img-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.infoPage .dynamic-card .card-content {
  padding: 0.78125vw;
  width: 100%;
}

.infoPage .dynamic-card .card-content .name {
  height: 2.65625vw;
  font-weight: 400;
  font-size: 1.0417vw;
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-top: 0.83vw;
}

.infoPage .dynamic-card .card-content .data {
  height: 2.0833vw;
  font-size: 0.78125vw;
  color: #505050;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.infoPage .dynamic-card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5625vw;
}

.infoPage .dynamic-card-bottom .time {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #A1A1A1;
  line-height: 1.25vw;
}

.infoPage .dynamic-card-bottom .look {
  font-weight: 400;
  font-size: 0.8375vw;
  /* 18/1920×100 */
  color: #066FF4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infoPage .dynamic-card-bottom .look img {
  width: 0.9375vw;
  height: 0.73vw;
  margin-left: 0.2vw;
}

.infoPage .dynamic-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.1667vw;
  height: 4.1667vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 1s;
}

.infoPage .dynamic-arrow.left {
  background: url("../img/home/left2.png") no-repeat 0 0/100% 100%;
  left: 0;
}

.infoPage .dynamic-arrow.left:hover {
  background: url("../img/home/left1.png") no-repeat 0 0/100% 100%;
  left: 0;
}

.infoPage .dynamic-arrow.right {
  background: url("../img/home/right2.png") no-repeat 0 0/100% 100%;
  right: 0;
}

.infoPage .dynamic-arrow.right:hover {
  background: url("../img/home/right1.png") no-repeat 0 0/100% 100%;
  right: 0;
}

.infoPage .filter-area {
  height: 2.5vw;
  /* 48/1920×100 */
  margin-top: 1.7188vw;
  /* 33/1920×100 */
  display: flex;
  width: 30.2083vw;
  /* 580/1920×100 */
}

.infoPage .filter-area input {
  height: 2.5vw;
  /* 48/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #999999;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.infoPage .search-input2 {
  flex: 1;
  padding: 0.5208vw 0.78125vw;
  /* 10/1920×100, 15/1920×100 */
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 0.2083vw 0 0 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  outline: none;
  transition: border-color 0.3s;
}

.infoPage .search-input2:focus {
  border-color: #2196f3;
}

.infoPage .search-btn {
  height: 2.5vw;
  /* 48/1920×100 */
  padding: 0.5208vw 0.9375vw;
  /* 10/1920×100, 18/1920×100 */
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 0 0.2083vw 0.2083vw 0;
  /* 4/1920×100 */
  cursor: pointer;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  transition: background-color 0.3s;
}

.infoPage .search-btn:hover {
  background-color: #0d8bf0;
}

.infoPage .pagination {
  height: 1.6667vw;
  /* 32/1920×100 */
  position: absolute;
  bottom: 0vw;
}

.infoPage .dynamic-content .pagination {
  bottom: 0.4vw;
}

.infoPage .list-area {
  min-height: 20vw;
  margin-bottom: 3.3333vw;
  /* 64/1920×100 */
}

.infoPage .list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.8646vw;
  /* 55/1920×100 */
  border-bottom: 1px dashed #DDDDDD;
}

.infoPage .list-item .left {
  flex: 1;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.infoPage .list-item .right {
  width: 4.6875vw;
  /* 90/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.infoPage .search-icon {
  width: 0.78vw;
}

.manpowerPage {
  /* 园区介绍 */
  /* 入驻企业 */
  /* 轮播区域样式 */
  /* 产业园动态 */
  /* 园区服务 */
}

.manpowerPage .manpower-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/manpower/manpowerBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.manpowerPage .manpower-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.manpowerPage .manpower-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.manpowerPage .about-content {
  background-color: #ffffff;
}

.manpowerPage .about-section-body {
  width: 100%;
  padding: 0 2.5vw;
}

.manpowerPage .about-section-body .text {
  font-size: 1.1458vw;
  /* 22/1920×100 */
  color: #595959;
  line-height: 2.2083vw;
  /* 42/1920×100 */
}

.manpowerPage .about-section-body img {
  width: 100%;
  height: 33.3333vw;
  margin-top: 3.5417vw;
  /* 68/1920×100 */
  margin-bottom: 6.7188vw;
  /* 129/1920×100 */
  overflow: hidden;
}

.manpowerPage .about-section-body .about-section-body-img {
  width: 100%;
  height: 33.3333vw;
  /* 640/1920×100 */
  margin-top: 3.5417vw;
  /* 68/1920×100 */
  margin-bottom: 6.7188vw;
  /* 129/1920×100 */
  overflow: hidden;
  border-radius: 0.625vw;
}

.manpowerPage .about-section-body .about-section-body-img:hover .about-section-body-img-conter {
  transform: scale(1.05);
}

.manpowerPage .about-section-body .about-section-body-img .about-section-body-img-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.manpowerPage .partner {
  height: 24.0625vw;
  /* 462/1920×100 */
  background: #f4f9fb;
}

.manpowerPage .partner-carousel {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.0417vw;
  /* 20/1920×100 */
}

.manpowerPage .partner-imglist {
  display: flex;
  transition: transform 0.1s linear;
}

.manpowerPage .partner-imglist-itemBox {
  width: 14.5833vw;
  /* 280/1920×100 */
  flex: 0 0 14.5833vw;
  /* 280/1920×100 */
  padding: 0 0.5208vw;
  /* 10/1920×100 */
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #1A1A1A;
}

.manpowerPage .partner-imglist-item {
  width: 13.5417vw;
  /* 260/1920×100 */
  border-radius: 0.3125vw;
  /* 6/1920×100 */
  text-align: center;
  background-color: #FFF;
}

.manpowerPage .partner-imglist .item {
  width: 13.5417vw;
  /* 260/1920×100 */
  border-radius: 0.3125vw;
  /* 6/1920×100 */
  padding: 0.5208vw;
  /* 10/1920×100 */
}

.manpowerPage .partner-imglist-item-img {
  width: 12.2917vw;
  /* 236/1920×100 */
  height: 3.125vw;
  /* 60/1920×100 */
  overflow: hidden;
}

.manpowerPage .partner-imglist-item-img:hover .partner-imglist-item-img-conter {
  transform: scale(1.05);
}

.manpowerPage .partner-imglist-item-img-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.manpowerPage .partner-imglist .name {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #1D1D1D;
  margin: 0.8333vw 0;
  /* 16/1920×100 */
}

.manpowerPage .dynamic-content {
  position: relative;
  overflow: hidden;
  height: 24.5833vw;
  /* 472/1920×100 */
  width: 100%;
  padding: 0 4.1667vw;
  margin-bottom: 4vw;
  /* 80/1920×100 */
  /* 99/1920×100 */
}

.manpowerPage .dynamic-slider {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  height: 24.5833vw;
  /* 472/1920×100 */
}

.manpowerPage .dynamic-slider::-webkit-scrollbar {
  display: none;
}

.manpowerPage .dynamic-card {
  padding: 0 0.5208vw;
  /* 10/1920×100 */
  width: 33.333%;
  flex: 0 0 33.3333%;
  height: 24.5833vw;
  /* 472/1920×100 */
}

.manpowerPage .dynamic-card-body {
  height: 100%;
  width: 100%;
  background-color: #F9F9F9;
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  overflow: hidden;
  /* 2/1920×100, 10/1920×100 */
  scroll-snap-align: start;
}

.manpowerPage .dynamic-card-body-img {
  width: 100%;
  height: 13.28125vw;
  /* 255/1920×100 */
  border-radius: 0.125vw;
  overflow: hidden;
}

.manpowerPage .dynamic-card-body-img:hover .dynamic-card-body-img-conter {
  transform: scale(1.05);
}

.manpowerPage .dynamic-card-body-img-conter {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.manpowerPage .dynamic-card .card-content {
  padding: 0.78125vw;
  /* 15/1920×100 */
  width: 100%;
}

.manpowerPage .dynamic-card .card-content .name {
  height: 2.65625vw;
  /* 51/1920×100 */
  font-weight: 400;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-top: 0.83vw;
}

.manpowerPage .dynamic-card .card-content .data {
  height: 2.0833vw;
  /* 40/1920×100 */
  font-size: 0.78125vw;
  /* 15/1920×100 */
  color: #505050;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.manpowerPage .dynamic-card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5625vw;
  /* 30/1920×100 */
}

.manpowerPage .dynamic-card-bottom .time {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #A1A1A1;
  line-height: 1.25vw;
  /* 24/1920×100 */
}

.manpowerPage .dynamic-card-bottom .look {
  font-weight: 400;
  font-size: 0.8375vw;
  /* 18/1920×100 */
  color: #066FF4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manpowerPage .dynamic-card-bottom .look img {
  width: 0.9375vw;
  height: 0.73vw;
  margin-left: 0.2vw;
}

.manpowerPage .dynamic-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.1667vw;
  /* 80/1920×100 */
  height: 4.1667vw;
  /* 80/1920×100 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 1s;
}

.manpowerPage .dynamic-arrow.left {
  background: url("../img/home/left2.png") no-repeat 0 0/100% 100%;
  left: 0;
}

.manpowerPage .dynamic-arrow.left:hover {
  background: url("../img/home/left1.png") no-repeat 0 0/100% 100%;
  left: 0;
}

.manpowerPage .dynamic-arrow.right {
  background: url("../img/home/right2.png") no-repeat 0 0/100% 100%;
  right: 0;
}

.manpowerPage .dynamic-arrow.right:hover {
  background: url("../img/home/right1.png") no-repeat 0 0/100% 100%;
  right: 0;
}

.manpowerPage .service {
  background: #F4F9FB;
  padding-bottom: 7.2917vw;
  /* 140/1920×100 */
}

.manpowerPage .service-body {
  width: 20.2083vw;
  /* 388/1920×100 */
  height: 20.2083vw;
  /* 388/1920×100 */
  margin: 1.5104vw auto;
  /* 29/1920×100 */
  background: url("../img/manpower/serviceImg.png") no-repeat 0 0/100% 100%;
  position: relative;
}

.manpowerPage .service-imgIcon-box {
  position: absolute;
}

.manpowerPage .service-imgIcon-box .textBox {
  width: 13.3854vw;
  /* 257/1920×100 */
}

.manpowerPage .service-imgIcon-box {
  display: flex;
  position: absolute;
}

.manpowerPage .service-imgIcon-box .textBox {
  width: 14.375vw;
  /* 276/1920×100 */
}

.manpowerPage .service-imgIcon-box .textBox .text1 {
  font-weight: bold;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
}

.manpowerPage .service-imgIcon-box .textBox .text2 {
  margin-top: 1.1458vw;
  /* 22/1920×100 */
  width: 14.375vw;
  /* 276/1920×100 */
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #505050;
}

.manpowerPage .service-imgIcon-loc1 {
  top: -2.5vw;
  /* 48/1920×100 */
  left: -17.3958vw;
  /* 334/1920×100 */
}

.manpowerPage .service-imgIcon-loc2 {
  top: -2.5vw;
  /* 48/1920×100 */
  right: -17.3958vw;
  /* 334/1920×100 */
}

.manpowerPage .service-imgIcon-loc3 {
  top: 17.4479vw;
  /* 335/1920×100 */
  left: -17.3958vw;
  /* 334/1920×100 */
}

.manpowerPage .service-imgIcon-loc4 {
  top: 17.4479vw;
  /* 335/1920×100 */
  right: -17.3958vw;
  /* 334/1920×100 */
}

.manpowerPage .service-imgIcon {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  margin-left: 0.5208vw;
  /* 10/1920×100 */
}

.manpowerPage .service-imgIcon2 {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  margin-right: 0.5208vw;
  /* 10/1920×100 */
}

.manpowerPage .service-imgIcon3 {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  margin-left: 0.5208vw;
  /* 10/1920×100 */
}

.manpowerPage .service-imgIcon4 {
  height: 5.0vw;
  /* 96/1920×100 */
  width: 5.0vw;
  /* 96/1920×100 */
  margin-right: 0.5208vw;
  /* 10/1920×100 */
}

.policyPage {
  background-color: #F8F9FB;
  /* 介绍 */
  /* 法规政策 */
  /* 输入框样式 */
  /* 搜索按钮样式 */
}

.policyPage .jc {
  justify-content: center;
}

.policyPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/policy/policyBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.policyPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.policyPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.policyPage .about-content {
  background-color: #ffffff;
}

.policyPage .filter-area {
  height: 2.5vw;
  /* 48/1920×100 */
  margin-top: 1.7188vw;
  /* 33/1920×100 */
  display: flex;
  width: 30.2083vw;
  /* 580/1920×100 */
}

.policyPage .filter-area input {
  height: 2.5vw;
  /* 48/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #999999;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.policyPage .search-input2 {
  flex: 1;
  padding: 0.5208vw 0.78125vw;
  /* 10/1920×100, 15/1920×100 */
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 0.2083vw 0 0 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  outline: none;
  transition: border-color 0.3s;
}

.policyPage .search-input2:focus {
  border-color: #2196f3;
}

.policyPage .search-btn {
  height: 2.5vw;
  /* 48/1920×100 */
  padding: 0.5208vw 0.9375vw;
  /* 10/1920×100, 18/1920×100 */
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 0 0.2083vw 0.2083vw 0;
  /* 4/1920×100 */
  cursor: pointer;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  transition: background-color 0.3s;
}

.policyPage .search-btn:hover {
  background-color: #0d8bf0;
}

.policyPage .pagination {
  height: 1.6667vw;
  /* 32/1920×100 */
  position: absolute;
  bottom: 3.125vw;
}

.policyPage .dynamic-content {
  padding-bottom: 3.125vw;
  position: relative;
  background-color: #fff;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
}

.policyPage .list-area {
  margin-bottom: 3.3333vw;
  /* 64/1920×100 */
  min-height: 20vh;
}

.policyPage .list-item {
  width: 100%;
  display: block;
  padding: 0 1.875vw;
  /* 30/1920×100, 36/1920×100 */
}

.policyPage .list-item-conter {
  padding: 1.5625vw 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #DDDDDD;
}

.policyPage .list-item .left {
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
  flex: 1;
  display: flex;
}

.policyPage .list-item .left .img {
  margin-right: 0.8333vw;
  /* 16/1920×100 */
  width: 5.9375vw;
  /* 114/1920×100 */
  height: 4.4792vw;
  /* 86/1920×100 */
}

.policyPage .list-item .right {
  width: 4.6875vw;
  /* 90/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.policyPage .list-area-text .name {
  font-weight: bold;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #323232;
}

.policyPage .list-area-text .title {
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #666666;
}

.policyPage .list-area-text .type {
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #899097;
  display: flex;
  align-items: center;
}

.policyPage .list-area-text .typeImg {
  width: 0.7292vw;
  /* 14/1920×100 */
  height: 0.7292vw;
  /* 14/1920×100 */
  margin-right: 0.5208vw;
  /* 10/1920×100 */
}

.policyPage .dynamic-content-info {
  padding: 0 3.4896vw 3.4896vw 3.4896vw;
  /* 67/1920×100 */
}

.policyPage .dynamic-content .info-head {
  height: 7.3438vw;
  /* 141/1920×100 */
  border-bottom: 2px solid #EFEFEF;
  margin: 0 auto;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.policyPage .dynamic-content .info-head h3 {
  font-weight: bold;
  font-size: 1.3542vw;
  /* 26/1920×100 */
  color: #323232;
}

.policyPage .dynamic-content .info-head .title {
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #888787;
  width: 100%;
  text-align: center;
  margin-top: 1.1979vw;
  /* 23/1920×100 */
}

.policyPage .dynamic-content .info-head .title .time {
  margin-right: 1.0417vw;
  /* 20/1920×100 */
}

.policyPage .dynamic-content .info-footer {
  height: 3.125vw;
  /* 60/1920×100 */
  font-size: 1.0vw;
  /* 19/1920×100≈1.0vw */
  color: #323232;
  line-height: 2.3958vw;
  /* 46/1920×100 */
}

.policyPage .dynamic-content .info-footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.9271vw;
  /* 37/1920×100 */
}

.policyPage .dynamic-content .info-footer-box .left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.policyPage .dynamic-content .info-footer-box .filIcon {
  width: 0.2083vw;
  /* 4/1920×100 */
  height: 0.2083vw;
  /* 4/1920×100 */
  background-color: #808080;
  border-radius: 0.1042vw;
  /* 2/1920×100 */
  margin-right: 0.5729vw;
  /* 11/1920×100 */
}

.policyPage .dynamic-content .info-footer-box .filName {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #066FF4;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.policyPage .dynamic-content .info-footer-box .time {
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.policyPage .dynamic-content .info-body {
  min-height: 20vh;
  padding-top: 4vh;
}

.policyPage .dynamic-content .info-body-conter {
  width: 100%;
}

.enterPage {
  background-color: #F8F9FB;
  /* 介绍 */
  /* 提示组件样式 */
}

.enterPage .jc {
  justify-content: center;
}

.enterPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/enterBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.enterPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.enterPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.enterPage .about-content {
  background-color: #ffffff;
}

.enterPage .about-tab-box {
  height: 3.75vw;
  width: 100%;
  border-bottom: 2px solid #E0E2E5;
}

.enterPage .about-tab-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enterPage .about-tab {
  height: 100%;
  display: flex;
  align-items: center;
}

.enterPage .about-tab-path {
  font-size: 0.8333vw;
  color: #666666;
}

.enterPage .about-tab-item {
  font-weight: 400;
  font-size: 0.9375vw;
  color: #333333;
  height: 3.75vw;
  line-height: 3.75vw;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 1.7708vw;
}

.enterPage .about-tab-item.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.enterPage .form-container {
  width: 100%;
  background-color: #fff;
  padding: 40px;
  margin: 30px 0;
}

.enterPage .form-header {
  padding-bottom: 36px;
  border-bottom: 1px dashed #C2C2C2;
  margin-bottom: 30px;
}

.enterPage .form-title {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  margin-bottom: 20px;
  text-align: center;
}

.enterPage .form-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.enterPage .form-group {
  margin-bottom: 24px;
}

.enterPage .form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

.enterPage .form-label.required::before {
  content: "* ";
  color: #f00;
}

.enterPage .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.enterPage .form-control:focus {
  border-color: #007bff;
  outline: none;
}

.enterPage .radio-group {
  display: flex;
  flex-wrap: wrap;
}

.enterPage .radio-item {
  display: flex;
  align-items: center;
  margin-right: 24px;
  margin-bottom: 8px;
}

.enterPage .radio-item input {
  margin-right: 8px;
}

.enterPage textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.enterPage .agree-group {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.enterPage .agree-group input {
  margin-right: 8px;
}

.enterPage .agree-group a {
  color: #007bff;
  text-decoration: none;
}

.enterPage .submit-btn-box {
  width: 100%;
  text-align: center;
}

.enterPage .submit-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  width: 240px;
  height: 48px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0 auto;
}

.enterPage .submit-btn:hover {
  background-color: #0056b3;
}

.enterPage .alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.enterPage .alert.show {
  opacity: 1;
}

.enterPage .alert.success {
  background-color: #28a745;
}

.enterPage .alert.error {
  background-color: #dc3545;
}

.enterPage .agreement {
  color: #1890FF;
  cursor: pointer;
}

.enterPage .labelType {
  display: inline-block;
  padding: 4px 10px;
  background: #F2F2F2;
  border-radius: 6px;
  margin-left: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #2F312F;
}

.publicInformationPage {
  background-color: #ffffff;
  /* 介绍 */
  /* 输入框样式 */
  /* 搜索按钮样式 */
}

.publicInformationPage .jc {
  justify-content: center;
}

.publicInformationPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.publicInformationPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.publicInformationPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.publicInformationPage .dynamic-content {
  width: 100%;
  margin-top: 26px;
}

.publicInformationPage .workInformation-content {
  width: 100%;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.publicInformationPage .workInformation-content-left {
  width: 51.6667vw;
  /* 992/1920×100 */
  flex: 1;
  padding-right: 5vw;
  position: relative;
}

.publicInformationPage .workInformation-content-right {
  flex: 0 0 13.4375vw;
  width: 13.4375vw;
  /* 258/1920×100 */
}

.publicInformationPage .workInformation-content-list {
  width: 100%;
}

.publicInformationPage .workInformation-content-list .filter-area {
  height: 2.5vw;
  /* 48/1920×100 */
  margin-top: 1.7188vw;
  /* 33/1920×100 */
  display: flex;
  width: 30.2083vw;
  /* 580/1920×100 */
}

.publicInformationPage .workInformation-content-list .filter-area input {
  height: 2.5vw;
  /* 48/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #999999;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.publicInformationPage .workInformation-content-list .search-input2 {
  flex: 1;
  padding: 0.5208vw 0.78125vw;
  /* 10/1920×100, 15/1920×100 */
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 0.2083vw 0 0 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  outline: none;
  transition: border-color 0.3s;
}

.publicInformationPage .workInformation-content-list .search-input2:focus {
  border-color: #2196f3;
}

.publicInformationPage .workInformation-content-list .search-btn {
  height: 2.5vw;
  /* 48/1920×100 */
  padding: 0.5208vw 0.9375vw;
  /* 10/1920×100, 18/1920×100 */
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 0 0.2083vw 0.2083vw 0;
  /* 4/1920×100 */
  cursor: pointer;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  transition: background-color 0.3s;
}

.publicInformationPage .workInformation-content-list .search-btn:hover {
  background-color: #0d8bf0;
}

.publicInformationPage .workInformation-content-list .pagination {
  height: 1.6667vw;
  /* 32/1920×100 */
  position: absolute;
  bottom: 0;
}

.publicInformationPage .workInformation-content-list .list-area {
  margin-bottom: 60px;
  /* 64/1920×100 */
}

.publicInformationPage .workInformation-content-list .list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.8646vw;
  /* 55/1920×100 */
  border-bottom: 1px dashed #DDDDDD;
}

.publicInformationPage .workInformation-content-list .list-item .left {
  flex: 1;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.publicInformationPage .workInformation-content-list .list-item .right {
  width: 4.6875vw;
  /* 90/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.publicInformationPage .workInformation-content-reminder {
  width: 100%;
}

.publicInformationPage .reminder-box {
  width: 100%;
  margin-bottom: 1.25vw;
}

.publicInformationPage .reminder-box-border {
  padding-top: 1.25vw;
  /* 24/1920×100 */
  /* 24/1920×100 */
}

.publicInformationPage .reminder-box-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
}

.publicInformationPage .reminder-box + .reminder-box {
  padding-top: 2vw;
  border-top: 1px solid #E2E4E5;
}

.publicInformationPage .reminder-box-top span {
  font-size: 0.9375vw;
  /* 20/1920×100 */
  color: #1A1A1A;
}

.publicInformationPage .reminder-box-top a {
  font-size: 0.729vw;
  color: #1A1A1A;
}

.publicInformationPage .reminder-box-img {
  width: 100%;
  height: 7.5521vw;
  /* 145/1920×100 */
  margin-top: 1.1458vw;
  /* 22/1920×100 */
}

.publicInformationPage .reminder-box-bottom {
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #1A1A1A;
  line-height: 1.1458vw;
  /* 22/1920×100 */
  height: 2.2917vw;
  /* 44/1920×100 */
  margin-top: 1.0417vw;
  /* 20/1920×100 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.publicInformationPage .search-icon {
  width: 0.78vw;
}

.recruitmentAnnouncementPage {
  /* 介绍 */
  /* 输入框样式 */
  /* 搜索按钮样式 */
}

.recruitmentAnnouncementPage #app {
  background-color: #ffffff;
}

.recruitmentAnnouncementPage .jc {
  justify-content: center;
}

.recruitmentAnnouncementPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.recruitmentAnnouncementPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.recruitmentAnnouncementPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.recruitmentAnnouncementPage .dynamic-content {
  width: 100%;
  margin-top: 26px;
}

.recruitmentAnnouncementPage .workInformation-content {
  width: 100%;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.recruitmentAnnouncementPage .workInformation-content-left {
  width: 51.6667vw;
  /* 992/1920×100 */
  flex: 1;
  padding-right: 5vw;
  position: relative;
}

.recruitmentAnnouncementPage .workInformation-content-right {
  flex: 0 0 13.4375vw;
  width: 13.4375vw;
  /* 258/1920×100 */
}

.recruitmentAnnouncementPage .workInformation-content-list {
  width: 100%;
}

.recruitmentAnnouncementPage .workInformation-content-list .filter-area {
  height: 2.5vw;
  /* 48/1920×100 */
  margin-top: 1.7188vw;
  /* 33/1920×100 */
  display: flex;
  width: 30.2083vw;
  /* 580/1920×100 */
}

.recruitmentAnnouncementPage .workInformation-content-list .filter-area input {
  height: 2.5vw;
  /* 48/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #999999;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.recruitmentAnnouncementPage .workInformation-content-list .search-input2 {
  flex: 1;
  padding: 0.5208vw 0.78125vw;
  /* 10/1920×100, 15/1920×100 */
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 0.2083vw 0 0 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  outline: none;
  transition: border-color 0.3s;
}

.recruitmentAnnouncementPage .workInformation-content-list .search-input2:focus {
  border-color: #2196f3;
}

.recruitmentAnnouncementPage .workInformation-content-list .search-btn {
  height: 2.5vw;
  /* 48/1920×100 */
  padding: 0.5208vw 0.9375vw;
  /* 10/1920×100, 18/1920×100 */
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 0 0.2083vw 0.2083vw 0;
  /* 4/1920×100 */
  cursor: pointer;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  transition: background-color 0.3s;
}

.recruitmentAnnouncementPage .workInformation-content-list .search-btn:hover {
  background-color: #0d8bf0;
}

.recruitmentAnnouncementPage .workInformation-content-list .pagination {
  height: 1.6667vw;
  /* 32/1920×100 */
  position: absolute;
  bottom: 0;
}

.recruitmentAnnouncementPage .workInformation-content-list .list-area {
  margin-bottom: 60px;
  /* 64/1920×100 */
}

.recruitmentAnnouncementPage .workInformation-content-list .list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.8646vw;
  /* 55/1920×100 */
  border-bottom: 1px dashed #DDDDDD;
}

.recruitmentAnnouncementPage .workInformation-content-list .list-item .left {
  flex: 1;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.recruitmentAnnouncementPage .workInformation-content-list .list-item .right {
  width: 4.6875vw;
  /* 90/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.recruitmentAnnouncementPage .workInformation-content-reminder {
  width: 100%;
}

.recruitmentAnnouncementPage .reminder-box {
  width: 100%;
  margin-bottom: 1.25vw;
}

.recruitmentAnnouncementPage .reminder-box-border {
  padding-top: 1.25vw;
  /* 24/1920×100 */
  /* 24/1920×100 */
}

.recruitmentAnnouncementPage .reminder-box + .reminder-box {
  padding-top: 2vw;
  border-top: 1px solid #E2E4E5;
}

.recruitmentAnnouncementPage .reminder-box-top span {
  font-size: 0.9375vw;
  /* 20/1920×100 */
  color: #1A1A1A;
}

.recruitmentAnnouncementPage .reminder-box-top a {
  font-size: 0.729vw;
  color: #1A1A1A;
}

.recruitmentAnnouncementPage .reminder-box-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
}

.recruitmentAnnouncementPage .reminder-box-img {
  width: 100%;
  height: 7.5521vw;
  /* 145/1920×100 */
  margin-top: 1.1458vw;
  /* 22/1920×100 */
}

.recruitmentAnnouncementPage .reminder-box-bottom {
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #1A1A1A;
  line-height: 1.1458vw;
  /* 22/1920×100 */
  height: 2.2917vw;
  /* 44/1920×100 */
  margin-top: 1.0417vw;
  /* 20/1920×100 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.recruitmentAnnouncementPage .search-icon {
  width: 0.78vw;
}

.registerPage {
  background-color: #F8F9FB;
  /* 介绍 */
  /* 提示组件样式 */
}

.registerPage .jc {
  justify-content: center;
}

.registerPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/registerBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.registerPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.registerPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.registerPage .about-content {
  background-color: #ffffff;
}

.registerPage .form-header {
  padding-bottom: 36px;
  border-bottom: 1px dashed #C2C2C2;
  margin-bottom: 30px;
}

.registerPage .form-header h3 {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  margin-bottom: 20px;
}

.registerPage .form-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

.registerPage .form-group {
  margin-bottom: 24px;
}

.registerPage .form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

.registerPage .form-label.required::before {
  content: "* ";
  color: #f00;
}

.registerPage .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.registerPage .form-control:focus {
  border-color: #007bff;
  outline: none;
}

.registerPage .radio-group,
.registerPage .checkbox-group {
  display: flex;
  flex-wrap: wrap;
}

.registerPage .radio-item,
.registerPage .checkbox-item {
  display: flex;
  align-items: center;
  margin-right: 24px;
  margin-bottom: 8px;
}

.registerPage .radio-item input,
.registerPage .checkbox-item input {
  margin-right: 8px;
}

.registerPage textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.registerPage .agree-group {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.registerPage .agree-group input {
  margin-right: 8px;
}

.registerPage .agree-group a {
  color: #007bff;
  text-decoration: none;
}

.registerPage .submit-btn-box {
  width: 100%;
  text-align: center;
}

.registerPage .submit-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  width: 240px;
  height: 48px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0 auto;
}

.registerPage .submit-btn:hover {
  background-color: #0056b3;
}

.registerPage .alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.registerPage .alert.show {
  opacity: 1;
}

.registerPage .alert.success {
  background-color: #28a745;
}

.registerPage .alert.error {
  background-color: #dc3545;
}

.registerPage .agreement {
  color: #1890FF;
  cursor: pointer;
}

.registerPage .labelType {
  display: inline-block;
  padding: 4px 10px;
  background: #F2F2F2;
  border-radius: 6px;
  margin-left: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #2F312F;
}

.servicePage {
  background-color: #F7F8FA;
  /* 介绍 */
  /* 输入框样式 */
  /* 搜索按钮样式 */
}

.servicePage .jc {
  justify-content: center;
}

.servicePage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.servicePage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.servicePage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.servicePage .dynamic-content {
  width: 100%;
  margin-top: 1.3542vw;
  /* 26/1920×100 */
}

.servicePage .workInformation-content {
  width: 100%;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
  display: flex;
  justify-content: space-between;
}

.servicePage .workInformation-content-left {
  flex: 1;
  margin-left: 1vw;
  position: relative;
  background-color: #fff;
  height: 100%;
}

.servicePage .workInformation-content-right {
  flex: 0 0 10.4167vw;
  /* 200/1920×100（原宽度计算：10.416vw对应200px，若实际为其他值需调整） */
  width: 10.4167vw;
  background-color: #fff;
  padding: 0 1.0417vw 1.6667vw 1.0417vw;
  /* 32/1920×100, 20/1920×100 */
}

.servicePage .workInformation-content-list {
  width: 100%;
  padding: 1.1979vw 1.0417vw;
  /* 23/1920×100, 20/1920×100 */
}

.servicePage .workInformation-content-list .filter-area {
  height: 2.5vw;
  /* 48/1920×100 */
  display: flex;
  width: 30.2083vw;
  /* 580/1920×100 */
}

.servicePage .workInformation-content-list .filter-area input {
  height: 2.5vw;
  /* 48/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #999999;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.servicePage .workInformation-content-list .search-input2 {
  flex: 1;
  padding: 0.5208vw 0.78125vw;
  /* 10/1920×100, 15/1920×100 */
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 0.2083vw 0 0 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  outline: none;
  transition: border-color 0.3s;
}

.servicePage .workInformation-content-list .search-input2:focus {
  border-color: #2196f3;
}

.servicePage .workInformation-content-list .search-btn {
  height: 2.5vw;
  /* 48/1920×100 */
  padding: 0.5208vw 0.9375vw;
  /* 10/1920×100, 18/1920×100 */
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 0 0.2083vw 0.2083vw 0;
  /* 4/1920×100 */
  cursor: pointer;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  transition: background-color 0.3s;
}

.servicePage .workInformation-content-list .search-btn:hover {
  background-color: #0d8bf0;
}

.servicePage .workInformation-content-list .pagination {
  height: 1.6667vw;
  /* 32/1920×100 */
  position: absolute;
  bottom: 1.0417vw;
  /* 20/1920×100 */
}

.servicePage .workInformation-content-list .list-area {
  margin-bottom: 3.125vw;
  /* 60/1920×100 */
  min-height: 20.8333vw;
  /* 400/1920×100 */
  /* 600/1920×100 */
  overflow-y: auto;
}

.servicePage .workInformation-content-list .list-item {
  display: block;
  width: 100%;
  padding: 1.00vw;
  /* 19/1920×100≈1.00vw */
  border-bottom: 1px dashed #DDDDDD;
  cursor: pointer;
}

.servicePage .workInformation-content-list .list-item-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.servicePage .workInformation-content-list .list-item .dian {
  width: 4px;
  /* 4/1920×100 */
  height: 4px;
  /* 4/1920×100 */
  background: #808080;
  border-radius: 50%;
  margin-right: 0.52vw;
}

.servicePage .workInformation-content-list .list-item .left {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.servicePage .workInformation-content-list .list-item .right {
  width: 20.8333vw;
  /* 400/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
  text-align: right;
}

.servicePage .workInformation-content-list .list-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.00vw;
  /* 19/1920×100≈1.00vw */
}

.servicePage .list-item-bottom-left {
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #666666;
}

.servicePage .list-item-bottom-right1 {
  background: #E5F1FF;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #C2DFFF;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.servicePage .list-item-bottom-right2 {
  background: #F8F8F8;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #E9E9E9;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.servicePage .workInformation-content-reminder {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.servicePage .workInformation-content-reminder .reminder-item {
  font-size: 0.83vw;
  width: 100%;
  height: 2.0833vw;
  /* 40/1920×100 */
  border-radius: 0.3125vw;
  /* 6/1920×100 */
  color: #2D2D2D;
  margin-top: 1.8229vw;
  /* 35/1920×100 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.servicePage .workInformation-content-reminder .liActive {
  background: rgba(6, 111, 244, 0.14);
  color: #066FF4;
  font-weight: bold;
}

.servicePage .search-icon {
  width: 0.78vw;
}

.serviceInfoPage {
  background-color: #F7F8FA;
}

.serviceInfoPage .jc {
  justify-content: center;
}

.serviceInfoPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.serviceInfoPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.serviceInfoPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.serviceInfoPage .about-content {
  background-color: #ffffff;
}

.serviceInfoPage .about-tab-box {
  height: 3.75vw;
  width: 100%;
  border-bottom: 2px solid #E0E2E5;
}

.serviceInfoPage .about-tab-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serviceInfoPage .about-tab {
  height: 100%;
  display: flex;
  align-items: center;
}

.serviceInfoPage .about-tab-path {
  font-size: 0.8333vw;
  color: #666666;
}

.serviceInfoPage .about-tab-item {
  font-weight: 400;
  font-size: 0.9375vw;
  color: #333333;
  height: 3.75vw;
  line-height: 3.75vw;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 1.7708vw;
}

.serviceInfoPage .about-tab-item.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.serviceInfoPage .dynamic-content {
  width: 100%;
  margin: 1.5625vw 0;
  /* 30/1920×100 */
}

.serviceInfoPage .notice-detail {
  background-color: #fff;
  padding: 1.5625vw;
  /* 30/1920×100 */
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  box-shadow: 0 0.1042vw 0.5208vw rgba(0, 0, 0, 0.05);
  /* 2/1920×100, 10/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #333;
  line-height: 1.8;
}

.serviceInfoPage .notice-title {
  font-weight: bold;
  font-size: 1.3542vw;
  /* 26/1920×100 */
  color: #323232;
  margin-bottom: 1.25vw;
  /* 24/1920×100 */
  text-align: center;
}

.serviceInfoPage .notice-meta {
  display: flex;
  justify-content: center;
  padding-bottom: 1.0417vw;
  /* 20/1920×100 */
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #888787;
  border-bottom: 1px solid #EFEFEF;
}

.serviceInfoPage .notice-meta span {
  margin: 0 0.5208vw;
  /* 10/1920×100 */
}

.serviceInfoPage .notice-content {
  margin-bottom: 1.4583vw;
  /* 28/1920×100 */
  margin-top: 2.1354vw;
  /* 41/1920×100 */
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #2A2A2A;
}

.serviceInfoPage .notice-attachment {
  margin-bottom: 6.4583vw;
  /* 124/1920×100 */
}

.serviceInfoPage .notice-attachment a {
  color: #007bff;
  text-decoration: none;
}

.serviceInfoPage .back-btn {
  width: 6.6667vw;
  /* 128/1920×100 */
  height: 2.0833vw;
  /* 40/1920×100 */
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #FFFFFF;
  line-height: 2.0833vw;
  /* 40/1920×100 */
  text-align: center;
  cursor: pointer;
  display: block;
  margin: 0 auto 1.5625vw;
  /* 30/1920×100 */
}

.serviceInfoPage .related-news {
  padding-top: 2.8646vw;
  /* 55/1920×100 */
}

.serviceInfoPage .related-news .text {
  font-size: 0.9375vw;
  /* 18/1920×100 */
  font-weight: bold;
  margin-bottom: 0.7813vw;
  /* 15/1920×100 */
}

.serviceInfoPage .related-news-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serviceInfoPage .related-news-box .left {
  width: calc(100% - 5.2083vw);
  /* 100/1920×100 */
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
  display: flex;
  align-items: center;
  cursor: pointer;
}

.serviceInfoPage .related-news-box .left .dian {
  width: 0.2083vw;
  /* 4/1920×100 */
  height: 0.2083vw;
  /* 4/1920×100 */
  background: #808080;
  border-radius: 50%;
  display: inline-block;
}

.serviceInfoPage .related-news-box .right {
  flex: 0 0 5.2083vw;
  /* 100/1920×100 */
  text-align: right;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
}

.serviceSocietyInfoPage {
  background-color: #F7F8FA;
}

.serviceSocietyInfoPage .jc {
  justify-content: center;
}

.serviceSocietyInfoPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.serviceSocietyInfoPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.serviceSocietyInfoPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.serviceSocietyInfoPage .about-content {
  background-color: #ffffff;
}

.serviceSocietyInfoPage .about-tab-box {
  height: 3.75vw;
  width: 100%;
  border-bottom: 2px solid #E0E2E5;
}

.serviceSocietyInfoPage .about-tab-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serviceSocietyInfoPage .about-tab {
  height: 100%;
  display: flex;
  align-items: center;
}

.serviceSocietyInfoPage .about-tab-path {
  font-size: 0.8333vw;
  color: #666666;
}

.serviceSocietyInfoPage .about-tab-item {
  font-weight: 400;
  font-size: 0.9375vw;
  color: #333333;
  height: 3.75vw;
  line-height: 3.75vw;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 1.7708vw;
}

.serviceSocietyInfoPage .about-tab-item.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.serviceSocietyInfoPage .dynamic-content {
  width: 100%;
  margin: 1.5625vw 0;
  /* 30/1920×100 */
}

.serviceSocietyInfoPage .notice-detail {
  background-color: #fff;
  padding: 1.5625vw;
  /* 30/1920×100 */
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  box-shadow: 0 0.1042vw 0.5208vw rgba(0, 0, 0, 0.05);
  /* 2/1920×100, 10/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #333;
  line-height: 1.8;
}

.serviceSocietyInfoPage .notice-title {
  font-weight: bold;
  font-size: 1.3542vw;
  /* 26/1920×100 */
  color: #323232;
  margin-bottom: 1.25vw;
  /* 24/1920×100 */
  text-align: center;
}

.serviceSocietyInfoPage .notice-meta {
  display: flex;
  justify-content: center;
  padding-bottom: 1.0417vw;
  /* 20/1920×100 */
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #888787;
  border-bottom: 1px solid #EFEFEF;
}

.serviceSocietyInfoPage .notice-meta span {
  margin: 0 0.5208vw;
  /* 10/1920×100 */
}

.serviceSocietyInfoPage .notice-content {
  margin-bottom: 1.4583vw;
  /* 28/1920×100 */
  margin-top: 2.1354vw;
  /* 41/1920×100 */
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #2A2A2A;
}

.serviceSocietyInfoPage .notice-attachment {
  margin-bottom: 6.4583vw;
  /* 124/1920×100 */
}

.serviceSocietyInfoPage .notice-attachment a {
  color: #007bff;
  text-decoration: none;
}

.serviceSocietyInfoPage .back-btn {
  width: 6.6667vw;
  /* 128/1920×100 */
  height: 2.0833vw;
  /* 40/1920×100 */
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #FFFFFF;
  line-height: 2.0833vw;
  /* 40/1920×100 */
  text-align: center;
  cursor: pointer;
  display: block;
  margin: 0 auto 1.5625vw;
  /* 30/1920×100 */
}

.serviceSocietyInfoPage .related-news {
  padding-top: 2.8646vw;
  /* 55/1920×100 */
}

.serviceSocietyInfoPage .related-news .text {
  font-size: 0.9375vw;
  /* 18/1920×100 */
  font-weight: bold;
  margin-bottom: 0.7813vw;
  /* 15/1920×100 */
}

.serviceSocietyInfoPage .related-news-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serviceSocietyInfoPage .related-news-box .left {
  width: calc(100% - 5.2083vw);
  /* 100/1920×100 */
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
  display: flex;
  align-items: center;
  cursor: pointer;
}

.serviceSocietyInfoPage .related-news-box .left .dian {
  width: 0.2083vw;
  /* 4/1920×100 */
  height: 0.2083vw;
  /* 4/1920×100 */
  background: #808080;
  border-radius: 50%;
  display: inline-block;
}

.serviceSocietyInfoPage .related-news-box .right {
  flex: 0 0 5.2083vw;
  /* 100/1920×100 */
  text-align: right;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
}

.serviceTalentsPage {
  background-color: #F7F8FA;
  /* 介绍 */
}

.serviceTalentsPage .jc {
  justify-content: center;
}

.serviceTalentsPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.serviceTalentsPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.serviceTalentsPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.serviceTalentsPage .dynamic-content {
  width: 100%;
  margin-top: 1.3542vw;
  /* 26/1920×100 */
}

.serviceTalentsPage .workInformation-content {
  width: 100%;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
  display: flex;
  justify-content: space-between;
}

.serviceTalentsPage .workInformation-content-left {
  flex: 1;
  margin-left: 1vw;
  position: relative;
  background-color: #fff;
  height: 100%;
}

.serviceTalentsPage .workInformation-content-right {
  flex: 0 0 10.4167vw;
  /* 200/1920×100 */
  width: 10.4167vw;
  background-color: #fff;
  padding: 0 1.0417vw 1.6667vw;
  /* 32/1920×100, 20/1920×100 */
}

.serviceTalentsPage .workInformation-content-list {
  width: 100%;
  padding: 1.1979vw 1.0417vw;
  /* 23/1920×100, 20/1920×100 */
}

.serviceTalentsPage .workInformation-content-list .list-area {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.125vw;
  /* 60/1920×100 */
  min-height: 20.8333vw;
  /* 400/1920×100 */
  /* 600/1920×100 */
  overflow-y: auto;
  /* 子元素之间的间隔 */
}

.serviceTalentsPage .news-item:not(:first-child) {
  margin-left: 10px;
}

.serviceTalentsPage .news-item {
  cursor: pointer;
  width: calc((100% - 22px) / 3);
  background-color: #fff;
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  overflow: hidden;
  box-shadow: 0 0.1042vw 0.5208vw rgba(0, 0, 0, 0.05);
  /* 2/1920×100, 10/1920×100 */
  margin-bottom: 1.5625vw;
  /* 30/1920×100 */
  transition: transform 0.3s, box-shadow 0.3s;
}

.serviceTalentsPage .news-item:hover {
  /* 5/1920×100 */
  box-shadow: 0 0.2604vw 0.7813vw rgba(0, 0, 0, 0.1);
  /* 5/1920×100, 15/1920×100 */
}

.serviceTalentsPage .news-img {
  width: 100%;
  height: 13.28125vw;
  /* 255/1920×100 */
  object-fit: cover;
}

.serviceTalentsPage .news-content {
  padding: 1.1458vw;
  /* 22/1920×100 */
}

.serviceTalentsPage .news-title {
  font-weight: 400;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
  line-height: 1.6146vw;
  /* 31/1920×100 */
  height: 3.2292vw;
  /* 62/1920×100 */
  margin-bottom: 0.8333vw;
  /* 16/1920×100 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.serviceTalentsPage .news-desc {
  font-weight: 400;
  font-size: 0.7813vw;
  /* 15/1920×100 */
  color: #969696;
  line-height: 1.25vw;
  /* 24/1920×100 */
  height: 2.5vw;
  /* 48/1920×100 */
  margin-bottom: 1.6146vw;
  /* 31/1920×100 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.serviceTalentsPage .news-date {
  font-size: 0.6771vw;
  /* 13/1920×100 */
  color: #999;
}

.serviceTalentsPage .list-item-bottom-left {
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #666666;
}

.serviceTalentsPage .list-item-bottom-right1 {
  background: #E5F1FF;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #C2DFFF;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.serviceTalentsPage .list-item-bottom-right2 {
  background: #F8F8F8;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #E9E9E9;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.serviceTalentsPage .workInformation-content-reminder {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.serviceTalentsPage .workInformation-content-reminder .reminder-item {
  font-size: 0.83vw;
  width: 100%;
  height: 2.0833vw;
  /* 40/1920×100 */
  border-radius: 0.3125vw;
  /* 6/1920×100 */
  color: #2D2D2D;
  margin-top: 1.8229vw;
  /* 35/1920×100 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.serviceTalentsPage .workInformation-content-reminder .liActive {
  background: rgba(6, 111, 244, 0.14);
  color: #066FF4;
  font-weight: bold;
}

.serviceTalentsPage .search-icon {
  width: 0.78vw;
}

.serviceTalentsInfoPage {
  background-color: #F7F8FA;
}

.serviceTalentsInfoPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.serviceTalentsInfoPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.serviceTalentsInfoPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.serviceTalentsInfoPage .about-content {
  background-color: #ffffff;
}

.serviceTalentsInfoPage .about-tab-box {
  height: 3.75vw;
  width: 100%;
  border-bottom: 2px solid #E0E2E5;
}

.serviceTalentsInfoPage .about-tab-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serviceTalentsInfoPage .about-tab {
  height: 100%;
  display: flex;
  align-items: center;
}

.serviceTalentsInfoPage .about-tab-path {
  font-size: 0.8333vw;
  color: #666666;
}

.serviceTalentsInfoPage .about-tab-item {
  font-weight: 400;
  font-size: 0.9375vw;
  color: #333333;
  height: 3.75vw;
  line-height: 3.75vw;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 1.7708vw;
}

.serviceTalentsInfoPage .about-tab-item.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.serviceTalentsInfoPage .dynamic-content {
  width: 100%;
  margin: 1.5625vw 0;
  padding: 1.5625vw 0;
  background-color: #FFF;
  /* 30/1920×100 */
}

.serviceTalentsInfoPage .event-detail {
  background-color: #fff;
  padding: 1.5625vw;
  /* 30/1920×100 */
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  box-shadow: 0 0.1042vw 0.5208vw rgba(0, 0, 0, 0.05);
  /* 2/1920×100, 10/1920×100 */
}

.serviceTalentsInfoPage .event-header {
  display: flex;
  padding-bottom: 1.5625vw;
  /* 30/1920×100 */
  border-bottom: 1px solid #EEEEEE;
}

.serviceTalentsInfoPage .event-img {
  flex: 0 0 21.875vw;
  /* 420/1920×100 */
  width: 21.875vw;
  height: 11.1979vw;
  /* 215/1920×100 */
  background: #ECECEC;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
}

.serviceTalentsInfoPage .event-info {
  width: calc(100% - 21.875vw);
  padding-left: 1.0417vw;
  /* 20/1920×100 */
}

.serviceTalentsInfoPage .event-title {
  font-weight: 400;
  font-size: 1.1458vw;
  /* 22/1920×100 */
  color: #1A1A1A;
}

.serviceTalentsInfoPage .event-status2 {
  margin-top: 0.625vw;
  /* 12/1920×100 */
  display: inline-block;
  background: #EDEDED;
  padding: 0 0.7813vw;
  /* 15/1920×100 */
  height: 1.4583vw;
  /* 28/1920×100 */
  line-height: 1.4583vw;
  border-radius: 0.7292vw;
  /* 14/1920×100 */
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #3E3E3E;
  margin-bottom: 0.8854vw;
  /* 17/1920×100 */
}

.serviceTalentsInfoPage .event-status1 {
  margin-top: 0.625vw;
  /* 12/1920×100 */
  display: inline-block;
  background: #007bff;
  padding: 0 0.7813vw;
  /* 15/1920×100 */
  height: 1.4583vw;
  /* 28/1920×100 */
  line-height: 1.4583vw;
  border-radius: 0.7292vw;
  /* 14/1920×100 */
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #ffffff;
  margin-bottom: 0.8854vw;
  /* 17/1920×100 */
}

.serviceTalentsInfoPage .event-meta {
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #999999;
}

.serviceTalentsInfoPage .event-meta .name {
  color: #3E3E3E;
}

.serviceTalentsInfoPage .event-meta p {
  margin-bottom: 0.2604vw;
  /* 5/1920×100 */
}

.serviceTalentsInfoPage .event-stats {
  display: flex;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
}

.serviceTalentsInfoPage .stat-item {
  width: 7.1875vw;
  /* 138/1920×100 */
  height: 3.3854vw;
  /* 65/1920×100 */
  background: #F8F9FC;
  border-radius: 0.1042vw;
  /* 2/1920×100 */
  text-align: center;
}

.serviceTalentsInfoPage .stat-item + .stat-item {
  margin-left: 0.3125vw;
  /* 6/1920×100 */
}

.serviceTalentsInfoPage .stat-item-value {
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #066FF4;
  margin-top: 0.5208vw;
  /* 10/1920×100 */
  margin-bottom: 0.1042vw;
  /* 2/1920×100 */
}

.serviceTalentsInfoPage .stat-item-name {
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #3E3E3E;
}

.serviceTalentsInfoPage .event-content {
  padding: 1.5625vw 0;
  /* 30/1920×100 */
}

.serviceTalentsInfoPage .event-content .h4 {
  font-size: 0.9375vw;
  /* 18/1920×100 */
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 1.3021vw;
  /* 25/1920×100 */
}

.serviceTalentsInfoPage .event-content .icon {
  width: 0.1563vw;
  /* 3/1920×100 */
  height: 1.0417vw;
  /* 20/1920×100 */
  background: #999999;
  border-radius: 0.0521vw;
  /* 1/1920×100 */
  margin-right: 0.4167vw;
  /* 8/1920×100 */
}

.serviceSocietyPage {
  background-color: #F7F8FA;
  /* 介绍 */
  /* 输入框样式 */
  /* 搜索按钮样式 */
}

.serviceSocietyPage .jc {
  justify-content: center;
}

.serviceSocietyPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.serviceSocietyPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.serviceSocietyPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.serviceSocietyPage .dynamic-content {
  width: 100%;
  margin-top: 1.3542vw;
  /* 26/1920×100 */
}

.serviceSocietyPage .workInformation-content {
  width: 100%;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
  display: flex;
  justify-content: space-between;
}

.serviceSocietyPage .workInformation-content-left {
  flex: 1;
  margin-left: 2vw;
  position: relative;
  background-color: #fff;
  height: 100%;
}

.serviceSocietyPage .workInformation-content-right {
  flex: 0 0 10.4167vw;
  /* 200/1920×100（原宽度计算：10.416vw对应200px，若实际为其他值需调整） */
  width: 10.4167vw;
  background-color: #fff;
  padding: 1.6667vw 1.0417vw;
  /* 32/1920×100, 20/1920×100 */
}

.serviceSocietyPage .workInformation-content-list {
  width: 100%;
  padding: 1.1979vw 1.0417vw;
  /* 23/1920×100, 20/1920×100 */
}

.serviceSocietyPage .workInformation-content-list .filter-area {
  height: 2.5vw;
  /* 48/1920×100 */
  display: flex;
  width: 30.2083vw;
  /* 580/1920×100 */
}

.serviceSocietyPage .workInformation-content-list .filter-area input {
  height: 2.5vw;
  /* 48/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #999999;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.serviceSocietyPage .workInformation-content-list .search-input2 {
  flex: 1;
  padding: 0.5208vw 0.78125vw;
  /* 10/1920×100, 15/1920×100 */
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 0.2083vw 0 0 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  outline: none;
  transition: border-color 0.3s;
}

.serviceSocietyPage .workInformation-content-list .search-input2:focus {
  border-color: #2196f3;
}

.serviceSocietyPage .workInformation-content-list .search-btn {
  height: 2.5vw;
  /* 48/1920×100 */
  padding: 0.5208vw 0.9375vw;
  /* 10/1920×100, 18/1920×100 */
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 0 0.2083vw 0.2083vw 0;
  /* 4/1920×100 */
  cursor: pointer;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  transition: background-color 0.3s;
}

.serviceSocietyPage .workInformation-content-list .search-btn:hover {
  background-color: #0d8bf0;
}

.serviceSocietyPage .workInformation-content-list .pagination {
  height: 1.6667vw;
  /* 32/1920×100 */
  position: absolute;
  bottom: 1.0417vw;
  /* 20/1920×100 */
}

.serviceSocietyPage .workInformation-content-list .list-area {
  margin-bottom: 3.125vw;
  /* 60/1920×100 */
  min-height: 20.8333vw;
  /* 400/1920×100 */
  /* 600/1920×100 */
  overflow-y: auto;
}

.serviceSocietyPage .workInformation-content-list .list-item {
  width: 100%;
  padding: 1.00vw;
  /* 19/1920×100≈1.00vw */
  border-bottom: 1px dashed #DDDDDD;
  cursor: pointer;
}

.serviceSocietyPage .workInformation-content-list .list-item-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serviceSocietyPage .workInformation-content-list .list-item .dian {
  width: 0.2083vw;
  /* 4/1920×100 */
  height: 0.2083vw;
  /* 4/1920×100 */
  background: #808080;
  border-radius: 50%;
}

.serviceSocietyPage .workInformation-content-list .list-item .left {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.serviceSocietyPage .workInformation-content-list .list-item .right {
  width: 20.8333vw;
  /* 400/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
  text-align: right;
}

.serviceSocietyPage .workInformation-content-list .list-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.00vw;
  /* 19/1920×100≈1.00vw */
}

.serviceSocietyPage .list-item-bottom-left {
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #666666;
}

.serviceSocietyPage .list-item-bottom-right1 {
  background: #E5F1FF;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #C2DFFF;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.serviceSocietyPage .list-item-bottom-right2 {
  background: #F8F8F8;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #E9E9E9;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.serviceSocietyPage .workInformation-content-reminder {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.serviceSocietyPage .workInformation-content-reminder .reminder-item {
  font-size: 0.83vw;
  width: 100%;
  height: 2.0833vw;
  /* 40/1920×100 */
  border-radius: 0.3125vw;
  /* 6/1920×100 */
  color: #2D2D2D;
  margin-top: 1.8229vw;
  /* 35/1920×100 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.serviceSocietyPage .workInformation-content-reminder .liActive {
  background: rgba(6, 111, 244, 0.14);
  color: #066FF4;
  font-weight: bold;
}

.serviceSocietyPage .search-icon {
  width: 0.78vw;
}

.workInformationPage {
  background-color: #ffffff;
  /* 介绍 */
}

.workInformationPage .jc {
  justify-content: center;
}

.workInformationPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.workInformationPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.workInformationPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.workInformationPage .about-content {
  background-color: #ffffff;
}

.workInformationPage .workInformation-content {
  width: 100%;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.workInformationPage .workInformation-content-left {
  width: 51.6667vw;
  /* 992/1920×100 */
  flex: 1;
  padding-right: 5vw;
}

.workInformationPage .workInformation-content-right {
  flex: 0 0 13.4375vw;
  width: 13.4375vw;
  /* 258/1920×100 */
}

.workInformationPage .workInformation-content-info {
  width: 100%;
}

.workInformationPage .workInformation-content-info .info-head {
  padding-bottom: 1.0417vw;
  /* 20/1920×100 */
  padding-top: 3.125vw;
  /* 60/1920×100 */
  margin-bottom: 1.8229vw;
  /* 35/1920×100 */
  border-bottom: 2px solid #EFEFEF;
}

.workInformationPage .workInformation-content-left .info-head h3 {
  font-weight: bold;
  font-size: 1.3542vw;
  /* 26/1920×100 */
  color: #323232;
  text-align: left;
}

.workInformationPage .workInformation-content-left .info-head .title {
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #888787;
  width: 100%;
  text-align: left;
  margin-top: 1.1979vw;
  /* 23/1920×100 */
}

.workInformationPage .workInformation-content-left .info-head .title .time {
  margin-right: 1.0417vw;
  /* 20/1920×100 */
}

.workInformationPage .workInformation-content-left .info-body {
  min-height: 30vh;
  padding-top: 4vh;
}

.workInformationPage .workInformation-content-left .info-body-conter {
  width: 100%;
}

.workInformationPage .workInformation-content-reminder {
  width: 100%;
}

.workInformationPage .reminder-box {
  width: 100%;
  margin-bottom: 1.25vw;
}

.workInformationPage .reminder-box-border {
  padding-top: 1.25vw;
}

.workInformationPage .reminder-box-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
}

.workInformationPage .reminder-box + .reminder-box {
  padding-top: 2vw;
  border-top: 1px solid #E2E4E5;
}

.workInformationPage .reminder-box-top span {
  font-size: 0.9375vw;
  /* 20/1920×100 */
  color: #1A1A1A;
}

.workInformationPage .reminder-box-top a {
  font-size: 0.729vw;
  color: #1A1A1A;
}

.workInformationPage .reminder-box-img {
  width: 100%;
  height: 7.5521vw;
  /* 145/1920×100 */
  margin-top: 1.1458vw;
  /* 22/1920×100 */
}

.workInformationPage .reminder-box-bottom {
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #1A1A1A;
  line-height: 1.1458vw;
  /* 22/1920×100 */
  height: 2.2917vw;
  /* 44/1920×100 */
  margin-top: 1.0417vw;
  /* 20/1920×100 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.workInformationListPage {
  background-color: #F8F9FB;
}

.workInformationListPage .jc {
  justify-content: center;
}

.workInformationListPage .info-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/home/workInformationBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
}

.workInformationListPage .info-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
}

.workInformationListPage .info-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
  max-width: 20vw;
  /* 384/1920×100 */
  margin-top: 0.9345vw;
}

.workInformationListPage .about-content {
  background-color: #ffffff;
}

.workInformationListPage .about-tab-box {
  height: 3.75vw;
  /* 72/1920×100 */
  width: 100%;
  border-bottom: 2px solid #E0E2E5;
}

.workInformationListPage .about-tab-body {
  display: flex;
  justify-content: start;
  align-items: center;
}

.workInformationListPage .about-tab {
  height: 100%;
  display: flex;
  align-items: center;
}

.workInformationListPage .about-tab-path {
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #666666;
  margin-left: auto;
}

.workInformationListPage .about-tab-item {
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #333333;
  height: 3.75vw;
  /* 72/1920×100 */
  line-height: 3.75vw;
  /* 72/1920×100 */
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 1.7708vw;
}

.workInformationListPage .about-tab-item.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.workInformationListPage .news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1.5625vw 0;
  /* 30/1920×100 */
}

.workInformationListPage .news-item {
  cursor: pointer;
  width: 23.3333vw;
  /* 448/1920×100 */
  background-color: #fff;
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  overflow: hidden;
  box-shadow: 0 0.1042vw 0.5208vw rgba(0, 0, 0, 0.05);
  /* 2/1920×100, 10/1920×100 */
  margin-bottom: 1.5625vw;
  /* 30/1920×100 */
  transition: transform 0.3s, box-shadow 0.3s;
}

.workInformationListPage .news-item:hover {
  transform: translateY(-0.2604vw);
  /* 5/1920×100 */
  box-shadow: 0 0.2604vw 0.7813vw rgba(0, 0, 0, 0.1);
  /* 5/1920×100, 15/1920×100 */
}

.workInformationListPage .news-img {
  width: 100%;
  height: 13.28125vw;
  /* 255/1920×100 */
  object-fit: cover;
}

.workInformationListPage .news-content {
  padding: 1.1458vw;
  /* 22/1920×100 */
}

.workInformationListPage .news-title {
  font-weight: 400;
  font-size: 1.0417vw;
  /* 20/1920×100 */
  color: #1A1A1A;
  line-height: 1.6146vw;
  /* 31/1920×100 */
  height: 3.2292vw;
  /* 62/1920×100 */
  margin-bottom: 0.8333vw;
  /* 16/1920×100 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.workInformationListPage .news-desc {
  font-weight: 400;
  font-size: 0.7813vw;
  /* 15/1920×100 */
  color: #969696;
  line-height: 1.25vw;
  /* 24/1920×100 */
  height: 2.5vw;
  /* 48/1920×100 */
  margin-bottom: 1.6146vw;
  /* 31/1920×100 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.workInformationListPage .news-date {
  font-size: 0.6771vw;
  /* 13/1920×100 */
  color: #999;
}

.donghua {
  /* 图片数>3时的轮播容器：隐藏溢出 */
  /* 轮播列表：flex 布局 + 两倍宽度（容纳两份图片） */
  /* 单张图片容器：固定宽度，确保一行排列 */
  /* 图片自适应：避免变形 */
  /* 鼠标悬停暂停动画（提升交互体验） */
  /* 定义滚动动画：从左到右平移 50%（刚好滚动完第一份图片） */
}

.donghua .css-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.donghua .css-carousel .service-imgList {
  display: flex;
  width: 200%;
  /* 两份图片，总宽度翻倍 */
  animation: serviceScroll 25s linear infinite;
  /* 25s 一轮，匀速循环 */
}

.donghua .css-carousel .service-imglist-itemBox {
  flex: 0 0 auto;
  padding: 0 8px;
  /* 图片间距，按需调整 */
}

.donghua .css-carousel:hover .service-imgList {
  animation-play-state: paused;
}

@keyframes serviceScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.donghua2 {
  /* 合作伙伴轮播动画（ */
}

.donghua2 .css-carousel-honor {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.donghua2 .css-carousel-honor .honor-imglist {
  display: flex;
  width: 200%;
  animation: honorScroll 35s linear infinite;
}

.donghua2 .css-carousel-honor .honor-imglist-itemBox {
  flex: 0 0 auto;
}

.donghua2 .css-carousel-honor:hover .honor-imglist {
  animation-play-state: paused;
}

@keyframes honorScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.donghua2 .css-carousel-partner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.donghua2 .css-carousel-partner .partner-imglist {
  display: flex;
  width: 200%;
  animation: partnerScroll 30s linear infinite;
}

.donghua2 .css-carousel-partner:hover .partner-imglist {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.donghua3 {
  /* 入驻企业轮播动画（count>5 时生效） */
  /* 鼠标悬停暂停动画 */
  /* 滚动动画关键帧 */
}

.donghua3 .css-carousel-settled {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.donghua3 .css-carousel-settled .partner-imglist {
  display: flex;
  width: 200%;
  /* 两份数据，总宽度翻倍 */
  animation: settledScroll 30s linear infinite;
  /* 30s 一轮，匀速循环 */
}

.donghua3 .css-carousel-settled:hover .partner-imglist {
  animation-play-state: paused;
}

@keyframes settledScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.goHomeBox {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.83333vw;
  color: #666666;
}

.goHomeBox .goHomeBox-go {
  display: flex;
  align-items: center;
  margin-right: 3px;
  cursor: pointer;
}

.goHomeBox .goHomeBox-go .goHomeBox-go-icon {
  cursor: pointer;
  width: 0.625vw;
  height: 0.625vw;
  margin-right: 3px;
  background: url("../img/icon/goHomeIcon.png") no-repeat 0 0/100%;
}

.service-bodyhr {
  background: url("../img/home/serviceBodyBg.png") no-repeat 0 0/100% 100%;
}

.service-bodypark {
  background: url("../img/home/serviceBodyBg2.png") no-repeat 0 0/100% 100%;
}

.service-bodytalent {
  background: url("../img/home/serviceBodyBg3.png") no-repeat 0 0/100% 100%;
}

.searchPage {
  background-color: #ffffff;
  /* 搜索内容区域 */
  /* 搜索框区域 */
  /* 输入框样式 */
  /* 搜索按钮样式 */
  /* 列表区域样式 */
  /* 空状态 */
  /* workInformation-content-list 样式 */
}

.searchPage .jc {
  justify-content: center;
}

.searchPage .search-banner {
  margin-top: 3.3854vw;
  /* 65/1920×100 */
  height: 21.875vw;
  /* 420/1920×100 */
  background: url("../img/contact/contactBanner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
  position: relative;
}

.searchPage .search-banner-text {
  position: relative;
  z-index: 2;
}

.searchPage .search-banner-text .text1 {
  font-weight: bold;
  font-size: 2.5vw;
  /* 48/1920×100 */
  color: #FFFFFF;
  margin-bottom: 0.5208vw;
  /* 10/1920×100 */
}

.searchPage .search-banner-text .text2 {
  font-weight: 400;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #FFFFFF;
  line-height: 1.25vw;
  /* 24/1920×100 */
}

.searchPage .search-content {
  width: 100%;
  margin-top: 1.3021vw;
  /* 25/1920×100 */
  background-color: #fff;
  padding: 1.5625vw;
  /* 30/1920×100 */
  border-radius: 0.4167vw;
  /* 8/1920×100 */
  box-shadow: 0 0.1042vw 0.5208vw rgba(0, 0, 0, 0.05);
  /* 2/1920×100, 10/1920×100 */
}

.searchPage .filter-area {
  height: 2.5vw;
  /* 48/1920×100 */
  margin-top: 1.7188vw;
  /* 33/1920×100 */
  display: flex;
  width: 30.2083vw;
  /* 580/1920×100 */
}

.searchPage .filter-area input {
  height: 2.5vw;
  /* 48/1920×100 */
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #999999;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.searchPage .search-input2 {
  flex: 1;
  padding: 0.5208vw 0.78125vw;
  /* 10/1920×100, 15/1920×100 */
  border: 1px solid #dcdcdc;
  border-right: none;
  border-radius: 0.2083vw 0 0 0.2083vw;
  /* 4/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  outline: none;
  transition: border-color 0.3s;
}

.searchPage .search-input2:focus {
  border-color: #2196f3;
}

.searchPage .search-btn {
  height: 2.5vw;
  /* 48/1920×100 */
  padding: 0.5208vw 0.9375vw;
  /* 10/1920×100, 18/1920×100 */
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 0 0.2083vw 0.2083vw 0;
  /* 4/1920×100 */
  cursor: pointer;
  font-size: 0.8333vw;
  /* 16/1920×100 */
  transition: background-color 0.3s;
}

.searchPage .search-btn:hover {
  background-color: #0d8bf0;
}

.searchPage .search-icon {
  width: 0.78vw;
  height: 0.78vw;
}

.searchPage .list-area {
  margin-bottom: 3.125vw;
  /* 60/1920×100 */
  min-height: 20.8333vw;
  /* 400/1920×100 */
  overflow-y: auto;
}

.searchPage .list-item {
  width: 100%;
  padding: 1.00vw;
  /* 19/1920×100≈1.00vw */
  border-bottom: 1px dashed #DDDDDD;
}

.searchPage .list-item-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.searchPage .list-item .dian {
  width: 0.2083vw;
  /* 4/1920×100 */
  height: 0.2083vw;
  /* 4/1920×100 */
  background: #808080;
  border-radius: 50%;
  margin-right: 0.52vw;
}

.searchPage .list-item .left {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.searchPage .list-item .right {
  width: 20.8333vw;
  /* 400/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
  text-align: right;
}

.searchPage .list-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.00vw;
  /* 19/1920×100≈1.00vw */
}

.searchPage .list-item-bottom-left {
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #666666;
}

.searchPage .list-item-bottom-type {
  background: #dcebfd;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #dcebfd;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #066ff4;
  padding: 0.3vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.searchPage .list-item-bottom-right1 {
  background: #E5F1FF;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #C2DFFF;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.searchPage .list-item-bottom-right2 {
  background: #F8F8F8;
  border-radius: 0.2083vw;
  /* 4/1920×100 */
  border: 1px solid #E9E9E9;
  font-weight: 400;
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #787878;
  padding: 0.4167vw 0.5208vw;
  /* 8/1920×100, 10/1920×100 */
}

.searchPage .list-area-text {
  font-size: 0.8333vw;
  /* 16/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.searchPage .pagination {
  height: 1.6667vw;
  /* 32/1920×100 */
  /* 20/1920×100 */
}

.searchPage .search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.2083vw 0;
  /* 100/1920×100 */
  min-height: 20.8333vw;
  /* 400/1920×100 */
}

.searchPage .search-empty-icon {
  width: 4.8vw;
  /* 160/1920×100 */
  height: 4.8vw;
  /* 160/1920×100 */
  margin-bottom: 0.98vw;
  /* 23/1920×100，根据设计图调整 */
  background: url("../img/empty-search.png") no-repeat center center/100% 100%;
}

.searchPage .search-empty-text {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #333333;
}

.searchPage .workInformation-content-list {
  width: 100%;
  padding: 1.1979vw 1.0417vw;
  /* 23/1920×100, 20/1920×100 */
}

.searchPage .workInformation-content-list .list-area {
  margin-bottom: 3.125vw;
  /* 60/1920×100 */
  min-height: 20.8333vw;
  /* 400/1920×100 */
  overflow-y: auto;
}

.searchPage .workInformation-content-list .list-item {
  width: 100%;
  padding: 1.00vw;
  /* 19/1920×100≈1.00vw */
  border-bottom: 1px dashed #DDDDDD;
  display: inline-block;
  cursor: default;
}

.searchPage .workInformation-content-list .list-item-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.searchPage .workInformation-content-list .list-item .dian {
  width: 0.2083vw;
  /* 4/1920×100 */
  height: 0.2083vw;
  /* 4/1920×100 */
  background: #808080;
  border-radius: 50%;
  margin-right: 0.52vw;
}

.searchPage .workInformation-content-list .list-item .left {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.9375vw;
  /* 18/1920×100 */
  color: #2D2D2D;
  line-height: 1.4583vw;
  /* 28/1920×100 */
}

.searchPage .workInformation-content-list .list-item .right {
  width: 20.8333vw;
  /* 400/1920×100 */
  font-size: 0.7292vw;
  /* 14/1920×100 */
  color: #8B8B8B;
  line-height: 1.4583vw;
  /* 28/1920×100 */
  text-align: right;
}

.searchPage .workInformation-content-list .list-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.00vw;
  /* 19/1920×100≈1.00vw */
}
