@charset "UTF-8";
body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* 全局样式 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #0056b3;
  color: white;
}

.btn-primary:hover {
  background-color: #003d82;
}

/* 头部样式 */
.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo h1 {
  font-size: 1.8rem;
  margin: 0;
}

.site-logo a {
  text-decoration: none;
  color: #0056b3;
}

.site-nav ul {
  display: flex;
  list-style: none;
}

.site-nav li {
  margin-left: 20px;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #0056b3;
}

.language-switch a {
  color: #0056b3;
  font-weight: 600;
}

/* 首页英雄区域 */
.hero-section {
  background: linear-gradient(135deg, #0056b3 0%, #00a0e9 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* 服务卡片 */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #0056b3;
  margin-bottom: 15px;
}

/* 页面头部 */
.page-header {
  background-color: #0056b3;
  color: white;
  padding: 60px 0;
  text-align: center;
}

/* 关于页面 */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.about-item h2 {
  color: #0056b3;
  margin-bottom: 20px;
}

/* 联系页面 */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info ul {
  list-style: none;
  margin-top: 20px;
}

.contact-info li {
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* 页脚 */
.site-footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  margin-top: 15px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
  }
  .site-nav {
    margin-top: 20px;
  }
  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-nav li {
    margin: 5px 10px;
  }
  .hero-section {
    padding: 60px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .services-grid,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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