/* =======================================
   主页专属样式 (home.css) - 按设计图还原
======================================= */

/* =======================================
   通用布局与间距
======================================= */
.home-main {
  width: 100%;
  position: relative;
  background: transparent;
}

.home-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.text-center {
  text-align: center;
}

.blue { color: #006fff !important; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #006fff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 24px;
  height: 48px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #0056cc;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #006fff;
  border: 1px solid #006fff;
  border-radius: 4px;
  padding: 0 24px;
  height: 40px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline.white {
  color: #fff;
  border-color: #fff;
}

/* =======================================
   玻璃卡片 (Glassmorphism)
======================================= */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}
.pd-0 { padding: 0 !important; }

/* =======================================
   业务区块通用标题
======================================= */
.home-section {
  position: relative;
  padding: 80px 0;
  z-index: 10;
}

.section-title {
  margin: 0 auto 100px;
}

.section-title h2 {
  font-size: 46px;
  color: #333;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-title p.subtitle {
  font-size: 20px;
  color: #666;
}

/* =======================================
   Block 1: Hero 首屏
======================================= */
.home-hero {
  position: relative;
  z-index: 10;
}

.hero-top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-left {
  flex: 0 0 550px;
  text-align: left;
}

.hero-title {
  font-size: 60px;
  color: #222;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-hl {
  color: #006fff;
}

.hero-subtext {
  font-size: 16px;
  color: #222;
  margin-bottom: 30px;
}

.hero-check-list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #666;
}

.hero-check-list svg {
  width: 18px;
  height: 18px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* =======================================
   Hero 下方表单条
======================================= */
.hero-form-strip {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  gap: 40px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.strip-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.strip-sub {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  margin-top: 4px;
}

.strip-form {
  display: flex;
  flex: 1;
  gap: 16px;
}

.strip-form input,
.strip-form select {
  flex: 1;
  height: 48px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 14px;
  outline: none;
}

.strip-form input:focus,
.strip-form select:focus {
  border-color: #006fff;
}

.btn-submit {
  background: #006fff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 32px;
  height: 48px;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

/* =======================================
   Block 2: 您的推广难题
======================================= */
.pain-points-bg {
  background: #2a3b4c; /* 深色背景 */
  padding: 80px 0;
}

.pain-points-bg .section-title h2 { color: #fff; }
.pain-points-bg .section-title .subtitle { color: #a0aebc; }

.vs-header {
  color: #fff;
  font-size: 54px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  margin-bottom: 25px;
}

.vs-body {
  display: flex;
  align-items: stretch;
  position: relative;
  background: url('../images/index/td-neirong.png') 100% 100% no-repeat;
  display: flex; 
  align-items: center;
  position: relative;
  background-size:100% 100% ;
}

.vs-col {
  flex: 1;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}



.vs-col h3 { font-size: 36px; margin-bottom: 16px; }
.vs-col p { font-size: 16px; opacity: 0.8; margin-bottom: 30px; line-height: 1.6; }

.vs-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  color: #006fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 2;
}

.vs-tabs {
  display: flex;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(40px);
  border-radius: 0 0 16px 16px;
  padding: 20px;
  gap: 12px;
  justify-content: center;
}

.vs-tab {
  padding: 10px 20px;
  color: #fff;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}
.vs-tab.active {
  background: #fff;
  color: #2a3b4c;
  font-weight: bold;
}

/* =======================================
   Block 3: 多平台覆盖
======================================= */
.channel-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.channel-tab {
  padding: 12px 30px;
  border-radius: 30px;
  background: #fff;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #e0e0e0;
}
.channel-tab.active {
  background: #006fff;
  color: #fff;
  border-color: #006fff;
}

.channel-content {
  display: flex;
  padding: 60px;
  gap: 60px;
  align-items: center;
}

.channel-left {
  flex: 1;
}

.channel-left h3 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.channel-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.channel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.channel-features li {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 8px 12px;
}

.channel-features li:before {
  content: "✔";
  color: #006fff;
  margin-right: 8px;
}

.channel-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =======================================
   Block 4: 真实效果
======================================= */
.data-proof-card {
  display: flex;
  padding: 0;
  overflow: hidden;
}

.proof-left {
  padding: 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.proof-pager {
  font-size: 24px;
  color: #999;
  font-family: Bahnschrift;
  margin-bottom: 20px;
}
.proof-pager .cur { font-size: 40px; color: #006fff; font-weight: bold; }

.proof-left h3 {
  font-size: 34px;
  color: #333;
  margin-bottom: 20px;
}

.proof-desc {
  font-size: 16px;
  color: #616161;
  line-height: 1.8;
  margin-bottom: 40px;
}

.proof-arrows {
  margin-top: auto;
  display: flex;
  gap: 12px;
}
.proof-arrows .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #f0f0f0;
  color: #666;
  cursor: pointer;
}
.proof-arrows .arrow.active { background: #006fff; color: #fff; }

.proof-mid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  gap: 40px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-size: 56px;
  font-family: Bahnschrift;
  font-weight: bold;
}
.stat-lbl { font-size: 14px; color: #999; }

.proof-right {
  flex: 1.5;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-holder {
  width: 100%; height: 100%;
  background: url('../images/worker-placeholder.png') center/cover;
  min-height: 400px;
}

/* =======================================
   Block 5: 合作客户
======================================= */
.clients-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
}

.clients-list img {
  height: 40px;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.clients-list img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* =======================================
   Block 6: 底部表单与工具
======================================= */
.lead-grid {
  display: flex;
  gap: 40px;
}

.lead-form-col {
  flex: 1;
  padding: 40px;
}

.lead-form-col h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.stack-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack-form input,
.stack-form select {
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.btn-submit.full { width: 100%; }

.form-terms {
  font-size: 12px;
  color: #999;
  text-align: center;
}

.lead-info-col {
  flex: 1.2;
  padding: 40px;
  background: rgba(0, 111, 255, 0.03);
  border-radius: 16px;
}

.info-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.info-title-row h2 {
  font-size: 43px;
  line-height: 1.2;
}

.right-btn {
  margin-top: 10px;
}

.info-sub {
  color: #666;
  margin-bottom: 30px;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.f-row {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  align-items: center;
}

.icon-bx {
  width: 48px;
  height: 48px;
  background: #006fff;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.f-row h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.f-row p {
  font-size: 14px;
  color: #666;
}

/* Button Rounding */
.btn-primary, .btn-outline, .btn-submit, .btn-large {
  border-radius: 50px !important;
}

/* Pain points Layout updates */
#vs-bad-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
#vs-bad-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #006fff, transparent);
  border-radius: 2px;
}

#vs-good-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
#vs-good-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  background: linear-gradient(-90deg, #fff, transparent);
  border-radius: 2px;
}


.vs-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin-top: 20px;
  border-radius: 20px;
}

.vs-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: rgba(255,255,255,1);
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 8px;
}

.vs-tab img {
  height: 60px;
  object-fit: contain;
  opacity: 0.6;
  transition: all 0.3s;
}

.vs-tab.active, .vs-tab:hover {
  background: linear-gradient(180deg, rgba(171, 230, 255, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

.vs-tab.active span, .vs-tab:hover span {
  color: #333;
}

.vs-tab.active, .vs-tab:hover {
  color: #333;
}
.vs-tab.active img, .vs-tab:hover img {
  opacity: 1;
}

.channel-features li {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 8px 16px;
}


/* Logo Wall animations */
.logo-wall-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}

.logo-track {
  display: flex;
  width: max-content;
}

.logo-group {
  display: flex;
  gap: 60px;
  padding-right: 60px;
  flex-shrink: 0;
}

.logo-group img {
  height: 60px;
  object-fit: contain;
  transition: all 0.3s;
}

.scroll-left {
  animation: scrollLeft 30s linear infinite;
  display: flex;
  width: max-content;
}

.scroll-right {
  animation: scrollRight 30s linear infinite;
  display: flex;
  width: max-content;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } 
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

