* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.content {
  width: 100%;
  background-image: url('../image/bc.png');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 160px 0 40px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 1536px) {
    .container {
        max-width: 1320px;
        padding: 0 20px;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 24px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
}

.to-index-page{
  color: #1f2937;
  text-decoration: none;
}


@font-face {
  font-family: "VariableFont_wght";
  src: url("../League_Spartan/static/LeagueSpartan-Regular.ttf");
}
.stat-number {
  font-family: "VariableFont_wght" !important;
}

/* 移动端样式 */
@media (max-width: 767px) {
  .content {
    padding: 110px 0 40px 0 !important;
  }
}

/* 预约演示弹窗样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  padding: 32px;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #1f2937;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-input,
.form-select {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-submit {
  padding: 14px 24px;
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background-color: #2563eb;
}

.form-submit:active {
  transform: translateY(1px);
}

/* 移动端弹窗样式 */
@media (max-width: 767px) {
  .modal {
    width: 95%;
    padding: 24px;
  }
  
  .modal-title {
    font-size: 20px;
  }
  
  .modal-form {
    gap: 16px;
  }
  
  .form-input,
  .form-select {
    padding: 10px 14px;
  }
}
