body .site-main.cr {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.cr {
  --blue: #1a6fb5;
  --dark: #2b2b2b;
  --gray: #555;
  --light: #f5f5f5;
  width: 100%;
  font-family: "Montserrat", "Microsoft YaHei", sans-serif;
  color: var(--gray);
  line-height: 1.8;
}

.cr *,
.cr *::before,
.cr *::after {
  box-sizing: border-box;
}

.cr img {
  max-width: 100%;
  display: block;
}

.cr-wrap {
  width: 100%;
  padding: 0 5%;
}

.cr-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

.cr-hero-slider {
  height: 100vh;
  min-height: 480px;
}

.cr-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.cr-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.cr-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  z-index: 1;
}

.cr-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.cr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cr-slider-prev,
.cr-slider-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cr-slider-prev:hover,
.cr-slider-next:hover {
  background: rgba(255, 255, 255, 0.55);
}

.cr-slider-prev {
  left: 16px;
}

.cr-slider-next {
  right: 16px;
}

.cr-slider-dots {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-slider-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.cr-slider-dots li.is-active button {
  background: #fff;
}

.cr-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.cr-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 48px 5% 56px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.cr-cap span {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.cr-cap h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.3;
}

.cr-cap p {
  font-size: clamp(14px, 1.5vw, 18px);
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.cr-sec {
  padding: 64px 0;
}

.cr-sec.cr-gray {
  background: var(--light);
  padding-bottom: 0;
}

.cr-sec h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 48px;
}

.cr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}

.cr-item {
  text-align: center;
}

.cr-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 20px;
  line-height: 1.4;
}

.cr-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cr-item p {
  font-size: 14px;
  text-align: left;
  margin: 0 0 12px;
}

.cr-item p:last-child {
  margin-bottom: 0;
}

.cr-item strong {
  color: var(--blue);
}

.cr-sec.cr-gray.cr-sec-prods {
  padding-bottom: 80px;
}

.cr-sec-prods .cr-wrap h2 {
  margin-bottom: 40px;
}

.cr-prods {
  display: flex;
  width: 100%;
  min-height: 720px;
  margin-bottom: 48px;
  overflow: hidden;
}

.cr-prod {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.cr-prods:hover .cr-prod:not(:hover) {
  flex: 1 1 0;
}

.cr-prods .cr-prod:hover {
  flex: 0 0 min(800px, 50%);
  max-width: 800px;
}

.cr-prod-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  transform: scale(1);
  transition: transform 0.55s ease;
}

.cr-prod:hover .cr-prod-bg {
  transform: scale(1.04);
}

.cr-prod-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  transition: background 0.45s ease;
}

.cr-prod:hover .cr-prod-shade {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.cr-prod-in {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 18px;
  color: #fff;
  text-align: center;
  pointer-events: none;
  transition: padding 0.45s ease;
}

.cr-prod:hover .cr-prod-in {
  padding-top: 48px;
}

.cr-prod-in a {
  pointer-events: auto;
}

.cr-prod-in h3 {
  margin: 0 0 16px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.cr-prod-in h3 span {
  display: block;
  margin-top: 8px;
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
}

.cr-prod-in > a {
  display: inline-block;
  padding: 10px 24px;
  background: var(--blue);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.cr-prod-in > a:hover {
  background: #0d4a7a;
}

.cr-prod-more {
  width: 100%;
  max-width: 520px;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
  color: rgba(255, 255, 255, 0.94) !important;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
}

.cr-prod-more p,
.cr-prod-more span,
.cr-prod-more div {
  color: rgba(255, 255, 255, 0.94) !important;
  margin: 0 0 10px;
}

.cr-prod:hover .cr-prod-more {
  max-height: 360px;
  max-width: 680px;
  margin-top: 20px;
  opacity: 1;
  overflow-y: auto;
  text-align: center;
}

.cr-factory {
  position: relative;
  padding: 80px 5%;
  text-align: center;
  color: #fff;
  background: var(--dark) url("/zh-hans/images/cr/image5.jpeg") center / cover no-repeat;
}

.cr-factory::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cr-factory > * {
  position: relative;
  z-index: 1;
}

.cr-factory h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #fff;
}

.cr-sub {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.8);
}

.cr-factory > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 auto 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

.cr-factory > p:last-child {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cr-factory strong {
  color: #fff;
}

/* C.R. 中国 — layout inspired by wdbearings.com sectionIdcy6j51o */
.cr-china {
  --cr-china-red: #c23b2e;
  --cr-china-card: #1d1d1d;
  position: relative;
  padding: 72px 0 96px;
  background: #fff;
  overflow: hidden;
}

.cr-china-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: var(--cr-china-red);
  z-index: 0;
}

.cr-china-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 3%;
  gap: 0;
}

.cr-china-card {
  flex: 0 0 36%;
  max-width: 560px;
  min-width: 360px;
  background: var(--cr-china-card);
  color: #fff;
  padding: 48px 40px 44px;
  margin-top: 48px;
  margin-right: -72px;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cr-china-card h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-align: left;
}

.cr-china-line {
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--cr-china-red);
}

.cr-china-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.cr-china-card p.cr-china-lead {
  margin-top: 4px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #fff;
}

.cr-china-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-china-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
}

.cr-china-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--cr-china-red);
  border-bottom: 3px solid var(--cr-china-red);
  transform: rotate(-45deg);
}

.cr-china-media {
  flex: 1 1 auto;
  min-width: 0;
  z-index: 1;
}

.cr-china-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  background: #2a2a2a;
}

.cr-china-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.cr-china-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  z-index: 1;
}

.cr-china-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.cr-china-slide img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.cr-china-prev,
.cr-china-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cr-china-prev:hover,
.cr-china-next:hover {
  background: rgba(255, 255, 255, 0.55);
}

.cr-china-prev {
  left: 12px;
}

.cr-china-next {
  right: 12px;
}

.cr-china-dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cr-china-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.cr-china-dots li.is-active button {
  background: #fff;
}

.cr-foot {
  background: var(--light);
  padding: 56px 0;
}

.cr-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.cr-foot .cr-tel-extra {
  display: inline-block;
  padding-left: 3em;
}

.cr-foot h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cr-foot p {
  margin: 0 0 8px;
  font-size: 14px;
}

.cr-foot a {
  color: var(--blue);
  text-decoration: none;
}

.cr-foot a:hover {
  text-decoration: underline;
}

.cr-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-foot li {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .cr-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .cr-grid,
  .cr-cols {
    grid-template-columns: 1fr;
  }

  .cr-china {
    padding: 40px 0 64px;
  }

  .cr-china-band {
    height: 28%;
  }

  .cr-china-inner {
    flex-direction: column;
  }

  .cr-china-card {
    flex: none;
    max-width: none;
    width: 100%;
    margin: 0 0 -32px;
    padding: 36px 24px 32px;
  }

  .cr-china-media {
    order: -1;
  }

  .cr-china-slider,
  .cr-china-track,
  .cr-china-slide img {
    min-height: 280px;
  }

  .cr-prods {
    flex-direction: column;
    min-height: auto;
  }

  .cr-prod,
  .cr-prods:hover .cr-prod,
  .cr-prods .cr-prod:hover {
    flex: none;
    min-height: 420px;
  }

  .cr-prod-in,
  .cr-prod:hover .cr-prod-in {
    padding-top: 40px;
  }

  .cr-prod-more {
    max-height: none;
    opacity: 1;
    margin-top: 16px;
  }

  .cr-china {
    padding: 48px 0 64px;
  }

  .cr-china-band {
    height: 28%;
  }

  .cr-china-inner {
    flex-direction: column;
    padding: 0 4%;
  }

  .cr-china-card {
    flex: none;
    max-width: none;
    width: 100%;
    margin: 0 0 -28px;
    padding: 36px 24px 32px;
  }

  .cr-china-slider,
  .cr-china-track,
  .cr-china-slide img {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .cr-cap {
    padding: 32px 5% 40px;
  }

  .cr-sec {
    padding: 40px 0;
  }

  .cr-sec h2 {
    margin-bottom: 32px;
  }
}
