/* 前端样式 */

/* 隐藏主题自带的header区域 - 使用更强大的选择器 */
.entry-header,
header.entry-header,
.entry-header h1,
.entry-header .post-breadcrumb,
.entry-header #post-meta {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 为落地页添加专门的body类，以便更好地控制样式 */
body.landing-page-template .entry-header,
body.landing-page-template header.entry-header,
body.landing-page-template .entry-header h1,
body.landing-page-template .entry-header .post-breadcrumb,
body.landing-page-template .entry-header #post-meta {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 隐藏文章标题 */
h1.entry-title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 隐藏可能的页面标题区域 */
.page-header {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 隐藏可能的文章标题区域 */
.post-header {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 隐藏可能的面包屑导航 */
.breadcrumb,
.post-breadcrumb,
#post-meta {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 针对您提到的具体header结构进行隐藏 */
header.entry-header h1,
header.entry-header #post-meta,
header.entry-header .post-breadcrumb,
header.entry-header .post-breadcrumb span,
header.entry-header .post-breadcrumb a {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.baiyue-lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Hero区域 */
.baiyue-lp-hero {
  background: linear-gradient(135deg, #004098, #0066cc);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 64, 152, 0.3);
  position: relative;
  overflow: hidden;
}

.baiyue-lp-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  z-index: 0;
}

.baiyue-lp-hero-content {
  position: relative;
  z-index: 1;
}

.baiyue-lp-hero-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.baiyue-lp-hero-content {
  text-align: center;
}

.baiyue-lp-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.baiyue-lp-hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* 按钮样式 */
.baiyue-lp-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin: 5px;
  text-align: center;
  min-width: 160px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.baiyue-lp-btn-primary {
  background: #fff;
  color: #004098 !important;
  border-color: #fff;
}

.baiyue-lp-btn-primary:hover {
  background: transparent;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.baiyue-lp-btn-secondary {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}

.baiyue-lp-btn-secondary:hover {
  background: #fff;
  color: #004098 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* 版块标题 */
.baiyue-lp-section-header {
  text-align: center;
  margin-bottom: 30px;
}

.baiyue-lp-section-title {
  color: #004098;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.baiyue-lp-section-subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* 痛点解决方案 */
.baiyue-lp-problem-solution {
  margin: 60px 0;
}

.baiyue-lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.baiyue-lp-problem-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #e0e0e0;
}

.baiyue-lp-problem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.baiyue-lp-problem-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.baiyue-lp-problem-title {
  color: #004098;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.baiyue-lp-problem-desc {
  color: #666;
  line-height: 1.6;
}

/* 核心服务 */
.baiyue-lp-services {
  margin: 60px 0;
  background: #f0f8ff;
  padding: 50px 30px;
  border-radius: 10px;
}

.baiyue-lp-service-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.baiyue-lp-service-features ul {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.baiyue-lp-service-features li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

.baiyue-lp-service-features li:before {
  content: "✓";
  color: #004098;
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: bold;
  font-size: 1.2rem;
}

.baiyue-lp-service-modes {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .baiyue-lp-service-modes {
    flex-direction: column;
  }
}

.baiyue-lp-service-mode {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1; /* 添加这一行，使每个服务模式卡片均匀分配宽度 */
}

.baiyue-lp-service-mode h3 {
  color: #004098;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.baiyue-lp-service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.baiyue-lp-service-mode p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* 服务优势 */
.baiyue-lp-advantages {
  margin: 60px 0;
}

.baiyue-lp-advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.baiyue-lp-advantage-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.baiyue-lp-advantage-item:hover {
  transform: translateY(-5px);
}

.baiyue-lp-advantage-icon {
  font-size: 2.5rem;
  color: #004098;
  margin-bottom: 20px;
}

.baiyue-lp-advantage-title {
  color: #004098;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.baiyue-lp-advantage-desc {
  color: #666;
  line-height: 1.6;
}

/* 适用行业 */
.baiyue-lp-industries {
  margin: 60px 0;
}

.baiyue-lp-industry-content p {
  text-align: center;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.baiyue-lp-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.baiyue-lp-industry-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.baiyue-lp-industry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.baiyue-lp-industry-item h3 {
  color: #004098;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.baiyue-lp-industry-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.baiyue-lp-industry-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* 流程部分 */
.baiyue-lp-process {
  margin: 60px 0;
  background: #f0f8ff;
  padding: 50px;
  border-radius: 10px;
}

.baiyue-lp-process-content p {
  text-align: center;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.baiyue-lp-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.baiyue-lp-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  position: relative;
  padding: 0 15px;
}

/* 特别针对第二行的步骤（步骤6和7），减小它们之间的间距 */
.baiyue-lp-step:nth-child(6) {
  margin-right: 5px;
}

.baiyue-lp-step:nth-child(7) {
  margin-left: 5px;
}

.baiyue-lp-step-number {
  width: 50px;
  height: 50px;
  background: #004098;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.baiyue-lp-step-title {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.baiyue-lp-step-desc {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .baiyue-lp-steps {
    flex-direction: column;
  }
  
  .baiyue-lp-step {
    margin-bottom: 30px;
  }
  
  /* 在移动端移除特殊样式 */
  .baiyue-lp-step:nth-child(6) {
    margin-right: 15px;
  }
  
  .baiyue-lp-step:nth-child(7) {
    margin-left: 15px;
  }
}

/* 服务承诺 */
.baiyue-lp-commitment {
  margin: 60px 0;
}

.baiyue-lp-commitment-content p {
  text-align: center;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.baiyue-lp-commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.baiyue-lp-commitment-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.baiyue-lp-commitment-item:hover {
  transform: scale(1.05);
}

.baiyue-lp-commitment-icon {
  font-size: 2rem;
  color: #004098;
  margin-bottom: 15px;
}

.baiyue-lp-commitment-item h3 {
  color: #004098;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.baiyue-lp-commitment-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* 服务标签 */
.baiyue-lp-service-tags {
  margin: 30px 0;
}

.baiyue-lp-tags-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 768px) {
  .baiyue-lp-tags-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .baiyue-lp-tag {
    margin-bottom: 0;
    padding: 6px 15px;
    font-size: 0.8rem;
  }
}

.baiyue-lp-tag {
  background: #004098;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* FAQ部分 */
.baiyue-lp-faq {
  margin: 60px 0;
}

.baiyue-lp-faq-items {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.baiyue-lp-faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.baiyue-lp-faq-item {
  margin-bottom: 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: transform 0.3s ease;
}

.baiyue-lp-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.baiyue-lp-faq-question {
  background: #f8f9fa;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: background 0.3s ease;
}

.baiyue-lp-faq-question:hover {
  background: #e9ecef;
}

.baiyue-lp-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.baiyue-lp-faq-question.active::after {
  content: "-";
}

.baiyue-lp-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}

.baiyue-lp-faq-answer.open {
  padding: 20px;
  max-height: 500px;
}

/* 客户评价 */
.baiyue-lp-testimonials {
  margin: 60px 0;
}

.baiyue-lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.baiyue-lp-testimonial {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  border-left: 4px solid #e0e0e0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.baiyue-lp-testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.baiyue-lp-testimonial-author {
  text-align: right;
  color: #004098;
  font-weight: bold;
}

/* 行动号召 */
.baiyue-lp-cta {
  background: linear-gradient(135deg, #004098, #0066cc);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin: 60px 0;
}

.baiyue-lp-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.baiyue-lp-cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.baiyue-lp-cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.baiyue-lp-cta-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.baiyue-lp-cta-phone {
  margin: 30px 0;
}

.baiyue-lp-contact-phone {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 20px 0;
  display: block;
  color: #ffcc00;
  text-decoration: none;
}

.baiyue-lp-contact-phone:hover {
  color: #ffdd33;
}

.baiyue-lp-cta-actions {
  margin: 30px 0;
}

.baiyue-lp-cta-info {
  margin-top: 30px;
  font-size: 1rem;
  opacity: 0.9;
}

.baiyue-lp-cta-info p {
  font-size: 14px;
  margin: 5px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .baiyue-lp-container {
    padding: 0px;
  }
  
  .baiyue-lp-hero {
    padding: 40px 15px;
    border-radius: 15px;
  }
  
  .baiyue-lp-hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .baiyue-lp-hero-content {
    text-align: center;
  }
  
  .baiyue-lp-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .baiyue-lp-hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  
  @media (max-width: 480px) {
    .baiyue-lp-hero-cta {
      flex-direction: column;
      align-items: center;
    }
  }
  
  .baiyue-lp-btn {
    padding: 8px 16px;
    font-size: 1rem;
    min-width: 140px;
    margin: 2px;
  }
  
  .baiyue-lp-section-header {
    margin-bottom: 25px;
  }
  
  .baiyue-lp-section-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .baiyue-lp-section-subtitle {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .baiyue-lp-problem-grid,
  .baiyue-lp-advantage-grid,
  .baiyue-lp-industry-grid,
  .baiyue-lp-commitment-grid,
  .baiyue-lp-testimonial-grid,
  .baiyue-lp-service-modes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .baiyue-lp-problem-item {
    border-top: 4px solid #e0e0e0;
  }
  
  .baiyue-lp-testimonial {
    border-left: 4px solid #e0e0e0;
  }
    
  .baiyue-lp-steps {
    flex-direction: column;
  }
  
  .baiyue-lp-step {
    margin-bottom: 30px;
  }
  
  .baiyue-lp-faq-items {
    max-width: 100%;
  }
  
  .baiyue-lp-faq-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .baiyue-lp-cta {
    padding: 40px 15px;
  }
  
  .baiyue-lp-cta-title {
    font-size: 1.8rem;
  }
  
  .baiyue-lp-contact-phone {
    font-size: 1.8rem;
  }
  
  .baiyue-lp-seo-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .baiyue-lp-hero {
    padding: 30px 15px;
  }
  
  .baiyue-lp-hero-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .baiyue-lp-hero-subtitle {
    font-size: 0.9rem;
  }
  
  .baiyue-lp-btn {
    min-width: 130px;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 2px;
  }
}

@media (max-width: 360px) {
  .baiyue-lp-hero-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .baiyue-lp-hero-subtitle {
    font-size: 0.8rem;
  }
  
  .baiyue-lp-btn {
    min-width: 110px;
    padding: 6px 12px;
    font-size: 0.8rem;
    margin: 2px;
  }
}