:root {
  --xj-navy: #010938;
  --xj-blue: #004f87;
  --xj-sky: #0075c2;
  --xj-ink: #333;
  --xj-muted: #999;
  --xj-pale: #eef2f5;
  --xj-line: #d8dde2;
  --xj-wide: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--xj-ink);
  background: #fff;
  font-family: Arial, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.xj-wide { width: 92.5%; max-width: var(--xj-wide); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.xj-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  color: #4e5d7f;
  background: #fff;
  border: 1px solid #4e5d7f;
  border-radius: 50%;
  cursor: pointer;
  line-height: 0;
  transition: .3s ease;
}
.xj-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.xj-arrow::after {
  content: "";
  position: absolute;
  left: calc(50% + 7px);
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}
.xj-arrow--prev { transform: rotate(180deg); }
.xj-arrow:hover { color: #fff; background: var(--xj-blue); border-color: var(--xj-blue); }
.xj-title { display: block; margin: 0; color: var(--xj-navy); line-height: 1; }
.xj-title h2 { margin: 0; font-size: clamp(34px, 3vw, 58px); font-weight: 700; letter-spacing: -.04em; text-transform: uppercase; }
.xj-title span { display: block; margin-top: 12px; color: var(--xj-blue); font-size: 16px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }

/* 80px fixed header from the reference source */
.xj-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 666;
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}
.xj-header-space { height: 80px; }
.xj-header__inner { height: 80px; display: flex; align-items: center; }
.xj-logo { flex: 0 0 140px; width: 140px; display: flex; align-items: center; }
.xj-logo img { display: block; width: 140px; max-height: 58px; object-fit: contain; }
.xj-logo span { color: var(--xj-blue); font-size: 16px; font-weight: 700; line-height: 1.25; }
.xj-nav { flex: 1 1 auto; height: 100%; margin: 0 4% 0 10%; }
.xj-header__inner::after { display: none; }
.xj-header-contact {
  order: 2;
  flex: 0 0 150px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--xj-navy);
  font-size: 16px;
  white-space: nowrap;
  transition: color .2s ease;
}
.xj-header-contact:hover { color: var(--xj-blue); }
.xj-header-contact__icon { font-size: 21px; line-height: 1; }
.xj-header-contact__number { font-size: 18px; font-weight: 600; letter-spacing: .03em; }
.xj-nav__list {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.xj-nav__item { position: static; display: flex; align-items: stretch; }
.xj-nav__row { display: flex; align-items: stretch; }
.xj-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 15px;
  white-space: nowrap;
  transition: color .2s ease;
}
.xj-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 3;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #fff;
  opacity: 0;
  transform: translateX(-50%);
}
.xj-nav__item:hover .xj-nav__link,
.xj-nav__item.is-current .xj-nav__link { color: var(--xj-navy); }
.xj-nav__item:hover .xj-nav__link::after { opacity: 1; }
.xj-sub-toggle { display: none; }
.xj-mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 214px;
  color: #fff;
  background: rgba(1, 9, 56, .74);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .25s ease;
}
.xj-nav__item:hover .xj-mega,
.xj-nav__item:focus-within .xj-mega { opacity: 1; visibility: visible; transform: none; }
.xj-mega__inner { height: 100%; display: flex; }
.xj-mega__heading {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, .38);
}
.xj-mega__heading strong { font-size: 30px; line-height: 1.1; text-transform: uppercase; }
.xj-mega__heading span { margin-top: 12px; font-size: 18px; }
.xj-mega__heading i { margin-top: 8px; font-size: 32px; font-style: normal; }
.xj-mega__links {
  flex: 1;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
}
.xj-mega__links li { flex: 0 0 180px; }
.xj-mega__links a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .38);
  transition: background .25s ease;
}
.xj-mega__links a:hover { background: rgba(1, 9, 56, .65); }
.xj-mega__icon {
  width: 74px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
}
.xj-mega__icon img { display: block; max-width: 64px; max-height: 44px; object-fit: contain; }
.xj-mega__links b { font-size: 14px; font-weight: 500; line-height: 1.4; }
.xj-menu-toggle { display: none; }

/* Home hero */
.xj-home-hero { position: relative; height: calc(100vh - 80px); min-height: 620px; overflow: hidden; background: #dfe4e9; }
.xj-home-hero swiper-container,
.xj-home-hero swiper-slide { display: block; width: 100%; height: 100%; }
.xj-hero-slide { position: relative; }
.xj-hero-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #dfe4e9;
  transform: translateX(70px) scale(1.06);
  opacity: .15;
  transition: transform .8s linear, opacity .8s linear;
}
.swiper-slide-active .xj-hero-media { transform: none; opacity: 1; }
.xj-hero-copy {
  position: absolute;
  left: 50%;
  top: 35%;
  z-index: 3;
  width: 92.5%;
  max-width: 1680px;
  color: #fff;
  text-align: center;
  transform: translate(-50%, calc(-50% + 50px));
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
.xj-hero-copy h1 { margin: 0; font-size: clamp(32px, 3.6vw, 64px); font-weight: 400; line-height: 1.25; }
@keyframes xj-line { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
.xj-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 52px;
  height: 78px;
  padding: 0;
  color: #fff;
  background: rgba(1, 9, 56, .18);
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}
.xj-hero-nav::before { content: ""; display: block; width: 16px; height: 16px; margin: auto; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.xj-hero-nav--prev { left: 0; }
.xj-hero-nav--prev::before { transform: rotate(-135deg); }
.xj-hero-nav--next { right: 0; }
.xj-hero-nav--next::before { transform: rotate(45deg); }
.xj-hero-nav:hover { background: rgba(0, 79, 135, .82); }
.xj-hero-features {
  position: absolute;
  left: 3.75%;
  right: 3.75%;
  bottom: 50px;
  z-index: 8;
  max-width: 1680px;
  height: 120px;
  display: flex;
  margin-inline: auto;
  background: #fff;
  box-shadow: 0 8px 24px rgba(1, 9, 56, .06);
}
.xj-feature-main {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 20px;
  color: #fff;
  background: var(--xj-blue);
}
.xj-feature-main i { font-size: 32px; font-style: normal; }
.xj-feature-main b { font-weight: 500; }
.xj-feature-list { flex: 1; display: flex; margin: 0; padding: 0; overflow: hidden; list-style: none; }
.xj-feature-list li { flex: 1 1 0; min-width: 0; }
.xj-feature-list a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  color: #666;
  text-align: center;
  border-right: 1px solid #edf0f2;
  transition: color .2s ease, background .2s ease;
}
.xj-feature-list a::before { content: "◇"; margin-right: 10px; color: var(--xj-blue); font-size: 26px; }
.xj-feature-list a:hover { color: #fff; background: var(--xj-navy); }

/* About: title on the left, four flat tabs on the right */
.xj-home-about { padding: 100px 0 110px; }
.xj-about-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 54px; }
.xj-about-tabs { width: 58.6%; display: flex; margin: 0; padding: 0; overflow-x: auto; list-style: none; }
.xj-about-tabs li { flex: 1 0 140px; }
.xj-about-tab {
  width: 100%;
  min-height: 68px;
  padding: 12px 18px;
  color: #333;
  background: #f3f3f3;
  border: 0;
  border-right: 1px solid #fff;
  cursor: pointer;
}
.xj-about-tab.is-active,
.xj-about-tab:hover { color: #fff; background: var(--xj-blue); }
.xj-about-panel { display: none; min-height: 410px; position: relative; }
.xj-about-panel.is-active { display: grid; grid-template-columns: 56.2% 43.8%; }
.xj-about-copy { padding: 10px 8% 40px 0; }
.xj-about-copy h3 { margin: 0 0 22px; color: var(--xj-navy); font-size: 28px; font-weight: 500; }
.xj-about-copy__text {
  max-height: 270px;
  padding-right: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  color: #333;
  line-height: 2;
  scrollbar-color: var(--xj-blue) #e2e6ea;
  scrollbar-width: thin;
}
.xj-about-copy__text::-webkit-scrollbar { width: 7px; }
.xj-about-copy__text::-webkit-scrollbar-track { background: #e2e6ea; border-radius: 8px; }
.xj-about-copy__text::-webkit-scrollbar-thumb { background: var(--xj-blue); border-radius: 8px; }
.xj-about-copy > p.xj-about-copy__text { margin: 0; }
.xj-about-copy__text > :first-child { margin-top: 0; }
.xj-about-copy__text > :last-child { margin-bottom: 0; }
.xj-about-copy__text img,
.xj-about-copy__text video { display: none; }
.xj-long-arrow { display: inline-block; margin-top: 28px; color: #111; font-size: 52px; line-height: 1; transition: transform .25s ease, color .25s ease; }
.xj-long-arrow:hover { color: var(--xj-blue); transform: translateX(10px); }
.xj-about-image { position: relative; overflow: hidden; background: #eef1f3; }
.xj-about-image img { display: block; width: 100%; height: 100%; min-height: 410px; object-fit: contain; transition: transform .5s ease; }
.xj-about-image::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 0;
  width: 90px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-14deg);
  transition: left .8s ease;
}
.xj-about-image:hover::after { left: 130%; }
.xj-about-image:hover img { transform: scale(1.025); }

/* 荣誉资质与企业风采：复刻原站白底横向图片轮播。 */
.xj-about-panel--gallery { min-height: 0; display: none; }
.xj-about-panel--gallery.is-active { display: block; }
.xj-about-gallery-wrap { position: relative; padding: 4px 58px 34px; }
.xj-about-gallery,
.xj-about-gallery swiper-slide { display: block; }
.xj-about-gallery-card { display: block; overflow: hidden; color: var(--xj-ink); background: #fff; box-shadow: -3px 3px 20px rgba(71,71,71,.1); }
.xj-about-gallery-card img { display: block; width: 100%; aspect-ratio: 366 / 275; object-fit: contain; background: #fff; transition: transform .35s ease; }
.xj-about-gallery-card span { display: block; min-height: 48px; padding: 10px 12px; color: #333; font-size: 15px; line-height: 1.7; text-align: center; }
.xj-about-gallery-card:hover img { transform: scale(1.06); }
.xj-about-gallery-arrows { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.xj-about-gallery-arrows .xj-arrow { width: 46px; height: 46px; pointer-events: auto; }

/* Product: pale background, six category switches and large horizontal cards */
.xj-product-section { padding: 80px 0 46px; background: linear-gradient(130deg, #edf2f5, #dfe7ed); }
.xj-product-section .xj-title { text-align: center; }
.xj-product-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  margin: 52px 0 44px;
  padding: 0;
  list-style: none;
}
.xj-product-tab {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding: 20px;
  color: var(--xj-navy);
  background: #e5eaee;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
}
.xj-product-tab::after {
  content: "◢";
  position: absolute;
  right: -5px;
  bottom: -18px;
  color: rgba(0, 79, 135, .15);
  font-size: 84px;
  line-height: 1;
}
.xj-product-tab.is-active,
.xj-product-tab:hover { color: #fff; background: var(--xj-blue); font-size: 17px; font-weight: 700; }
.xj-product-tab.is-active::after,
.xj-product-tab:hover::after { color: rgba(255,255,255,.22); }
.xj-product-panel { display: none; position: relative; padding-bottom: 78px; }
.xj-product-panel.is-active { display: block; }
.xj-product-panel swiper-container,
.xj-product-panel swiper-slide { display: block; }
.xj-product-card { display: block; background: #fff; }
.xj-product-card__media { height: clamp(280px, 22vw, 390px); overflow: hidden; background: #fff; }
.xj-product-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s linear; }
.xj-product-card:hover .xj-product-card__media img { transform: scale(.92); }
.xj-product-card__body { min-height: 190px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 34px 15%; text-align: center; }
.xj-product-card__body small { color: var(--xj-muted); font-size: 14px; }
.xj-product-card__body i { width: 100%; height: 1px; margin: 19px 0 22px; background: #d2d2d2; }
.xj-product-card__body h3 { margin: 0; color: var(--xj-navy); font-size: 18px; font-weight: 500; line-height: 1.5; }
.xj-product-arrows { position: absolute; right: 0; bottom: 0; display: flex; gap: 28px; }

/* Cases: tilted blue background and four tall panels */
.xj-case-section { position: relative; margin-top: 130px; padding: 55px 0 150px; }
.xj-case-section::before,
.xj-case-section::after {
  content: "";
  position: absolute;
  left: -5%;
  top: 30px;
  z-index: -2;
  width: 110%;
  height: calc(100% - 30px);
  transform-origin: top left;
}
.xj-case-section::before { background: linear-gradient(120deg, #010938, #0075c2 76%, #004f87); transform: rotate(3deg); }
.xj-case-section::after { z-index: -3; background: #eee; transform: rotate(-3deg); transform-origin: top right; }
.xj-case-section .xj-title { color: #fff; margin-bottom: 54px; }
.xj-case-section .xj-title span { color: rgba(255,255,255,.68); }
.xj-case-carousel { position: relative; }
.xj-case-carousel swiper-container,
.xj-case-carousel swiper-slide { display: block; }
.xj-case-card { position: relative; display: block; aspect-ratio: 420 / 613; overflow: hidden; background: #17203e; }
.xj-case-card__media { position: absolute; inset: 0; overflow: hidden; background: #17203e; }
.xj-case-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .35s linear; }
.xj-case-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; height: 145px; background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.78)); pointer-events: none; }
.xj-case-card span { position: absolute; left: 18px; right: 18px; bottom: 36px; z-index: 2; color: #fff; font-size: 18px; line-height: 1.5; text-align: center; transition: transform .3s ease; }
.xj-case-card:hover .xj-case-card__media img { transform: scale(1.12); }
.xj-case-card:hover span { transform: scale(1.06); }
.xj-case-arrows { display: flex; justify-content: flex-end; gap: 52px; margin-top: 34px; }
.xj-case-arrows .xj-arrow { color: #fff; background: transparent; border: 0; border-radius: 0; font-size: 0; }
.xj-case-arrows .xj-arrow:hover { color: var(--xj-sky); }

/* Applications */
.xj-application-section { padding: 165px 0 100px; }
.xj-application-section .xj-title { text-align: center; margin-bottom: 58px; }
.xj-application-title h2 { font-size: clamp(30px, 2.8vw, 52px); line-height: .98; letter-spacing: .01em; }
.xj-application-title span { margin-top: 14px; color: #777; font-size: 22px; font-weight: 400; letter-spacing: 0; }
.xj-application-carousel { position: relative; }
.xj-application-carousel swiper-container,
.xj-application-carousel swiper-slide { display: block; height: auto; }
.xj-application-card { display: block; }
.xj-application-card__media { aspect-ratio: 567 / 355; overflow: hidden; background: #eef1f3; }
.xj-application-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s linear; }
.xj-application-card__name { min-height: 62px; display: flex; align-items: center; justify-content: center; padding: 14px 20px; color: #333; background: #e9e9e9; font-size: 16px; text-align: center; transition: background .3s ease; }
.xj-application-card:hover img { transform: scale(1.12); }
.xj-application-card:hover .xj-application-card__name { background: #fff; }
.xj-application-arrows { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.xj-application-arrows .xj-arrow { position: absolute; top: 50%; width: 34px; height: 34px; pointer-events: auto; }
.xj-application-arrows .xj-arrow::before { width: 14px; }
.xj-application-arrows .xj-arrow::after { left: calc(50% + 4px); width: 6px; height: 6px; }
.xj-application-arrows .xj-arrow--prev { left: 0; }
.xj-application-arrows .xj-arrow--next { right: 0; }

/* News: 81/19 split just like the source */
.xj-news-section { display: grid; grid-template-columns: 81.3% 18.7%; padding-bottom: 120px; }
.xj-news-carousel { min-width: 0; }
.xj-news-carousel swiper-container,
.xj-news-carousel swiper-slide { display: block; }
.xj-news-card { display: block; }
.xj-news-card__media { height: clamp(260px, 26vw, 420px); overflow: hidden; background: #e5eaee; }
.xj-news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s linear; }
.xj-news-card__body { min-height: 260px; padding: 32px 28px 24px; background: #f0f1f3; }
.xj-news-card h3 { margin: 0; overflow: hidden; color: #222; font-size: 18px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.xj-news-card p { height: 90px; margin: 22px 0 0; overflow: hidden; color: var(--xj-muted); line-height: 1.9; }
.xj-news-card time { display: block; margin-top: 32px; color: var(--xj-muted); font-size: 14px; }
.xj-news-card:hover img { transform: scale(1.08); }
.xj-news-card:hover h3 { color: var(--xj-blue); }
.xj-news-side { display: flex; flex-direction: column; align-items: flex-end; padding-left: 32px; }
.xj-news-side .xj-title { text-align: right; }
.xj-news-side .xj-title h2 { font-size: clamp(35px, 3.2vw, 60px); }
.xj-news-arrows { display: flex; flex-direction: column; gap: 48px; margin-top: 42px; }

.xj-contact-strip { padding: 92px 0 78px; background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #dedede; }
.xj-contact-shell { width: 92%; max-width: 940px; margin: 0 auto; }
.xj-contact-heading { display: block; width: max-content; max-width: 100%; margin: 0 auto 14px; text-align: center; }
.xj-contact-heading strong { display: block; color: var(--xj-navy); font-size: 46px; font-weight: 700; line-height: 1; letter-spacing: .01em; }
.xj-contact-heading h2 { margin: 7px 0 0; color: #666; font-size: 34px; font-weight: 400; line-height: 1.15; }
.xj-contact-heading i { position: relative; display: block; width: 76px; height: 33px; margin: 9px auto 0; background-image: radial-gradient(circle, #777 1px, transparent 1.5px); background-size: 10px 10px; }
.xj-contact-heading i::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 2px; height: 2px; background: #777; transform: translateX(-50%); }
.xj-contact-content { display: grid; grid-template-columns: 500px 440px; align-items: start; }
.xj-contact-content > .person-contact-box { grid-column: 1; grid-row: 1; min-width: 0; }
.xj-contact-content > .eva-box { grid-column: 2; grid-row: 1; min-width: 0; }
.xj-contact-content ul { margin: 0; padding: 0; list-style: none; }
.xj-contact-content .person-item { display: block; }
.xj-contact-content .l-address { display: none; }
.xj-contact-content .person { display: flex; flex-direction: column; color: #333; font-size: 16px; line-height: 2.25; }
.xj-contact-content .person > p:nth-child(1) { order: 4; }
.xj-contact-content .person > p:nth-child(2) { order: 5; }
.xj-contact-content .person > p:nth-child(3) { order: 6; }
.xj-contact-content .person > p:nth-child(4) { order: 7; }
.xj-contact-content .person > p:nth-child(5) { order: 1; }
.xj-contact-content .person > p:nth-child(6) { order: 2; }
.xj-contact-content .person > p:nth-child(7) { order: 3; }
.xj-contact-content .person p { margin: 0; }
.xj-contact-content .eva-box { padding-top: 5px; }
.xj-contact-content .ewm_box ul { display: flex; justify-content: space-between; align-items: flex-start; }
.xj-contact-content .ewm_box li { flex: 0 0 31.5%; min-width: 0; text-align: center; }
.xj-contact-content .ewm_box li:nth-child(1) { order: 2; }
.xj-contact-content .ewm_box li:nth-child(2) { order: 1; }
.xj-contact-content .ewm_box li:nth-child(3) { order: 3; }
.xj-contact-content .ewm_box img { display: block; width: 140px; max-width: 100%; height: 140px; margin: 0 auto; object-fit: contain; }
.xj-contact-content .ewm_box p { margin: 20px -10px 0; color: #333; font-size: 16px; line-height: 1.5; white-space: nowrap; }
.xj-contact-content .map-wrap { display: none; }
.xj-contact-summary { margin: 35px auto 0; color: #555; line-height: 2; text-align: center; }
.xj-outline-btn {
  position: relative;
  display: inline-flex;
  min-width: 180px;
  min-height: 46px;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  overflow: hidden;
  color: var(--xj-navy);
  border: 1px solid #49597c;
}
.xj-outline-btn::before { content: ""; position: absolute; top: 0; left: -70%; width: 70px; height: 100%; background: rgba(0,79,135,.14); transform: skewX(-35deg); transition: left .35s ease; }
.xj-outline-btn:hover::before { left: 120%; }

@media (max-width: 1000px) and (min-width: 769px) {
  .xj-contact-content { grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr); }
  .xj-contact-content .ewm_box img { width: 112px; height: 112px; }
  .xj-contact-content .ewm_box p { font-size: 13px; }
}

/* Inner category bar from source list/detail pages */
.xj-inner-bar { color: #fff; background: linear-gradient(to right, #010938, #0075c2 77%, #004f87); }
.xj-inner-bar__inner { min-height: 170px; display: flex; align-items: stretch; }
.xj-inner-title {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 28px;
}
.xj-inner-title h1,
.xj-inner-title strong { margin: 0; font-size: 30px; font-weight: 500; line-height: 1.25; }
.xj-inner-title i { width: 74px; height: 18px; border-top: 1px solid rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.3); transform: skewX(-35deg); }
.xj-inner-categories {
  flex: 1;
  display: flex;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
}
.xj-inner-categories li { position: relative; flex: 1 0 150px; min-width: 0; }
.xj-inner-categories li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: none;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #eee;
  transform: translateX(-50%);
}
.xj-inner-categories li.is-active::after { display: block; }
.xj-inner-categories a { height: 100%; display: flex; justify-content: center; align-items: center; padding: 20px 12px; color: #fff; font-size: 15px; text-align: center; }
.xj-inner-categories li.is-active a span,
.xj-inner-categories a:hover span { padding: 7px 22px; background: var(--xj-sky); border-radius: 50px; }

.xj-list-main { padding: 58px 0 90px; background: #eee; }
.xj-breadcrumb { margin: 0 0 34px; color: #7b8490; font-size: 13px; }
.xj-breadcrumb a:hover { color: var(--xj-blue); }
.xj-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 16px; }
.xj-list-product { display: block; background: #fff; }
.xj-list-product__media { height: 290px; overflow: hidden; background: #fff; }
.xj-list-product__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s linear; }
.xj-list-product__body { min-height: 165px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 26px 12%; text-align: center; }
.xj-list-product__body small { color: var(--xj-muted); }
.xj-list-product__body i { width: 100%; height: 1px; margin: 16px 0; background: #d2d2d2; }
.xj-list-product__body h2 { margin: 0; color: var(--xj-navy); font-size: 17px; font-weight: 500; line-height: 1.5; }
.xj-list-product:hover img { transform: scale(.92); }

.xj-case-grid-list { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px 16px; }
.xj-list-case { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #dfe5e8; }
.xj-list-case img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.xj-list-case::after { content: ""; position: absolute; inset: 0; background: rgba(1,9,56,.64); opacity: 0; transition: opacity .3s ease; }
.xj-list-case h2 { position: absolute; left: 16px; right: 16px; top: 50%; z-index: 2; margin: 0; color: #fff; font-size: 15px; font-weight: 500; text-align: center; opacity: 0; transform: translateY(-35%); transition: .3s ease; }
.xj-list-case:hover::after,
.xj-list-case:hover h2 { opacity: 1; }
.xj-list-case:hover h2 { transform: translateY(-50%); }
.xj-list-case:hover img { transform: scale(1.06); }

.xj-news-list { max-width: 1120px; }
.xj-list-news { border-bottom: 1px solid #d8dadd; }
.xj-list-news a { display: grid; grid-template-columns: 116px 1fr 190px; gap: 28px; align-items: center; min-height: 150px; padding: 24px 0; }
.xj-list-news__date { display: flex; align-items: center; color: var(--xj-navy); }
.xj-list-news__date strong { font-size: 46px; font-weight: 300; line-height: 1; }
.xj-list-news__date span { margin-left: 12px; padding-left: 12px; color: #87909a; font-size: 12px; line-height: 1.4; border-left: 1px solid #bec4c9; }
.xj-list-news__text h2 { margin: 0; color: #333; font-size: 19px; font-weight: 500; }
.xj-list-news__text p { margin: 10px 0 0; color: #888; font-size: 14px; }
.xj-list-news__media { height: 100px; background: #e3e8eb; }
.xj-list-news__media img { width: 100%; height: 100%; object-fit: contain; }
.xj-list-news:hover h2 { color: var(--xj-blue); }

/* 下载中心沿用原站的图文文件条目布局 */
.xj-document-list { max-width: 1280px; margin: 0 auto; padding: 24px 48px 12px; background: #fff; }
.xj-document-item { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 34px; padding: 0 0 26px; margin: 0 0 26px; border-bottom: 1px solid #e5e5e5; }
.xj-document-item:last-child { margin-bottom: 0; }
.xj-document-item__media { width: 300px; height: 194px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #eef1f3; }
.xj-document-item__media img { display: block; width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.xj-document-item__media > span { color: #0075c2; font-size: 32px; }
.xj-document-item:hover .xj-document-item__media img { transform: scale(1.04); }
.xj-document-item__body { position: relative; min-width: 0; padding: 8px 190px 8px 0; }
.xj-document-item__meta { display: flex; flex-wrap: wrap; gap: 0 30px; color: #999; font-size: 13px; line-height: 1.8; }
.xj-document-item__body h2 { margin: 13px 0 0; color: #333; font-size: 21px; font-weight: 500; line-height: 1.5; }
.xj-document-item__body h2 a:hover { color: var(--xj-blue); }
.xj-document-item__body p { display: -webkit-box; margin: 11px 0 0; overflow: hidden; color: #888; font-size: 14px; line-height: 1.8; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.xj-document-item__download { position: absolute; right: 0; top: 8px; display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 20px; color: #fff; background: #313131; font-size: 14px; transition: background .25s ease; }
.xj-document-item__download:hover { color: #fff; background: #00598f; }

.xj-generic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.xj-generic-card { display: block; background: #fff; }
.xj-generic-card__media { height: 250px; background: #e5eaee; }
.xj-generic-card__media img { width: 100%; height: 100%; object-fit: contain; }
.xj-generic-card__body { min-height: 120px; padding: 24px; }
.xj-generic-card__body h2 { margin: 0; color: var(--xj-navy); font-size: 18px; font-weight: 500; }
.xj-generic-card__body p { margin: 10px 0 0; color: #888; font-size: 14px; }
.xj-empty { padding: 80px 20px; color: #777; text-align: center; background: #fff; }
.xj-pagination { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 52px; }
.xj-pagination a,
.xj-pagination span { min-width: 38px; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 6px 12px; color: #555; background: #fff; }
.xj-pagination a:hover,
.xj-pagination .is-current { color: #fff; background: var(--xj-blue); }

/* Detail follows original wide gallery and long document */
.xj-detail-main { padding: 55px 0 95px; background: #fff; }
.xj-detail-head { margin-bottom: 36px; text-align: center; }
.xj-detail-head h1 { margin: 0; color: var(--xj-navy); font-size: clamp(28px, 3vw, 44px); font-weight: 500; line-height: 1.35; }
.xj-detail-meta { display: flex; justify-content: center; gap: 20px; margin-top: 12px; color: #999; font-size: 13px; }
.xj-detail-cover { margin: 0 0 34px; background: #f4f4f4; }
.xj-detail-cover img { display: block; width: 100%; max-height: 760px; object-fit: contain; }
.xj-detail-gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-bottom: 38px; }
.xj-detail-gallery a { min-height: 170px; background: #eee; }
.xj-detail-gallery img { display: block; width: 100%; height: 180px; object-fit: contain; }
.xj-detail-content { color: #444; font-size: 15px; line-height: 2; overflow-wrap: anywhere; }
.xj-detail-content img { display: block; width: auto; max-width: 100%; height: auto; margin: 25px auto; }
.xj-detail-content table { width: 100%; max-width: 100%; border-collapse: collapse; }
.xj-detail-content td,
.xj-detail-content th { padding: 9px; border: 1px solid #ddd; }
.xj-detail-fields { display: grid; grid-template-columns: repeat(2, 1fr); margin: 45px 0 0; border-top: 1px solid #ddd; }
.xj-detail-field { display: grid; grid-template-columns: 150px 1fr; padding: 13px 0; border-bottom: 1px solid #ddd; }
.xj-detail-field dt { color: #888; }
.xj-detail-field dd { margin: 0; }
.xj-detail-field img { max-width: 280px; max-height: 200px; object-fit: contain; }
.xj-detail-control { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 55px; padding-top: 28px; border-top: 1px solid #ddd; }
.xj-detail-control a { color: #666; }
.xj-detail-control a:last-child { text-align: right; }
.xj-detail-control a:hover { color: var(--xj-blue); }
.xj-document-detail { padding-top: 4px; }
.xj-document-detail__download { margin-top: 38px; padding-top: 28px; border-top: 1px solid #eee; }
.xj-document-detail__download h2 { margin: 0 0 20px; color: var(--xj-navy); font-size: 22px; font-weight: 600; }
.xj-document-detail__download ul { margin: 0; padding: 0; list-style: none; }
.xj-document-detail__download li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid #eee; color: #555; }
.xj-document-detail__download li span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xj-document-detail__download li a { flex: 0 0 auto; padding: 10px 22px; color: #fff; background: var(--xj-blue); }
.xj-document-detail__download li a:hover { color: #fff; background: #00598f; }

/* Reference footer is white with one dark navy copyright bar */
.xj-footer { width: 100%; padding-top: 40px; background: #fff; border-top: 1px solid #e5e5e5; }
.xj-footer__nav { padding: 0 0 60px; }
.xj-footer__nav ul { display: flex; justify-content: space-between; margin: 0; padding: 0; list-style: none; }
.xj-footer__nav li { flex: 1; text-align: center; }
.xj-footer__nav a { color: #333; font-size: 15px; }
.xj-footer__nav a:hover { color: var(--xj-blue); }
.xj-footer__base { min-height: 40px; display: flex; align-items: center; padding: 9px 0; color: rgba(255,255,255,.65); background: var(--xj-navy); font-size: 12px; text-align: center; }
.xj-footer__base a { margin-left: 14px; color: #fff; }

/* Progressive reveal, visible by default */
.reveal { opacity: 1; transform: none; }
.motion-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(32px); }
.motion-ready .reveal { transition: opacity .75s ease, transform .75s ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1440px) {
  .xj-nav { margin-left: 7%; }
  .xj-nav__link { font-size: 13px; }
  .xj-hero-features { height: 102px; }
  .xj-feature-main { flex-basis: 250px; }
  .xj-product-tabs { gap: 20px; }
  .xj-product-tab { height: 88px; padding: 14px; font-size: 13px; }
}

@media (max-width: 1100px) {
  .xj-logo { flex-basis: 125px; width: 125px; }
  .xj-logo img { width: 125px; }
  .xj-nav { margin-left: 3%; }
  .xj-header__inner::after { display: none; }
  .xj-product-tabs { grid-template-columns: repeat(4, 1fr); }
  .xj-product-grid { grid-template-columns: repeat(3, 1fr); }
  .xj-case-grid-list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .xj-header,
  .xj-header__inner { height: 64px; }
  .xj-header-space { height: 64px; }
  .xj-header__inner { justify-content: space-between; }
  .xj-header__inner::after { display: none; }
  .xj-logo { flex: 0 1 150px; width: auto; }
  .xj-logo img { width: auto; max-width: 150px; max-height: 44px; }
  .xj-header-contact { order: 2; flex: 0 0 auto; margin-left: auto; margin-right: 14px; font-size: 14px; }
  .xj-header-contact__icon { font-size: 18px; }
  .xj-header-contact__number { font-size: 14px; }
  .xj-menu-toggle {
    order: 3;
    position: relative;
    z-index: 3;
    flex: 0 0 34px;
    display: block;
    width: 34px;
    height: 28px;
    margin-left: auto;
    padding: 2px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .xj-menu-toggle > span { display: block; width: 30px; height: 3px; margin: 5px 0; background: var(--xj-navy); border-radius: 3px; transition: .25s ease; }
  .xj-menu-toggle.is-active > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .xj-menu-toggle.is-active > span:nth-child(2) { opacity: 0; }
  .xj-menu-toggle.is-active > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .xj-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    height: calc(100vh - 64px);
    margin: 0;
    padding: 0 4%;
    overflow-y: auto;
    background: #fff;
  }
  .xj-nav.is-open { display: block; }
  .xj-nav__list { display: block; height: auto; }
  .xj-nav__item { display: block; border-bottom: 1px solid #dcdcdc; }
  .xj-nav__row { min-height: 48px; }
  .xj-nav__link { flex: 1; padding: 0 4px; font-size: 14px; }
  .xj-nav__link::after { display: none; }
  .xj-sub-toggle { position: relative; display: block; width: 48px; background: transparent; border: 0; }
  .xj-sub-toggle::before,
  .xj-sub-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1px; background: var(--xj-navy); transform: translate(-50%, -50%); }
  .xj-sub-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
  .sub-open .xj-sub-toggle::after { display: none; }
  .xj-mega {
    position: static;
    display: none;
    width: auto;
    height: auto;
    margin: 0 -4%;
    padding: 0 4%;
    color: #555;
    background: #f6f7f8;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .xj-nav__item.sub-open .xj-mega { display: block; }
  .xj-mega__inner { width: 100%; display: block; }
  .xj-mega__heading { display: none; }
  .xj-mega__links { display: block; }
  .xj-mega__links li { width: 100%; }
  .xj-mega__links a { min-height: 42px; display: block; padding: 10px 12px; color: #666; text-align: left; border: 0; }
  .xj-mega__links a:hover { color: #fff; background: var(--xj-navy); }
  .xj-mega__icon { display: none; }
  .xj-home-hero { height: 59vh; min-height: 450px; }
  .xj-hero-copy h1 { font-size: 34px; }
  .xj-hero-features { left: 3%; right: 3%; bottom: 24px; height: 88px; }
  .xj-feature-main { flex-basis: 190px; }
  .xj-feature-list li:nth-child(n+5) { display: none; }
  .xj-home-about { padding: 70px 0; }
  .xj-about-head { display: block; }
  .xj-about-tabs { width: 100%; margin-top: 30px; }
  .xj-about-panel.is-active { grid-template-columns: 1fr; }
  .xj-about-panel--gallery.is-active { display: block; }
  .xj-about-image { order: -1; height: 360px; }
  .xj-about-image img { min-height: 0; height: 100%; }
  .xj-about-copy { padding-right: 0; }
  .xj-product-tabs { grid-template-columns: repeat(2, 1fr); }
  .xj-case-section { margin-top: 90px; }
  .xj-news-section { grid-template-columns: 1fr; }
  .xj-news-side { order: -1; align-items: flex-start; padding: 0 0 35px; }
  .xj-news-side .xj-title { text-align: left; }
  .xj-news-arrows { display: none; }
  .xj-inner-bar__inner { display: block; padding-top: 30px; }
  .xj-inner-title { min-height: 55px; padding: 0; }
  .xj-inner-categories { min-height: 85px; }
  .xj-product-grid { grid-template-columns: repeat(2, 1fr); }
  .xj-case-grid-list { grid-template-columns: repeat(3, 1fr); }
  .xj-generic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .xj-wide { width: 92%; }
  .xj-title h2 { font-size: 30px; }
  .xj-title span { font-size: 12px; }
  .xj-arrow { width: 46px; height: 46px; }
  .xj-home-hero { min-height: 0; height: 59vh; }
  .xj-hero-media { object-fit: cover; }
  .xj-hero-copy { top: 40%; }
  .xj-hero-copy h1 { font-size: 25px; }
  .xj-hero-copy p { display: none; }
  .xj-hero-copy::after { width: 70%; margin-top: 22px; }
  .xj-hero-nav { width: 34px; height: 56px; }
  .xj-hero-features { display: none; }
  .xj-home-about { padding: 50px 0 40px; }
  .xj-about-head { margin-bottom: 28px; }
  .xj-about-tabs li { flex-basis: 33.333%; min-width: 100px; }
  .xj-about-tab { min-height: 48px; padding: 8px; font-size: 12px; }
  .xj-about-image { height: 260px; }
  .xj-about-copy h3 { font-size: 21px; }
  .xj-about-copy__text { max-height: 260px; padding-right: 12px; font-size: 14px; }
  .xj-about-gallery-wrap { padding: 4px 38px 20px; }
  .xj-about-gallery-card img { aspect-ratio: 366 / 275; }
  .xj-about-gallery-arrows .xj-arrow { width: 38px; height: 38px; }
  .xj-product-section { padding-top: 52px; }
  .xj-product-tabs { gap: 1px; margin: 30px 0; }
  .xj-product-tab { height: 58px; text-align: center; }
  .xj-product-tab::after { display: none; }
  .xj-product-card__media { height: 280px; }
  .xj-product-card__body { min-height: 135px; padding: 22px 10%; }
  .xj-product-panel { padding-bottom: 62px; }
  .xj-case-section { margin-top: 55px; padding: 35px 0 80px; }
  .xj-case-section .xj-title { margin-bottom: 30px; }
  .xj-case-card { aspect-ratio: 420 / 613; }
  .xj-case-card span { bottom: 18px; font-size: 15px; }
  .xj-case-arrows { display: none; }
  .xj-application-section { padding: 90px 0 65px; }
  .xj-application-section .xj-title { margin-bottom: 30px; }
  .xj-application-title h2 { font-size: 30px; }
  .xj-application-title span { margin-top: 10px; font-size: 16px; }
  .xj-application-card__name { min-height: 68px; font-size: 15px; }
  .xj-application-arrows { display: none; }
  .xj-news-section { padding-bottom: 65px; }
  .xj-news-card__media { height: 260px; }
  .xj-news-card__body { min-height: 210px; padding: 22px 18px; }
  .xj-news-card p { height: 80px; font-size: 13px; }
  .xj-contact-strip { padding: 58px 0 52px; }
  .xj-contact-heading { margin-bottom: 24px; }
  .xj-contact-heading strong { font-size: 34px; }
  .xj-contact-heading h2 { font-size: 26px; }
  .xj-contact-content { grid-template-columns: 1fr; gap: 34px; }
  .xj-contact-content > .person-contact-box { grid-column: 1; grid-row: 1; }
  .xj-contact-content > .eva-box { grid-column: 1; grid-row: 2; }
  .xj-contact-content .person { font-size: 14px; line-height: 2; }
  .xj-contact-content .ewm_box img { width: min(140px, 100%); height: auto; aspect-ratio: 1; }
  .xj-contact-content .ewm_box p { margin-top: 12px; font-size: 12px; white-space: normal; }
  .xj-inner-bar__inner { min-height: 160px; }
  .xj-inner-title h1,
  .xj-inner-title strong { font-size: 23px; }
  .xj-inner-categories li { flex: 0 0 auto; min-width: auto; }
  .xj-inner-categories a { padding-inline: 15px; white-space: nowrap; }
  .xj-inner-categories li.is-active::after { display: none; }
  .xj-list-main { padding: 34px 0 60px; }
  .xj-product-grid { grid-template-columns: 1fr; }
  .xj-list-product__media { height: 300px; }
  .xj-case-grid-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .xj-list-case::after { opacity: .34; }
  .xj-list-case h2 { font-size: 12px; opacity: 1; transform: translateY(-50%); }
  .xj-list-news a { grid-template-columns: 74px 1fr; gap: 14px; min-height: 130px; }
  .xj-list-news__date strong { font-size: 34px; }
  .xj-list-news__media { display: none; }
  .xj-list-news__text h2 { font-size: 16px; }
  .xj-list-news__text p { display: none; }
  .xj-document-list { width: 94%; padding: 18px 16px 4px; }
  .xj-document-item { grid-template-columns: 1fr; gap: 0; padding-bottom: 26px; margin-bottom: 26px; }
  .xj-document-item__media { width: 100%; height: auto; aspect-ratio: 300 / 194; }
  .xj-document-item__body { padding: 18px 0 0; }
  .xj-document-item__meta { gap: 0 15px; font-size: 12px; }
  .xj-document-item__body h2 { margin-top: 9px; font-size: 17px; }
  .xj-document-item__body p { font-size: 13px; }
  .xj-document-item__download { position: static; margin-top: 16px; }
  .xj-generic-grid { grid-template-columns: 1fr; }
  .xj-detail-main { padding: 35px 0 65px; }
  .xj-detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .xj-detail-gallery img { height: 130px; }
  .xj-detail-fields { grid-template-columns: 1fr; }
  .xj-detail-field { grid-template-columns: 110px 1fr; }
  .xj-detail-control { grid-template-columns: 1fr; }
  .xj-detail-control a:last-child { text-align: left; }
  .xj-document-detail__download { margin-top: 28px; padding-top: 22px; }
  .xj-document-detail__download h2 { font-size: 19px; }
  .xj-document-detail__download li { align-items: flex-start; flex-direction: column; gap: 11px; }
  .xj-document-detail__download li a { padding: 9px 18px; }
  .xj-footer { padding-top: 25px; }
  .xj-footer__nav { padding-bottom: 30px; }
  .xj-footer__nav ul { flex-wrap: wrap; }
  .xj-footer__nav li { flex: 0 0 50%; padding: 6px; }
  .xj-footer__base { min-height: 60px; }
  .xj-footer__base a { display: block; margin: 3px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal { opacity: 1 !important; transform: none !important; }
}

/* “关于我们”专用页面：依据原站离线源码恢复栏目布局 */
.xj-about-page .xj-about-bar .xj-inner-categories li::after { border-bottom-color: #fff; }
.xj-about-page .xj-about-bar .xj-inner-categories li { flex-basis: 120px; }
.xj-about-document { overflow: hidden; background: #fff; }
.xj-about-source { color: #333; font-size: 15px; line-height: 2; overflow-wrap: anywhere; }
.xj-about-source .w1680,
.xj-about-source .about-in { width: 92.5%; max-width: 1680px; margin-inline: auto; }
.xj-about-source .clearfix::after { content: ""; display: table; clear: both; }
.xj-about-source .about-top {
  padding: 72px 0 92px;
  background: linear-gradient(135deg, #f8fafb 0%, #fff 42%, #eef3f6 100%);
}
.xj-about-source .about-in { display: flex; align-items: flex-start; }
.xj-about-source .about-in-other { padding-top: 78px; padding-bottom: 78px; }
.xj-about-source .about-l-doc { width: 50%; margin-top: 18px; padding-right: 4.5%; }
.xj-about-source .about-r-box { width: 50%; }
.xj-about-source .about-l-doc h4 { margin: 0 0 18px; color: #010938; font-size: clamp(27px, 2vw, 41px); line-height: 1.35; }
.xj-about-source .about-l-doc h5 { margin: 0 0 28px; color: #0075c2; font-size: clamp(21px, 1.4vw, 29px); line-height: 1.45; }
.xj-about-source .about-l-doc h6 { margin: 0; color: #333; font-size: clamp(18px, 1.15vw, 23px); line-height: 1.45; }
.xj-about-source .maybe-doc-edit { margin-top: 12px; color: #333; font-size: 15px; line-height: 2; }
.xj-about-source .maybe-doc-edit p { margin: 0 0 16px; }
.xj-about-source img { max-width: 100%; height: auto; }
.xj-about-source .about-r-box > img { display: block; width: 100%; margin: 0; object-fit: contain; }
.xj-about-source .about-mid-box { border-bottom: 1px solid #c6d0dc; }
.xj-about-source .about-mid-box.noborder { border-bottom: 0; }
.xj-about-source .about-r-case { align-self: center; }
.xj-about-source .about-case-ul { display: flex; justify-content: center; gap: 4.5%; text-align: center; }
.xj-about-source .about-case-ul + .about-case-ul { margin-top: 28px; }
.xj-about-source .about-case-ul a { width: 28%; max-width: 190px; margin: 0; }
.xj-about-source .about-case-ul img { display: block; width: 100%; margin: 0; }
.xj-about-source .about-case-ul2 { justify-content: space-around; padding-inline: 12%; }
.xj-about-source .about-case-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.xj-about-source .about-case-list::after { display: none; }
.xj-about-source .about-case-list a { width: auto; height: auto; aspect-ratio: 1.45 / 1; margin: 0; background-position: center; background-size: cover; }
.xj-about-source .about_news { position: relative; width: 100%; margin-top: 30px; padding: 52px 58px; background: #f3f3f3; }
.xj-about-source .about_news .swiper-wrapper { display: block; }
.xj-about-source .about_news .swiper-slide { display: none; }
.xj-about-source .about_news .swiper-slide:first-child { display: block; }
.xj-about-source .about_news h5 { margin: 0; padding-bottom: 13px; color: #333; font-size: 20px; line-height: 1.5; }
.xj-about-source .about_news .cont_txt { height: 64px; margin-top: 24px; overflow: hidden; color: #999; line-height: 32px; }
.xj-about-source .about_news .time { width: 163px; height: 30px; margin-top: 24px; color: #999; background: #fff; border-radius: 15px; line-height: 30px; text-align: center; }
.xj-about-source script { display: none; }
.xj-about-simple { display: grid; grid-template-columns: 1fr 1fr; gap: 7%; align-items: center; padding-block: 80px; }
.xj-about-simple h2 { color: #010938; font-size: 36px; }
.xj-about-simple p { line-height: 2; }
.xj-about-simple img { width: 100%; max-height: 650px; object-fit: contain; }

.xj-about-grid-main { padding: 64px 0 100px; background: #fff; }
.xj-about-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px 30px; }
.xj-about-grid article { min-width: 0; }
.xj-about-grid a { display: block; }
.xj-about-grid__media { aspect-ratio: 366 / 275; overflow: hidden; background: #f0f2f4; border-radius: 12px; transition: border-radius .3s ease, box-shadow .3s ease; }
.xj-about-grid__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.xj-about-grid h2 { height: 60px; margin: 0; overflow: hidden; color: #333; font-size: 16px; font-weight: 400; line-height: 60px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.xj-about-grid a:hover .xj-about-grid__media { border-radius: 0; box-shadow: 6px 0 27px rgba(4,0,0,.3); }
.xj-about-grid a:hover img { transform: scale(1.025); }

.xj-about-news-main { padding: 64px 0 100px; background: #eee; }
.xj-about-news-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 5%; align-items: start; }
.xj-about-news-list { min-width: 0; background: #fff; }
.xj-about-news-item { border-bottom: 1px solid #e1e3e5; }
.xj-about-news-item a { display: grid; grid-template-columns: 122px minmax(0, 1fr) 210px; gap: 28px; align-items: center; min-height: 158px; padding: 24px 30px; }
.xj-about-news-item time { display: flex; align-items: center; color: #010938; }
.xj-about-news-item time strong { font-size: 48px; font-weight: 300; line-height: 1; }
.xj-about-news-item time span { margin-left: 12px; padding-left: 12px; color: #8a929b; font-size: 12px; line-height: 1.5; border-left: 1px solid #bbc1c7; }
.xj-about-news-item h2 { margin: 0; color: #333; font-size: 19px; font-weight: 500; line-height: 1.5; }
.xj-about-news-item p { display: -webkit-box; margin: 9px 0 0; overflow: hidden; color: #888; font-size: 14px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.xj-about-news-item img { width: 210px; height: 105px; object-fit: cover; }
.xj-about-news-item a:hover h2 { color: #0075c2; }
.xj-about-news-side { padding: 42px 34px; color: #fff; background: linear-gradient(135deg, #010938, #0075c2); }
.xj-about-news-side h2 { margin: 0; font-size: 28px; font-weight: 500; }
.xj-about-news-side p { margin: 12px 0 0; color: rgba(255,255,255,.72); line-height: 1.8; }

.xj-about-detail { padding: 70px 0 100px; background: #fff; }
.xj-about-detail__inner { max-width: 1420px; }
.xj-about-detail__head { margin-bottom: 46px; text-align: center; }
.xj-about-detail__head h1 { margin: 0; color: #333; font-size: clamp(26px, 2.2vw, 38px); font-weight: 500; line-height: 1.45; }
.xj-about-detail__head time { display: block; margin-top: 16px; color: #999; font-size: 13px; }
.xj-about-detail__content { width: 100%; }
.xj-about-detail__content > :first-child { margin-top: 0; }
.xj-about-detail__content > :last-child { margin-bottom: 0; }
.xj-about-detail__content > p { line-height: 2; }
.xj-about-detail__content > p > img,
.xj-about-detail__content center img { display: inline-block; width: auto; max-width: 100%; height: auto !important; margin: 12px auto; object-fit: contain; }
.xj-about-detail__cover { margin: 0; text-align: center; }
.xj-about-detail__cover img { width: auto; max-width: 100%; height: auto; max-height: none; object-fit: contain; }
.xj-about-detail__gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.xj-about-detail__gallery img { display: block; width: 100%; height: 260px; object-fit: contain; background: #f3f3f3; }
.xj-about-detail__control { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; padding-top: 28px; color: #777; border-top: 1px solid #d8dadd; }
.xj-about-detail__control > div:last-child { text-align: right; }
.xj-about-detail__control a { color: #555; }
.xj-about-detail__control a:hover { color: #0075c2; }

@media (max-width: 1100px) {
  .xj-about-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xj-about-news-layout { grid-template-columns: 1fr; }
  .xj-about-news-side { display: none; }
}

@media (max-width: 768px) {
  .xj-about-source .about-top { padding: 45px 0 20px; background: #fff; }
  .xj-about-source .about-in { display: block; }
  .xj-about-source .about-in-other { padding-top: 45px; padding-bottom: 45px; }
  .xj-about-source .about-l-doc,
  .xj-about-source .about-r-box { width: 100%; padding-right: 0; }
  .xj-about-source .about-r-box { margin-top: 24px; }
  .xj-about-source .about-l-doc h4 { font-size: 24px; }
  .xj-about-source .about-l-doc h5 { margin-bottom: 18px; font-size: 19px; }
  .xj-about-source .about-l-doc h6 { font-size: 17px; }
  .xj-about-source .about-case-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xj-about-source .about_news { padding: 34px 24px; }
  .xj-about-simple { grid-template-columns: 1fr; padding-block: 50px; }
  .xj-about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .xj-about-grid h2 { height: 48px; font-size: 14px; line-height: 48px; }
  .xj-about-news-item a { grid-template-columns: 92px minmax(0, 1fr); gap: 18px; padding: 22px 18px; }
  .xj-about-news-item img { display: none; }
  .xj-about-news-item time strong { font-size: 38px; }
  .xj-about-news-item p { display: none; }
  .xj-about-detail { padding: 48px 0 70px; }
  .xj-about-detail__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xj-about-detail__gallery img { height: 180px; }
}

@media (max-width: 480px) {
  .xj-about-source .w1680,
  .xj-about-source .about-in { width: 92%; }
  .xj-about-grid-main,
  .xj-about-news-main { padding: 38px 0 64px; }
  .xj-about-grid { grid-template-columns: 1fr; }
  .xj-about-news-item a { grid-template-columns: 72px minmax(0, 1fr); gap: 12px; }
  .xj-about-news-item time strong { font-size: 31px; }
  .xj-about-news-item time span { margin-left: 7px; padding-left: 7px; }
  .xj-about-news-item h2 { font-size: 16px; }
  .xj-about-detail__gallery { grid-template-columns: 1fr; }
  .xj-about-detail__control { grid-template-columns: 1fr; }
  .xj-about-detail__control > div:last-child { text-align: left; }
}

/* 新闻资讯专用页面：复刻原站头条、日期列表、热门资讯与详情卡片 */
.xj-news-page .xj-news-bar .xj-inner-categories { justify-content: flex-end; }
.xj-news-page .xj-news-bar .xj-inner-categories li { flex: 0 1 260px; }
.xj-news-page .xj-news-bar .xj-inner-categories li::after { border-bottom-color: #eee; }
.xj-news-list-main { padding: 64px 0 100px; background: #eee; }
.xj-news-layout { display: grid; grid-template-columns: minmax(0, 61fr) minmax(300px, 38fr); gap: 1%; align-items: start; }
.xj-news-primary { min-width: 0; }
.xj-news-featured { margin-bottom: 25px; padding: 42px; background: #fff; }
.xj-news-featured a { display: block; }
.xj-news-featured__media { aspect-ratio: 704 / 360; overflow: hidden; background: #e6e9ec; }
.xj-news-featured__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.xj-news-featured__body { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px; align-items: center; margin-top: 25px; }
.xj-news-featured__body strong { color: #0075c2; font-size: clamp(19px, 1.6vw, 27px); white-space: nowrap; }
.xj-news-featured__body h2 { margin: 0; overflow: hidden; color: #333; font-size: clamp(19px, 1.6vw, 27px); line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.xj-news-featured__body time { color: #333; font-size: 14px; white-space: nowrap; }
.xj-news-featured a:hover img { transform: scale(1.025); }
.xj-news-featured a:hover h2 { color: #0075c2; }

.xj-news-rows { padding: 60px 42px 42px; background: #fff; }
.xj-news-row a { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 36px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #e5e5e5; }
.xj-news-row time { position: relative; width: 96px; height: 96px; display: block; overflow: hidden; color: #fff; background: linear-gradient(135deg, #010938 0 55%, #0075c2 55% 100%); transition: background .25s ease; }
.xj-news-row time::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.xj-news-row time strong { position: absolute; left: 8px; top: 3px; font-size: 43px; font-weight: 300; line-height: 1.25; }
.xj-news-row time span { position: absolute; right: 6px; bottom: 5px; display: flex; flex-direction: column; font-size: 16px; line-height: 1.25; text-align: center; }
.xj-news-row time b { font-size: 12px; font-weight: 400; }
.xj-news-row h2 { display: -webkit-box; margin: 10px 0 0; overflow: hidden; color: #333; font-size: 21px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.xj-news-row p { display: -webkit-box; margin: 14px 0 0; overflow: hidden; color: #555; font-size: 15px; line-height: 1.8; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.xj-news-row a:hover time { background: linear-gradient(135deg, #0075c2 0 55%, #010938 55% 100%); }
.xj-news-row a:hover h2 { color: #0075c2; }

.xj-news-hot { min-width: 0; background: #fff; }
.xj-news-hot > h2 { margin: 0 0 1px; padding: 40px; color: #0075c2; background: #fff; font-size: 25px; line-height: 1.4; }
.xj-news-hot ol { margin: 0; padding: 40px; list-style: none; background: #fff; }
.xj-news-hot li { margin-bottom: 27px; padding-bottom: 27px; border-bottom: 1px dashed #e5e5e5; }
.xj-news-hot li:last-child { margin-bottom: 0; }
.xj-news-hot a { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 20px; align-items: start; }
.xj-news-hot a span { width: 24px; height: 24px; color: #fff; background: #010938; line-height: 24px; text-align: center; }
.xj-news-hot a strong { overflow: hidden; color: #333; font-size: 15px; font-weight: 400; line-height: 24px; text-overflow: ellipsis; white-space: nowrap; }
.xj-news-hot a:hover strong { color: #0075c2; }
.xj-news-hot a:hover span { background: #0075c2; }

.xj-news-detail-main { padding: 64px 0 100px; background: #eee; }
.xj-news-detail-card { max-width: 1680px; padding: 50px 80px 64px; background: #fff; }
.xj-news-detail-head { padding-bottom: 24px; border-bottom: 1px solid #eee; }
.xj-news-detail-head h1 { margin: 0; color: #010938; font-size: clamp(25px, 2vw, 30px); font-weight: 700; line-height: 1.65; }
.xj-news-detail-head > div { display: flex; gap: 68px; margin-top: 20px; color: #555; font-size: 14px; }
.xj-news-detail-content { padding: 30px 0 66px; color: #333; font-size: 14px; line-height: 2.15; border-bottom: 1px solid #eee; overflow-wrap: anywhere; }
.xj-news-detail-content p { margin: 0 0 17px; }
.xj-news-detail-content figure { margin: 25px 0; text-align: center; }
.xj-news-detail-content img { display: block; width: auto; max-width: 100%; height: auto !important; margin: 25px auto; object-fit: contain; }
.xj-news-detail-content table { width: 100%; max-width: 100%; border-collapse: collapse; }
.xj-news-detail-content th,
.xj-news-detail-content td { padding: 9px; border: 1px solid #ddd; }
.xj-news-detail-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding-top: 38px; }
.xj-news-detail-gallery img { display: block; width: 100%; height: 260px; object-fit: contain; background: #f3f3f3; }
.xj-news-detail-control { display: flex; justify-content: space-between; gap: 24px; padding-top: 42px; }
.xj-news-detail-control > div { max-width: 46%; height: 45px; padding: 0 22px; overflow: hidden; color: #666; border: 1px solid #bfbfbf; border-radius: 23px; font-size: 14px; line-height: 43px; text-overflow: ellipsis; white-space: nowrap; }
.xj-news-detail-control > div:last-child { border-color: #e7e7e7; }
.xj-news-detail-control a:hover { color: #0075c2; }

@media (max-width: 1100px) {
  .xj-news-layout { grid-template-columns: minmax(0, 1fr) 310px; gap: 20px; }
  .xj-news-featured,
  .xj-news-rows { padding-inline: 28px; }
  .xj-news-hot > h2,
  .xj-news-hot ol { padding-inline: 26px; }
  .xj-news-featured__body { grid-template-columns: auto minmax(0, 1fr); }
  .xj-news-featured__body time { grid-column: 2; }
}

@media (max-width: 800px) {
  .xj-news-page .xj-news-bar .xj-inner-categories { min-height: 70px; justify-content: flex-start; }
  .xj-news-page .xj-news-bar .xj-inner-categories li { flex: 0 0 auto; }
  .xj-news-layout { grid-template-columns: 1fr; }
  .xj-news-hot { display: none; }
  .xj-news-list-main,
  .xj-news-detail-main { padding: 38px 0 65px; }
  .xj-news-detail-card { padding: 36px 28px 48px; }
}

@media (max-width: 560px) {
  .xj-news-featured { margin-bottom: 16px; padding: 12px; }
  .xj-news-featured__body { grid-template-columns: auto minmax(0, 1fr); gap: 8px; margin-top: 12px; }
  .xj-news-featured__body strong,
  .xj-news-featured__body h2 { font-size: 15px; }
  .xj-news-featured__body time { grid-column: 1 / -1; font-size: 12px; text-align: right; }
  .xj-news-rows { padding: 30px 16px 28px; }
  .xj-news-row a { grid-template-columns: 70px minmax(0, 1fr); gap: 14px; margin-bottom: 20px; padding-bottom: 20px; }
  .xj-news-row time { width: 70px; height: 70px; }
  .xj-news-row time strong { font-size: 27px; }
  .xj-news-row time span { font-size: 12px; }
  .xj-news-row time b { font-size: 10px; }
  .xj-news-row h2 { margin-top: 2px; font-size: 16px; -webkit-line-clamp: 2; }
  .xj-news-row p { margin-top: 6px; font-size: 12px; }
  .xj-news-detail-card { width: 94%; padding: 28px 16px 36px; }
  .xj-news-detail-head h1 { font-size: 21px; }
  .xj-news-detail-head > div { display: block; margin-top: 12px; font-size: 13px; }
  .xj-news-detail-head > div span { display: block; margin-top: 4px; }
  .xj-news-detail-content { padding: 20px 0 36px; line-height: 1.9; }
  .xj-news-detail-gallery { grid-template-columns: 1fr; }
  .xj-news-detail-control { display: block; padding-top: 28px; }
  .xj-news-detail-control > div { max-width: 100%; margin-top: 10px; }
}

/* 加入我们专用页面：联系方式、留言界面与招聘列表 */
.xj-join-page .xj-join-bar .xj-inner-categories { justify-content: flex-end; }
.xj-join-page .xj-join-bar .xj-inner-categories li { flex: 0 1 230px; }
.xj-join-page .xj-join-bar .xj-inner-categories li::after { border-bottom-color: #eee; }
.xj-join-contact-main { padding-bottom: 90px; background: #eee; overflow: hidden; }
.xj-join-contact-source { color: #333; font-size: 16px; line-height: 2; }
.xj-join-contact-source ul { margin: 0; padding: 0; list-style: none; }
.xj-join-contact-source .eva-box { padding: 70px 4%; background: #fff; }
.xj-join-contact-source .ewm_box ul { display: flex; justify-content: center; gap: 64px; text-align: center; }
.xj-join-contact-source .ewm_box li { margin: 0; }
.xj-join-contact-source .ewm_box img { display: block; width: 180px; height: 180px; margin: 0 auto; object-fit: contain; }
.xj-join-contact-source .ewm_box p { margin: 0; font-size: 16px; line-height: 42px; }
.xj-join-contact-source .person-contact-box { width: 92.5%; max-width: 1680px; margin: 70px auto 0; }
.xj-join-contact-source .person-item { display: grid; grid-template-columns: 40% minmax(0, 1fr); margin: 0; padding: 55px 90px 70px; background: #fff; }
.xj-join-contact-source .l-address { width: auto; }
.xj-join-contact-source .l-address h1 { margin: 0; color: #010938; font-size: 24px; line-height: 1.5; }
.xj-join-contact-source .l-address h2 { display: none; }
.xj-join-contact-source .l-address img { display: block; width: 100%; max-width: 474px; height: auto; margin-top: 20px; object-fit: contain; }
.xj-join-contact-source .person { padding: 70px 0 0 70px; }
.xj-join-contact-source .person p { margin: 0; color: #333; font-size: 17px; line-height: 2.35; }
.xj-join-contact-source .map-wrap { display: none; }
.xj-join-contact-source img { max-width: 100%; }

.xj-join-message-main { min-height: 650px; padding: 75px 0 100px; background: #fff; }
.xj-join-message { width: 60%; max-width: 1000px; margin: 0 auto; text-align: center; }
.xj-join-message > p { margin: 0 0 65px; color: #333; }
.xj-join-message__row { display: grid; grid-template-columns: 140px minmax(0, 1fr); align-items: start; margin-bottom: 36px; text-align: left; }
.xj-join-message__row label { color: #333; font-size: 18px; font-weight: 700; }
.xj-join-message__row input { height: 42px; padding: 0 10px; color: #666; background: #fff; border: 0; border-bottom: 1px solid #dcdcdc; }
.xj-join-message__row textarea { width: 100%; height: 250px; padding: 12px; resize: none; background: #fff; border: 1px solid #dcdcdc; }
.xj-join-message button { width: 250px; height: 70px; color: #fff; background: linear-gradient(to bottom, #04478a, #0066af); border: 0; font-weight: 700; cursor: not-allowed; opacity: .75; }
.xj-join-message small { display: block; margin-top: 16px; color: #999; }

.xj-join-jobs-main { padding: 70px 0 100px; background: #eee; }
.xj-join-jobs { padding: 75px 100px 55px; background: #fff; }
.xj-join-job-list { margin: 0; padding: 0; }
.xj-join-job { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid #e5e5e5; }
.xj-join-job:last-child { margin-bottom: 0; }
.xj-join-job__media { aspect-ratio: 300 / 194; overflow: hidden; background: #eef1f3; }
.xj-join-job__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.xj-join-job__body { position: relative; min-width: 0; padding-right: 190px; }
.xj-join-job__body p { margin: 13px 0 17px; color: #999; font-size: 14px; }
.xj-join-job__body h2 { margin: 0; overflow: hidden; color: #333; font-size: 24px; font-weight: 500; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }
.xj-join-job__summary { display: -webkit-box; margin-top: 16px; overflow: hidden; color: #999; font-size: 16px; line-height: 2; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.xj-join-job__body > a { position: absolute; right: 0; top: 0; width: 160px; height: 45px; color: #fff; background: #313131; font-size: 16px; line-height: 45px; text-align: center; transition: background .25s ease; }
.xj-join-job:hover .xj-join-job__media img { transform: scale(1.035); }
.xj-join-job__body > a:hover { background: #0075c2; }

.xj-join-detail-main { padding: 64px 0 100px; background: #eee; }
.xj-join-detail-card { padding: 50px 80px 64px; background: #fff; }
.xj-join-detail-head { padding-bottom: 24px; border-bottom: 1px solid #eee; }
.xj-join-detail-head h1 { margin: 0; color: #010938; font-size: clamp(25px, 2vw, 30px); line-height: 1.6; }
.xj-join-detail-head time { display: block; margin-top: 18px; color: #777; font-size: 14px; }
.xj-join-detail-content { padding: 30px 0 60px; color: #333; font-size: 16px; line-height: 2; border-bottom: 1px solid #eee; overflow-wrap: anywhere; }
.xj-join-detail-content p { margin: 0 0 14px; }
.xj-join-detail-content img { display: block; width: auto; max-width: 100%; height: auto !important; margin: 24px auto; object-fit: contain; }
.xj-join-detail-control { display: flex; justify-content: space-between; gap: 24px; padding-top: 42px; }
.xj-join-detail-control > div { max-width: 46%; height: 45px; padding: 0 22px; overflow: hidden; color: #666; border: 1px solid #bfbfbf; border-radius: 23px; font-size: 14px; line-height: 43px; text-overflow: ellipsis; white-space: nowrap; }
.xj-join-detail-control a:hover { color: #0075c2; }

@media (max-width: 1000px) {
  .xj-join-contact-source .person-item { padding-inline: 55px; }
  .xj-join-contact-source .person { padding-left: 45px; }
  .xj-join-jobs { padding-inline: 55px; }
  .xj-join-job { grid-template-columns: 250px minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 768px) {
  .xj-join-page .xj-join-bar .xj-inner-categories { min-height: 70px; justify-content: flex-start; }
  .xj-join-page .xj-join-bar .xj-inner-categories li { flex: 0 0 auto; }
  .xj-join-contact-source .eva-box { padding-block: 45px; }
  .xj-join-contact-source .ewm_box ul { flex-wrap: wrap; gap: 24px 3%; }
  .xj-join-contact-source .ewm_box li { width: 47%; }
  .xj-join-contact-source .ewm_box img { width: min(180px, 100%); height: auto; aspect-ratio: 1; }
  .xj-join-contact-source .person-contact-box { margin-top: 45px; }
  .xj-join-contact-source .person-item { display: block; padding: 35px 28px 45px; }
  .xj-join-contact-source .person { padding: 35px 0 0; }
  .xj-join-message { width: 90%; }
  .xj-join-message__row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .xj-join-message > p { margin-bottom: 40px; text-align: left; }
  .xj-join-jobs-main,
  .xj-join-detail-main { padding: 40px 0 70px; }
  .xj-join-jobs { padding: 40px 28px; }
  .xj-join-job { grid-template-columns: 1fr; gap: 0; margin-bottom: 38px; padding-bottom: 38px; }
  .xj-join-job__body { padding-right: 0; }
  .xj-join-job__body h2 { white-space: normal; }
  .xj-join-job__body > a { position: static; display: block; width: 130px; height: 40px; margin-top: 20px; font-size: 14px; line-height: 40px; }
  .xj-join-detail-card { padding: 36px 28px 48px; }
}

@media (max-width: 500px) {
  .xj-join-contact-source .ewm_box p { font-size: 13px; }
  .xj-join-contact-source .person-item { padding-inline: 18px; }
  .xj-join-contact-source .l-address h1 { font-size: 20px; }
  .xj-join-contact-source .person p { font-size: 14px; line-height: 2; overflow-wrap: anywhere; }
  .xj-join-message-main { padding: 50px 0 70px; }
  .xj-join-message__row textarea { height: 180px; }
  .xj-join-message button { width: 180px; height: 52px; }
  .xj-join-jobs { padding-inline: 18px; }
  .xj-join-detail-card { width: 94%; padding: 28px 16px 36px; }
  .xj-join-detail-head h1 { font-size: 22px; }
  .xj-join-detail-content { font-size: 14px; }
  .xj-join-detail-control { display: block; padding-top: 26px; }
  .xj-join-detail-control > div { max-width: 100%; margin-top: 10px; }
}
