/** @format */
/** @format */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-start {
  justify-content: flex-start;
  display: flex;
}

.justify-end {
  justify-content: flex-end;
  display: flex;
}

.justify-center {
  justify-content: center;
  display: flex;
}

.justify-between {
  justify-content: space-between;
  display: flex;
}

.justify-around {
  justify-content: space-around;
  display: flex;
}

.justify-evenly {
  justify-content: space-evenly;
  display: flex;
}

.items-start {
  align-items: flex-start;
  display: flex;
}

.items-end {
  align-items: flex-end;
  display: flex;
}

.items-center {
  align-items: center;
  display: flex;
}

.items-stretch {
  align-items: stretch;
  display: flex;
}

.items-baseline {
  align-items: baseline;
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-auto {
  flex: auto;
}

.flex-none {
  flex: none;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-middle {
  display: flex;
  align-items: center;
}

.flex-col-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes about-play-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.15);
    opacity: 0;
  }
}
@keyframes about-timeline-dot-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.6);
    opacity: 0;
  }
}
@keyframes about-culture-card-float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes about-culture-card-float-x {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(14px);
  }
}
@keyframes about-culture-card-float-diag {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -13px);
  }
}
@keyframes about-org-arrow-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes about-line-stroke-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.wrap {
  width: 85%;
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header .wrap {
  box-sizing: border-box;
}
.header .wrap .logo {
  flex-shrink: 0;
}
.header .wrap .logo .inner {
  position: relative;
  display: block;
  width: 192px;
  height: 40px;
  overflow: hidden;
}
.header .wrap .logo .inner .mark {
  position: absolute;
  top: 0;
  right: 70.4%;
  bottom: 0;
  left: 0;
}
.header .wrap .logo .inner .mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.header .wrap .logo .inner .word {
  position: absolute;
  top: 14.64%;
  right: 0;
  bottom: 8.66%;
  left: 34.03%;
}
.header .wrap .logo .inner .word img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.header .wrap .tools {
  box-sizing: border-box;
  width: 61.7361111111%;
  flex-shrink: 0;
}
.header .wrap .tools .nav {
  height: 100px;
  line-height: 100px;
}
.header .wrap .tools .nav .list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 64px;
}
.header .wrap .tools .nav .list .item {
  position: relative;
}
.header .wrap .tools .nav .list .item .sub-box {
  transition: none;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  text-align: center;
}
.header .wrap .tools .nav .list .item .sub-box a {
  line-height: 28px;
  color: #333;
  display: block;
  margin-bottom: 12px;
  white-space: nowrap;
}
.header .wrap .tools .nav .list .item .sub-box a:last-child {
  margin-bottom: 0;
}
.header .wrap .tools .nav .list .item .sub-box a:hover {
  color: #ee6318;
}
.header .wrap .tools .nav .list .item .link {
  position: relative;
  padding-bottom: 0;
  border: none;
  background: transparent;
  color: #333333;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.header .wrap .tools .nav .list .item .link.link--active {
  color: #ee6318;
  font-weight: 500;
}
.header .wrap .tools .nav .list .item .link.link--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ee6318;
  border-radius: 0;
  background: url(../images_die/svg/line_xie.svg) no-repeat center center;
  background-size: 100% 100%;
  z-index: 20;
}
.header .wrap .tools .nav .list .item .link:hover {
  color: #ee6318;
}
.header .wrap .tools .search {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
}
.header .wrap .tools .search .icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.header .wrap .tools .search .icon .p1 {
  position: absolute;
  top: 8.33%;
  left: 8.33%;
  display: block;
  box-sizing: border-box;
  width: 70.84%;
  height: 70.84%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}
.header .wrap .tools .search .icon .p2 {
  position: absolute;
  top: 69.21%;
  left: 69.21%;
  display: block;
  box-sizing: border-box;
  width: 17.68%;
  height: 17.68%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.header.active {
  background: #fff;
}
.header.active .wrap .tools .nav {
  height: 64px;
  line-height: 64px;
}

*::after,
*::before,
* {
  transition: all 0.3s linear;
}

.banner-block {
  position: relative;
}
.banner-block .banner {
  width: 100%;
}
.banner-block .mo {
  display: none;
}
.banner-block .content-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.banner-block .content-box .title-box .en {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.banner-block .content-box .title-box .en span {
  color: #ee6318;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
.banner-block .content-box .title-box .cn {
  color: #333;
  text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.04);
  font-weight: 500;
  line-height: 1.2;
  /* 86.4px */
}
.banner-block .content-box .title-box .st {
  margin-top: 24px;
  line-height: 120%;
  /* 24px */
  letter-spacing: 0.4px;
  color: #333;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.04);
}
.banner-block .content-box .btn-link {
  margin-top: 5.5555555556%;
}

.footer {
  position: relative;
  background: #333 url(../images_die/footer_01.webp) no-repeat left bottom;
  background-size: 100% auto;
  overflow: hidden;
}
.footer .wrap {
  position: relative;
  z-index: 1;
}
.footer .main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 40px;
  padding-top: 8.3333333333%;
  padding-bottom: 40px;
}
.footer .intro {
  max-width: 366px;
}
.footer .logo {
  margin-bottom: 60px;
}
.footer .contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 42px;
}
.footer .contact .line-row {
  line-height: 32px;
}
.footer .contact .row {
  display: flex;
}
.footer .contact .row .key {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding-right: 20px;
  white-space: nowrap;
}
.footer .contact .row .val {
  color: rgba(255, 255, 255, 0.8);
  width: 20em;
}
.footer .contact .row .val.f_20 {
  font-weight: bold;
  color: #d9d9d9;
}
.footer .social {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer .social .item {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  position: relative;
}
.footer .social .item .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.footer .social .item .link::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
}
.footer .social .item .link .nor,
.footer .social .item .link .act {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
.footer .social .item .link .nor {
  opacity: 1;
}
.footer .social .item .link .act {
  opacity: 0;
}
.footer .social .item .pop-box {
  position: absolute;
  left: 50%;
  top: calc(100% + 20px);
  transform: translateX(-50%);
  width: 100px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 5px;
  pointer-events: none;
  opacity: 0;
}
.footer .social .item .pop-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.footer .social .item:hover .link {
  background: #ee6318;
}
.footer .social .item:hover .link .nor {
  opacity: 0;
}
.footer .social .item:hover .link .act {
  opacity: 1;
}
.footer .social .item:hover .link::after {
  border: none;
}
.footer .social .item:hover .pop-box {
  opacity: 1;
  top: calc(100% + 10px);
  pointer-events: auto;
}
.footer .divider {
  width: 1px;
  align-self: stretch;
  background: rgba(217, 217, 217, 0.1);
  margin: 0 7.8472222222% 0 4.7222222222%;
}
.footer .nav {
  display: flex;
  flex: 1;
}
.footer .nav .columns {
  display: flex;
  flex: 1;
}
.footer .nav .columns .col {
  flex: 1;
}
.footer .nav .columns .col .heading {
  white-space: nowrap;
  color: #fff;
  margin-bottom: 24px;
  line-height: 30px;
}
.footer .nav .columns .col .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .nav .columns .col .list .list-item a {
  color: rgba(217, 217, 217, 0.6);
  line-height: 1.5;
}
.footer .nav .columns .col .list .list-item:hover a {
  color: #ee6318;
}
.footer .nav .friends {
  width: 240px;
}
.footer .nav .friends .head2 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbdbdb;
}
.footer .nav .friends .head2 .title {
  color: #fff;
}
.footer .nav .friends .head2 .chev {
  width: 13px;
  flex-shrink: 0;
  transform: rotateX(0);
}
.footer .nav .friends .head2.act .chev {
  transform: rotateX(180deg);
}
.footer .nav .friends .panel {
  display: none;
  margin-top: 4px;
  padding: 12px 0;
  color: #fff;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: none;
}
.footer .nav .friends .panel .list .list-item {
  line-height: 3;
}
.footer .nav .friends .panel .list .list-item a {
  color: rgba(217, 217, 217, 0.8);
  padding: 0 8px;
}
.footer .nav .friends .panel .list .list-item:hover {
  background: #ee6318;
}
.footer .nav .friends .panel .list .list-item {
  color: #fff;
}
.footer .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 40px;
  border-top: 1px solid rgba(217, 217, 217, 0.1);
}
.footer .meta .meta-left {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: rgba(217, 217, 217, 0.6);
}
.footer .meta .meta-left .copy {
  margin-right: 20px;
}
.footer .meta .meta-left .legal {
  display: flex;
  gap: 20px;
}
.footer .meta .meta-left .legal a {
  color: rgba(217, 217, 217, 0.6);
}
.footer .meta .meta-left .legal a:hover {
  color: #ee6318;
}
.footer .meta .credit {
  color: rgba(217, 217, 217, 0.6);
}
.footer .meta .credit:hover {
  color: #ee6318;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 32px;
  border-radius: 120px;
  position: relative;
  overflow: hidden;
}
.btn-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 200%;
  border-radius: 120px;
  border: 1px solid #666;
  transform: scale(0.5);
  transform-origin: left top;
}
.btn-link span {
  color: #333;
  margin-right: 32px;
  position: relative;
  z-index: 2;
}
.btn-link .jt-box {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-link .jt-box img {
  position: relative;
  z-index: 2;
}
.btn-link::before {
  content: '';
  display: block;
  right: 8px;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: #ee6318;
  position: absolute;
  z-index: 1;
  transform: translateY(-50%);
}
.btn-link:hover span {
  color: #fff;
}
.btn-link:hover .jt-box img {
  transform: rotate(45deg);
}
.btn-link:hover::after {
  border-color: transparent;
}
.btn-link:hover::before {
  width: 100%;
  aspect-ratio: 1/1;
  right: 0;
  height: 100%;
}

.more-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: between;
  padding: 8px 8px 8px 32px;
  border-radius: 120px;
  position: relative;
  overflow: hidden;
  background: #ee6318;
}
.more-btn-primary span {
  color: #fff;
  position: relative;
  z-index: 2;
}
.more-btn-primary .jt-box {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-btn-primary .jt-box img {
  position: relative;
  z-index: 2;
}
.more-btn-primary:hover {
  background: #d45512;
}
.more-btn-primary:hover span {
  color: #fff;
}
.more-btn-primary:hover .jt-box img {
  transform: rotate(45deg);
}

.block-title-group {
  text-align: center;
}
.block-title-group .label {
  margin-bottom: 8px;
  color: #666666;
  letter-spacing: 0.2px;
  line-height: 1.4;
}
.block-title-group .title {
  color: #333333;
  font-weight: 700;
  letter-spacing: 0.56px;
  line-height: 1.1964285714;
}
.block-title-group .title .yellow {
  color: #ee6318;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 52px;
  border-radius: 4px 0 4px 0;
  height: 3px;
  background-color: transparent !important;
  background-image: url(../images_die/svg/page_line_hui.svg);
  background-size: 100% 100%;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent !important;
  background-image: url(../images_die/svg/page_line.svg);
}

.contact-form .form-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.contact-form .form-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.7777777778%;
  row-gap: 34px;
}
.contact-form .form-item {
  box-sizing: border-box;
  flex: 0 0 48.6111111111%;
  min-width: 0;
}
.contact-form .form-item .label {
  display: block;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.2;
  padding-left: 14px;
  position: relative;
}
.contact-form .form-item .field input[type='text'],
.contact-form .form-item .field select {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  border: 1px solid rgba(217, 217, 217, 0.6);
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  padding: 0 24px;
  line-height: 1.2;
  outline: none;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.contact-form .form-item .field input[type='text']:focus,
.contact-form .form-item .field select:focus {
  border: 1px solid #ee6318;
}
.contact-form .form-item .field select {
  padding-right: 48px;
  cursor: pointer;
  appearance: none;
  background-image: url(../images_die/svg/down_01.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 11px 10px;
}
.contact-form .form-item .field input::placeholder,
.contact-form .form-item .field select:invalid {
  color: #999;
}
.contact-form .form-item .field input[type='text']:focus-visible,
.contact-form .form-item .field select:focus-visible {
  border-color: rgba(238, 99, 24, 0.5);
  background-color: #fff;
}
.contact-form .form-item .field input:-webkit-autofill,
.contact-form .form-item .field input:-webkit-autofill:hover,
.contact-form .form-item .field input:-webkit-autofill:focus,
.contact-form .form-item .field input:-webkit-autofill:active {
  -webkit-text-fill-color: inherit;
  caret-color: inherit;
  box-shadow: 0 0 0 1000px transparent inset;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-out 0s;
}
.contact-form .form-item.form-item--required .label::before {
  content: '*';
  display: inline-block;
  margin-right: 4px;
  color: #ff0000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  vertical-align: -2px;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-form .form-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.contact-form .form-actions .submit {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px 5px 32px;
  border: none;
  border-radius: 60px;
  background: #ee6318;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}
.contact-form .form-actions .submit:hover {
  background: #d45512;
}
.contact-form .form-actions .submit:hover .icon img {
  transform: rotate(45deg);
}
.contact-form .form-actions .submit:focus-visible {
  outline: 2px solid #ee6318;
  outline-offset: 3px;
}
.contact-form .form-actions .submit .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.contact-form .form-actions .submit .icon img {
  display: block;
  width: 10px;
  height: auto;
}

.contact-form.contact-form--panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 40px 6.9444444444%;
}

.right-side-bar {
  position: fixed;
  right: 0;
  bottom: 10%;
  width: 80px;
  z-index: 100;
}
.right-side-bar .top-box {
  position: relative;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 40px 0 0 40px;
  padding: 32px 20px;
}
.right-side-bar .top-box .item {
  cursor: pointer;
  position: relative;
}
.right-side-bar .top-box .item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #999;
  margin-bottom: 12px;
}
.right-side-bar .top-box .item .text {
  font-size: 14px;
  color: #666;
  text-align: center;
}
.right-side-bar .top-box .item .phone-box {
  position: absolute;
  right: 100%;
  top: -10px;
  height: 60px;
  line-height: 60px;
  padding: 0 24px 0 36px;
  border-radius: 60px 0 0 60px;
  background: #fff;
  font-weight: bold;
  color: #ee6318;
  white-space: nowrap;
  opacity: 0;
  box-shadow: -4px 4px 20px 0 rgba(0, 0, 0, 0.05);
  pointer-events: none;
}
.right-side-bar .top-box .item .ewm-code-box {
  position: absolute;
  right: calc(100% + 24px);
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  opacity: 0;
  pointer-events: none;
}
.right-side-bar .top-box .item:hover .phone-box {
  opacity: 1;
  pointer-events: auto;
}
.right-side-bar .top-box .item:hover .ewm-code-box {
  opacity: 1;
  pointer-events: auto;
}
.right-side-bar .top-box .item:hover .icon {
  background: #ee6318;
}
.right-side-bar .top-box .divider {
  height: 1px;
  width: 40px;
  background: rgba(217, 217, 217, 0.5);
  margin: 24px 0;
}
.right-side-bar .top-box .toggle-btn {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 60px;
  border-radius: 20px 0 0 20px;
  background: #999;
  display: none;
  align-items: center;
  justify-content: center;
}
.right-side-bar .top-box .toggle-btn img {
  transform: rotate(-90deg);
  width: 12px;
  height: auto;
  display: block;
}
.right-side-bar .top-box .toggle-btn.active img {
  transform: rotate(90deg);
}
.right-side-bar .slide-up-ele {
  display: flex;
  justify-content: center;
}
.right-side-bar .slide-up-ele .slide-up-btn {
  margin-top: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.right-side-bar .slide-up-ele .slide-up-btn:hover {
  background: #ee6318;
}

.contact-form.contact-form--index {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.contact-form.contact-form--index::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images_die/ind_06_03.webp) no-repeat center center;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
}
.contact-form.contact-form--index .form-grid {
  row-gap: 24px;
}
.contact-form.contact-form--index .form-item .field input[type='text'],
.contact-form.contact-form--index .form-item .field select {
  border: 0.5px solid rgba(217, 217, 217, 0.3);
  background-color: rgba(245, 245, 245, 0.65);
}
.contact-form.contact-form--index .form-item .field input[type='text']:focus-visible,
.contact-form.contact-form--index .form-item .field select:focus-visible {
  background-color: rgba(245, 245, 245, 0.85);
}

.contact-form.contact-form--contact-sheet {
  position: relative;
}
.contact-form.contact-form--contact-sheet .form-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 42px;
  column-gap: 5.1282051282%;
}
.contact-form.contact-form--contact-sheet .form-item {
  box-sizing: border-box;
  flex: 0 0 47.4358974359%;
  min-width: 0;
}
.contact-form.contact-form--contact-sheet .form-actions {
  margin-top: 16.6666666667%;
  justify-content: flex-start;
}

.index-page .section-01 .swiper .swiper-slide {
  position: relative;
}
.index-page .section-01 .swiper .swiper-slide .banner-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1920/800;
}
.index-page .section-01 .swiper .swiper-slide .banner-img .mo {
  display: none;
}
.index-page .section-01 .swiper .swiper-slide .banner-img .play {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 40px;
  height: 40px;
  z-index: 99;
}
.index-page .section-01 .swiper .swiper-slide .banner-img video {
  width: 100%;
}
.index-page .section-01 .swiper .swiper-slide .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  line-height: 1.2;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .top-text .small-text {
  margin-left: 40px;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .top-text .small-text .icon-box {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .top-text .small-text .text-box p {
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.04);
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .f_80.f_72 {
  letter-spacing: 1.6px;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .f_80.fbd {
  background: linear-gradient(
    55deg,
    #dd490b 9.28%,
    #dd4c0a 14.37%,
    #e56407 25.97%,
    #e97305 39.72%,
    #eb7905 60.78%,
    #e76e08 80.55%,
    #e25a10 96.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .f_72 {
  font-weight: 500;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .bottom .te + .te {
  margin-left: 40px;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .text-container .bottom .btm-text {
  width: 36.8055555556%;
  letter-spacing: 0.4px;
  margin-top: 22px;
}
.index-page .section-01 .swiper .swiper-slide .content .wrap .btn-link {
  margin-top: 5.5555555556%;
}
.index-page .section-01 .swiper .swiper-pagination {
  bottom: 6.5%;
}
.index-page .section-02 {
  position: relative;
  box-sizing: border-box;
  background-color: #f9f9f9;
  overflow: hidden;
  background: url(../images_die/ind_02_01.webp) no-repeat center center;
  background-size: cover;
}
.index-page .section-02 .inner-box {
  position: relative;
  z-index: 1;
  padding-top: 5.5555555556%;
  padding-bottom: 6.1111111111%;
}
.index-page .section-02 .inner-box .block {
  position: relative;
}
.index-page .section-02 .inner-box .block .row-head {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 4.1666666667%;
}
.index-page .section-02 .inner-box .block .row-head .block-title-group {
  text-align: left;
}
.index-page .section-02 .inner-box .block .row-head .intro {
  flex-shrink: 0;
  width: 27.7777777778%;
  color: #666666;
  font-weight: 400;
  text-align: justify;
}
.index-page .section-02 .inner-box .block .row-head .intro .line {
  margin: 0;
  line-height: 1.6;
}
.index-page .section-02 .inner-box .block .row-head .intro .line + .line {
  margin-top: 0;
}
.index-page .section-02 .inner-box .block .row-body {
  box-sizing: border-box;
  width: 100%;
  align-items: flex-start;
}
.index-page .section-02 .inner-box .block .row-body .video-module {
  flex-shrink: 0;
  width: 61.1111111111%;
  margin-right: 11.0416666667%;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell {
  position: relative;
  width: 100%;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame .cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame .play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: none;
  transform: translate(-50%, -50%);
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame .play .ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 50px;
  height: 50px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: none;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame .play .ripples .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(238, 99, 24, 0.45);
  border-radius: 50%;
  opacity: 0.5;
  animation: about-play-ripple 2.2s ease-out infinite;
  transition: none;
}
.index-page
  .section-02
  .inner-box
  .block
  .row-body
  .video-module
  .video-shell
  .video-frame
  .play
  .ripples
  .ring:nth-child(2) {
  animation-delay: 0.73s;
}
.index-page
  .section-02
  .inner-box
  .block
  .row-body
  .video-module
  .video-shell
  .video-frame
  .play
  .ripples
  .ring:nth-child(3) {
  animation-delay: 1.46s;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame .play .core {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: none;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame .play .core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: none;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .video-frame .play:active .core {
  transform: scale(0.9);
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .corner-decor {
  position: absolute;
  top: 85.74%;
  right: -5.34%;
  bottom: 0;
  left: 75.68%;
  z-index: 3;
  pointer-events: none;
}
.index-page .section-02 .inner-box .block .row-body .video-module .video-shell .corner-decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}
.index-page .section-02 .inner-box .block .row-body .stats {
  flex-shrink: 0;
  width: 27.8472222222%;
  box-sizing: border-box;
}
.index-page .section-02 .inner-box .block .row-body .stats .list {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.index-page .section-02 .inner-box .block .row-body .stats .list .unit {
  flex-shrink: 0;
}
.index-page .section-02 .inner-box .block .row-body .stats .list .unit .stat-label {
  margin: 0 0 8px;
  color: #333333;
  font-weight: 400;
  line-height: 1.5;
}
.index-page .section-02 .inner-box .block .row-body .stats .list .unit .stat-nums {
  display: flex;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  color: #ee6318;
  line-height: 1.2;
  white-space: nowrap;
}
.index-page .section-02 .inner-box .block .row-body .stats .list .unit .stat-nums .num {
  font-weight: 600;
  font-family: 'popr';
}
.index-page .section-02 .inner-box .block .row-body .stats .list .unit .stat-nums .plus {
  margin-left: 2px;
  font-weight: 400;
  line-height: 1.2;
  transform: translateY(6px);
}
.index-page .section-02 .inner-box .block .row-body .stats .list .divider {
  border: 1px dashed #d9d9d9;
  margin: 30px 0 15%;
}
.index-page .section-02 .deco-bg {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: min(1920px, 200vw);
  height: 1154px;
  opacity: 0.05;
  pointer-events: none;
  transform: translateX(-50%);
}
.index-page .section-02 .deco-bg img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center top;
}
.index-page .section-3-4 {
  background: url(../images_die/ind_03_000.webp) no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
}
.index-page .section-03 .inner-box {
  padding: 8.3333333333% 0 6.9444444444%;
}
.index-page .section-03 .inner-box .block-title-group {
  margin-bottom: 4.1666666667%;
}
.index-page .section-03 .inner-box .card-group {
  height: 548px;
  background: url(../images_die/ind_03_08.svg) no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
  display: flex;
}
.index-page .section-03 .inner-box .card-group .zhu {
  width: 1.5048611111%;
  background: #fff;
  position: relative;
  z-index: 1;
}
.index-page .section-03 .inner-box .card-group .card {
  height: 100%;
  width: 11.1111111111%;
  border-radius: 12px;
  position: relative;
  z-index: 20;
}
.index-page .section-03 .inner-box .card-group .card .card-inner {
  position: relative;
  height: 100%;
}
.index-page .section-03 .inner-box .card-group .card .top-title {
  text-align: center;
  margin-top: 60px;
}
.index-page .section-03 .inner-box .card-group .card .top-title .icon {
  margin-bottom: 40px;
}
.index-page .section-03 .inner-box .card-group .card .top-title .icon img {
  display: inline-block;
}
.index-page .section-03 .inner-box .card-group .card .top-title .title {
  line-height: 1.2;
  font-weight: 700;
}
.index-page .section-03 .inner-box .card-group .card .line {
  margin: 24px 0;
  border: 1px dashed #d9d9d9;
}
.index-page .section-03 .inner-box .card-group .card .content {
  position: absolute;
  width: 65.7142857143%;
  left: 17.1428571429%;
  top: 42.5182481752%;
  height: 214px;
  color: #666;
  line-height: 1.5;
  padding-top: 24px;
  border-top: 1px dashed #d9d9d9;
  opacity: 0;
  overflow: hidden;
}
.index-page .section-03 .inner-box .card-group .card .btn-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12.4087591241%;
}
.index-page .section-03 .inner-box .card-group .card .btn-box a,
.index-page .section-03 .inner-box .card-group .card .btn-box .btn-link-2 {
  display: flex;
  justify-content: center;
}
.index-page .section-03 .inner-box .card-group .card .btn-box a span,
.index-page .section-03 .inner-box .card-group .card .btn-box .btn-link-2 span {
  color: #ee6318;
  display: block;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.3s linear 0.3s;
}
.index-page .section-03 .inner-box .card-group .card .card-item-1 {
  border-radius: 12px;
  overflow: hidden;
  padding: 0 10px;
  border: 1px solid #ececec;
  width: 100%;
  height: 100%;
}
.index-page .section-03 .inner-box .card-group .card .card-item-2 {
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  opacity: 0;
  padding: 0 17.1428571429%;
  background: #fff;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.02);
}
.index-page .section-03 .inner-box .card-group .card .card-item-2 .top-title {
  text-align: left;
}
.index-page .section-03 .inner-box .card-group .card .card-item-2 .content {
  opacity: 1;
  text-align: justify;
}
.index-page .section-03 .inner-box .card-group .card .card-item-2 .btn-box {
  left: auto;
  transform: translateX(0);
}
.index-page .section-03 .inner-box .card-group .card .card-item-2 .btn-box a span {
  width: calc(4em + 13px);
}
.index-page .section-03 .inner-box .card-group .card .card-item-2::after {
  content: '';
  display: block;
  width: 133px;
  height: 92px;
  background-image: url(../images_die/svg/ind_02_02.svg);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: -17px;
  bottom: -16px;
}
.index-page .section-03 .inner-box .card-group .card.active {
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.05);
  width: 24.3055555556%;
}
.index-page .section-03 .inner-box .card-group .card.active .card-item-2 {
  opacity: 1;
}
.index-page .section-03 .inner-box .card-group .card.active .card-item-1 {
  opacity: 0;
}
.index-page .section-04 .inner-box {
  padding: 8.3333333333% 0 3.4722222222%;
  position: relative;
}
.index-page .section-04 .inner-box .block-title-group {
  margin-bottom: 2.5%;
}
.index-page .section-04 .inner-box .partner-box {
  position: relative;
}
.index-page .section-04 .inner-box .partner-box .btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.index-page .section-04 .inner-box .partner-box .btn:hover {
  background: #ee6318;
}
.index-page .section-04 .inner-box .partner-box .prev-btn {
  left: -6.9444444444%;
}
.index-page .section-04 .inner-box .partner-box .next-btn {
  right: -6.9444444444%;
}
.index-page .section-04 .inner-box .swiper {
  width: calc(100% + 24px);
  margin-left: -12px;
  padding: 24px 12px 40px;
}
.index-page .section-04 .inner-box .swiper .swiper-slide .logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.1666666667%;
}
.index-page .section-04 .inner-box .swiper .swiper-slide .logo-item {
  margin-bottom: 4.1666666667%;
  width: 16.6666666667%;
}
.index-page .section-04 .inner-box .swiper .swiper-slide .logo-item:nth-last-child(1),
.index-page .section-04 .inner-box .swiper .swiper-slide .logo-item:nth-last-child(2),
.index-page .section-04 .inner-box .swiper .swiper-slide .logo-item:nth-last-child(3),
.index-page .section-04 .inner-box .swiper .swiper-slide .logo-item:nth-last-child(4),
.index-page .section-04 .inner-box .swiper .swiper-slide .logo-item:nth-last-child(5) {
  margin-bottom: 0;
}
.index-page .section-04 .inner-box .swiper .swiper-slide .img-box {
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(20px);
}
.index-page .section-04 .inner-box .swiper .swiper-slide .img-box img {
  transform: scale(1.0001);
  width: 100%;
}
.index-page .section-04 .inner-box .swiper .swiper-pagination {
  margin-top: 1.8055555556%;
  position: relative;
  bottom: 0;
  left: auto;
}
.index-page .section-04 .inner-box .partner-swiper-pagination {
  bottom: 5%;
}
.index-page .section-05 {
  background: url(../images_die/ind_05_01.webp) no-repeat;
  background-size: 100% auto;
  background-position: center top;
}
.index-page .section-05 .inner-box {
  padding: 8.3333333333% 0 7.2222222222%;
}
.index-page .section-05 .inner-box .block-title-group {
  margin-bottom: 5%;
}
.index-page .section-05 .inner-box .client-box {
  position: relative;
}
.index-page .section-05 .inner-box .client-box .swiper-pagination {
  margin-top: 0;
  position: relative;
  bottom: 0;
  left: auto;
  display: none;
}
.index-page .section-05 .inner-box .client-box .btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.index-page .section-05 .inner-box .client-box .btn:hover {
  background: #ee6318;
}
.index-page .section-05 .inner-box .client-box .prev-btn {
  left: -6.9444444444%;
}
.index-page .section-05 .inner-box .client-box .next-btn {
  right: -6.9444444444%;
}
.index-page .section-05 .inner-box .client-box .swiper {
  padding: 36px 0px 40px;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide {
  position: relative;
  padding: 2.7777777778%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.03);
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide .top-icon {
  position: absolute;
  top: -12px;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide .top-icon .act {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide .text-box {
  height: 18em;
  overflow: hidden;
  line-height: 1.5;
  margin-bottom: 40px;
  position: relative;
  z-index: 20;
  color: #666;
  text-align: justify;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide .text-box .fbd {
  color: #333333;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide .desc-box {
  color: #333;
  line-height: 1.5;
  position: relative;
  z-index: 20;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide .desc-box .gray {
  font-weight: 300;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images_die/ind_05_02.webp) no-repeat;
  background-size: 100%;
  background-position: bottom center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide:hover {
  transform: translateY(-24px);
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide:hover .top-icon .act {
  opacity: 1;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide:hover .top-icon .nor {
  opacity: 0;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide:hover .text-box {
  color: #333;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide:hover .desc-box {
  color: #fff;
}
.index-page .section-05 .inner-box .client-box .swiper .swiper-slide:hover::after {
  opacity: 1;
}
.index-page .section-05 .inner-box .more-btn-box {
  margin-top: 20px;
}
.index-page .section-06 {
  background: url(../images_die/ind_06_01.webp) no-repeat bottom center;
  background-size: cover;
  background-position: center bottom;
}
.index-page .section-06 .inner-box {
  padding-top: 8.3333333333%;
}
.index-page .section-06 .block-title-group {
  margin-bottom: 4.4444444444%;
}
.index-page .section-06 .swiper-out-box {
  padding-bottom: 200px;
}
.index-page .section-06 #honor-swiper {
  width: 20.8333333333%;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
.index-page .section-06 #honor-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  opacity: 0 !important;
}
.index-page .section-06 #honor-swiper .swiper-slide-prev {
  opacity: 1 !important;
}
.index-page .section-06 #honor-swiper .swiper-slide-active {
  opacity: 1 !important;
}
.index-page .section-06 #honor-swiper .swiper-slide-next {
  opacity: 1 !important;
}
.index-page .section-06 #honor-swiper .img-box {
  max-width: 100%;
  width: 300px;
  aspect-ratio: 3/4;
  background: url(../images_die/ind_06_02.webp) no-repeat center center;
  background-size: 100% auto;
}
.index-page .section-06 #honor-swiper .img-box .img-box-inner {
  width: 100%;
  height: 100%;
  padding: 10.6666666667% 8%;
}
.index-page .section-06 #honor-swiper .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.index-page .section-06 .page-swiper-box {
  width: 500px;
  margin: -120px auto 0;
  position: relative;
  z-index: 20;
}
.index-page .section-06 .page-swiper-box .top-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-page .section-06 .page-swiper-box .top-box .btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #d9d9d9;
}
.index-page .section-06 .page-swiper-box .top-box .btn:hover {
  background: #ee6318;
}
.index-page .section-06 .page-swiper-box .top-box .prev-btn {
  left: -6.9444444444%;
}
.index-page .section-06 .page-swiper-box .top-box .next-btn {
  right: -6.9444444444%;
}
.index-page .section-06 .page-swiper-box .top-box .swiper {
  width: calc(100% - 160px);
}
.index-page .section-06 .page-swiper-box .top-box .swiper .swiper-slide {
  text-align: center;
}
.index-page .section-06 .page-swiper-box .top-box .swiper .swiper-slide .text {
  overflow: hidden;
}
.index-page .section-06 .page-swiper-box .siwper-pagination {
  display: flex;
  justify-content: center;
  font-size: 16px;
  color: #999;
  gap: 4px;
  margin-top: 0;
}
.index-page .section-06 .page-swiper-box .siwper-pagination .swiper-pagination-current {
  color: #ee6318;
  font-weight: 700;
}
.index-page .section-06 .page-swiper-box .siwper-pagination .swiper-pagination-total {
  color: #999;
}
.index-page .section-06 .form-block {
  margin-top: 11.1111111111%;
}
.index-page .section-06 .form-block .block-title {
  text-align: center;
  color: #333;
  margin-bottom: 2.7777777778%;
  line-height: 1.2;
}
.index-page .section-06 .form-block .contact-form {
  margin-left: auto;
  margin-right: auto;
}

.about-page .section-02 {
  position: relative;
}
.about-page .section-02 .section-02-bg {
  position: absolute;
  background: url(../images_die/about_02_01.webp) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 0;
  top: 0;
}
.about-page .section-02 .wrap {
  position: relative;
  z-index: 20;
}
.about-page .section-02 .inner-box {
  padding: 8.3333333333% 0 6.9444444444%;
}
.about-page .section-02 .inner-box .top-box-1 {
  margin-bottom: 8.3333333333%;
}
.about-page .section-02 .inner-box .top-box-1 .left-box {
  width: 43.75%;
  position: relative;
  z-index: 40;
}
.about-page .section-02 .inner-box .top-box-1 .left-box .block-title-group {
  text-align: left;
  margin-bottom: 19.0476190476%;
}
.about-page .section-02 .inner-box .top-box-1 .left-box .info-box {
  line-height: 1.5;
  color: #333;
  position: relative;
}
.about-page .section-02 .inner-box .top-box-1 .left-box .info-box .text {
  position: relative;
  z-index: 2;
}
.about-page .section-02 .inner-box .top-box-1 .left-box .info-box::after {
  content: '';
  display: block;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(12px);
  position: absolute;
  top: -60px;
  left: -60px;
  z-index: 1;
}
.about-page .section-02 .inner-box .top-box-1 .right-box {
  width: 54.4444444444%;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module {
  position: relative;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell {
  position: relative;
  width: 100%;
  z-index: 20;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame .cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame .play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: none;
  transform: translate(-50%, -50%);
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame .play .ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 50px;
  height: 50px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: none;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame .play .ripples .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(238, 99, 24, 0.45);
  border-radius: 50%;
  opacity: 0.5;
  animation: about-play-ripple 2.2s ease-out infinite;
  transition: none;
}
.about-page
  .section-02
  .inner-box
  .top-box-1
  .right-box
  .video-module
  .video-shell
  .video-frame
  .play
  .ripples
  .ring:nth-child(2) {
  animation-delay: 0.73s;
}
.about-page
  .section-02
  .inner-box
  .top-box-1
  .right-box
  .video-module
  .video-shell
  .video-frame
  .play
  .ripples
  .ring:nth-child(3) {
  animation-delay: 1.46s;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame .play .core {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: none;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame .play .core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: none;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .video-frame .play:active .core {
  transform: scale(0.9);
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .corner-decor {
  position: absolute;
  bottom: 0;
  left: 80.8673469388%;
  z-index: 3;
  pointer-events: none;
  width: 32.9081632653%;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module .video-shell .corner-decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}
.about-page .section-02 .inner-box .top-box-1 .right-box .video-module::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #ee6318;
  z-index: 1;
  position: absolute;
  left: 16px;
  top: -16px;
}
.about-page .section-02 .inner-box .status-box {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.about-page .section-02 .inner-box .status-box .item {
  max-width: 400px;
  width: 33.33%;
}
.about-page .section-02 .inner-box .status-box .item .top-box {
  display: flex;
  margin-bottom: 35px;
}
.about-page .section-02 .inner-box .status-box .item .icon {
  flex-shrink: 0;
  margin-right: 40px;
}
.about-page .section-02 .inner-box .status-box .item .text-box .desc {
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
}
.about-page .section-02 .inner-box .status-box .item .text-box .num-box {
  color: #ee6318;
  display: flex;
  align-items: flex-start;
}
.about-page .section-02 .inner-box .status-box .item .text-box .num-box .num {
  font-weight: bold;
  font-family: 'popr';
}
.about-page .section-02 .inner-box .status-box .item .line {
  height: 3px;
  position: relative;
}
.about-page .section-02 .inner-box .status-box .item .line img {
  width: 100%;
  display: block;
  height: 100%;
}
.about-page .section-02 .inner-box .status-box .item .line::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: url(../images_die/svg/line2_xie.svg) no-repeat left bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.about-page .section-02 .inner-box .status-box .item:hover .line::after {
  width: 100%;
}
.about-page .section-03 {
  background-image: url(../images_die/about_03_03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  padding-bottom: 5.2083333333%;
}
.about-page .section-03 .inner-box {
  padding: 8.3333333333% 0 0;
}
.about-page .section-03 .block-title-group {
  margin-bottom: 4.1666666667%;
}
.about-page .section-03 .swiper-container-box {
  background: url(../images_die/about_03_01.webp) no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.about-page .section-03 .swiper-container-box .pc-history-swiper {
  padding: 190px 0;
}
.about-page .section-03 .swiper-container-box .swiper {
  position: relative;
}
.about-page .section-03 .swiper-container-box .swiper .btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.about-page .section-03 .swiper-container-box .swiper .btn:hover {
  background: #ee6318;
}
.about-page .section-03 .swiper-container-box .swiper .prev-btn {
  left: 6.7708333333%;
}
.about-page .section-03 .swiper-container-box .swiper .next-btn {
  right: 5.2083333333%;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide {
  aspect-ratio: 1920/370;
  position: relative;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item {
  position: absolute;
  width: 21.3541666667%;
  height: 190px;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: none;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-t,
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-b {
  position: absolute;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .year {
  line-height: 36px;
  font-weight: bold;
  color: #ee6318;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .desc {
  color: #666;
  line-height: 1.5;
  max-width: 280px;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-t {
  width: 10px;
  height: 10px;
  left: -5px;
  border-radius: 50%;
  pointer-events: none;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-t .ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 10px;
  height: 10px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-t .ripples .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  background: rgba(238, 99, 24, 0.45);
  border-radius: 50%;
  opacity: 0.5;
  animation: about-timeline-dot-ripple 2.2s ease-out infinite;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-t .ripples .ring:nth-child(2) {
  animation-delay: 0.73s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-t .ripples .ring:nth-child(3) {
  animation-delay: 1.46s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-t .core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: #ee6318;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item .dot-b {
  width: 8px;
  height: 8px;
  border: 1px solid #ee6318;
  border-radius: 50%;
  left: -4px;
  background: #fff;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(1) {
  left: 13.0208333333%;
  bottom: 71.8918918919%;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2) {
  left: 25.1041666667%;
  top: 101.3513513514%;
  transition-delay: 0.1s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(3) {
  left: 33.9583333333%;
  bottom: 70.8108108108%;
  transition-delay: 0.2s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(4) {
  left: 46.0416666667%;
  top: 79.4594594595%;
  transition-delay: 0.3s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(5) {
  left: 55.5729166667%;
  bottom: 86.4864864865%;
  transition-delay: 0.4s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(6) {
  left: 67.7083333333%;
  top: 39.4594594595%;
  transition-delay: 0.5s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(7) {
  left: 77.0833333333%;
  bottom: 97.2972972973%;
  transition-delay: 0.6s;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n + 1) {
  justify-content: flex-start;
  transform: translateY(-20px);
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n + 1) .dot-t {
  top: 13px;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n + 1) .dot-b {
  bottom: 0;
  transform: translateY(4px);
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n + 1)::after {
  bottom: 4px;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n) {
  transform: translateY(20px);
  justify-content: flex-end;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n) .dot-t {
  bottom: 13px;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n) .dot-b {
  top: 0;
  transform: translateY(-4px);
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item:nth-child(2n)::after {
  top: 4px;
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide .item::after {
  content: '';
  display: block;
  width: 1px;
  height: 164px;
  background: #ee6318;
  position: absolute;
  left: 0px;
  transform: translate(-50%);
}
.about-page .section-03 .swiper-container-box .swiper .swiper-slide-active .item {
  opacity: 1;
  transform: translateY(0) !important;
  transition: all 0.3s linear;
}
.about-page .section-03 .swiper-container-box .swiper-m-bg {
  display: none;
}
.about-page .section-03 .swiper-container-box .m-history-swiper {
  display: none;
}
.about-page .section-03 .swiper-container-box .m-history-swiper {
  width: 65%;
}
.about-page .section-03 .swiper-container-box .m-history-swiper .swiper-slide {
  aspect-ratio: auto;
  padding: 10px 0;
}
.about-page .section-03 .swiper-container-box .m-history-swiper .swiper-slide .item {
  transform: none !important;
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  opacity: 1;
}
.about-page .section-03 .swiper-container-box .m-history-swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  bottom: auto;
  margin-top: 20px;
}
.about-page .section-04 {
  background-image: url(../images_die/about_04_01.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
  background-color: #ededed;
}
.about-page .section-04 .inner-box {
  padding: 8.3333333333% 0 10.9027777778%;
}
.about-page .section-04 .inner-box .block-title-group {
  margin-bottom: 4.4444444444%;
}
.about-page .section-04 .inner-box .content-box .img-box {
  aspect-ratio: 1440/312;
  overflow: hidden;
}
.about-page .section-04 .inner-box .content-box .big-img {
  display: none;
}
.about-page .section-04 .inner-box .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 4.1666666667%;
}
.about-page .section-04 .inner-box .btn-box .btn {
  cursor: pointer;
}
.about-page .section-04 .inner-box .btn-box .btn span,
.about-page .section-04 .inner-box .btn-box .btn img {
  display: block;
}
.about-page .section-04 .inner-box .btn-box .btn span {
  color: #333;
  margin-bottom: 16px;
  letter-spacing: 0.9px;
}
.about-page .section-04 .inner-box .btn-box .btn .up-text {
  display: none;
}
.about-page .section-04 .inner-box .btn-box .btn .jt-box {
  animation: about-org-arrow-nudge 1.35s ease-in-out infinite;
}
.about-page .section-04 .inner-box .btn-box .btn .jt-box img {
  margin: 0 auto;
}
.about-page .section-04 .inner-box .btn-box .btn:hover .jt-box {
  animation-play-state: paused;
}
.about-page .section-04.active .inner-box .content-box .img-box {
  aspect-ratio: auto;
}
.about-page .section-04.active .inner-box .btn-box {
  color: #333;
}
.about-page .section-04.active .inner-box .btn-box .btn {
  color: #333;
}
.about-page .section-04.active .inner-box .btn-box .btn .up-text {
  display: block;
}
.about-page .section-04.active .inner-box .btn-box .btn .down-text {
  display: none;
}
.about-page .section-04.active .inner-box .btn-box .btn .jt-box img {
  transform: rotateX(180deg);
}
.about-page .section-05 {
  background: url(../images_die/about_05_02.png) no-repeat center center;
  background-size: cover;
  position: relative;
}
.about-page .section-05 .inner-box {
  padding: 3.4722222222% 0 0;
}
.about-page .section-05 .inner-box .block-title-group {
  margin-bottom: 4.1666666667%;
}
.about-page .section-05 .inner-box .content-box .main-img {
  max-width: 654px;
  margin: 0 auto;
  position: relative;
}
.about-page .section-05 .inner-box .content-box .main-img .main-img-ele {
  display: block;
  position: relative;
  z-index: 10;
}
.about-page .section-05 .inner-box .content-box .item {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-size: 100% 100%;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(50% 50% at 50% 50%, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: 0 40px 40px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  background-size: cover;
  background-position: center;
}
.about-page .section-05 .inner-box .content-box .item .icon {
  width: 50px;
  margin: 80px auto 24px;
}
.about-page .section-05 .inner-box .content-box .item .title {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}
.about-page .section-05 .inner-box .content-box .item .line {
  width: 20px;
  height: 1px;
  background: #ee6318;
  margin: 24px auto;
}
.about-page .section-05 .inner-box .content-box .item .text {
  color: #333;
  line-height: 1.5;
  text-align: center;
  width: 240px;
  margin: 0 auto;
}
.about-page .section-05 .inner-box .content-box .item:nth-child(2) {
  z-index: 9;
  right: 82.874617737%;
  bottom: 61.581920904%;
  animation: about-culture-card-float-y 5.4s ease-in-out infinite;
  animation-delay: 0s;
  background-image: url(../images_die/about_05_03.webp);
}
.about-page .section-05 .inner-box .content-box .item:nth-child(3) {
  z-index: 20;
  right: 45.2599388379%;
  bottom: 9.1807909605%;
  animation: about-culture-card-float-x 6.3s ease-in-out infinite;
  animation-delay: 0.4s;
}
.about-page .section-05 .inner-box .content-box .item:nth-child(4) {
  z-index: 9;
  left: 78.74617737%;
  bottom: 41.8079096045%;
  animation: about-culture-card-float-diag 5.8s ease-in-out infinite;
  animation-delay: 1.1s;
  background-image: url(../images_die/about_05_05.webp);
}
.about-page .section-05 .inner-box .content-box .item:hover .title {
  color: #ee6318;
}
.about-page .section-06 {
  position: relative;
  padding-bottom: 10.8333333333%;
}
.about-page .section-06 .line-svg-reveal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.about-page .section-06 .line-svg-reveal svg {
  display: block;
  width: 100%;
  height: auto;
}
.about-page .section-06 .line-svg-reveal path {
  fill: none;
}
.about-page .section-06 .line-svg-reveal.line-svg-reveal--upper {
  z-index: 10;
}
.about-page .section-06 .line-svg-reveal.line-svg-reveal--lower {
  bottom: -1%;
  z-index: 1;
}
.about-page .section-06 .line-svg-reveal[data-offset='1'] .line-svg-1 path,
.about-page .section-06 .line-svg-reveal[data-offset='1'] .line-svg-2 path {
  animation: about-line-stroke-draw 2s ease-out forwards;
}
.about-page .section-06 .inner-box {
  padding: 8.3333333333% 0 0;
}
.about-page .section-06 .inner-box .block-title-group {
  margin-bottom: 4.1666666667%;
}
.about-page .section-06 .swiper-container-box {
  position: relative;
  z-index: 10;
}
.about-page .section-06 .swiper-slide img {
  width: 100%;
  transform: scale(0.7);
}
.about-page .section-06 .swiper-slide-active img {
  transform: scale(1);
}
.about-page .section-06 .btn-box {
  width: 57.25%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 200;
  display: flex;
  justify-content: space-between;
}
.about-page .section-06 .btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #d9d9d9;
}
.about-page .section-06 .btn:hover {
  background: #ee6318;
}
.about-page .section-06 .swiper-pagination {
  margin-top: 2.6041666667%;
  position: static;
  display: flex;
  justify-content: center;
}
.about-page .section-06 .swiper-pagination .swiper-pagination-bullet {
  display: block;
}
.about-page .section-07 {
  padding-bottom: 5.2083333333%;
}
.about-page .section-07 .block-title-group {
  margin-bottom: 4.1666666667%;
}
.about-page .section-07 .swiper {
  padding-top: 24px;
  padding-bottom: 50px;
}
.about-page .section-07 .swiper .swiper-slide {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}
.about-page .section-07 .swiper .swiper-slide .info-box {
  position: relative;
  border-radius: 12px 12px 0 0;
  padding: 13.5135135135%;
  line-height: 1.2;
}
.about-page .section-07 .swiper .swiper-slide .info-box .date {
  color: #ee6318;
  margin-bottom: 16px;
  position: relative;
  z-index: 20;
}
.about-page .section-07 .swiper .swiper-slide .info-box .title {
  font-weight: 500;
  color: #333;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  position: relative;
  z-index: 20;
  height: 2.4em;
}
.about-page .section-07 .swiper .swiper-slide .info-box .jt {
  position: relative;
  z-index: 20;
}
.about-page .section-07 .swiper .swiper-slide .info-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images_die/svg/about_07_01.svg) no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0;
}
.about-page .section-07 .swiper .swiper-slide .img-box {
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.about-page .section-07 .swiper .swiper-slide .img-box img {
  width: 100%;
}
.about-page .section-07 .swiper .swiper-slide:hover {
  transform: translateY(-24px);
}
.about-page .section-07 .swiper .swiper-slide:hover .info-box::after {
  opacity: 1;
}
.about-page .section-07 .swiper .swiper-slide:hover .img-box img {
  transform: scale(1.1);
}
.about-page .section-07 .btn-box {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.about-page .section-07 .btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: #d9d9d9;
}
.about-page .section-07 .btn:hover {
  background: #ee6318;
}
.about-page .section-6-7 {
  background: url(../images_die/about_07_01.webp);
  background-size: 100% auto;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.service-page .a_dw {
  top: -130px;
}
.service-page .banner-block .content-box .title-box .st {
  margin-top: 24px;
  line-height: 1.2;
  letter-spacing: 0.4px;
}
.service-page .section-02 {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.service-page .section-02 .inner-box {
  padding-top: 5.5555555556%;
  margin-bottom: 5.5555555556%;
}
.service-page .section-02 .tab-outer {
  display: flex;
  justify-content: center;
}
.service-page .section-02 .tab-outer .tab-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
  gap: 8px;
  padding: 8px;
  background: #f9f9f9;
  border-radius: 47px;
}
.service-page .section-02 .tab-outer .tab-nav .tab {
  box-sizing: border-box;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 32px;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  background: none;
  cursor: pointer;
  line-height: 34px;
  color: #666;
  font-weight: 400;
}
.service-page .section-02 .tab-outer .tab-nav .tab.tab--current {
  min-height: 34px;
  background: #ee6318;
  color: #fff;
  font-weight: 700;
}
.service-page .section-02 .tab-outer .tab-nav .tab:hover {
  color: #ee6318;
}
.service-page .section-02 .tab-outer .tab-nav .tab.tab--current:hover {
  color: #fff;
}
.service-page .section-02 .tab-outer .tab-nav .tab:focus-visible {
  outline: 2px solid #ee6318;
  outline-offset: 2px;
}
.service-page .section-03 {
  background: #fff;
}
.service-page .section-03 .inner-box {
  padding-bottom: 6.9444444444%;
}
.service-page .section-03 .wrap .detail .hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  box-sizing: border-box;
}
.service-page .section-03 .wrap .detail .hero .intro {
  box-sizing: border-box;
  width: 36.8055555556%;
  flex-shrink: 0;
  margin-right: 6.9444444444%;
  padding: 0;
  border-radius: 12px;
}
.service-page .section-03 .wrap .detail .hero .intro .kicker {
  margin: 0 0 1.8867924528%;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
}
.service-page .section-03 .wrap .detail .hero .intro .headline .line {
  letter-spacing: 0.64px;
  line-height: 1.4;
  color: #333;
  font-size: 0px;
}
.service-page .section-03 .wrap .detail .hero .intro .headline .line .txt {
  color: #333;
}
.service-page .section-03 .wrap .detail .hero .intro .headline .line .accent {
  background-image: linear-gradient(
    16.77deg,
    #dd490b 9.28%,
    #dd4c0a 14.37%,
    #e56407 25.97%,
    #e97305 39.72%,
    #eb7905 60.78%,
    #e76e08 80.55%,
    #e25a10 96.88%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-page .section-03 .wrap .detail .hero .intro .headline .line2 {
  margin: 0;
  letter-spacing: 0.64px;
  line-height: 1.2;
  color: #333;
}
.service-page .section-03 .wrap .detail .hero .intro .divider {
  width: 100%;
  margin-top: 7.5471698113%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(217, 217, 217, 0.5);
}
.service-page .section-03 .wrap .detail .hero .intro .block {
  margin-top: 7.5471698113%;
}
.service-page .section-03 .wrap .detail .hero .intro .block .title {
  margin: 0 0 4.5283018868%;
  line-height: 1.2;
  color: #333;
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item {
  margin-bottom: 3.0188679245%;
  overflow: hidden;
  border-radius: 12px;
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item .row {
  display: flex;
  align-items: center;
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item .row .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: 50%;
  background: #ee6318;
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item .row .badge .num {
  color: #fff;
  line-height: 1;
  font-family: 'popr';
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item .row .name {
  margin: 0;
  line-height: 2;
  color: #333;
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item .desc {
  box-sizing: border-box;
  padding-left: 40px;
  color: #333;
  line-height: 1.5;
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item .desc p {
  margin: 0;
}
.service-page .section-03 .wrap .detail .hero .intro .block .list .item:last-child {
  margin-bottom: 0;
}
.service-page .section-03 .wrap .detail .hero .photo {
  position: relative;
  box-sizing: border-box;
  width: 56.25%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #8d8d8d;
  aspect-ratio: 810/640;
}
.service-page .section-03 .wrap .detail .hero .photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-page .section-03 .wrap .detail .hero .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #0093d7;
  opacity: 0.04;
  pointer-events: none;
}
.service-page .section-03 .wrap .detail .value {
  margin-top: 5.5555555556%;
}
.service-page .section-03 .wrap .detail .value .value-title {
  margin: 0 0 1.6666666667%;
  line-height: 1.2;
  color: #333;
}
.service-page .section-03 .wrap .detail .value .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.7083333333%;
}
.service-page .section-03 .wrap .detail .value .cards .card {
  box-sizing: border-box;
  position: relative;
  width: 31.5277777778%;
  padding: 4.1666666667% 20px;
  border-radius: 24px;
  background: #fff;
}
.service-page .section-03 .wrap .detail .value .cards .card .icon-ring {
  box-sizing: border-box;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 99, 24, 0.2);
  border-radius: 50%;
}
.service-page .section-03 .wrap .detail .value .cards .card .icon-ring .symbol {
  display: block;
  width: 40px;
  height: 40px;
}
.service-page .section-03 .wrap .detail .value .cards .card .card-title {
  position: relative;
  z-index: 1;
  margin: 40px 0 0;
  line-height: 1.8;
  color: #333;
  text-align: center;
}
.service-page .section-03 .wrap .detail .value .cards .card .card-split {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 2px;
  margin: 24px auto 0;
  background: rgba(217, 217, 217, 0.85);
}
.service-page .section-03 .wrap .detail .value .cards .card .card-desc {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  line-height: 1.8;
  color: #666;
  text-align: center;
}
.service-page .section-03 .wrap .detail .value .cards .card::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  right: 8px;
  bottom: 8px;
  box-sizing: border-box;
  border: 1px solid rgba(238, 99, 24, 0.2);
  border-radius: 16px;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}
.service-page .section-03 .wrap .detail .value .cards .card::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(217, 217, 217, 0.5);
  border-radius: 24px;
  pointer-events: none;
  z-index: 0;
}
.service-page .section-03 .wrap .detail .value .cards .card:hover {
  background: rgba(238, 99, 24, 0.06);
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.05);
}
.service-page .section-03 .wrap .detail .value .cards .card:hover::before {
  opacity: 1;
}
.service-page .section-03 .wrap .detail .value .cards .card:hover::after {
  border: 2px solid #ee6318;
}
.service-page .section-03 .wrap .detail .value .cards .card:hover .icon-ring {
  border-color: rgba(238, 99, 24, 0.35);
}
.service-page .section-03 .wrap .detail .value .cards .card:hover .card-title {
  color: #ee6318;
}
.service-page .section-03 .wrap .detail .value .cards .card:hover .card-split {
  background: #ee6318;
}
.service-page .section-03 .wrap .detail .value .cards .card:hover .card-desc {
  color: #333;
}
.service-page .section-03 .wrap .detail .value .cards .card:nth-child(3n) {
  margin-right: 0;
}
.service-page .section-03 .wrap .detail .value .cards .card.card--lite {
  background: rgba(255, 255, 255, 0.06);
}
.service-page .section-04 {
  background: #fff;
  position: relative;
}
.service-page .section-04 .case-bg {
  position: absolute;
  left: 0;
  top: 10.0694444444%;
  width: 94.7916666667%;
  box-sizing: border-box;
  background: url(../images_die/ser_03_01.webp) no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  border-radius: 0 100px 100px 0;
  transition: width 0.1s linear;
}
.service-page .section-04 .inner-box {
  padding-top: 5.5555555556%;
  padding-bottom: 6.9444444444%;
}
.service-page .section-04 .wrap {
  position: relative;
  z-index: 1;
}
.service-page .section-04 .wrap .case-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
}
.service-page .section-04 .wrap .case-head .case-photo {
  position: relative;
  box-sizing: border-box;
  width: 44.4444444444%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 640/480;
}
.service-page .section-04 .wrap .case-head .case-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-page .section-04 .wrap .case-head .case-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #0093d7;
  opacity: 0.04;
  pointer-events: none;
}
.service-page .section-04 .wrap .case-head .case-copy {
  width: 48.6111111111%;
  margin-top: 9.7222222222%;
}
.service-page .section-04 .wrap .case-head .case-copy .eyebrow {
  color: #666;
  line-height: 1.2;
  margin-bottom: 10px;
}
.service-page .section-04 .wrap .case-head .case-copy .title-line {
  letter-spacing: 0.64px;
  line-height: 1.4;
  color: #333;
}
.service-page .section-04 .wrap .case-head .case-copy .divider {
  width: 100%;
  max-width: 700px;
  margin-top: 5.7142857143%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(217, 217, 217, 0.5);
}
.service-page .section-04 .wrap .case-head .case-copy .lede {
  margin: 5.7142857143% 0 0;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
}
.service-page .section-04 .wrap .case-head .case-copy .lede .accent {
  color: #ee6318;
}
.service-page .section-04 .wrap .case-value {
  margin-top: 5.5555555556%;
}
.service-page .section-04 .wrap .case-value .block-title {
  margin: 0 0 3.3333333333%;
  line-height: 1.2;
  color: #333;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 120px;
  margin-bottom: 1.6666666667%;
  padding: 0 4.1666666667%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: linear-gradient(21.19deg, rgba(255, 255, 255, 0.5) 0%, #fff 100%);
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.02);
  position: relative;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row:last-child {
  margin-bottom: 0;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row .index {
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #ee6318;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row .slash {
  flex-shrink: 0;
  width: 30px;
  height: 1px;
  margin-left: 2.2222222222%;
  margin-right: 2.2222222222%;
  background: #d9d9d9;
  transform: rotate(-66deg);
}
.service-page .section-04 .wrap .case-value .value-rows .value-row .text {
  flex: 1 1 200px;
  margin: 0;
  min-width: 0;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  right: 8px;
  bottom: 8px;
  box-sizing: border-box;
  border: 1px solid rgba(238, 99, 24, 0.2);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row .index,
.service-page .section-04 .wrap .case-value .value-rows .value-row .slash,
.service-page .section-04 .wrap .case-value .value-rows .value-row .text {
  position: relative;
  z-index: 1;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row:hover {
  border: 2px solid #ee6318;
  background: rgba(238, 99, 24, 0.06);
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.02);
}
.service-page .section-04 .wrap .case-value .value-rows .value-row:hover::before {
  opacity: 1;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row:hover .index {
  color: #ee6318;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row:hover .slash {
  background: #ee6318;
}
.service-page .section-04 .wrap .case-value .value-rows .value-row:hover .text {
  font-weight: 500;
}
.service-page .section-04 .wrap .case-effect {
  margin-top: 5.5555555556%;
}
.service-page .section-04 .wrap .case-effect .block-title {
  margin: 0 0 3.3333333333%;
  line-height: 1.2;
  color: #333;
}
.service-page .section-04 .wrap .case-effect .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 2.9861111111%;
}
.service-page .section-04 .wrap .case-effect .pills .pill {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 2.7777777778% 4.1666666667%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 90px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.service-page .section-04 .wrap .case-effect .pills .pill::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  right: 8px;
  bottom: 8px;
  box-sizing: border-box;
  border: 1px solid rgba(238, 99, 24, 0.1);
  border-radius: 82px;
  pointer-events: none;
  opacity: 1;
}
.service-page .section-04 .wrap .case-effect .pills .pill .pill-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
}
.service-page .section-04 .wrap .case-effect .pills .pill .pill-copy p {
  margin: 0;
}
.service-page .section-04 .wrap .case-effect .pills .pill .pill-stat {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 3.53200883%;
  flex-shrink: 0;
  color: #ee6318;
  line-height: 1.5;
  white-space: nowrap;
}
.service-page .section-04 .wrap .case-effect .pills .pill .pill-stat .num {
  font-family: 'popr';
  font-weight: 500;
}
.service-page .section-04 .wrap .case-effect .pills .pill .pill-stat .unit {
  font-weight: 400;
}
.service-page .section-04 .wrap .case-effect .pills .pill:hover {
  background: #fff;
}
.service-page .section-04 .wrap .case-effect .pills .pill:hover::after {
  border-color: rgba(238, 99, 24, 0.5);
}
.service-page .section-05 {
  background-color: #f9f9f9;
  background-image: url(../images_die/ser_04_01.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.service-page .section-05 .inner-box {
  padding-top: 13.1944444444%;
  padding-bottom: 6.9444444444%;
}
.service-page .section-05 .block-title-group {
  margin: 0 auto 4.1666666667%;
}
.service-page .section-05 .contact-form.contact-form--panel {
  background: none;
  padding: 0;
}
.service-page .section-05 .contact-form .form-actions {
  margin-top: 4.7916666667%;
}

@keyframes contact-page-cloud-float-a {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(6px, -7px);
  }
  40% {
    transform: translate(-5px, 5px);
  }
  60% {
    transform: translate(6px, 7px);
  }
  80% {
    transform: translate(-4px, -4px);
  }
}
@keyframes contact-page-cloud-float-b {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-6px, 5px);
  }
  50% {
    transform: translate(5px, -7px);
  }
  75% {
    transform: translate(4px, 6px);
  }
}
@keyframes contact-page-cloud-float-c {
  0%,
  100% {
    transform: translate(0, 0);
  }
  16% {
    transform: translate(4px, 6px);
  }
  33% {
    transform: translate(-7px, -3px);
  }
  50% {
    transform: translate(7px, -5px);
  }
  66% {
    transform: translate(-4px, 7px);
  }
  83% {
    transform: translate(3px, 3px);
  }
}
.contact-page .section-02 {
  background-image: url(../images_die/cont_02_01.webp);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}
.contact-page .section-02 .inner-box {
  padding: 5.5555555556% 0 6.9444444444%;
}
.contact-page .section-02 .consult-card {
  margin-top: 4.1666666667%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  align-items: stretch;
}
.contact-page .section-02 .consult-card-side {
  box-sizing: border-box;
  width: 37.5%;
  min-width: 0;
  padding: 4.1666666667% 4.1666666667%;
  background-image: url(../images_die/cont_02_02.webp);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.contact-page .section-02 .consult-card-side .head .logo {
  display: flex;
  align-items: center;
}
.contact-page .section-02 .consult-card-side .head .logo img {
  display: block;
  height: 40px;
  width: auto;
}
.contact-page .section-02 .consult-card-side .divider {
  width: 100%;
  margin-top: 14.2857142857%;
  margin-bottom: 14.0476190476%;
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.45);
}
.contact-page .section-02 .consult-card-side .list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-page .section-02 .consult-card-side .list .item {
  margin-bottom: 11.9047619048%;
}
.contact-page .section-02 .consult-card-side .list .item .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 16px;
}
.contact-page .section-02 .consult-card-side .list .item .icon img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.contact-page .section-02 .consult-card-side .list .item .meta {
  flex: 1;
  min-width: 0;
}
.contact-page .section-02 .consult-card-side .list .item .meta .title {
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-align: left;
}
.contact-page .section-02 .consult-card-side .list .item .meta .text {
  margin-top: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.18px;
  line-height: 1.5;
  text-align: left;
}
.contact-page .section-02 .consult-card-side .list .item .meta .text.f_20 {
  line-height: 1.2;
  letter-spacing: 0.2px;
  font-family: Poppins, 'Source Han Sans CN', 'PingFang SC', sans-serif;
}
.contact-page .section-02 .consult-card-side .list .item:last-child {
  margin-bottom: 0;
}
.contact-page .section-02 .consult-card-main {
  box-sizing: border-box;
  flex: 1;
  min-width: 0;
  padding: 4.1666666667% 4.1666666667% 4.1666666667%;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.contact-page .section-02 .consult-card-main .contact-form .form-item .field select,
.contact-page .section-02 .consult-card-main .contact-form .form-item .field input {
  border: 1px solid rgba(217, 217, 217, 0.3);
  background-color: rgba(245, 245, 245, 0.65);
}
.contact-page .section-02 .consult-card-main .contact-form--contact-sheet {
  width: 100%;
}
.contact-page .section-02 .consult-card-main .contact-form--contact-sheet .form-actions {
  margin-top: 7.6923076923%;
}
.contact-page .section-03 {
  background-image: url(../images_die/cont_03_01.webp);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  overflow: hidden;
}
.contact-page .section-03 .inner-box {
  padding: 5.5555555556% 0 6.9444444444%;
}
.contact-page .section-03 .block-title-group {
  margin-bottom: 20px;
}
.contact-page .section-03 .cloud-box {
  height: 675px;
  position: relative;
}
.contact-page .section-03 .cloud-box .cloud-item {
  position: absolute;
  width: 17.3611111111%;
  line-height: 2.75;
  text-align: center;
  color: #fff;
  letter-spacing: 0.24px;
  border-radius: 100px;
  animation: contact-page-cloud-float-a 10.5s ease-in-out infinite;
  will-change: transform;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(1) {
  left: 19.3055555556%;
  top: 16.8888888889%;
  background: #dbeaff;
  animation-name: contact-page-cloud-float-a;
  animation-delay: 0s;
  animation-duration: 7.8s;
  animation-direction: normal;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(2) {
  left: 79.3055555556%;
  top: 9.6296296296%;
  background: #ffdec2;
  animation-name: contact-page-cloud-float-b;
  animation-direction: reverse;
  animation-delay: -2.4s;
  animation-duration: 12.2s;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(3) {
  left: 60.2083333333%;
  top: 24.5925925926%;
  background: #ffe5c5;
  animation-name: contact-page-cloud-float-c;
  animation-delay: -5.7s;
  animation-duration: 9.4s;
  animation-direction: normal;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(4) {
  left: 0%;
  top: 52.4444444444%;
  background: #dbeaff;
  animation-name: contact-page-cloud-float-b;
  animation-delay: -1.1s;
  animation-duration: 13.6s;
  animation-direction: normal;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(5) {
  left: 22.7777777778%;
  background: #ffdec2;
  top: 46.2222222222%;
  animation-name: contact-page-cloud-float-c;
  animation-direction: alternate-reverse;
  animation-delay: -7.3s;
  animation-duration: 8.2s;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(6) {
  left: 68.2638888889%;
  top: 42.0740740741%;
  background: #dbeaff;
  animation-name: contact-page-cloud-float-a;
  animation-delay: -3.9s;
  animation-duration: 11.1s;
  animation-direction: normal;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(7) {
  left: 12.3611111111%;
  top: 77.4814814815%;
  background: #ffe5c5;
  animation-name: contact-page-cloud-float-c;
  animation-delay: -0.6s;
  animation-duration: 14.4s;
  animation-direction: alternate;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(8) {
  left: 60.2083333333%;
  top: 68.7407407407%;
  background: #ffdec2;
  animation-name: contact-page-cloud-float-a;
  animation-direction: reverse;
  animation-delay: -6.2s;
  animation-duration: 7.3s;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(9) {
  left: 81.0416666667%;
  top: 59.5555555556%;
  background: #ffe5c5;
  animation-name: contact-page-cloud-float-b;
  animation-delay: -4.5s;
  animation-duration: 10.8s;
  animation-direction: alternate-reverse;
}
.contact-page .section-03 .cloud-box .cloud-item:nth-child(10) {
  left: 53.2638888889%;
  top: 90.3703703704%;
  background: #ffdec2;
  animation-name: contact-page-cloud-float-a;
  animation-delay: -8.1s;
  animation-duration: 12.9s;
  animation-direction: normal;
}
.contact-page .section-03 .cloud-box .ewm-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 7.4074074074%;
  width: 440px;
}
.contact-page .section-03 .cloud-box .ewm-box .top {
  height: 108px;
  position: relative;
  padding-right: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  text-align: right;
}
.contact-page .section-03 .cloud-box .ewm-box .top .icon {
  width: 126px;
  position: absolute;
  left: 40px;
  bottom: 18px;
  z-index: 10;
}
.contact-page .section-03 .cloud-box .ewm-box .top .text-box {
  position: relative;
  z-index: 10;
  color: #fff;
}
.contact-page .section-03 .cloud-box .ewm-box .top .text-box .title {
  line-height: 120%;
  /* 28.8px */
  letter-spacing: 0.24px;
}
.contact-page .section-03 .cloud-box .ewm-box .top .text-box .text {
  margin-top: 8px;
  line-height: 120%;
  /* 28.8px */
  letter-spacing: 0.16px;
}
.contact-page .section-03 .cloud-box .ewm-box .top::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 190px;
  border-radius: 12px 24px 0 0;
  z-index: 1;
  background: linear-gradient(180deg, #ec8502 0%, #e97a03 30%, #e45d07 66%, rgba(227, 87, 8, 0) 100%);
}
.contact-page .section-03 .cloud-box .ewm-box .img-box {
  background: #fff;
  aspect-ratio: 1/1;
  background-image: url(../images_die/cont_04_01.webp);
  background-size: cover;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.contact-page .section-03 .cloud-box .ewm-box .img-box .inner-img {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images_die/svg/ewm-border.svg);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-page .section-03 .cloud-box .ewm-box .img-box .inner-img img {
  display: block;
}
.contact-page .section-03 .welfare-block {
  margin-top: 13.5416666667%;
}
.contact-page .section-03 .welfare-block .welfare-slogan {
  margin: 0 0 4.1666666667%;
  text-align: center;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.8px;
  line-height: 1.2;
}
.contact-page .section-03 .welfare-block .welfare-slogan .welfare-brand {
  background: linear-gradient(
    12.54deg,
    #dd490b 9.28%,
    #dd4c0a 14.37%,
    #e56407 25.97%,
    #e97305 39.72%,
    #eb7905 60.78%,
    #e76e08 80.55%,
    #e25a10 96.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.contact-page .section-03 .welfare-block .welfare-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 6.9444444444%;
  row-gap: 2.7777777778%;
}
.contact-page .section-03 .welfare-block .welfare-visual {
  flex: 0 0 55.2083333333%;
  border-radius: 12px 24px 12px 24px;
  overflow: hidden;
}
.contact-page .section-03 .welfare-block .welfare-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 795/742;
  object-fit: cover;
}
.contact-page .section-03 .welfare-block .welfare-list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  row-gap: 3.4722222222%;
}
.contact-page .section-03 .welfare-block .welfare-item {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 13px;
  padding: 9.1743119266% 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.5);
}
.contact-page .section-03 .welfare-block .welfare-item .index {
  color: #ee6318;
}
.contact-page .section-03 .welfare-block .welfare-item .welfare-panel .panel-title {
  color: #333;
  padding-bottom: 0;
}
.contact-page .section-03 .welfare-block .welfare-item .welfare-panel .panel-desc {
  line-height: 1.5;
  letter-spacing: 0.2px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
}
.contact-page .section-03 .welfare-block .welfare-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 100%;
  border-radius: 12px 0 0 12px;
  background-color: rgba(238, 99, 24, 0.06);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s linear;
}
.contact-page .section-03 .welfare-block .welfare-item.active {
  padding: 11.0091743119% 0 11.0091743119%;
  border-bottom: 1px solid transparent;
}
.contact-page .section-03 .welfare-block .welfare-item.active .index {
  opacity: 0;
}
.contact-page .section-03 .welfare-block .welfare-item.active .welfare-panel .panel-title {
  color: #ee6318;
  padding-bottom: 4.7524752475%;
}
.contact-page .section-03 .welfare-block .welfare-item.active .welfare-panel .panel-desc {
  height: 3em;
}
.contact-page .section-03 .welfare-block .welfare-item.active::before {
  opacity: 1;
}

.search-page .section-01.search-tool {
  border-top: 1px solid #d9d9d9;
}
.search-page .section-01.search-tool .wrap {
  border-bottom: 1px solid #d9d9d9;
}
.search-page .section-01.search-tool .inner-box {
  padding: 5.5555555556% 0 4.1666666667%;
}
.search-page .section-01.search-tool .head-row {
  flex-wrap: wrap;
  row-gap: 24px;
  align-items: flex-start;
}
.search-page .section-01.search-tool .intro .title {
  color: #333;
  line-height: 1.2;
}
.search-page .section-01.search-tool .intro .count-line {
  margin-top: 16px;
  color: #333;
  line-height: 1.625;
}
.search-page .section-01.search-tool .intro .count {
  color: #ee6318;
}
.search-page .section-01.search-tool .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search-page .section-01.search-tool .search-form {
  width: 38.1944444444%;
}
.search-page .section-01.search-tool .form-item {
  position: relative;
}
.search-page .section-01.search-tool .field {
  border-radius: 25px;
  background: #fff;
}
.search-page .section-01.search-tool .input {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  border: none;
  background: transparent;
  color: #333;
  box-shadow: 0 0 0 1px #d9d9d9 inset;
  border-radius: 100px;
  padding-left: 30px;
}
.search-page .section-01.search-tool .input::placeholder {
  color: #999;
}
.search-page .section-01.search-tool .input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #ee6318 inset;
}
.search-page .section-01.search-tool .submit {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 90px;
  height: 50px;
  margin: -1px -1px -1px 0;
  padding: 0;
  border: none;
  border-radius: 25px;
  background-color: #ee6318;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
.search-page .section-01.search-tool .submit:hover {
  background-color: #d45512;
}
.search-page .section-01.search-tool .submit:focus-visible {
  outline: 2px solid #ee6318;
  outline-offset: 2px;
}
.search-page .section-01.search-tool .submit img {
  display: block;
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}
.search-page .section-02 .inner-box {
  padding-top: 2.7777777778%;
}
.search-page .section-02 .result-grid {
  column-gap: 2.7777777778%;
}
.search-page .section-02 .card {
  position: relative;
  display: block;
  box-sizing: border-box;
  flex: 0 0 22.9166666667%;
  margin-bottom: 2.7777777778%;
  overflow: hidden;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 36px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(11px);
  text-decoration: none;
}
.search-page .section-02 .info-box {
  position: relative;
  z-index: 0;
  border-radius: 11px 11px 0 0;
  padding: 13.6363636364%;
  line-height: 1.2;
}
.search-page .section-02 .info-box .date {
  margin-bottom: 14px;
  color: #ee6318;
  position: relative;
  z-index: 20;
}
.search-page .section-02 .info-box .headline {
  margin: 0;
  margin-bottom: 21px;
  padding: 0;
  font-weight: 500;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  position: relative;
  z-index: 20;
  height: 2.4em;
}
.search-page .section-02 .info-box .arrow {
  position: relative;
  z-index: 20;
  line-height: 0;
}
.search-page .section-02 .info-box .arrow img {
  display: block;
  height: 12px;
  width: auto;
}
.search-page .section-02 .info-box::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images_die/svg/about_07_01.svg) no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0;
}
.search-page .section-02 .img-box {
  position: relative;
  z-index: 0;
  border-radius: 0 0 11px 11px;
  overflow: hidden;
  aspect-ratio: 330/211;
}
.search-page .section-02 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-page .section-02 .card:hover .img-box img {
  transform: scale(1.1);
}
.search-page .section-02 .card:hover .info-box::after {
  opacity: 1;
}
.search-page .section-03.search-pagination {
  padding-bottom: 5.2083333333%;
}
.search-page .section-03.search-pagination .pager {
  column-gap: 8px;
  row-gap: 16px;
}
.search-page .section-03.search-pagination .page-btn {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 1px solid #e2e2e2;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-page .section-03.search-pagination .page-btn img {
  display: block;
  width: 18px;
  height: 18px;
}
.search-page .section-03.search-pagination .page-btn:focus-visible {
  outline: 2px solid #ee6318;
  outline-offset: 2px;
}
.search-page .section-03.search-pagination .page-num {
  box-sizing: border-box;
  flex-shrink: 0;
  min-width: 35px;
  height: 35px;
  padding: 0 6px;
  border: 1px solid #e2e2e2;
  border-radius: 50px;
  background: #fff;
  color: #666;
  line-height: 33px;
  text-align: center;
  text-decoration: none;
}
.search-page .section-03.search-pagination .page-num--current {
  border: none;
  background: #ee6318;
  color: #fff;
}
.search-page .section-03.search-pagination .page-ellipsis {
  flex-shrink: 0;
  line-height: 35px;
  color: #666;
  font-size: 15px;
  letter-spacing: 1px;
}
.search-page .section-03.search-pagination .jump {
  margin-left: 16px;
  column-gap: 8px;
}
.search-page .section-03.search-pagination .jump-input {
  box-sizing: border-box;
  width: 56px;
  height: 35px;
  padding: 0 8px;
  border: 1px solid #e2e2e2;
  border-radius: 50px;
  text-align: center;
  color: #333;
}
.search-page .section-03.search-pagination .jump-input:focus {
  outline: none;
  border-color: #ee6318;
}
.search-page .section-03.search-pagination .jump-go {
  box-sizing: border-box;
  min-width: 52px;
  height: 35px;
  padding: 0 12px;
  border: none;
  border-radius: 50px;
  background: #ee6318;
  color: #fff;
  line-height: 2.6923076923;
}
.search-page .section-03.search-pagination .jump-go:focus-visible {
  outline: 2px solid #ee6318;
  outline-offset: 2px;
}

.news-detail-page {
  background: #fff;
}
.news-detail-page .section-01.crumb {
  border-top: 1px solid #d9d9d9;
  position: sticky;
  top: 64px;
  background: #fff;
  z-index: 101;
}
.news-detail-page .section-01.crumb .trail {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
  row-gap: 8px;
  padding: 30px 0;
}
.news-detail-page .section-01.crumb .home-link {
  line-height: 0;
  color: #333;
}
.news-detail-page .section-01.crumb .home-link svg {
  display: block;
  width: 20px;
  height: 20px;
}
.news-detail-page .section-01.crumb .sep-icon {
  line-height: 0;
  flex-shrink: 0;
}
.news-detail-page .section-01.crumb .sep-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}
.news-detail-page .section-01.crumb .step-link {
  font-weight: 500;
  color: #333;
  line-height: 1.4285714286;
  white-space: nowrap;
  text-decoration: none;
}
.news-detail-page .section-01.crumb .step-link:hover {
  color: #ee6318;
}
.news-detail-page .section-01.crumb .step-current {
  font-weight: 400;
  color: #999;
  line-height: 1.4285714286;
  white-space: nowrap;
}
.news-detail-page .detail-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.news-detail-page .section-02.article-head .inner-box {
  padding: 3.4722222222% 0 0;
}
.news-detail-page .section-02.article-head .title-block {
  text-align: center;
}
.news-detail-page .section-02.article-head .title-block .headline {
  margin: 0 0 1.6666666667%;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
.news-detail-page .section-02.article-head .meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 3.3333333333%;
  row-gap: 12px;
}
.news-detail-page .section-02.article-head .meta-item {
  display: flex;
  align-items: center;
}
.news-detail-page .section-02.article-head .meta-item .meta-icon {
  flex-shrink: 0;
  margin-right: 8px;
  line-height: 0;
}
.news-detail-page .section-02.article-head .meta-item .meta-icon svg {
  display: block;
}
.news-detail-page .section-02.article-head .meta-item.meta-item--time .meta-icon svg {
  width: 14px;
  height: 14px;
}
.news-detail-page .section-02.article-head .meta-item.meta-item--source .meta-icon svg {
  width: 14px;
  height: 14px;
}
.news-detail-page .section-02.article-head .meta-item.meta-item--views .meta-icon svg {
  width: 16px;
  height: 16px;
}
.news-detail-page .section-02.article-head .meta-text {
  font-weight: 400;
  color: #666;
  line-height: 1.75;
  white-space: nowrap;
}
.news-detail-page .section-02.article-head .meta-text .label {
  color: #666;
}
.news-detail-page .section-02.article-head .meta-text .num {
  font-family: 'popr';
  font-weight: 400;
  color: #666;
}
.news-detail-page .section-02.article-head .divider {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 2.5% auto 0;
  border: none;
  background: #d9d9d9;
}
.news-detail-page .section-03.article-body .inner-box {
  padding: 2.0833333333% 0 2.0833333333%;
  line-height: 2;
}
.news-detail-page .section-03.article-body .body-text {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 2.5%;
  padding: 0;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  text-align: justify;
  text-indent: 37px;
}
.news-detail-page .section-03.article-body .body-text:last-of-type {
  margin-bottom: 0;
}
.news-detail-page .section-03.article-body .figure {
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 2.5%;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 960/480;
  background: #f0f0f0;
}
.news-detail-page .section-03.article-body .figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-detail-page .section-04.article-foot .wrap .inner-box {
  padding: 0 0 6.9444444444%;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .divider {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 0 auto 4.1666666667%;
  border: none;
  background: #d9d9d9;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 24px;
  column-gap: 24px;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .adjacent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
  min-width: 0;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .adjacent .row {
  display: flex;
  min-width: 0;
  align-items: center;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .adjacent .row .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: #d9d9d9;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .adjacent .row .article-link {
  font-weight: 400;
  color: #333;
  line-height: 1.7777777778;
  text-align: justify;
  text-decoration: none;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .adjacent .row:hover .dot {
  background: #ee6318;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .adjacent .row:hover .article-link {
  color: #ee6318;
  text-decoration: underline;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .adjacent .row.row--next .dot {
  margin-top: 0;
  align-self: center;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .back-list {
  box-sizing: border-box;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 5px 8px 5px 32px;
  border: none;
  border-radius: 60px;
  background: #ee6318;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.375;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .back-list:hover {
  background: #d9560f;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .back-list:hover .icon-box {
  transform: rotate(45deg);
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .back-list .icon-box {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 0;
}
.news-detail-page .section-04.article-foot .wrap .inner-box .detail-inner .nav-row .back-list .icon-box img {
  display: block;
  width: 11px;
  height: 11px;
}

.advantage-page .section-02 {
  background-image: url(../images_die/ser_02_01.png);
  background-size: 100%;
  background-position: left top;
}
.advantage-page .section-02 .inner-box {
  padding: 5.5555555556% 0 10.0694444444%;
}
.advantage-page .section-02 .inner-box .desc {
  margin-top: 24px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}
.advantage-page .section-02 .inner-box .sanjiao-box {
  width: 29.7916666667%;
  margin: 10.8333333333% auto 0;
  position: relative;
}
.advantage-page .section-02 .inner-box .sanjiao-box .sj-box img {
  display: block;
  width: 100%;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item {
  position: absolute;
  width: 55.9440559441%;
  aspect-ratio: 1/1;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item .circle-box {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item .circle-box .label {
  color: #333;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item .circle-box .numbox {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item .circle-box .numbox .num-ele {
  color: #ee6318;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(
    121deg,
    #dd490b 5.35%,
    #dd4c0a 10.3%,
    #e56407 21.59%,
    #e97305 34.96%,
    #eb7905 55.44%,
    #e76e08 74.67%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item .line-box {
  width: 265.8333333333%;
  aspect-ratio: 618/161;
  position: absolute;
  top: 16.6666666667%;
  display: flex;
  align-items: center;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item .line-box .line-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item .line-box .text {
  line-height: 1.5;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item:nth-child(1) {
  left: 22.027972028%;
  top: -28.7206266319%;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item:nth-child(1) .line-box {
  left: 27.5%;
  padding: 0 25% 0 97.5%;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item:nth-child(2) {
  left: -27.972027972%;
  bottom: -23.498694517%;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item:nth-child(2) .line-box {
  right: 27.5%;
  padding: 0 97.5% 0 25%;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item:nth-child(3) {
  right: -27.972027972%;
  bottom: -23.498694517%;
}
.advantage-page .section-02 .inner-box .sanjiao-box .content-box .item:nth-child(3) .line-box {
  left: 27.5%;
  padding: 0 25% 0 97.5%;
}
.advantage-page .section-3-4 {
  background: url(../images_die/adv_03_01.webp) no-repeat;
  background-size: 100% auto;
  background-position: left top;
  background-repeat: no-repeat;
}
.advantage-page .section-03 .inner-box {
  padding: 8.3333333333% 0 6.9444444444%;
}
.advantage-page .section-03 .step-box {
  margin-top: 4.1666666667%;
  padding: 4.1666666667% 0 2.7777777778%;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 40px 40px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}
.advantage-page .section-03 .step-box .title {
  color: #333;
  line-height: 1.3333;
  font-weight: 700;
  padding: 0 4.1666666667%;
  background-image: url(../images_die/svg/bq_01.svg);
  background-size: 30px 8px;
  background-position: left center;
  background-repeat: no-repeat;
}
.advantage-page .section-03 .step-box .desc {
  margin-top: 16px;
  line-height: 1.7777777778;
  letter-spacing: 0.18px;
  padding: 0 4.1666666667%;
}
.advantage-page .section-03 .step-box .desc span {
  font-weight: bold;
}
.advantage-page .section-03 .step-box .step-img {
  padding: 0 4.1666666667%;
  margin-top: 26px;
}
.advantage-page .section-03 .step-box .step-img img {
  width: 100%;
}
.advantage-page .section-03 .two-box {
  gap: 2.7777777778%;
  margin-top: 2.7777777778%;
}
.advantage-page .section-03 .two-box .item {
  width: 48.6111111111%;
  padding: 4.1666666667% 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 40px 40px 0 rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(12px);
}
.advantage-page .section-03 .two-box .item .title {
  padding: 0 8.5714285714%;
  color: #333;
  line-height: 1.3333;
  font-weight: 700;
  background-image: url(../images_die/svg/bq_01.svg);
  background-size: 30px 8px;
  background-position: left center;
  background-repeat: no-repeat;
}
.advantage-page .section-03 .two-box .item .desc {
  margin-top: 16px;
  line-height: 1.7777777778;
  letter-spacing: 0.18px;
  padding: 0 8.5714285714%;
}
.advantage-page .section-03 .two-box .item .desc span {
  font-weight: bold;
}
.advantage-page .section-03 .two-box .item .tiao-group {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.advantage-page .section-03 .two-box .item .tiao-group .tiao {
  height: 48px;
  display: flex;
  background-image: url(../images_die/svg/adv_03_01.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 8.5714285714%;
}
.advantage-page .section-03 .two-box .item .tiao-group .tiao .lebel {
  padding: 0 44px 0 23px;
  height: 52px;
  transform: translateY(-2px);
  position: relative;
  margin-right: 16px;
  flex-shrink: 0;
}
.advantage-page .section-03 .two-box .item .tiao-group .tiao .lebel img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.advantage-page .section-03 .two-box .item .tiao-group .tiao .lebel span {
  position: relative;
  z-index: 2;
  line-height: 52px;
  color: #fff;
}
.advantage-page .section-03 .two-box .item .tiao-group .tiao .text {
  color: #333;
  line-height: 48px;
}
.advantage-page .section-03 .xy-group {
  padding: 0 8.5714285714%;
  margin-top: 20px;
}
.advantage-page .section-03 .xy-group .inner-div {
  display: flex;
  justify-content: space-between;
}
.advantage-page .section-03 .xy-group .xy-item {
  width: 31.8965517241%;
  padding: 24px 0 46px;
  border-radius: 6px;
  background: rgba(238, 99, 24, 0.06);
  display: flex;
  justify-content: center;
  position: relative;
}
.advantage-page .section-03 .xy-group .xy-item .numbox {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    121deg,
    #dd490b 5.35%,
    #dd4c0a 10.3%,
    #e56407 21.59%,
    #e97305 34.96%,
    #eb7905 55.44%,
    #e76e08 74.67%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advantage-page .section-03 .xy-group .xy-item .numbox .num {
  font-family: 'popr';
  font-weight: bold;
  margin-right: 6px;
}
.advantage-page .section-03 .xy-group .xy-item .numbox .unit {
  margin-top: -4px;
}
.advantage-page .section-03 .xy-group .tips {
  position: absolute;
  padding: 0 14px 0 25px;
  flex-shrink: 0;
  right: -10px;
  bottom: -23px;
}
.advantage-page .section-03 .xy-group .tips img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.advantage-page .section-03 .xy-group .tips span {
  position: relative;
  z-index: 2;
  line-height: 48px;
  color: #fff;
}
.advantage-page .section-04 .inner-box {
  padding: 8.3333333333% 0 0;
}
.advantage-page .section-04 .digital-swiper {
  margin-top: 4.1666666667%;
  width: calc(100% + 40px);
  padding: 0 20px 6.9444444444%;
  margin-left: -20px;
}
.advantage-page .section-04 .digital-swiper .swiper-slide {
  height: auto;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 280/493;
  padding-top: 17.1428571429%;
  border-radius: 0 0 12px 12px;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card .icon {
  width: 42.8571428571%;
  aspect-ratio: 120/125;
  margin: 0 auto;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card .plate {
  margin-top: 14.2857142857%;
  box-sizing: border-box;
  width: 100%;
  border-radius: 12px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.5555555556% 10.7142857143% 0;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card .plate .headline {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #333;
  line-height: 1.2;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card .plate .text {
  box-sizing: border-box;
  width: 100%;
  margin: 2.7777777778% 0 0;
  text-align: center;
  color: #666;
  line-height: 1.5;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card:hover,
.advantage-page .section-04 .digital-swiper .swiper-slide .card:focus-within {
  background: #fff;
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.05);
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card:focus {
  outline: none;
}
.advantage-page .section-04 .digital-swiper .swiper-slide .card:focus-visible {
  outline: 2px solid rgba(238, 99, 24, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}
.advantage-page .section-05 .inner-box {
  padding: 8.3333333333% 0 6.9444444444%;
}
.advantage-page .section-05 .inner-box .block-title-group {
  position: relative;
  z-index: 10;
}
.advantage-page .section-05 .inner-box .text-2 {
  margin-top: 24px;
  color: #666;
  position: relative;
  z-index: 10;
  line-height: 1.6;
  text-align: center;
}
.advantage-page .section-05 .inner-box .circle-block {
  margin: 4.1666666667% auto 0;
  width: 55.5555555556%;
  aspect-ratio: 1;
  position: relative;
}
.advantage-page .section-05 .inner-box .circle-block .bg-img {
  display: block;
  width: 128.625%;
  height: 123.125%;
  position: absolute;
  left: -14.125%;
  top: -11.5%;
  z-index: 2;
  max-width: 999999px;
}
.advantage-page .section-05 .inner-box .circle-block .center-box {
  width: 26.25%;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../images_die/svg/adv_05_03.svg);
  background-size: 100%;
  box-shadow: 0 40px 40px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}
.advantage-page .section-05 .inner-box .circle-block .center-box .icon {
  width: 32px;
  margin-bottom: 10px;
}
.advantage-page .section-05 .inner-box .circle-block .center-box .icon img {
  width: 100%;
}
.advantage-page .section-05 .inner-box .circle-block .center-box .title {
  color: #fff;
  font-weight: 700;
}
.advantage-page .section-05 .inner-box .circle-block .content-box {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 20;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item {
  text-align: center;
  position: absolute;
  z-index: 10;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item .index {
  line-height: 1.2;
  color: #d9d9d9;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item .title {
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-top: 16px;
  position: relative;
  z-index: 2;
  margin-bottom: 17px;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item .desc {
  width: 250px;
  line-height: 1.5;
  color: #666;
  position: relative;
  z-index: 2;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.1;
  background-size: 100%;
  background-repeat: no-repeat;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(1) {
  width: 44.5%;
  height: 68.25%;
  left: 1.5%;
  top: 1.5%;
  padding-top: 18%;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(1) .desc {
  width: 71.9101123596%;
  margin: 0 auto;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(1)::after {
  background-image: url(../images_die/svg/adv_05_04.svg);
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(2) {
  width: 44.5%;
  height: 68.25%;
  right: 1.5%;
  top: 1.5%;
  padding-top: 18%;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(2) .desc {
  width: 71.9101123596%;
  margin: 0 auto;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(2)::after {
  background-image: url(../images_die/svg/adv_05_05.svg);
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(3) {
  width: 78.625%;
  height: 39.375%;
  bottom: 1.25%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 9.625%;
  z-index: 20;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(3) .desc {
  width: 40.6995230525%;
  margin: 0 auto;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:nth-child(3)::after {
  background-image: url(../images_die/svg/adv_05_06.svg);
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:hover .index {
  color: #ee6318;
}
.advantage-page .section-05 .inner-box .circle-block .content-box .item:hover::after {
  opacity: 0.5;
}
.advantage-page .section-05 .inner-box .circle-block::before {
  content: '';
  width: 240%;
  aspect-ratio: 1920/1402;
  background: url(../images_die/svg/adv_05_02.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: -70%;
  top: -42.25%;
  z-index: 1;
}
.advantage-page .section-06 {
  position: relative;
  z-index: 20;
}
.advantage-page .section-06 .inner-box {
  padding: 8.3333333333% 0 6.9444444444%;
}
.advantage-page .section-06 .security-panel {
  box-sizing: border-box;
  margin-top: 4.1666666667%;
  padding: 2.7777777778%;
  border-radius: 12px;
  background: #f9f9f9;
  width: 105.5555555556%;
  margin-left: -2.7777777778%;
}
.advantage-page .section-06 .security-panel .security-row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.7777777778%;
}
.advantage-page .section-06 .security-panel .security-row:last-child {
  margin-bottom: 0;
}
.advantage-page .section-06 .security-panel .security-row .lead {
  width: 15.2777777778%;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 33px;
  padding-bottom: 24px;
}
.advantage-page .section-06 .security-panel .security-row .lead .icon-wrap {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.advantage-page .section-06 .security-panel .security-row .lead .icon-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.advantage-page .section-06 .security-panel .security-row .lead .name {
  margin: 24px 0 0;
  text-align: center;
  color: #333;
  line-height: 1.2;
  max-width: 102px;
}
.advantage-page .section-06 .security-panel .security-row .tiles {
  position: relative;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advantage-page .section-06 .security-panel .security-row .tiles .tiles-bg {
  position: absolute;
  left: 20px;
  top: 8px;
  right: 20px;
  bottom: 8px;
  border-radius: 8px;
  background: rgba(238, 99, 24, 0.05);
  pointer-events: none;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 31.1475409836%;
  margin-right: 1.3114754098%;
  min-height: 180px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #ee6318;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card:last-child {
  margin-right: 0;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card .body {
  box-sizing: border-box;
  min-height: 180px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card .subject {
  margin: 0;
  color: #333;
  line-height: 1.2;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card .split {
  width: 20px;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #ee6318;
  flex-shrink: 0;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card .desc {
  margin: 0;
  color: #666;
  line-height: 1.5;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card::before {
  content: '';
  position: absolute;
  pointer-events: none;
  left: 4px;
  top: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 10px;
  border: 1px solid rgba(238, 99, 24, 0.2);
  box-sizing: border-box;
  z-index: 1;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 10px;
  border: 1px solid #ee6318;
  background: linear-gradient(40.27deg, #dd490b 20.37%, #e56407 42.27%, #e97305 60.44%, #eb7905 79.58%, #e76e08 97.51%);
  opacity: 0;
  z-index: 0;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card:hover::after {
  opacity: 1;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card:hover .subject {
  color: #fff;
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card:hover .split {
  background: rgba(255, 255, 255, 0.85);
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card:hover .desc {
  color: rgba(255, 255, 255, 0.8);
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card:hover::before {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.advantage-page .section-06 .security-panel .security-row .tiles .cards-row .card.card--wide {
  width: 47.3770491803%;
}

.place-box {
  height: 100px;
}
