body {
  overflow-x: hidden;
  letter-spacing: 1px;
}
.empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.empty .picbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.empty .picbox .pic {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.6s;
}
.empty .txt {
  font-size: 20px;
  font-weight: normal;
  color: #666;
}
:root {
  --primary: #DB4713;
  --primary-dark: #b33a0f;
  --primary-light: #ff6b3d;
  --secondary: #1A1A2E;
  --secondary-light: #16213E;
  --accent: #D4AF37;
  --text-dark: #1A1A2E;
  --text-gray: #5A5A6E;
  --text-light: #8A8A9A;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --bg-cream: #FDF8F3;
  --bg-gray: #F5F5F7;
  --font-serif: 'Noto Serif SC', serif;
  --font-sans: 'Noto Sans SC', sans-serif;
  --shadow-sm: 0 2rem 8rem rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8rem 24rem rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16rem 48rem rgba(0, 0, 0, 0.12);
  --radius-sm: 4rem;
  --radius-md: 8rem;
  --radius-lg: 16rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  min-width: 1920rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--bg-white);
  overflow-x: hidden;
  width: 1920rem;
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1280rem;
  margin: 0 auto;
}
.section {
  padding: 80rem 0;
}
.section .section_head {
  margin-bottom: 70rem;
}
.section_head {
  text-align: center;
}
.section_head .section_head__title {
  font-family: var(--font-serif);
  font-size: 54rem;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.1;
}
.section_head .section_head__line {
  width: 60rem;
  height: 3rem;
  background-color: var(--primary);
  margin: 20rem auto 0;
}
.section_head .section_head__desc {
  font-size: 16rem;
  color: #5A5A6E;
  margin-top: 20rem;
  line-height: 1.1;
}
.section_head--light .section_head__title {
  color: #ffffff;
}
.section_head--light .section_head__desc {
  color: rgba(255, 255, 255, 0.7);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  padding: 12rem 28rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15rem;
  cursor: pointer;
  border: none;
}
.btn_primary {
  background: var(--primary);
  color: #fff;
}
.btn_outline {
  background: transparent;
  color: var(--primary);
  border: 1rem solid rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}
@keyframes jovoPlayRing1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.75);
    opacity: 0;
  }
}
@keyframes jovoPlayRing2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.jovo_play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80rem;
  height: 80rem;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}
.jovo_play_btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.jovo_play_btn__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  pointer-events: none;
}
.jovo_play_btn__ring--1 {
  border: 2rem solid rgba(219, 71, 19, 0.55);
  animation: jovoPlayRing1 2s ease-out infinite;
  background-color: rgba(219, 71, 19, 0.55);
}
.jovo_play_btn__ring--2 {
  border: 2rem solid rgba(255, 140, 90, 0.4);
  animation: jovoPlayRing2 2s ease-out infinite;
  animation-delay: 0.5s;
  background-color: rgba(255, 140, 90, 0.4);
}
.jovo_play_btn__core {
  position: relative;
  z-index: 2;
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.jovo_play_btn__icon {
  width: 0;
  height: 0;
  border-top: 12rem solid transparent;
  border-bottom: 12rem solid transparent;
  border-left: 20rem solid #ffffff;
  margin-left: 6rem;
}
.jovo_play_btn:hover .jovo_play_btn__core {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}
.page_banner {
  position: relative;
  width: 100%;
  height: 500rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page_banner .page_banner__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.page_banner .page_banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 175rem 320rem 0;
  box-sizing: border-box;
}
.page_banner .page_banner__inner .page_banner__title {
  font-family: var(--font-serif);
  font-size: 72rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 4rem;
  line-height: 102rem;
}
.page_banner .page_banner__inner .page_banner__subtitle {
  font-size: 28rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 58rem;
}
.pagination {
  width: 1400rem;
  max-width: 100%;
  margin: 60rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8rem;
}
.pagination .pagination__total {
  font-family: var(--font-serif);
  font-size: 14rem;
  color: #666666;
  margin-right: 16rem;
  line-height: 1;
}
.pagination .pagination__btn,
.pagination .pagination__num {
  font-family: var(--font-serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36rem;
  height: 36rem;
  padding: 0 10rem;
  font-size: 14rem;
  color: #666666;
  background-color: #ffffff;
  border: 1rem solid #e0e0e0;
  border-radius: 4rem;
  line-height: 1;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.pagination .pagination__btn:hover,
.pagination .pagination__num:hover {
  border-color: #db4713;
  color: #db4713;
}
.pagination .pagination__num--active {
  background-color: #db4713;
  border-color: #db4713;
  color: #ffffff;
}
.pagination .pagination__num--active:hover {
  background-color: #db4713;
  border-color: #db4713;
  color: #ffffff;
}
.pagination .pagination__ellipsis {
  font-family: var(--font-serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36rem;
  height: 36rem;
  font-size: 14rem;
  color: #999999;
  line-height: 1;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 100rem;
  padding: 0rem 40rem;
  overflow: visible;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  background: #fff;
  box-shadow: 0 6rem 20rem rgba(0, 0, 0, 0.08);
}
header.scrolled .nav_container .nav_links {
  height: 100%;
}
header.scrolled .nav_container .nav_links .nav_link {
  color: #333;
}
header.scrolled .nav_container .nav_links .nav_link:hover {
  color: #333;
}
header.scrolled .nav_container .nav_links .nav_link.active {
  color: #333;
}
header.scrolled .nav_container .nav_links .nav_dropdown .nav_sub_link {
  color: #333;
}
header.scrolled .nav_container .nav_links .nav_dropdown .nav_sub_link:hover,
header.scrolled .nav_container .nav_links .nav_dropdown .nav_sub_link.active {
  color: var(--primary);
}
header .nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
header .nav_container .logo {
  display: flex;
  align-items: center;
}
header .nav_container .logo img {
  height: 40rem;
  width: auto;
}
header .nav_container .nav_links {
  display: flex;
  gap: 32rem;
  height: 100%;
  align-items: center;
  overflow: visible;
}
header .nav_container .nav_links .nav_link {
  display: block;
  height: 100%;
  line-height: 100rem;
  font-size: 16rem;
  color: #fff;
  letter-spacing: 0.5rem;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}
header .nav_container .nav_links .nav_link::after {
  content: '';
  position: absolute;
  bottom: 20rem;
  left: 0;
  width: 0;
  height: 2rem;
  background: var(--primary);
  transition: width 0.3s;
}
header .nav_container .nav_links .nav_link:hover {
  color: #fff;
}
header .nav_container .nav_links .nav_link:hover::after {
  width: 100%;
}
header .nav_container .nav_links .nav_link.active {
  color: #fff;
}
header .nav_container .nav_links .nav_link.active::after {
  width: 100%;
}
header .nav_container .nav_links > div {
  position: relative;
  overflow: visible;
  height: 100%;
}
header .nav_container .nav_links > div .nav_dropdown {
  position: absolute;
  top: 100rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200rem;
  background: #fff;
  box-shadow: 0 8rem 24rem rgba(0, 0, 0, 0.08);
  padding: 0 30rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1001;
}
header .nav_container .nav_links > div .nav_dropdown::before {
  content: '';
  position: absolute;
  top: -8rem;
  left: 0;
  right: 0;
  height: 8rem;
}
header .nav_container .nav_links > div .nav_dropdown .nav_sub_link {
  display: block;
  padding: 16rem 40rem;
  font-size: 16rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.5rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  transition: color 0.2s ease;
  border-bottom: 1rem solid #EEEEEE;
}
header .nav_container .nav_links > div .nav_dropdown .nav_sub_link:last-child {
  border-bottom: none;
}
header .nav_container .nav_links > div .nav_dropdown .nav_sub_link:hover,
header .nav_container .nav_links > div .nav_dropdown .nav_sub_link.active {
  color: var(--primary);
}
header .nav_container .nav_links > div .nav_dropdown .nav_sub_link.active {
  font-weight: 500;
}
header .nav_container .nav_links > div:hover .nav_dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .nav_container .nav_cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10rem 24rem;
  border-radius: var(--radius-sm);
}
header .nav_container .nav_cta:hover {
  background: var(--primary-dark);
}
header .nav_container .nav_cta::after {
  display: none;
}
.page_index .hero {
  height: 920rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}
.page_index .hero h1 {
  font-family: var(--font-serif);
  font-size: 110rem;
  font-weight: 900;
  margin-bottom: 50rem;
  letter-spacing: 6rem;
  line-height: 1.2;
}
.page_index .hero h1 .highlight {
  color: var(--primary);
  position: relative;
}
.page_index .hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 100%;
  height: 8rem;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 4rem;
}
.page_index .hero p {
  font-size: 20rem;
  font-weight: 300;
  margin-bottom: 50rem;
  opacity: 0.9;
  max-width: 600rem;
  margin-left: auto;
  margin-right: auto;
}
.page_index .hero .hero_swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page_index .hero .hero_swiper .swiper-wrapper,
.page_index .hero .hero_swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.page_index .hero .hero_swiper .swiper-slide {
  overflow: hidden;
}
.page_index .hero .hero_swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_index .hero .hero_swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.page_index .hero .hero_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_index .hero .hero_nav_prev,
.page_index .hero .hero_nav_next {
  position: absolute;
  top: 50%;
  width: 56rem;
  height: 56rem;
  margin-top: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  opacity: 0.4;
  transition: background 0.3s ease, opacity 0.3s ease;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}
.page_index .hero .hero_nav_prev::after,
.page_index .hero .hero_nav_next::after {
  font-size: 20rem;
  font-weight: 700;
}
.page_index .hero .hero_nav_prev:hover,
.page_index .hero .hero_nav_next:hover {
  background: var(--primary);
  opacity: 1;
}
.page_index .hero .hero_nav_prev {
  left: 40rem;
  transform: translateY(-50%);
}
.page_index .hero .hero_nav_next {
  right: 40rem;
  transform: translateY(-50%);
}
.page_index .hero .hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.65) 50%, rgba(218, 71, 19, 0.25) 100%);
  z-index: -1;
}
.page_index .hero .hero_content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 900rem;
  padding: 0 20rem;
}
.page_index .hero .hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 8rem 20rem;
  border-radius: 30rem;
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30rem;
  backdrop-filter: blur(10rem);
}
.page_index .hero .hero_badge i {
  color: var(--primary);
}
.page_index .hero .hero_btns {
  display: flex;
  gap: 16rem;
  justify-content: center;
}
.page_index .hero .hero_carousel_progress {
  position: absolute;
  bottom: 40rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12rem;
  z-index: 10;
}
.page_index .hero .hero_carousel_progress .swiper-pagination-bullet {
  width: 30rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  opacity: 1;
  margin: 0 !important;
}
.page_index .hero .hero_carousel_progress .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  border-radius: 2rem;
  transition: width 0.3s ease;
}
.page_index .hero .hero_carousel_progress .swiper-pagination-bullet-active {
  width: 50rem;
}
.page_index .hero .hero_carousel_progress .swiper-pagination-bullet-active::after {
  width: 100%;
}
.page_index .about_section {
  background: var(--bg-gray);
}
.page_index .about_section .about_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80rem;
  align-items: center;
}
.page_index .about_section .about_text h3 {
  font-family: var(--font-serif);
  font-size: 30rem;
  color: var(--secondary);
  margin-bottom: 24rem;
  line-height: 1.4;
}
.page_index .about_section .about_text p {
  color: var(--text-gray);
  margin-bottom: 20rem;
  font-size: 15rem;
  line-height: 1.9;
  text-align: justify;
}
.page_index .about_section .about_features {
  display: flex;
  gap: 30rem;
  margin-top: 30rem;
}
.page_index .about_section .about_feature {
  display: flex;
  align-items: center;
  gap: 12rem;
}
.page_index .about_section .about_feature span {
  font-size: 14rem;
  font-weight: 600;
  color: var(--secondary);
}
.page_index .about_section .about_feature .about_feature_icon {
  width: 44rem;
  height: 44rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18rem;
}
.page_index .about_section .about_images {
  position: relative;
  border-radius: 20rem;
}
.page_index .about_section .about_images::before {
  content: '';
  position: absolute;
  top: 30rem;
  left: -20rem;
  right: 20rem;
  bottom: -20rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  opacity: 0;
}
.page_index .about_section .about_images::after {
  content: '';
  position: absolute;
  top: 60rem;
  left: 60rem;
  right: -60rem;
  bottom: -60rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius-lg);
  z-index: -2;
  opacity: 0;
}
.page_index .about_section .about_img_main {
  width: 100%;
  height: 450rem;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  position: relative;
  background-image: url('../webImages/about.jpg');
  background-size: cover;
  background-position: center;
}
.page_index .about_section .about_more {
  margin-top: 30rem;
}
.page_index .about_section .about_more a {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  color: var(--primary);
  font-size: 15rem;
  font-weight: 500;
}
.page_index .about_section .stats_bar {
  background: var(--primary);
  padding: 30rem 0;
  margin-top: -80rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.page_index .about_section .stats_bar.about_stats {
  margin-top: 80rem;
}
.page_index .about_section .stats_bar .stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
}
.page_index .about_section .stats_bar .stat_item {
  text-align: center;
  padding: 30rem 30rem 20rem 30rem;
  border-right: 1rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20rem;
  justify-content: center;
  text-align: left;
}
.page_index .about_section .stats_bar .stat_item:last-child {
  border-right: none;
}
.page_index .about_section .stats_bar .stat_item:hover .stat_num {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.page_index .about_section .stats_bar .stat_item .stat_icon {
  font-size: 48rem;
  color: #fff;
  opacity: 0.9;
  flex-shrink: 0;
  width: 60rem;
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_index .about_section .stats_bar .stat_item .stat_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
.page_index .about_section .stats_bar .stat_item .stat_content .stat_num {
  font-family: var(--font-serif);
  font-size: 50rem;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 4rem 12rem rgba(0, 0, 0, 0.15);
}
.page_index .about_section .stats_bar .stat_item .stat_content .stat_num .counter {
  font-family: var(--font-serif);
  color: inherit;
}
.page_index .about_section .stats_bar .stat_item .stat_content .stat_num span {
  font-family: inherit;
  color: #fff;
  font-size: 24rem;
  margin-left: 4rem;
  font-weight: 700;
}
.page_index .about_section .stats_bar .stat_item .stat_content .stat_desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15rem;
  font-weight: 500;
}
.page_index .client_section {
  background: var(--bg-white);
  padding: 80rem 0;
}
.page_index .client_section .client_title {
  text-align: center;
  color: var(--text-gray);
  font-size: 28rem;
  font-weight: 600;
  margin-bottom: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20rem;
}
.page_index .client_section .client_title::before {
  content: '';
  width: 100rem;
  height: 1rem;
  background: linear-gradient(to right, transparent, #ccc);
  border-radius: 2rem;
}
.page_index .client_section .client_title::after {
  content: '';
  width: 100rem;
  height: 1rem;
  background: linear-gradient(to left, transparent, #ccc);
  border-radius: 2rem;
}
.page_index .client_section .client_swiper {
  overflow: hidden;
}
.page_index .client_section .client_swiper .swiper-slide {
  height: auto;
}
.page_index .client_section .client_logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24rem;
}
.page_index .client_section .client_logo_item {
  background: var(--bg-light);
  padding: 30rem 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1rem solid transparent;
  height: 100rem;
}
.page_index .client_section .client_logo_item img {
  max-width: 100%;
  max-height: 80rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.page_index .client_section .client_carousel_progress {
  display: flex;
  justify-content: center;
  gap: 12rem;
  margin-top: 30rem;
}
.page_index .client_section .client_carousel_progress .client_progress_dot {
  width: 30rem;
  height: 4rem;
  background: rgba(218, 71, 19, 0.3);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}
.page_index .client_section .client_carousel_progress .client_progress_dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  border-radius: 2rem;
}
.page_index .client_section .client_carousel_progress .client_progress_dot.active {
  width: 40rem;
}
.page_index .client_section .client_carousel_progress .client_progress_dot.active::after {
  width: 100%;
}
.page_index .model_section {
  background: var(--secondary);
  padding: 80rem 0;
  position: relative;
  overflow: hidden;
}
.page_index .model_section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../webImages/bg3.png) no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  z-index: 0;
  opacity: 0.24;
}
.page_index .model_section .container {
  position: relative;
  z-index: 1;
}
.page_index .model_section .model_tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 6rem;
  border-radius: 50rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.page_index .model_section .model_tab {
  padding: 12rem 28rem;
  font-size: 16rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 500;
  border-radius: 50rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.page_index .model_section .model_tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.page_index .model_section .model_tab.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.page_index .model_section .model_image_box {
  max-width: 1280rem;
  margin: 0 auto;
  border: 2rem solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.page_index .model_section .model_image_box .model_image_header {
  padding: 16rem 24rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1rem solid rgba(255, 255, 255, 0.1);
}
.page_index .model_section .model_image_box .model_image_header .model_image_title {
  color: #fff;
  font-size: 18rem;
  font-weight: 600;
}
.page_index .model_section .model_image_box .model_image_header .model_image_nav {
  display: flex;
  gap: 10rem;
}
.page_index .model_section .model_image_box .model_image_header .model_image_nav .model_image_nav_btn {
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.page_index .model_section .model_image_box .model_image_header .model_image_nav .model_image_nav_btn:hover {
  background: var(--primary);
}
.page_index .model_section .model_content {
  padding: 0;
  position: relative;
}
.page_index .model_section .model_swiper {
  overflow: hidden;
  height: 620rem;
}
.page_index .model_section .model_swiper .swiper-wrapper {
  align-items: center;
}
.page_index .model_section .model_swiper .swiper-slide {
  height: 600rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_index .model_section .model_panel {
  display: block;
  width: 100%;
}
.page_index .model_section .model_panel img {
  width: auto;
  max-width: 96%;
  max-height: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}
.page_index .model_section .model_panel.active {
  display: block;
}
.page_index .model_section .process_steps {
  display: flex;
  justify-content: space-between;
  padding: 30rem 40rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1rem solid rgba(255, 255, 255, 0.1);
}
.page_index .model_section .process_step {
  text-align: center;
  flex: 1;
  position: relative;
}
.page_index .model_section .process_step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20rem;
  right: -50%;
  width: 100%;
  height: 2rem;
  background: linear-gradient(to right, var(--primary), transparent);
}
.page_index .model_section .process_step .step_num {
  font-family: var(--font-serif);
  width: 40rem;
  height: 40rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 10rem;
  position: relative;
  z-index: 1;
}
.page_index .model_section .process_step .step_title {
  font-size: 13rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4rem;
}
.page_index .model_section .process_step .step_desc {
  font-size: 11rem;
  color: var(--text-gray);
}
.page_index .humanity_section {
  background: var(--bg-white);
}
.page_index .humanity_section .humanity_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80rem;
  align-items: center;
}
.page_index .humanity_section .humanity_content h3 {
  font-family: var(--font-serif);
  font-size: 28rem;
  color: var(--secondary);
  margin-bottom: 20rem;
}
.page_index .humanity_section .humanity_content > p {
  color: var(--text-gray);
  font-size: 15rem;
  line-height: 1.9;
  margin-bottom: 30rem;
  text-align: justify;
}
.page_index .humanity_section .humanity_features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20rem;
  margin-bottom: 30rem;
}
.page_index .humanity_section .humanity_feature {
  display: flex;
  align-items: center;
  gap: 12rem;
}
.page_index .humanity_section .humanity_feature .humanity_feature_icon {
  width: 36rem;
  height: 36rem;
  background: rgba(218, 71, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14rem;
  flex-shrink: 0;
}
.page_index .humanity_section .humanity_feature .humanity_feature_text h6 {
  font-size: 14rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 2rem;
}
.page_index .humanity_section .humanity_feature .humanity_feature_text p {
  font-size: 12rem;
  color: var(--text-gray);
}
.page_index .humanity_section .humanity_badge {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  background: var(--bg-cream);
  padding: 12rem 20rem;
  border-radius: var(--radius-md);
  border-left: 3rem solid var(--primary);
}
.page_index .humanity_section .humanity_badge i {
  color: var(--primary);
  font-size: 20rem;
}
.page_index .humanity_section .humanity_badge span {
  font-size: 13rem;
  color: var(--text-gray);
}
.page_index .humanity_section .humanity_img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450rem;
  background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.page_index .humanity_section .humanity_img .humanity_img_badge {
  position: absolute;
  bottom: 20rem;
  left: 20rem;
  background: var(--primary);
  color: #fff;
  padding: 10rem 16rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 13rem;
  font-weight: 600;
  z-index: 2;
}
.page_index .humanity_section .humanity_more {
  margin-top: 30rem;
}
.page_index .humanity_section .humanity_more a {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  color: var(--primary);
  font-size: 15rem;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}
.page_index .humanity_section .humanity_more a:hover {
  color: #b33a0f;
  transform: translateX(6rem);
}
.page_index .services_section {
  background: var(--bg-gray);
  padding: 80rem 0;
}
.page_index .services_section .services_tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50rem;
  background: rgba(26, 26, 46, 0.08);
  padding: 6rem;
  border-radius: 50rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.page_index .services_section .service_tab {
  padding: 12rem 28rem;
  font-size: 16rem;
  background: transparent;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-weight: 500;
  border-radius: 50rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.page_index .services_section .service_tab:hover:not(.active) {
  background: rgba(26, 26, 46, 0.08);
  color: var(--text-dark);
}
.page_index .services_section .service_tab.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.page_index .services_section .service_panels {
  position: relative;
}
.page_index .services_section .service_panel {
  display: none;
}
.page_index .services_section .service_panel.active {
  display: block;
}
.page_index .services_section .service_panel .service_showcase {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  margin-bottom: 10rem;
  align-items: start;
  border-radius: 12rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.page_index .services_section .service_panel .service_showcase .showcase_main {
  position: relative;
  border-radius: 12rem 0 0 12rem;
  overflow: hidden;
  box-shadow: 0 10rem 40rem rgba(0, 0, 0, 0.15);
}
.page_index .services_section .service_panel .service_showcase .showcase_main .showcase_image {
  display: none;
  background-size: cover;
  background-position: center;
  height: 400rem;
}
.page_index .services_section .service_panel .service_showcase .showcase_main .showcase_image.active {
  display: block;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=800&h=600&fit=crop');
}
.page_index .services_section .service_panel .service_showcase .showcase_detail {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40rem;
  background: linear-gradient(90deg, #DB4713 0%, #DB4713 10%, rgba(255, 226, 215, 0.2) 100%);
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .showcase_detail_bglogo {
  position: absolute;
  bottom: 20rem;
  right: 20rem;
  width: 100rem;
  height: 100rem;
  background-image: url('../webImages/bglogofff.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .detail_item {
  display: none;
  position: relative;
  z-index: 1;
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .detail_item h4 {
  font-size: 30rem;
  color: #fff;
  margin-bottom: 20rem;
  font-weight: 700;
  position: relative;
  margin-top: -30rem;
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .detail_item p {
  font-size: 15rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 48rem;
  width: 78%;
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .detail_item.active {
  display: block;
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .detail_item .detail_num {
  font-family: var(--font-serif);
  font-size: 120rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 10rem;
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .detail_item .detail_link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 14rem;
  transition: all 0.3s ease;
}
.page_index .services_section .service_panel .service_showcase .showcase_detail .detail_item .detail_link:hover {
  color: #fff;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper {
  overflow: hidden;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .showcase_thumbs {
  display: flex;
  gap: 0;
  padding: 20rem 0 0 0;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .swiper-slide {
  height: 140rem;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .thumb_item {
  cursor: pointer;
  border-radius: 8rem;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 1;
  background-size: cover;
  background-position: center;
  height: 140rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .thumb_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .thumb_item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 9;
  border-radius: inherit;
  border: 0 solid var(--primary);
  box-sizing: border-box;
  pointer-events: none;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .thumb_item:hover {
  opacity: 1;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .thumb_item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8rem;
  font-size: 12rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page_index .services_section .service_panel .showcase_thumbs_swiper .thumb_item.active::before {
  border-width: 4rem;
}
.page_index .services_section .service_card {
  background: var(--bg-white);
  padding: 36rem 28rem;
  border-radius: var(--radius-lg);
  border: 1rem solid transparent;
  position: relative;
  overflow: hidden;
}
.page_index .services_section .service_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
}
.page_index .services_section .service_card h4 {
  font-size: 18rem;
  color: var(--secondary);
  margin-bottom: 12rem;
  font-weight: 700;
}
.page_index .services_section .service_card p {
  font-size: 13rem;
  color: var(--text-gray);
  line-height: 1.8;
}
.page_index .services_section .service_card .service_card_num {
  font-family: var(--font-serif);
  font-size: 56rem;
  color: rgba(26, 26, 46, 0.06);
  font-weight: 900;
  position: absolute;
  top: 10rem;
  right: 20rem;
}
.page_index .services_section .service_card .service_card_icon {
  width: 50rem;
  height: 50rem;
  background: rgba(218, 71, 19, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22rem;
  margin-bottom: 20rem;
}
.page_index .industry_section {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 80rem 0;
}
.page_index .industry_section .container .accordion_gallery {
  display: flex;
  gap: 16rem;
  height: 460rem;
  width: 100%;
  max-width: 1400rem;
  margin: 0 auto;
}
.page_index .industry_section .container .accordion_item {
  position: relative;
  flex: 1;
  min-width: 80rem;
  border-radius: 20rem;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10rem 40rem rgba(0, 0, 0, 0.15);
}
.page_index .industry_section .container .accordion_item:hover {
  box-shadow: 0 20rem 60rem rgba(0, 0, 0, 0.25);
}
.page_index .industry_section .container .accordion_item.active {
  flex: 4;
}
.page_index .industry_section .container .accordion_item.active .accordion_overlay {
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(26, 26, 46, 0.1) 100%);
}
.page_index .industry_section .container .accordion_item.active .accordion_overlay .accordion_content {
  transform: translateY(0);
  opacity: 1;
}
.page_index .industry_section .container .accordion_item.active .accordion_overlay .accordion_content h5 {
  font-size: 32rem;
  margin-bottom: 12rem;
}
.page_index .industry_section .container .accordion_item.active .accordion_overlay .accordion_content p {
  max-height: 100rem;
  opacity: 1;
  font-size: 15rem;
  margin-bottom: 20rem;
}
.page_index .industry_section .container .accordion_item.active .accordion_overlay .accordion_content .accordion_btn {
  opacity: 1;
  transform: translateY(0);
}
.page_index .industry_section .container .accordion_item.active .accordion_overlay .accordion_content .accordion_stats {
  opacity: 1;
  transform: translateY(0);
}
.page_index .industry_section .container .accordion_item.active .accordion_badge {
  opacity: 1;
  transform: translateY(0);
}
.page_index .industry_section .container .accordion_item .accordion_badge {
  position: absolute;
  top: 24rem;
  left: 24rem;
  background: var(--primary);
  color: #fff;
  padding: 10rem 20rem;
  border-radius: 30rem;
  font-size: 13rem;
  font-weight: 700;
  letter-spacing: 1rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-20rem);
  transition: all 0.4s ease 0.1s;
}
.page_index .industry_section .container .accordion_item .accordion_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.98) 0%, rgba(26, 26, 46, 0.7) 40%, rgba(26, 26, 46, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30rem;
  transition: all 0.5s ease;
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content {
  transform: translateY(110rem);
  opacity: 0.8;
  transition: all 0.5s ease;
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content h5 {
  color: #fff;
  font-size: 18rem;
  font-weight: 700;
  margin-bottom: 8rem;
  white-space: nowrap;
  transition: all 0.4s ease;
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_stats {
  display: flex;
  gap: 30rem;
  margin-bottom: 24rem;
  opacity: 0;
  transform: translateY(20rem);
  transition: all 0.4s ease 0.1s;
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_stats .stat_item .stat_num {
  font-family: var(--font-serif);
  font-size: 40rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 2rem 10rem rgba(0, 0, 0, 0.55);
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_stats .stat_item .stat_label {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4rem;
  text-transform: uppercase;
  letter-spacing: 1rem;
  text-shadow: 0 1rem 6rem rgba(0, 0, 0, 0.45);
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_btn {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  padding: 12rem 28rem 12rem 0;
  background: transparent;
  color: #f5f5f5;
  border-radius: 30rem;
  font-size: 14rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20rem);
  transition: all 0.4s ease 0.15s;
  text-decoration: none;
  width: fit-content;
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_btn:hover {
  color: var(--primary);
  transform: translateY(-2rem);
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_btn:hover i {
  transform: translateX(4rem);
}
.page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_btn i {
  transition: transform 0.3s ease;
}
.page_index .industry_section .container .industry_more_btn {
  text-align: center;
  margin-top: 60rem;
}
.page_index .industry_section .container .industry_more_btn a {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  padding: 16rem 48rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50rem;
  font-weight: 700;
  font-size: 16rem;
  transition: all 0.4s ease;
}
.page_index .industry_section .container .industry_more_btn a:hover {
  background: var(--primary-dark);
  transform: translateY(-3rem);
}
@media (max-width: 992px) {
  .page_index .industry_section .container .accordion_gallery {
    height: 400rem;
    gap: 12rem;
  }
  .page_index .industry_section .container .accordion_item.active .accordion_content h5 {
    font-size: 24rem;
  }
  .page_index .industry_section .container .accordion_stats .stat_num {
    font-family: var(--font-serif);
    font-size: 28rem;
  }
}
@media (max-width: 768px) {
  .page_index .industry_section .container .accordion_gallery {
    flex-direction: column;
    height: auto;
    gap: 16rem;
  }
  .page_index .industry_section .container .accordion_item {
    min-width: auto;
    height: 200rem;
    flex: none !important;
  }
  .page_index .industry_section .container .accordion_item.active {
    height: 350rem;
  }
  .page_index .industry_section .container .accordion_item.active .accordion_content h5 {
    font-size: 24rem;
  }
  .page_index .industry_section .container .accordion_item .accordion_badge {
    opacity: 1;
    transform: translateY(0);
  }
  .page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content {
    opacity: 1;
    transform: translateY(0);
  }
  .page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content h5 {
    font-size: 20rem;
  }
  .page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content p {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
  }
  .page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_stats {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
    margin-bottom: 16rem;
  }
  .page_index .industry_section .container .accordion_item .accordion_overlay .accordion_content .accordion_btn {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
  }
}
.page_index .video_section {
  background: var(--secondary);
  padding: 80rem 0;
  position: relative;
  overflow: hidden;
}
.page_index .video_section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../webImages/bg2.png) no-repeat;
  background-size: 100%;
  background-position-x: center;
  background-position-y: 50rem;
  z-index: 0;
  opacity: 0.08;
}
.page_index .video_section .container {
  position: relative;
  z-index: 1;
}
.page_index .video_section .video_slider_container {
  position: relative;
  max-width: 1280rem;
  height: 750rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.page_index .video_section .video_slider_container .video_slider {
  display: flex;
  height: 100%;
}
.page_index .video_section .video_slider_container .video_slide {
  width: 100%;
  min-width: 60%;
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.page_index .video_section .video_slider_container .video_slide .video_slide_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40rem;
}
.page_index .video_section .video_slider_container .video_slide .video_slide_overlay .video_slide_content h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 32rem;
  margin-bottom: 10rem;
}
.page_index .video_section .video_slider_container .video_slide .video_slide_overlay .video_slide_content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16rem;
}
.page_index .video_section .video_slider_container .video_slide .jovo_play_btn {
  width: 90rem;
  height: 90rem;
}
.page_index .video_section .video_slider_container .video_slide .jovo_play_btn__ring {
  width: 90rem;
  height: 90rem;
}
.page_index .video_section .video_slider_container .video_slide .jovo_play_btn__core {
  width: 90rem;
  height: 90rem;
}
.page_index .video_section .video_slider_container .video_slide .jovo_play_btn__icon {
  border-top-width: 14rem;
  border-bottom-width: 14rem;
  border-left-width: 22rem;
  margin-left: 8rem;
}
.page_index .video_section .video_slider_container .video_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56rem;
  height: 56rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20rem;
  cursor: pointer;
  border: none;
  opacity: 0.4;
  transition: all 0.3s ease;
  z-index: 20;
}
.page_index .video_section .video_slider_container .video_nav:hover {
  background: var(--primary);
  opacity: 1;
}
.page_index .video_section .video_slider_container .video_nav.prev {
  left: 20rem;
}
.page_index .video_section .video_slider_container .video_nav.next {
  right: 20rem;
}
.page_index .video_section .video_slider_container .video_dots {
  position: absolute;
  bottom: 30rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12rem;
  z-index: 10;
}
.page_index .video_section .video_slider_container .video_dots .video_dot {
  width: 30rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page_index .video_section .video_slider_container .video_dots .video_dot.active {
  background: var(--primary);
  width: 50rem;
}
.page_index .contact_section {
  background: var(--bg-white);
  padding: 80rem 0;
  position: relative;
}
.page_index .contact_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../webImages/footbg.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}
.page_index .contact_section .contact_form_container {
  max-width: 1280rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page_index .contact_section .contact_form_header {
  text-align: center;
  margin-bottom: 40rem;
}
.page_index .contact_section .contact_form_header h3 {
  font-family: var(--font-serif);
  font-size: 32rem;
  color: var(--secondary);
  margin-bottom: 12rem;
}
.page_index .contact_section .contact_form_header p {
  color: var(--text-gray);
  font-size: 15rem;
  line-height: 1.8;
  max-width: 500rem;
  margin: 0 auto 20rem;
}
.page_index .contact_section .contact_form_wrap {
  background: rgba(218, 71, 19, 0.1);
  padding: 80rem 100rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4rem 30rem rgba(0, 0, 0, 0.06);
  border: 1rem solid rgba(218, 71, 19, 0.1);
}
.page_index .contact_section .form_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
  margin-bottom: 16rem;
}
.page_index .contact_section .form_group {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.page_index .contact_section .form_group label {
  font-size: 15rem;
  font-weight: 600;
  color: var(--secondary);
}
.page_index .contact_section .form_group input {
  padding: 14rem 16rem;
  border: 1rem solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 14rem;
  font-family: var(--font-sans);
  background: #fff;
}
.page_index .contact_section .form_group input:focus {
  outline: none;
  border-color: var(--primary);
}
.page_index .contact_section .form_group select {
  padding: 14rem 16rem;
  border: 1rem solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 14rem;
  font-family: var(--font-sans);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.page_index .contact_section .form_group select:focus {
  outline: none;
  border-color: var(--primary);
}
.page_index .contact_section .form_group textarea {
  padding: 14rem 16rem;
  border: 1rem solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 14rem;
  font-family: var(--font-sans);
  background: #fff;
  resize: vertical;
  min-height: 100rem;
}
.page_index .contact_section .form_group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.page_index .contact_section .form_group.full {
  grid-column: span 2;
}
.page_index .contact_section .form_privacy {
  display: flex;
  align-items: center;
  gap: 10rem;
  margin: 24rem 0;
  font-size: 14rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.page_index .contact_section .form_privacy i {
  color: var(--primary);
  margin-top: 2rem;
}
.page_index .contact_section .form_submit {
  width: 60%;
  padding: 16rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  letter-spacing: 4rem;
  margin: 0 auto;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 1rem solid var(--primary);
}
.page_index .contact_section .form_submit:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-4rem);
  color: var(--primary);
}
footer {
  background: var(--secondary);
  color: #fff;
  padding: 80rem 0 20rem;
}
footer .footer_main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 40rem;
  margin-bottom: 60rem;
  align-items: start;
}
footer .footer_brand {
  width: 240rem;
  margin-right: 50rem;
}
footer .footer_brand .footer_logo {
  margin-bottom: 24rem;
}
footer .footer_brand .footer_logo img {
  height: 48rem;
  width: auto;
}
footer .footer_brand > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14rem;
  line-height: 1.8;
  margin-bottom: 28rem;
}
footer .footer_brand .footer_qr_section {
  display: flex;
  gap: 24rem;
}
footer .footer_brand .footer_qr_section .footer_qr_item {
  text-align: center;
}
footer .footer_brand .footer_qr_section .footer_qr_item span {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.7);
}
footer .footer_brand .footer_qr_section .footer_qr_item .footer_qr_box {
  width: 90rem;
  height: 90rem;
  background: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10rem;
  overflow: hidden;
  padding: 6rem;
  box-shadow: 0 4rem 15rem rgba(0, 0, 0, 0.1);
}
footer .footer_brand .footer_qr_section .footer_qr_item .footer_qr_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer_title {
  font-size: 16rem;
  font-weight: 600;
  margin-bottom: 24rem;
  color: #fff;
  position: relative;
  padding-bottom: 12rem;
}
footer .footer_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30rem;
  height: 2rem;
  background: var(--primary);
}
footer .footer_links li {
  margin-bottom: 12rem;
}
footer .footer_links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14rem;
  transition: color 0.3s ease;
}
footer .footer_links a:hover {
  color: #fff;
}
footer .footer_contact li {
  display: flex;
  align-items: flex-start;
  gap: 12rem;
  margin-bottom: 16rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14rem;
  line-height: 1.6;
}
footer .footer_contact i {
  color: var(--primary);
  margin-top: 5rem;
  flex-shrink: 0;
  width: 16rem;
}
footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20rem;
  border-top: 1rem solid rgba(255, 255, 255, 0.1);
}
footer .footer_bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13rem;
}
footer .footer_bottom_links {
  display: flex;
  gap: 32rem;
  font-size: 13rem;
}
footer .footer_bottom_links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13rem;
  transition: color 0.3s ease;
}
footer .footer_bottom_links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.page_expert {
  width: 100%;
  background-color: #ffffff;
  /* 组织咨询行业先行者 区 */
}
.page_expert .expert_intro {
  width: 100%;
  padding: 80rem 0;
  background-color: #ffffff;
}
.page_expert .expert_intro .expert_intro__video {
  width: 1000rem;
  height: 525rem;
  margin: 50rem auto 0;
  position: relative;
}
.page_expert .expert_intro .expert_intro__video #videoBox {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16rem;
}
.page_expert .expert_intro .expert_intro__stats {
  width: 600rem;
  margin: 38rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_expert .expert_intro .expert_intro__stats .expert_intro__stat {
  flex: 1;
  text-align: center;
}
.page_expert .expert_intro .expert_intro__stats .expert_intro__stat .expert_intro__stat_num {
  font-size: 50rem;
  color: #DB4713;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-serif);
}
.page_expert .expert_intro .expert_intro__stats .expert_intro__stat .expert_intro__stat_num .counter {
  font-family: var(--font-serif);
  color: inherit;
  font-weight: inherit;
}
.page_expert .expert_intro .expert_intro__stats .expert_intro__stat .expert_intro__stat_num .expert_intro__stat_unit {
  font-family: inherit;
  font-size: 24rem;
  margin-left: 5rem;
  font-weight: 400;
}
.page_expert .expert_intro .expert_intro__stats .expert_intro__stat .expert_intro__stat_label {
  font-size: 15rem;
  color: #333333;
  margin-top: 10rem;
  font-weight: 700;
  line-height: 1.1;
}
.page_expert .expert_intro .expert_intro__stats .expert_intro__stat_divider {
  width: 1rem;
  height: 68rem;
  background-color: #e5e5e5;
  flex-shrink: 0;
}
.page_expert .expert_intro .expert_intro__text {
  width: 1000rem;
  margin: 30rem auto 0;
  font-size: 16rem;
  color: #666666;
  line-height: 28rem;
  text-align: justify;
}
.page_expert,
.page_research {
  /* 专家团队 区 */
}
.page_expert .expert_team,
.page_research .expert_team {
  width: 100%;
  padding: 0 320rem 80rem;
  background-color: #ffffff;
}
.page_expert .expert_team .expert_team__grid,
.page_research .expert_team .expert_team__grid {
  margin: 60rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60rem;
}
.page_expert .expert_team .expert_team__grid .expert_card,
.page_research .expert_team .expert_team__grid .expert_card {
  width: 600rem;
  display: flex;
  height: 240rem;
  position: relative;
  padding-left: 100rem;
  box-sizing: border-box;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__photo,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__photo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 200rem;
  height: 240rem;
  flex-shrink: 0;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__photo img,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__photo img {
  width: 100%;
  height: 100%;
  border-radius: 8rem;
  display: block;
  object-fit: cover;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header {
  padding-top: 5rem;
  display: flex;
  gap: 40rem;
  padding-left: 110rem;
  box-sizing: border-box;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__name_row .expert_card__name,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__name_row .expert_card__name {
  width: 110rem;
  font-size: 32rem;
  color: #DB4713;
  font-weight: 700;
  line-height: 52rem;
  display: block;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__name_row .expert_card__en,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__name_row .expert_card__en {
  font-size: 12rem;
  color: #777777;
  line-height: 1.1;
  display: block;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__titles,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__titles {
  margin-top: 15rem;
  flex: 1;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__titles p,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__header .expert_card__titles p {
  font-size: 19rem;
  color: #1A1A2E;
  line-height: 28rem;
  font-weight: 700;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags {
  height: 130rem;
  background: linear-gradient(90deg, #db4713 50.633%, #db471380 100%);
  padding: 0rem 16rem;
  padding-left: 110rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags li,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags li {
  color: #fff;
  font-size: 12rem;
  line-height: 25rem;
  position: relative;
  padding-left: 14rem;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags li:last-child,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags li:last-child {
  margin-bottom: 0;
}
.page_expert .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags li::before,
.page_research .expert_team .expert_team__grid .expert_card .expert_card__body .expert_card__tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10rem;
  width: 4rem;
  height: 4rem;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.page_research {
  width: 100%;
  background-color: #ffffff;
  /* 山川研究院介绍 区 */
  /* 专家聚集横幅 区 */
}
.page_research .research_intro {
  width: 100%;
  padding: 80rem 320rem 0;
  background-color: #ffffff;
}
.page_research .research_intro .research_intro__main {
  margin: 70rem auto 0;
  display: flex;
  gap: 80rem;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}
.page_research .research_intro .research_intro__main .research_intro__left {
  width: 600rem;
  flex-shrink: 0;
}
.page_research .research_intro .research_intro__main .research_intro__left .research_intro__photo {
  width: 100%;
  height: 400rem;
  display: block;
  object-fit: cover;
  border-radius: 20rem;
}
.page_research .research_intro .research_intro__main .research_intro__right {
  flex: 1;
  padding-top: 30rem;
  box-sizing: border-box;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__stats {
  display: flex;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__stats .research_intro__stat .research_intro__stat_label {
  font-size: 44rem;
  color: #DB4713;
  font-weight: 700;
  line-height: 1;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__stats .research_intro__stat .research_intro__stat_num {
  font-family: var(--font-serif);
  font-size: 44rem;
  color: #DB4713;
  font-weight: 700;
  line-height: 1;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__stats .research_intro__stat .research_intro__stat_num .counter {
  font-family: var(--font-serif);
  color: inherit;
  font-weight: inherit;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__stats .research_intro__stat .research_intro__stat_num .research_intro__stat_plus {
  font-family: inherit;
  font-size: 36rem;
  font-weight: 700;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__stats .research_intro__stat .research_intro__stat_text {
  font-size: 15rem;
  color: #1A1A2E;
  margin-top: 12rem;
  line-height: 1.1;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__stats .research_intro__stat_divider {
  width: 1rem;
  height: 70rem;
  background-color: #e5e5e5;
  flex-shrink: 0;
  margin: 0 40rem;
}
.page_research .research_intro .research_intro__main .research_intro__right .research_intro__text {
  margin-top: 30rem;
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 28rem;
  text-align: justify;
}
.page_research .research_intro .research_intro__bottom {
  margin: 50rem auto 0;
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 28rem;
  text-align: justify;
}
.page_research .research_intro .research_intro__bottom p + p {
  margin-top: 0;
}
.page_research .research_expert_banner {
  width: 100%;
  padding: 50rem 320rem 40rem;
  background-color: #ffffff;
  margin-bottom: 40rem;
  position: relative;
}
.page_research .research_expert_banner .research_expert_banner__inner {
  border-radius: 16rem;
  overflow: hidden;
}
.page_research .research_expert_banner .research_expert_banner__inner .swiper-slide {
  width: 100%;
}
.page_research .research_expert_banner .research_expert_banner__inner .research_expert_banner__img {
  width: 100%;
  height: 442rem;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.page_research .research_expert_banner .research_expert_banner__inner:hover .research_expert_banner__img {
  transform: scale(1.02);
}
.page_research .research_expert_banner .research_expert_banner__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
  bottom: 0;
}
.page_research .research_expert_banner .research_expert_banner__dots .swiper-pagination-bullet {
  width: 30rem;
  height: 6rem;
  border-radius: 3rem;
  background-color: #dddddd;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.page_research .research_expert_banner .research_expert_banner__dots .swiper-pagination-bullet:hover {
  background-color: #DB4713;
  opacity: 0.8;
}
.page_research .research_expert_banner .research_expert_banner__dots .swiper-pagination-bullet-active {
  background-color: #DB4713;
  width: 40rem;
}
.page_contact {
  width: 100%;
  background-color: #ffffff;
}
.page_contact .contact_hotline {
  width: 100%;
  background-color: #F5F5F7;
  padding: 80rem 320rem;
}
.page_contact .contact_hotline .contact_hotline__inner {
  display: flex;
  justify-content: space-between;
}
.page_contact .contact_hotline .contact_hotline__col {
  flex: 1;
}
.page_contact .contact_hotline .contact_hotline__col--phone {
  padding-right: 60rem;
}
.page_contact .contact_hotline .contact_hotline__col--online {
  padding-left: 80rem;
}
.page_contact .contact_hotline .contact_hotline__divider {
  width: 1rem;
  height: 200rem;
  background-color: #e5e5e5;
  flex-shrink: 0;
}
.page_contact .contact_hotline .contact_hotline__label {
  font-size: 30rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
}
.page_contact .contact_hotline .contact_hotline__number {
  font-size: 36rem;
  color: #DB4713;
  font-weight: 700;
  margin-top: 80rem;
  line-height: 1.1;
  letter-spacing: 1rem;
  font-family: var(--font-serif);
}
.page_contact .contact_hotline .contact_hotline__online_body {
  display: flex;
  align-items: center;
}
.page_contact .contact_hotline .contact_hotline__wechat {
  margin-top: 40rem;
}
.page_contact .contact_hotline .contact_hotline__email {
  margin-top: 20rem;
}
.page_contact .contact_hotline .contact_hotline__wechat,
.page_contact .contact_hotline .contact_hotline__email {
  font-size: 15rem;
  color: #666666;
  line-height: 1.1;
}
.page_contact .contact_hotline .contact_hotline__btn {
  display: inline-block;
  margin-top: 30rem;
  width: 160rem;
  height: 40rem;
  background-color: #DB4713;
  color: #ffffff;
  font-size: 15rem;
  border-radius: 4rem;
  line-height: 1;
  text-align: center;
  line-height: 40rem;
}
.page_contact .contact_hotline .contact_hotline__qr {
  width: 120rem;
  height: 120rem;
  flex-shrink: 0;
  margin-left: 78rem;
}
.page_contact .contact_hotline .contact_hotline__qr img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 4rem;
}
.page_contact .contact_offices {
  width: 100%;
  background-color: #FFFFFF;
  padding: 80rem 320rem 0rem;
}
.page_contact .contact_offices .contact_offices__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20rem;
}
.page_contact .contact_offices .contact_offices__head .contact_offices__line_left {
  width: 100rem;
  height: 1rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, #cccccc00 0%, #cccccc 100%);
}
.page_contact .contact_offices .contact_offices__head .contact_offices__line_right {
  width: 100rem;
  height: 1rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, #cccccc 0%, #cccccc00 100%);
}
.page_contact .contact_offices .contact_offices__head .contact_offices__title {
  font-size: 28rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
  flex-shrink: 0;
}
.page_contact .contact_offices .contact_offices__grid {
  margin: 50rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30rem;
  justify-content: space-between;
}
.page_contact .contact_offices .contact_office_card {
  width: 620rem;
  height: 240rem;
  background-color: #ffffff;
  border-radius: 8rem;
  box-shadow: 0 4rem 20rem rgba(0, 0, 0, 0.06);
  padding: 40rem 40rem 40rem 60rem;
  box-sizing: border-box;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__head {
  display: flex;
  align-items: center;
  margin-bottom: 28rem;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__icon {
  width: 20rem;
  height: 20rem;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__name {
  font-size: 20rem;
  color: #333333;
  font-weight: 700;
  margin-left: 10rem;
  line-height: 1.1;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__row {
  margin-bottom: 30rem;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__row:last-child {
  margin-bottom: 0;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__label {
  font-size: 15rem;
  color: #999999;
  line-height: 1.1;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__value {
  font-size: 15rem;
  color: #1A1A2E;
  line-height: 1.1;
  margin-top: 6rem;
}
.page_contact .contact_offices .contact_office_card .contact_office_card__row:first-child .contact_office_card__value {
  font-family: var(--font-serif);
  font-weight: 600;
}
.page_contact .contact_form_section {
  width: 100%;
  padding: 80rem 0 100rem;
  position: relative;
  background-color: #ffffff;
}
.page_contact .contact_form_section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-image: url('../webImages/footbg.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.page_contact .contact_form_section .section_head {
  position: relative;
  z-index: 1;
  margin-bottom: 40rem;
}
.page_contact .contact_form_section .contact_form_section__box {
  position: relative;
  z-index: 1;
  width: 1280rem;
  margin: 0 auto;
}
.page_contact .contact_form_section .contact_form {
  background-color: rgba(218, 71, 19, 0.1);
  border: 1rem solid rgba(218, 71, 19, 0.1);
  border-radius: 16rem;
  padding: 70rem 90rem 60rem;
  box-shadow: 0 4rem 30rem rgba(0, 0, 0, 0.06);
}
.page_contact .contact_form_section .contact_form__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16rem;
}
.page_contact .contact_form_section .contact_form__group {
  width: calc(50% - 8rem);
}
.page_contact .contact_form_section .contact_form__group--full {
  width: 100%;
  margin-bottom: 0;
}
.page_contact .contact_form_section .contact_form__label {
  display: block;
  font-size: 15rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6rem;
  line-height: 1.4;
}
.page_contact .contact_form_section .contact_form__input,
.page_contact .contact_form_section .contact_form__select {
  width: 100%;
  padding: 14rem 16rem;
  border: 1rem solid #e0e0e0;
  border-radius: 4rem;
  font-size: 14rem;
  font-family: 'Noto Sans SC', sans-serif;
  background-color: #ffffff;
  color: #333333;
  outline: none;
}
.page_contact .contact_form_section .contact_form__input:focus,
.page_contact .contact_form_section .contact_form__select:focus {
  border-color: #db4713;
}
.page_contact .contact_form_section .contact_form__select {
  appearance: none;
  cursor: pointer;
}
.page_contact .contact_form_section .contact_form__textarea {
  width: 100%;
  height: 120rem;
  padding: 14rem 16rem;
  border: 1rem solid #e0e0e0;
  border-radius: 4rem;
  font-size: 14rem;
  font-family: 'Noto Sans SC', sans-serif;
  background-color: #ffffff;
  color: #333333;
  resize: none;
  outline: none;
}
.page_contact .contact_form_section .contact_form__textarea:focus {
  border-color: #db4713;
}
.page_contact .contact_form_section .contact_form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10rem;
  margin: 24rem 0 30rem;
  font-size: 14rem;
  color: #666666;
  line-height: 1.6;
}
.page_contact .contact_form_section .contact_form__privacy i {
  color: #db4713;
  font-size: 16rem;
  margin-top: 3rem;
  flex-shrink: 0;
}
.page_contact .contact_form_section .contact_form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  width: 60%;
  margin: 0 auto;
  padding: 16rem;
  background-color: #db4713;
  color: #ffffff;
  border: none;
  border-radius: 4rem;
  font-size: 16rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 4rem;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: 1rem solid var(--primary);
}
.page_contact .contact_form_section .contact_form__submit i {
  font-size: 16rem;
}
.page_contact .contact_form_section .contact_form__submit:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-4rem);
  color: var(--primary);
}
.case_card {
  display: flex;
  align-items: stretch;
  background-color: #F9F9F9;
  margin-bottom: 30rem;
  overflow: hidden;
  border-radius: 10rem;
  box-shadow: 0 2rem 16rem rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.case_card:last-of-type {
  margin-bottom: 0;
}
.case_card .case_card__media {
  position: relative;
  width: 400rem;
  flex-shrink: 0;
  overflow: hidden;
}
.case_card .case_card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case_card .case_card__tag {
  position: absolute;
  top: 20rem;
  left: 20rem;
  padding: 8rem 18rem;
  background-color: #DB4713;
  color: #ffffff;
  font-size: 15rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 6rem;
  z-index: 2;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.case_card .case_card__body {
  flex: 1;
  padding: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case_card .case_card__title {
  font-size: 24rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
  transition: color 0.3s ease;
}
.case_card .case_card__subtitle {
  font-size: 15rem;
  color: #5A5A6E;
  margin-top: 10rem;
  line-height: 1.1;
  transition: color 0.3s ease;
}
.case_card .case_card__desc {
  font-size: 15rem;
  color: #999999;
  margin-top: 20rem;
  line-height: 28rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.case_card .case_card__link {
  display: inline-block;
  margin-top: 24rem;
  font-size: 15rem;
  color: #DB4713;
  font-weight: 600;
  line-height: 1;
  transition: color 0.3s ease;
}
.case_card .case_card__link:hover {
  color: #b33a0f;
}
.case_card:hover {
  background-color: #DB4713;
  box-shadow: 0 8rem 30rem rgba(219, 71, 19, 0.25);
}
.case_card:hover .case_card__img {
  transform: scale(1.05);
}
.case_card:hover .case_card__tag {
  background-color: #ffffff;
  color: #db4713;
}
.case_card:hover .case_card__title,
.case_card:hover .case_card__subtitle,
.case_card:hover .case_card__desc {
  color: #ffffff;
}
.case_card:hover .case_card__link {
  color: #ffffff;
}
.case_card:hover .case_card__link:hover {
  color: #ffffff;
  opacity: 0.85;
}
.page_case {
  width: 100%;
  background-color: #f8f8f8;
}
.page_case .case_banner {
  position: relative;
  width: 100%;
  height: 580rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page_case .case_banner .case_banner__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.page_case .case_banner .case_banner__inner {
  position: relative;
  z-index: 2;
  width: 1400rem;
  margin: 0 auto;
  padding-top: 250rem;
}
.page_case .case_banner .case_banner__inner .case_banner__title {
  font-family: 'Noto Serif SC', serif;
  font-size: 64rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 4rem;
  line-height: 1.2;
}
.page_case .case_banner .case_banner__inner .case_banner__subtitle {
  font-size: 24rem;
  color: #ffffff;
  margin-top: 25rem;
  font-weight: 300;
  line-height: 1.5;
}
.page_case .case_filter {
  width: 100%;
  padding: 80rem 320rem 40rem;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_case .case_filter .case_filter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6rem;
  background-color: #eeeeee;
  border-radius: 30rem;
}
.page_case .case_filter .case_filter__btn {
  display: inline-block;
  padding: 0rem 30rem;
  min-width: 150rem;
  height: 46rem;
  line-height: 46rem;
  text-align: center;
  font-size: 16rem;
  color: #5A5A6E;
  font-weight: 500;
  border-radius: 24rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page_case .case_filter .case_filter__btn:hover {
  color: #DB4713;
  background-color: #e8e8e8;
}
.page_case .case_filter .case_filter__btn--active {
  background-color: #DB4713;
  color: #ffffff;
  font-weight: 600;
}
.page_case .case_filter .case_filter__btn--active:hover {
  background-color: #DB4713;
  color: #ffffff;
}
.page_case .case_list {
  width: 100%;
  padding: 0 320rem 80rem;
  background-color: #f8f8f8;
}
.page_case_show {
  width: 100%;
  background-color: #ffffff;
}
.page_case_show .case_show_banner {
  position: relative;
  width: 100%;
  height: 580rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page_case_show .case_show_banner .case_show_banner__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.page_case_show .case_show_banner .case_show_banner__inner {
  position: relative;
  z-index: 2;
  width: 1400rem;
  margin: 0 auto;
  padding-top: 250rem;
}
.page_case_show .case_show_banner .case_show_banner__inner .case_show_banner__title {
  font-family: 'Noto Serif SC', serif;
  font-size: 64rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 4rem;
  line-height: 1.2;
}
.page_case_show .case_show_banner .case_show_banner__inner .case_show_banner__subtitle {
  font-size: 24rem;
  color: #ffffff;
  margin-top: 25rem;
  font-weight: 300;
  line-height: 1.5;
}
.page_case_show .case_show_main {
  width: 100%;
  padding: 80rem 320rem 60rem;
  background-color: #ffffff;
}
.page_case_show .case_show_main .case_show_intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60rem;
  padding-bottom: 50rem;
  border-bottom: 1rem solid #eeeeee;
}
.page_case_show .case_show_main .case_show_intro__left {
  flex: 1;
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_case_show .case_show_main .case_show_intro__left .case_show_intro__logo {
  width: 360rem;
  height: auto;
  display: block;
}
.page_case_show .case_show_main .case_show_intro__left .case_show_intro__title {
  font-size: 30rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 50rem;
}
.page_case_show .case_show_main .case_show_intro__left .case_show_intro__desc {
  font-size: 15rem;
  color: #666666;
  line-height: 25rem;
  margin-top: 20rem;
  text-align: justify;
}
.page_case_show .case_show_main .case_show_intro__right {
  width: 620rem;
  flex-shrink: 0;
  position: relative;
}
.page_case_show .case_show_main .case_show_intro__swiper {
  width: 100%;
  overflow: hidden;
  border-radius: 16rem;
}
.page_case_show .case_show_main .case_show_intro__swiper .swiper-slide {
  width: 100%;
}
.page_case_show .case_show_main .case_show_intro__photo {
  width: 100%;
  height: 370rem;
  display: block;
  object-fit: cover;
  border-radius: 16rem;
}
.page_case_show .case_show_main .case_show_intro__dots {
  display: flex;
  justify-content: center;
  gap: 12rem;
  margin-top: 16rem;
}
.page_case_show .case_show_main .case_show_intro__dots .swiper-pagination-bullet {
  width: 40rem;
  height: 4rem;
  background-color: #dddddd;
  opacity: 1;
  margin: 0 !important;
  border-radius: 2rem;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.page_case_show .case_show_main .case_show_intro__dots .swiper-pagination-bullet-active {
  background-color: #DB4713;
}
.page_case_show .case_show_main .case_show_timeline {
  position: relative;
  padding-top: 50rem;
  padding-left: 320rem;
}
.page_case_show .case_show_main .case_show_timeline::before {
  content: '';
  position: absolute;
  left: 230rem;
  top: 60rem;
  bottom: 40rem;
  width: 1rem;
  background-color: #F8DAD0;
}
.page_case_show .case_show_main .case_show_block {
  position: relative;
  margin-bottom: 50rem;
}
.page_case_show .case_show_main .case_show_block:last-child {
  margin-bottom: 0;
}
.page_case_show .case_show_main .case_show_block .case_show_block__aside {
  position: absolute;
  left: -320rem;
  top: 0;
  width: 200rem;
  display: flex;
  align-items: center;
  gap: 12rem;
}
.page_case_show .case_show_main .case_show_block .case_show_block__dot {
  position: absolute;
  left: 218rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  z-index: 2;
  flex-shrink: 0;
}
.page_case_show .case_show_main .case_show_block .case_show_block__dot .case_show_block__dot__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.page_case_show .case_show_main .case_show_block .case_show_block__mark .case_show_block__mark__img {
  width: 20rem;
  height: 28rem;
  object-fit: contain;
  display: block;
}
.page_case_show .case_show_main .case_show_block .case_show_block__title {
  font-size: 28rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
.page_case_show .case_show_main .case_show_block .case_show_block__content {
  width: 100%;
}
.page_case_show .case_show_main .case_show_block .case_show_block__content p {
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 32rem;
  margin-bottom: 16rem;
  text-align: justify;
  margin-bottom: 10rem;
}
.page_case_show .case_show_main .case_show_block .case_show_block__subtitle {
  font-size: 15rem;
  color: #5A5A6E;
  font-weight: 700;
  line-height: 25rem;
  margin-bottom: 16rem;
}
.page_case_show .case_show_main .case_show_block .case_show_block__text {
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 25rem;
  margin-bottom: 16rem;
  text-align: justify;
}
.page_case_show .case_show_main .case_show_block .case_show_block__text:last-child {
  margin-bottom: 0;
}
.page_case_show .case_show_main .case_show_block .case_show_block__img {
  width: 640rem;
  height: auto;
  display: block;
  margin-top: 30rem;
  object-fit: cover;
  border-radius: 16rem;
}
.page_case_show .case_show_main .case_show_block .case_show_overview li {
  display: flex;
  align-items: flex-start;
  font-size: 15rem;
  color: #666666;
  line-height: 2;
  margin-bottom: 8rem;
}
.page_case_show .case_show_main .case_show_block .case_show_overview li:last-child {
  margin-bottom: 0;
}
.page_case_show .case_show_main .case_show_block .case_show_overview .case_show_overview__key {
  color: #333333;
  font-weight: 600;
  flex-shrink: 0;
  margin-right: 8rem;
}
.page_case_show .case_show_main .case_show_block .case_show_overview .case_show_overview__key::after {
  content: '：';
}
.page_case_show .case_show_main .case_show_block .case_show_overview .case_show_overview__val {
  flex: 1;
}
.page_case_show .case_show_tags {
  width: 100%;
  background-color: #fff;
  padding: 2rem 320rem 0rem;
}
.page_case_show .case_show_tags .case_show_tags__inner {
  padding: 52rem 0 0;
  border-top: 1rem solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page_case_show .case_show_tags .case_show_tags__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8rem;
}
.page_case_show .case_show_tags .case_show_tags__label {
  font-size: 14rem;
  color: #1A1A2E;
  margin-right: 8rem;
  line-height: 1;
}
.page_case_show .case_show_tags .case_show_tags__item {
  font-size: 15rem;
  color: #666666;
  line-height: 1;
  transition: color 0.3s ease;
  background: #f9f9f9;
  padding: 8rem 10rem;
  border-radius: 4rem;
}
.page_case_show .case_show_tags .case_show_tags__item:hover {
  background: #DB4713;
  color: #fff;
}
.page_case_show .case_show_tags .case_show_tags__right {
  display: flex;
  align-items: center;
  gap: 20rem;
}
.page_case_show .case_show_tags .case_show_tags__share_label {
  font-size: 15rem;
  color: #1A1A2E;
  line-height: 1;
}
.page_case_show .case_show_tags .case_show_tags__share {
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 16rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page_case_show .case_show_tags .case_show_tags__share img {
  width: 24rem;
  height: 24rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.page_case_show .case_show_tags .case_show_tags__share .img1 {
  display: block;
}
.page_case_show .case_show_tags .case_show_tags__share .img2 {
  display: none;
}
.page_case_show .case_show_tags .case_show_tags__share:hover {
  background-color: #FFEEEA;
  color: #ffffff;
}
.page_case_show .case_show_tags .case_show_tags__share:hover img {
  transform: scale(1.1);
}
.page_case_show .case_show_tags .case_show_tags__share:hover .img1 {
  display: none;
}
.page_case_show .case_show_tags .case_show_tags__share:hover .img2 {
  display: block;
}
.page_case_show .case_show_more {
  width: 100%;
  padding: 80rem 320rem 90rem;
  background-color: #fff;
}
.page_case_show .case_show_more .case_show_more__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20rem;
  margin-bottom: 50rem;
}
.page_case_show .case_show_more .case_show_more__head .case_show_more__line_left {
  width: 100rem;
  height: 2rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, #cccccc00 0%, #cccccc 100%);
}
.page_case_show .case_show_more .case_show_more__head .case_show_more__line_right {
  width: 100rem;
  height: 2rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, #cccccc 0%, #cccccc00 100%);
}
.page_case_show .case_show_more .case_show_more__head .case_show_more__title {
  font-size: 28rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
  flex-shrink: 0;
}
.page_solution {
  width: 100%;
  background-color: #fff;
}
.page_solution .solution_banner {
  position: relative;
  width: 100%;
  height: 500rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page_solution .solution_banner .solution_banner__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.08) 0%, rgba(26, 26, 46, 0.25) 100%);
  z-index: 1;
}
.page_solution .solution_banner .solution_show_banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80rem 360rem 60rem;
}
.page_solution .solution_banner .solution_show_banner__inner .solution_show_banner__title {
  font-family: 'Noto Serif SC', serif;
  font-size: 48rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2rem;
  line-height: 1.3;
}
.page_solution .solution_banner .solution_show_banner__inner .solution_show_banner__subtitle {
  max-width: 900rem;
  font-size: 18rem;
  color: #ffffff;
  margin-top: 24rem;
  line-height: 1.8;
  font-weight: 300;
}
.page_solution .solution_consult {
  width: 100%;
  padding: 80rem 0 70rem;
  background-color: #fff;
}
.page_solution .solution_consult .section_head {
  margin-bottom: 50rem;
}
.page_solution .solution_consult .solution_consult__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 25rem;
  padding: 0 320rem;
}
.page_solution .solution_consult .solution_consult__grid {
  width: 100%;
  max-width: 1400rem;
}
.page_solution .solution_consult .solution_consult__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30rem;
  width: 100%;
}
.page_solution .solution_consult .solution_consult__row--top {
  margin-bottom: 0;
}
.page_solution .solution_consult .solution_consult__row--bottom .solution_card {
  width: 100%;
}
.page_solution .solution_consult .solution_card {
  width: 100%;
  max-width: 400rem;
  justify-self: center;
}
.page_solution .solution_consult .solution_card .solution_card__media {
  position: relative;
  width: 100%;
  height: 260rem;
  overflow: hidden;
  border-radius: 16rem;
}
.page_solution .solution_consult .solution_card .solution_card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16rem;
  transition: transform 0.4s ease;
}
.page_solution .solution_consult .solution_card .solution_card__body {
  margin-top: 40rem;
}
.page_solution .solution_consult .solution_card .solution_card__title {
  font-size: 24rem;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}
.page_solution .solution_consult .solution_card .solution_card__title .solution_card__num {
  position: absolute;
  left: 0rem;
  bottom: 6rem;
  font-family: var(--font-serif);
  font-size: 40rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
  background: linear-gradient(180deg, #eee, #eeeeee00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page_solution .solution_consult .solution_card .solution_card__desc {
  font-size: 15rem;
  color: #999999;
  margin-top: 10rem;
  line-height: 28rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page_solution .solution_consult .solution_card .solution_card__link {
  display: inline-block;
  margin-top: 30rem;
  font-size: 15rem;
  color: #DB4713;
  font-weight: 600;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}
.page_solution .solution_consult .solution_card .solution_card__link:hover {
  color: #b33a0f;
  transform: translateX(6rem);
}
.page_solution .solution_consult .solution_card:hover .solution_card__img {
  transform: scale(1.05);
}
.page_solution .solution_hunt {
  width: 100%;
  padding: 80rem 320rem;
  background-color: #F5F5F7;
}
.page_solution .solution_hunt .section_head {
  margin-bottom: 50rem;
}
.page_solution .solution_hunt .solution_hunt__card {
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 16rem;
  overflow: hidden;
  box-shadow: 0 4rem 24rem rgba(0, 0, 0, 0.08);
}
.page_solution .solution_hunt .solution_hunt__media {
  width: 750rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16rem 0 0 16rem;
}
.page_solution .solution_hunt .solution_hunt__img {
  width: 100%;
  height: 100%;
  height: 400rem;
  display: block;
  object-fit: cover;
  border-radius: 16rem 0 0 16rem;
}
.page_solution .solution_hunt .solution_hunt__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50rem 60rem;
}
.page_solution .solution_hunt .solution_hunt__title {
  font-size: 24rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
}
.page_solution .solution_hunt .solution_hunt__desc {
  font-size: 15rem;
  color: #999999;
  margin-top: 10rem;
  line-height: 20rem;
}
.page_solution .solution_hunt .solution_hunt__link {
  display: inline-block;
  margin-top: 30rem;
  font-size: 15rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}
.page_solution .solution_hunt .solution_hunt__link:hover {
  color: #b33a0f;
  transform: translateX(6rem);
}
.page_solution .solution_learn {
  width: 100%;
  padding: 80rem 320rem 100rem;
  background-color: #fff;
}
.page_solution .solution_learn .section_head {
  margin-bottom: 50rem;
}
.page_solution .solution_learn .solution_learn__grid {
  display: flex;
  justify-content: space-between;
  gap: 30rem;
}
.page_solution .solution_learn .solution_learn__card {
  width: 400rem;
  background-color: #F9F9F9;
  border-radius: 16rem;
  overflow: hidden;
  box-shadow: 0 4rem 24rem rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.page_solution .solution_learn .solution_learn__card:hover {
  box-shadow: 0 8rem 32rem rgba(0, 0, 0, 0.1);
  transform: translateY(-4rem);
}
.page_solution .solution_learn .solution_learn__card:hover .solution_learn__img {
  transform: scale(1.05);
}
.page_solution .solution_learn .solution_learn__media {
  width: 100%;
  height: 240rem;
  overflow: hidden;
  border-radius: 16rem 16rem 0 0;
}
.page_solution .solution_learn .solution_learn__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16rem 16rem 0 0;
  transition: transform 0.4s ease;
}
.page_solution .solution_learn .solution_learn__body {
  padding: 30rem 20rem 20rem;
}
.page_solution .solution_learn .solution_learn__title {
  font-size: 24rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
}
.page_solution .solution_learn .solution_learn__desc {
  font-size: 15rem;
  color: #999999;
  margin-top: 12rem;
  line-height: 28rem;
  min-height: 76rem;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.page_solution .solution_learn .solution_learn__link {
  display: inline-block;
  margin-top: 18rem;
  font-size: 15rem;
  color: #db4713;
  font-weight: 600;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}
.page_solution .solution_learn .solution_learn__link:hover {
  color: #b33a0f;
  transform: translateX(6rem);
}
.page_solution_show {
  width: 100%;
  background-color: #ffffff;
}
.page_solution_show .solution_show_banner {
  position: relative;
  width: 100%;
  height: 500rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page_solution_show .solution_show_banner .solution_show_banner__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(26, 26, 46, 0.72) 0%, rgba(26, 26, 46, 0.35) 55%, rgba(26, 26, 46, 0.15) 100%);
  z-index: 1;
}
.page_solution_show .solution_show_banner .solution_show_banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80rem 320rem 60rem;
}
.page_solution_show .solution_show_banner .solution_show_banner__inner .solution_show_banner__title {
  font-family: var(--font-serif);
  font-size: 72rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 4rem;
  line-height: 102rem;
}
.page_solution_show .solution_show_banner .solution_show_banner__inner .solution_show_banner__subtitle {
  font-size: 28rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 58rem;
}
.page_solution_show .solution_show_nav {
  width: 100%;
  background-color: #F3F3F4;
}
.page_solution_show .solution_show_nav .solution_show_nav__inner {
  width: 1200rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 60rem;
}
.page_solution_show .solution_show_nav .solution_show_nav__item {
  height: 100%;
  position: relative;
  font-size: 16rem;
  color: #5A5A6E;
  line-height: 1;
  padding: 8rem 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_solution_show .solution_show_nav .solution_show_nav__item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0rem;
  width: 0;
  height: 2rem;
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.page_solution_show .solution_show_nav .solution_show_nav__item:hover {
  color: #1A1A2E;
}
.page_solution_show .solution_show_nav .solution_show_nav__item:hover::after {
  width: 96rem;
}
.page_solution_show .solution_show_nav .solution_show_nav__item.solution_show_nav__item--active {
  color: #1A1A2E;
  font-weight: 600;
}
.page_solution_show .solution_show_nav .solution_show_nav__item.solution_show_nav__item--active::after {
  width: 96rem;
}
.page_solution_show .solution_show_section {
  width: 100%;
  padding: 80rem 320rem 0;
}
.page_solution_show .solution_show_section .solution_show_section__head {
  display: flex;
  align-items: flex-end;
  gap: 18rem;
  margin-bottom: 40rem;
}
.page_solution_show .solution_show_section .solution_show_section__num {
  font-family: var(--font-serif);
  font-size: 72rem;
  color: #EEEEEE;
  font-weight: bold;
  line-height: 0.85;
  flex-shrink: 0;
}
.page_solution_show .solution_show_section .solution_show_section__title {
  font-size: 28rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 48rem;
}
.page_solution_show .solution_show_section .solution_show_section__en {
  font-size: 16rem;
  color: #5A5A6E;
  letter-spacing: 3rem;
  text-transform: uppercase;
  line-height: 1;
}
.page_solution_show .solution_show_bg {
  background-color: #ffffff;
}
.page_solution_show .solution_show_bg .solution_show_bg__cols {
  display: flex;
  gap: 55rem;
  margin-bottom: 50rem;
}
.page_solution_show .solution_show_bg .solution_show_bg__col {
  flex: 1;
}
.page_solution_show .solution_show_bg .solution_show_bg__col:hover .solution_show_bg__img {
  transform: scale(1.05);
}
.page_solution_show .solution_show_bg .solution_show_bg__media {
  width: 100%;
  height: 240rem;
  overflow: hidden;
}
.page_solution_show .solution_show_bg .solution_show_bg__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.page_solution_show .solution_show_bg .solution_show_bg__col_title {
  margin-top: 24rem;
  font-size: 20rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.4;
}
.page_solution_show .solution_show_bg .solution_show_bg__col_desc {
  margin-top: 14rem;
  font-size: 15rem;
  color: #666666;
  line-height: 25rem;
  text-align: justify;
  max-width: 100%;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.page_solution_show .solution_show_bg .solution_show_bg__summary {
  margin-right: 160rem;
  font-size: 15rem;
  color: #666666;
  line-height: 25rem;
}
.page_solution_show .solution_show_bg .solution_show_bg__summary_title {
  font-size: 20rem;
  color: var(--secondary);
  line-height: 25rem;
  font-weight: 700;
  margin-bottom: 40rem;
  margin-top: 10rem;
}
.page_solution_show .solution_show_bg .solution_show_bg__qa {
  display: flex;
  gap: 24rem;
  flex-wrap: wrap;
}
.page_solution_show .solution_show_qa_card {
  position: relative;
  width: 302rem;
  min-height: 236rem;
  box-sizing: border-box;
  padding: 86rem 30rem 30rem;
  background-color: #FFF6F3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page_solution_show .solution_show_qa_card .solution_show_qa_card__mark {
  position: absolute;
  top: 30rem;
  left: 30rem;
  width: 56rem;
  height: 36rem;
  display: block;
}
.page_solution_show .solution_show_qa_card .solution_show_qa_card__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.page_solution_show .solution_show_qa_card .solution_show_qa_card__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 20rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}
.page_solution_show .solution_show_qa_card:nth-child(1) .solution_show_qa_card__mark::after {
  content: 'Q1';
}
.page_solution_show .solution_show_qa_card:nth-child(2) .solution_show_qa_card__mark::after {
  content: 'Q2';
}
.page_solution_show .solution_show_qa_card:nth-child(3) .solution_show_qa_card__mark::after {
  content: 'Q3';
}
.page_solution_show .solution_show_qa_card:nth-child(4) .solution_show_qa_card__mark::after {
  content: 'Q4';
}
.page_solution_show .solution_show_qa_card:nth-child(5) .solution_show_qa_card__mark::after {
  content: 'Q5';
}
.page_solution_show .solution_show_qa_card:nth-child(6) .solution_show_qa_card__mark::after {
  content: 'Q6';
}
.page_solution_show .solution_show_qa_card:nth-child(7) .solution_show_qa_card__mark::after {
  content: 'Q7';
}
.page_solution_show .solution_show_qa_card .solution_show_qa_card__text {
  font-size: 20rem;
  color: #333333;
  line-height: 30rem;
}
.page_solution_show .solution_show_qa_card:hover {
  transform: translateY(-6rem);
  box-shadow: 0 12rem 28rem rgba(219, 71, 19, 0.12);
}
.page_solution_show .solution_show_qa_card.solution_show_qa_card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #db4713;
  padding: 24rem;
}
.page_solution_show .solution_show_qa_card.solution_show_qa_card--cta .solution_show_qa_card__text {
  padding-top: 0;
  color: #ffffff;
  font-size: 20rem;
  font-weight: 600;
  line-height: 30rem;
}
.page_solution_show .solution_show_qa_card.solution_show_qa_card--cta:hover {
  background-color: #b33a0f;
  box-shadow: 0 12rem 28rem rgba(219, 71, 19, 0.28);
}
.page_solution_show .solution_show_core .solution_show_core__list {
  display: flex;
  gap: 80rem;
  background-color: #F9F9F9;
  padding: 50rem 80rem;
  box-sizing: border-box;
}
.page_solution_show .solution_show_core .solution_show_core__item {
  flex: 1;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.page_solution_show .solution_show_core .solution_show_core__item .solution_show_core__item_head {
  display: flex;
  align-items: center;
  gap: 20rem;
}
.page_solution_show .solution_show_core .solution_show_core__item .solution_show_core__item_head .solution_show_core__item_head_icon {
  width: 56rem;
  height: 56rem;
  background-color: #DB4713;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_solution_show .solution_show_core .solution_show_core__item .solution_show_core__item_head .solution_show_core__item_head_icon .solution_show_core__icon {
  width: 36rem;
  height: 36rem;
  display: block;
}
.page_solution_show .solution_show_core .solution_show_core__item .solution_show_core__item_head .solution_show_core__item_title {
  font-size: 20rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.4;
}
.page_solution_show .solution_show_core .solution_show_core__item_desc {
  margin-top: 20rem;
  font-size: 14rem;
  color: #666666;
  line-height: 25rem;
  text-align: justify;
}
.page_solution_show .solution_show_diagram {
  background-color: #ffffff;
}
.page_solution_show .solution_show_diagram .solution_show_diagram__box {
  padding: 40rem;
  background-color: #f8f8f8;
  border: 1rem solid #eeeeee;
  border-radius: 16rem;
}
.page_solution_show .solution_show_diagram .solution_show_diagram__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}
.page_solution_show .solution_show_value {
  background-color: #ffffff;
}
.page_solution_show .solution_show_value .solution_show_value__body {
  display: flex;
  gap: 40rem;
  align-items: flex-start;
}
.page_solution_show .solution_show_value .solution_show_value__left {
  width: 640rem;
  position: relative;
}
.page_solution_show .solution_show_value .solution_show_value__left:hover .solution_show_value__photo {
  transform: scale(1.03);
}
.page_solution_show .solution_show_value .solution_show_value__media {
  width: 100%;
  overflow: hidden;
}
.page_solution_show .solution_show_value .solution_show_value__photo {
  width: 100%;
  height: 350rem;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.page_solution_show .solution_show_value .solution_show_value__quote {
  height: 175rem;
  position: relative;
  padding: 32rem 36rem;
  background-color: var(--primary);
  z-index: 2;
}
.page_solution_show .solution_show_value .solution_show_value__quote_icon {
  width: 44rem;
  height: 36rem;
  display: block;
  object-fit: contain;
}
.page_solution_show .solution_show_value .solution_show_value__quote_text {
  font-size: 20rem;
  color: #ffffff;
  line-height: 30rem;
  font-weight: 500;
  margin-top: -10rem;
}
.page_solution_show .solution_show_value .solution_show_value__quote_author {
  display: block;
  margin-top: 16rem;
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  line-height: 1.5;
}
.page_solution_show .solution_show_value .solution_show_value__right {
  flex: 1;
}
.page_solution_show .solution_show_value .solution_show_value__item {
  border-top: 1rem solid #eeeeee;
  padding-bottom: 34rem;
  padding-top: 58rem;
  position: relative;
}
.page_solution_show .solution_show_value .solution_show_value__item:last-child {
  border-bottom: 1rem solid #eeeeee;
}
.page_solution_show .solution_show_value .solution_show_value__item_num {
  font-family: var(--font-serif);
  position: absolute;
  top: 30rem;
  left: 0;
  background: linear-gradient(270deg, #eee, #eeeeee00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 48rem;
  font-weight: 700;
  line-height: 48rem;
  letter-spacing: 0rem;
  text-align: left;
}
.page_solution_show .solution_show_value .solution_show_value__item_title {
  font-size: 20rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
}
.page_solution_show .solution_show_value .solution_show_value__item_desc {
  margin-top: 10rem;
  font-size: 15rem;
  color: #666666;
  line-height: 25rem;
  text-align: justify;
}
.page_solution_show .solution_show_results {
  padding-bottom: 80rem;
}
.page_solution_show .solution_show_results .solution_show_results__rows {
  display: flex;
  flex-direction: column;
}
.page_solution_show .solution_show_results .solution_show_results__row {
  display: flex;
}
.page_solution_show .solution_show_results .solution_show_results__row.solution_show_results__row--reverse {
  flex-direction: row-reverse;
}
.page_solution_show .solution_show_results .solution_show_results__row:hover .solution_show_results__img {
  transform: scale(1.04);
}
.page_solution_show .solution_show_results .solution_show_results__media {
  width: 640rem;
  overflow: hidden;
}
.page_solution_show .solution_show_results .solution_show_results__img {
  width: 100%;
  height: 300rem;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.page_solution_show .solution_show_results .solution_show_results__content {
  flex: 1;
  background-color: #F9F9F9;
  padding: 90rem 100rem 0;
  box-sizing: border-box;
}
.page_solution_show .solution_show_results .solution_show_results__title {
  font-size: 24rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.1;
}
.page_solution_show .solution_show_results .solution_show_results__desc {
  margin-top: 20rem;
  font-size: 15rem;
  color: #666666;
  line-height: 25rem;
  text-align: justify;
}
.page_article {
  width: 100%;
  background-color: #fff;
}
.page_article .article_banner {
  position: relative;
  width: 100%;
  height: 580rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page_article .article_banner .article_banner__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.page_article .article_banner .article_banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80rem 320rem 60rem;
}
.page_article .article_banner .article_banner__inner .article_banner__title {
  font-family: var(--font-serif);
  font-size: 72rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 4rem;
  line-height: 102rem;
}
.page_article .article_banner .article_banner__inner .article_banner__subtitle {
  font-size: 28rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 58rem;
}
.page_article .case_filter {
  width: 100%;
  padding: 80rem 320rem 70rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_article .case_filter .case_filter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6rem;
  background-color: #eeeeee;
  border-radius: 30rem;
}
.page_article .case_filter .case_filter__btn {
  display: inline-block;
  padding: 0rem 30rem;
  min-width: 150rem;
  height: 46rem;
  line-height: 46rem;
  text-align: center;
  font-size: 16rem;
  color: #5A5A6E;
  font-weight: 500;
  border-radius: 24rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page_article .case_filter .case_filter__btn:hover {
  color: #DB4713;
  background-color: #e8e8e8;
}
.page_article .case_filter .case_filter__btn--active {
  background-color: #DB4713;
  color: #ffffff;
  font-weight: 600;
}
.page_article .case_filter .case_filter__btn--active:hover {
  background-color: #DB4713;
  color: #ffffff;
}
.page_article .article_list {
  width: 100%;
  padding: 0 320rem 80rem;
}
.page_article .article_list .article_card {
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  margin-bottom: 30rem;
  border-radius: 12rem;
  overflow: hidden;
  box-shadow: 0 2rem 16rem rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.page_article .article_list .article_card:last-of-type {
  margin-bottom: 0;
}
.page_article .article_list .article_card .article_card__media {
  width: 340rem;
  flex-shrink: 0;
}
.page_article .article_list .article_card .article_card__img {
  width: 100%;
  height: 240rem;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.page_article .article_list .article_card .article_card__body {
  flex: 1;
  padding: 30rem 60rem 30rem 40rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page_article .article_list .article_card .article_card__title {
  font-size: 24rem;
  color: #333333;
  font-weight: 700;
  line-height: 30rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.page_article .article_list .article_card .article_card__desc {
  font-size: 14rem;
  color: #999999;
  margin-top: 14rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.page_article .article_list .article_card .article_card__link {
  display: inline-block;
  margin-top: 20rem;
  font-size: 15rem;
  color: #db4713;
  font-weight: 600;
  line-height: 1;
  transition: color 0.3s ease;
}
.page_article .article_list .article_card .article_card__link:hover {
  color: #b33a0f;
}
.page_article .article_list .article_card .article_card__date {
  width: 180rem;
  transition: color 0.3s ease;
  flex-shrink: 0;
  padding: 30rem 0;
  box-sizing: border-box;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.page_article .article_list .article_card .article_card__date .article_card__date_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-left: 1rem solid #eeeeee;
  font-family: var(--font-serif);
}
.page_article .article_list .article_card .article_card__day {
  font-size: 40rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
}
.page_article .article_list .article_card .article_card__ym {
  font-size: 16rem;
  color: var(--secondary);
  margin-top: 10rem;
  line-height: 1;
  transition: color 0.3s ease;
}
.page_article .article_list .article_card:hover {
  background-color: var(--primary);
  box-shadow: 0 8rem 30rem rgba(219, 71, 19, 0.25);
}
.page_article .article_list .article_card:hover .article_card__img {
  transform: scale(1.05);
}
.page_article .article_list .article_card:hover .article_card__title,
.page_article .article_list .article_card:hover .article_card__desc {
  color: #ffffff;
}
.page_article .article_list .article_card:hover .article_card__link {
  color: #ffffff;
}
.page_article .article_list .article_card:hover .article_card__link:hover {
  color: #ffffff;
  opacity: 0.85;
}
.page_article .article_list .article_card:hover .article_card__date .article_card__date_inner {
  border-left: 1rem solid #E0754F;
}
.page_article .article_list .article_card:hover .article_card__day,
.page_article .article_list .article_card:hover .article_card__ym {
  color: #ffffff;
}
.page_article_show {
  width: 100%;
  background-color: #ffffff;
}
.page_article_show .article_show_banner {
  position: relative;
  width: 100%;
  height: 580rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page_article_show .article_show_banner .article_show_banner__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.page_article_show .article_show_banner .article_show_banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80rem 320rem 60rem;
}
.page_article_show .article_show_banner .article_show_banner__inner .article_show_banner__title {
  font-family: var(--font-serif);
  font-size: 72rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 4rem;
  line-height: 102rem;
}
.page_article_show .article_show_banner .article_show_banner__inner .article_show_banner__subtitle {
  font-size: 28rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 58rem;
}
.page_article_show .article_show_main {
  width: 100%;
  padding: 80rem 320rem 0;
  background-color: #ffffff;
}
.page_article_show .article_show_main .article_show_head {
  padding-bottom: 10rem;
}
.page_article_show .article_show_main .article_show_head .article_show_head__title {
  font-size: 36rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 46rem;
}
.page_article_show .article_show_main .article_show_head .article_show_head__meta {
  display: flex;
  align-items: center;
  gap: 60rem;
  margin-top: 30rem;
}
.page_article_show .article_show_main .article_show_head .article_show_head__meta_item {
  display: flex;
  align-items: center;
  gap: 10rem;
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 1;
}
.page_article_show .article_show_main .article_show_head .article_show_head__meta_icon {
  width: 15rem;
  height: 15rem;
  display: block;
  flex-shrink: 0;
}
.page_article_show .article_show_main .article_show_head .article_show_head__meta_icon--read {
  width: 15rem;
  height: 12rem;
}
.page_article_show .article_show_main .article_show_body {
  padding: 40rem 0;
  border-top: 1rem solid #eeeeee;
  margin-top: 50rem;
}
.page_article_show .article_show_main .article_show_body .article_show_body__text {
  font-size: 15rem;
  color: #666666;
  line-height: 2;
  margin-bottom: 16rem;
  text-align: justify;
}
.page_article_show .article_show_main .article_show_body .article_show_body__text:last-child {
  margin-bottom: 0;
}
.page_article_show .article_show_main .article_show_body .article_show_body__highlight {
  color: #db4713;
}
.page_article_show .article_show_main .article_show_body .article_show_body__subtitle {
  font-size: 16rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 30rem;
  margin-bottom: 16rem;
}
.page_article_show .article_show_main .article_show_body .article_show_body__list {
  margin: 0 0 16rem;
  padding-left: 24rem;
}
.page_article_show .article_show_main .article_show_body .article_show_body__list li {
  font-size: 15rem;
  color: #666666;
  line-height: 2;
  list-style: decimal;
  text-align: justify;
}
.page_article_show .article_show_main .article_show_body .article_show_body__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 30rem 0;
  object-fit: cover;
  border-radius: 16rem;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags {
  width: 100%;
  background-color: #fff;
  padding: 0;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__inner {
  padding: 52rem 0 0;
  border-top: 1rem solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8rem;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__label {
  font-size: 14rem;
  color: #1A1A2E;
  margin-right: 8rem;
  line-height: 1;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__item {
  font-size: 15rem;
  color: #666666;
  line-height: 1;
  transition: color 0.3s ease;
  background: #f9f9f9;
  padding: 8rem 10rem;
  border-radius: 4rem;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__item:hover {
  background: #DB4713;
  color: #fff;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__right {
  display: flex;
  align-items: center;
  gap: 20rem;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share_label {
  font-size: 15rem;
  color: #1A1A2E;
  line-height: 1;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share {
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 16rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share img {
  width: 24rem;
  height: 24rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share .img1 {
  display: block;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share .img2 {
  display: none;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share:hover {
  background-color: #FFEEEA;
  color: #ffffff;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share:hover img {
  transform: scale(1.1);
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share:hover .img1 {
  display: none;
}
.page_article_show .article_show_main .article_show_foot .case_show_tags .case_show_tags__share:hover .img2 {
  display: block;
}
.page_article_show .article_show_main .article_show_foot .article_show_foot__nav {
  padding: 50rem 0 80rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40rem;
}
.page_article_show .article_show_main .article_show_foot .article_show_foot__nav_item {
  flex: 0 1 calc(50% - 20rem);
  min-width: 0;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  font-size: 14rem;
  line-height: 1.6;
}
.page_article_show .article_show_main .article_show_foot .article_show_foot__nav_item:last-child {
  justify-content: flex-end;
  text-align: right;
}
.page_article_show .article_show_main .article_show_foot .article_show_foot__nav_label {
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--secondary);
}
.page_article_show .article_show_main .article_show_foot .article_show_foot__nav_link {
  min-width: 0;
  color: var(--secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-word;
  transition: color 0.3s ease;
}
.page_article_show .article_show_main .article_show_foot .article_show_foot__nav_link:hover {
  color: #db4713;
}
.page_about {
  width: 100%;
  background-color: #ffffff;
}
.page_about .about_intro {
  width: 100%;
  padding: 80rem 320rem;
  background-color: #ffffff;
}
.page_about .about_intro .about_intro__video {
  width: 1000rem;
  height: 562rem;
  margin: 70rem auto 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.page_about .about_intro .about_intro__video #videoBox {
  width: 100%;
  height: 100%;
  border-radius: 16rem;
  display: block;
  object-fit: cover;
}
.page_about .about_intro .about_intro__stats {
  padding: 0 30rem;
  margin: 70rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page_about .about_intro .about_intro__stats .about_intro__stat {
  flex: 1;
  text-align: center;
}
.page_about .about_intro .about_intro__stats .about_intro__stat .about_intro__stat_num {
  font-family: var(--font-serif);
  font-size: 50rem;
  color: #DB4713;
  font-weight: 700;
  line-height: 1;
}
.page_about .about_intro .about_intro__stats .about_intro__stat .about_intro__stat_num .counter {
  font-family: var(--font-serif);
  color: inherit;
  font-weight: inherit;
}
.page_about .about_intro .about_intro__stats .about_intro__stat .about_intro__stat_num .about_intro__stat_plus {
  font-family: inherit;
  font-size: 24rem;
  font-weight: 700;
}
.page_about .about_intro .about_intro__stats .about_intro__stat .about_intro__stat_label {
  font-size: 15rem;
  color: var(--secondary);
  margin-top: 10rem;
  line-height: 1.1;
}
.page_about .about_intro .about_intro__text {
  margin: 50rem auto 0;
}
.page_about .about_intro .about_intro__text p {
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 28rem;
  text-align: justify;
  margin-bottom: 20rem;
}
.page_about .about_intro .about_intro__text p:last-child {
  margin-bottom: 0;
}
.page_about .about_culture {
  width: 100%;
  padding: 0rem 320rem 100rem;
}
.page_about .about_culture .about_culture__grid {
  margin: 50rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 40rem;
}
.page_about .about_culture .about_culture__grid .about_culture_card {
  position: relative;
  width: 400rem;
  height: 600rem;
  border-radius: 20rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background-color: #1A1A2E;
}
.page_about .about_culture .about_culture__grid .about_culture_card .about_culture_card__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page_about .about_culture .about_culture__grid .about_culture_card .about_culture_card__body {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30rem;
  box-sizing: border-box;
}
.page_about .about_culture .about_culture__grid .about_culture_card .about_culture_card__body .about_culture_card__icon {
  width: 80rem;
  height: 80rem;
  display: block;
  object-fit: contain;
}
.page_about .about_culture .about_culture__grid .about_culture_card .about_culture_card__body .about_culture_card__title {
  font-size: 32rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 25rem;
  line-height: 1.1;
}
.page_about .about_culture .about_culture__grid .about_culture_card .about_culture_card__body .about_culture_card__text {
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 28rem;
  margin-top: 10rem;
}
.page_about .about_history {
  width: 100%;
  height: 900rem;
  box-sizing: border-box;
  padding: 80rem 0 90rem;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.page_about .about_history .about_history__body {
  width: 1600rem;
  margin: 50rem auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20rem;
  min-height: 420rem;
}
.page_about .about_history .about_history__body .about_history__timeline {
  position: relative;
  flex: 1;
  width: 1400rem;
  margin: 0 auto;
}
.page_about .about_history .about_history__body .about_history_swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page_about .about_history .about_history__body .about_history_swiper .swiper-slide {
  height: 566rem;
  display: flex;
  justify-content: center;
}
.page_about .about_history .about_history__body .about_history__item {
  width: 1240rem;
  height: 566rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page_about .about_history .about_history__body .about_history__nav {
  position: relative;
  top: auto;
  transform: none;
  flex-shrink: 0;
  width: 48rem;
  height: 48rem;
  border: none;
  border-radius: 24rem;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 3;
  transition: background-color 0.3s ease;
}
.page_about .about_history .about_history__body .about_history__nav img {
  width: 10rem;
  height: 18rem;
  display: block;
  object-fit: contain;
}
.page_about .about_history .about_history__body .about_history__nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.page_about .about_history .about_history__body .about_history__nav--next img {
  transform: rotate(180deg);
}
.page_about .about_org {
  width: 100%;
  padding: 80rem 320rem 100rem;
  background-color: #ffffff;
}
.page_about .about_org .about_org__wrap {
  margin-top: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_about .about_org .about_org__labels {
  width: 200rem;
  flex-shrink: 0;
}
.page_about .about_org .about_org__labels .about_org__label {
  display: flex;
  align-items: center;
  font-size: 32rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 48rem;
  transition: color 0.3s ease;
}
.page_about .about_org .about_org__labels .about_org__label:last-child {
  margin-bottom: 0;
}
.page_about .about_org .about_org__labels--right {
  text-align: right;
}
.page_about .about_org .about_org__labels--right .about_org__label {
  justify-content: flex-end;
}
.page_about .about_org .about_org__labels--right .about_org__label .about_org__dot {
  margin-right: 0;
  margin-left: 12rem;
  order: 2;
}
.page_about .about_org .about_org__diagram {
  position: relative;
  width: 737rem;
  height: 358rem;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page_about .about_org .about_org__diagram .about_org__ring {
  position: absolute;
  width: 260rem;
  height: 260rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.page_about .about_org .about_org__diagram .about_org__ring .about_org__ring_text {
  font-size: 40rem;
  color: #DB4713;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.page_about .about_org .about_org__diagram .about_org__ring--left {
  top: 50%;
  left: 0rem;
  transform: translateY(-50%);
}
.page_about .about_org .about_org__diagram .about_org__ring--right {
  top: 50%;
  right: 0rem;
  transform: translateY(-50%);
}
.page_about .about_org .about_org__diagram .about_org__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380rem;
  height: 380rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page_about .about_org .about_org__diagram .about_org__center .about_org__center_text {
  font-size: 48rem;
  color: #ffffff;
  font-weight: 700;
}
.page_about .about_org .about_org__diagram .about_org__center:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.page_about .about_partner {
  width: 100%;
  padding: 80rem 320rem;
  background-color: #F5F5F7;
}
.page_about .about_partner .about_partner__carousel {
  margin-top: 50rem;
}
.page_about .about_partner .about_partner_swiper {
  overflow: hidden;
}
.page_about .about_partner .about_partner_swiper .swiper-slide {
  height: auto;
}
.page_about .about_partner .about_partner__grid {
  display: flex;
  gap: 24rem;
  flex-wrap: wrap;
}
.page_about .about_partner .about_partner__grid .about_partner__item {
  width: 193rem;
  height: 100rem;
  background-color: #ffffff;
  border-radius: 10rem;
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20rem 25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.page_about .about_partner .about_partner__grid .about_partner__item img {
  max-width: 100%;
  max-height: 60rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.page_about .about_partner .about_partner__grid .about_partner__item:hover {
  transform: translateY(-4rem);
  box-shadow: 0 8rem 24rem rgba(0, 0, 0, 0.1);
}
.page_about .about_partner .about_partner__indicators {
  display: flex;
  justify-content: center;
  gap: 12rem;
  margin-top: 40rem;
}
.page_about .about_partner .about_partner__indicators .about_partner__dot {
  width: 30rem;
  height: 4rem;
  background: #DDDDDD;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.page_about .about_partner .about_partner__indicators .about_partner__dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary);
  border-radius: 2rem;
}
.page_about .about_partner .about_partner__indicators .about_partner__dot.active {
  width: 40rem;
}
.page_about .about_partner .about_partner__indicators .about_partner__dot.active::after {
  width: 100%;
}
.page_about .about_scene {
  width: 100%;
  padding: 80rem 320rem;
  background-color: #ffffff;
}
.page_about .about_scene .case_filter {
  width: 100%;
  padding: 50rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_about .about_scene .case_filter .case_filter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6rem;
  background-color: #eeeeee;
  border-radius: 30rem;
}
.page_about .about_scene .case_filter .case_filter__btn {
  display: inline-block;
  padding: 0rem 30rem;
  min-width: 150rem;
  height: 46rem;
  line-height: 46rem;
  text-align: center;
  font-size: 16rem;
  color: #5A5A6E;
  font-weight: 500;
  border: none;
  border-radius: 24rem;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.page_about .about_scene .case_filter .case_filter__btn:hover {
  color: #DB4713;
  background-color: #e8e8e8;
}
.page_about .about_scene .case_filter .case_filter__btn--active {
  background-color: #DB4713;
  color: #ffffff;
  font-weight: 600;
}
.page_about .about_scene .case_filter .case_filter__btn--active:hover {
  background-color: #DB4713;
  color: #ffffff;
}
.page_about .about_scene .about_scene__panels {
  position: relative;
  margin: 50rem auto 0;
  min-height: 360rem;
}
.page_about .about_scene .about_scene__gallery {
  display: none;
  margin: 0;
}
.page_about .about_scene .about_scene__gallery--active {
  display: block;
}
.page_about .about_scene .about_scene__gallery .about_scene__figure {
  width: 100%;
}
.page_about .about_scene .about_scene__gallery .about_scene__figure img {
  width: 100%;
  height: 360rem;
  display: block;
  object-fit: cover;
}
.page_model {
  width: 100%;
  background-color: #f9f9f9;
}
.page_model .model_intro {
  width: 100%;
  padding: 80rem 320rem 50rem;
  background-color: #f9f9f9;
}
.page_model .model_blocks {
  width: 100%;
  padding: 0rem 320rem 80rem;
}
.page_model .model_blocks .model_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60rem;
  margin-bottom: 80rem;
  border-radius: 16rem;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.page_model .model_blocks .model_block:last-child {
  margin-bottom: 0;
}
.page_model .model_blocks .model_block:hover {
  transform: translateY(-4rem);
}
.page_model .model_blocks .model_block--reverse {
  flex-direction: row-reverse;
}
.page_model .model_blocks .model_block .model_block__media {
  position: relative;
}
.page_model .model_blocks .model_block .model_block__card {
  width: 750rem;
  height: 400rem;
  padding: 40rem 75rem;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 16rem;
  box-shadow: 0 4rem 20rem rgba(0, 0, 0, 0.06);
}
.page_model .model_blocks .model_block .model_block__card:hover .model_block__zoom {
  opacity: 1;
  transform: scale(1.08);
}
.page_model .model_blocks .model_block .model_block__card--wide .model_block__img {
  height: auto;
  min-height: 320rem;
}
.page_model .model_blocks .model_block .model_block__card .model_block__img {
  width: 100%;
  height: 100%;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16rem;
  cursor: pointer;
}
.page_model .model_blocks .model_block .model_block__card .model_block__zoom {
  position: absolute;
  right: 20rem;
  bottom: 20rem;
  width: 24rem;
  height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.page_model .model_blocks .model_block .model_block__card .model_block__zoom img {
  width: 24rem;
  height: 24rem;
  display: block;
  border-radius: 16rem;
}
.page_model .model_blocks .model_block .model_block__content {
  flex: 1;
  min-width: 0;
  padding: 10rem 20rem;
}
.page_model .model_blocks .model_block .model_block__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 120rem;
  font-weight: 700;
  color: #EEEEEE;
  line-height: 1;
  margin-bottom: 8rem;
  user-select: none;
}
.page_model .model_blocks .model_block .model_block__title {
  font-size: 24rem;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.1;
  margin-top: -30rem;
  margin-bottom: 12rem;
}
.page_model .model_blocks .model_block .model_block__text p {
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 28rem;
  text-align: justify;
}
.page_material {
  width: 100%;
  background-color: #ffffff;
}
.page_material .material_intro {
  width: 100%;
  padding: 80rem 320rem 90rem;
  background-color: #ffffff;
}
.page_material .material_intro .material_intro__video {
  width: 1000rem;
  height: 525rem;
  margin: 50rem auto 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.page_material .material_intro .material_intro__video #videoBox {
  width: 100%;
  height: 100%;
  border-radius: 16rem;
  object-fit: cover;
}
.page_material .material_intro .material_intro__video:hover {
  transform: scale(1.01);
}
.page_material .material_intro .material_intro__text {
  margin: 50rem auto 0;
}
.page_material .material_intro .material_intro__text p {
  font-size: 15rem;
  color: #666666;
  line-height: 28rem;
  text-align: justify;
  margin-bottom: 20rem;
}
.page_material .material_intro .material_intro__text p:last-child {
  margin-bottom: 0;
}
.page_material .material_verify {
  width: 100%;
  padding: 80rem 320rem;
  background-color: #F9F9F9;
}
.page_material .material_verify .section_head {
  margin-bottom: 50rem;
}
.page_material .material_verify .section_head .section_head__title {
  font-size: 36rem;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.1;
}
.page_material .material_verify .material_verify__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40rem;
}
.page_material .material_verify .material_verify__card {
  width: 500rem;
  flex-shrink: 0;
  border-radius: 16rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.page_material .material_verify .material_verify__card .material_verify__card_photo {
  width: 100%;
  height: 382rem;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 16rem;
}
.page_material .material_verify .material_verify__card .material_verify__card_body {
  padding: 26rem 40rem;
  background-color: #1a1c2c;
  margin-top: 20rem;
  border-radius: 20rem;
}
.page_material .material_verify .material_verify__card .material_verify__card_body .material_verify__card_header {
  display: flex;
  align-items: center;
  gap: 20rem;
}
.page_material .material_verify .material_verify__card .material_verify__card_body .material_verify__card_header .material_verify__card_logo {
  font-size: 15rem;
  color: #ffffff;
  line-height: 1.1;
}
.page_material .material_verify .material_verify__card .material_verify__card_body .material_verify__card_line {
  display: block;
  width: 40rem;
  height: 2rem;
  background-color: #fff;
}
.page_material .material_verify .material_verify__card .material_verify__card_body .material_verify__card_title {
  font-size: 22rem;
  color: #ffffff;
  line-height: 30rem;
  margin-top: 20rem;
}
.page_material .material_verify .material_verify__card .material_verify__card_body .material_verify__card_title .t1 {
  font-size: 20rem;
  color: #ffffff;
  font-weight: 500;
}
.page_material .material_verify .material_verify__card .material_verify__card_body .material_verify__card_title .t2 {
  font-size: 24rem;
  color: #ffffff;
  font-weight: 700;
}
.page_material .material_verify .material_verify__card .material_verify__card_body .material_verify__card_desc {
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.1;
  margin-top: 20rem;
}
.page_material .material_verify .material_verify__list {
  flex: 1;
  min-width: 0;
  display: flex;
  padding: 0 40rem;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20rem;
  background: #ffffff;
}
.page_material .material_verify .material_verify__item {
  display: flex;
  align-items: flex-start;
  gap: 10rem;
  padding: 36rem 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex: 1;
  border-bottom: 1rem solid #eeeeee;
}
.page_material .material_verify .material_verify__item:last-child {
  border-bottom: none;
}
.page_material .material_verify .material_verify__item .material_verify__icon {
  width: 36rem;
  height: 36rem;
  transition: transform 0.3s ease;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.page_material .material_verify .material_verify__item:hover .material_verify__icon {
  transform: scale(1.1);
}
.page_material .material_verify .material_verify__item .material_verify__content {
  flex: 1;
  min-width: 0;
}
.page_material .material_verify .material_verify__item .material_verify__content .material_verify__item_title {
  font-size: 24rem;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 36rem;
}
.page_material .material_verify .material_verify__item .material_verify__content .material_verify__item_desc {
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 25rem;
  margin-top: 12rem;
}
.page_material .material_value {
  width: 100%;
  padding: 80rem 320rem 0rem;
  background-color: #ffffff;
}
.page_material .material_value .section_head {
  margin-bottom: 50rem;
}
.page_material .material_value .section_head .section_head__title {
  font-size: 36rem;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.1;
}
.page_material .material_value .material_value__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40rem;
}
.page_material .material_value .material_value__list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36rem;
}
.page_material .material_value .material_value__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30rem;
  padding-bottom: 36rem;
  border-bottom: 1rem solid #eeeeee;
  transition: transform 0.3s ease;
  flex: 1;
  position: relative;
}
.page_material .material_value .material_value__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.page_material .material_value .material_value__item:hover {
  transform: translateX(4rem);
}
.page_material .material_value .material_value__item:hover .material_value__num {
  color: #e0e0e0;
}
.page_material .material_value .material_value__item .material_value__content {
  flex: 1;
  min-width: 0;
}
.page_material .material_value .material_value__item .material_value__content .material_value__item_title {
  font-size: 24rem;
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.1;
}
.page_material .material_value .material_value__item .material_value__content .material_value__item_desc {
  font-size: 15rem;
  color: #5A5A6E;
  line-height: 40rem;
  margin-top: 20rem;
}
.page_material .material_value .material_value__item .material_value__content .material_value__item_desc .material_value__highlight {
  color: #e65a1e;
  font-weight: 600;
}
.page_material .material_value .material_value__item .material_value__num {
  position: absolute;
  top: 0;
  right: 0;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 90rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
  background: linear-gradient(180deg, #eee, #eeeeee00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page_material .material_value .material_value__media {
  width: 400rem;
  flex-shrink: 0;
}
.page_material .material_value .material_value__media .material_value__img {
  width: 100%;
  height: 740rem;
  display: block;
  object-fit: cover;
  border-radius: 16rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.page_material .material_value .material_value__media:hover .material_value__img {
  transform: scale(1.02);
  box-shadow: 0 16rem 40rem rgba(0, 0, 0, 0.1);
}
.page_material .material_quote {
  width: 100%;
  padding: 80rem 320rem;
  background-color: #ffffff;
}
.page_material .material_quote .material_quote__box {
  position: relative;
  height: 600rem;
  border-radius: 30rem;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.page_material .material_quote .material_quote__box:hover {
  transform: translateY(-4rem);
  box-shadow: 0 20rem 50rem rgba(0, 0, 0, 0.15);
}
.page_material .material_quote .material_quote__box .material_quote__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.page_material .material_quote .material_quote__box .material_quote__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 80rem;
}
.page_material .material_quote .material_quote__box .material_quote__inner .material_quote__line1 {
  font-family: var(--font-serif);
  font-size: 40rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 50rem;
}
.page_material .material_quote .material_quote__box .material_quote__inner .material_quote__line2 {
  font-family: var(--font-serif);
  font-size: 40rem;
  color: #e65a1e;
  font-weight: 700;
  line-height: 50rem;
  margin-top: 8rem;
}
.page_material .material_quote .material_quote__box .material_quote__inner .material_quote__line3 {
  font-family: var(--font-serif);
  font-size: 40rem;
  color: #e65a1e;
  font-weight: 700;
  line-height: 50rem;
}
@keyframes wxShareModalIn {
  from {
    opacity: 0;
    transform: translateY(16rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
body.wx-share-modal-open {
  overflow: hidden;
}
.jovosharebuttonbox .wx_share_modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24rem;
}
.jovosharebuttonbox .wx_share_modal.is-open {
  display: flex;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_mask {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.55);
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_dialog {
  position: relative;
  z-index: 1;
  width: 380rem;
  max-width: 92vw;
  background: #fff;
  border-radius: 16rem;
  box-shadow: 0 20rem 60rem rgba(26, 26, 46, 0.22);
  overflow: hidden;
  animation: wxShareModalIn 0.25s ease;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_close {
  position: absolute;
  top: 14rem;
  right: 14rem;
  width: 32rem;
  height: 32rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #666;
  font-size: 16rem;
  line-height: 32rem;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_close:hover {
  background: #fff;
  color: #DB4713;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_head {
  padding: 36rem 32rem 24rem;
  text-align: center;
  background: linear-gradient(180deg, #fff5f1 0%, #fff 100%);
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_head .wx_share_modal_icon {
  width: 56rem;
  height: 56rem;
  margin: 0 auto 14rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4rem 16rem rgba(219, 71, 19, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_head .wx_share_modal_icon img {
  width: 32rem;
  height: 32rem;
  object-fit: contain;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_head h4 {
  font-size: 20rem;
  font-weight: 600;
  color: #1A1A2E;
  line-height: 1.3;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_head p {
  margin-top: 8rem;
  font-size: 13rem;
  color: #5A5A6E;
  line-height: 1.5;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_body {
  padding: 8rem 32rem 20rem;
  display: flex;
  justify-content: center;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_body #qrcode {
  width: 200rem;
  height: 200rem;
  padding: 12rem;
  background: #fff;
  border: 1rem solid #f0f0f0;
  border-radius: 10rem;
  box-sizing: border-box;
  overflow: hidden;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_body #qrcode img,
.jovosharebuttonbox .wx_share_modal .wx_share_modal_body #qrcode canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.jovosharebuttonbox .wx_share_modal .wx_share_modal_foot {
  padding: 0 32rem 28rem;
  text-align: center;
  font-size: 13rem;
  color: #999;
  line-height: 1.4;
}
.layui-layer.jovo-video-layer {
  background: #000;
}
.layui-layer.jovo-video-layer .layui-layer-content {
  padding: 0;
  overflow: hidden;
}
.jovo_video_modal {
  background: #000;
  line-height: 0;
}
.jovo_video_modal .jovo_video_modal__player {
  width: 100%;
  max-height: 80vh;
  display: block;
  vertical-align: top;
  background: #000;
}
.counter,
b.counter,
.stat_num,
.detail_num,
.step_num,
.service_card_num,
.pagination__total,
.pagination__btn,
.pagination__num,
.pagination__ellipsis,
.contact_hotline__number,
.contact_office_card__row:first-child .contact_office_card__value,
.footer_contact li:has(.fa-phone) span,
.solution_card__num,
.solution_show_section__num,
.solution_show_value__item_num,
.model_block__num,
.material_value__num,
.expert_intro__stat_num,
.research_intro__stat_num,
.about_intro__stat_num,
.about_history__year {
  font-family: 'Noto Serif SC', serif;
}
