* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: PingFangSC, PingFang SC;
}
body {
  background-color: #fff;
  min-width: 1200px;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero {
  background: #BC4927;
  color: white;
  height: 642px;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  box-shadow: inset 0 0 20px 0 rgba(188, 73, 39, 0.4);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.hero-content {
  width: 521px;
}
.hero-images {
  width: 632px;
  height: 642px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.hero-ul {
  display: flex;
  flex-direction: column;
  animation: imagesLoop 30s linear 0s infinite normal;
  will-change: transform;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.hero-ul:last-child {
  margin-top: -270px;
}
.hero-ul:hover {
  animation-play-state: paused;
}
.hero-ul img {
  flex-shrink: 0;
}
@keyframes imagesLoop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1716px);
  }
}
.hero-images img {
  border-radius: 20px;
  margin-bottom: 32px;
  width: 300px;
  height: 540px;
}
h1 {
  margin-bottom: 24px;
  font-weight: normal;
  font-size: 50px;
  color: #FFFFFF;
  line-height: 68px;
}
.hero p {
  margin-bottom: 48px;
  font-size: 24px;
  font-family: ArialMT;
}
.cta-button {
  background-color: #FF7700;
  color: white;
  padding: 18px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-family: PingFangSC, PingFang SC;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  min-width: 200px;
}
.cta-button:hover {
  background-color: #E56A00;
  color: #fff;
}
.arrow-note {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.arrow-note img {
  width: 20px;
  margin-right: 10px;
}
.features {
  background-color: white;
  padding: 120px 0;
}
.features .container {
  display: flex;
}
.feature-card {
  width: 22%;
  text-align: left;
  margin-left: 40px;
}
.feature-card:first-child {
  margin-left: 0;
}
.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}
.feature-icon img {
  width: 100%;
  height: 100%;
}
.feature-title {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  margin-bottom: 24px;
}
.feature-text {
  font-weight: 400;
  font-size: 18px;
  color: #666;
  line-height: 25px;
  text-align: left;
  font-style: normal;
}
.why-choose {
  color: white;
  padding: 40px 30px;
  border-radius: 10px;
  width: 301px;
  height: 352px;
  display: flex;
  text-align: left;
  font-family: PingFangSC, PingFang SC;
  font-weight: bold;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 48px;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-right: 55px;
}
.section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-content {
  width: 50%;
}
.section-image {
  width: 45%;
}
.section-image img {
  width: 100%;
  border-radius: 10px;
}
h2 {
  font-weight: 600;
  font-size: 42px;
  color: #333333;
  line-height: 48px;
  margin-bottom: 40px;
  font-family: PingFangSC, PingFang SC;
}
.section p {
  font-family: PingFangSC, PingFang SC;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  line-height: 33px;
}
.stats {
  margin-bottom: 120px;
}
.stats .container {
  display: flex;
  justify-content: space-between;
}
.stat-card {
  background-color: #f0f8ff;
  padding: 37px 32px;
  border-radius: 10px;
  text-align: left;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 270px;
  height: 360px;
  box-sizing: border-box;
}
.stat-number {
  font-size: 44px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.stat-text {
  color: #666;
  font-size: 18px;
}
.faq {
  padding-bottom: 120px;
}
.faq .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}
.faq-item {
  padding: 20px;
  background: #FFFFFF;
  border-radius: 2px;
  font-size: 16px;
  color: #333333;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
  transition: height 0.3s ease;
  border: 1px solid #EEEEEE;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:nth-of-type(1) {
  margin-top: 0;
}
.faq-item .faq-arrow-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-arrow-icon {
  transform: rotate(0deg);
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item:hover {
  border-color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question:hover {
  color: var(--color-primary);
}
.faq-question:hover .faq-arrow-icon {
  color: var(--color-primary);
}
.faq-answer {
  color: #666;
  font-size: 14px;
  margin-top: 12px;
  padding-left: 17px;
  display: none;
}
.faq-answer .faq-tit {
  font-weight: 500;
  font-size: 14px;
  color: #333333;
}
.faq-answer .faq-list {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  margin-top: 6px;
}
.faq-answer .faq-list a {
  color: #ff7700;
  text-decoration: underline;
}
.faq-answer .faq-list a:hover {
  color: #e56a00;
}
.faq-question span {
  font-weight: 500;
}
.faq-question i {
  color: #999;
}
.customize {
  background: linear-gradient(180deg, #EFFBFF 0%, #FFFFFF 100%);
  padding: 80px 0;
}
.customize .container {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.customize h2 {
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  margin-bottom: 12px;
}
.customize p {
  margin-bottom: 43px;
  font-weight: 600;
  font-size: 36px;
  color: #333333;
}
.services {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 65px;
  width: 932px;
}
.service {
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.service-icon {
  background-color: #e6f2f8;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.service-icon img {
  width: 100%;
}
.service-text {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  line-height: 25px;
  text-align: center;
}
footer {
  background-color: #333;
  color: white;
  padding: 50px 0 20px;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footer-column {
  width: 20%;
}
.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
}
.qr-code {
  text-align: center;
  margin-bottom: 20px;
}
.qr-code img {
  width: 100px;
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.social-links a {
  color: white;
  margin: 0 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info {
  text-align: center;
  margin-bottom: 20px;
  color: #aaa;
  font-size: 0.9rem;
}
.how-it-work-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 553px;
}
.how-it-work-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -249px;
  width: 809px;
}
