.site-main {
  z-index: 1;
  margin-top: -140px;
}
.site-header {
  margin-top: 36px;
  background: unset;
  position: relative;
  z-index: 100;
}
.hero-bg {
  position: absolute;
  top: 20px;
  left: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  margin: 20px;
  z-index: -1;
  border-radius: 70px;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section {
  padding: 170px 0 70px;
  position: relative;
}
.hero-container {
  text-align: center;
}
.hero-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: #1e222b;
}
.hero-desc {
  max-width: 924px;
  margin: 32px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: #3C3C3C;
}
.hero-search {
  margin: 30px auto 0;
  max-width: 924px;
  height: 58px;
  border-radius: 141px;
  background: #FFF;
  box-shadow: 0 4px 27.2px 0 rgba(115, 90, 181, 0.26);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 7px 7px 7px 20px;
}
.hero-search input {
  flex: 1;
  border: 0;
  font-size: 18px;
  color: #4c5567;
}
.hero-search input::placeholder {
  color: #9ba3b1;
}
.hero-search-btn {
  position: relative;
  min-width: 150px;
  height: 45px;
  border: 2px solid transparent;
  border-radius: 141px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #7fb8f0, #b09ff0, #e0b0ed, #f2a0b5) border-box;
  color: #2A2A2A;
  font-size: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 3px 10px rgba(160, 140, 220, 0.14);
}
.hero-search-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(127, 184, 240, 0.38), rgba(176, 159, 240, 0.38), rgba(224, 176, 237, 0.38), rgba(242, 160, 181, 0.38), rgba(224, 176, 237, 0.38), rgba(176, 159, 240, 0.38), rgba(127, 184, 240, 0.38));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.hero-search-btn:hover::before {
  opacity: 1;
  animation: heroSearchFlow 4s linear infinite;
}
.hero-search-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(160, 140, 220, 0.24);
}
.hero-search-btn:active {
  transform: scale(0.98);
}
.hero-search-btn-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
}
.hero-search-btn img {
  display: block;
}
.hero-search-error {
  margin: 8px auto 0;
  max-width: 924px;
  text-align: left;
  color: #e54b4b;
  font-size: 13px;
  line-height: 1.4;
  display: none;
}
.hero-search-error.is-visible {
  display: block;
}
@keyframes heroSearchFlow {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: -200% 0%;
  }
}
.hero-popular-wrap {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-popular-label {
  font-size: 14px;
  color: #596276;
}
.hero-popular-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-popular-list a {
  padding: 5px 10px;
  font-size: 14px;
  color: #3C3C3C;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.hero-popular-list a:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero-feature-list {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 33px;
}
.hero-feature-item {
  border-radius: 12px;
  border: 1px solid #ffffff6b;
  background: linear-gradient(103deg, rgba(255, 255, 255, 0.68) 11.5%, rgba(255, 255, 255, 0.37) 94.47%);
  box-shadow: 0 4px 27.2px 0 rgba(115, 90, 181, 0.26);
  backdrop-filter: blur(2px);
  padding: 18px;
  text-align: left;
}
.hero-feature-item img {
  display: block;
}
.hero-feature-item div {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: #2F2F2F;
  margin-top: 8px;
}
@media (max-width: 820px) {
  .hero-title {
    font-size: 48px;
  }
  .site-header {
    margin-top: 0px;
    background: #fff;
  }
  .hero-bg {
    top: 0;
    display: none;
  }
  .site-main {
    margin: 0 auto;
  }
  .hero-section {
    background: url(/uploads/page/index/bg-mb.png) no-repeat center center;
    background-size: cover;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 50px 0;
  }
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
  }
  .hero-search {
    margin-top: 23px;
    height: 46px;
    padding: 6px 6px 6px 16px;
  }
  .hero-search input {
    font-size: 12px;
  }
  .hero-search-btn {
    min-width: 100px;
    height: 34px;
    font-size: 13px;
  }
  .hero-search-btn-inner {
    gap: 5px;
    padding: 0 12px;
  }
  .hero-search-btn img {
    width: 12px;
    height: 12px;
  }
  .hero-search-error {
    margin-top: 6px;
    font-size: 12px;
  }
  .hero-popular-wrap {
    margin-top: 20px;
    justify-content: flex-start;
  }
  .hero-popular-label {
    font-size: 11px;
    text-align: left;
  }
  .hero-popular-list {
    gap: 8px;
  }
  .hero-popular-list a {
    font-size: 11px;
    padding: 4px 8px;
  }
  .hero-feature-list {
    margin: 40px auto 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-feature-item {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 0 12px;
    border-radius: 12px;
    gap: 20px;
  }
  .hero-feature-item img {
    width: 53px;
    margin-top: -8px;
  }
  .hero-feature-item div {
    font-size: 16px;
    margin-top: 0;
  }
}
.hero-section-2 {
  background: #fff;
  margin-top: 120px;
}
.hero-section-2-title {
  margin: 0;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #061C3D;
}
.platform-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
}
.platform-card {
  min-height: 128px;
  padding: 22px 25px;
  border: 1px solid #E6E6E6;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.platform-card img {
  display: block;
}
.platform-card span {
  font-size: 18px;
  line-height: 1.2;
  color: #454545;
}
.platform-card.is-active,
.platform-card:hover {
  border-color: #0059FF;
  background: #F4F8FF;
}
.more-platforms {
  margin: 25px 0 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: #505050;
}
.more-platforms span {
  margin-right: 10px;
}
.more-platforms a {
  margin-right: 30px;
  color: #007BFF;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.more-platforms a:hover {
  color: #0059FF;
}
.more-platforms a:last-child {
  margin-right: 0;
}
@media (max-width: 600px) {
  .hero-section-2 {
    margin-top: 70px;
  }
  .hero-section-2-title {
    font-size: 30px;
  }
  .platform-list {
    margin: 30px auto 0;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 273px;
  }
  .more-platforms {
    margin-top: 23px;
    text-align: left;
    font-size: 15px;
  }
  .more-platforms span {
    display: block;
    margin: 0 0 4px;
  }
  .more-platforms a {
    margin-right: 25px;
  }
}
.hero-section-3 {
  margin-top: 120px;
  background: #F4F6FF;
  padding: 120px 0;
}
.hero-section-3-title {
  margin: 0;
  text-align: center;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #061C3D;
}
.hero-section-3-desc {
  margin: 20px 0 0;
  text-align: center;
  font-size: 20px;
  color: #061C3D;
}
.top-pick-content {
  padding: 26px;
}
.top-pick-card {
  border-radius: 12px;
  border: 1px solid #acbae669;
  background: #FFF;
}
.top-pick-thumb-wrap {
  border-radius: 6px;
  overflow: hidden;
}
.section3-img,
.section3-img1 {
  display: block;
  width: 100%;
  height: auto;
}
.top-pick-title {
  font-size: 18px;
  line-height: 1.35;
  color: #1f2f4f;
  font-weight: 500;
}
.top-pick-card p {
  margin: 10px 0 0;
  color: #454545;
  line-height: 180%;
  font-size: 18px;
}
.top-pick-btn {
  margin-top: 15px;
  min-width: 200px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 6px;
  background: #007BFF;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}
.top-pick-btn .iconfont {
  transition: all 0.3s ease;
}
.top-pick-btn:hover {
  background: #0059FF;
}
.top-pick-btn:hover .iconfont {
  transform: translateX(8px);
}
.top-picks-carousel {
  display: block;
  margin-top: 30px;
}
.top-picks-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.top-picks-track .swiper-slide {
  width: auto;
  margin-right: 0;
}
.top-picks-dots {
  margin-top: 10px;
  display: none;
}
.top-picks-dots .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 4px;
  background: #8aa9e0;
  opacity: 0.35;
}
.top-picks-dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1c7bf3;
}
@media (max-width: 600px) {
  .hero-section-3 {
    margin-top: 60px;
    padding: 60px 0;
  }
  .hero-section-3-title {
    font-size: 30px;
  }
  .hero-section-3-desc {
    margin-top: 12px;
    font-size: 16px;
    line-height: 180%;
  }
  .top-picks-carousel {
    margin-top: 14px;
    padding-bottom: 50px;
  }
  .top-picks-track {
    display: flex;
    gap: 0;
    align-items: stretch;
  }
  .top-picks-carousel .top-pick-card {
    min-height: 0;
  }
  .top-picks-dots {
    display: block;
  }
  .top-pick-title {
    font-size: 16px;
  }
  .top-pick-card p {
    font-size: 16px;
  }
  .top-pick-content {
    padding: 30px 13px;
  }
  .top-pick-btn {
    margin-top: 10px;
  }
}
.hero-section-4 {
  background: #fff;
  margin-top: 150px;
}
.hero-section-5 {
  background: #fff;
  margin-top: 130px;
}
.hero-section-5-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 415px;
  gap: 130px;
  align-items: start;
}
.how-test-left {
  min-width: 0;
}
.hero-section-5-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}
.hero-section-5-desc {
  margin: 15px 0 0;
  color: #454545;
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
}
.how-test-steps {
  display: flex;
  gap: 34px;
  margin: 16px auto 22px;
}
.how-test-steps span {
  min-width: 80px;
  height: 28px;
  border-radius: 31px;
  background: linear-gradient(180deg, #D8E7FF 0%, #B3D8FF 100%), linear-gradient(180deg, #83B5FF 0%, #007BFF 100%), #D9D9D9;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.how-test-steps .is-active {
  background: linear-gradient(180deg, #83B5FF 0%, #007BFF 100%), #D9D9D9;
}
.how-test-step-tip {
  font-size: 16px;
  color: #454545;
  text-align: center;
  margin-bottom: 22px;
}
.how-test-step-tip span {
  font-weight: 500;
}
.how-test-swiper {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
}
.how-test-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.how-test-pagination {
  display: none;
  margin-top: 10px;
}
.how-test-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 4px !important;
  background: #8aa9e0;
  opacity: 0.35;
}
.how-test-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1c7bf3;
}
.how-test-right {
  padding-left: 24px;
}
.how-test-item {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 27px 20px;
}
.how-test-item {
  border-bottom: 1px solid #edf1f7;
}
.how-test-item-title {
  color: #061C3D;
  font-size: 18px;
  line-height: 1.35;
}
.how-test-item p {
  margin: 2px 0 0;
  color: #007BFF;
  font-size: 16px;
  line-height: 1.45;
}
@media (max-width: 600px) {
  .hero-section-5 {
    margin-top: 60px;
  }
  .hero-section-5-container {
    display: block;
  }
  .hero-section-5-title {
    text-align: center;
    font-size: 30px;
  }
  .hero-section-5-desc {
    text-align: center;
    font-size: 16px;
    margin-top: 12px;
  }
  .how-test-steps {
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 32px;
  }
  .how-test-steps img {
    display: none;
  }
  .how-test-steps span {
    min-width: 66px;
    height: 22px;
    font-size: 14px;
  }
  .how-test-step-tip {
    display: none;
  }
  .how-test-swiper {
    margin-top: 10px;
    border-radius: 10px;
    padding-bottom: 40px;
  }
  .how-test-pagination {
    display: block;
  }
  .how-test-right {
    margin-top: 16px;
    border-left: 0;
    padding-left: 0;
  }
  .how-test-item {
    padding: 22px 16px;
  }
  .how-test-item-title {
    font-size: 15px;
  }
  .how-test-item p {
    font-size: 14px;
  }
}
.hero-section-4-title {
  margin: 0;
  text-align: center;
  color: #061c3d;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}
.hero-section-4-desc {
  margin: 25px 0 0;
  text-align: center;
  color: #061C3D;
  font-size: 20px;
}
.review-cards-swiper {
  margin-top: 30px;
}
.review-cards-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.review-card {
  border-radius: 12px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  padding: 24px 6px 24px 16px;
}
.review-card-name {
  color: #454545;
  font-size: 15px;
  font-weight: 500;
}
.review-card-rating-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-stars {
  color: #717171;
  font-size: 14px;
  width: auto;
  display: block;
}
.review-card-rating-row span {
  color: #5b6880;
  font-size: 11px;
}
.review-card p {
  color: #454545;
  font-size: 14px;
  line-height: 170%;
  /* 23.8px */
  margin: 14px 0 0;
  min-height: 72px;
}
.review-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.review-tags-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 22px;
  background: #F6F6F6;
  color: #8B96A4;
  font-size: 14px;
}
.review-tags span .iconfont {
  font-size: 10px;
  line-height: 1;
  color: #5c8fff;
}
.review-card-link {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #007bff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.review-card-link .iconfont {
  transition: all 0.3s ease;
}
.review-card-link:hover {
  color: #0059FF;
}
.review-card-link:hover .iconfont {
  transform: translateX(8px);
}
.review-cards-dots {
  display: none;
  margin-top: 12px;
}
.review-cards-dots .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 4px !important;
  background: #8aa9e0;
  opacity: 0.35;
}
.review-cards-dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1c7bf3;
}
@media (max-width: 600px) {
  .hero-section-4 {
    margin-top: 82px;
  }
  .hero-section-4-title {
    font-size: 30px;
    line-height: 1.2;
  }
  .hero-section-4-desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8;
  }
  .review-cards-swiper {
    width: 280px;
    margin: 30px auto 0;
    padding-bottom: 50px;
  }
  .review-cards-track {
    display: flex;
    gap: 0;
  }
  .review-cards-dots {
    display: block;
  }
}
.hero-section-6 {
  margin-top: 130px;
  padding: 100px 0;
  background: url(/uploads/page/index/bottom-bg.webp) no-repeat center center;
  background-size: cover;
}
.hero-section-6-container {
  text-align: center;
}
.hero-section-6-title {
  margin: 0;
  color: #061c3d;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}
.hero-section-6-desc {
  margin: 17px 0 0;
  color: #3e4e68;
  font-size: 20px;
}
.hero-section-6-note {
  margin-top: 27px;
  padding: 30px 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 4px 39.9px 0 rgba(95, 77, 168, 0.28);
  color: #454545;
  font-size: 20px;
  line-height: 1.8;
}
.hero-section-6-note span {
  font-weight: 500;
}
@media (max-width: 600px) {
  .hero-section-6 {
    margin-top: 80px;
    padding: 75px 0;
  }
  .hero-section-6-title {
    font-size: 30px;
    padding: 0 20px;
  }
  .hero-section-6-desc {
    color: #061C3D;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    margin-top: 10px;
    /* 28.8px */
  }
  .hero-section-6-note {
    margin-top: 12px;
    padding: 22px;
    font-size: 16px;
    line-height: 1.65;
  }
}
