
/* Header 样式 */
.header[data-v-64648611] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem; /* 减少padding */
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 更轻的阴影 */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.98);
  height: 50px; /* 从60px减少到50px */
  min-height: 50px; /* 确保最小高度 */
}
.logo[data-v-64648611] {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6b00;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav[data-v-64648611] {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* 从2rem减少到1.5rem，为语言切换留空间 */
}
.nav-link[data-v-64648611] {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-link[data-v-64648611]:hover {
  color: #ff6b00;
}
.nav-link[data-v-64648611]::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b00;
  transition: width 0.3s;
}
.nav-link[data-v-64648611]:hover::after {
  width: 100%;
}

/* 语言切换器样式 */
.language-switcher[data-v-64648611] {
  position: relative;
  display: inline-block;
  margin-right: 0.5rem;
}
.language-btn[data-v-64648611] {
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  color: #555;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 80px;
  justify-content: center;
}
.language-btn[data-v-64648611]:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}
.language-btn[data-v-64648611]::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 0.2rem;
  color: #888;
  transition: transform 0.2s ease;
}
.language-switcher:hover .language-btn[data-v-64648611]::after {
  transform: rotate(180deg);
}
.language-dropdown[data-v-64648611] {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 100px;
  z-index: 1001;
  overflow: hidden;
  margin-top: 0.3rem;
  
  /* 动画效果 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.language-dropdown.show[data-v-64648611] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.language-option[data-v-64648611] {
  display: block;
  padding: 0.6rem 1rem;
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}
.language-option[data-v-64648611]:last-child {
  border-bottom: none;
}
.language-option[data-v-64648611]:hover {
  background: #f8f9fa;
  color: #ff6b00;
}
.language-option.active[data-v-64648611] {
  background: #f0f8ff;
  color: #007bff;
  font-weight: 600;
}
.language-option.active[data-v-64648611]:hover {
  background: #e0f0ff;
  color: #0069d9;
}
.login-btn[data-v-64648611] {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.login-btn[data-v-64648611]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
.header[data-v-64648611] {
    padding: 0.8rem 1rem;
    flex-direction: row; /* 保持水平布局 */
    justify-content: space-between;
    gap: 0.5rem;
    height: 50px;
}
.logo[data-v-64648611] {
    font-size: 1.5rem; /* 缩小logo */
}
.nav[data-v-64648611] {
    gap: 0.8rem; /* 减少间距 */
}
.nav-link[data-v-64648611] {
    font-size: 0.9rem; /* 缩小字体 */
}
  
  /* 在768px以下隐藏工作台按钮 */
.login-btn[data-v-64648611] {
    display: none;
}
  
  /* 语言切换器调整 */
.language-switcher[data-v-64648611] {
    margin-right: 0;
}
.language-btn[data-v-64648611] {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    min-width: 70px;
}
  
  /* 移动端保持下拉框相对于按钮定位 */
.language-dropdown[data-v-64648611] {
    position: absolute; /* 保持绝对定位，不要改为fixed */
    right: 0; /* 保持右对齐 */
    left: auto; /* 重置left */
    transform: translateY(-10px); /* 只需要Y轴动画 */
    width: 120px; /* 固定宽度 */
}
.language-dropdown.show[data-v-64648611] {
    transform: translateY(0); /* 只需要Y轴动画 */
}
.language-option[data-v-64648611] {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
}
}

/* 在平板和手机之间的尺寸 */
@media (max-width: 576px) {
  /* 可以隐藏一个导航链接以节省空间 */
.nav-link[data-v-64648611]:nth-child(3) { /* 隐藏"优势"链接 */
    display: none;
}
}

/* 更小屏幕的适配 */
@media (max-width: 480px) {
.header[data-v-64648611] {
    padding: 0.8rem 0.5rem; /* 进一步减少padding */
}
.logo[data-v-64648611] {
    font-size: 1.3rem; /* 进一步缩小logo */
}
.nav[data-v-64648611] {
    gap: 0.5rem; /* 进一步减少间距 */
}
.nav-link[data-v-64648611] {
    font-size: 0.8rem; /* 进一步缩小字体 */
}
.language-btn[data-v-64648611] {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    min-width: 60px;
}
.language-dropdown[data-v-64648611] {
    width: 100px; /* 进一步缩小宽度 */
}
.language-option[data-v-64648611] {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
}
  
  /* 在480px以下再隐藏一个导航链接 */
.nav-link[data-v-64648611]:nth-child(4) { /* 隐藏"联系方式"链接 */
    display: none;
}
}

/* 超小屏幕处理 */
@media (max-width: 360px) {
.logo[data-v-64648611] {
    font-size: 1.1rem; /* 更小logo */
}
.nav-link[data-v-64648611] {
    font-size: 0.75rem; /* 更小字体 */
}
.language-btn[data-v-64648611] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    min-width: 50px;
}
.language-dropdown[data-v-64648611] {
    width: 90px; /* 更小宽度 */
}
}

/* 主视觉区域 - 减少padding */
.hero[data-v-1af4609e] {
  text-align: center;
  padding: 3rem 2rem; /* 从5rem减少到3rem */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  scroll-margin-top: 60px; /* 从70px减少到60px */
  margin-top: 60px; /* 从70px减少到60px */
}
.hero-title[data-v-1af4609e] {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle[data-v-1af4609e] {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* 高亮样式 */
.hero-subtitle[data-v-1af4609e] .highlight {
  color: #ff6b00;
  font-weight: bold;
  font-size: 2rem;
}
.hero-description[data-v-1af4609e] {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-button[data-v-1af4609e] {
  padding: 1rem 3rem;
  font-size: 1.2rem;
  background: linear-gradient(45deg, #ff6b00, #ff8c00);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button[data-v-1af4609e]:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
.hero[data-v-1af4609e] {
    padding: 2rem 1rem;
    margin-top: 120px; /* 增加margin-top，因为header在移动端变高了 */
    scroll-margin-top: 120px;
}
.hero-title[data-v-1af4609e] {
    font-size: 2.2rem;
}
.hero-subtitle[data-v-1af4609e] {
    font-size: 1.3rem;
}
.hero-subtitle[data-v-1af4609e] .highlight {
    font-size: 1.6rem;
}
.hero-description[data-v-1af4609e] {
    font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.hero-title[data-v-1af4609e] {
    font-size: 1.8rem;
}
.hero-subtitle[data-v-1af4609e] {
    font-size: 1.1rem;
}
.hero-subtitle[data-v-1af4609e] .highlight {
    font-size: 1.4rem;
}
.cta-button[data-v-1af4609e] {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}
}

/* 业务范围 - 减少padding */
.services-section[data-v-505d1204] {
  padding: 3rem 2rem; /* 从5rem减少到3rem */
  background: white;
  position: relative;
  scroll-margin-top: 60px;
  scroll-padding-top: 60px;
}
.section-spacing[data-v-505d1204] {
  height: 10px; /* 从20px减少到10px */
}

/* 主标题优化 - 添加渐变色 */
.section-title[data-v-505d1204] {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem; /* 从3rem减少到2rem */
  background: linear-gradient(45deg, #333, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 20px; /* 从40px减少到20px */
  scroll-margin-top: 60px; /* 从100px减少到60px */
  padding-top: 10px; /* 从20px减少到10px */
}
.services-grid[data-v-505d1204] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card[data-v-505d1204] {
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card[data-v-505d1204]:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #ff6b00;
}
.service-icon[data-v-505d1204] {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 5px;
}
.flag-img[data-v-505d1204] {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.service-card:hover .flag-img[data-v-505d1204] {
  transform: scale(1.05);
}

/* 服务标题优化 - 深蓝色 */
.service-title[data-v-505d1204] {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;
}

/* 描述文字优化 - 深灰色 */
.service-description[data-v-505d1204] {
  color: #5d6d7e;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
  flex-grow: 1;
  margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
.services-section[data-v-505d1204] {
    padding: 2rem 1rem; /* 从3rem减少到2rem */
    scroll-margin-top: 120px; /* 从120px减少到100px */
    scroll-padding-top: 120px;
}
.section-title[data-v-505d1204] {
    font-size: 2rem;
    margin-top: 10px; /* 从20px减少到10px */
}
.service-card[data-v-505d1204] {
    padding: 1.5rem;
}
.service-icon[data-v-505d1204] {
    width: 70px;
    height: 50px;
}
}

/* 我们的优势 - 整合版 */
.advantages-section[data-v-25b366eb] {
  padding: 3rem 2rem; /* 从5rem减少到3rem */
  background: #f8f9fa;
  position: relative;
  scroll-margin-top: 60px;
  scroll-padding-top: 60px;
}
.section-spacing[data-v-25b366eb] {
  height: 10px; /* 从20px减少到10px */
}
.section-title[data-v-25b366eb] {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem; /* 从3rem减少到2rem */
  color: #333;
  margin-top: 20px; /* 从40px减少到20px */
  scroll-margin-top: 60px; /* 从100px减少到60px */
  padding-top: 10px; /* 从20px减少到10px */
}

/* 整合的4个卡片 - 复用help-container样式 */
.help-container[data-v-25b366eb] {
  max-width: 1200px;
  margin: 0 auto;
}
.help-row[data-v-25b366eb] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.help-row[data-v-25b366eb]:last-child {
  margin-bottom: 0;
}
.help-card[data-v-25b366eb] {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.help-card[data-v-25b366eb]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.help-card-header[data-v-25b366eb] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.help-icon[data-v-25b366eb] {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* 更新图标颜色和样式 */
.waiting-icon[data-v-25b366eb] {
  background-color: #E3F2FD;
  color: #2196F3;
}
.price-icon[data-v-25b366eb] {
  background-color: #FFF8E1;
  color: #FFB300;
}
.honesty-icon[data-v-25b366eb] {
  background-color: #E8F5E9;
  color: #4CAF50;
}
.selfService-icon[data-v-25b366eb] {
  background-color: #F3E5F5;
  color: #9C27B0;
}
.help-card-title[data-v-25b366eb] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.help-card-content[data-v-25b366eb] {
  color: #555;
  line-height: 1.7;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.help-card-content p[data-v-25b366eb] {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.help-card-content p[data-v-25b366eb]:last-child {
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
.advantages-section[data-v-25b366eb] {
    padding: 2rem 1rem; /* 从3rem减少到2rem */
    scroll-margin-top: 120px; /* 从120px减少到100px */
    scroll-padding-top: 120px;
}
.section-title[data-v-25b366eb] {
    font-size: 2rem;
    margin-top: 10px; /* 从20px减少到10px */
}
.help-row[data-v-25b366eb] {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.help-card[data-v-25b366eb] {
    padding: 1.5rem;
}
.help-card-header[data-v-25b366eb] {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
}
.help-icon[data-v-25b366eb] {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}
.help-card-title[data-v-25b366eb] {
    font-size: 1.3rem;
}
}

  /* 合作招募 - 修改为2x2网格布局 */
.partnership-section[data-v-02410bf4] {
    padding: 3rem 2rem;
    background: white;
    text-align: center;
    position: relative;
    scroll-margin-top: 60px;
    scroll-padding-top: 60px;
}
.section-spacing[data-v-02410bf4] {
    height: 10px; /* 从20px减少到10px */
}
.section-title[data-v-02410bf4] {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem; /* 从3rem减少到2rem */
    color: #333;
    margin-top: 20px; /* 从40px减少到20px */
    scroll-margin-top: 60px; /* 从100px减少到60px */
    padding-top: 10px; /* 从20px减少到10px */
}
.partnership-description[data-v-02410bf4] {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
  
  /* 联系方式容器 */
.contact-info-container[data-v-02410bf4] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem auto 3rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e3e7ed;
}
.contact-item[data-v-02410bf4] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.contact-item[data-v-02410bf4]:hover {
    color: #2196F3;
    transform: translateY(-2px);
}
.contact-icon[data-v-02410bf4] {
    font-size: 1.5rem;
}
.contact-text[data-v-02410bf4] {
    font-size: 1.1rem;
    font-weight: 600;
}
.contact-divider[data-v-02410bf4] {
    color: #999;
    font-size: 1.2rem;
    font-weight: 300;
}
  
  /* 三个卡片一行 */
.three-cards-grid[data-v-02410bf4] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.highlight-card[data-v-02410bf4] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
}
.highlight-card[data-v-02410bf4]:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.highlight-icon[data-v-02410bf4] {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.highlight-card:hover .highlight-icon[data-v-02410bf4] {
    transform: scale(1.1);
}
.highlight-title[data-v-02410bf4] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}
.highlight-text[data-v-02410bf4] {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex-grow: 1;
}
  
  /* 响应式设计 */
@media (max-width: 768px) {
.partnership-section[data-v-02410bf4] {
      padding: 2rem 1rem; /* 从3rem减少到2rem */
      scroll-margin-top: 120px; /* 从120px减少到100px */
      scroll-padding-top: 120px;
}
.section-title[data-v-02410bf4] {
      font-size: 2rem;
      margin-top: 10px; /* 从20px减少到10px */
}
    
    /* 移动端联系方式改为垂直排列 */
.contact-info-container[data-v-02410bf4] {
      flex-direction: column;
      gap: 0.8rem;
      padding: 1rem;
      margin: 2rem auto 2.5rem;
}
.contact-divider[data-v-02410bf4] {
      display: none;
}
.contact-item[data-v-02410bf4] {
      font-size: 1rem;
}
.contact-text[data-v-02410bf4] {
      font-size: 1rem;
}
    
    /* 移动端三个卡片改为单列 */
.three-cards-grid[data-v-02410bf4] {
      grid-template-columns: 1fr;
      gap: 1.5rem;
}
.highlight-card[data-v-02410bf4] {
      padding: 1.5rem;
}
.highlight-icon[data-v-02410bf4] {
      width: 70px;
      height: 70px;
      font-size: 2.5rem;
}
}
@media (max-width: 1024px) and (min-width: 769px) {
    /* 平板设备改为2列布局 */
.three-cards-grid[data-v-02410bf4] {
      grid-template-columns: repeat(2, 1fr);
}
    
    /* 最后一行的奇数卡片居中 */
.three-cards-grid:has(.highlight-card:nth-child(odd):last-child) 
    .highlight-card[data-v-02410bf4]:last-child {
      grid-column: 1 / span 2;
      max-width: 400px;
      justify-self: center;
}
}

/* 底部 - 简化版 */
.footer[data-v-430b9823] {
  background: #333;
  color: #fff;
  padding: 2rem 2rem;
  text-align: center;
  border-top: 1px solid #444;
}
.footer-simple[data-v-430b9823] {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-simple p[data-v-430b9823] {
  color: #999;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
  /* 移动端footer调整 */
.footer[data-v-430b9823] {
    padding: 1.5rem 1rem;
}
.footer-simple p[data-v-430b9823] {
    font-size: 0.8rem;
}
}

.home-page[data-v-16894c40] {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}
