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

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  min-width: 1920px;
}

/* 日结发薪页面样式 */

/* 英雄区域 */
.hero {
  position: relative;
  overflow: hidden;
  height: 510px;
  display: flex;
  align-items: center;
  margin-top: 100px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #f0f8ff;
}

.hero-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  color: #333;
  text-align: left;
  padding: 0 0 0 20px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  color: #1890ff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(24, 144, 255, 0.1);
  text-align: left;
  writing-mode: horizontal-tb !important;
  transform: none !important;
  display: block !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
}

.hero-content p {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: left;
}

.cta-button {
  background: linear-gradient(135deg, #1890ff, #40a9ff);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(24, 144, 255, 0.3);
  text-align: left;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 144, 255, 0.4);
}

/* 流程介绍区域 */
.process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-header p {
  font-size: 18px;
  color: #666;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background: transparent;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
}

/* 添加连接线 */
.process-steps {
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #1890ff 0%, #40a9ff 50%, #1890ff 100%);
  z-index: 1;
}

/* 在移动端隐藏连接线 */
@media (max-width: 768px) {
  .process-steps::before {
    display: none;
  }
}

.step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 3;
}

.step-icon:hover {
  transform: scale(1.05);
}

.step-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.step h3 {
  font-size: 18px;
  color: #1890ff;
  margin-bottom: 12px;
  font-weight: 600;
}

.step p {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 500;
}

.step ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.step li {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.step li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1890ff;
  font-weight: bold;
}

/* 功能介绍区域 */
.features-section {
  padding: 80px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%);
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-top: 200px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.feature-content h3 {
  font-size: 24px;
  color: #1890ff;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.feature-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1890ff;
  font-weight: bold;
}

/* 无卡发薪区域 */
.cardless-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.cardless-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.cardless-feature {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #e6f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cardless-feature h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.cardless-feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 无卡发薪功能介绍 */
.cardless-benefits {
  padding: 80px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.benefit-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.benefit-card li {
  font-size: 14px;
  color: #1890ff;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.benefit-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1890ff;
  font-weight: bold;
}

/* 电子合同区域 */
.contract-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contract-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contract-text h2 {
  font-size: 48px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.contract-text>p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.contract-benefits h3 {
  font-size: 24px;
  color: #1890ff;
  margin-bottom: 24px;
  font-weight: 600;
}

.benefit-item {
  margin-bottom: 24px;
}

.benefit-item h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.contract-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
  color: white;
}

.btn-secondary {
  background: white;
  color: #1890ff;
  border: 2px solid #1890ff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 144, 255, 0.3);
}

.btn-secondary:hover {
  background: #1890ff;
  color: white;
}

.contract-image {
  text-align: center;
}

.contract-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 行业场景应用 */
.industry-section {
  padding: 80px 0;
  background: white;
}

.industry-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.industry-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab {
  padding: 16px 24px;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #666;
}

.tab.active {
  background: #1890ff;
  color: white;
}

.tab:hover {
  background: #e6f7ff;
  color: #1890ff;
}

.tab.active:hover {
  background: #1890ff;
  color: white;
}

.industry-details {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.tab-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.effect {
  background: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #1890ff;
}

.effect h4 {
  font-size: 16px;
  color: #1890ff;
  margin-bottom: 8px;
  font-weight: 600;
}

.effect p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* 工伤保险区域 */
.insurance-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.insurance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.insurance-text h2 {
  font-size: 48px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.insurance-text>p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.insurance-description {
  margin-bottom: 40px;
}

.insurance-description p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.insurance-buttons {
  display: flex;
  gap: 16px;
}

.insurance-image {
  text-align: center;
}

.insurance-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 20px;
    min-height: 300px;
    background-size: contain;
    background-position: top center;
  }

  .feature-content {
    margin-top: 150px;
    padding: 15px;
  }

  .cardless-features {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contract-content {
    grid-template-columns: 1fr;
  }

  .industry-content {
    grid-template-columns: 1fr;
  }

  .insurance-content {
    grid-template-columns: 1fr;
  }

  .hero-container {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .contract-buttons {
    flex-direction: column;
  }

  .insurance-buttons {
    flex-direction: column;
  }
}