@font-face {
  font-family: PingFangSC;
  src: local('PingFang SC'), local('PingFangSC'), url('fonts/PingFangSC-Regular.otf');
  font-weight: normal;
}
@font-face {
  font-family: PingFangSC;
  src: local('PingFang SC Medium'), local('PingFangSC-Medium'), url('fonts/PingFangSC-Medium.otf');
  font-weight: 500;
}
@font-face {
  font-family: PingFangSC;
  src: local('PingFang SC Semibold'), local('PingFangSC-Semibold'), url('fonts/PingFangSC-Semibold.otf');
  font-weight: 600;
}
@font-face {
  font-family: Avenir;
  src: local('Avenir Light'), local('Avenir-Light'), url('fonts/Avenir-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: Avenir;
  src: local('Avenir Roman'), local('Avenir-Roman'), url('fonts/Avenir-Roman.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: Avenir;
  src: local('Avenir Medium'), local('Avenir-Medium'), url('fonts/Avenir-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: Avenir;
  src: local('Avenir Heavy'), local('Avenir-Heavy'), url('fonts/Avenir-Heavy.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: Avenir;
  src: local('Avenir Black'), local('Avenir-Black'), url('fonts/Avenir-Black.ttf') format('truetype');
  font-weight: 900;
}
:root {
  --base-font-size: 16px;
  --content-padding: max( calc((100vw - 1280px) / 2), 7.5rem);
  --header-height: 110px;
  --content-width: calc(100% - var(--content-padding) * 2);
}
@media (max-width: 1024px) {
  :root {
    --content-padding: 2rem;
    --header-height: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --base-font-size: 14px;
    --content-padding: 1rem;
    --header-height: auto;
  }
}
body {
  width: 100%;
  font-family: Alibaba-PuHuiTi, sans-serif;
  font-size: var(--base-font-size);
  line-height: 1.5;
  color: #222222;
  font-style: normal;
  --color-primary: #241ce8;
}
body.mobile-nav-open {
  overflow: hidden;
  height: 100vh;
}
@media (min-width: 769px) {
  body.mobile-nav-open {
    overflow: auto;
    height: auto;
  }
}
body.popup-open {
  overflow: hidden;
}
.font-avenir {
  font-family: Avenir, -apple-system, BlinkMacSystemFont, sans-serif;
}
.font-avenir-light {
  font-family: Avenir, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
}
.font-avenir-medium {
  font-family: Avenir, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}
.font-avenir-heavy {
  font-family: Avenir, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
}
.font-avenir-black {
  font-family: Avenir, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
}
.font-alibaba {
  font-family: Alibaba-PuHuiTi, sans-serif;
}
a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #241ce8;
}
.content-part {
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
  width: 100%;
  box-sizing: border-box;
}
header {
  position: relative;
  z-index: 99;
}
.top-bar {
  background: #ffffff;
  position: relative;
  /*z-index: 101;*/
  padding: 0.75rem var(--content-padding);
  border-bottom: 1px solid #E4E4E4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 90px;
}
@media (max-width: 1024px) {
  .top-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .top-bar {
    padding: 0.5rem var(--content-padding);
    min-height: 60px;
  }
}
.top-bar .logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .top-bar .logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.top-bar .logo-section .logo-text img {
  height: 58px;
}
@media (max-width: 767px) {
  .top-bar .logo-section .logo-text img {
    height: 32px;
  }
}
.top-bar .logo-section .mobile-nav-toggle {
  display: none;
}
@media (max-width: 768px) {
  .top-bar .logo-section .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 1rem;
    cursor: pointer;
  }
  .top-bar .logo-section .mobile-nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
  }
}
.top-bar .logo-section .cta-button {
  margin-left: auto;
}
@media (min-width: 769px) {
  .top-bar .logo-section .cta-button {
    display: none;
  }
}
.top-bar .cta-button .btn-evaluation {
  background-color: #4F46E5;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.top-bar .cta-button .btn-evaluation:hover {
  background-color: #3730A3;
}
@media (max-width: 768px) {
  .top-bar .cta-button .btn-evaluation {
    padding: 0.5rem 1rem;
    font-size: 12px;
  }
}
.top-bar .header-nav-section {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .top-bar .header-nav-section {
    display: none;
  }
}
.top-bar .header-nav-section .main-nav {
  position: relative;
}
.top-bar .header-nav-section .main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .top-bar .header-nav-section .main-nav .nav-list {
    gap: 1.5rem;
  }
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item {
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link.active,
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link:hover {
  font-weight: 600;
  position: relative;
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link.active::after,
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -1.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  background-color: #4F46E5;
  transition: all 0.3s ease;
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link.active .dropdown-icon,
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link:hover .dropdown-icon {
  filter: none;
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link .dropdown-icon {
  width: 12px;
  height: 12px;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  filter: grayscale(1) opacity(0.6);
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link:hover {
  color: #4F46E5;
}
.top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link:hover .dropdown-icon {
  transform: rotate(180deg);
  filter: none;
}
@media (max-width: 1024px) {
  .top-bar .header-nav-section .main-nav .nav-list .nav-item .nav-link {
    font-size: 13px;
  }
}
.top-bar .header-right-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .top-bar .header-right-group {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .top-bar .header-right-group {
    gap: 0.5rem;
  }
}
.top-bar .header-right-group .contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .top-bar .header-right-group .contact-info {
    gap: 0.25rem;
  }
}
.top-bar .header-right-group .contact-info .phone-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .top-bar .header-right-group .contact-info .phone-icon {
    width: 16px;
    height: 16px;
  }
}
.top-bar .header-right-group .contact-info .phone-number {
  color: #333;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 768px) {
  .top-bar .header-right-group .contact-info .phone-number {
    font-size: 14px;
  }
}
.top-bar .header-right-group .search-button .search-icon {
  background: none;
  border: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  padding: 0px !important;
  width: 44px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.top-bar .header-right-group .search-button .search-icon:hover {
  background-color: #F3F4F6;
  color: #4F46E5;
}
@media (max-width: 768px) {
  .top-bar .header-right-group .cta-button {
    display: none;
  }
}
.header-search-expanded {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--content-padding);
  z-index: 102;
}
.header-search-expanded.active {
  display: flex;
}
.header-search-expanded .search-logo-section {
  flex-shrink: 0;
}
.header-search-expanded .search-logo-section .logo-text img {
  height: 58px;
}
@media (max-width: 767px) {
  .header-search-expanded .search-logo-section .logo-text img {
    display: none;
  }
}
.header-search-expanded .search-input-area {
  flex: 1;
  margin-right: 12px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .header-search-expanded .search-input-area {
    margin-right: 0px;
  }
  .header-search-expanded .search-input-area .search-form {
    width: 100%;
  }
  .header-search-expanded .search-input-area .search-input-container {
    min-width: auto !important;
  }
}
.header-search-expanded .search-input-area .search-input-container {
  display: flex;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 0;
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  border: 1px solid #CDCEE4;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px;
  min-width: 350px;
  height: 60px;
  width: 100%;
}
.header-search-expanded .search-input-area .search-input-container:focus-within {
  border: 1px solid #353CF6;
  box-shadow: 0px 2px 12px 0px rgba(53, 60, 246, 0.3);
}
.header-search-expanded .search-input-area .search-input-container .search-input-holder {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.header-search-expanded .search-input-area .search-input-container .search-input-holder::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('../images/shared/search.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.header-search-expanded .search-input-area .search-input-container .search-input-holder .search-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 20px 0 50px;
  font-size: 16px;
  background: transparent;
  color: #333;
  height: 100%;
  border-radius: 30px;
}
.header-search-expanded .search-input-area .search-input-container .search-input-holder .search-input::placeholder {
  color: #9CA3AF;
}
@media (max-width: 768px) {
  .header-search-expanded .search-input-area .search-input-container .search-input-holder .search-input {
    font-size: 14px;
  }
}
.header-search-expanded .search-close-button {
  flex-shrink: 0;
}
.header-search-expanded .search-close-button .close-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.header-search-expanded .search-close-button .close-icon:hover {
  background-color: #F3F4F6;
}
.header-search-expanded .search-close-button .close-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.top-bar.search-active .header-nav-section,
.top-bar.search-active .header-right-group {
  opacity: 0;
  pointer-events: none;
}
.top-bar.search-active .logo-section {
  opacity: 1;
  pointer-events: auto;
}
.top-bar.search-active .header-search-expanded {
  display: flex;
}
.top-bar-first {
  background: #ffffff;
  position: relative;
  z-index: 101;
  padding: 1rem var(--content-padding);
  border-bottom: 1px solid #E4E4E4;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1em;
}
.top-bar-first .logo-section {
  margin-right: auto;
}
@media (max-width: 767px) {
  .top-bar-first .logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.top-bar-first .logo-section .logo-text img {
  height: 80px;
  width: auto;
}
@media (max-width: 1024px) {
  .top-bar-first .logo-section .logo-text img {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .top-bar-first .logo-section .logo-text img {
    height: 50px;
  }
}
.top-bar-first .logo-section .mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .top-bar-first .logo-section .mobile-nav-toggle {
    display: flex !important;
  }
}
.top-bar-first .logo-section .mobile-nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #374151;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.top-bar-first .logo-section .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(0) rotate(0);
}
.top-bar-first .logo-section .mobile-nav-toggle span:nth-child(2) {
  opacity: 1;
}
.top-bar-first .logo-section .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(0) rotate(0);
}
.top-bar-first .logo-section .mobile-nav-toggle.active span {
  background: white;
}
.top-bar-first .logo-section .mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.top-bar-first .logo-section .mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.top-bar-first .logo-section .mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.news-dropdown-overlay {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #E5E7EB;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .news-dropdown-overlay {
    width: 180px;
  }
}
@media (max-width: 480px) {
  .news-dropdown-overlay {
    width: 180px;
    left: 20px;
    right: 20px;
    width: auto;
    transform: translateY(-10px);
  }
}
.news-dropdown-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 480px) {
  .news-dropdown-overlay.active {
    transform: translateY(0);
  }
}
.news-dropdown-overlay .news-dropdown-content {
  padding: 0;
}
.news-dropdown-overlay .news-options-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
}
@media (max-width: 768px) {
  .news-dropdown-overlay .news-options-container {
    padding: 12px 0;
  }
}
.news-dropdown-overlay .news-option .news-option-link {
  display: block;
  text-decoration: none;
  padding: 12px 20px;
  transition: all 0.2s ease;
  border-radius: 0;
}
.news-dropdown-overlay .news-option .news-option-link:first-child {
  border-radius: 12px 12px 0 0;
}
.news-dropdown-overlay .news-option .news-option-link:last-child {
  border-radius: 0 0 12px 12px;
}
.news-dropdown-overlay .news-option .news-option-link:hover {
  background: #F8FAFC;
}
.news-dropdown-overlay .news-option .news-option-link .option-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4F46E5;
  margin: 0;
}
.news-dropdown-overlay::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid #E5E7EB;
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}
@media (max-width: 480px) {
  .news-dropdown-overlay::before {
    left: 50px;
  }
}
.header-links {
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
}
.header-links .header-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-links .header-link:hover {
  color: #241ce8;
}
.header-links .header-divider {
  color: #d1d5db;
  margin: 0 0.25rem;
}
@media (max-width: 767px) {
  .header-links {
    display: none;
  }
}
.header-right-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .header-right-group {
    display: flex;
    width: 100%;
    justify-content: space-between;
    order: 2;
  }
}
.contact-buttons-container {
  position: relative;
}
.contact-buttons-container .contact-buttons {
  display: flex;
  gap: 0.5rem;
  border-radius: 8px;
  border: 1px solid #E1E2ED;
  transition: border-color 0.3s ease;
}
.contact-buttons-container .contact-buttons:hover {
  border-color: #241ce8;
}
.contact-buttons-container .contact-buttons:hover .contact-button .normal-icon {
  opacity: 0;
}
.contact-buttons-container .contact-buttons:hover .contact-button .hover-icon {
  opacity: 1;
}
.contact-buttons-container .contact-buttons:hover + .contact-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact-buttons-container .contact-buttons .contact-button {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact-buttons-container .contact-buttons .contact-button .normal-icon,
.contact-buttons-container .contact-buttons .contact-button .hover-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
.contact-buttons-container .contact-buttons .contact-button .normal-icon {
  opacity: 1;
}
.contact-buttons-container .contact-buttons .contact-button .hover-icon {
  opacity: 0;
}
@media (max-width: 767px) {
  .contact-buttons-container .contact-buttons .contact-button {
    width: 32px;
    height: 32px;
  }
  .contact-buttons-container .contact-buttons .contact-button .normal-icon,
  .contact-buttons-container .contact-buttons .contact-button .hover-icon {
    width: 20px;
    height: 20px;
  }
}
.contact-buttons-container .contact-tooltip {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 101;
}
.contact-buttons-container .contact-tooltip .tooltip-arrow {
  position: absolute;
  top: -5px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: white;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
}
.contact-buttons-container .contact-tooltip .tooltip-content {
  position: relative;
  z-index: 1;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item .contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item .contact-icon img {
  width: 20px;
  height: 20px;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item .contact-info {
  flex: 1;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item .contact-info .contact-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.125rem;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item .contact-info .contact-value {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: #4b5563;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item .contact-info .contact-value a {
  color: #241ce8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-buttons-container .contact-tooltip .tooltip-content .contact-item .contact-info .contact-value a:hover {
  color: #1a1491;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .contact-buttons-container .contact-tooltip {
    width: 200px;
    padding: 0.75rem;
  }
}
.consulting-service-btn .btn-consulting {
  background: #241ce8;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.consulting-service-btn .btn-consulting:hover {
  background: #1a1491;
  color: white;
}
@media (max-width: 767px) {
  .consulting-service-btn .btn-consulting {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
}
.normal-icon {
  opacity: 0;
}
.hover-icon {
  opacity: 1;
}
@media (max-width: 1024px) {
  padding: 1.5rem var(--content-padding) 1rem;
  .header-right {
    height: auto;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  padding: 1rem var(--content-padding);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  .logo-section {
    margin-top: 0;
    text-align: left;
    flex-shrink: 0;
  }
  .header-right {
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.service-overlay {
  position: absolute;
  top: 100%;
  left: var(--content-padding);
  right: var(--content-padding);
  z-index: 1000;
  background: white;
  box-shadow: 0px 2px 10px 0px rgba(130, 154, 205, 0.2);
  border-radius: 0px 0px 12px 12px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.service-overlay.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
.service-overlay.test-visible {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  border: 3px solid red !important;
}
.service-overlay .service-container {
  display: flex;
  border-radius: 0px 0px 12px 12px;
  background: white;
  overflow: hidden;
  max-height: 508px;
}
.service-overlay .service-container .continent-selector {
  position: relative;
  box-shadow: 0px 2px 10px 0px rgba(130, 154, 205, 0.2);
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.service-overlay .service-container .continent-selector .continent-header {
  position: relative;
  padding: 26px 16px;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
}
.service-overlay .service-container .continent-selector .continent-header h3 {
  color: white;
  font-size: 17px;
  font-weight: bold;
  margin: 0;
}
.service-overlay .service-container .continent-selector .continent-header .globe-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  width: auto;
  height: 100%;
}
.service-overlay .service-container .continent-selector .continent-list {
  list-style: none;
  padding: 20px 16px;
  margin: 0;
  flex: 1;
  overflow: auto;
}
.service-overlay .service-container .continent-selector .continent-list .continent-item {
  font-weight: 500;
  padding: 15px 30px;
  font-size: 15px;
  color: #03256C;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}
.service-overlay .service-container .continent-selector .continent-list .continent-item:not(:last-child) {
  margin-bottom: 12px;
}
.service-overlay .service-container .continent-selector .continent-list .continent-item:hover {
  background: #F7F8F9;
  border-radius: 8px;
}
.service-overlay .service-container .continent-selector .continent-list .continent-item.active {
  background: #F7F8F9;
  border-radius: 8px;
}
.service-overlay .service-container .countries-grid {
  flex: 1;
  padding: 40px;
  max-height: 100%;
  overflow-y: auto;
  background: #fff;
}
.service-overlay .service-container .countries-grid::-webkit-scrollbar {
  width: 6px;
}
.service-overlay .service-container .countries-grid::-webkit-scrollbar-track {
  background: transparent;
}
.service-overlay .service-container .countries-grid::-webkit-scrollbar-thumb {
  background: #353CF6;
  border-radius: 3px;
}
.service-overlay .service-container .countries-grid::-webkit-scrollbar-thumb:hover {
  background: #2B32D9;
}
.service-overlay .service-container .countries-grid .countries-section {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-overlay .service-container .countries-grid .countries-section.active {
  display: grid;
}
.service-overlay .service-container .countries-grid .countries-section .countries-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-overlay .service-container .countries-grid .countries-section .countries-column .country-item {
  font-size: 15px;
  color: #03256C;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-overlay .service-container .countries-grid .countries-section .countries-column .country-item:hover {
  color: #1976d2;
}
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 0 var(--content-padding);
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-overlay.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.search-overlay .search-container {
  background: #231ce8;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 20px rgba(5, 5, 5, 0.3);
  padding: 3rem 2rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .search-overlay .search-container {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .search-overlay .search-container {
    padding: 1.5rem 1rem;
    border-radius: 0 0 6px 6px;
  }
}
@media (max-width: 480px) {
  .search-overlay .search-container {
    padding: 1rem;
    border-radius: 0;
  }
}
@media (max-width: 1024px) {
  .search-overlay .search-container {
    padding: 2rem 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .search-overlay .search-container {
    padding: 1.5rem !important;
  }
}
@media (max-width: 480px) {
  .search-overlay .search-container {
    padding: 1rem !important;
  }
}
.search-overlay .search-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .search-overlay .search-box {
    border-bottom: none;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .search-overlay .search-box .search-input {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
  }
}
.search-overlay .search-box .search-input {
  flex: 1;
  color: white;
  font-size: 1rem;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  outline: none;
  border: none;
  background: transparent;
  padding: 0.75rem 0;
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .search-overlay .search-box .search-input {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    text-align: center;
  }
}
.search-overlay .search-box .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.search-overlay .search-box .search-input:focus {
  border-color: #241ce8;
}
.search-overlay .search-box .search-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .search-overlay .search-box .search-btn {
    justify-content: center;
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}
.search-overlay .search-box .search-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-box .search-btn svg {
  width: 16px;
  height: 16px;
}
.search-bar {
  position: relative;
  height: 2.75rem;
  /* 44px/16=2.75 */
  padding: 0.6875rem 1.5rem;
  /* 11px/16=0.6875, 24px/16=1.5 */
  background: #f6f6f6;
  border-radius: 0.25rem;
  /* 4px/16=0.25 */
  max-width: 31.25rem;
  /* 500px/16=31.25 */
}
.search-bar input {
  width: 100%;
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  /* 14px/16=0.875 */
  color: #333;
}
.search-bar .search-icon {
  margin-left: 0.625rem;
  /* 10px/16=0.625 */
  font-size: 1rem;
  /* 16px/16=1 */
  color: #999;
}
.search-bar .divider {
  width: 0.0625rem;
  /* 1px/16=0.0625 */
  height: 100%;
  background: #c5c5c5;
  margin: 0 0.75rem;
  /* 12px/16=0.75 */
}
.search-bar span {
  white-space: nowrap;
}
.icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  /* 14px/16=0.875 */
}
.icons .icon img {
  width: 3rem;
  /* 48px/16=3 */
  height: 3rem;
  /* 48px/16=3 */
  margin-bottom: 0.375rem;
  /* 6px/16=0.375 */
}
.nav-menu {
  margin-left: 0.625rem;
  /* 10px/16=0.625 */
  min-width: 1.875rem;
  /* 30px/16=1.875 */
  position: relative;
  cursor: pointer;
  height: 1.25rem;
  /* 20px/16=1.25 */
}
.nav-menu span {
  display: block;
  background: #222;
  width: 1.5625rem;
  /* 25px/16=1.5625 */
  height: 0.125rem;
  /* 2px/16=0.125 */
  position: absolute;
  left: 0rem;
  transition: all ease 0.35s;
  top: 0;
}
.nav-menu span:nth-of-type(2) {
  top: 0.5rem;
  /* 8px/16=0.5 */
}
.nav-menu span:nth-of-type(3) {
  top: 1rem;
  /* 16px/16=1 */
}
.nav-menu.active span:nth-of-type(1) {
  top: 0.5625rem;
  /* 9px/16=0.5625 */
  transform: rotate(45deg);
}
.nav-menu.active span:nth-of-type(2) {
  width: 0;
}
.nav-menu.active span:nth-of-type(3) {
  top: 0.5625rem;
  /* 9px/16=0.5625 */
  transform: rotate(-45deg);
}
.breadcrumb-nav {
  background-color: #20222d;
  display: flex;
  align-items: center;
  padding: 0 var(--content-padding);
}
.breadcrumb-nav .breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px 0;
}
.breadcrumb-nav .breadcrumb-content .breadcrumb-link {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-nav .breadcrumb-content .breadcrumb-link:hover {
  color: #fff;
}
.breadcrumb-nav .breadcrumb-content .breadcrumb-separator {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: #fff;
}
.breadcrumb-nav .breadcrumb-content .breadcrumb-current {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  cursor: default;
  user-select: none;
}
@media (max-width: 767px) {
  .breadcrumb-nav .breadcrumb-content .breadcrumb-link,
  .breadcrumb-nav .breadcrumb-content .breadcrumb-separator,
  .breadcrumb-nav .breadcrumb-content .breadcrumb-current {
    font-size: 0.8125rem;
  }
}
.sections ul.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* 16px/16=1 */
  list-style: none;
  overflow: hidden;
}
.sections ul.news-list li {
  font-size: 0.875rem;
  /* 14px/16=0.875 */
  display: flex;
  align-items: center;
  width: 100%;
  --dot-width: 0.75rem;
  /* 12px/16=0.75 */
}
.sections ul.news-list li:first-child {
  font-size: 1rem;
  /* 16px/16=1 */
}
.sections ul.news-list li::before {
  content: '';
  display: inline-block;
  width: 0.25rem;
  /* 4px/16=0.25 */
  height: 0.25rem;
  /* 4px/16=0.25 */
  min-width: 0.25rem;
  /* 4px/16=0.25 */
  min-height: 0.25rem;
  /* 4px/16=0.25 */
  background: #f3cf71;
  margin-right: 0.5rem;
  /* 8px/16=0.5 */
}
.sections ul.news-list li.no-dot {
  --dot-width: 0rem;
}
.sections ul.news-list li.no-dot::before {
  display: none;
}
.sections ul.news-list li.hash {
  align-items: baseline;
}
.sections ul.news-list li.hash::before {
  content: '';
  display: inline-block;
  width: 0.75rem;
  /* 20px/16=1.25 */
  height: 0.875rem;
  /* 20px/16=1.25 */
  min-width: 0.75rem;
  /* 20px/16=1.25 */
  min-height: 0.875rem;
  /* 20px/16=1.25 */
  background: url(../images/shared/img_jinhao.png) no-repeat;
  margin-right: 0.625rem;
  /* 8px/16=0.5 */
}
.sections ul.news-list li.douhao::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  /* 20px/16=1.25 */
  height: 1.25rem;
  /* 20px/16=1.25 */
  min-width: 1.25rem;
  /* 20px/16=1.25 */
  min-height: 1.25rem;
  /* 20px/16=1.25 */
  background: url(../images/shared/img_douhao.png) no-repeat;
  margin-right: 0.5rem;
  /* 8px/16=0.5 */
}
.sections ul.news-list li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - var(--dot-width));
}
.sections ol.news-list {
  list-style: none;
  counter-reset: list-counter;
}
.sections ol.news-list li {
  margin-bottom: 0.25rem;
}
.sections ol.news-list li:nth-child(-n + 3) a::before {
  color: var(--color-primary);
}
.sections ol.news-list li a {
  counter-increment: list-counter 1;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sections ol.news-list li a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sections ol.news-list li a img {
  margin-left: 0.9375rem;
  /* 15px/16=0.9375 */
}
.sections ol.news-list li a::marker {
  display: none;
}
.sections ol.news-list li a::before {
  content: counter(list-counter);
  display: inline-block;
  color: #999999;
  font-size: 1.25rem;
  /* 20px/16=1.25 */
  font-weight: 600;
  margin-right: 1rem;
  /* 16px/16=1 */
}
.sections ol.news-list li a:hover {
  color: var(--color-primary);
}
.sections ol.news-list li a:hover::before {
  color: var(--color-primary);
}
.sections .list-with-pic {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* 16px/16=1 */
}
.sections .list-with-pic .item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* 24px/16=1.5 */
}
.sections .list-with-pic .item img {
  width: 40%;
}
.sections .list-with-pic .item span {
  flex: 1;
  padding-right: 0.9375rem;
  /* 15px/16=0.9375 */
  font-weight: 600;
  font-size: 1rem;
  /* 16px/16=1 */
}
.sections .column-title {
  font-family: HYFengShangHei-35W;
  font-weight: normal;
  font-size: 1.5rem;
  /* 24px/16=1.5 */
  color: #222222;
  line-height: 2.0625rem;
  /* 33px/16=2.0625 */
  -webkit-text-stroke: 0.0625rem #222222;
  /* 1px/16=0.0625 */
  position: relative;
}
.sections .column-title::after {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  bottom: -0.25rem;
  /* 4px/16=0.25 */
  background: url(../images/shared/title_bangdan.png) no-repeat bottom left;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sections .column-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sections .column-title.center::after {
  width: calc(100% + 3rem);
  background: url(../images/shared/bg_title.png) no-repeat bottom center;
  background-size: 100% auto;
  left: 50%;
  transform: translateX(-50%);
}
.custom-dropdown {
  position: relative;
  min-width: 200px;
}
@media (max-width: 767px) {
  .custom-dropdown {
    width: 100%;
    min-width: unset;
  }
}
.custom-dropdown .dropdown-trigger {
  appearance: none;
  background: white;
  border: 2px solid #D1D5DB;
  border-radius: 8px;
  padding: 12px 12px 12px 16px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #6B7280;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}
.custom-dropdown .dropdown-trigger:hover {
  border-color: #9CA3AF;
}
.custom-dropdown .dropdown-trigger .dropdown-text {
  flex: 1;
  text-align: left;
}
.custom-dropdown .dropdown-trigger .dropdown-arrow {
  width: 16px;
  height: 16px;
  background-image: url('../images/shared/icon_xiala.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.custom-dropdown.active .dropdown-trigger {
  border-color: #03256C;
  box-shadow: 0 0 0 3px rgba(3, 37, 108, 0.1);
}
.custom-dropdown.active .dropdown-trigger .dropdown-arrow {
  transform: rotate(180deg);
}
.custom-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.custom-dropdown .dropdown-item {
  padding: 12px 16px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #F3F4F6;
}
.custom-dropdown .dropdown-item:last-child {
  border-bottom: none;
}
.custom-dropdown .dropdown-item:hover {
  background: #F9FAFB;
  color: #03256C;
}
.custom-dropdown .dropdown-item.selected {
  background: #EEF2FF;
  color: #03256C;
  font-weight: 500;
}
.custom-dropdown .dropdown-item.selected::after {
  content: '✓';
  float: right;
  color: #03256C;
  font-weight: bold;
}
.cta-section .cta-container {
  height: 193px;
  background: #353CF6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media (max-width: 767px) {
  .cta-section .cta-container {
    height: auto;
  }
}
.cta-section .cta-container .cta-content-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .cta-section .cta-container .cta-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 20px;
  }
}
.cta-section .cta-content {
  flex: 1;
}
.cta-section .cta-content .cta-title {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .cta-section .cta-content .cta-title {
    font-size: 28px;
  }
}
.cta-section .cta-content .cta-description {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.cta-section .cta-action {
  flex-shrink: 0;
}
.cta-section .cta-action .cta-button {
  background: #FF8C42;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 14px 32px;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-section .cta-action .cta-button:hover {
  background: #E67529;
}
.back-to-top {
  height: 64px;
  background: #F0F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.back-to-top .back-to-top-link {
  color: #353CF6;
  text-decoration: none;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.back-to-top .back-to-top-link:hover {
  color: #2832E6;
}
.back-to-top .back-to-top-link .arrow-up {
  font-size: 16px;
}
.faq-section {
  background: #fff;
  padding: 80px var(--content-padding) 60px;
}
.faq-section .content-part {
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .faq-section .content-part {
    padding: 0 20px;
  }
}
.faq-section .faq-title {
  text-align: center;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #232323;
  margin-bottom: 32px;
}
.faq-section .faq-list {
  margin-top: 0;
  border-bottom: 1px solid #E5E7EB;
}
.faq-section .faq-list .faq-item {
  border-top: 1px solid #E5E7EB;
  padding: 28px 0 18px 0;
  transition: background 0.3s, box-shadow 0.3s, border 0.3s;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.faq-section .faq-list .faq-item:hover,
.faq-section .faq-list .faq-item.active {
  border-top: 1px solid #353CF6;
  z-index: 2;
}
.faq-section .faq-list .faq-item .faq-question {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-section .faq-list .faq-item .faq-question .faq-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5" stroke="%23353CF6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  transition: transform 0.3s;
}
.faq-section .faq-list .faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-section .faq-list .faq-item .faq-answer {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  color: #232323;
  margin-top: 18px;
  line-height: 1.7;
  display: none;
}
.faq-section .faq-list .faq-item .faq-answer ol {
  margin: 10px 0 0 20px;
  padding: 0;
  font-size: 15px;
  color: #6B7280;
}
.faq-section .faq-list .faq-item.active .faq-answer {
  display: block;
}
footer {
  background: #fff;
  padding: 0 var(--content-padding);
}
footer .footer-top-text {
  text-align: left;
  padding: 40px 0 30px;
}
footer .footer-top-text .global-text {
  font-family: Avenir, Avenir;
  font-weight: 900;
  font-size: 25px;
  color: #2A2A2A;
  line-height: 50px;
}
footer .footer-top-text .global-text .highlight {
  color: #FF8C42;
  font-weight: 600;
}
footer .footer-top-text .divider-line {
  width: 100%;
  height: 1px;
  background: #E5E7EB;
  margin: 0 auto;
}
footer .footer-content {
  margin: 0 auto;
  padding: 50px 0px 60px;
}
footer .footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 968px) {
  footer .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
footer .footer-left .footer-brand {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  footer .footer-left .footer-brand {
    display: flex;
    justify-content: center;
  }
}
footer .footer-left .footer-brand .footer-logo {
  margin-bottom: 16px;
}
footer .footer-left .footer-brand .footer-logo img {
  height: 58px;
  width: auto;
}
footer .footer-left .footer-social .social-title {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 16px 0;
}
footer .footer-left .footer-social .social-icons {
  display: flex;
  gap: 12px;
}
@media (max-width: 968px) {
  footer .footer-left .footer-social .social-icons {
    justify-content: center;
  }
}
footer .footer-left .footer-social .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-left .footer-social .social-icons .social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
footer .footer-left .footer-social .social-icons .social-icon:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}
footer .footer-center .footer-links-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 968px) {
  footer .footer-center .footer-links-columns {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  footer .footer-center .footer-links-columns .links-title.empty {
    display: none;
  }
}
footer .footer-center .footer-links .links-title {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 16px 0;
}
footer .footer-center .footer-links .links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-center .footer-links .links-list li {
  margin-bottom: 12px;
}
footer .footer-center .footer-links .links-list li .footer-link {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-center .footer-links .links-list li .footer-link:hover {
  color: #353CF6;
}
footer .footer-right .newsletter .newsletter-title {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 8px 0;
  line-height: 1.4;
}
footer .footer-right .newsletter .newsletter-subtitle {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 24px 0;
}
footer .footer-right .newsletter .newsletter-form {
  margin-bottom: 16px;
}
footer .footer-right .newsletter .email-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  overflow: hidden;
  background: white;
  transition: border-color 0.3s ease;
  padding: 8px 8px 8px 16px;
}
footer .footer-right .newsletter .email-input-container:focus-within {
  border-color: #353CF6;
  box-shadow: 0 0 0 3px rgba(53, 60, 246, 0.1);
}
footer .footer-right .newsletter .email-input-container .email-icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
footer .footer-right .newsletter .email-input-container .email-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}
footer .footer-right .newsletter .email-input-container .email-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 0;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #1F2937;
  background: transparent;
}
footer .footer-right .newsletter .email-input-container .email-input::placeholder {
  color: #9CA3AF;
  font-size: 13px;
  letter-spacing: 0.5px;
}
footer .footer-right .newsletter .email-input-container .updates-button {
  background: #353CF6;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 8px;
}
footer .footer-right .newsletter .email-input-container .updates-button:hover {
  background: #2832E6;
  box-shadow: 0 4px 12px rgba(53, 60, 246, 0.3);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 1280px) {
  .top-navbar .navbar-nav .nav-item {
    padding: 4px 2px;
  }
  .top-navbar .navbar-nav .nav-item a {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .top-bar-second .header-nav-section .main-nav .nav-list {
    gap: 1.5rem;
  }
  .search-overlay .search-container,
  .service-overlay .search-container,
  .search-overlay .service-container,
  .service-overlay .service-container {
    border-radius: 0 0 6px 6px;
  }
}
footer .icons {
  flex-direction: column;
}
footer .bottom-navbar .navbar-nav {
  flex-direction: column;
  height: auto;
}
footer .bottom-navbar .navbar-nav .nav-item {
  width: 100%;
  padding: 0.625rem 0;
}
footer .bottom-navbar .navbar-nav .nav-item a {
  width: 100%;
}
footer .bottom-navbar .navbar-nav .nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 100%;
  transform: unset;
  width: 100%;
  height: 0.125rem;
  background: #9c0a0a;
  box-shadow: inset -0.0625rem 0.0625rem 0.0625rem 0rem rgba(170, 96, 0, 0.83);
}
.breadcrumb {
  height: 48px;
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-content {
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item {
  font-family: AlibabaPuHuiTiR;
  font-size: 15px;
  color: #999999;
  line-height: 19px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.breadcrumb .breadcrumb-item:hover {
  font-family: AlibabaPuHuiTiR;
  font-size: 13px;
  color: #2A2A2A;
  line-height: 19px;
}
.breadcrumb .breadcrumb-item.current {
  font-family: AlibabaPuHuiTiR;
  font-size: 13px;
  color: #2A2A2A;
  line-height: 19px;
  cursor: default;
}
.breadcrumb .breadcrumb-separator {
  margin: 0 16px;
  font-size: 15px;
  line-height: 19px;
}
@media (max-width: 767px) {
  .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
  .breadcrumb .breadcrumb-separator {
    margin: 0 12px;
    font-size: 14px;
  }
}
.service-dropdown-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.service-dropdown-overlay.active {
  opacity: 1;
  visibility: visible;
}
.service-dropdown-content {
  background-color: white;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 42px 0;
}
.service-dropdown-content .regions-container {
  max-height: 45vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}
.service-dropdown-content .regions-container::-webkit-scrollbar {
  width: 6px;
}
.service-dropdown-content .regions-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.service-dropdown-content .regions-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.service-dropdown-content .regions-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.service-dropdown-content .regions-container .region-column h4 {
  background: #F0F3FF;
  border-radius: 20px;
  font-family: Avenir, Avenir;
  font-weight: 800;
  font-size: 21px;
  color: #2A2A2A;
  line-height: 29px;
  text-align: center;
  padding: 4px 12px;
  margin: 0 0 20px 0;
  display: inline-block;
}
.service-dropdown-content .regions-container .region-column .country-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.service-dropdown-content .regions-container .region-column .country-list li {
  margin-bottom: 16px;
}
.service-dropdown-content .regions-container .region-column .country-list li:last-child {
  margin-bottom: 0;
}
.service-dropdown-content .regions-container .region-column .country-list li .country-link {
  font-family: Avenir, Avenir;
  font-weight: 500;
  font-size: 15px;
  color: #666666;
  line-height: 15px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.service-dropdown-content .regions-container .region-column .country-list li .country-link:hover {
  color: #333333;
}
@media (max-width: 1200px) {
  .service-dropdown-content .regions-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .service-dropdown-content {
    padding: 20px 0;
  }
  .service-dropdown-content .regions-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .service-dropdown-content .regions-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.mobile-nav-overlay.mobile-nav-open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}
.mobile-nav-overlay .mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-nav-overlay .mobile-nav-close span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-nav-overlay .mobile-nav-close span:first-child {
  transform: rotate(45deg);
}
.mobile-nav-overlay .mobile-nav-close span:last-child {
  transform: rotate(-45deg);
  margin-top: -2px;
}
.mobile-nav-overlay .mobile-nav-close:hover span {
  background: #241ce8;
}
.mobile-nav-overlay .mobile-nav-content {
  text-align: center;
}
.mobile-nav-overlay .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.mobile-nav-overlay .mobile-nav-item .mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 1rem;
}
.mobile-nav-overlay .mobile-nav-item .mobile-nav-link:hover,
.mobile-nav-overlay .mobile-nav-item .mobile-nav-link:focus {
  color: #241ce8;
}
@media (min-width: 769px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}
.swiper-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #D1D5DB;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #4F46E5;
  transform: scale(1.2);
}
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #F0F3FF 0%, #FFFFFF 100%);
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-section .hero-content {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
}
.hero-section .hero-content .hero-text {
  flex: 1;
  max-width: 500px;
}
.hero-section .hero-content .hero-text .hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D3748;
  margin-bottom: 24px;
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
}
.hero-section .hero-content .hero-text .hero-subtitle {
  font-size: 20px;
  line-height: 1.4;
  color: #2D3748;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
}
.hero-section .hero-content .hero-text .hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 0;
  font-family: 'Avenir', sans-serif;
}
.hero-section .hero-content .hero-image {
  flex: 1;
  max-width: 600px;
  position: relative;
}
.hero-section .hero-content .hero-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.hero-section .hero-stats .stat-card {
  background: #FFFFFF;
  padding: 24px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-section .hero-stats .stat-card:first-child {
  background: #353CF6;
  color: white;
}
.hero-section .hero-stats .stat-card:first-child .stat-number {
  color: white;
}
.hero-section .hero-stats .stat-card:first-child .stat-label {
  color: rgba(255, 255, 255, 0.9);
}
.hero-section .hero-stats .stat-card:nth-child(2) {
  background: #FF971D;
  color: white;
}
.hero-section .hero-stats .stat-card:nth-child(2) .stat-number {
  color: white;
}
.hero-section .hero-stats .stat-card:nth-child(2) .stat-label {
  color: rgba(255, 255, 255, 0.9);
}
.hero-section .hero-stats .stat-card:last-child {
  background: #2B3DB2;
  color: white;
}
.hero-section .hero-stats .stat-card:last-child .stat-number {
  color: white;
}
.hero-section .hero-stats .stat-card:last-child .stat-label {
  color: rgba(255, 255, 255, 0.9);
}
.hero-section .hero-stats .stat-card .stat-number {
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}
.hero-section .hero-stats .stat-card .stat-label {
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.why-choose-us-section {
  padding: 80px 50px;
  background: #FFFFFF;
}
.why-choose-us-section .why-choose-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 98px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-choose-us-section .why-choose-container .why-choose-content {
  flex: 1;
}
.why-choose-us-section .why-choose-container .why-choose-content .why-choose-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D3748;
  margin-bottom: 16px;
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
}
.why-choose-us-section .why-choose-container .why-choose-content .why-choose-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 32px;
  font-family: 'Avenir', sans-serif;
}
.why-choose-us-section .why-choose-container .why-choose-content .advantages-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-choose-us-section .why-choose-container .why-choose-content .advantages-list .advantage-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-choose-us-section .why-choose-container .why-choose-content .advantages-list .advantage-item .advantage-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.why-choose-us-section .why-choose-container .why-choose-content .advantages-list .advantage-item .advantage-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-choose-us-section .why-choose-container .why-choose-content .advantages-list .advantage-item .advantage-text {
  font-size: 16px;
  color: #2D3748;
  font-family: 'Avenir', sans-serif;
}
.why-choose-us-section .why-choose-container .why-choose-video {
  flex: 1;
  max-width: 500px;
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container {
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container .about-video {
  width: 100%;
  height: auto;
  display: block;
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .play-btn,
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .pause-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .play-btn img,
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .pause-btn img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .play-btn:hover,
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .pause-btn:hover {
  transform: scale(1.1);
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .pause-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container.playing .play-btn {
  display: none;
}
.why-choose-us-section .why-choose-container .why-choose-video .video-container.playing:hover .pause-btn {
  opacity: 1;
}
.customer-reviews-section {
  background: #F0F3FF;
  padding: 80px 0;
}
.customer-reviews-section .content-part {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.customer-reviews-section .reviews-swiper-container {
  width: 100%;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper {
  overflow: visible;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-pagination {
  position: relative;
  margin-top: 32px;
  text-align: left;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #D1D5DB;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.customer-reviews-section .reviews-swiper-container .reviews-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #353CF6;
  transform: scale(1.2);
}
.customer-reviews-section .review-card {
  display: flex;
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
  width: 100%;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .customer-reviews-section .review-card {
    flex-direction: column;
    padding: 0 10px;
    min-height: 400px;
  }
}
.customer-reviews-section .review-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  width: 55%;
}
@media (max-width: 900px) {
  .customer-reviews-section .review-left {
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
  }
}
.customer-reviews-section .review-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 15px 46px;
  background: #FFFFFF;
}
.customer-reviews-section .review-header .review-logo {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #232323;
}
.customer-reviews-section .review-header .review-logo .review-logo-sub {
  font-weight: 400;
  color: #6B7280;
  font-size: 22px;
  margin-left: 6px;
}
.customer-reviews-section .review-header .review-logo-desc {
  font-size: 15px;
  color: #6B7280;
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  margin-left: 24px;
}
.customer-reviews-section .review-body {
  padding: 46px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.customer-reviews-section .review-stars img {
  height: 48px;
  width: auto;
}
.customer-reviews-section .review-text {
  font-family: Avenir, Avenir;
  font-weight: 500;
  font-size: 25px;
  line-height: 34px;
  margin-bottom: 32px;
}
.customer-reviews-section .review-text .review-link {
  color: #353CF6;
  text-decoration: underline;
  font-weight: 600;
}
.customer-reviews-section .review-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
@media (max-width: 900px) {
  .customer-reviews-section .review-right {
    margin-top: 0;
  }
}
.customer-reviews-section .review-right .review-user {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.customer-reviews-section .review-right .review-user .review-avatar {
  width: 248px;
  height: 248px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(130, 154, 205, 0.18);
  background: #fff;
  border: 3px solid #fff;
  z-index: 1;
}
.customer-reviews-section .review-right .review-user .review-brand {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(130, 154, 205, 0.1);
  padding: 10px;
  margin-left: -8px;
}
.customer-reviews-section .review-right .review-user .review-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.customer-reviews-section .review-right .review-user-info {
  margin-left: 49px;
}
.customer-reviews-section .review-right .review-user-info .review-user-name {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #232323;
  margin-bottom: 6px;
}
.customer-reviews-section .review-right .review-user-info .review-user-title {
  font-family: 'Avenir', 'Alibaba-PuHuiTi', sans-serif;
  font-size: 15px;
  color: #6B7280;
  font-weight: 400;
  max-width: 70%;
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 0 100px;
  }
  .hero-section .hero-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  .hero-section .hero-content .hero-text .hero-title {
    font-size: 40px;
  }
  .hero-section .hero-content .hero-text .hero-subtitle {
    font-size: 18px;
  }
  .hero-section .hero-stats {
    gap: 15px;
  }
  .hero-section .hero-stats .stat-card {
    padding: 20px 30px;
  }
  .hero-section .hero-stats .stat-card .stat-number {
    font-size: 22px;
  }
  .hero-section .hero-stats .stat-card .stat-label {
    font-size: 13px;
  }
  .why-choose-us-section {
    padding: 60px 0;
  }
  .why-choose-us-section .why-choose-container {
    gap: 50px;
  }
  .why-choose-us-section .why-choose-container .why-choose-content .why-choose-title {
    font-size: 32px;
  }
  .why-choose-us-section .why-choose-container .why-choose-content .advantages-list .advantage-item .advantage-text {
    font-size: 15px;
  }
  .why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .play-btn img,
  .why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .pause-btn img {
    width: 55px;
    height: 55px;
  }
}
.entry-process-section {
  padding: 60px 0;
}
.entry-process-section .process-title {
  font-size: 32px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 80px;
  }
  .hero-section .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
  }
  .hero-section .hero-content .hero-text {
    max-width: 100%;
  }
  .hero-section .hero-content .hero-text .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .hero-section .hero-content .hero-text .hero-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .hero-section .hero-content .hero-text .hero-description {
    font-size: 16px;
  }
  .hero-section .hero-content .hero-image {
    max-width: 400px;
  }
  .hero-section .hero-content .hero-image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .hero-section .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-section .hero-stats .stat-card {
    padding: 20px;
  }
  .hero-section .hero-stats .stat-card .stat-number {
    font-size: 20px;
  }
  .hero-section .hero-stats .stat-card .stat-label {
    font-size: 12px;
  }
  .why-choose-us-section {
    padding: 50px 0;
  }
  .why-choose-us-section .why-choose-container {
    flex-direction: column;
    gap: 40px;
  }
  .why-choose-us-section .why-choose-container .why-choose-content {
    text-align: center;
  }
  .why-choose-us-section .why-choose-container .why-choose-content .why-choose-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .why-choose-us-section .why-choose-container .why-choose-content .why-choose-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .why-choose-us-section .why-choose-container .why-choose-content .advantages-list {
    gap: 12px;
  }
  .why-choose-us-section .why-choose-container .why-choose-content .advantages-list .advantage-item {
    justify-content: center;
  }
  .why-choose-us-section .why-choose-container .why-choose-content .advantages-list .advantage-item .advantage-text {
    font-size: 15px;
  }
  .why-choose-us-section .why-choose-container .why-choose-video {
    max-width: 100%;
  }
  .why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .play-btn img,
  .why-choose-us-section .why-choose-container .why-choose-video .video-container .video-controls .pause-btn img {
    width: 50px;
    height: 50px;
  }
  .entry-process-section {
    padding: 50px 0;
  }
  .entry-process-section .process-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .entry-process-section .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 0 60px;
  }
  .hero-section .hero-content {
    gap: 30px;
    margin-bottom: 40px;
  }
  .hero-section .hero-content .hero-text .hero-title {
    font-size: 28px;
  }
  .hero-section .hero-content .hero-text .hero-subtitle {
    font-size: 16px;
  }
  .hero-section .hero-content .hero-text .hero-description {
    font-size: 14px;
  }
  .hero-section .hero-stats .stat-card {
    padding: 16px;
  }
  .hero-section .hero-stats .stat-card .stat-number {
    font-size: 18px;
  }
  .hero-section .hero-stats .stat-card .stat-label {
    font-size: 11px;
  }
  .why-choose-us-section,
  .entry-process-section {
    padding: 40px 0;
  }
  .why-choose-us-section .why-choose-container,
  .entry-process-section .why-choose-container,
  .why-choose-us-section .process-container,
  .entry-process-section .process-container {
    padding: 0 15px;
  }
  .why-choose-us-section .why-choose-title,
  .entry-process-section .why-choose-title,
  .why-choose-us-section .process-title,
  .entry-process-section .process-title {
    font-size: 24px;
  }
}
.business-brokers-section {
  padding: 80px 0;
  background: #FFFFFF;
}
.business-brokers-section .brokers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.business-brokers-section .brokers-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D3748;
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
}
.business-brokers-section .brokers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.business-brokers-section .broker-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 30px 20px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.business-brokers-section .broker-card:hover {
  background: linear-gradient(180deg, #F0F3FF 0%, #F9FAFF 100%);
  box-shadow: 0px 2px 12px 0px rgba(130, 154, 205, 0.28);
  border: 1px solid #353CF6;
}
.business-brokers-section .broker-card:hover .broker-consult-btn {
  background: #4F46E5;
  color: white;
}
.business-brokers-section .broker-card:hover .broker-role {
  color: #4F46E5;
}
.business-brokers-section .broker-card .broker-avatar {
  width: 64px;
  height: 64px;
  margin-right: auto;
  margin-bottom: 20px;
  position: relative;
}
.business-brokers-section .broker-card .broker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.business-brokers-section .broker-card .broker-info {
  margin-bottom: 25px;
}
.business-brokers-section .broker-card .broker-info .broker-name {
  font-family: Avenir, Avenir;
  font-weight: 500;
  font-size: 25px;
  color: #2A2A2A;
  line-height: 31px;
  margin-bottom: 8px;
}
.business-brokers-section .broker-card .broker-info .broker-role {
  font-family: Avenir, Avenir;
  font-weight: 300;
  font-size: 15px;
  color: #353CF6;
  line-height: 21px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.business-brokers-section .broker-card .broker-info .broker-description {
  font-family: Avenir, Avenir;
  font-weight: 300;
  font-size: 15px;
  color: #666666;
  line-height: 24px;
  margin: 0;
}
.business-brokers-section .broker-card .broker-consult-btn {
  margin-right: auto;
  height: 48px;
  border-radius: 26px;
  background: #F3F4F6;
  color: #6B7280;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 140px;
}
.business-brokers-section .broker-card .broker-consult-btn:hover {
  background: #4F46E5;
  color: white;
}
@media screen and (max-width: 1024px) {
  .business-brokers-section .brokers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .business-brokers-section {
    padding: 60px 0;
  }
  .business-brokers-section .brokers-container {
    padding: 0 15px;
  }
  .business-brokers-section .brokers-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .business-brokers-section .brokers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .business-brokers-section .broker-card {
    padding: 25px 15px;
  }
  .business-brokers-section .broker-card .broker-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
  .business-brokers-section .broker-card .broker-info {
    margin-bottom: 20px;
  }
  .business-brokers-section .broker-card .broker-info .broker-name {
    font-size: 18px;
  }
  .business-brokers-section .broker-card .broker-info .broker-role {
    font-size: 13px;
  }
  .business-brokers-section .broker-card .broker-info .broker-description {
    font-size: 13px;
  }
  .business-brokers-section .broker-card .broker-consult-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.cta-cards-container {
  display: flex;
}
.cta-cards-container .cta-card {
  flex: 1;
  position: relative;
  padding: 150px 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-cards-container .cta-card .cta-card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.cta-cards-container .cta-card .cta-card-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-cards-container .cta-card .cta-card-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.cta-cards-container .cta-card .cta-card-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 500px;
  padding: 0 30px;
}
.cta-cards-container .cta-card .cta-card-content .cta-card-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
}
.cta-cards-container .cta-card .cta-card-content .cta-card-description {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 24px;
  font-family: 'Avenir', sans-serif;
  opacity: 0.9;
}
.cta-cards-container .cta-card .cta-card-content .cta-card-button {
  border: none;
  height: 64px;
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Alibaba-PuHuiTi-Bold', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}
.cta-cards-container .cta-card .cta-card-content .cta-card-button.cta-card-button-orange {
  background: #ED8936;
  color: white;
}
.cta-cards-container .cta-card .cta-card-content .cta-card-button.cta-card-button-orange:hover {
  background: #DD7324;
}
.cta-cards-container .cta-card .cta-card-content .cta-card-button.cta-card-button-blue {
  background: #4F46E5;
  color: white;
}
.cta-cards-container .cta-card .cta-card-content .cta-card-button.cta-card-button-blue:hover {
  background: #4338CA;
}
@media screen and (max-width: 768px) {
  .cta-cards-container {
    flex-direction: column;
  }
  .cta-cards-container .cta-card .cta-card-content {
    padding: 0 20px;
  }
  .cta-cards-container .cta-card .cta-card-content .cta-card-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .cta-cards-container .cta-card .cta-card-content .cta-card-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .cta-cards-container .cta-card .cta-card-content .cta-card-button {
    padding: 12px 28px;
    font-size: 14px;
  }
}
