@import '../css/animate.min.css';

.header-bar {
  background: #fff;
}

.header-bar-row {
  height: 104px;
  transition: height 0.3s;
}

.header-bar-logo img {
  height: 40px;
  width: 40px;
}

.header-bar-login-btn {
  height: 44px;
  line-height: 28px;
}

@media (max-width: 767.98px) {
  .header-bar-row {
    height: 56px;
    padding: 0 8px;
  }

  .header-bar-logo img {
    height: 32px;
    width: 32px;
  }

  .header-bar-login-btn {
    height: 36px;
    line-height: 16px;
    font-size: 15px;
    padding: 0 18px;
  }
}

/* 移动端抽屉菜单 */
.header-bar-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1050;
  pointer-events: none;
  transition: all 0.3s;
}

.header-bar-drawer-content {
  position: absolute;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
  transition: left 0.3s;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.header-bar-drawer.show {
  pointer-events: auto;
}

.header-bar-drawer.show .header-bar-drawer-content {
  left: 0;
}

.header-bar-drawer-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.header-bar-drawer.show .header-bar-drawer-mask {
  opacity: 1;
}

.header-bar-drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #333;
  align-self: flex-end;
  margin: 12px 12px 0 0;
  cursor: pointer;
}

@media (min-width: 768px) {

  .header-bar-menu-btn,
  .header-bar-drawer {
    display: none !important;
  }
}

.home-hero-section-title {
  line-height: 68px;
  color: #0A1425;
}

.home-hero-section-badge {
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.home-hero-section-desc {
  color: #64728F;
  line-height: 1.8;
}

.home-hero-section-img {
  /* 让图片在小屏下自适应 */
  max-width: 100%;
  height: auto;
}

.home-hero-section-left .badge {
  height: 40px;
  border-radius: 30px;
  line-height: 23px;
}


@media (max-width: 767.98px) {
  .home-hero-section-title {
    font-size: 22px;
  }

  .home-hero-section-img {
    max-width: 90vw;
  }

  .home-hero-section-left {
    text-align: center;
    line-height: 30px;
  }
}

.attendance-problem-section-title {
  letter-spacing: 1px;
}

.attendance-problem-section-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.attendance-problem-section-card {
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  transition: box-shadow 0.2s;
}

.attendance-problem-section-card:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.10);
}

.attendance-problem-section-card img {
  width: 78px;
}

@media (max-width: 767.98px) {
  .attendance-problem-section-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .attendance-problem-section-title {
    font-size: 22px;
  }
}

.attendance-feature-section-title {
  letter-spacing: 1px;
}

.attendance-feature-section-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.attendance-feature-section-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #E5E7EB;
  padding: 0;
  margin-bottom: 2rem;
}

.attendance-feature-section-tabs .nav-item {
  text-align: center;
  margin: 0;
}

.attendance-feature-section-tabs .nav-link {
  border: none;
  background: none;
  background-color: transparent !important;
  color: #222;
  border-radius: 0;
  margin: 0;
  padding: 16px 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}

.attendance-feature-section-tabs .nav-link.active {
  color: #6366F1 !important;
}

.attendance-feature-section-tabs .nav-link.active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #0A1425;
  border-radius: 2px;
}

.attendance-feature-section-tabs .nav-link i {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.attendance-feature-section-content {
  margin-top: 45px;
}

.attendance-feature-section-list {
  list-style: none;
  padding-left: 0;
}

.attendance-feature-section-list li {
  position: relative;
  margin-bottom: 10px;
}

.attendance-feature-section-list li img {
  margin-right: 2px;
  width: 24px;
  height: 24px;
}

.attendance-feature-section-tabs img {
  width: 64px;
  margin-right: 10px;
}

.attendance-feature-section-tabs img.no-active {
  display: block;
}

.attendance-feature-section-tabs img.active {
  display: none;
}

.attendance-feature-section-tabs .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.attendance-feature-section-tabs .nav-link.active img.no-active {
  display: none;
}

.attendance-feature-section-tabs .nav-link.active img.active {
  display: block;
}


@media (max-width: 767.98px) {
  .attendance-feature-section-title {
    font-size: 22px;
  }

  .attendance-feature-section-content {
    margin-top: 16px;
  }

  .attendance-feature-section-tabs .nav-link {
    font-size: 16px;
    padding: 10px 0 8px 0;
  }
}


.attendance-feature-section-content a.btn {
  width: 138px;
  height: 51px;
  line-height: 33px;
  border-radius: 8px;
}

.attendance-miniapp-section-right {
  min-height: 480px;
}

.attendance-miniapp-img-main {
  position: relative;
  margin: 0 auto;
}

.attendance-miniapp-img-main .animate-main {
  width: 100%;
  z-index: 1;
  position: relative;
}

.attendance-miniapp-img-main .animate-img {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
}

.attendance-miniapp-img-main .animate-img-2 {
  left: 64%;
  top: 15%;
  width: 209px;
}

.attendance-miniapp-img-main .animate-img-3 {
  left: 0;
  top: 327px;
  width: 200px;
}

.attendance-miniapp-img-main .animate-img-4 {
  right: 50px;
  top: 551px;
  width: 270px;
}

.attendance-miniapp-section-feature-icon img {
  width: 50px;
  height: 50px;
}

@media (max-width: 991.98px) {
  .attendance-miniapp-img-main {
    width: 90vw;
    height: auto;
    min-width: 260px;
  }

  .attendance-miniapp-section-right {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .attendance-miniapp-img-main {
    width: 100vw;
    min-width: 180px;
  }

  .attendance-miniapp-section-right {
    min-height: 220px;
  }
}

/* 浮动动画 */
@keyframes floatUp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(24px);
  }

  100% {
    transform: translateY(0);
  }
}

.float-up {
  animation: floatUp 3.2s ease-in-out infinite;
}

.float-down {
  animation: floatDown 3.2s ease-in-out infinite;
}

.quick-start-section {
  background: #F9FAFF;
}

.quick-start-section-title {
  letter-spacing: 1px;
}

.quick-start-section-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}



.quick-start-section-step-num {
  width: 64px;
  height: 64px;
  background: #EEF2FF;
  color: #6366F1;
  font-size: 20px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.quick-start-section-steps .col-md-3:not(:last-child) .quick-start-section-step-num::after {
  content: '';
  position: absolute;
  right: -267px;
  top: 50%;
  width: 268px;
  height: 1px;
  background: #DCDEE2;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 991.98px) {
  .quick-start-section-steps {
    border-top: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .quick-start-section-step-num {
    margin-bottom: 0.5rem;
  }

  .quick-start-section-steps .col-md-3:not(:last-child) .quick-start-section-step-num::after {
    display: none;
  }
}

.industry-solution-section-title {
  letter-spacing: 1px;
}

.industry-solution-section-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.industry-solution-section-card {
  background: #EAEFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  transition: box-shadow 0.2s;
  border: none;
}

.industry-solution-section-card:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.10);
}

.industry-solution-section-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.industry-solution-section-icon img {
  width: 100%;
  height: 100%;
}


@media (max-width: 991.98px) {
  .industry-solution-section-card {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .industry-solution-section-title {
    font-size: 22px;
  }

  .industry-solution-section-card {
    min-height: 0;
  }
}

.customer-feedback-section-title {
  letter-spacing: 1px;
}

.customer-feedback-section-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.customer-feedback-card {
  min-height: 320px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  transition: box-shadow 0.2s;
  border: 1px solid #E5E7EB;
}

.customer-feedback-card:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.10);
}

.star {
  color: #FFD600;
  letter-spacing: 2px;
}

.colorFFD600 {
  color: #FFD600;
}

.swiper.customer-feedback-swiper {
  padding-bottom: 40px;
}

.swiper-button-prev.customer-feedback-swiper-prev,
.swiper-button-next.customer-feedback-swiper-next {
  position: absolute;
  color: #6366F1;
  top: 35%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.swiper-button-prev.customer-feedback-swiper-prev {
  left: -60px;
}

.swiper-button-next.customer-feedback-swiper-next {
  right: -60px;
}



@media (max-width: 991.98px) {
  .customer-feedback-card {
    min-height: 0;
  }

  .swiper-button-prev.customer-feedback-swiper-prev,
  .swiper-button-next.customer-feedback-swiper-next {
    display: none;
  }
}

.customer-feedback-card .lineHeight23 {
  height: 97px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.why-choose-section-title {
  letter-spacing: 1px;
}

.why-choose-section-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-section-card {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  transition: box-shadow 0.2s;
  background: #fff;
}

.why-choose-section-card:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.10);
}

.why-choose-section-icon {
  width: 100%;
  height: 60px;
  margin-bottom: 1rem;
  text-align: left;
}

.why-choose-section-icon img {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.why-choose-section-card .lineHeight20 {
  height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}


@media (max-width: 991.98px) {
  .why-choose-section-card {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .why-choose-section-title {
    font-size: 22px;
  }

  .why-choose-section-card {
    min-height: 0;
  }
}

.faq-section {
  background: #F9FAFF;
}

.faq-accordion {
  border-radius: 16px;
  padding: 32px 24px;
}

.faq-item+.faq-item {
  border-top: 1px solid #E5E7EB;
}

.faq-question {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-item.active .faq-question {
  color: #6366F1 !important;
}

.faq-answer {
  display: none;
  padding-bottom: 18px;
  padding-left: 2px;
  padding-right: 2px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s;
  border-bottom: 1px solid #6366F1;
}

.faq-toggle-icon {
  font-size: 28px;
  transition: transform 0.2s;
  font-weight: 400;
  color: #64728F;
}

.faq-item:not(.active) .faq-toggle-icon {
  transform: rotate(0deg);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: #6366F1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .faq-accordion {
    padding: 18px 8px;
  }
}

.pricing-section-title {
  letter-spacing: 1px;
}

.pricing-section-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  transition: box-shadow 0.2s;
  background: #fff;
  min-height: 420px;
}

.pricing-card:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.10);
}

.pricing-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pricing-feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-feature-list i {
  font-size: 20px;
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .pricing-card {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .pricing-section-title {
    font-size: 22px;
  }

  .pricing-card {
    min-height: 0;
  }
}

.download-client-section-title {
  letter-spacing: 1px;
}

.download-client-section-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-client-card {
  position: relative;
  border-radius: 12px;
  box-shadow: 0px 2px 16px 0px rgba(28, 76, 186, 0.08);
  border: 1px solid rgba(229, 231, 235, 1);
  transition: box-shadow 0.2s;
  background: #fff;
  height: 250px;
  width: 250px;
  margin: 0 auto;
}

.download-client-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.download-client-card .no-hover {
  display: block;
}

.download-client-card .download-client-card-hover {
  display: none;
}

.download-client-card:hover .no-hover {
  display: none;
}

.download-client-card:hover .download-client-card-hover {
  display: block;
}


.download-client-card:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.10);
}

@media (max-width: 991.98px) {
  .download-client-card {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .download-client-section-title {
    font-size: 22px;
  }

  .download-client-card {
    min-height: 0;
  }
}

.banner-section-inner {
  position: relative;
  min-height: 389px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  padding: 0 0 0 72px;
  background: url('/app/templates/default/assets/images/index/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-section-content,
.banner-section-img {
  z-index: 1;
}

.banner-section-img {
  position: absolute;
  right: 50px;
  width: 601px;
  top: 18px;
}

.banner-section-img img {
  width: 100%;
}

@media (max-width: 991.98px) {
  .banner-section-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 12px;
    border-radius: 18px;
    background-position: right top;
    background-size: cover;
  }

  .banner-section-img {
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .banner-section-inner {
    padding: 12px 2px;
    border-radius: 12px;
    min-height: 0;
    background-position: right top;
    background-size: cover;
  }
}

.footer-section ul li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.footer-section ul {
  margin: 0;
  padding: 0;
}

.index-float-btns {
  position: fixed;
  right: 32px;
  bottom: 48px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.index-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #6366F1;
  color: #6366F1;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  outline: none;
}

.index-float-btn-help {
  background: #6366F1;
  color: #fff;
  border: none;
  margin-bottom: 8px;
}

.index-float-btn:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.18);
  background: #EEF2FF;
  color: #6366F1;
}

.index-float-btn-help:hover {
  background: #4e51ee;
  color: #fff;
}

.index-float-btn-top {
  display: none;
  background: #fff;
  color: #6366F1;
  border: 1.5px solid #6366F1;
}

.index-float-btn-top.show {
  display: flex;
}

.footer-section-bottom-right {
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .index-float-btns {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }

  .index-float-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  html,
  body {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .index-body section {
    padding: 0 15px;
    box-sizing: border-box;
  }

  .footer-section-bottom-right {
    justify-content: flex-start;
    gap: 10;
  }

  .footer-section-bottom-right .icp-info {
    margin-top: 15px;
  }

  .footer-section {
    padding: 0 15px;
    box-sizing: border-box;
  }

  .banner-section-inner {
    background-image: none;
    background-color: #232344;
  }

  .banner-section-img {
    position: relative;
    left: 0;
    max-width: 100%;
  }

  .attendance-miniapp-img-main .animate-img-3 {
    left: -16px;
    top: 152px;
    width: 111px;
  }

  .attendance-miniapp-img-main .animate-img-4 {
    right: -12px;
    top: 87%;
    width: 196px;
  }

  .attendance-miniapp-img-main .animate-img-2 {
    left: 64%;
    top: 44%;
    width: 128px;
  }

  .fs40 {
    font-size: 33px !important;
  }

  .fs32 {
    font-size: 28px !important;
  }

  .fs20 {
    font-size: 18px !important;
  }

  .fs18 {
    font-size: 16px !important;
  }

  .fs16 {
    font-size: 14px !important;
  }

  .fs14 {
    font-size: 12px !important;
  }
}

.footer-link-list li {
  margin-bottom: 15px;
}

.footer-link-list li:hover a {
  color: #6366F1;
}

/* 帮助中心 */
.help-center-search-box {
  max-width: 886px;
  height: 66px;
}

.help-center-search-box input {
  border-radius: 8px;
}

.help-center-search-btn {
  width: 116px;
  height: 50px;
  text-align: center;
}

.help-center-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.help-center-tags li {
  display: inline-block;
  padding: 5px;
  margin: 0;
}

.help-center-tags li a {
  font-size: 15px;
  padding: 6px 13px;
  border-radius: 30px;
  border: 1px solid #E5E7EB;
  background: #f7f8f9;
  font-weight: 500;
  color: #0a1425;
}

/* 帮助中心搜索下拉弹层整体 */
.help-center-search-box {
  position: relative;
}

.help-center-search-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-width: 320px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.10);
  z-index: 50;
  margin-top: 6px;
  padding: 0;
  overflow: hidden;
}

.help-center-search-dropdown-header {
  padding: 18px 28px 8px 28px;
  font-size: 16px;
  color: #64728F;
  font-weight: 500;
  border-bottom: 1px solid #F1F2F6;
}

.help-center-search-dropdown-summary {
  background: #F4F7FF;
  color: #0A1425;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 28px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  gap: 18px;
}

.help-center-search-dropdown-count {
  color: #64728F;
  font-size: 15px;
  font-weight: 400;
  margin-left: 8px;
}

.help-center-search-dropdown-main {
  display: flex;
  min-height: 260px;
  padding: 0 0 0 0;
}

.help-center-search-dropdown-left {
  width: 260px;
  min-width: 180px;
  border-right: 1px solid #F1F2F6;
  padding: 24px 0 24px 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.help-center-search-dropdown-group-title {
  font-size: 14px;
  color: #64728F;
  margin-bottom: 8px;
  font-weight: 500;
}

.help-center-search-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.help-center-search-dropdown-item {
  font-size: 16px;
  color: #0A1425;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.help-center-search-dropdown-item.active,
.help-center-search-dropdown-item:hover {
  background: #EEF2FF;
  color: #6366F1;
}

.help-center-search-dropdown-right {
  flex: 1 1 0%;
  min-width: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.help-center-search-dropdown-detail-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A1425;
  margin-bottom: 16px;
}

.help-center-search-dropdown-detail-content {
  font-size: 16px;
  color: #64728F;
  margin-bottom: 18px;
  line-height: 1.7;
}

.help-center-search-dropdown-detail-img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 8px;
}

.help-center-search-dropdown-footer {
  border-top: 1px solid #E5E7EB;
  background: #fff;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #64728F;
}

.help-center-search-dropdown-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.help-center-search-dropdown-btn {
  padding: 3px 15px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.help-center-search-dropdown-esc {
  color: #64728F;
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .help-center-search-dropdown {
    min-width: 0;
    width: 100vw;
    left: -15px;
    border-radius: 10px;
    margin-top: 2px;
  }

  .help-center-search-dropdown-main {
    flex-direction: column;
    min-height: 0;
  }

  .help-center-search-dropdown-left {
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #F1F2F6;
    padding: 12px 8px;
    gap: 10px;
  }

  .help-center-search-dropdown-right {
    padding: 12px 8px;
  }

  .help-center-search-dropdown-footer {
    padding: 8px 8px;
    font-size: 14px;
  }
}

/* 帮助中心四宫格分类区块 */
.help-center-category-section {
  margin: 48px 0 32px 0;
}

.help-center-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 0 auto;
}

.help-center-category-card {
  flex: 1 1 44%;
  min-width: 340px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.help-center-category-card:hover {
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.10);
  border-color: #6366F1;
}

.help-center-category-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.help-center-category-icon img {
  width: 100%;
  height: 100%;
}

.help-center-category-title {
  font-size: 24px;
  font-weight: 700;
  color: #0A1425;
  margin-bottom: 6px;
}

.help-center-category-desc {
  font-size: 16px;
  color: #64728F;
  margin-bottom: 8px;
  line-height: 1.7;
}

.help-center-category-link {
  font-size: 16px;
  color: #6366F1;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}



@media (max-width: 991.98px) {
  .help-center-category-grid {
    gap: 18px;
  }

  .help-center-category-card {
    min-width: 220px;
    padding: 24px 14px 20px 14px;
  }
}

@media (max-width: 767.98px) {
  .help-center-category-grid {
    flex-direction: column;
    gap: 14px;
  }

  .help-center-category-card {
    min-width: 0;
    width: 100%;
    padding: 18px 8px 14px 8px;
  }

  .help-center-category-title {
    font-size: 18px;
  }

  .help-center-category-desc {
    font-size: 14px;
  }

  .help-center-category-link {
    font-size: 14px;
  }
}

/* 帮助中心FAQ区块 */
.help-center-faq-section {
  margin: 64px 0 32px 0;
}

.help-center-faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.help-center-faq-tag {
  color: #6366F1;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.help-center-faq-title {
  font-size: 38px;
  font-weight: 700;
  color: #0A1425;
  margin-bottom: 10px;
}

.help-center-faq-desc {
  font-size: 18px;
  color: #64728F;
  margin-bottom: 0;
}

.help-center-faq-main {
  display: flex;
  gap: 32px;
  margin: 0 auto 0 auto;
  align-items: flex-start;
}

.help-center-faq-accordion {
  flex: 1 1 0%;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  padding: 0;
  overflow: hidden;
}


.help-center-faq-accordion i {
  font-size: 28px;
  font-weight: 400;
}


.help-center-faq-item {
  border-bottom: 1px solid #E5E7EB;
  transition: background 0.15s;
}

.help-center-faq-item:last-child {
  border-bottom: none;
}

.help-center-faq-question {
  font-size: 20px;
  color: #0A1425;
  font-weight: 600;
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}

.help-center-faq-link {
  color: #6366F1;
  font-weight: 600;
}

.help-center-faq-item.active .help-center-faq-question {
  color: #6366F1;
}

.help-center-faq-question i {
  font-size: 28px;
  margin-left: 8px;
  transition: transform 0.2s;
  color: #64728F;
}

.help-center-faq-item.active .help-center-faq-question i {
  transform: rotate(180deg);
  color: #6366F1;
}

.help-center-faq-answer {
  display: none;
  font-size: 16px;
  color: #64728F;
  padding: 0 32px 24px 32px;
  line-height: 1.7;
  animation: fadeIn 0.3s;
}

.help-center-faq-item.active .help-center-faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.help-center-faq-support-card {
  width: 340px;
  min-width: 220px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.help-center-faq-support-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.help-center-faq-support-title {
  font-size: 20px;
  font-weight: 700;
  color: #0A1425;
  margin-bottom: 6px;
}

.help-center-faq-support-desc {
  font-size: 15px;
  color: #64728F;
  margin-bottom: 8px;
  line-height: 1.7;
}

.help-center-faq-support-mail {
  font-size: 15px;
  color: #6366F1;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

/* 蓝色客服横幅 */
.help-center-faq-banner {
  margin: 48px auto 0 auto;
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.10);
  gap: 24px;
}

.help-center-faq-banner-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.help-center-faq-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-center-faq-banner-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.help-center-faq-banner-desc {
  font-size: 16px;
  color: #E0E7FF;
}

.help-center-faq-banner-btn {
  background: #fff;
  color: #2563EB;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
  display: inline-block;
}

.help-center-faq-banner-btn:hover {
  background: #E0E7FF;
  color: #2563EB;
}

@media (max-width: 991.98px) {
  .help-center-faq-main {
    flex-direction: column;
    gap: 18px;
  }

  .help-center-faq-support-card {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }

  .help-center-faq-banner {
    flex-direction: column;
    padding: 24px 12px;
    gap: 12px;
  }

  .help-center-faq-banner-left {
    gap: 12px;
  }
}

@media (max-width: 767.98px) {
  .help-center-faq-title {
    font-size: 22px;
  }

  .help-center-faq-header {
    margin-bottom: 18px;
  }

  .help-center-faq-banner {
    border-radius: 10px;
    padding: 14px 4px;
  }

  .help-center-faq-banner-title {
    font-size: 16px;
  }

  .help-center-faq-banner-desc {
    font-size: 13px;
  }

  .help-center-faq-banner-btn {
    font-size: 15px;
    padding: 8px 18px;
  }
}


/* 帮助详情 */
.help-detail-breadcrumb {
  margin: 36px auto 18px auto;
  font-size: 15px;
  color: #6366F1;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.help-detail-breadcrumb-link {
  color: #6366F1;
  font-weight: 600;
}

.help-detail-breadcrumb-sep {
  color: #64728F;
}

.help-detail-breadcrumb-current {
  color: #64728F;
  font-weight: 500;
}

.help-detail-title {
  margin: 0 auto 24px auto;
  font-size: 40px;
  font-weight: 700;
  color: #0A1425;
  letter-spacing: 0.5px;
}

.help-detail-main {
  margin: 50px auto 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.help-detail-sider {
  width: 260px;
  min-width: 180px;
}

.help-detail-menu {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.04);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.help-detail-menu-item {
  margin-bottom: 2px;
}

.help-detail-menu-title {
  font-size: 17px;
  font-weight: 700;
  color: #0A1425;
  padding: 12px 32px 12px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.help-detail-menu-title.active,
.help-detail-menu-title:hover {
  background: #EEF2FF;
  color: #6366F1;
}

.help-detail-menu-title i {
  font-size: 22px;
  margin-left: 8px;
  color: #64728F;
}

.help-detail-menu-sub {
  padding-left: 32px;
  padding-bottom: 8px;
  display: block;
}

.help-detail-menu-sub-item {
  font-size: 15px;
  color: #64728F;
  padding: 7px 0;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.help-detail-menu-sub-item.active,
.help-detail-menu-sub-item:hover {
  color: #6366F1;
  background: #EEF2FF;
}

.help-detail-content {
  flex: 1 1 0%;
  min-width: 0;
  background: #fff;
  border-radius: 16px;
  font-size: 17px;
  color: #0A1425;
}

.help-detail-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0A1425;
}

.help-detail-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px 0;
  color: #0A1425;
}

.help-detail-content p {
  font-size: 16px;
  color: #64728F;
  margin-bottom: 16px;
  line-height: 1.7;
}

.help-detail-img {
  width: 100%;
  max-width: 700px;
  border-radius: 14px;
  margin: 24px 0;
  display: block;
}

@media (max-width: 991.98px) {
  .help-detail-main {
    flex-direction: column;
    gap: 18px;
  }

  .help-detail-sider {
    width: 100%;
    min-width: 0;
  }

  .help-detail-content {
    padding: 18px 10px 18px 10px;
  }
}

@media (max-width: 767.98px) {
  .help-detail-title {
    font-size: 22px;
  }

  .help-detail-content h2 {
    font-size: 18px;
  }

  .help-detail-content h3 {
    font-size: 15px;
  }

  .help-detail-content {
    font-size: 15px;
    padding: 8px 2px 8px 2px;
  }
}


/* 帮助详情 */
/* 帮助详情页左侧简洁栏目树 */
.help-detail-sider-simple {
  width: 387px;
  min-width: 200px;
}

.help-detail-menu-simple {
  list-style: none;
  margin: 0;
  padding: 0;
}

.help-detail-menu-simple-item {
  margin-bottom: 18px;
}

.help-detail-menu-simple-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A1425;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}

.help-detail-menu-simple-title i {
  font-size: 22px;
  margin-left: 8px;
  color: #64728F;
  font-weight: 400;
}

.help-detail-menu-simple-title:hover,
.help-detail-menu-simple-title.active {
  color: #6366F1;
}

.help-detail-menu-simple-title.active i {
  color: #6366F1;
}

.help-detail-menu-simple-sub {
  list-style: disc inside;
  margin: 12px 0 0 0;
  padding-left: 18px;
}

.help-detail-menu-simple-sub-item {
  font-size: 16px;
  color: #64728F;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.15s;
}

.help-detail-menu-simple-sub-item.active,
.help-detail-menu-simple-sub-item:hover {
  color: #6366F1;
}

@media (max-width: 991.98px) {
  .help-detail-sider-simple {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }
}

/* 协议菜单 */
.agreement-menu {
  width: 260px;
  min-width: 160px;
  margin-top: 12px;
}

.agreement-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
}

.agreement-menu-item {
  font-size: 17px;
  font-weight: 700;
  color: #0A1425;
  padding: 14px 0 14px 0;
  cursor: pointer;
  border-bottom: 1px solid #E5E7EB;
  transition: color 0.15s;
}

.agreement-menu-item:last-child {
  border-bottom: none;
}

.agreement-menu-item.active,
.agreement-menu-item:hover {
  color: #6366F1;
}

@media (max-width: 991.98px) {
  .agreement-menu {
    width: 100%;
    min-width: 0;
    margin-bottom: 18px;
  }
}

/* 登录页整体布局 */
.user-login-wrapper {
  display: flex;
  min-height: 100vh;
  background: #f5f7fa;
}

.user-login-left {
  flex: 1 1 0%;
  background: #eaefff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.user-login-img {
  position: absolute;
  z-index: 1;
  height: auto;
  pointer-events: none;
}

.user-login-img-top {
  top: 0px;
  left: 0px;
  max-width: 220px;
}

.user-login-img-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.user-login-img-bottom {
  right: 0px;
  bottom: 0px;
  max-width: 180px;
}

.user-login-right {
  flex: 1 1 0%;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  justify-content: center;
  align-items: center;
}

.user-login-back {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #64728F;
  font-size: 15px;
  text-decoration: none;
  z-index: 2;
  transition: color 0.15s;
}

.user-login-back:hover {
  color: #6366F1;
}

.user-login-form-box {
  width: 569px;
  min-width: 0;
  max-width: 100vw;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 1px 4px 0px rgba(133, 146, 173, 0.2);
  padding: 48px 42px 36px 42px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
}

.user-login-title {
  font-size: 32px;
  font-weight: 700;
  color: #0A1425;
  margin-bottom: 18px;
  text-align: left;
}

.user-login-desc {
  font-size: 15px;
  color: #64728F;
  margin-bottom: 28px;
  line-height: 1.7;
}

.user-login-link {
  color: #6366F1;
  text-decoration: none;
}


.user-login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.user-login-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-login-input {
  height: 38px;
  border: 1px solid #E5E7EB;
  border-radius: 7px;
  padding: 0 16px;
  font-size: 16px;
  color: #0A1425;
  background: #f7f8f9;
  outline: none;
  transition: border 0.15s;
}

.user-login-input:focus {
  border-color: #6366F1;
}

.user-login-required {
  color: #f56c6c;
  margin-left: 2px;
}

/* 密码输入框100%宽度，眼睛icon右侧 */
.user-login-password-box {
  position: relative;
  display: flex;
  align-items: center;
}

.user-login-password-box .user-login-input {
  width: 100%;
  padding-right: 40px;
}

.user-login-eye {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #C8C8C8;
  cursor: pointer;
  z-index: 2;
  background: none !important;
  transition: color 0.15s;
}

.user-login-eye:hover {
  color: #6366F1;
}

.user-login-eye.open {
  color: #6366F1;
}

/* 记住密码左对齐 */
.user-login-remember-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  justify-content: flex-start;
  flex-direction: row;
}

/* 登录按钮尺寸与居中 */
.user-login-btn {
  width: 267px;
  height: 52px;
  line-height: 23px;
  border-radius: 60px;
  margin: 24px auto 0 auto;
  display: block;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
  transition: background 0.15s;
}

.user-login-btn:hover {
  background: linear-gradient(90deg, #4F46E5 0%, #6366F1 100%);
}

.user-login-tip {
  margin-top: 18px;
  font-size: 13px;
  color: #C8C8C8;
  text-align: center;
}

@media (max-width: 991.98px) {
  .user-login-wrapper {
    flex-direction: column;
  }

  .user-login-left,
  .user-login-right {
    width: 100%;
    min-height: 320px;
  }

  .user-login-form-box {
    width: 98vw;
    min-width: 0;
    padding: 28px 6vw 18px 6vw;
  }

  .user-login-img-top {
    top: 0px;
    left: 0px;
    max-width: 120px;
  }

  .user-login-img-center {
    max-width: 220px;
  }

  .user-login-img-bottom {
    right: 0px;
    bottom: 0px;
    max-width: 90px;
  }
}

@media (max-width: 767.98px) {
  .user-login-form-box {
    padding: 16px 2vw 10px 2vw;
    border-radius: 12px;
  }

  .user-login-title {
    font-size: 22px;
  }
}

/* 用户申请页整体布局 */
.user-apply-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.user-apply-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

.user-apply-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-apply-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
}

.user-apply-right {
  width: 536px;
  max-width: 100vw;
  background: #fff;
  border-radius: 18px;
  padding: 48px 38px 36px 38px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.user-apply-title {
  font-size: 32px;
  font-weight: 700;
  color: #0A1425;
  text-align: center;
  margin-bottom: 8px;
}

.user-apply-subtitle {
  font-size: 16px;
  color: #64728F;
  text-align: center;
  margin-bottom: 32px;
}

.user-apply-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.user-apply-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.user-apply-required {
  color: #f56c6c;
  margin-left: 2px;
}

.user-apply-input {
  height: 38px;
  border: 1px solid #E5E7EB;
  border-radius: 7px;
  padding: 0 16px;
  font-size: 16px;
  color: #0A1425;
  background: #f7f8f9;
  outline: none;
  transition: border 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.user-apply-input:focus {
  border-color: #6366F1;
}

.user-apply-textarea {
  min-height: 80px;
  max-height: 180px;
  resize: vertical;
  padding: 10px 16px;
}

.user-apply-form-group-captcha .user-apply-captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-apply-form-group-sms .user-apply-sms-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-apply-sms-timer {
  color: #64728F;
  font-size: 15px;
  min-width: 38px;
  text-align: right;
}

.user-apply-sms-btn {
  color: #6366F1;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  margin-left: 2px;
}

.user-apply-sms-btn:hover {
  color: #4e51ee;
  text-decoration: underline;
}

.user-apply-btn {
  width: 267px;
  height: 52px;
  line-height: 23px;
  border-radius: 60px;
  margin: 32px auto 0 auto;
  display: block;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
  transition: background 0.15s;
}

.user-apply-btn:hover {
  background: linear-gradient(90deg, #4F46E5 0%, #6366F1 100%);
}

@media (max-width: 991.98px) {
  .user-apply-inner {
    flex-direction: column;
    gap: 32px;
    max-width: 98vw;
  }

  .user-apply-right {
    width: 98vw;
    min-width: 0;
    padding: 28px 6vw 18px 6vw;
  }

  .user-apply-img {
    max-width: 220px;
  }
}

@media (max-width: 767.98px) {
  .user-apply-title {
    font-size: 22px;
  }

  .user-apply-right {
    padding: 12px 2vw 8px 2vw;
    border-radius: 10px;
  }
}

/* 图形验证码和短信验证码布局优化 */
.user-apply-form-group-captcha .user-apply-captcha-box,
.user-apply-form-group-sms .user-apply-sms-box {
  position: relative;
  display: flex;
  align-items: center;
}

.user-apply-captcha-box .user-apply-input,
.user-apply-sms-box .user-apply-input {
  width: 100%;
  padding-right: 120px;
  box-sizing: border-box;
}

.user-apply-captcha-img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0px 7px 7px 0px;
  height: 38px;
  width: 110px;
  object-fit: cover;
}

.user-apply-sms-timer,
.user-apply-sms-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
  z-index: 2;
  background: none;
  padding: 0 2px;
}

.user-apply-sms-btn {
  right: 15px;
  color: #6366F1;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  margin-left: 2px;
}

.user-apply-sms-btn:hover {
  color: #4e51ee;
  text-decoration: underline;
}

.user-apply-sms-timer {
  color: #64728F;
  font-size: 15px;
  min-width: 38px;
  text-align: right;
  right: 80px;
}

.user-apply-inner input,
.user-apply-inner textarea {
  background-color: #ffffff;
}

.user-login-right input {
  background-color: #ffffff;
}

/* 充值弹窗整体 */
.recharge-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recharge-modal {
  width: 560px;
  height: 626px;
  background: linear-gradient(180deg, rgba(255, 237, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.recharge-user {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.recharge-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.recharge-user-info {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recharge-user-name {
  font-size: 17px;
  color: #0A1425;
}

.recharge-user-company {
  font-size: 14px;
  color: #64728F;
}

.recharge-close {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 26px;
  color: #222;
  cursor: pointer;
  transition: color 0.15s;
}

.recharge-close:hover {
  color: #6366F1;
}

.recharge-vip-select {
  width: 100%;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 32px 0 0 0;
}

.recharge-vip-item {
  flex: 1 1 0%;
  background: #fff;
  border: 2px solid #F7C98B;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 24px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: border 0.18s, box-shadow 0.18s;
}

.recharge-vip-item.active {
  border: 2.5px solid #F7C98B;
  box-shadow: 0 2px 12px rgba(247, 201, 139, 0.12);
  background: #FFF7E9;
}

.recharge-vip-title {
  font-size: 22px;
  color: #222;
  margin-bottom: 8px;
}

.recharge-vip-price {
  font-size: 38px;
  font-weight: 700;
  color: #F55B3F;
  margin-bottom: 2px;
}

.recharge-vip-currency {
  font-size: 18px;
  vertical-align: super;
  color: #F55B3F;
}

.recharge-vip-desc {
  font-size: 15px;
  color: #64728F;
}

.recharge-count-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0px 0 0px;
  font-size: 16px;
  color: #222;
}

.recharge-count-label {
  font-weight: 500;
}

.recharge-count-box {
  display: flex;
  align-items: center;
  background: #FFF7E9;
  border-radius: 8px;
  border: 1.5px solid #F7C98B;
  margin: 0 18px;
  box-sizing: border-box;
}

.recharge-count-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 22px;
  color: #0a1425;
  background: #F8D9AE;
  cursor: pointer;
  outline: none;
  transition: background 0.15s, color 0.15s;
  border-radius: 8px;
}

.recharge-count-btn:first-child{
  border-radius: 8px 0 0 8px;
}

.recharge-count-btn:last-child{
  border-radius: 0 8px 8px 0;
}

.recharge-count-num {
  width: 38px;
  text-align: center;
  font-size: 18px;
  color: #222;
  display: inline-block;
}

.recharge-amount-label {
  margin-left: auto;
  color: #222;
  font-weight: 500;
}

.recharge-amount-value {
  font-size: 20px;
  color: #F55B3F;
  margin-left: 8px;
}

.recharge-pay-title {
  font-size: 16px;
  color: #222;
  text-align: left;
  margin-right: 18px;
  font-weight: 600;
}

.recharge-pay-methods {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.recharge-pay-btn {
  width: 143px;
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  border: 1.5px solid #DDDBDB;
  background: #fff;
  color: #191820;
  border-radius: 10px;
  cursor: pointer;
  transition: border 0.15s, color 0.15s, background 0.15s;
}

.recharge-pay-btn.active,
.recharge-pay-btn:hover {
  border: 1.5px solid #FFA049;
}

.recharge-pay-btn i {
  font-size: 22px;
}

.recharge-submit-btn {
  width: 294px;
  height: 49px;
  line-height: 20px;
  border-radius: 60px;
  background: linear-gradient(180deg, rgba(255, 233, 203, 1) 0%, rgba(255, 227, 180, 1) 100%);
  color: rgba(10, 20, 37, 1);
  font-size: 18px;
  text-align: center;
  margin-bottom: 18px;
  cursor: pointer;
  border: none;
  font-weight: 500;
}

.recharge-submit-btn:hover {
  background: #FFD18B;
  color: #F55B3F;
}

.recharge-tip {
  width: 100%;
  text-align: center;
  margin-top: 18px;
}

.recharge-tip-link {
  color: #F55B3F;
  font-weight: 600;
}