 .expo-nav-module,
 .expo-nav-module * {
   box-sizing: border-box;
 }

 .expo-nav-module {
   width: 100%;
   background: #fff;

   position: relative;
   z-index: 999;
   font-family: Arial, "Microsoft YaHei", sans-serif;
 }

 .expo-nav-inner {
   width: min(1350px, calc(100% - 40px));
   height: 85px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .expo-nav-logo {
   width: 105px;
   height: auto;
   display: block;
   object-fit: contain;
   transition: transform .3s ease, opacity .3s ease;
 }

 .expo-nav-logo:hover {
   transform: scale(1.06);
   opacity: .88;
 }

 .expo-nav-menu {
   height: 100%;
   margin-left: auto;
   margin-right: 90px;
   display: flex;
   align-items: center;
   gap: 58px;
 }

 .expo-nav-item {
   height: 100%;
   display: flex;
   align-items: center;
   position: relative;
 }

 .expo-nav-link {
   height: 100%;
   display: inline-flex;
   align-items: center;
   color: #1A0E29;
   font-size: 18px;
   font-weight: 600;
   line-height: 1;
   text-decoration: none;
   white-space: nowrap;
   transition: color .25s ease, transform .25s ease;
 }

 .expo-nav-link:hover,
 .expo-nav-link.is-active {
   color: #9D4AFE;
   transform: translateY(-2px);
 }

 .expo-nav-arrow {
   width: 8px;
   height: 8px;
   margin-left: 8px;
   border-right: 1.5px solid currentColor;
   border-bottom: 1.5px solid currentColor;
   transform: rotate(45deg) translateY(-2px);
   transition: transform .25s ease;
 }

 .expo-nav-item:hover .expo-nav-arrow {
   transform: rotate(225deg) translate(-2px, -2px);
 }

 .expo-nav-submenu {
   position: absolute;
   top: calc(100% - 8px);
   left: 50%;
   min-width: 150px;
   padding: 10px 0;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transform: translate(-50%, 12px);
   background: #fff;
   border-radius: 6px;
   box-shadow: 0 8px 25px rgba(26, 14, 41, .14);
   transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
 }

 .expo-nav-item:hover .expo-nav-submenu,
 .expo-nav-item:focus-within .expo-nav-submenu {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
   transform: translate(-50%, 0);
 }

 .expo-nav-submenu a {
   display: block;
   padding: 10px 20px;
   color: #1A0E29;
   font-size: 14px;
   text-decoration: none;
   white-space: nowrap;
   transition: color .25s ease, background .25s ease, padding-left .25s ease;
 }

 .expo-nav-submenu a:hover {
   color: #9D4AFE;
   background: #faf7ff;
   padding-left: 25px;
 }

 .expo-nav-booking {
   min-width: 187px;
   height: 46px;
   padding: 0 22px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 16px;
   color: #fff;
   background: #9D4AFE;
   border-radius: 5px;
   font-size: 17px;
   text-decoration: none;
   box-shadow: 0 5px 12px rgba(157, 74, 254, .18);
   transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
 }

 .expo-nav-booking:hover {
   background: #8535e9;
   transform: translateY(-3px);
   box-shadow: 0 8px 18px rgba(157, 74, 254, .3);
 }

 .expo-nav-booking img {
   width: 17px;
   height: 17px;
   object-fit: contain;
   transition: transform .25s ease;
 }

 .expo-nav-booking:hover img {
   transform: translateX(4px);
 }

 .expo-nav-mobile-toggle {
   display: none;
   width: 38px;
   height: 38px;
   padding: 8px;
   border: 0;
   background: transparent;
   cursor: pointer;
 }

 .expo-nav-mobile-toggle span {
   display: block;
   width: 22px;
   height: 2px;
   margin: 5px auto;
   background: #1A0E29;
   transition: transform .25s ease, opacity .25s ease;
 }

 @media (max-width: 1100px) {
   .expo-nav-menu {
     gap: 28px;
     margin-right: 30px;
   }

   .expo-nav-link {
     font-size: 16px;
   }

   .expo-nav-booking {
     min-width: 160px;
     font-size: 16px;
   }
 }

 @media (max-width: 768px) {
   .expo-nav-module {
     border-top-width: 8px;
   }

   .expo-nav-inner {
     width: calc(100% - 30px);
     height: 70px;
   }

   .expo-nav-logo {
     width: 92px;
   }

   .expo-nav-mobile-toggle {
     display: block;
     order: 3;
   }

   .expo-nav-menu {
     position: absolute;
     top: 70px;
     left: 15px;
     right: 15px;
     height: auto;
     margin: 0;
     padding: 12px 0;
     display: none;
     flex-direction: column;
     align-items: stretch;
     gap: 0;
     background: #fff;
     border-radius: 0 0 8px 8px;
     box-shadow: 0 8px 20px rgba(26, 14, 41, .12);
   }

   .expo-nav-menu.is-open {
     display: flex;
   }

   .expo-nav-item {
     height: auto;
     display: block;
   }

   .expo-nav-link {
     width: 100%;
     height: auto;
     padding: 14px 24px;
     justify-content: space-between;
     font-size: 16px;
   }

   .expo-nav-submenu {
     position: static;
     min-width: 0;
     padding: 0;
     display: none;
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transform: none;
     border-radius: 0;
     box-shadow: none;
     background: #faf7ff;
   }

   .expo-nav-item.submenu-open .expo-nav-submenu {
     display: block;
   }

   .expo-nav-submenu a {
     padding: 11px 42px;
   }

   .expo-nav-booking {
     min-width: 120px;
     height: 40px;
     margin-left: auto;
     margin-right: 8px;
     padding: 0 13px;
     gap: 8px;
     font-size: 14px;
   }

   .expo-nav-booking img {
     width: 14px;
     height: 14px;
   }
 }

 @media (max-width: 380px) {
   .expo-nav-logo {
     width: 78px;
   }

   .expo-nav-booking {
     min-width: 105px;
     font-size: 13px;
   }
 }

 .trend-full-slider,
 .trend-full-slider * {
   box-sizing: border-box;
 }

 .trend-full-slider {
   width: 100%;
   height: clamp(520px, 39vw, 700px);
   position: relative;
   overflow: hidden;
   background: #f7faff;
   font-family: Arial, "Microsoft YaHei", sans-serif;
 }

 .trend-slider-track {
   width: 100%;
   height: 100%;
   position: relative;
 }

 .trend-slider-slide {
   position: absolute;
   inset: 0;
   opacity: 0;
   visibility: hidden;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   transition: opacity .7s ease, visibility .7s ease;
 }

 .trend-slider-slide.is-current {
   opacity: 1;
   visibility: visible;
 }

 .trend-slider-content {
   width: min(1350px, calc(100% - 40px));
   height: 100%;
   margin: 0 auto;
   display: flex;
   align-items: center;
   position: relative;
   z-index: 2;
 }

 .trend-slider-copy {
   width: 650px;
   margin-top: -5px;
   color: #1A0E29;
 }

 .trend-slider-title {
   margin: 0 0 8px;
   font-size: clamp(30px, 3vw, 48px);
   font-weight: 700;
   line-height: 1.3;
   letter-spacing: 1px;
 }

 .trend-slider-desc {
   margin: 0;
   font-size: clamp(16px, 1.35vw, 22px);
   line-height: 1.6;
 }

 .trend-slider-actions {
   margin-top: 78px;
   display: flex;
   align-items: center;
   gap: 36px;
 }

 .trend-slider-action {
   min-width: 187px;
   height: 46px;
   padding: 0 25px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 18px;
   border-radius: 4px;
   font-size: 18px;
   font-weight: 600;
   text-decoration: none;
   transition: color .3s ease, background .3s ease, transform .3s ease,
     box-shadow .3s ease;
 }

 .trend-slider-action:hover {
   transform: translateY(-3px);
 }

 .trend-slider-action img {
   width: 16px;

   object-fit: contain;
   transition: transform .3s ease;
 }

 .trend-slider-action:hover img {
   transform: translateX(4px);
   filter: brightness(0) invert(1);
 }

 .trend-slider-action--primary {
   color: #fff;
   background: #9D4AFE;
   box-shadow: 0 6px 15px rgba(157, 74, 254, .2);
 }

 .trend-slider-action--primary:hover {
   background: #8535e9;
   box-shadow: 0 9px 20px rgba(157, 74, 254, .3);
 }

 .trend-slider-action--outline {
   color: #9D4AFE;
   border: 1px solid #9D4AFE;
   background: rgba(255, 255, 255, .35);
 }

 .trend-slider-action--outline:hover {
   color: #fff;
   background: #9D4AFE;
 }

 /* 左右切换按钮 */
 .trend-slider-control {
   width: 60px;
   height: 60px;
   position: absolute;
   top: 50%;
   z-index: 5;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0;
   border: 1px solid #9D4AFE;
   border-radius: 50%;
   background: rgba(255, 255, 255, .58);
   cursor: pointer;
   transform: translateY(-50%);
   transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
 }

 .trend-slider-control img {
   width: 25px;
   height: 25px;
   object-fit: contain;
   transition: filter .3s ease, transform .3s ease;
 }

 .trend-slider-control:hover {
   background: #9D4AFE;
   box-shadow: 0 5px 15px rgba(157, 74, 254, .3);
 }

 .trend-slider-control:hover img {
   filter: brightness(0) invert(1);
 }

 /* 左右切换按钮：独立于内容区域，距离屏幕边缘固定距离 */
 .trend-slider-control--prev {
   left: 42px;
 }

 .trend-slider-control--next {
   right: 42px;
 }

 @media (max-width: 768px) {
   .trend-slider-control--prev {
     left: 18px;
   }

   .trend-slider-control--next {
     right: 18px;
   }
 }

 .trend-slider-control--prev:hover {
   transform: translate(-3px, -50%);
 }

 .trend-slider-control--next:hover {
   transform: translate(3px, -50%);
 }

 /* 底部指示器 */
 .trend-slider-indicators {
   position: absolute;
   bottom: 15px;
   left: 50%;
   z-index: 6;
   display: flex;
   align-items: center;
   gap: 8px;
   transform: translateX(-50%);
 }

 .trend-slider-indicator {
   width: 30px;
   height: 2px;
   padding: 0;
   border: 0;
   background: #05ECF4;
   cursor: pointer;
   transition: width .35s ease, background .35s ease;
 }

 .trend-slider-indicator.is-current {
   width: 45px;
   background: #9D4AFE;
 }

 /* 手机端 */
 @media (max-width: 768px) {
   .trend-full-slider {
     height: 600px;
     min-height: 600px;
   }

   .trend-slider-slide {
     background-position: 62% center;
   }

   .trend-slider-slide::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg,
         rgba(255, 255, 255, .95) 0%,
         rgba(255, 255, 255, .78) 48%,
         rgba(255, 255, 255, .12) 100%);
   }

   .trend-slider-content {
     width: calc(100% - 40px);
     align-items: center;
   }

   .trend-slider-copy {
     width: 100%;
     margin-top: -20px;
   }

   .trend-slider-title {
     max-width: 95%;
     font-size: 30px;
     line-height: 1.4;
   }

   .trend-slider-desc {
     max-width: 92%;
     font-size: 15px;
   }

   .trend-slider-actions {
     margin-top: 45px;
     gap: 12px;
     flex-wrap: wrap;
   }

   .trend-slider-action {
     min-width: 145px;
     height: 44px;
     padding: 0 14px;
     gap: 9px;
     font-size: 15px;
   }

   .trend-slider-action img {
     width: 16px;
     height: 16px;
   }

   .trend-slider-control {
     width: 42px;
     height: 42px;
     top: auto;
     bottom: 48px;
     transform: none;
   }

   .trend-slider-control--prev {
     left: 20px;
   }

   .trend-slider-control--next {
     right: 20px;
   }

   .trend-slider-control--prev:hover,
   .trend-slider-control--next:hover {
     transform: translateY(-3px);
   }

   .trend-slider-control img {
     width: 19px;
     height: 19px;
   }

   .trend-slider-indicators {
     bottom: 20px;
   }

   .trend-slider-indicator {
     width: 22px;
   }

   .trend-slider-indicator.is-current {
     width: 34px;
   }
 }

 @media (max-width: 380px) {
   .trend-full-slider {
     height: 570px;
     min-height: 570px;
   }

   .trend-slider-title {
     font-size: 26px;
   }

   .trend-slider-action {
     min-width: 132px;
     font-size: 14px;
   }
 }

 .expo-showcase-block,
 .expo-showcase-block * {
   box-sizing: border-box;
 }

 .expo-showcase-block {
   width: 100%;
   padding: 68px 0 82px;
   background: #F8FAFF;
   font-family: Arial, "Microsoft YaHei", sans-serif;
 }

 .expo-showcase-inner {
   width: min(1350px, calc(100% - 40px));
   margin: 0 auto;
 }

 .expo-showcase-head {
   margin-bottom: 30px;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .expo-showcase-heading {
   margin: 0;
   color: #1A0E29;
   font-size: 30px;
   font-weight: 700;
 }

 .expo-showcase-more {
   height: 36px;
   min-width: 116px;
   padding: 0 18px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   background: #1A0E29;
   border-radius: 5px;
   box-shadow: 0 4px 10px rgba(26, 14, 41, .2);
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 1px;
   text-decoration: none;
   transition: transform .3s ease, background .3s ease,
     box-shadow .3s ease;
 }

 .expo-showcase-more:hover {
   background: #9D4AFE;
   transform: translateY(-3px);
   box-shadow: 0 8px 16px rgba(157, 74, 254, .28);
 }

 .expo-showcase-grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 18px;
 }

 .expo-showcase-card {
   overflow: hidden;
   display: block;
   color: inherit;
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 5px 14px rgba(0, 0, 0, .14);
   text-decoration: none;
   transition: transform .3s ease, box-shadow .3s ease;
 }

 .expo-showcase-card:hover {
   transform: translateY(-7px);
   box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
 }

 .expo-showcase-photo {
   height: 285px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   background: #fff;
 }

 .expo-showcase-photo img {

   object-fit: contain;
   transition: transform .45s ease, opacity .3s ease;
 }

 .expo-showcase-card:hover .expo-showcase-photo img {
   transform: scale(1.08);
   opacity: .88;
 }

 .expo-showcase-detail {
   padding: 14px 24px 27px;
 }

 .expo-showcase-name {
   margin: 0 0 6px;
   overflow: hidden;
   color: #1A0E29;
   font-size: 18px;
   font-weight: 700;
   line-height: 1.45;
   text-overflow: ellipsis;
   white-space: nowrap;
 }

 .expo-showcase-time {
   margin: 0;
   color: #999;
   font-size: 16px;
   line-height: 1.5;
 }

 @media (max-width: 1100px) {
   .expo-showcase-grid {
     grid-template-columns: repeat(3, minmax(0, 1fr));
   }

   .expo-showcase-photo {
     height: 245px;
   }
 }

 @media (max-width: 768px) {
   .expo-showcase-block {
     padding: 45px 0 55px;
   }

   .expo-showcase-inner {
     width: calc(100% - 30px);
   }

   .expo-showcase-head {
     margin-bottom: 22px;
   }

   .expo-showcase-heading {
     font-size: 24px;
   }

   .expo-showcase-more {
     min-width: 100px;
     height: 34px;
     font-size: 13px;
   }

   .expo-showcase-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
   }

   .expo-showcase-photo {
     height: 190px;
   }


   .expo-showcase-detail {
     padding: 12px 14px 18px;
   }

   .expo-showcase-name {
     font-size: 16px;
   }

   .expo-showcase-time {
     font-size: 13px;
   }
 }

 @media (max-width: 420px) {
   .expo-showcase-block {
     padding-top: 35px;
   }

   .expo-showcase-heading {
     font-size: 21px;
   }

   .expo-showcase-more {
     min-width: 88px;
     padding: 0 10px;
     font-size: 12px;
   }

   .expo-showcase-grid {
     gap: 12px;
   }

   .expo-showcase-photo {
     height: 155px;
   }

   .expo-showcase-detail {
     padding: 10px 11px 15px;
   }

   .expo-showcase-name {
     font-size: 14px;
   }

   .expo-showcase-time {
     font-size: 12px;
   }
 }

 .energy-exhibition-zone,
 .energy-exhibition-zone * {
   box-sizing: border-box;
 }

 .energy-exhibition-zone {
   width: 100%;
   padding: 68px 0 82px;
   background: #9D4AFE;
   font-family: Arial, "Microsoft YaHei", sans-serif;
 }

 .energy-exhibition-inner {
   width: min(1350px, calc(100% - 40px));
   margin: 0 auto;
 }

 .energy-exhibition-header {
   margin-bottom: 30px;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .energy-exhibition-title {
   margin: 0;
   color: #fff;
   font-size: 30px;
   font-weight: 700;
   line-height: 1.35;
 }

 .energy-exhibition-more {
   min-width: 116px;
   height: 36px;
   padding: 0 18px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: #9D4AFE;
   background: #fff;
   border-radius: 5px;
   box-shadow: 0 4px 10px rgba(48, 15, 89, .22);
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 1px;
   text-decoration: none;
   transition: transform .3s ease, color .3s ease,
     box-shadow .3s ease, background .3s ease;
 }

 .energy-exhibition-more:hover {
   color: #fff;
   background: #1A0E29;
   transform: translateY(-3px);
   box-shadow: 0 8px 16px rgba(26, 14, 41, .25);
 }

 .energy-exhibition-grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 18px;
 }

 .energy-exhibition-card {
   min-width: 0;
   overflow: hidden;
   display: block;
   color: #fff;
   background: rgba(115, 42, 220, .2);
   border-radius: 16px;
   box-shadow: 0 6px 14px rgba(67, 20, 126, .25);
   text-decoration: none;
   transition: transform .3s ease, background .3s ease,
     box-shadow .3s ease;
 }

 .energy-exhibition-card:hover {
   background: rgba(115, 42, 220, .36);
   transform: translateY(-7px);
   box-shadow: 0 13px 25px rgba(67, 20, 126, .35);
 }

 .energy-exhibition-image {
   height: 275px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   background: #fff;
   border-radius: 16px;
 }

 .energy-exhibition-image img {

   object-fit: contain;
   transition: transform .45s ease, opacity .3s ease;
 }

 .energy-exhibition-card:hover .energy-exhibition-image img {
   opacity: .9;
   transform: scale(1.08);
 }

 .energy-exhibition-info {
   padding: 18px 24px 27px;
 }

 .energy-exhibition-name {
   margin: 0 0 5px;
   overflow: hidden;
   color: #fff;
   font-size: 18px;
   font-weight: 700;
   line-height: 1.45;
   text-overflow: ellipsis;
   white-space: nowrap;
 }

 .energy-exhibition-date {
   margin: 0;
   color: rgba(255, 255, 255, .92);
   font-size: 16px;
   line-height: 1.5;
 }

 @media (max-width: 1100px) {
   .energy-exhibition-grid {
     grid-template-columns: repeat(3, minmax(0, 1fr));
   }

   .energy-exhibition-image {
     height: 245px;
   }
 }

 @media (max-width: 768px) {
   .energy-exhibition-zone {
     padding: 45px 0 55px;
   }

   .energy-exhibition-inner {
     width: calc(100% - 30px);
   }

   .energy-exhibition-header {
     margin-bottom: 22px;
   }

   .energy-exhibition-title {
     font-size: 24px;
   }

   .energy-exhibition-more {
     min-width: 100px;
     height: 34px;
     font-size: 13px;
   }

   .energy-exhibition-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
   }

   .energy-exhibition-image {
     height: 190px;
   }


   .energy-exhibition-info {
     padding: 12px 14px 18px;
   }

   .energy-exhibition-name {
     font-size: 16px;
   }

   .energy-exhibition-date {
     font-size: 13px;
   }
 }

 @media (max-width: 420px) {
   .energy-exhibition-zone {
     padding-top: 35px;
   }

   .energy-exhibition-title {
     font-size: 21px;
   }

   .energy-exhibition-more {
     min-width: 88px;
     padding: 0 10px;
     font-size: 12px;
   }

   .energy-exhibition-grid {
     gap: 12px;
   }

   .energy-exhibition-image {
     height: 155px;
   }

   .energy-exhibition-info {
     padding: 10px 11px 15px;
   }

   .energy-exhibition-name {
     font-size: 14px;
   }

   .energy-exhibition-date {
     font-size: 12px;
   }
 }
  .common-centered-heading,
  .common-centered-heading * {
    box-sizing: border-box;
  }

  .common-centered-heading {
    width: 100%;
    padding: 58px 20px;
    background: #F8FAFF;
    text-align: center;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .common-centered-heading-title {
    margin: 0;
    color: #1A0E29;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .common-centered-heading {
      padding: 40px 15px;
    }

    .common-centered-heading-title {
      font-size: 26px;
    }
  }

  @media (max-width: 420px) {
    .common-centered-heading {
      padding: 32px 15px;
    }

    .common-centered-heading-title {
      font-size: 23px;
    }
  }
    .visa-center-panel,
  .visa-center-panel * {
    box-sizing: border-box;
  }

  .visa-center-panel {
    width: 100%;
    padding: 52px 0 72px;
    color: #fff;
    background: #030303;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .visa-center-inner {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
  }

  .visa-center-title {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
  }

  .visa-center-description {
    margin: 24px 0 20px;
    padding-left: 16px;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
  }

  .visa-center-row {
    display: grid;
    gap: 46px;
    align-items: start;
  }

  .visa-center-row--top {
    grid-template-columns: 40fr 60fr;
  }

  .visa-center-row--bottom {
    margin-top: 32px;
    grid-template-columns: 60fr 40fr;
  }

  .visa-center-group {
    min-width: 0;
  }

  .visa-center-card {
    width: 100%;
    min-height: 328px;
    padding: 27px 28px 23px;
    display: grid;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, .08);
  }

  .visa-center-card--small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 25px;
    row-gap: 19px;
  }

  .visa-center-card--large {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 25px;
    row-gap: 19px;
  }

  .visa-center-country {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1A0E29;
    text-align: center;
    text-decoration: none;
    transition: transform .3s ease;
  }

  .visa-center-country:hover {
    transform: translateY(-6px);
  }

  .visa-center-flag {
    width: 128px;
    height: 128px;
    margin-bottom: 8px;
    object-fit: contain;
    transition: transform .4s ease, filter .3s ease;
  }

  .visa-center-country:hover .visa-center-flag {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .22));
  }

  .visa-center-country-name {
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .visa-center-group-title {
    margin: 24px 0 0;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
  }

  @media (max-width: 900px) {
    .visa-center-row {
      gap: 25px;
    }

    .visa-center-card {
      padding: 22px 18px;
    }

    .visa-center-card--large {
      column-gap: 12px;
    }

    .visa-center-flag {
      width: 76px;
      height: 76px;
    }

    .visa-center-country-name {
      font-size: 14px;
    }
  }

  @media (max-width: 700px) {
    .visa-center-panel {
      padding: 40px 0 55px;
    }

    .visa-center-inner {
      width: calc(100% - 30px);
    }

    .visa-center-title {
      font-size: 27px;
    }

    .visa-center-description {
      margin: 18px 0 16px;
      padding-left: 0;
      font-size: 15px;
    }

    .visa-center-row,
    .visa-center-row--top,
    .visa-center-row--bottom {
      display: block;
      margin-top: 0;
    }

    .visa-center-group {
      margin-bottom: 28px;
    }

    .visa-center-card {
      min-height: auto;
    }

    .visa-center-card--small {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 12px;
      row-gap: 16px;
    }

    .visa-center-card--large {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      column-gap: 5px;
      row-gap: 15px;
    }

    .visa-center-flag {
      width: 62px;
      height: 62px;
      margin-bottom: 6px;
    }

    .visa-center-country-name {
      font-size: 13px;
    }

    .visa-center-group-title {
      margin: 15px 0 0;
      font-size: 24px;
    }
  }

  @media (max-width: 420px) {
    .visa-center-card {
      padding: 18px 12px;
      border-radius: 12px;
    }

    .visa-center-card--large {
      column-gap: 2px;
      row-gap: 13px;
    }

    .visa-center-flag {
      width: 54px;
      height: 54px;
    }

    .visa-center-country-name {
      font-size: 11px;
    }
  }
   .news-feature-area,
  .news-feature-area * {
    box-sizing: border-box;
  }

  .news-feature-area {
    width: 100%;
    padding: 70px 0 85px;
    background: #F8FAFF;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .news-feature-container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
  }

  .news-feature-row {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 66px;
  }

  .news-feature-row + .news-feature-row {
    margin-top: 38px;
  }

  .news-feature-visual,
  .news-feature-content {
    width: calc(50% - 33px);
  }

  .news-feature-visual {
    overflow: hidden;
    border-radius: 0 0 14px 14px;
  }

  .news-feature-image {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease, filter .35s ease;
  }

  .news-feature-visual:hover .news-feature-image {
    transform: scale(1.06);
    filter: brightness(1.04);
  }

  .news-feature-content {
    color: #1A0E29;
  }

  .news-feature-heading {
    margin: 0 0 20px;
    color: #1A0E29;
    font-size: clamp(32px, 3.1vw, 48px);
    font-weight: 700;
    line-height: 1.25;
  }

  .news-feature-subtitle {
    margin: 0;
    color: #999;
    font-size: 23px;
    line-height: 1.5;
  }

  .news-feature-button {
    min-width: 102px;
    height: 36px;
    margin-top: 20px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1A0E29;
    border-radius: 5px;
    box-shadow: 0 5px 12px rgba(26, 14, 41, .2);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease,
      box-shadow .3s ease;
  }

  .news-feature-button:hover {
    background: #9D4AFE;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(157, 74, 254, .28);
  }

  .news-feature-row--reverse .news-feature-visual {
    order: 2;
  }

  .news-feature-row--reverse .news-feature-content {
    order: 1;
  }

  @media (max-width: 900px) {
    .news-feature-row {
      gap: 35px;
    }

    .news-feature-visual,
    .news-feature-content {
      width: calc(50% - 18px);
    }

    .news-feature-image {
      height: 280px;
    }

    .news-feature-heading {
      font-size: 32px;
    }

    .news-feature-subtitle {
      font-size: 19px;
    }
  }

  @media (max-width: 700px) {
    .news-feature-area {
      padding: 45px 0 55px;
    }

    .news-feature-container {
      width: calc(100% - 30px);
    }

    .news-feature-row,
    .news-feature-row--reverse {
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 25px;
    }

    .news-feature-row + .news-feature-row {
      margin-top: 50px;
    }

    .news-feature-row--reverse .news-feature-visual,
    .news-feature-row--reverse .news-feature-content {
      order: initial;
    }

    .news-feature-visual,
    .news-feature-content {
      width: 100%;
    }

    .news-feature-image {
      height: auto;
      aspect-ratio: 1.55 / 1;
    }

    .news-feature-content {
      padding: 0 5px;
    }

    .news-feature-heading {
      margin-bottom: 10px;
      font-size: 30px;
    }

    .news-feature-subtitle {
      font-size: 18px;
    }

    .news-feature-button {
      margin-top: 16px;
    }
  }

  @media (max-width: 420px) {
    .news-feature-heading {
      font-size: 26px;
    }

    .news-feature-subtitle {
      font-size: 16px;
    }

    .news-feature-row + .news-feature-row {
      margin-top: 42px;
    }
  }
  .site-footer-purple,
  .site-footer-purple * {
    box-sizing: border-box;
  }

  .site-footer-purple {
    width: 100%;
    padding: 58px 0 24px;
    color: #fff;
    background: #9D4AFE;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .site-footer-purple-inner {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
  }

  .site-footer-purple-main {
    display: grid;
    grid-template-columns: 1.1fr 1.15fr .95fr;
    gap: 80px;
    min-height: 380px;
  }

  .site-footer-purple-column {
    min-width: 0;
  }

  .site-footer-purple-title {
    margin: 0 0 25px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
  }

  .site-footer-purple-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .site-footer-purple-contact-item {
    min-height: 38px;
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
  }

  .site-footer-purple-contact-icon {
    width: 34px;
    height: 34px;
    margin-right: 12px;
    flex: 0 0 34px;
    object-fit: contain;
    transition: transform .3s ease;
  }

  .site-footer-purple-contact-item:hover .site-footer-purple-contact-icon {
    transform: scale(1.12) rotate(-5deg);
  }

  .site-footer-purple-contact-text {
    padding-top: 3px;
    word-break: break-all;
  }

  .site-footer-purple-phone-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer-purple-phone-list span + span {
    padding-left: 0;
  }

  .site-footer-purple-links {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
  }

  .site-footer-purple-links a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .3s ease, transform .3s ease;
  }

  .site-footer-purple-links a::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 18px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 2px;
    transition: background .3s ease, border-color .3s ease;
  }

  .site-footer-purple-links a:hover {
    color: #1A0E29;
    transform: translateX(5px);
  }

  .site-footer-purple-links a:hover::before {
    border-color: #1A0E29;
    background: #1A0E29;
  }

  .site-footer-purple-qrcodes {
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }

  .site-footer-purple-qr-item {
    width: 185px;
    max-width: calc(50% - 9px);
    text-align: center;
  }

  .site-footer-purple-qr-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    padding: 5px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 12px rgba(77, 21, 143, .2);
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .site-footer-purple-qr-item:hover .site-footer-purple-qr-image {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 20px rgba(77, 21, 143, .35);
  }

  .site-footer-purple-qr-label {
    min-width: 112px;
    margin: 14px auto 0;
    padding: 9px 14px;
    display: inline-block;
    color: #fff;
    background: rgba(157, 74, 254, .6);
    border-radius: 6px;
    box-shadow: 0 5px 12px rgba(77, 21, 143, .18);
    font-size: 17px;
    line-height: 1.35;
  }

  .site-footer-purple-bottom {
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, .65);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.5;
  }

  .site-footer-purple-bottom p {
    margin: 0;
  }

  @media (max-width: 1100px) {
    .site-footer-purple-main {
      gap: 35px;
    }

    .site-footer-purple-title {
      font-size: 26px;
    }

    .site-footer-purple-contact-item,
    .site-footer-purple-links a {
      font-size: 16px;
    }

    .site-footer-purple-qr-item {
      width: 145px;
    }
  }

  @media (max-width: 768px) {
    .site-footer-purple {
      padding: 45px 0 20px;
    }

    .site-footer-purple-inner {
      width: calc(100% - 30px);
    }

    .site-footer-purple-main {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 38px 25px;
      min-height: 0;
    }

    .site-footer-purple-column:first-child {
      grid-column: 1 / -1;
    }

    .site-footer-purple-title {
      margin-bottom: 18px;
      font-size: 24px;
    }

    .site-footer-purple-contact-item,
    .site-footer-purple-links a {
      font-size: 15px;
    }

    .site-footer-purple-contact-icon {
      width: 30px;
      height: 30px;
      flex-basis: 30px;
      margin-right: 9px;
    }

    .site-footer-purple-links {
      gap: 12px;
    }

    .site-footer-purple-links a::before {
      width: 13px;
      height: 13px;
      margin-right: 10px;
    }

    .site-footer-purple-qrcodes {
      gap: 12px;
    }

    .site-footer-purple-qr-label {
      min-width: 90px;
      margin-top: 10px;
      padding: 7px 8px;
      font-size: 14px;
    }

    .site-footer-purple-bottom {
      margin-top: 38px;
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
      font-size: 12px;
    }
  }

  @media (max-width: 420px) {
    .site-footer-purple-main {
      display: block;
    }

    .site-footer-purple-column {
      margin-bottom: 35px;
    }

    .site-footer-purple-column:last-child {
      margin-bottom: 0;
    }

    .site-footer-purple-qrcodes {
      max-width: 310px;
    }

    .site-footer-purple-qr-item {
      width: 145px;
    }
  }
   .about-company-feature,
    .about-company-feature * {
      box-sizing: border-box;
    }

    .about-company-feature {
      width: 100%;
      overflow: hidden;
      background: #F8FAFF;
      font-family: Arial, "Microsoft YaHei", sans-serif;
    }

    .about-company-wrap {
      width: min(1350px, calc(100% - 40px));
      min-height: 780px;
      margin: 0 auto;
      position: relative;
    }

    .about-company-photo {
      width: 100%;
      max-width: none;
      height: 780px;
      position: absolute;
      top: 0;
      right: calc(32% + 20px);
      z-index: 1;
      overflow: hidden;
    }

    .about-company-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform .6s ease, filter .4s ease;
    }

    .about-company-photo:hover img {
      transform: scale(1.04);
      filter: brightness(1.05);
    }

    .about-company-content {
      width: 61%;
      min-height: 420px;
      padding: 47px 45px 42px;
      position: absolute;
      top: 50%;
      right: 0;
      z-index: 2;
      color: #1A0E29;
      background: #fff;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
      transform: translateY(-50%);
    }

    .about-company-title {
      margin: 0 0 20px;
      color: #1A0E29;
      font-size: 32px;
      font-weight: 700;
      line-height: 1.4;
    }

    .about-company-text {
      margin: 0;
      color: #302a39;
      font-size: 16px;
      line-height: 2;
      text-align: justify;
    }

    .about-company-data {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .about-company-data-item {
      min-width: 0;
      display: flex;
      align-items: center;
      color: #9D4AFE;
      transition: transform .3s ease;
    }

    .about-company-data-item:hover {
      transform: translateY(-5px);
    }

    .about-company-data-icon {
      width: 42px;
      height: 42px;
      margin-right: 10px;
      flex: 0 0 42px;
      object-fit: contain;
      transition: transform .35s ease;
    }

    .about-company-data-item:hover .about-company-data-icon {
      transform: scale(1.12) rotate(-5deg);
    }

    .about-company-data-info {
      min-width: 0;
    }

    .about-company-data-number {
      display: flex;
      align-items: baseline;
      white-space: nowrap;
      line-height: 1;
    }

    .about-company-data-number strong {
      font-size: 32px;
      font-weight: 700;
    }

    .about-company-data-number small {
      margin-left: 5px;
      font-size: 14px;
      font-weight: 700;
    }

    .about-company-data-label {
      margin-top: 6px;
      overflow: hidden;
      color: #9D4AFE;
      font-size: 14px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    @media (max-width: 1100px) {
      .about-company-wrap {
        min-height: 590px;
      }

      .about-company-photo {
        height: 590px;
        right: calc(50% + 10px);
      }

      .about-company-content {
        width: 64%;
        padding: 35px 30px;
      }

      .about-company-title {
        font-size: 28px;
      }

      .about-company-text {
        font-size: 14px;
        line-height: 1.8;
      }

      .about-company-data {
        gap: 10px;
      }

      .about-company-data-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
        margin-right: 7px;
      }

      .about-company-data-number strong {
        font-size: 26px;
      }
    }

    @media (max-width: 768px) {
      .about-company-feature {
        padding: 45px 0 55px;
      }

      .about-company-wrap {
        width: calc(100% - 30px);
        min-height: 0;
        display: flex;
        flex-direction: column;
      }

      .about-company-photo {
        width: 100%;
        height: auto;
        position: static;
        overflow: hidden;
      }

      .about-company-photo img {
        height: auto;
        aspect-ratio: 1.5 / 1;
      }

      .about-company-content {
        width: calc(100% - 24px);
        min-height: 0;
        margin: -45px auto 0;
        padding: 30px 22px 28px;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
      }

      .about-company-title {
        margin-bottom: 14px;
        font-size: 25px;
      }

      .about-company-text {
        font-size: 14px;
        line-height: 1.85;
      }

      .about-company-data {
        margin-top: 25px;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 12px;
      }

      .about-company-data-number strong {
        font-size: 27px;
      }
    }

    @media (max-width: 420px) {
      .about-company-content {
        width: calc(100% - 16px);
        padding: 24px 16px;
      }

      .about-company-title {
        font-size: 23px;
      }

      .about-company-text {
        font-size: 13px;
      }

      .about-company-data-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        margin-right: 6px;
      }

      .about-company-data-number strong {
        font-size: 24px;
      }

      .about-company-data-number small,
      .about-company-data-label {
        font-size: 12px;
      }
    }
    .company-advantage-zone,
  .company-advantage-zone * {
    box-sizing: border-box;
  }

  .company-advantage-zone {
    width: 100%;
    padding: 68px 0 78px;
    background: #F8FAFF;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .company-advantage-inner {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
  }

  .company-advantage-heading {
    margin: 0 0 48px;
    color: #1A0E29;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
  }

  .company-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .company-advantage-card {
    min-height: 478px;
    padding: 70px 28px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 50% / 24%;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .13);
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .company-advantage-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 13px 26px rgba(0, 0, 0, .19);
  }

  .company-advantage-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 39px;
    object-fit: contain;
    transition: transform .45s ease, filter .35s ease;
  }

  .company-advantage-card:hover .company-advantage-icon {
    transform: scale(1.1) rotate(4deg);
    filter: drop-shadow(0 6px 8px rgba(157, 74, 254, .24));
  }

  .company-advantage-title {
    margin: 0 0 10px;
    color: #1A0E29;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
  }

  .company-advantage-text {
    margin: 0;
    color: #433c4d;
    font-size: 16px;
    line-height: 1.8;
  }

  .company-advantage-number {
    margin-top: auto;
    padding-top: 30px;
    color: #9D4AFE;
    font-size: 20px;
    line-height: 1;
  }

  .company-advantage-card:nth-child(2) .company-advantage-number,
  .company-advantage-card:nth-child(4) .company-advantage-number {
    color: #05DCE9;
  }

  @media (max-width: 1100px) {
    .company-advantage-card {
      min-height: 430px;
      padding: 55px 20px 28px;
    }

    .company-advantage-icon {
      width: 90px;
      height: 90px;
      margin-bottom: 30px;
    }

    .company-advantage-title {
      font-size: 17px;
    }

    .company-advantage-text {
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    .company-advantage-zone {
      padding: 45px 0 55px;
    }

    .company-advantage-inner {
      width: calc(100% - 30px);
    }

    .company-advantage-heading {
      margin-bottom: 30px;
      font-size: 28px;
    }

    .company-advantage-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .company-advantage-card {
      min-height: 390px;
      padding: 45px 16px 25px;
      border-radius: 50% / 18%;
    }

    .company-advantage-icon {
      width: 78px;
      height: 78px;
      margin-bottom: 27px;
    }

    .company-advantage-title {
      font-size: 16px;
    }

    .company-advantage-text {
      font-size: 13px;
      line-height: 1.7;
    }

    .company-advantage-number {
      padding-top: 22px;
      font-size: 17px;
    }
  }

  @media (max-width: 420px) {
    .company-advantage-heading {
      font-size: 24px;
    }

    .company-advantage-grid {
      gap: 12px;
    }

    .company-advantage-card {
      min-height: 350px;
      padding: 35px 12px 20px;
    }

    .company-advantage-icon {
      width: 65px;
      height: 65px;
      margin-bottom: 22px;
    }

    .company-advantage-title {
      font-size: 14px;
    }

    .company-advantage-text {
      font-size: 12px;
    }

    .company-advantage-number {
      font-size: 15px;
    }
  }
   .core-service-section,
  .core-service-section * {
    box-sizing: border-box;
  }

  .core-service-section {
    width: 100%;
    padding: 68px 0 80px;
    background: #F8FAFF;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .core-service-container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
  }

  .core-service-heading {
    margin: 0 0 48px;
    color: #1A0E29;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
  }

  .core-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .core-service-card {
    min-height: 295px;
    padding: 64px 38px 34px;
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .13);
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .core-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 13px 26px rgba(0, 0, 0, .19);
  }

  .core-service-icon-box {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2FFFF;
    border: 1px solid #63F3F3;
    border-radius: 4px;
    transition: background .3s ease, border-color .3s ease,
      transform .35s ease;
  }

  .core-service-card:hover .core-service-icon-box {
    background: #E8FFFF;
    border-color: #9D4AFE;
    transform: translateY(-3px);
  }

  .core-service-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform .4s ease, filter .3s ease;
  }

  .core-service-card:hover .core-service-icon {
    transform: scale(1.12) rotate(3deg);
  }

  .core-service-name {
    margin: 0 0 7px;
    color: #1A0E29;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
  }

  .core-service-description {
    margin: 0;
    color: #38323F;
    font-size: 15px;
    line-height: 1.7;
  }

  @media (max-width: 1000px) {
    .core-service-card {
      min-height: 275px;
      padding: 45px 25px 28px;
    }

    .core-service-name {
      font-size: 18px;
    }

    .core-service-description {
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    .core-service-section {
      padding: 45px 0 55px;
    }

    .core-service-container {
      width: calc(100% - 30px);
    }

    .core-service-heading {
      margin-bottom: 30px;
      font-size: 28px;
    }

    .core-service-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
    }

    .core-service-card {
      min-height: 270px;
      padding: 30px 18px 24px;
      border-radius: 12px;
    }

    .core-service-icon-box {
      width: 55px;
      height: 55px;
      margin-bottom: 18px;
    }

    .core-service-icon {
      width: 40px;
      height: 40px;
    }

    .core-service-name {
      font-size: 17px;
    }

    .core-service-description {
      font-size: 13px;
      line-height: 1.65;
    }
  }

  @media (max-width: 480px) {
    .core-service-grid {
      grid-template-columns: 1fr;
    }

    .core-service-card {
      min-height: 0;
      padding: 28px 20px 26px;
    }

    .core-service-heading {
      font-size: 25px;
    }
  }
  .article-pair-list,
  .article-pair-list * {
    box-sizing: border-box;
  }

  .article-pair-list {
    width: 100%;
    padding: 65px 0 80px;
    background: #F8FAFF;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .article-pair-container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
  }

  .article-pair-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 62px;
  }

  .article-pair-item {
    min-width: 0;
    min-height: 195px;
    position: relative;
    display: flex;
    align-items: center;
  }

  .article-pair-image-wrap {
    width: 57%;
    height: 250px;
    overflow: hidden;
    background: #fff;
  }

  .article-pair-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease, filter .35s ease;
  }

  .article-pair-item:hover .article-pair-image {
    transform: scale(1.08);
    filter: brightness(1.04);
  }

  .article-pair-link {
    width: 62%;
    min-height: 130px;
    margin-left: -9%;
    padding: 28px 20px 22px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .article-pair-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 23px rgba(0, 0, 0, .2);
  }

  .article-pair-title {
    margin: 0 0 9px;
    overflow: hidden;
    color: #1A0E29;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .3s ease;
  }

  .article-pair-link:hover .article-pair-title {
    color: #9D4AFE;
  }

  .article-pair-date {
    margin: 0;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
  }

  @media (max-width: 1100px) {
    .article-pair-grid {
      gap: 35px 35px;
    }

    .article-pair-image-wrap {
      height: 165px;
    }

    .article-pair-item {
      min-height: 165px;
    }

    .article-pair-link {
      min-height: 115px;
      padding: 20px 16px;
    }

    .article-pair-title {
      font-size: 16px;
    }
  }

  @media (max-width: 700px) {
    .article-pair-list {
      padding: 45px 0 55px;
    }

    .article-pair-container {
      width: calc(100% - 30px);
    }

    .article-pair-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .article-pair-item {
      min-height: 155px;
    }

    .article-pair-image-wrap {
      width: 58%;
      height: 155px;
    }

    .article-pair-link {
      width: 63%;
      min-height: 110px;
      margin-left: -10%;
      padding: 18px 14px;
    }

    .article-pair-title {
      margin-bottom: 7px;
      font-size: 16px;
    }

    .article-pair-date {
      font-size: 13px;
    }
  }

  @media (max-width: 420px) {
    .article-pair-item {
      min-height: 125px;
    }

    .article-pair-image-wrap {
      height: 125px;
    }

    .article-pair-link {
      min-height: 92px;
      padding: 13px 11px;
    }

    .article-pair-title {
      font-size: 14px;
    }

    .article-pair-date {
      font-size: 12px;
    }
  }
   .country-visa-catalog,
  .country-visa-catalog * {
    box-sizing: border-box;
  }

  .country-visa-catalog {
    width: 100%;
    padding: 65px 0 80px;
    background: #F8FAFF;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .country-visa-container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
  }

  .country-visa-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .country-visa-card {
    min-width: 0;
    overflow: hidden;
    padding: 20px 20px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .14);
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .country-visa-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 13px 25px rgba(0, 0, 0, .2);
  }

  .country-visa-flag-wrap {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .country-visa-flag {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s ease, filter .35s ease;
  }

  .country-visa-card:hover .country-visa-flag {
    transform: scale(1.08);
    filter: drop-shadow(0 7px 7px rgba(0, 0, 0, .18));
  }

  .country-visa-name {
    margin: 17px 0 7px;
    color: #1A0E29;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
  }

  .country-visa-description {
    margin: 0;
    color: #999;
    font-size: 13px;
    line-height: 1.7;
  }

  .country-visa-description span {
    display: block;
  }

  @media (max-width: 1000px) {
    .country-visa-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .country-visa-flag-wrap {
      height: 175px;
    }
  }

  @media (max-width: 768px) {
    .country-visa-catalog {
      padding: 45px 0 55px;
    }

    .country-visa-container {
      width: calc(100% - 30px);
    }

    .country-visa-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
    }

    .country-visa-card {
      padding: 14px 14px 18px;
      border-radius: 12px;
    }

    .country-visa-flag-wrap {
      height: 145px;
    }

    .country-visa-name {
      margin-top: 13px;
      font-size: 15px;
    }

    .country-visa-description {
      font-size: 12px;
      line-height: 1.65;
    }
  }

  @media (max-width: 420px) {
    .country-visa-grid {
      gap: 12px;
    }

    .country-visa-card {
      padding: 11px 10px 15px;
    }

    .country-visa-flag-wrap {
      height: 120px;
    }

    .country-visa-name {
      margin-top: 10px;
      font-size: 14px;
    }

    .country-visa-description {
      font-size: 11px;
    }
  }
   .news-detail-page,
  .news-detail-page * {
    box-sizing: border-box;
  }

  .news-detail-page {
    width: 100%;
    min-height: 600px;
    padding: 70px 0 90px;
    background: #F8FAFF;
    font-family: Arial, "Microsoft YaHei", sans-serif;
  }

  .news-detail-container {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
  }

  .news-detail-header {
    padding-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid #e8e8ee;
  }

  .news-detail-title {
    margin: 0;
    color: #1A0E29;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.45;
  }

  .news-detail-meta {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 28px;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
  }

  .news-detail-meta-item {
    display: inline-flex;
    align-items: center;
  }

  .news-detail-meta-item strong {
    margin-right: 5px;
    color: #666;
    font-weight: 400;
  }

  .news-detail-body {
    padding: 38px 0 0;
    color: #333;
    font-size: 16px;
    line-height: 2;
  }

  .news-detail-body p {
    margin: 0 0 22px;
  }

  .news-detail-body h2 {
    margin: 32px 0 15px;
    color: #1A0E29;
    font-size: 24px;
    line-height: 1.5;
  }

  .news-detail-body img {
    max-width: 100%;
    height: auto;
    margin: 10px auto 25px;
    display: block;
    border-radius: 8px;
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .news-detail-body img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  }

  @media (max-width: 768px) {
    .news-detail-page {
      padding: 45px 0 60px;
    }

    .news-detail-container {
      width: calc(100% - 30px);
    }

    .news-detail-title {
      font-size: 27px;
    }

    .news-detail-meta {
      gap: 7px 15px;
      font-size: 13px;
    }

    .news-detail-body {
      padding-top: 28px;
      font-size: 15px;
      line-height: 1.85;
    }

    .news-detail-body h2 {
      font-size: 21px;
    }
  }

  @media (max-width: 420px) {
    .news-detail-title {
      font-size: 23px;
    }

    .news-detail-meta {
      flex-direction: column;
      gap: 5px;
    }

    .news-detail-body {
      font-size: 14px;
    }
  }
    .contact-page-layout,
        .contact-page-layout * {
            box-sizing: border-box;
        }

        .contact-page-layout {
            width: 100%;
            padding: 70px 0 85px;
            background: #F8FAFF;
            font-family: Arial, "Microsoft YaHei", sans-serif;
        }

        .contact-page-container {
            width: min(1350px, calc(100% - 40px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 70px;
            align-items: stretch;
        }

        .contact-page-left,
        .contact-page-form {
            padding: 42px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
        }

        .contact-page-heading {
            margin: 0 0 28px;
            color: #1A0E29;
            font-size: 30px;
            font-weight: 700;
            line-height: 1.4;
        }

        .contact-page-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-page-info-item {
            display: flex;
            align-items: flex-start;
            color: #333;
            font-size: 16px;
            line-height: 1.6;
        }

       .contact-page-info-icon {
  width: 34px;
  height: 34px;
  margin-right: 12px;
  padding: 7px;
  flex: 0 0 34px;
  object-fit: contain;
  background: #9D4AFE;
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease,
    box-shadow .3s ease;
}

.contact-page-info-item:hover .contact-page-info-icon {
  background: #7F2FE0;
  transform: scale(1.12);
  box-shadow: 0 5px 10px rgba(157, 74, 254, .3);
}

        .contact-page-info-text {
            padding-top: 3px;
            word-break: break-all;
        }

        .contact-page-phone-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .contact-page-qr-list {
            margin-top: 35px;
            display: flex;
            gap: 20px;
        }

        .contact-page-qr-item {
            width: 145px;
            text-align: center;
        }

        .contact-page-qr {
            width: 100%;
            aspect-ratio: 1 / 1;
            padding: 5px;
            display: block;
            object-fit: contain;
            background: #fff;
            border-radius: 7px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .13);
            transition: transform .35s ease, box-shadow .35s ease;
        }

        .contact-page-qr-item:hover .contact-page-qr {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
        }

        .contact-page-qr-label {
            margin-top: 11px;
            padding: 8px 10px;
            display: inline-block;
            color: #fff;
            background: #9D4AFE;
            border-radius: 5px;
            box-shadow: 0 4px 10px rgba(157, 74, 254, .25);
            font-size: 14px;
        }

        .contact-page-form {
            display: flex;
            flex-direction: column;
        }

        .contact-page-form-title {
            margin: 0 0 28px;
            color: #1A0E29;
            font-size: 30px;
            font-weight: 700;
        }

        .contact-page-form-group {
            margin-bottom: 18px;
        }

        .contact-page-form-label {
            margin-bottom: 7px;
            display: block;
            color: #333;
            font-size: 15px;
        }

        .contact-page-form-control {
            width: 100%;
            min-height: 44px;
            padding: 10px 13px;
            color: #333;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            outline: none;
            font: inherit;
            transition: border-color .3s ease, box-shadow .3s ease;
        }

        textarea.contact-page-form-control {
            min-height: 125px;
            resize: vertical;
        }

        .contact-page-form-control:focus {
            border-color: #9D4AFE;
            box-shadow: 0 0 0 3px rgba(157, 74, 254, .12);
        }

        .contact-page-submit {
            min-width: 120px;
            height: 42px;
            margin-top: 8px;
            padding: 0 22px;
            align-self: flex-start;
            color: #fff;
            background: #1A0E29;
            border: 0;
            border-radius: 5px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            transition: background .3s ease, transform .3s ease,
                box-shadow .3s ease;
        }

        .contact-page-submit:hover {
            background: #9D4AFE;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(157, 74, 254, .28);
        }

        @media (max-width: 900px) {
            .contact-page-container {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }

            .contact-page-left,
            .contact-page-form {
                padding: 28px 22px;
            }

            .contact-page-heading,
            .contact-page-form-title {
                font-size: 25px;
            }

            .contact-page-qr-list {
                gap: 12px;
            }

            .contact-page-qr-item {
                width: 120px;
            }
        }

        @media (max-width: 700px) {
            .contact-page-layout {
                padding: 45px 0 60px;
            }

            .contact-page-container {
                width: calc(100% - 30px);
                display: flex;
                flex-direction: column;
                gap: 25px;
            }

            .contact-page-left,
            .contact-page-form {
                padding: 28px 22px;
            }

            .contact-page-info-item {
                font-size: 15px;
            }

            .contact-page-qr-item {
                width: 130px;
            }
        }

        @media (max-width: 420px) {

            .contact-page-left,
            .contact-page-form {
                padding: 24px 16px;
            }

            .contact-page-heading,
            .contact-page-form-title {
                font-size: 23px;
            }

            .contact-page-qr-item {
                width: 115px;
            }

            .contact-page-qr-label {
                font-size: 13px;
            }
        }