/*==============================
	Colors
==============================*/
/*==============================
	Fonts
==============================*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500&display=swap");

/* 引入 阿里巴巴普惠体 2.0 75 SemiBold 字体 */
@font-face {
  font-family: "阿里巴巴普惠体 2.0 75 SemiBold";
  font-weight: 600;
  src: url("//at.alicdn.com/wf/webfont/Xv4O2pzf9TTn/4SwBUa7NVEvg.woff2") format("woff2"),
       url("//at.alicdn.com/wf/webfont/Xv4O2pzf9TTn/1mX0WD34Kbfz.woff") format("woff");
  font-display: swap;
}
/*==============================
	Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-y: overlay;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow;
  cursor: pointer;
}
button:focus {
  outline: none;
}
a {
  text-decoration: none;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #5fb651;
  color: #16142a;
  text-shadow: none;
}
::selection {
  background: #5fb651;
  color: #16142a;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: #d0d0d0;
  opacity: 1;
}
::-moz-placeholder {
  color: #d0d0d0;
  opacity: 1;
}
:-moz-placeholder {
  color: #d0d0d0;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #d0d0d0;
  opacity: 1;
}
:focus {
  outline: -webkit-focus-ring-color auto 0px;
}
:focus-visible {
  outline: 0px dotted;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }
}
.body--home {
  background: #fff;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(22, 20, 42, 0.3);
  border-radius: 3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(22, 20, 42, 0.5);
}
.row--relative {
  position: relative;
}
/*==============================
	Header
==============================*/
/* .header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  border-bottom: 2px solid rgba(255,255,255,0.05);
  background: linear-gradient(150deg, #D4F681 0%, #D4F681 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.5s ease;
} */
.header {
  position: fixed; /* 改为fixed确保始终置顶 */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* transition: background 0.5s ease; */
  /* background: #16142a; */
}
/* .header--active {
  background: #16142a;
} */
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; /* 改为flex-start让元素靠左对齐 */
  align-items: center;
  position: relative;
  height: 80px;
  width: 100%;
  padding: 0 5px; /* 添加padding防止内容贴边 */
}
.header__logo {
  z-index: 1;
  height: 40px; /* 减小logo高度 */
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-left: 10px; /* 减小左边距 */
}
.header__logo img {
  height: 40px; /* 减小logo图片高度 */
  width: auto;
}
.header__tagline {
  display: block;
  line-height: 20px;
  color: #383838;
  font-size: 16px; /* 减小字体大小 */
  font-family: '阿里巴巴普惠体 2.0 75 SemiBold', sans-serif;
  margin-right: 10px;
  margin-left: 10px; /* 减小左边距 */
  font-weight: 800;
  white-space: nowrap; /* 防止文字换行 */
}
.header__language {
  position: relative;
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: 30px;
}
.header__language a.dropdown-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  height: 40px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.header__language a.dropdown-link i {
  font-size: 8px;
  margin-left: 5px;
  margin-top: 2px;
}
.header__language a.dropdown-link:hover,
.header__language a.dropdown-link[aria-expanded="true"] {
  color: #5fb651;
}
.header__language-menu {
  position: absolute;
  padding: 20px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 110px;
  text-align: left;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  border-radius: 10px;
  transition: 0.5s ease;
  transition-property: opacity, margin-top, transform;
  top: 0;
  transform: translate3d(0px, 16px, 0px);
  border: 2px solid rgba(255,255,255,0.05);
}
.header__language-menu li {
  position: relative;
  padding: 0;
  margin-bottom: 12px;
}
.header__language-menu li:last-child {
  margin-bottom: 0;
}
.header__language-menu a {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-transform: none;
  font-weight: 400;
}
.header__language-menu a:hover {
  color: #5fb651;
}
.header__language-menu.show {
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
}
.header__nav {
  margin-left: auto; /* 让导航靠右 */
  margin-right: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__nav--active {
  transform: translate3d(0, 0, 0);
}
.header__nav li {
  display: flex; /* 改为flex */
  margin-bottom: 0; /* 移除底部边距 */
  margin-right: 15px; /* 添加右边距 */
}
.header__nav li:last-child {
  margin-right: 0;
}
.header__nav a {
  display: inline-flex;
  flex-direction: row;
  justify-content: center; /* 改为center */
  align-items: center;
  font-size: 14px; /* 减小字体大小 */
  line-height: 24px;
  font-weight: 500;
  padding: 0 10px; /* 减小内边距 */
  color: #383838;
  text-transform: uppercase;
  height: 40px; /* 添加固定高度 */
}
.header__nav a i {
  font-size: 8px;
  margin-left: 5px;
  margin-top: 2px;
}
.header__nav a.dropdown-link--menu {
  height: 24px;
}
.header__nav a.dropdown-link--menu i {
  font-size: 20px;
  margin-left: 0;
}
.header__nav a:hover,
.header__nav a[aria-expanded="true"] {
  color: #5fb651;
}
@media (min-width: 576px) {
  .header__logo {
    margin-left: 0px;
  }
  /* 移除header__nav相关样式 */
}
@media (min-width: 768px) {
  /* 在大屏幕下恢复原来的尺寸 */
  .header__logo {
    height: 50px;
    margin-left: 0px;
  }
  
  .header__logo img {
    height: 50px;
  }
  
  .header__tagline {
    font-family: '阿里巴巴普惠体 2.0 75 SemiBold', sans-serif;
    font-size: 24px;
    line-height: 24px;
    margin-left: 20px;
    margin-right: auto;
  }
  
  .header__nav {
    margin-right: 20px;
  }
  .header__nav a {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .header__nav li {
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  /* 移除header__nav相关样式 */
}
@media (min-width: 1200px) {
  /* 移除header__nav相关样式 */
}
@media (min-width: 1400px) {
  .header:before,
  .header:after {
    content: '';
    position: absolute;
    display: block;
    width: 67px;
    height: 20px;
    top: 30px;
    pointer-events: none;
  }
  .header:before {
    left: 30px;
    background: url("../img/dodgers/screw--header-left.svg") no-repeat center;
  }
  .header:after {
    right: 30px;
    background: url("../img/dodgers/screw--header-right.svg") no-repeat center;
  }
}
/*==============================
	Hero
==============================*/
.hero {
  /* margin-top: 130px; */
  padding: 100px 0 36px;
  background: radial-gradient(97.62% 100% at 50% 100%, #5CC654 0%, #D4F681 94.27%);
}
.hero__title {
  font-size: 36px;
  line-height: 48px;
  text-transform: uppercase;
  color: #241E10;
  font-weight: 500;
  margin-bottom: 0;
}
.hero_sub_title {
  font-size: 36px;
  line-height: 48px;
  text-transform: uppercase;
  color: #241E10;
  font-weight: 500;
  margin-bottom: 0;
}

.hero_sub_title span {
  color: #35AB62;
}
.hero__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #d0d0d0;
  margin-bottom: 16px;
  margin-top: 15px;
}
.hero__text a {
  color: #fff;
  border-bottom: 2px solid #5fb651;
}
.hero__text a:hover {
  border-color: transparent;
}
.hero__text strong,
.hero__text b {
  font-weight: 500;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.hero__content--second {
  margin-top: 60px;
}
@media (min-width: 576px) {
  .hero__title {
    font-size: 28px;
    line-height: 52px;
  }
  .hero_sub_title {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 20px 0 46px;
  }
  .hero__title {
    font-size: 30px;
    line-height: 58px;
  }
  .hero_sub_title {
    font-size: 30px;
  }
  .hero__text {
    font-size: 18px;
    line-height: 30px;
  }
  .hero__content--second {
    margin-top: 70px;
  }
}
@media (min-width: 992px) {
  .hero__content--second {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 130px 0 76px;
  }
  .hero__title {
    font-size: 36px;
    line-height: 60px;
  }
  .hero__content--second {
    margin-top: 0;
  }
}
/*==============================
	Section
==============================*/
.section {
  position: relative;
  padding-bottom: 60px;
}
.section--head {
  margin-top: 80px;
  padding: 60px 0 20px;
}
.section--pb {
  padding-bottom: 26px;
}
.section--content {
  padding: 0;
}
.section__canvas {
  position: absolute;
  top: 0;
  right: 40px;
  left: 40px;
  bottom: -24px;
  width: auto;
  max-width: none;
  padding: 0;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.25;
}
.section__canvas--full {
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 0;
}
.section__tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  border: none;
  margin-bottom: 16px;
  margin-top: 24px;
}
.section__tabs li {
  margin-right: 25px;
}
.section__tabs li:last-child {
  margin-right: 0;
}
.section__tabs button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  /* color: #d0d0d0; */
  position: relative;
  font-size: 15px;
  height: 40px;
  font-weight: 600;
  white-space: nowrap;
}
.section__tabs button:hover {
  color: #fff;
}
.section__tabs button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  display: block;
  background: #5fb651;
  box-shadow: none;
  transition: 0.5s ease;
  border-radius: 3px 3px 0 0;
}
.section__tabs button.active {
  color: #5fb651;
}
.section__tabs button.active:before {
  height: 2px;
}
.section__tabs--big {
  justify-content: flex-start;
}
.section__tabs--left {
  justify-content: flex-start;
  margin-top: 0;
}
.section__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
}
@media (min-width: 414px) {
  .section__tabs button {
    font-size: 16px;
  }
}
@media (min-width: 576px) {
  .section__tabs li {
    margin-right: 30px;
  }
  .section__tabs li:last-child {
    margin-right: 0;
  }
  .section__tabs--big {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .section {
    padding-bottom: 70px;
  }
  .section--head {
    padding: 70px 0 30px;
  }
  .section--pb {
    padding-bottom: 26px;
  }
  .section--content {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .section--head {
    padding: 70px 0 30px;
  }
  .section__canvas {
    top: 50px;
    right: -15px;
    left: -15px;
    bottom: 50px;
  }
  .section__canvas--page {
    top: 74px;
  }
  .section__canvas--full {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .section__tabs-profile {
    position: relative;
  }
  .section__tabs--profile {
    flex-direction: column;
    justify-content: flex-start;
    overflow-x: visible;
    width: 100%;
    margin-bottom: 0;
    margin-top: 24px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.05);
    background: linear-gradient(150deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    padding: 50px 45px;
    z-index: 2;
  }
  .section__tabs--profile li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    margin-bottom: 22px;
    position: relative;
    width: 100%;
  }
  .section__tabs--profile li:before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0.05) 80%, rgba(255,255,255,0) 100%);
  }
  .section__tabs--profile li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  .section__tabs--profile li:last-child:before {
    display: none;
  }
  .section__tabs--profile button {
    padding: 0 14px;
    height: 36px;
  }
  .section__tabs--profile button:before {
    width: 4px;
    height: 4px;
    right: auto;
    bottom: 50%;
    border-radius: 50%;
    left: 0;
    margin-bottom: -2px;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .section__tabs--profile button:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    bottom: 50%;
    border-radius: 50%;
    right: 0;
    margin-bottom: -2px;
    background-color: #5fb651;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .section__tabs--profile button.active:before {
    height: 4px;
  }
  .section__tabs--profile button.active:before,
  .section__tabs--profile button.active:after {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .section {
    padding-top: 30px;
    padding-bottom: 100px;
  }
  .section--head {
    padding: 70px 0 30px;
  }
  .section--pb {
    padding-bottom: 26px;
  }
  .section--content {
    padding: 0;
  }
  .section__tabs li {
    margin-right: 44px;
  }
  .section__tabs li:last-child {
    margin-right: 0;
  }
  .section__tabs--profile li {
    margin-right: 0;
  }
}
/*==============================
	CTA
==============================*/
.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 25px 10px 10px 10px;
  border: 2px solid rgba(255,255,255,0.05);
  background: linear-gradient(150deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  padding: 50px 60px;
  transition: 0.5s ease;
  transition-property: border-color;
}
.cta__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
}
.cta__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #d0d0d0;
  margin-bottom: 0;
  text-align: center;
}
.cta__text b,
.cta__text strong {
  color: #fff;
  font-weight: 500;
}
.cta .progressbar {
  margin-top: 30px;
}
.cta:hover {
  border-color: rgba(104,165,95,0.2);
}

/*==============================
	Roadmap
==============================*/
.roadmap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 25px 10px 10px 10px;
  border: 2px solid rgba(255,255,255,0.05);
  background: linear-gradient(150deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  padding: 50px 60px;
  z-index: 2;
}
.roadmap__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}
.roadmap__carousel {
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.roadmap__block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.roadmap__block:before {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  left: 0;
  top: 55px;
  border: 3px solid rgba(255,255,255,0.2);
  z-index: 1;
}
.roadmap__block:after {
  content: '';
  position: absolute;
  display: block;
  top: 62px;
  left: 26px;
  right: 0;
  background-color: rgba(255,255,255,0.2);
  height: 2px;
  border-radius: 2px;
}
.roadmap__block--active:before {
  border-color: #4399fc;
}
.roadmap__block--active .roadmap__block-list li:before {
  background-color: #4399fc;
}
.roadmap__block-title {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  display: block;
  margin-bottom: 66px;
}
.roadmap__block-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.roadmap__block-list li {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  padding-left: 16px;
  position: relative;
}
.roadmap__block-list li:last-child {
  margin-bottom: 0;
}
.roadmap__block-list li:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  opacity: 1;
  top: 11px;
  left: 0;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .roadmap__title {
    font-size: 32px;
    line-height: 42px;
  }
  .roadmap__block-list {
    padding-right: 15px;
  }
}
/*==============================
	Accordion
==============================*/
.accordion__card {
  margin-top: 15px;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1); /* 添加底部分割线 */
  padding-bottom: 15px; /* 添加底部内边距 */
}

.accordion__card button {
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* 改为两端对齐 */
  align-items: center;
  width: 100%;
  background: transparent;
  min-height: 50px;
  padding: 10px 20px; /* 减小内边距 */
  color: #383838;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: left; /* 改为左对齐 */
  position: relative;
}

/* 添加+号 */
.accordion__card button:after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 30px;
  color: #383838;
  transition: transform 0.3s ease;
}

/* 展开时变成-号 */
.accordion__card button[aria-expanded="true"]:after {
  content: '-';
  font-size: 30px;
}

.accordion__card p {
  padding: 10px 24px 0;
  color: #666;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  text-align: left;
}
.accordion__card p b {
  font-weight: 500;
}

/*==============================
	Footer
==============================*/
.footer {
  border-top: 2px solid rgba(255,255,255,0.05);
  background: linear-gradient(150deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.footer__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 0px;
}
.footer__logo img {
  width: auto;
  height: 50px;
  display: block;
}
.footer__logo h2 {
  margin: 0;
  margin-left: 15px; /* 添加左边距，与logo图片保持间距 */
  color: #383838;
  font-size: 24px;
  font-weight: 500;
}
.footer__tagline {
  margin-top: 20px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #d0d0d0;
  margin-bottom: 0;
}
.footer__currencies {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.footer__currencies i {
  font-size: 24px;
  margin-right: 20px;
  color: rgba(255,255,255,0.25);
}
.footer__currencies i:last-child {
  margin-right: 0;
}
.footer__title {
  display: block;
  margin-top: 0px;
  font-size: 16px;
  line-height: 26px;
  color: #383838;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__nav a {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px;
  color: #383838;
  font-weight: 400;
  text-decoration: none;
  display: block;
}
.footer__nav a:hover {
  color: #5fb651;
}
.footer__content {
  position: relative;
  margin-top: 0px;
  padding: 10px 0 30px;
}
.footer__content:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0.05) 80%, rgba(255,255,255,0) 100%);
}
.footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.footer__social a {
  height: 20px;
  width: 20px;
  margin-top: 20px;
  margin-right: 20px;
  position: relative;
  color: #d0d0d0;
}
.footer__social a i {
  font-size: 20px;
  transition: color 0.5s ease;
}
.footer__social a:last-child {
  margin-right: 0;
}
.footer__social a:hover i {
  color: #5fb651;
}
.footer__copyright {
  display: block;
  font-size: 14px;
  color: #d0d0d0;
  margin-top: 30px;
  font-weight: 400;
}
.footer__copyright a {
  color: #d0d0d0;
}
.footer__copyright a:hover {
  color: #5fb651;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 20px;
  }
  .footer__content {
    margin-top: 70px;
    padding: 0;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .footer__logo {
    margin-top: 0px;
  }
  .footer__title {
    margin-top: 0px;
  }
  .footer__social {
    display: inline-flex;
    width: auto;
    order: 2;
  }
  .footer__social a {
    margin-top: 0;
  }
  .footer__copyright {
    margin-top: 0;
    order: 1;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding-top: 50px;
  }
  .footer__content {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  .footer:before {
    content: '';
    position: absolute;
    bottom: 101px;
    left: 70px;
    right: 70px;
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0.05) 80%, rgba(255,255,255,0) 100%);
  }
  .footer__content:before {
    display: none;
  }
}
/*==============================
	Animation
==============================*/
@-webkit-keyframes mini-chart {
  0% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
  50% {
    -webkit-transform: translateX(45%) scaleX(1.5);
    transform: translateX(45%) scaleX(1.5);
  }
  100% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
}
@-moz-keyframes mini-chart {
  0% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
  50% {
    -webkit-transform: translateX(45%) scaleX(1.5);
    transform: translateX(45%) scaleX(1.5);
  }
  100% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
}
@-webkit-keyframes mini-chart {
  0% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
  50% {
    -webkit-transform: translateX(45%) scaleX(1.5);
    transform: translateX(45%) scaleX(1.5);
  }
  100% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
}
@-o-keyframes mini-chart {
  0% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
  50% {
    -webkit-transform: translateX(45%) scaleX(1.5);
    transform: translateX(45%) scaleX(1.5);
  }
  100% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
}
@keyframes mini-chart {
  0% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
  50% {
    -webkit-transform: translateX(45%) scaleX(1.5);
    transform: translateX(45%) scaleX(1.5);
  }
  100% {
    -webkit-transform: translateX(5%) scaleX(1.5);
    transform: translateX(5%) scaleX(1.5);
  }
}

.hero__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin-top: 50px; /* 在小屏幕上与上方内容保持间距 */
}

@media (min-width: 768px) {
  .hero__image {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .hero__image {
    max-width: 100%; /* 在大屏幕上稍微缩小一点 */
  }
}

/* 产品特色样式 */
.service-section {
  position: relative;
  padding-bottom: 60px;
  background-image: url('../img/service_back.png');
  background-size: 100% auto; /* 修改为宽度100%，高度自适应 */
  background-position: left bottom; /* 修改为左下对齐 */
  background-repeat: no-repeat;
  width: 100%;
  overflow: hidden; /* 添加overflow防止图片溢出 */
}

/* 在大屏幕下调整背景图尺寸 */
@media (min-width: 1200px) {
  .service-section {
    background-size: 100% auto; /* 保持宽度100% */
    padding-bottom: 80px; /* 增加底部间距 */
  }
}

/* 在小屏幕下调整 */
@media (max-width: 768px) {
  .service-section {
    padding-bottom: 40px;
    background-image: none; /* 小屏幕下不显示背景图 */
  }
}

/* 产品特色样式 */
.product-section {
  position: relative;
  /* padding: 100px 0; */
  padding: 100px 0 30px 0;
  background-image: url('../img/product_back.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  overflow: hidden; /* 添加overflow防止图片溢出 */
}

/* 添加装饰图样式 */
.product-section > img {
  position: absolute;
  left: 10px;
  top: 0;
  width: 120px; /* 固定宽度为44px */
  height: auto; /* 高度自动适应保持比例 */
  z-index: 1;
  pointer-events: none;
}

/* 在大屏幕下保持相同大小 */
@media (min-width: 1200px) {
  .product-section > img {
    width: 120px; /* 保持宽度一致 */
  }
}

/* 在小屏幕下隐藏装饰图 */
@media (max-width: 768px) {
  .product-section > img {
    display: none;
  }
}

.service-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
}

.service-feature__img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-feature__text {
    font-size: 22px;
    color: #241E10;
    font-weight: 500;
    margin: 0;
}

.service-feature__screenshot-img {
  width: 200px;
  height: 416px;
  margin-bottom: 15px;
  object-fit: contain;
}

.service-feature__screenshot-text {
  font-size: 22px;
  color: #241E10;
  font-weight: 500;
  margin: 0;
}

.service-feature__screenshot-detail-text {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  margin-top: 15px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-feature {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .service-feature__img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    
    .service-feature__text {
        font-size: 20px;
    }

    .service-feature__screenshot-img {
      width: 150px;
      height: 312px;
      margin-bottom: 10px;
    }
  
    .service-feature__screenshot-text {
      font-size: 18px;
    }
}

#faq {
  scroll-margin-top: 100px; /* header高度加一些额外空间 */
}

/* 在小屏幕下调整间距 */
@media (max-width: 768px) {
  .footer__nav {
    margin-bottom: 30px;
  }
  
  .footer__title {
    margin-top: 20px;
  }
}

.footer__nav div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
}

.footer__nav div p {
  margin: 0;
  margin-left: 5px;
}

/* 添加悬浮客服图标样式 */
.floating-service {
  position: fixed;
  right: 15px;
  bottom: 100px;
  z-index: 999;
  cursor: pointer;
  animation: bounce 2s infinite; /* 添加弹跳动画 */
}

.floating-service:hover {
  animation-play-state: paused; /* 悬停时暂停动画 */
  transform: scale(1.1);
}

.floating-service__icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* 添加呼吸光效果 */
.floating-service::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(95, 182, 81, 0.2);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

/* 定义弹跳动画 */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* 定义呼吸光效果动画 */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* 在小屏幕上调整大小和位置 */
@media (max-width: 768px) {
  .floating-service {
    right: 15px;
    bottom: 15px;
  }
  
  .floating-service__icon {
    width: 50px;
    height: 50px;
  }
}

.service-section-title-img {
  width: 70%; /* 默认宽度70% */
  height: auto;
  display: block;
  margin-top: 100px;
  margin-bottom: 60px;
  margin-left: auto; /* 添加左右margin为auto实现居中 */
  margin-right: auto;
}

/* 在小屏幕下调整 */
@media (max-width: 768px) {
  .service-section-title-img {
    width: 90%; /* 小屏幕下宽度90% */
    margin-top: 40px;
    margin-bottom: 30px;
    margin-left: auto; /* 小屏幕下也保持居中 */
    margin-right: auto;
  }
}

.qa-section-title-img {
  width: 23%; /* 默认宽度70% */
  height: auto;
  display: block;
  margin-top: 50px;
  margin-bottom: 30px;
  margin-left: auto; /* 添加左右margin为auto实现居中 */
  margin-right: auto;
}

/* 在小屏幕下调整 */
@media (max-width: 768px) {
  .qa-section-title-img {
    width: 50%; /* 小屏幕下宽度90% */
    margin-top: 35px;
    margin-bottom: 10px;
    margin-left: auto; /* 小屏幕下也保持居中 */
    margin-right: auto;
  }
}

.hero__content img:first-of-type {
  width: 120px; /* 二维码图片宽度 */
  height: 120px; /* 保持正方形 */
  border-radius: 12px; /* 添加圆角 */
  margin-top: 30px; /* 与上方文字的间距 */
  margin-bottom: 5px; /* 与下方按钮的间距 */
  display: block;
}

.hero__content img:last-of-type {
  width: 120px; /* 下载按钮宽度 */
  height: auto; /* 高度自适应 */
  display: block;
}

/* 在小屏幕下调整大小 */
@media (max-width: 768px) {
  .hero__content img:first-of-type {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-bottom: 5px;
  }

  .hero__content img:last-of-type {
    width: 100px;
  }
}
