@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "阿里巴巴普惠体-bold", "Helvetica Neue", Helvetica, Arial, "旁门正道标题提", sans-serif;
  color: #1F2937;
  line-height: 1.6;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #16368C;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.animate-init,
.animate-on-scroll,
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in,
.animate-on-scroll.visible,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section .section-title {
  transform: translateY(20px) scale(0.98);
  transition-delay: 0.1s;
}
.about-section .about-text h3 {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-out 0.3s;
}
.about-section .about-text .link-button {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.6s ease-out 0.4s;
}
.about-section .about-text p {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease-out;
}
.about-section .about-stats {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: all 0.8s ease-out 0.9s;
}
.about-section .stat-item {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-out;
}
.about-section .about-image {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease-out 0.5s;
}
.about-section .animate-on-scroll.visible.section-title,
.about-section .animate-init.animate-in.section-title {
  transform: translateY(0) scale(1);
}
.about-section .animate-on-scroll.visible.about-text h3,
.about-section .animate-init.animate-in.about-text h3 {
  opacity: 1;
  transform: translateY(0);
}
.about-section .animate-on-scroll.visible.about-text .link-button,
.about-section .animate-init.animate-in.about-text .link-button {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.about-section .animate-on-scroll.visible.about-text p:nth-child(3),
.about-section .animate-init.animate-in.about-text p:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.about-section .animate-on-scroll.visible.about-text p:nth-child(4),
.about-section .animate-init.animate-in.about-text p:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.about-section .animate-on-scroll.visible.about-text .about-stats,
.about-section .animate-init.animate-in.about-text .about-stats {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.about-section .animate-on-scroll.visible.about-text .stat-item:nth-child(1),
.about-section .animate-init.animate-in.about-text .stat-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}
.about-section .animate-on-scroll.visible.about-text .stat-item:nth-child(2),
.about-section .animate-init.animate-in.about-text .stat-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.3s;
}
.about-section .animate-on-scroll.visible.about-image,
.about-section .animate-init.animate-in.about-image {
  opacity: 1;
  transform: scale(1);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.btn.btn-primary, .btn.btn-secondary {
  background-color: #16368C;
  color: white;
}
.btn.btn-primary:hover, .btn.btn-secondary:hover {
  background-color: #16368C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 54, 140, 0.3);
}
.btn.btn-outline {
  background-color: transparent;
  border: 2px solid #16368C;
  color: #16368C;
}
.btn.btn-outline:hover {
  background-color: #16368C;
  color: white;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1E3A8A;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 58, 138, 0.2);
  background-color: rgba(30, 58, 138, 0.05);
}
.link-button:hover {
  background-color: rgba(30, 58, 138, 0.1);
  border-color: rgba(30, 58, 138, 0.4);
  transform: translateX(2px);
}
.link-button::after {
  content: "→";
  font-size: 0.625rem;
  transition: transform 0.3s ease;
}
.link-button:hover::after {
  transform: translateX(1px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E3A8A;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}
.navbar .navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navbar .navbar-menu {
  display: none;
  list-style: none;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .navbar .navbar-menu {
    display: flex;
    align-items: center;
  }
}
.navbar .navbar-menu .menu-item {
  position: relative;
}
.navbar .navbar-menu .menu-item a {
  color: #1F2937;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}
.navbar .navbar-menu .menu-item a:hover {
  color: #16368C;
}
.navbar .navbar-menu .menu-item a.active {
  background-color: #16368C;
  color: white;
}
.navbar .navbar-menu .menu-item a.active:hover {
  background-color: #16368C;
  color: white;
}
.navbar .navbar-menu .menu-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-40%);
  min-width: 1500px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1000;
  margin-top: 0.25rem;
}
.navbar .navbar-menu .menu-item:hover .dropdown-menu {
  display: block;
}
.navbar .navbar-menu .menu-item .dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #1F2937;
  border-radius: 0;
}
.navbar .navbar-menu .menu-item .dropdown-menu li a:hover {
  background-color: rgba(30, 58, 138, 0.05);
  color: #16368C;
}
.navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar .navbar-actions .language-switch {
  color: #1F2937;
  font-size: 1rem;
  cursor: pointer;
}
.navbar .navbar-actions .mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .navbar .navbar-actions .mobile-menu-btn {
    display: none;
  }
}
.navbar .navbar-actions .mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1F2937;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-list {
  list-style: none;
}
.mobile-menu .mobile-menu-list .menu-item {
  margin-bottom: 1rem;
}
.mobile-menu .mobile-menu-list .menu-item a {
  color: #1F2937;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-menu-list .menu-item a:hover {
  color: #16368C;
}
.mobile-menu .mobile-menu-list .menu-item a.active {
  background-color: #16368C;
  color: white;
}
.mobile-menu .mobile-menu-list .menu-item a.active:hover {
  background-color: #16368C;
  color: white;
}

.footer {
  background: linear-gradient(135deg, #16368C 0%, #1E3A8A 100%);
  color: white;
  padding: 4rem 0 1.5rem;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .footer .footer-content {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .footer .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer .footer-content .footer-qrcode-container {
  position: absolute;
  right: -80px;
  top: 0;
  width: 150px;
  height: 150px;
}
.footer .footer-section {
  margin-bottom: 2rem;
  flex: 0 0 25%;
}
.footer .footer-section:nth-child(1), .footer .footer-section:nth-child(2) {
  flex: 0 0 20%;
}
.footer .footer-section:nth-child(3) {
  flex: 0 0 30%;
}
.footer .footer-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}
.footer .footer-section ul {
  list-style: none;
}
.footer .footer-section li {
  margin-bottom: 0.8rem;
}
.footer .footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-section a:hover {
  color: #fff;
}
.footer .footer-section p {
  color: #ccc;
  line-height: 1.6;
}
.footer .footer-section.footer-qrcode-section {
  text-align: right;
  padding-right: 0;
  flex: 0 0 25%;
}
.footer .footer-qrcode-image {
  width: 150px;
  height: auto;
  border: 5px solid red;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}
.footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1E3A8A; /* 设置为系统色 */
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}
.section-title p {
  color: #6B7280;
  font-size: 1.125rem;
}

/*# sourceMappingURL=main.css.map */
