@media (min-width: 701px) {
  .chinee-home {
    --chinee-navy: #06336d;
    --chinee-navy-deep: #031b3b;
    --chinee-teal: #00bfb3;
    --chinee-carbon: #111820;
    --chinee-ink: #17212c;
    --chinee-muted: #647080;
    --chinee-cool: #eef2f5;
    --chinee-line: #d8e0e6;
    --chinee-white: #ffffff;
    color: var(--chinee-ink);
    background: var(--chinee-white);
    font-family: "Inter", Arial, sans-serif;
    overflow: clip;
  }

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

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

  .chinee-shell {
    width: min(1360px, calc(100% - 80px));
    margin-inline: auto;
  }

  .chinee-section {
    position: relative;
    padding: 112px 0;
  }

  .chinee-section-heading {
    margin-bottom: 48px;
  }

  .chinee-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
    align-items: end;
    gap: 72px;
  }

  .chinee-section-heading h2,
  .chinee-home h1 {
    margin: 0;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
  }

  .chinee-section-heading h2 {
    color: var(--chinee-navy-deep);
    font-size: 58px;
    line-height: 0.98;
    text-transform: uppercase;
  }

  .chinee-section-heading > p,
  .chinee-section-heading--center > p:last-child {
    max-width: 560px;
    margin: 0;
    color: var(--chinee-muted);
    font-size: 16px;
    line-height: 1.8;
  }

  .chinee-section-heading--light h2,
  .chinee-section-heading--light > p {
    color: var(--chinee-white);
  }

  .chinee-section-heading--light > p {
    color: rgba(255, 255, 255, 0.66);
  }

  .chinee-section-heading--center {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 58px;
    margin-left: auto;
    text-align: center;
  }

  .chinee-section-heading--center > p:last-child {
    margin: 20px auto 0;
  }

  .chinee-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--chinee-teal);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .chinee-eyebrow span {
    width: 34px;
    height: 2px;
    background: currentColor;
  }

  .chinee-eyebrow i {
    font-size: 19px;
    font-weight: 400;
  }

  .chinee-eyebrow--dark {
    color: var(--chinee-navy);
  }

  .chinee-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .chinee-button i {
    font-size: 18px;
    font-weight: 400;
  }

  .chinee-button:hover {
    transform: translateY(-2px);
  }

  .chinee-button--primary {
    color: #032b35;
    background: var(--chinee-teal);
  }

  .chinee-button--primary:hover {
    color: #031f25;
    background: #2ad0c5;
  }

  .chinee-button--outline {
    color: var(--chinee-white);
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(3, 27, 59, 0.16);
    backdrop-filter: blur(8px);
  }

  .chinee-button--outline:hover {
    color: var(--chinee-white);
    border-color: var(--chinee-white);
    background: rgba(3, 27, 59, 0.44);
  }

  .chinee-button--dark {
    color: var(--chinee-white);
    background: var(--chinee-navy-deep);
  }

  .chinee-button--dark:hover {
    color: var(--chinee-white);
    background: var(--chinee-navy);
  }

  .chinee-home a:focus-visible,
  #kf a:focus-visible {
    outline: 3px solid var(--chinee-teal, #00bfb3);
    outline-offset: 4px;
  }

  .chinee-hero {
    position: relative;
    min-height: max(720px, calc(100svh - 82px));
    color: var(--chinee-white);
    background: var(--chinee-navy-deep);
    isolation: isolate;
  }

  .chinee-hero__media,
  .chinee-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .chinee-hero__media {
    z-index: -2;
    object-fit: cover;
    object-position: center;
  }

  .chinee-hero__shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 15, 35, 0.92) 0%, rgba(3, 27, 59, 0.68) 42%, rgba(3, 27, 59, 0.08) 72%), linear-gradient(0deg, rgba(2, 12, 27, 0.68) 0%, transparent 46%);
  }

  .chinee-hero__inner {
    display: flex;
    min-height: max(720px, calc(100svh - 82px));
    align-items: center;
    padding: 90px 0 128px;
  }

  .chinee-hero__content {
    width: min(720px, 58%);
  }

  .chinee-hero h1 {
    max-width: 720px;
    color: var(--chinee-white);
    font-size: 76px;
    line-height: 0.94;
    text-transform: uppercase;
    text-wrap: balance;
  }

  .chinee-hero__lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.75;
  }

  .chinee-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
  }

  .chinee-hero__capabilities {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(2, 15, 35, 0.54);
    backdrop-filter: blur(14px);
  }

  .chinee-hero__capabilities span {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .chinee-hero__capabilities span:last-child {
    border-right: 0;
  }

  .chinee-hero__capabilities i {
    color: var(--chinee-teal);
    font-size: 22px;
    font-weight: 400;
  }

  .chinee-categories {
    z-index: 2;
    width: min(1480px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 104px;
    background: var(--chinee-white);
  }

  .chinee-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .chinee-category-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 3px;
    background: var(--chinee-cool);
    isolation: isolate;
  }

  .chinee-category-card__image,
  .chinee-category-card__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .chinee-category-card__image {
    z-index: -2;
    object-fit: cover;
    transition: transform 420ms ease;
  }

  .chinee-category-card__overlay {
    z-index: -1;
    background: linear-gradient(0deg, rgba(3, 20, 43, 0.9) 0%, rgba(3, 27, 59, 0.08) 64%);
  }

  .chinee-category-card__index {
    position: absolute;
    top: 16px;
    left: 16px;
    display: grid;
    width: 34px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--chinee-white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
  }

  .chinee-category-card__content {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .chinee-category-card__content strong {
    color: var(--chinee-white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .chinee-category-card__content span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .chinee-category-card:hover .chinee-category-card__image {
    transform: scale(1.045);
  }

  .chinee-category-card:hover .chinee-category-card__content span {
    color: var(--chinee-teal);
  }

  .chinee-factory {
    color: var(--chinee-white);
    background: var(--chinee-carbon);
  }

  .chinee-factory::before {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 179, 0.7), transparent);
    content: "";
  }

  .chinee-factory-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, 260px) 250px;
    gap: 12px;
  }

  .chinee-factory-card {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #202b35;
  }

  .chinee-factory-card--1 {
    grid-column: 1 / span 8;
    grid-row: 1 / span 2;
  }

  .chinee-factory-card--2,
  .chinee-factory-card--3 {
    grid-column: 9 / span 4;
  }

  .chinee-factory-card--4,
  .chinee-factory-card--5,
  .chinee-factory-card--6 {
    grid-row: 3;
  }

  .chinee-factory-card--4 { grid-column: 1 / span 4; }
  .chinee-factory-card--5 { grid-column: 5 / span 4; }
  .chinee-factory-card--6 { grid-column: 9 / span 4; }

  .chinee-factory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
  }

  .chinee-factory-card figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 46px 20px 18px;
    background: linear-gradient(0deg, rgba(2, 15, 31, 0.94), transparent);
  }

  .chinee-factory-card figcaption > span {
    color: var(--chinee-teal);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
  }

  .chinee-factory-card figcaption strong {
    display: block;
    color: var(--chinee-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .chinee-factory-card figcaption p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    line-height: 1.5;
  }

  .chinee-factory-card:hover img {
    transform: scale(1.035);
  }

  .chinee-factory-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .chinee-factory-cta p,
  .chinee-factory-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
  }

  .chinee-factory-cta p {
    color: rgba(255, 255, 255, 0.74);
  }

  .chinee-factory-cta p i,
  .chinee-factory-cta a {
    color: var(--chinee-teal);
  }

  .chinee-products {
    background: #f4f7f9;
  }

  .chinee-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .chinee-product-card {
    min-width: 0;
    background: var(--chinee-white);
  }

  .chinee-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #edf1f4;
  }

  .chinee-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
  }

  .chinee-product-card__arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--chinee-navy-deep);
    background: var(--chinee-teal);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .chinee-product-card__body {
    min-height: 166px;
    padding: 22px 20px 24px;
    border-top: 3px solid transparent;
    transition: border-color 180ms ease;
  }

  .chinee-product-card__body > span {
    color: var(--chinee-teal);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .chinee-product-card h3 {
    margin: 9px 0 8px;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.08;
  }

  .chinee-product-card h3 a {
    color: var(--chinee-navy-deep);
  }

  .chinee-product-card p {
    margin: 0;
    color: var(--chinee-muted);
    font-size: 12px;
    line-height: 1.6;
  }

  .chinee-product-card:hover .chinee-product-card__media img {
    transform: scale(1.035);
  }

  .chinee-product-card:hover .chinee-product-card__arrow {
    opacity: 1;
    transform: translateY(0);
  }

  .chinee-product-card:hover .chinee-product-card__body {
    border-top-color: var(--chinee-teal);
  }

  .chinee-centered-action {
    margin-top: 44px;
    text-align: center;
  }

  .chinee-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--chinee-teal);
    color: var(--chinee-navy-deep);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .chinee-text-link:hover {
    color: var(--chinee-teal);
  }

  .chinee-applications {
    background: var(--chinee-navy-deep);
  }

  .chinee-application-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .chinee-application-card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 3px;
    isolation: isolate;
  }

  .chinee-application-card img,
  .chinee-application-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .chinee-application-card img {
    z-index: -2;
    object-fit: cover;
    transition: transform 500ms ease;
  }

  .chinee-application-card__shade {
    z-index: -1;
    background: linear-gradient(0deg, rgba(2, 13, 29, 0.92), rgba(2, 13, 29, 0.04) 70%);
  }

  .chinee-application-card__content {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
  }

  .chinee-application-card__content > span {
    color: var(--chinee-teal);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .chinee-application-card h3 {
    margin: 7px 0 7px;
    color: var(--chinee-white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
  }

  .chinee-application-card p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.6;
  }

  .chinee-application-card:hover img {
    transform: scale(1.035);
  }

  .chinee-custom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 12px;
    padding: 34px 38px;
    background: #102846;
  }

  .chinee-custom-bar p {
    margin: 0 0 10px;
    color: var(--chinee-white);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
  }

  .chinee-custom-bar span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .chinee-custom-bar b {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--chinee-teal);
  }

  .chinee-process {
    background: var(--chinee-white);
  }

  .chinee-process-grid {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    list-style: none;
    border-top: 1px solid var(--chinee-line);
    border-bottom: 1px solid var(--chinee-line);
  }

  .chinee-process-step {
    position: relative;
    min-height: 278px;
    padding: 34px 22px 30px;
    border-right: 1px solid var(--chinee-line);
  }

  .chinee-process-step:last-child {
    border-right: 0;
  }

  .chinee-process-step::before {
    position: absolute;
    top: -2px;
    right: 100%;
    left: 0;
    height: 3px;
    background: var(--chinee-teal);
    content: "";
    transition: right 260ms ease;
  }

  .chinee-process-step:hover::before {
    right: 0;
  }

  .chinee-process-step__number {
    display: block;
    color: #a3aeb9;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
  }

  .chinee-process-step__icon {
    display: block;
    margin: 30px 0 24px;
    color: var(--chinee-teal);
    font-size: 31px;
  }

  .chinee-process-step h3 {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--chinee-navy-deep);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .chinee-process-step p {
    margin: 0;
    color: var(--chinee-muted);
    font-size: 11px;
    line-height: 1.65;
  }

  .chinee-process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 42px;
    padding: 28px 32px;
    border-left: 4px solid var(--chinee-teal);
    background: var(--chinee-cool);
  }

  .chinee-process-cta span {
    color: var(--chinee-navy);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .chinee-process-cta p {
    margin: 6px 0 0;
    color: var(--chinee-ink);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
  }

  .chinee-home.is-motion-ready .chinee-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .chinee-home.is-motion-ready .chinee-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  body #kf.container2 {
    width: min(1360px, calc(100% - 80px));
    max-width: none;
  }

  body #kf .online_cont {
    margin: 0;
    padding: 106px 0 116px;
  }

  body #kf .online_cont .title {
    margin-bottom: 48px;
  }

  body #kf .online_cont .title p:first-child {
    margin-bottom: 12px;
    color: #031b3b;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
  }

  body #kf .online_cont .title p:last-child {
    color: #647080;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
  }

  body #kf .online_cont ul {
    grid-gap: 28px;
  }

  body #kf .online_cont ul li {
    padding: 24px 14px;
    border: 1px solid #d8e0e6;
    border-radius: 3px;
    background: #f7f9fa;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  body #kf .online_cont ul li:hover {
    border-color: #00bfb3;
    box-shadow: 0 16px 36px rgba(3, 27, 59, 0.1);
    transform: translateY(-4px);
  }

  body #kf .online_cont ul li p:first-child {
    width: 124px;
    height: 124px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(3, 27, 59, 0.16);
  }

  body #kf .online_cont ul li p:nth-child(2) {
    margin: 18px 0 14px;
    color: #031b3b;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
  }

  body #kf .online_cont ul li p:nth-child(3) span {
    padding: 7px 9px;
    border-radius: 3px;
    background: #06336d;
  }

  body #kf .online_cont ul li p:nth-child(3) span:nth-child(2) {
    background: #008a82;
  }

  body #kf .online_cont ul li p:nth-child(3) span:hover {
    background: #00bfb3;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .chinee-shell,
  body #kf.container2 {
    width: min(1280px, calc(100% - 64px));
  }

  .chinee-hero h1 {
    font-size: 68px;
  }

  .chinee-category-card__content strong {
    font-size: 22px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .chinee-shell,
  body #kf.container2 {
    width: calc(100% - 48px);
  }

  .chinee-section {
    padding: 92px 0;
  }

  .chinee-hero h1 {
    font-size: 58px;
  }

  .chinee-section-heading h2 {
    font-size: 48px;
  }

  .chinee-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .chinee-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chinee-factory-grid {
    grid-template-rows: repeat(2, 220px) 220px;
  }

  .chinee-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chinee-process-step:nth-child(3) {
    border-right: 0;
  }

  .chinee-process-step:nth-child(-n + 3) {
    border-bottom: 1px solid #d8e0e6;
  }

  body #kf .online_cont ul {
    grid-gap: 14px;
  }
}

@media (min-width: 701px) and (max-width: 1023px) {
  .chinee-shell,
  body #kf.container2 {
    width: calc(100% - 40px);
  }

  .chinee-section {
    padding: 80px 0;
  }

  .chinee-section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chinee-section-heading h2 {
    font-size: 44px;
  }

  .chinee-hero,
  .chinee-hero__inner {
    min-height: 690px;
  }

  .chinee-hero__content {
    width: 70%;
  }

  .chinee-hero h1 {
    font-size: 52px;
  }

  .chinee-hero__lead {
    font-size: 15px;
  }

  .chinee-hero__capabilities span {
    min-height: 72px;
    font-size: 10px;
  }

  .chinee-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chinee-category-card__content strong {
    font-size: 21px;
  }

  .chinee-factory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 390px repeat(3, 220px);
  }

  .chinee-factory-card--1 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .chinee-factory-card--2,
  .chinee-factory-card--3,
  .chinee-factory-card--4,
  .chinee-factory-card--5,
  .chinee-factory-card--6 {
    grid-column: auto;
    grid-row: auto;
  }

  .chinee-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chinee-application-card__content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .chinee-application-card h3 {
    font-size: 27px;
  }

  .chinee-custom-bar {
    padding: 28px;
  }

  .chinee-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chinee-process-step:nth-child(3) {
    border-right: 0;
  }

  .chinee-process-step:nth-child(-n + 3) {
    border-bottom: 1px solid #d8e0e6;
  }

  body #kf .online_cont {
    padding: 80px 0 90px;
  }

  body #kf .online_cont ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-gap: 8px;
  }

  body #kf .online_cont ul li {
    padding: 16px 6px;
  }

  body #kf .online_cont ul li p:first-child {
    width: 90px;
    height: 90px;
  }

  body #kf .online_cont ul li p:nth-child(3) {
    gap: 5px;
  }

  body #kf .online_cont ul li p:nth-child(3) span:nth-child(2) {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chinee-home *,
  .chinee-home *::before,
  .chinee-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
