:root {
  color-scheme: light;
  --ink: #1b2428;
  --muted: #677579;
  --line: #e3e9ec;
  --paper: #f5f6f8;
  --white: #ffffff;
  --blue: #0a4fa3;
  --blue-deep: #062f73;
  --green: #0c7a67;
  --gold: #cba34d;
  --red: #963132;
  --shadow: 0 24px 70px rgba(19, 45, 73, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  padding: 14px clamp(22px, 6vw, 108px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 23, 61, 0.62), rgba(2, 23, 61, 0.06));
  transition: background 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(14, 32, 55, 0.08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 188px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 240ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.nav-open .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  font-size: 16px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.site-nav a {
  padding: 10px 0;
}

.nav-item > a {
  display: block;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a.is-active {
  color: var(--gold);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  min-width: 156px;
  padding: 8px 0;
  border: 1px solid rgba(8, 28, 56, 0.08);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(8, 28, 56, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
  content: "";
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  min-width: 100%;
  padding: 10px 20px;
  color: #24313f;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-current {
  color: var(--blue);
  background: rgba(10, 79, 163, 0.08);
}

.site-search {
  display: flex;
  align-items: center;
  width: 224px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.site-header.is-scrolled .site-search,
.site-header.nav-open .site-search {
  border-color: rgba(6, 47, 115, 0.16);
  background: rgba(6, 47, 115, 0.06);
}

.site-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 0 0 16px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 13px;
}

.site-search input::placeholder {
  color: currentColor;
  opacity: 0.72;
}

.site-search button {
  width: 42px;
  height: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.nav-cta {
  padding: 11px 18px !important;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  padding: 8px 12px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background: #061c4b;
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6200ms linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 22, 65, 0.86) 0%, rgba(2, 28, 76, 0.58) 43%, rgba(1, 14, 48, 0.22) 100%),
    linear-gradient(0deg, rgba(2, 13, 36, 0.52), rgba(2, 13, 36, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 245px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 28px;
  color: #e9f2ff;
  font-size: 20px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  margin-left: 10px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.hero-dots {
  position: absolute;
  right: clamp(28px, 6vw, 104px);
  bottom: 78px;
  z-index: 4;
  display: flex;
  gap: 22px;
}

.hero-dots button {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  left: clamp(22px, 7vw, 108px);
  bottom: 24px;
  z-index: 4;
  width: 24px;
  height: 36px;
  opacity: 0.85;
  animation: cue 1.6s ease-in-out infinite;
}

.scroll-cue img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background: var(--white);
}

.about-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 68%;
  background: url("/assets/ref/about-bg.jpg") left bottom / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.section-title h2 {
  color: var(--blue);
}

.round-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.about-copy p {
  color: var(--muted);
  font-size: 17px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact-row div {
  background: var(--white);
  padding: 20px;
}

.fact-row strong {
  display: block;
  color: var(--blue-deep);
  font-size: 22px;
}

.fact-row span {
  color: var(--muted);
  font-size: 14px;
}

.about-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.markets-section,
.news-section {
  padding: 82px 0 108px;
  background: #f6f7f9;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.product-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: #0b2448;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.product-card-large {
  grid-row: span 2;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 16, 42, 0.76), rgba(2, 16, 42, 0.08) 62%);
}

.product-card div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 2;
  color: var(--white);
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.product-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card:focus-visible {
  outline: 3px solid rgba(203, 163, 77, 0.86);
  outline-offset: 4px;
}

.services-section {
  padding: 90px 0 102px;
  background: var(--white);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  padding: 34px;
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: scale(8);
  opacity: 0.22;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 34, 83, 0.86), rgba(7, 83, 158, 0.48));
}

.service-icon,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 72px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
}

.guide-section {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  color: var(--white);
  background: #074e9e;
}

.guide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 73, 158, 0.92), rgba(6, 92, 176, 0.6) 42%, rgba(255, 255, 255, 0.04) 80%);
}

.guide-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) 1fr;
  gap: 64px;
  padding-top: 110px;
}

.guide-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: border-radius 200ms ease, background 200ms ease;
}

.accordion details[open] {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.accordion summary {
  cursor: pointer;
  padding: 18px 26px;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  margin: 0;
  padding: 0 26px 24px;
  color: rgba(255, 255, 255, 0.82);
}

.news-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
}

.news-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.news-card div {
  padding: 24px;
}

.news-card span {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.news-card h3 {
  margin: 8px 0 0;
}

.partner-section {
  overflow: hidden;
  padding: 34px 0;
  background: var(--white);
}

.partner-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.partner-track img {
  width: 210px;
  height: 66px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.risk {
  padding: 62px clamp(22px, 6vw, 108px);
  color: var(--white);
  background: var(--red);
}

.risk h2,
.risk p {
  width: min(1220px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.risk p {
  margin-bottom: 0;
  color: #ffe9e9;
}

.page-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: #061c4b;
}

.page-hero > img,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 170px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 66px);
}

.breadcrumb {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.subpage-nav {
  position: relative;
  z-index: 8;
  margin-top: -34px;
  background: transparent;
}

.subpage-nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 28, 56, 0.12);
}

.subpage-nav-inner strong {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 18px;
}

.subpage-nav-inner div {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.subpage-nav-inner div::-webkit-scrollbar {
  display: none;
}

.subpage-nav-inner a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 8px;
  color: #3e4b5b;
  font-weight: 800;
  white-space: nowrap;
}

.subpage-nav-inner a:hover,
.subpage-nav-inner a.is-current {
  color: var(--white);
  background: var(--blue);
}

.page-section {
  padding: 86px 0;
  background: var(--white);
}

.page-section.muted {
  background: #f6f7f9;
}

.reference-import {
  padding-top: 58px;
}

.reference-content {
  color: #24313f;
}

.reference-content section {
  margin: 0 0 44px;
  padding: 0 0 44px;
  border-bottom: 1px solid var(--line);
}

.reference-content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.reference-content h2,
.reference-content h3,
.reference-content h4 {
  margin: 0 0 16px;
  color: var(--blue-deep);
  line-height: 1.35;
}

.reference-content h2,
.reference-content .page-title2 > span:first-child,
.reference-content .title.font24 {
  font-size: 30px;
  font-weight: 900;
}

.reference-content h3,
.reference-content .title.font20,
.reference-content .title.font18 {
  font-size: 22px;
  font-weight: 900;
}

.reference-content p {
  margin: 0 0 16px;
  color: #4c5968;
  line-height: 1.9;
}

.reference-content ul,
.reference-content ol {
  margin: 0 0 20px;
  padding-left: 1.35em;
}

.reference-content li {
  margin: 8px 0;
}

.reference-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.reference-content .page-title2 {
  margin-bottom: 30px;
  text-align: center;
}

.reference-content .page-title2 span {
  display: block;
}

.reference-content .page-title2 span + span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.reference-content .page-up,
.reference-content .page-main,
.reference-content .container {
  width: 100%;
  max-width: 100%;
}

.reference-content .item,
.reference-content .item-box,
.reference-content .swiper-slide,
.reference-content .li {
  min-width: 0;
}

.reference-content .reference-table-wrap,
.reference-content .lh-table-main {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reference-content table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #263241;
  font-size: 14px;
}

.reference-content td,
.reference-content th {
  border: 1px solid var(--line);
  padding: 12px 14px;
  vertical-align: top;
}

.reference-content td {
  color: #263241;
  background: var(--white);
}

.reference-content thead td,
.reference-content table > tr:first-child td,
.reference-content th {
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.reference-content a {
  color: var(--blue);
  font-weight: 800;
}

.reference-content .list,
.reference-content .job-list,
.reference-content .download-list,
.reference-content .news-list {
  display: grid;
  gap: 18px;
}

.reference-content .item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reference-content .num,
.reference-content .date,
.reference-content time {
  color: var(--blue);
  font-weight: 900;
}

.reference-content .vacation-schedule-page,
.reference-content .news-page,
.reference-content .announcement-page {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: clamp(74px, 8vw, 104px) max(22px, calc((100vw - 1220px) / 2));
  border-bottom: 0;
  background: #f5f7fb;
}

.reference-content .vacation-schedule-page > .container,
.reference-content .news-page > .container,
.reference-content .announcement-page > .container {
  width: 100%;
  max-width: 1220px;
}

.reference-content .vacation-schedule-page .page-title2,
.reference-content .announcement-page .page-title2 {
  margin-bottom: clamp(40px, 5vw, 58px);
}

.reference-content .vacation-schedule-page .page-title2 .title > span,
.reference-content .announcement-page .page-title2 .title > span {
  color: #174f9b;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.reference-content .vacation-schedule-page .page-title2 .title > span::after,
.reference-content .announcement-page .page-title2 .title > span::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  background: #174f9b;
  content: "";
}

.reference-content .vacation-schedule-page .page-title2 .title-en > span,
.reference-content .announcement-page .page-title2 .title-en > span {
  display: block;
  margin-top: 14px;
  color: #7d8794;
  font-size: 15px;
  font-weight: 500;
}

.reference-content .news-page .tab-title-box {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}

.reference-content .news-page .tab-title {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid #e7edf4;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 49, 88, 0.06);
}

.reference-content .news-page .tab-title .title {
  margin: 0;
  font-size: 16px;
}

.reference-content .news-page .tab-title a {
  display: block;
  padding: 9px 18px;
  border-radius: 6px;
  color: #24313f;
  font-weight: 900;
}

.reference-content .news-page .tab-title .active a,
.reference-content .news-page .tab-title a:hover {
  color: var(--white);
  background: #174f9b;
}

.reference-content .vacation-schedule-page .list,
.reference-content .news-page .list,
.reference-content .announcement-page .list {
  display: grid;
  gap: 26px;
}

.reference-content .vacation-schedule-page .item,
.reference-content .news-page .item,
.reference-content .announcement-page .item {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reference-content .vacation-schedule-page .item-box,
.reference-content .news-page .item-box,
.reference-content .announcement-page .item-box {
  display: grid;
  align-items: center;
  min-height: 170px;
  padding: 24px 28px;
  border: 1px solid #e7edf4;
  border-radius: 8px;
  color: #24313f;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 49, 88, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reference-content .vacation-schedule-page .item-box:hover,
.reference-content .news-page .item-box:hover,
.reference-content .announcement-page .item-box:hover {
  border-color: rgba(23, 79, 155, 0.28);
  box-shadow: 0 22px 48px rgba(20, 49, 88, 0.1);
  transform: translateY(-4px);
}

.reference-content .vacation-schedule-page .item-box,
.reference-content .news-page .item-box {
  grid-template-columns: 230px minmax(0, 1fr) auto;
  gap: 34px;
}

.reference-content .announcement-page .item-box {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
}

.reference-content .vacation-schedule-page .public-img,
.reference-content .news-page .public-img {
  position: relative;
  width: 230px;
  height: 122px;
  overflow: hidden;
  border-radius: 0;
  background: #dce6f4;
}

.reference-content .vacation-schedule-page .public-img img,
.reference-content .news-page .public-img img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 700ms ease;
}

.reference-content .vacation-schedule-page .item-box:hover img,
.reference-content .news-page .item-box:hover img {
  transform: scale(1.06);
}

.reference-content .news-page .public-img .type {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(13, 47, 112, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.reference-content .vacation-schedule-page .text-box,
.reference-content .news-page .text-box,
.reference-content .announcement-page .text-box {
  min-width: 0;
}

.reference-content .vacation-schedule-page h3,
.reference-content .news-page h3,
.reference-content .announcement-page h3 {
  margin-bottom: 8px;
  color: #183f88;
  font-size: 22px;
}

.reference-content .vacation-schedule-page .text-body,
.reference-content .news-page .text-body,
.reference-content .announcement-page .text-body {
  display: -webkit-box;
  overflow: hidden;
  color: #5b6675;
  font-size: 16px;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.reference-content .vacation-schedule-page .date,
.reference-content .news-page .date,
.reference-content .announcement-page .date {
  margin-top: 12px;
  color: #808c9a;
  font-size: 14px;
  font-weight: 800;
}

.reference-content .vacation-schedule-page .more,
.reference-content .announcement-page .more {
  justify-self: end;
}

.reference-content .vacation-schedule-page .link,
.reference-content .announcement-page .link,
.reference-content .news-page .item-box::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  color: var(--white);
  background: #172c72;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.reference-content .news-page .item-box::after {
  justify-self: end;
  content: "查看详情";
}

.reference-content .vacation-schedule-page .link .icon::before {
  margin-right: 8px;
  content: "↓";
}

.reference-content .announcement-page > .container > .page-main > .list > .list {
  display: grid;
  gap: 26px;
}

.reference-content .pager-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.reference-content .pager-box a {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #dfe7f2;
  border-radius: 6px;
  color: #26436e;
  background: var(--white);
  font-weight: 900;
}

.reference-content .pager-box a.active,
.reference-content .pager-box a:hover {
  color: var(--white);
  background: #174f9b;
}

.scroll-animate,
[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.scroll-animate.is-visible,
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.item-animation:nth-child(2) {
  transition-delay: 90ms;
}

.item-animation:nth-child(3) {
  transition-delay: 160ms;
}

.item-animation:nth-child(4) {
  transition-delay: 230ms;
}

.item-animation:nth-child(5) {
  transition-delay: 300ms;
}

.reference-content .about-page1,
.reference-content .about-page2,
.reference-content .about-page3 {
  margin: 0;
  padding: clamp(76px, 8vw, 112px) 0;
  border-bottom: 0;
}

.reference-content .about-page1 {
  padding-top: 40px;
}

.reference-content .about-page2,
.reference-content .about-page3 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(22px, calc((100vw - 1220px) / 2));
  padding-right: max(22px, calc((100vw - 1220px) / 2));
  background: #f5f7fb;
}

.reference-content .about-page2 > .container,
.reference-content .about-page3 > .container {
  width: 100%;
  max-width: 1220px;
}

.reference-content .about-page3 {
  padding-bottom: clamp(94px, 9vw, 128px);
}

.reference-content .about-page1 .page-title2,
.reference-content .about-page2 .page-title2,
.reference-content .about-page3 .page-title2 {
  margin-bottom: clamp(48px, 6vw, 70px);
}

.reference-content .about-page1 .page-title2 .title > span,
.reference-content .about-page2 .page-title2 .title > span,
.reference-content .about-page3 .page-title2 .title > span {
  color: #174f9b;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.reference-content .about-page1 .page-title2 .title > span::after,
.reference-content .about-page2 .page-title2 .title > span::after,
.reference-content .about-page3 .page-title2 .title > span::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  background: #174f9b;
  content: "";
}

.reference-content .about-page1 .page-title2 .title-en > span,
.reference-content .about-page2 .page-title2 .title-en > span,
.reference-content .about-page3 .page-title2 .title-en > span {
  display: block;
  margin-top: 14px;
  color: #7d8794;
  font-size: 15px;
  font-weight: 500;
}

.reference-content .about-page1 .wrap-box,
.reference-content .about-page2 .wrap-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.98fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.reference-content .about-page1 .wrap-left .list {
  display: block;
}

.reference-content .about-page1 .wrap-left .item,
.reference-content .about-page1 .wrap-left .item-box {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reference-content .about-page1 .wrap-left .item {
  position: relative;
  padding-left: 30px;
}

.reference-content .about-page1 .wrap-left .item::before {
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 3px;
  background: #1b55a5;
  content: "";
}

.reference-content .about-page1 .wrap-left .item + .item {
  margin-top: 40px;
}

.reference-content .about-page1 .wrap-left h3,
.reference-content .about-page3 h3 {
  color: #174f9b;
}

.reference-content .about-page1 .wrap-left p {
  color: #546171;
  font-size: 17px;
  line-height: 2.02;
}

.reference-content .about-page1 .wrap-right .list2 .item,
.reference-content .about-page2 .wrap-right .list2 .item {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reference-content .about-page1 .wrap-right .list2 .item-box,
.reference-content .about-page2 .wrap-right .list2 .item-box {
  position: relative;
  min-height: 306px;
  overflow: hidden;
  border-radius: 8px;
  background: #143b79;
  box-shadow: 0 22px 54px rgba(22, 59, 112, 0.2);
}

.reference-content .about-page1 .wrap-right .list2 .item-box::after,
.reference-content .about-page2 .wrap-right .list2 .item-box::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 31, 84, 0.76), rgba(7, 31, 84, 0.16));
  content: "";
}

.reference-content .about-page1 .wrap-right .list2 img,
.reference-content .about-page2 .wrap-right .list2 img {
  width: 100%;
  height: 100%;
  min-height: 306px;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.04);
  transition: transform 760ms ease;
}

.reference-content .about-page1 .wrap-right .list2 .item-box:hover img,
.reference-content .about-page2 .wrap-right .list2 .item-box:hover img {
  transform: scale(1.08);
}

.reference-content .about-page1 .wrap-right .list2 .text-box,
.reference-content .about-page2 .wrap-right .list2 .text-box {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 2;
  color: var(--white);
}

.reference-content .about-page1 .wrap-right .list2 h3,
.reference-content .about-page2 .wrap-right .list2 h3,
.reference-content .about-page1 .wrap-right .list2 p,
.reference-content .about-page2 .wrap-right .list2 p {
  color: var(--white);
}

.reference-content .about-page1 .list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.reference-content .about-page1 .list3 .item {
  min-height: 112px;
  padding: 0;
  border: 0;
  border-left: 4px solid #174f9b;
  border-radius: 8px;
  background: #f4f7fc;
  box-shadow: none;
}

.reference-content .about-page1 .list3 .item-box {
  height: 100%;
  padding: 20px 18px;
}

.reference-content .about-page1 .list3 h3 {
  margin-bottom: 6px;
  color: #174f9b;
  font-size: 32px;
}

.reference-content .about-page1 .list3 p {
  margin: 0;
  color: #667382;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.reference-content .about-page2 .wrap-box {
  align-items: center;
}

.reference-content .about-page2 .wrap-left {
  grid-column: 2;
  grid-row: 1;
}

.reference-content .about-page2 .wrap-right {
  grid-column: 1;
  grid-row: 1;
}

.reference-content .about-page2 .text-up {
  margin-bottom: 28px;
}

.reference-content .about-page2 .text-up p {
  color: #536070;
  font-size: 16px;
  line-height: 1.92;
}

.reference-content .about-page2 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reference-content .about-page2 .list .item {
  min-height: 142px;
  padding: 0;
  border: 0;
  border-left: 4px solid #174f9b;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(20, 49, 88, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reference-content .about-page2 .list .item:hover,
.reference-content .about-page3 .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(20, 49, 88, 0.13);
}

.reference-content .about-page2 .list .item-box {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  height: 100%;
  padding: 24px 26px;
}

.reference-content .about-page2 .list .item:nth-child(5) {
  grid-column: 1 / -1;
  min-height: auto;
  background: #eef4ff;
}

.reference-content .about-page2 .icon,
.reference-content .about-page3 .public-img.icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #1d55a6;
  box-shadow: none;
}

.reference-content .about-page2 .icon::before,
.reference-content .about-page3 .public-img.icon::before {
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 999px;
  content: "";
}

.reference-content .about-page2 .icon::after {
  position: absolute;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  content: "";
}

.reference-content .about-page2 .list h3 {
  color: #174f9b;
  font-size: 19px;
}

.reference-content .about-page2 .list p {
  margin-bottom: 0;
  color: #5c6877;
  line-height: 1.72;
}

.reference-content .about-page2 .wrap-right .list2 .item-box {
  min-height: 360px;
}

.reference-content .about-page2 .wrap-right .list2 img {
  min-height: 360px;
}

.reference-content .about-page3 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.reference-content .about-page3 .item {
  min-height: 322px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(20, 49, 88, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reference-content .about-page3 .item-box {
  height: 100%;
  padding: 36px 32px;
}

.reference-content .about-page3 .public-img.icon {
  margin-bottom: 24px;
}

.reference-content .about-page3 p {
  color: #566373;
  font-size: 16px;
  line-height: 1.94;
}

.reference-content .about-page3 dl {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0 0;
  color: #526171;
  font-weight: 800;
}

.reference-content .about-page3 dt {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 999px;
  background: #1d55a6;
  position: relative;
}

.reference-content .about-page3 dt::after {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  content: "";
}

.reference-content .about-page3 dd {
  margin: 0;
}

.reference-content .contact-page1 .page-up .list .item:first-child .text-body p {
  color: #174f9b;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.page-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.compact {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid,
.step-grid,
.article-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three,
.article-grid,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.content-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(19, 45, 73, 0.08);
}

.content-card h3,
.step-card h3 {
  color: var(--blue-deep);
}

.content-card p,
.step-card p {
  color: var(--muted);
}

.content-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 28px;
}

.step-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
}

.plain-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
}

.plain-list li + li {
  margin-top: 12px;
}

.license-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.license-board article {
  padding: 34px;
  border-right: 1px solid var(--line);
}

.license-board article:last-child {
  border-right: 0;
}

.license-board span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

.license-board strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.2;
}

.license-board p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-mosaic {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(19, 45, 73, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.article-grid .news-card {
  min-width: 0;
}

.insight-link {
  color: inherit;
}

.article-body {
  background:
    radial-gradient(circle at 8% 10%, rgba(10, 79, 163, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.article-main {
  border: 1px solid rgba(10, 79, 163, 0.12);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 56px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-main h2 {
  margin: 34px 0 12px;
  color: var(--blue-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.28;
}

.article-main p {
  color: #4c5968;
  font-size: 17px;
}

.article-main p:first-child {
  margin-top: 0;
}

.number-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 17px;
}

.number-list li + li {
  margin-top: 12px;
}

.article-cta {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 24px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #eef4ff;
}

.article-cta strong {
  color: var(--blue-deep);
  font-size: 20px;
}

.article-cta span {
  color: var(--muted);
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(19, 45, 73, 0.08);
}

.article-sidebar h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
}

.article-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #415064;
  background: #f4f7fb;
  font-weight: 800;
}

.article-sidebar a:hover {
  color: var(--white);
  background: var(--blue);
}

.contact-grid .content-card {
  min-height: 220px;
}

.page-risk {
  margin: 0;
}

.chat-widget {
  position: fixed;
  right: 28px;
  bottom: 72px;
  z-index: 80;
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.chat-launcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 88px;
  height: 88px;
  padding: 8px 6px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: #1f5bc8;
  box-shadow: 0 18px 42px rgba(31, 91, 200, 0.32);
  font: inherit;
  cursor: pointer;
}

.chat-launcher-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0);
  position: relative;
}

.chat-launcher-icon::before,
.chat-launcher-icon::after {
  position: absolute;
  content: "";
}

.chat-launcher-icon::before {
  top: 11px;
  left: -8px;
  right: -8px;
  height: 16px;
  border-left: 6px solid rgba(255, 255, 255, 0.92);
  border-right: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
}

.chat-launcher-icon::after {
  right: -6px;
  bottom: 5px;
  width: 15px;
  height: 7px;
  border-right: 4px solid rgba(255, 255, 255, 0.92);
  border-bottom: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 0 0 8px 0;
}

.chat-launcher-text {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.chat-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: min(620px, calc(100vw - 96px));
  height: min(500px, calc(100vh - 76px));
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #f3f6f9;
  box-shadow: 0 24px 80px rgba(8, 28, 56, 0.34);
  transform: translate(-50%, -50%);
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 58px;
  color: var(--white);
  background: #3168f2;
  position: relative;
}

.chat-header strong {
  font-size: 16px;
  letter-spacing: 0;
}

.chat-more {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #8f98a3;
  background: #f2f5f8;
  font-size: 14px;
  font-weight: 700;
}

.chat-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  right: 18px;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px 12px;
  background: #f2f5f8;
}

.chat-notice,
.chat-session,
.chat-status {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.chat-notice {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 4px;
  color: #1d2530;
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.chat-session {
  color: var(--blue-deep);
  font-weight: 900;
}

.chat-agent-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: contain;
  background: var(--white);
}

.chat-agent-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  color: #9098a3;
  font-size: 13px;
}

.chat-agent-meta strong {
  color: #7a8490;
  font-size: 14px;
}

.chat-messages {
  display: grid;
  gap: 9px;
  padding: 2px 0 8px 48px;
}

.chat-bubble {
  max-width: min(72%, 640px);
  border-radius: 8px;
  padding: 10px 13px;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.55;
}

.chat-bubble.visitor {
  justify-self: end;
  color: var(--white);
  background: #3168f2;
}

.chat-bubble.agent {
  justify-self: start;
  color: var(--ink);
  background: var(--white);
}

.chat-bubble.system {
  max-width: 100%;
  color: var(--muted);
  background: #fff5df;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  min-height: 130px;
  padding: 8px 12px 5px;
  border-top: 1px solid #e4e9ef;
  background: var(--white);
  position: relative;
}

.chat-tools {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 24px;
}

.chat-tools button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  color: #8c939b;
  background: transparent;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.chat-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: 0;
  padding: 7px 9px;
  color: var(--ink);
  background: #f8fafc;
  font: inherit;
  font-size: 14px;
}

.chat-form textarea {
  min-height: 38px;
  resize: none;
  grid-column: 1;
  align-self: end;
  padding: 8px 2px;
  border: 0;
  background: transparent;
}

.chat-form input:focus,
.chat-form textarea:focus {
  border-color: #b7c7f4;
  box-shadow: 0 0 0 3px rgba(49, 104, 242, 0.1);
}

.chat-submit {
  align-self: end;
  justify-self: end;
  min-width: 66px;
  min-height: 32px;
  border: 0;
  border-radius: 4px;
  color: #7d8792;
  background: #eff1f4;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chat-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.chat-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  font-size: 12px;
}

.chat-powered {
  grid-column: 1 / -1;
  margin: -5px 0 0;
  color: #b0b8c0;
  text-align: center;
  font-size: 13px;
}

.floating-service {
  position: fixed;
  right: 38px;
  bottom: 184px;
  z-index: 35;
  display: grid;
  width: 80px;
  padding: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 28, 56, 0.14);
}

.floating-service a,
.floating-service button {
  display: grid;
  place-items: center;
  gap: 7px;
  width: 80px;
  min-height: 76px;
  border: 0;
  border-radius: 0;
  color: #293545;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

.floating-service a:not(:first-child)::before,
.floating-service button:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: #e7ecf2;
  content: "";
}

.service-rail-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #1f2b3c;
  font-size: 24px;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px;
  padding: 74px clamp(22px, 6vw, 108px) 34px;
  color: #dce6ef;
  background: #111b2a;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 10px 0;
  color: #9facb9;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer address {
  font-style: normal;
}

.site-footer address strong {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
}

.site-footer address span:nth-child(2),
.site-footer address span:nth-child(3) {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.footer-legal-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 18px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links a {
  margin: 0;
  color: #c7d3df;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #97a5b4;
  font-size: 14px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1180px) {
  .reference-content .about-page1 .wrap-box,
  .reference-content .about-page2 .wrap-box,
  .reference-content .about-page3 .list,
  .reference-content .vacation-schedule-page .list,
  .reference-content .news-page .list,
  .reference-content .announcement-page .list {
    padding-right: 116px;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .reference-content .about-page2 .list {
    grid-template-columns: 1fr;
  }

  .reference-content .about-page2 .list .item:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand img {
    width: 160px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(16, 35, 62, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .site-nav a,
  .nav-item > a {
    padding: 13px 0;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 7px 0;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .site-search {
    width: 100%;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 180px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-dots {
    right: 22px;
    bottom: 38px;
  }

  .scroll-cue {
    display: none;
  }

  .about-grid,
  .guide-grid,
  .page-grid,
  .reference-content .about-page1 .wrap-box,
  .reference-content .about-page2 .wrap-box,
  .reference-content .about-page3 .list {
    grid-template-columns: 1fr;
  }

  .reference-content .about-page2 .wrap-left,
  .reference-content .about-page2 .wrap-right {
    grid-column: auto;
    grid-row: auto;
  }

  .reference-content .about-page2 .wrap-right {
    order: -1;
  }

  .reference-content .about-page2 .list {
    grid-template-columns: 1fr;
  }

  .reference-content .about-page2 .list .item:nth-child(5) {
    grid-column: auto;
  }

  .reference-content .vacation-schedule-page .item-box,
  .reference-content .news-page .item-box {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
  }

  .reference-content .vacation-schedule-page .more,
  .reference-content .news-page .item-box::after {
    grid-column: 2;
    justify-self: start;
  }

  .reference-content .vacation-schedule-page .public-img,
  .reference-content .news-page .public-img {
    width: 170px;
    height: 112px;
  }

  .reference-content .announcement-page .item-box {
    grid-template-columns: 1fr;
  }

  .reference-content .announcement-page .more {
    justify-self: start;
  }

  .product-mosaic {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    grid-template-columns: none;
    grid-template-rows: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;
  }

  .product-card,
  .product-card-large {
    min-height: 360px;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .service-cards,
  .fact-row,
  .card-grid.three,
  .step-grid,
  .article-grid,
  .article-layout,
  .contact-grid,
  .license-board,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-main {
    padding: 24px 18px;
  }

  .article-sidebar {
    position: static;
  }

  .license-board article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .license-board article:last-child {
    border-bottom: 0;
  }

  .floating-service {
    right: 18px;
    bottom: 168px;
  }

  .chat-widget {
    right: 18px;
    bottom: 58px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 30px, 1220px);
  }

  .hero {
    min-height: 650px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }

  .button.secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .about-section,
  .markets-section,
  .services-section,
  .news-section {
    padding: 62px 0;
  }

  .guide-grid {
    padding-top: 70px;
  }

  .guide-section {
    min-height: auto;
    padding-bottom: 70px;
  }

  .page-hero {
    min-height: 480px;
  }

  .page-hero-content {
    width: min(100% - 30px, 1220px);
    padding-top: 135px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .subpage-nav {
    margin-top: -18px;
  }

  .subpage-nav-inner {
    display: grid;
    min-height: auto;
    padding: 14px;
  }

  .subpage-nav-inner div {
    gap: 4px;
  }

  .reference-content .about-page1,
  .reference-content .about-page2,
  .reference-content .about-page3 {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .reference-content .about-page1 .page-title2 span:first-child,
  .reference-content .about-page2 .page-title2 span:first-child,
  .reference-content .about-page3 .page-title2 span:first-child {
    font-size: 30px;
  }

  .reference-content .about-page1 .list3 {
    grid-template-columns: 1fr;
  }

  .reference-content .about-page1 .wrap-right .list2 .item-box,
  .reference-content .about-page2 .wrap-right .list2 .item-box,
  .reference-content .about-page1 .wrap-right .list2 img,
  .reference-content .about-page2 .wrap-right .list2 img {
    min-height: 260px;
  }

  .reference-content .about-page2 .list .item-box {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 22px;
  }

  .reference-content .about-page2 .icon,
  .reference-content .about-page3 .public-img.icon {
    width: 42px;
    height: 42px;
  }

  .reference-content .vacation-schedule-page,
  .reference-content .news-page,
  .reference-content .announcement-page {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .reference-content .vacation-schedule-page .page-title2 span:first-child,
  .reference-content .announcement-page .page-title2 span:first-child {
    font-size: 30px;
  }

  .reference-content .vacation-schedule-page .item-box,
  .reference-content .news-page .item-box,
  .reference-content .announcement-page .item-box {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .reference-content .vacation-schedule-page .public-img,
  .reference-content .news-page .public-img {
    width: 100%;
    height: 150px;
  }

  .reference-content .vacation-schedule-page .more,
  .reference-content .news-page .item-box::after,
  .reference-content .announcement-page .more {
    grid-column: auto;
    justify-self: stretch;
  }

  .reference-content .vacation-schedule-page .link,
  .reference-content .announcement-page .link,
  .reference-content .news-page .item-box::after {
    width: 100%;
  }

  .reference-content .news-page .tab-title {
    width: 100%;
  }

  .reference-content .news-page .tab-title .title {
    flex: 1 1 100%;
  }

  .reference-content .news-page .tab-title a {
    text-align: center;
  }

  .page-section {
    padding: 62px 0;
  }

  .news-rail {
    grid-auto-columns: 88%;
  }

  .floating-service {
    display: none;
  }

  .chat-widget {
    left: auto;
    right: 14px;
    bottom: 18px;
  }

  .chat-launcher {
    width: 76px;
    height: 76px;
    padding: 7px 5px;
  }

  .chat-launcher-icon {
    width: 40px;
    height: 36px;
  }

  .chat-launcher-text {
    font-size: 12px;
  }

  .chat-panel {
    top: 54%;
    left: 50%;
    right: auto;
    width: calc(100vw - 22px);
    height: calc(100vh - 88px);
    bottom: auto;
  }

  .chat-fields {
    grid-template-columns: 1fr;
  }

  .chat-header {
    min-height: 58px;
  }

  .chat-more {
    min-height: 48px;
    font-size: 14px;
  }

  .chat-body {
    padding: 16px 14px;
  }

  .chat-notice {
    font-size: 14px;
  }

  .chat-messages {
    padding-left: 0;
  }

  .chat-bubble {
    max-width: 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-animate,
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
