/* 招生信息页面样式 */
.main-content {
  margin-top: 70px;
}

.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.enrollment-section {
  padding: 80px 0;
  background: white;
}

.enrollment-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.enrollment-card {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.enrollment-card:hover {
  transform: translateY(-5px);
}

.enrollment-card h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.enrollment-card h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.enrollment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enrollment-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.enrollment-item h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.enrollment-item p {
  color: #666;
  font-size: 14px;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.content-item h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.content-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.contact-item h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-item p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.phone-number {
  color: #667eea !important;
  font-weight: bold;
  font-size: 18px !important;
  cursor: pointer;
  transition: color 0.3s;
}

.phone-number:hover {
  color: #764ba2 !important;
}

.enrollment-card .btn {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 0 40px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header p {
    font-size: 16px;
  }

  .enrollment-section {
    padding: 60px 0;
  }

  .enrollment-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .enrollment-card {
    padding: 30px;
  }

  .enrollment-card h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 24px;
  }

  .enrollment-card {
    padding: 20px;
  }

  .enrollment-item,
  .content-item,
  .contact-item {
    padding: 15px;
  }

  .contact-item {
    min-height: 70px;
  }

  .enrollment-item h3,
  .content-item h3,
  .contact-item h3 {
    font-size: 14px;
  }

  .enrollment-item p,
  .content-item p,
  .contact-item p {
    font-size: 12px;
  }

  .phone-number {
    font-size: 16px !important;
  }
}
