#home-view.home-page .home-banner {
  position: relative;
  margin-top: 120px;
}
#home-view.home-page .home-banner .swiper-container {
  height: 480px;
}
@media (max-width: 1460px) {
  #home-view.home-page .home-banner .swiper-container {
    height: 365px;
  }
}
@media (mimaxn-width: 1430px) {
  #home-view.home-page .home-banner .swiper-container {
    height: 358px;
  }
}
@media (max-width: 1200px) {
  #home-view.home-page .home-banner .swiper-container {
    height: 300px;
  }
}
@media (max-width: 992px) {
  #home-view.home-page .home-banner .swiper-container {
    height: 200px;
  }
}
@media (max-width: 768px) {
  #home-view.home-page .home-banner .swiper-container {
    height: 160px;
  }
}
#home-view.home-page .home-banner .swiper-container:hover .swiper-wrapper .swiper-slide .slide-box img {
  transform: scale(1.05);
}
#home-view.home-page .home-banner .swiper-container .swiper-wrapper .swiper-slide .slide-box {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  justify-content: center;
}
#home-view.home-page .home-banner .swiper-container .swiper-wrapper .swiper-slide .slide-box img {
  height: 100%;
  transition: transform 0.5s;
}
#home-view.home-page .home-banner .swiper-container .swiper-pagination {
  bottom: 16px;
}
#home-view.home-page .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.06);
  opacity: 1;
  position: relative;
  overflow: hidden;
}
#home-view.home-page .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #16469e;
}
#home-view.home-page .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 100%;
  animation: changeWidth 10s linear;
}
@media (max-width: 1780px) {
  #home-view.home-page .home-banner {
    margin-top: 100px;
  }
  #home-view.home-page .home-banner .swiper-container .swiper-pagination {
    bottom: 14px;
  }
  #home-view.home-page .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 44px;
  }
}
@media (max-width: 1680px) {
  #home-view.home-page .home-banner {
    margin-top: 90px;
  }
  #home-view.home-page .home-banner .swiper-container .swiper-pagination {
    bottom: 12px;
  }
}
@media (max-width: 1440px) {
  #home-view.home-page .home-banner {
    margin-top: 80px;
  }
  #home-view.home-page .home-banner .swiper-container .swiper-pagination {
    bottom: 10px;
  }
  #home-view.home-page .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
  }
}
@media (max-width: 1200px) {
  #home-view.home-page .home-banner {
    margin-top: 60px;
  }
  #home-view.home-page .home-banner .swiper-container .swiper-pagination {
    bottom: 8px;
  }
  #home-view.home-page .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 26px;
  }
}
/* 精品工程模块 */
#home-view.home-page .main-project {
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

@media (max-width: 992px) {
  #home-view.home-page .main-project {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  #home-view.home-page .main-project {
    margin-top: 20px;
  }
}

/* 标题 */
#home-view.home-page .main-project .project-title {
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  #home-view.home-page .main-project .project-title {
    height: 34px;
    font-size: 20px;
    margin-bottom: 10px;
  }
}
#home-view.home-page .main-project .project-title::before {
  content: "";
  background-color: #0275c2;
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 14px;
  vertical-align: middle;
}

/* 内容区域 */
#home-view.home-page .main-project .project-content {
  width: 100%;
  overflow: hidden;
  height: auto; /* ✅ 移除固定高度 */
}

/* Swiper 容器 */
#home-view.home-page .main-project .project-content .project-box {
  width: 100%;
  position: relative;
}

/* 滚动容器 */
#home-view.home-page .main-project .project-content .project-box .box-img {
  width: 100%;
  display: flex;
  align-items: stretch;
}

/* 每个 slide */
#home-view.home-page .main-project .project-content .project-box .box-img .box-img-box {
  position: relative;
  flex-shrink: 0;
  width: 216px; /* 默认宽度，可根据断点调整 */
  aspect-ratio: 3 / 2; /* ✅ 保持宽高比（可改为 16/9 或其他比例） */
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
}

/* 响应式宽度控制 */
@media (max-width: 1400px) {
  #home-view.home-page .main-project .project-content .project-box .box-img .box-img-box {
    width: 200px;
  }
}
@media (max-width: 992px) {
  #home-view.home-page .main-project .project-content .project-box .box-img .box-img-box {
    width: 180px;
  }
}
@media (max-width: 767px) {
  #home-view.home-page .main-project .project-content .project-box .box-img .box-img-box {
    width: 160px;
  }
}
@media (max-width: 576px) {
  #home-view.home-page .main-project .project-content .project-box .box-img .box-img-box {
    width: 140px;
  }
}

/* 图片样式 */
#home-view.home-page .main-project .project-content .project-box .box-img .box-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ 保持比例，不变形 */
  transition: transform 0.3s ease;
}
#home-view.home-page .main-project .project-content .project-box .box-img .box-img-box img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* 标题覆盖层 */
#home-view.home-page .main-project .project-content .project-box .box-img .box-img-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  text-align: center;
}
#home-view.home-page .main-content {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  #home-view.home-page .main-content {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
#home-view.home-page .main-content .container .content-box {
  display: flex;
  overflow: hidden;
}
@media (max-width: 991px) {
  #home-view.home-page .main-content .container .content-box {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box {
    margin-bottom: 0px;
  }
}
#home-view.home-page .main-content .container .content-box .main-news {
  flex: 1;
  overflow: hidden;
}
#home-view.home-page .main-content .container .content-box .main-news .news-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 20px;
  margin-top: 0;
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
#home-view.home-page .main-content .container .content-box .main-news .news-title::before {
  content: "";
  background-color: #0275c2;
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 14px;
  vertical-align: middle;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content {
  display: flex;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-content {
    flex-direction: column;
  }
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container {
  height: 296px;
  overflow: hidden;
  position: relative;
  flex: 0 0 43%;
  transition: transform 0.3s;
  /* 分页符样式 */
  /* 左箭头样式（调整层级，移出swiper-wrapper嵌套） */
  /* 右箭头样式（调整层级，移出swiper-wrapper嵌套） */
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container {
    flex: 0 0 260px;
    width: 100%;
  }
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-wrapper .swiper-slide .slide-box {
  display: block;
  width: 100%;
  height: 100%;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-wrapper .swiper-slide .slide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-wrapper .swiper-slide .slide-box img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-wrapper .swiper-slide .slide-box .swiper-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-pagination {
  position: absolute;
  bottom: 12px;
  right: 10px;
  z-index: 10;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 6px;
  border-radius: 4px;
  background-color: #fff;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-button-prev {
  left: 0;
  background-image: url("/res/baiila/images/home/prev/left.png");
  width: 24px;
  height: 36px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  /* 确保在轮播内容上方 */
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .swiper-container .swiper-button-next {
  right: 0;
  background-image: url("/res/baiila/images/home/prev/right.png");
  width: 24px;
  height: 36px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  /* 确保在轮播内容上方 */
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list {
  width: 60%;
  flex: 0 0 57%;
  padding-left: 30px;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-content .news-list {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-content .news-list {
    padding-left: 0px;
    width: 100%;
    flex: 0 0 auto;
    margin-top: 30px;
  }
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-tabs {
  border-bottom: 3px solid #fafafa;
  padding-bottom: 14px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-tabs {
    padding-bottom: 7px;
    margin-bottom: 12px;
  }
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-tabs:hover {
  cursor: pointer;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-tabs .tab {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-right: 43px;
  padding-bottom: 14px;
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-tabs .tab {
    padding-bottom: 7px;
  }
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-tabs .active {
  border-bottom: 3px solid #0275c2;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li {
  display: flex;
  margin-bottom: 22px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li {
    margin-bottom: 11px;
  }
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li::before {
  content: "";
  background-color: #0275c2;
  width: 4px;
  height: 4px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 8px;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li a {
  flex: 1;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li .date {
  height: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  vertical-align: middle;
  color: #999999;
  white-space: nowrap;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li .date:hover {
  cursor: pointer;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li:hover a {
  color: #0275c2;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li:hover .date {
  color: #0275c2;
}
#home-view.home-page .main-content .container .content-box .main-news .news-content .news-list .news-articles li:last-child {
  margin-bottom: 0;
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 20px;
  margin-top: -1px;
}
@media (max-width: 992px) {
  #home-view.home-page .main-content .container .content-box .quick-entry .entry-title {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  #home-view.home-page .main-content .container .content-box .quick-entry .entry-title {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-title::before {
  content: "";
  background-color: #0275c2;
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 14px;
  /* 调整圆点与文字之间的距离 */
  vertical-align: middle;
  /* 垂直居中 */
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box {
  width: 360px;
  height: 140px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  #home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box {
    width: 260px;
    height: 100px;
  }
}
@media (max-width: 991px) {
  #home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box {
    width: 100%;
    height: 100px;
  }
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f1f4f9, rgba(241, 244, 249, 0.9), rgba(241, 244, 249, 0));
  /* 渐变遮罩，调整透明度 */
  z-index: 1;
  /* 确保遮罩在图片上方 */
  pointer-events: none;
  /* 关键：让遮罩层不拦截鼠标事件 */
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  /* 让图片在遮罩下方 */
  transition: 0.3s;
  border: none;
  outline: none;
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box img:hover {
  transform: scale(1.1);
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box .entry-text {
  position: absolute;
  top: 50%;
  left: 20px;
  /* 文字距左侧距离，可调整 */
  transform: translateY(-50%);
  /* 垂直居中 */
  z-index: 2;
  /* 确保文字在遮罩上方 */
  color: #333;
  /* 文字颜色，可调整 */
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box .entry-text .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin-top: 0;
  margin-bottom: 2px;
  margin-left: 10px;
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-box .entry-text .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #999999;
  margin: 0;
  margin-left: 11px;
}
#home-view.home-page .main-content .container .content-box .quick-entry .entry-content .entry-1 {
  margin-bottom: 16px;
}
#company-introduce-view.page {
  /*  中心内容区模块 */
  /* 4. 底部数据模块 */
}
#company-introduce-view.page .company-introduce-content {
  height: auto;
  margin-bottom: 0;
}
#company-introduce-view.page .company-introduce-content .content-title {
  width: 860px;
  margin: 0 auto;
  height: 44px;
  line-height: 44px;
  margin-top: 60px;
  font-weight: 700;
  font-size: 30px;
}
#company-introduce-view.page .company-introduce-content .content {
  display: flex;
  margin-top: 30px;
}
#company-introduce-view.page .company-introduce-content .content .content-text {
  flex: 0 0 62%;
  height: auto;
}
#company-introduce-view.page .company-introduce-content .content .content-text p {
  width: 100%;
  max-width: 860px;
  margin: 0;
}
#company-introduce-view.page .company-introduce-content .content .content-text p .text-title {
  margin-left: 32px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 30px;
  height: 30px;
}
#company-introduce-view.page .company-introduce-content .content .content-text p .text-content {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 30px;
}
#company-introduce-view.page .company-introduce-content .content .content-img {
  margin: 12px 34px;
  width: 506px;
  flex: 0 0 36%;
  height: 336px;
}
@media (max-width: 1200px) {
  #company-introduce-view.page .company-introduce-content .content-title {
    margin: 60px auto 30px;
    text-align: center;
    font-size: 24px;
  }
  #company-introduce-view.page .company-introduce-content .content {
    margin: auto;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  #company-introduce-view.page .company-introduce-content .content .content-text {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  #company-introduce-view.page .company-introduce-content .content .content-text .text-title,
  #company-introduce-view.page .company-introduce-content .content .content-text .text-content {
    font-size: 14px;
  }
  #company-introduce-view.page .company-introduce-content .content .content-img {
    width: 100%;
    max-width: 450px;
    height: auto;
  }
  #company-introduce-view.page .company-introduce-content .content .content-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}
@media (max-width: 992px) {
  #company-introduce-view.page .company-introduce-content .content-title {
    font-size: 19px;
    width: auto;
  }
  #company-introduce-view.page .company-introduce-content .content {
    margin: auto;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
  }
  #company-introduce-view.page .company-introduce-content .content .content-text {
    width: 100%;
    margin-bottom: 10px;
  }
  #company-introduce-view.page .company-introduce-content .content .content-text .text-title,
  #company-introduce-view.page .company-introduce-content .content .content-text .text-content {
    font-size: 13px;
  }
  #company-introduce-view.page .company-introduce-content .content .content-img {
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  #company-introduce-view.page .company-introduce-content .content .content-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}
@media (max-width: 767px) {
  #company-introduce-view.page .company-introduce-content .content-title {
    margin: 15px 0;
  }
  #company-introduce-view.page .company-introduce-content .container .content {
    padding: 0;
  }
  #company-introduce-view.page .company-introduce-content .container .content .content-img {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  #company-introduce-view.page .company-introduce-content .content-title {
    font-size: 18px;
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }
  #company-introduce-view.page .company-introduce-content .content .content-img {
    width: 100%;
    height: auto;
  }
  #company-introduce-view.page .company-introduce-content .content .content-text p .text-title,
  #company-introduce-view.page .company-introduce-content .content .content-text p .text-content {
    font-size: 14px;
    line-height: 28px;
  }
}
#company-introduce-view.page .bottom-view {
  height: auto;
  width: 100%;
  background-color: #f8f8f8;
  margin-top: 60px;
  /* 在992px以下屏幕，每行显示2个li */
  /* 480px以下：保持每行2个，进一步缩小字体 */
}
#company-introduce-view.page .bottom-view .container > ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 101px;
  padding: 77px 0;
}
#company-introduce-view.page .bottom-view .container > ul li {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: auto;
  min-height: 79px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}
#company-introduce-view.page .bottom-view .container > ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 50px;
  width: 1px;
  background-color: #eaeaea;
}
@media (max-width: 1429px) {
  #company-introduce-view.page .bottom-view .container > ul li::after {
    display: none;
  }
}
#company-introduce-view.page .bottom-view .container > ul li:last-child::after {
  display: none;
}
#company-introduce-view.page .bottom-view .container > ul li .dt {
  font-size: 36px;
  font-weight: 700;
  color: #0275c2;
}
@media (max-width: 1200px) {
  #company-introduce-view.page .bottom-view .container > ul li .dt {
    font-size: 28px;
  }
}
#company-introduce-view.page .bottom-view .container > ul li .dd {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 1200px) {
  #company-introduce-view.page .bottom-view {
    margin-top: 30px;
    padding: 0 80px;
    height: auto;
  }
  #company-introduce-view.page .bottom-view > ul {
    padding: 20px 0;
  }
  #company-introduce-view.page .bottom-view > ul li {
    margin: 0 20px;
  }
  #company-introduce-view.page .bottom-view > ul li .dt {
    font-size: 28px;
  }
  #company-introduce-view.page .bottom-view > ul li .dd {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  #company-introduce-view.page .bottom-view .container {
    margin-top: 20px;
    padding: 40px 15px;
    /* 调整内边距 */
  }
  #company-introduce-view.page .bottom-view .container > ul {
    display: flex;
    flex-wrap: wrap;
    /* 允许换行 */
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 0;
  }
  #company-introduce-view.page .bottom-view .container > ul li {
    width: calc(50% - 30px) !important;
    /* 计算宽度：减去间距的一半 */
    margin: 0 !important;
    box-sizing: border-box;
  }
  #company-introduce-view.page .bottom-view .container > ul li .dt {
    font-size: 26px;
  }
  #company-introduce-view.page .bottom-view .container > ul li .dd {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  #company-introduce-view.page .bottom-view {
    margin-top: 15px;
    padding: 0 15px;
  }
  #company-introduce-view.page .bottom-view .container {
    padding: 0;
  }
  #company-introduce-view.page .bottom-view .container > ul {
    gap: 10px;
    padding: 30px 0;
  }
  #company-introduce-view.page .bottom-view .container > ul li {
    width: calc(50% - 5px) !important;
  }
}
@media (max-width: 576px) {
  #company-introduce-view.page .bottom-view .bottom-view {
    margin-top: 30px;
    /* 修正过大的margin-top，避免与上方重叠 */
    padding: 30px 10px;
  }
  #company-introduce-view.page .bottom-view .bottom-view > ul {
    gap: 20px;
    /* 减小间距 */
  }
  #company-introduce-view.page .bottom-view .bottom-view > ul li {
    width: calc(50% - 20px) !important;
    /* 重新计算宽度适配小屏幕 */
    max-width: 160px;
  }
  #company-introduce-view.page .bottom-view .bottom-view > ul li .dt {
    font-size: 24px;
  }
  #company-introduce-view.page .bottom-view .bottom-view > ul li .dd {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  #company-introduce-view.page .bottom-view .bottom-view > ul li {
    width: calc(50% - 20px) !important;
    /* 重新计算宽度适配小屏幕 */
    max-width: 100px;
  }
  #company-introduce-view.page .bottom-view .bottom-view > ul li .dt {
    font-size: 22px;
  }
  #company-introduce-view.page .bottom-view .bottom-view > ul li .dd {
    font-size: 11px;
  }
}
#company-introduce-view.page {
  /* 小屏幕适配 (1200px以下) */
  /* 平板适配 (992px以下) */
  /* 小屏平板/手机适配 (768px以下) */
  /* 手机适配 (576px以下) */
  /* 小屏手机适配 (480px以下) */
}
#company-introduce-view.page .content-title {
  height: 70px;
  margin-top: 60px;
}
#company-introduce-view.page .content-title .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 8px;
}
#company-introduce-view.page .content-title .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-align: justify;
  color: #666666;
  margin: 0;
}
@media (max-width: 768px) {
  #company-introduce-view.page .content-title .description {
    line-height: 20px;
  }
}
#company-introduce-view.page .video {
  margin: 40px 0 82px;
  width: 1400px;
  height: 680px;
}
#company-introduce-view.page .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1400px) {
  #company-introduce-view.page .content-title .title {
    font-size: 20px;
  }
  #company-introduce-view.page .content-title .description {
    font-size: 13px;
  }
  #company-introduce-view.page .video {
    margin: 30px 0px 60px;
    width: calc(100%);
    height: 660px;
  }
}
@media (max-width: 1200px) {
  #company-introduce-view.page .content-title {
    margin-top: 50px;
  }
  #company-introduce-view.page .video {
    margin: 30px 0px 50px;
    width: calc(100%);
    height: 580px;
  }
}
@media (max-width: 992px) {
  #company-introduce-view.page .content-title .title {
    font-size: 19px;
  }
  #company-introduce-view.page .video {
    margin: 25px 0px 45px;
    width: calc(100%);
    height: 400px;
  }
}
@media (max-width: 768px) {
  #company-introduce-view.page .content-title {
    margin-left: 0;
    margin-top: 0;
    max-width: none;
    height: auto;
    margin-bottom: 10px;
  }
  #company-introduce-view.page .content-title .description {
    line-height: 24px;
  }
  #company-introduce-view.page .video {
    margin: 0;
    width: 100%;
    height: 340px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  #company-introduce-view.page .content-title {
    margin-left: 0;
    margin-right: 0;
    /* 左右边距一致 */
  }
  #company-introduce-view.page .content-title .title {
    font-size: 18px;
  }
  #company-introduce-view.page .content-title .description {
    font-size: 12px;
  }
  #company-introduce-view.page .video {
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
    height: 260px;
  }
}
@media (max-width: 480px) {
  #company-introduce-view.page .content-title {
    margin-top: 0;
  }
  #company-introduce-view.page .video {
    height: 200px;
    /* 进一步缩减高度适应小屏幕 */
  }
}
#company-introduce-view.page .select-certificate {
  display: flex;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}
#company-introduce-view.page .select-certificate .tab {
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #f8f8f8;
  margin-top: 60px;
  margin-bottom: 60px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}
#company-introduce-view.page .select-certificate .tab:hover {
  background-color: #ebf4fa;
  color: #0275c2;
  font-weight: 700;
}
#company-introduce-view.page .select-certificate .tab:hover a {
  color: #0275c2;
}
#company-introduce-view.page .select-certificate .tab.active {
  background-color: #0275c2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}
#company-introduce-view.page .select-certificate .tab.active a {
  color: #ffffff;
}
@media (max-width: 768px) {
  #company-introduce-view.page .select-certificate {
    padding: 0 15px;
    gap: 15px;
  }
  #company-introduce-view.page .select-certificate .tab {
    width: 160px;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
#company-introduce-view.page .certificate-list .container .content-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: calc(3 * 440px + 2 * 40px);
  margin: auto;
  margin-bottom: 82px;
}
#company-introduce-view.page .certificate-list .container .content-box .certificate-item {
  width: 440px;
  height: 384px;
  background-color: #f8f8f8;
  cursor: pointer;
  transition: transform 0.3s ease;
  /* 悬停状态 */
  /* 图片容器样式 */
}
#company-introduce-view.page .certificate-list .container .content-box .certificate-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  /* 图片容器悬停效果 */
}
#company-introduce-view.page .certificate-list .container .content-box .certificate-item:hover .img-container img {
  transform: scale(1.05);
}
#company-introduce-view.page .certificate-list .container .content-box .certificate-item .img-container {
  width: 400px;
  height: 300px;
  overflow: hidden;
  margin: 20px auto;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#company-introduce-view.page .certificate-list .container .content-box .certificate-item .img-container img {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: contain;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
#company-introduce-view.page .certificate-list .container .content-box .certificate-item .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #000000;
  text-align: center;
}
@media (max-width: 768px) {
  #company-introduce-view.page .certificate-list {
    gap: 15px;
  }
}
#news-center-view.page .news-content {
  width: 100%;
  height: auto;
  display: flex;
}
#news-center-view.page .news-content .container {
  display: flex;
  position: relative;
}
#news-center-view.page .news-content .container .news-left {
  width: 360px;
  border-right: 1px solid #eaeaea;
  padding-top: 60px;
  position: sticky;
  top: 60px;
}
#news-center-view.page .news-content .container .news-left input[type="radio"] {
  display: none;
  /* 隐藏 radio 按钮 */
}
#news-center-view.page .news-content .container .news-left .nav-link {
  display: block;
  width: 260px !important;
  height: 60px;
  line-height: 60px;
  margin-right: 100px;
  background-color: #f8f8f8;
  margin-bottom: 14px;
  cursor: pointer;
  /* 高亮选中样式 */
}
#news-center-view.page .news-content .container .news-left .nav-link:hover {
  background-color: #ebf4fa;
  color: #0275c2;
}
#news-center-view.page .news-content .container .news-left .nav-link:hover .svg {
  filter: invert(0.5);
}
#news-center-view.page .news-content .container .news-left .nav-link .svg {
  width: 22px;
  height: 22px;
  margin: 19px 10px 19px 20px;
  filter: invert(0.5);
}
#news-center-view.page .news-content .container .news-left .nav-link.active {
  background: #0275c2 url(../images/nav-bck.png) center 100%;
  color: #fff;
  font-weight: 700;
}
#news-center-view.page .news-content .container .news-left .nav-link.active .svg {
  filter: invert(0);
}
#news-center-view.page .news-content .container .news-list {
  width: 100%;
  height: auto;
  padding-left: 100px;
}
#news-center-view.page .news-content .container .news-list .news-right-header {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #news-center-view.page .news-content .container .news-list .news-right-header {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
#news-center-view.page .news-content .container .news-list .news-right-header .news-header {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
#news-center-view.page .news-content .container .news-list .news-right-header .news-header-description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 28px;
}
@media (max-width: 768px) {
  #news-center-view.page .news-content .container .news-list .news-right-header .news-header-description {
    line-height: 20px;
  }
}
/* ======================
   新闻列表（不裁剪版）
   ====================== */
#news-center-view.page .news-content .container .news-list .news-item ul li .item {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  margin-bottom: 33px !important;
  margin-top: 0;
  cursor: pointer;
  transition: transform 0.3s;
}

#news-center-view.page .news-content .container .news-list .news-item ul li .item:hover {
  transform: translateY(-3px);
}

/* ---- 图片区域 ---- */
#news-center-view.page .news-content .container .news-list .news-item ul li .item img {
  width: 180px;
  height: 120px;
  margin-right: 20px;
  object-fit: contain;         /* ✅ 不裁剪，保持比例 */
  object-position: center;     /* ✅ 居中显示 */
  background-color: #f5f5f5;   /* ✅ 背景色填充留白区域 */
  border-radius: 4px;          /* ✅ 可选：圆角 */
  display: block;
  flex-shrink: 0;              /* ✅ 防止图片被压缩 */
  border: none;
  box-sizing: border-box;
}

/* ---- 响应式 ---- */
@media (max-width: 576px) {
  #news-center-view.page .news-content .container .news-list .news-item ul li .item {
    flex-direction: column;
    height: auto;
    margin-bottom: 20px;
  }

  #news-center-view.page .news-content .container .news-list .news-item ul li .item img {
    width: 100%;
    height: 220px;
    margin-right: 0;
    margin-bottom: 10px;
    object-fit: contain;        /* ✅ 保持比例不裁剪 */
    background-color: #f5f5f5;
  }
}
#news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text {
  width: 100%;
  padding-right: 25px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text {
    padding-right: 0;
  }
}
#news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  height: 24px;
  line-height: 24px;
  margin-bottom: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 576px) {
  #news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .title {
    margin-top: 12px;
  }
}
.news-item:hover #news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .title {
  color: #0275c2;
}
#news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .description {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 22px;
  height: 44px;
  margin-bottom: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .description p {
  line-height: 22px;
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
#news-center-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .time {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
@media (max-width: 1200px) {
  #news-center-view.page .news-content .container .news-left {
    display: none;
  }
}
@media (max-width: 992px) {
  #news-center-view.page .news-content .container .news-list {
    padding-left: 0;
  }
  #news-center-view.page .news-content .container .news-item ul li .item .news-item-text .title {
    font-size: 13px !important;
  }
  #news-center-view.page .news-content .container .news-item ul li .item .news-item-text .description {
    font-size: 11px !important;
  }
}
@media (max-width: 768px) {
  #news-center-view.page .news-content .container .news-list .news-item ul li .item {
    margin-bottom: 20px !important;
  }
}
#excelient-project-view.page .news-content {
  width: 100%;
  height: auto;
  display: flex;
}
#excelient-project-view.page .news-content .container {
  display: flex;
  position: relative;
  padding: 0;
}
#excelient-project-view.page .news-content .container .news-left {
  width: 360px;
  border-right: 1px solid #eaeaea;
  padding-top: 60px;
  position: sticky;
  top: 60px;
  /* 隐藏 radio 按钮 */
}
#excelient-project-view.page .news-content .container .news-left input[type="radio"] {
  display: none;
}
#excelient-project-view.page .news-content .container .news-left .nav-link {
  display: block;
  width: 260px !important;
  height: 60px;
  line-height: 60px;
  margin-right: 100px;
  background-color: #f8f8f8;
  margin-bottom: 14px;
  cursor: pointer;
  /* 高亮选中样式 */
}
#excelient-project-view.page .news-content .container .news-left .nav-link:hover {
  background-color: #ebf4fa;
  color: #0275c2;
}
#excelient-project-view.page .news-content .container .news-left .nav-link:hover .svg {
  filter: invert(0.5);
}
#excelient-project-view.page .news-content .container .news-left .nav-link .svg {
  width: 22px;
  height: 22px;
  margin: 19px 10px 19px 20px;
  filter: invert(0.5);
}
#excelient-project-view.page .news-content .container .news-left .nav-link.active {
  background: #0275c2 url(../images/nav-bck.png) center 100%;
  color: #fff;
  font-weight: 700;
}
#excelient-project-view.page .news-content .container .news-left .nav-link.active .svg {
  filter: invert(0);
}
@media (max-width: 1200px) {
  #excelient-project-view.page .news-content .container .news-left {
    display: none;
  }
}
#excelient-project-view.page .news-content .container .news-list {
  width: 100%;
  height: auto;
  padding-left: 100px;
  box-sizing: border-box;
}
#excelient-project-view.page .news-content .container .news-list .news-right-header {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #excelient-project-view.page .news-content .container .news-list .news-right-header {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
#excelient-project-view.page .news-content .container .news-list .news-right-header .news-header {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
#excelient-project-view.page .news-content .container .news-list .news-right-header .news-header-description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 28px;
}
@media (max-width: 768px) {
  #excelient-project-view.page .news-content .container .news-list .news-right-header .news-header-description {
    line-height: 20px;
  }
}
#excelient-project-view.page .news-content .container .news-list .news-item {
  width: 100%;
  box-sizing: border-box;
}
#excelient-project-view.page .news-content .container .news-list .news-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 940px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#excelient-project-view.page .news-content .container .news-list .news-item ul li .item {
  position: relative;
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s;
}
#excelient-project-view.page .news-content .container .news-list .news-item ul li .item:hover {
  transform: scale(1.05);
}
#excelient-project-view.page .news-content .container .news-list .news-item ul li .item:hover span {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#excelient-project-view.page .news-content .container .news-list .news-item ul li .item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#excelient-project-view.page .news-content .container .news-list .news-item ul li .item span {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #excelient-project-view.page .news-content .container .news-list .news-item {
    padding: 0 15px;
  }
  #excelient-project-view.page .news-content .container .news-list .news-item ul {
    gap: 15px;
    max-width: none;
  }
  #excelient-project-view.page .news-content .container .news-list .news-item ul li {
    width: 100%;
  }
  #excelient-project-view.page .news-content .container .news-list .news-item ul li .item {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #excelient-project-view.page .news-content .container .news-list {
    padding-left: 0px;
  }
  #excelient-project-view.page .news-content .container .news-list .news-right-header .news-header {
    font-size: 18px !important;
  }
  #excelient-project-view.page .news-content .container .news-list .news-right-header .news-header-description {
    font-size: 12px !important;
  }
  #excelient-project-view.page .news-content .container .news-item ul li .item .news-item-text .title {
    font-size: 13px !important;
  }
  #excelient-project-view.page .news-content .container .news-item ul li .item .news-item-text .description {
    font-size: 11px !important;
  }
}
@media (max-width: 576px) {
  #excelient-project-view.page .news-content .container .news-list .news-right-header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#corporate-culture-view.page .content .container .title {
  width: 100%;
}
#corporate-culture-view.page .content .container .title .container {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  #corporate-culture-view.page .content .container .title .container {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  #corporate-culture-view.page .content .container .title .container {
    margin: 15px 0;
  }
}
#corporate-culture-view.page .content .container .title .container h2 {
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  #corporate-culture-view.page .content .container .title .container h2 {
    font-size: 20px;
    height: 25px;
    line-height: 25px;
    margin: 0;
  }
}
#corporate-culture-view.page .content .container .title .container h3 {
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  color: #cccccc;
}
@media (max-width: 576px) {
  #corporate-culture-view.page .content .container .title .container h3 {
    height: 20px;
    line-height: 20px;
  }
}
#corporate-culture-view.page .content .container .content-box {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  #corporate-culture-view.page .content .container .content-box {
    flex-direction: column;
    gap: 0;
    margin-bottom: 15px;
    background: linear-gradient(to top, rgba(22, 70, 158, 0), rgba(22, 70, 158, 0.04));
  }
}
#corporate-culture-view.page .content .container .content-box .content-left {
  width: 50%;
  background-color: rgba(22, 70, 158, 0.04);
  background: linear-gradient(to top, rgba(22, 70, 158, 0), rgba(22, 70, 158, 0.04));
}
@media (max-width: 1024px) {
  #corporate-culture-view.page .content .container .content-box .content-left {
    width: 100%;
    background: none;
  }
}
#corporate-culture-view.page .content .container .content-box .content-right {
  width: 50%;
  background: linear-gradient(to top, rgba(22, 70, 158, 0), rgba(22, 70, 158, 0.04));
}
@media (max-width: 1024px) {
  #corporate-culture-view.page .content .container .content-box .content-right {
    width: 100%;
    background: none;
  }
}
.xcLeft {
    gap: 90px;
}
.xcRight {
    gap: 40px;
}
#corporate-culture-view.page .content .container .content-box ul {
  margin: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /*gap: 46px;*/
}
@media (max-width: 1024px) {
  #corporate-culture-view.page .content .container .content-box ul {
    margin-left: 15px;
    margin-top: 0;
    margin-bottom: 20px;
    /*gap: 0;*/
  }
}
@media (max-width: 576px) {
  #corporate-culture-view.page .content .container .content-box ul {
    margin: 15px 0 0 0 !important;
  }
}
#corporate-culture-view.page .content .container .content-box ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 90px;
  width: 100%;
  padding-right: 10px;
}
@media (max-width: 576px) {
  #corporate-culture-view.page .content .container .content-box ul li {
    height: auto;
    margin-bottom: 20px;
  }
}
#corporate-culture-view.page .content .container .content-box ul li img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
@media (max-width: 576px) {
  #corporate-culture-view.page .content .container .content-box ul li img {
    margin-right: 12px;
    margin-left: 12px;
  }
}
#corporate-culture-view.page .content .container .content-box ul li .text {
  flex: 1;
  min-width: 0;
}
#corporate-culture-view.page .content .container .content-box ul li .text h4 {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #666666;
  line-height: 30px;
  margin: 0;
  margin-bottom: 4px;
}
@media (max-width: 576px) {
  #corporate-culture-view.page .content .container .content-box ul li .text h4 {
    line-height: 20px;
  }
}
#corporate-culture-view.page .content .container .content-box ul li .text p {
    white-space: pre-line;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  margin: 0;
}
@media (max-width: 1024px) {
.xcLeft {
    gap: 40px;
}
.xcRight {
    gap: 0;
}
  #corporate-culture-view.page .content .container .content-box ul li .text h4 {
    font-size: 14px;
  }
  #corporate-culture-view.page .content .container .content-box ul li .text p {
    font-size: 12px;
  }
}
#hiring-talents-view.page .news-content {
  width: 100%;
  height: auto;
  background-color: #f8f8f8;
}
#hiring-talents-view.page .news-content .container .content-box {
  width: 100%;
  height: auto;
  border-top: #0275c2 solid 2px;
  margin-top: 40px;
  padding: 0 80px;
  padding-bottom: 20px;
  background-color: #ffffff;
}
@media (max-width: 576px) {
  .xcLeft {
    gap: 0;
  }
  #hiring-talents-view.page .news-content .container .content-box {
    margin-top: 20px;
    padding: 10px 15px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .content-title {
  padding-top: 65px;
  padding-bottom: 50px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .content-title {
    padding-top: 20px;
    padding-bottom: 15px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .content-title .container h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .content-title .container h3 {
    font-size: 20px;
    font-weight: 600;
  }
}
#hiring-talents-view.page .news-content .container .content-box .content-title .container h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #cccccc;
  margin: 0;
  margin-top: 13px;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .content-title .container h4 {
    font-size: 12px;
    font-weight: 800;
    margin-top: 2px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-information {
  /* 添加表格容器样式用于横向滚动 */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* 优化移动端滚动体验 */
  width: 100%;
  /* 确保容器宽度为100% */
}
#hiring-talents-view.page .news-content .container .content-box .job-information table {
  width: 100%;
  min-width: 500px;
  /* 移动端最小宽度，确保内容不挤压 */
  border: 0;
  border-collapse: collapse;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table tr:hover {
  background-color: #f8f8f8;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table .job-name {
  width: 38%;
  padding-left: 40px;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-information table .job-name {
    padding-left: 15px;
    width: 25%;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-information table th,
#hiring-talents-view.page .news-content .container .content-box .job-information table td {
  border: none;
  border-bottom: 1px solid #eaeaea;
  height: 70px;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-information table th,
  #hiring-talents-view.page .news-content .container .content-box .job-information table td {
    height: 50px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-information table th {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 992px) {
  #hiring-talents-view.page .news-content .container .content-box .job-information table th {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  #hiring-talents-view.page .news-content .container .content-box .job-information table th {
    font-size: 14px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-information table td {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 992px) {
  #hiring-talents-view.page .news-content .container .content-box .job-information table td {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #hiring-talents-view.page .news-content .container .content-box .job-information table td {
    font-size: 12px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-information table th:last-child {
  width: 70px;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table td:last-child {
  color: #eaeaea;
  cursor: pointer;
  font-size: 20px;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table .toggle-label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table .toggle-label .toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table .toggle-checkbox {
  display: none;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table .job-detail {
  display: none;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table .job-detail td {
  padding: 0;
}
#hiring-talents-view.page .news-content .container .content-box .job-information table .job-detail.active {
  display: table-row;
}
#hiring-talents-view.page .news-content .container .content-box .job-description {
  display: none;
  width: 100%;
  padding: 40px;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description {
    padding: 10px;
    max-width: 600px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description.active {
  display: block;
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-responsibilities {
  width: 100%;
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-responsibilities .title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  color: #000000;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-responsibilities .title {
    margin-bottom: 0px;
    font-size: 14px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-responsibilities span {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 26px;
  white-space: pre-line;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-responsibilities span {
    font-size: 12px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-requirements {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-requirements {
    margin-top: 10px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-requirements .title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  color: #000000;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-requirements .title {
    margin-bottom: 0px;
    font-size: 14px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-requirements span {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 26px;
  white-space: pre-line;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-requirements span {
    font-size: 12px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-email {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-email {
    margin-top: 10px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-email .title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  color: #000000;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-email .title {
    margin-bottom: 0px;
    font-size: 14px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-email .email a {
  font-size: 16px;
  font-weight: 700;
  color: #0275c2;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-email .email a {
    font-size: 12px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-description .job-email .text {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 26px;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .content-box .job-description .job-email .text {
    font-size: 12px;
  }
}
#hiring-talents-view.page .news-content .container .content-box .job-row.highlight {
  background-color: #f8f8f8;
}
#hiring-talents-view.page .news-content .container .content-box .toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hiring-talents-view.page .news-content .container .email-banner {
  width: 100%;
  height: 300px;
  background-color: #0275c2;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .email-banner {
    margin-bottom: 30px;
    height: 200px;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .left {
  width: 52%;
  margin-left: 60px;
}
@media (max-width: 992px) {
  #hiring-talents-view.page .news-content .container .email-banner .left {
    width: 100%;
    margin: 0 30px;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .left .left-text {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
}
@media (max-width: 992px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-text {
    display: flex;
    justify-content: center;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .left .left-text .p2 {
  padding: 15px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  background: url(../images/hiringTalents/english.png) no-repeat;
}
@media (max-width: 992px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-text .p2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-text .p2 {
    background: none;
  }
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-text .p2 {
    font-size: 16px;
    margin: 0;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .left .left-email {
  margin-top: 64px;
}
@media (max-width: 992px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-email {
    text-align: center;
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-email {
    margin-top: 20px;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .left .left-email h3 {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-email h3 {
    font-size: 14px;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .left .left-email .email {
  margin-top: 12px;
}
#hiring-talents-view.page .news-content .container .email-banner .left .left-email .email a {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-email .email a {
    font-size: 18px;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .left .left-email .email .text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 576px) {
  #hiring-talents-view.page .news-content .container .email-banner .left .left-email .email .text {
    font-size: 14px;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .right {
  width: 48%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}
@media (max-width: 992px) {
  #hiring-talents-view.page .news-content .container .email-banner .right {
    display: none;
  }
}
#hiring-talents-view.page .news-content .container .email-banner .right img {
  object-fit: cover;
  position: absolute;
}
#hiring-talents-view.page .news-content .container .email-banner .right .man {
  z-index: 10;
}
#hiring-talents-view.page .news-content .container .email-banner .right .background {
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#hiring-talents-view.page .news-content .container .email-banner .right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(circle, rgba(2, 117, 194, 0.8) 0%, rgba(2, 117, 194, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}
#talent-recruitment-view.page .news-content {
  width: 100%;
  height: auto;
  display: flex;
}
#talent-recruitment-view.page .news-content .container {
  display: flex;
  position: relative;
}
#talent-recruitment-view.page .news-content .container .news-left {
  width: 360px;
  border-right: 1px solid #eaeaea;
  padding-top: 60px;
  position: sticky;
  top: 60px;
}
#talent-recruitment-view.page .news-content .container .news-left input[type="radio"] {
  display: none;
  /* 隐藏 radio 按钮 */
}
#talent-recruitment-view.page .news-content .container .news-left .nav-link {
  display: block;
  width: 260px !important;
  height: 60px;
  line-height: 60px;
  margin-right: 100px;
  background-color: #f8f8f8;
  margin-bottom: 14px;
  cursor: pointer;
  /* 高亮选中样式 */
}
#talent-recruitment-view.page .news-content .container .news-left .nav-link:hover {
  background-color: #ebf4fa;
  color: #0275c2;
}
#talent-recruitment-view.page .news-content .container .news-left .nav-link:hover .svg {
  filter: invert(0.5);
}
#talent-recruitment-view.page .news-content .container .news-left .nav-link .svg {
  width: 22px;
  height: 22px;
  margin: 19px 10px 19px 20px;
  filter: invert(0.5);
}
#talent-recruitment-view.page .news-content .container .news-left .nav-link.active {
  background: #0275c2 url(../images/nav-bck.png) center 100%;
  color: #fff;
  font-weight: 700;
}
#talent-recruitment-view.page .news-content .container .news-left .nav-link.active .svg {
  filter: invert(0);
}
#talent-recruitment-view.page .news-content .container .news-list {
  width: 100%;
  height: auto;
  padding-left: 100px;
}
#talent-recruitment-view.page .news-content .container .news-list .news-right-header {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #talent-recruitment-view.page .news-content .container .news-list .news-right-header {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
#talent-recruitment-view.page .news-content .container .news-list .news-right-header .news-header {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
#talent-recruitment-view.page .news-content .container .news-list .news-right-header .news-header-description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 28px;
}
@media (max-width: 768px) {
  #talent-recruitment-view.page .news-content .container .news-list .news-right-header .news-header-description {
    line-height: 20px;
  }
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  margin-bottom: 33px !important;
  margin-top: 0;
  cursor: pointer;
  transition: transform 0.3s;
}
@media (max-width: 576px) {
  #talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item {
    flex-direction: column;
    height: auto;
    margin-bottom: 20px;
  }
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item:hover {
  transform: translateY(-3px);
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item img {
  width: 180px;
  height: 120px;
  margin-right: 20px;
  object-fit: cover;
}
@media (max-width: 576px) {
  #talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item img {
    width: 100%;
    height: 220px;
    margin-right: 0;
  }
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text {
  width: 100%;
  padding-right: 25px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  #talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text {
    padding-right: 0;
  }
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  height: 24px;
  line-height: 24px;
  margin-bottom: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 576px) {
  #talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .title {
    margin-top: 12px;
  }
}
.news-item:hover #talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .title {
  color: #0275c2;
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .description {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 22px;
  height: 44px;
  margin-bottom: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .description p {
  line-height: 22px;
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
#talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item .news-item-text .time {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
@media (max-width: 1200px) {
  #talent-recruitment-view.page .news-content .container .news-left {
    display: none;
  }
}
@media (max-width: 992px) {
  #talent-recruitment-view.page .news-content .container .news-list {
    padding-left: 0;
  }
  #talent-recruitment-view.page .news-content .container .news-item ul li .item .news-item-text .title {
    font-size: 13px !important;
  }
  #talent-recruitment-view.page .news-content .container .news-item ul li .item .news-item-text .description {
    font-size: 11px !important;
  }
}
@media (max-width: 768px) {
  #talent-recruitment-view.page .news-content .container .news-list .news-item ul li .item {
    margin-bottom: 20px !important;
  }
}
#contact-us-view.page .content-box {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  #contact-us-view.page .content-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
#contact-us-view.page .content-box .content-left {
  width: 46%;
}
@media (max-width: 992px) {
  #contact-us-view.page .content-box .content-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-left {
    margin-bottom: 20px;
  }
}
#contact-us-view.page .content-box .content-left .left-top {
  height: 98px;
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-left .left-top {
    height: auto;
  }
}
#contact-us-view.page .content-box .content-left .left-top h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-left .left-top h2 {
    font-size: 20px;
  }
}
#contact-us-view.page .content-box .content-left .left-top p {
  line-height: 18px;
  color: #666666;
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-left .left-top p {
    margin: 0px;
    font-size: 14px;
  }
}
#contact-us-view.page .content-box .content-left .left-bottom {
  margin-top: 168px;
  height: 200px;
  border-left: #0275c2 solid 2px;
  position: relative;
}
@media (max-width: 992px) {
  #contact-us-view.page .content-box .content-left .left-bottom {
    display: none;
  }
}
#contact-us-view.page .content-box .content-left .left-bottom p {
  position: absolute;
  bottom: 0;
  left: 20px;
  color: rgba(2, 117, 194, 0.1);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}
#contact-us-view.page .content-box .content-right {
  width: 54%;
}
@media (max-width: 992px) {
  #contact-us-view.page .content-box .content-right {
    width: 100%;
  }
}
#contact-us-view.page .content-box .content-right .company-name {
  width: 100%;
  height: 50px;
  background-color: #f8f8f8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
#contact-us-view.page .content-box .content-right .company-name .icon {
  width: 18px;
  height: 18px;
  margin-left: 16px;
  padding-right: 4px;
}
#contact-us-view.page .content-box .content-right .company-name .form-control {
  padding: 12px 0;
  background-color: #f8f8f8;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
#contact-us-view.page .content-box .content-right .user-info {
  margin-bottom: 18px;
}
#contact-us-view.page .content-box .content-right .user-info ul {
  display: flex;
  gap: 18px;
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-right .user-info ul {
    flex-direction: column;
    gap: 10px;
  }
}
#contact-us-view.page .content-box .content-right .user-info ul li {
  width: 100%;
  height: 50px;
  background-color: #f8f8f8;
  border-radius: 6px;
  display: flex;
  align-items: center;
}
#contact-us-view.page .content-box .content-right .user-info ul li .icon {
  width: 18px;
  height: 18px;
  margin-left: 16px;
  padding-right: 4px;
}
#contact-us-view.page .content-box .content-right .user-info ul li .form-control {
  padding: 12px 0;
  background-color: #f8f8f8;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
#contact-us-view.page .content-box .content-right .message {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: start;
  background-color: #f8f8f8;
  border-radius: 6px;
}
#contact-us-view.page .content-box .content-right .message .form-control {
  height: 100%;
  width: 100%;
  padding: 12px 0;
  background-color: #f8f8f8;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  padding-left: 16px;
  resize: none;
}
#contact-us-view.page .content-box .content-right .sub-box {
  display: flex;
  gap: 30px;
}
#contact-us-view.page .content-box .content-right .sub-box #slider {
  float: left;
  width: 280px;
  height: 50px;
  position: relative;
  border-radius: 2px;
  background-color: #0275c2;
  overflow: hidden;
  text-align: center;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  margin-top: 80px;
}
@media (max-width: 992px) {
  #contact-us-view.page .content-box .content-right .sub-box #slider {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-right .sub-box #slider {
    margin-top: 20px;
  }
}
#contact-us-view.page .content-box .content-right .sub-box #slider .slider_bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #0275c2;
  z-index: 1;
}
#contact-us-view.page .content-box .content-right .sub-box #slider .label {
  width: 48px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 0;
  line-height: 50px;
  border: 1px solid #cccccc;
  background: #fff;
  z-index: 3;
  border-radius: 0px;
  cursor: move;
  color: #40647f;
  font-size: 16px;
  font-weight: 600;
}
#contact-us-view.page .content-box .content-right .sub-box #slider .labelTip {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #fff !important;
  line-height: 50px;
  text-align: center;
  z-index: 2;
  font-weight: 600;
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-right .sub-box #slider .labelTip {
    padding-left: 48px;
  }
}
#contact-us-view.page .content-box .content-right .sub-box .btn {
  width: 140px;
  height: 50px;
  margin-top: 80px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  background-color: #0275c2;
  color: #fff;
}
@media (max-width: 992px) {
  #contact-us-view.page .content-box .content-right .sub-box .btn {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  #contact-us-view.page .content-box .content-right .sub-box .btn {
    margin-top: 20px;
  }
}
#contact-us-view.page .content-bottom-map {
  width: 100%;
  height: 540px;
}
@media (max-width: 1200px) {
  #contact-us-view.page .content-bottom-map {
    height: 400px;
  }
}
@media (max-width: 992px) {
  #contact-us-view.page .content-bottom-map {
    height: 300px;
  }
}
#contact-us-view.page .content-bottom-map .tdt-infowindow {
  bottom: 36px !important;
  left: -253px !important;
}
#contact-us-view.page .content-bottom-map .tdt-infowindow .tdt-infowindow-content {
  width: 505px !important;
  margin: 0;
  padding: 12px 14px;
  line-height: 26px;
}
#contact-us-view.page .content-bottom-map .tdt-infowindow .tdt-infowindow-content .name {
  font-weight: 700;
  color: #0275c2;
  font-size: 18px;
}
#contact-us-view.page .content-bottom-map .tdt-infowindow .tdt-infowindow-content .address {
  font-weight: 400;
  font-size: 16px;
  color: #999;
}
#contact-us-view.page .content-bottom-map .tdt-infowindow-content-wrapper {
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 4px !important;
}
#contact-us-view.page .content-bottom-map .tdt-infowindow-tip-container {
  height: 10px !important;
}
#contact-us-view.page .content-bottom-map .tdt-infowindow-tip-container .tdt-infowindow-tip {
  box-shadow: none !important;
}
@media (max-width: 768px) {
  #contact-us-view.page .content-bottom-map .tdt-infowindow {
    left: -148px !important;
  }
  #contact-us-view.page .content-bottom-map .tdt-infowindow .tdt-infowindow-content {
    width: 301px !important;
  }
  #contact-us-view.page .content-bottom-map .tdt-infowindow .tdt-infowindow-content .name {
    font-size: 14px;
  }
  #contact-us-view.page .content-bottom-map .tdt-infowindow .tdt-infowindow-content .address {
    font-size: 12px;
  }
}
#contact-us-view.page .content-bottom {
  margin: 0;
  padding: 0;
}
#contact-us-view.page .content-bottom img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: contain;
}
#news-detail-view.page .nav {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  margin-top: 120px;
}
@media (max-width: 1780px) {
  #news-detail-view.page .nav {
    margin-top: 100px;
  }
}
@media (max-width: 1680px) {
  #news-detail-view.page .nav {
    margin-top: 90px;
  }
}
@media (max-width: 1440px) {
  #news-detail-view.page .nav {
    margin-top: 80px;
  }
}
@media (max-width: 1200px) {
  #news-detail-view.page .nav {
    margin-top: 60px;
  }
}
@media (max-width: 992px) {
  #news-detail-view.page .nav {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  #news-detail-view.page .nav {
    margin-top: 60px;
  }
}
#news-detail-view.page .nav .container .nav-left {
  height: 70px;
  line-height: 70px;
  overflow: hidden;
}
#news-detail-view.page .nav .container .nav-left a {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}
@media (max-width: 576px) {
  #news-detail-view.page .nav .container .nav-left a {
    font-size: 12px;
  }
}
#news-detail-view.page .nav .container .nav-left img {
  width: 12px;
  height: 12px;
  margin: 8px 10px;
}
#news-detail-view.page .nav .container .nav-left .nav-right-active {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 576px) {
  #news-detail-view.page .nav .container .nav-left {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  #news-detail-view.page .nav .container .nav-left .nav-right-active {
    font-size: 12px;
  }
}
#news-detail-view.page .news-detail .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#news-detail-view.page .news-detail .container .passage {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin-top: 80px;
}
@media (max-width: 576px) {
  #news-detail-view.page .news-detail .container .passage {
    margin-top: 20px;
  }
}
#news-detail-view.page .news-detail .container .passage .passage-info h1 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}
@media (max-width: 576px) {
  #news-detail-view.page .news-detail .container .passage .passage-info h1 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
  }
}
#news-detail-view.page .news-detail .container .passage .passage-info .source {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#news-detail-view.page .news-detail .container .passage .passage-info .source .time {
  color: #999999;
}
#news-detail-view.page .news-detail .container .passage .passage-info .source .author {
  color: #999999;
}
#news-detail-view.page .news-detail .container .main-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  #news-detail-view.page .news-detail .container .main-text {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
#news-detail-view.page .news-detail .container .main-text img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  margin-top: 10px;
}
#news-detail-view.page .news-detail .container .page-turn {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  #news-detail-view.page .news-detail .container .page-turn {
    margin-bottom: 20px;
  }
}
#news-detail-view.page .news-detail .container .page-turn .previous {
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news-detail-view.page .news-detail .container .page-turn .previous:hover {
  color: #0275c2;
  cursor: pointer;
}
#news-detail-view.page .news-detail .container .page-turn .next {
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news-detail-view.page .news-detail .container .page-turn .next:hover {
  color: #0275c2;
  cursor: pointer;
}
#project-detail-view.page .nav {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  margin-top: 120px;
}
@media (max-width: 1780px) {
  #project-detail-view.page .nav {
    margin-top: 100px;
  }
}
@media (max-width: 1680px) {
  #project-detail-view.page .nav {
    margin-top: 90px;
  }
}
@media (max-width: 1440px) {
  #project-detail-view.page .nav {
    margin-top: 80px;
  }
}
@media (max-width: 1200px) {
  #project-detail-view.page .nav {
    margin-top: 60px;
  }
}
@media (max-width: 992px) {
  #project-detail-view.page .nav {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  #project-detail-view.page .nav {
    margin-top: 60px;
  }
}
#project-detail-view.page .nav .container .nav-left {
  height: 70px;
  line-height: 70px;
  overflow: hidden;
}
#project-detail-view.page .nav .container .nav-left a {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}
@media (max-width: 576px) {
  #project-detail-view.page .nav .container .nav-left a {
    font-size: 12px;
  }
}
#project-detail-view.page .nav .container .nav-left img {
  width: 12px;
  height: 12px;
  margin: 8px 10px;
}
#project-detail-view.page .nav .container .nav-left .nav-right-active {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 576px) {
  #project-detail-view.page .nav .container .nav-left .nav-right {
    display: none;
  }
}
@media (max-width: 576px) {
  #project-detail-view.page .nav .container .nav-left {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  #project-detail-view.page .nav .container .nav-left .nav-right-active {
    font-size: 12px;
  }
}
#project-detail-view.page .news-detail .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#project-detail-view.page .news-detail .container .passage {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin-top: 80px;
}
@media (max-width: 576px) {
  #project-detail-view.page .news-detail .container .passage {
    margin-top: 20px;
  }
}
#project-detail-view.page .news-detail .container .passage .passage-info h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  #project-detail-view.page .news-detail .container .passage .passage-info h1 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 10px;
  }
}
#project-detail-view.page .news-detail .container .passage .passage-info .project-info {
  width: 100%;
  max-width: 900px;
}
#project-detail-view.page .news-detail .container .passage .passage-info .project-info ul li {
  display: flex;
  gap: 12px;
  min-height: 26px;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  #project-detail-view.page .news-detail .container .passage .passage-info .project-info ul li {
    gap: 8px;
  }
}
#project-detail-view.page .news-detail .container .passage .passage-info .project-info ul li h4 {
  margin: 0;
  width: 90px;
  height: 26px;
  line-height: 26px;
  color: #0275c2;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 576px) {
  #project-detail-view.page .news-detail .container .passage .passage-info .project-info ul li h4 {
    width: 60px;
    font-size: 14px;
  }
}
#project-detail-view.page .news-detail .container .passage .passage-info .project-info ul li p {
  margin: 0;
  flex: 1;
  max-width: 812px;
  font-size: 16px;
  color: #666666;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  #project-detail-view.page .news-detail .container .passage .passage-info .project-info ul li p {
    font-size: 12px;
  }
}
#project-detail-view.page .news-detail .container .passage .passage-info .project-info ul li:last-child {
  margin-bottom: 0;
}
#project-detail-view.page .news-detail .container .main-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  #project-detail-view.page .news-detail .container .main-text {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
#project-detail-view.page .news-detail .container .main-text img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  margin-top: 10px;
}
#project-detail-view.page .news-detail .container .page-turn {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  #project-detail-view.page .news-detail .container .page-turn {
    margin-bottom: 20px;
  }
}
#project-detail-view.page .news-detail .container .page-turn .previous {
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#project-detail-view.page .news-detail .container .page-turn .previous:hover {
  color: #0275c2;
  cursor: pointer;
}
#project-detail-view.page .news-detail .container .page-turn .next {
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#project-detail-view.page .news-detail .container .page-turn .next:hover {
  color: #0275c2;
  cursor: pointer;
}
