/* 代理页面样式 */

/* 页面标题区域 */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background-image: url('../images/bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 80px;
  color: #fff;
}

/* 添加暗色遮罩，使文字更加清晰可见 */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* 代理流程 */
.agent-process {
  padding: 80px 0;
  background-color: var(--white);
}

/* 标题区域 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--light-text);
  font-weight: normal;
  display: block;
}

.process-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-container::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  width: 20%;
  text-align: center;
  padding: 0 10px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.5;
}

/* 代理优势 */
.agent-benefits {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* 联系区域 */
.agent-contact {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: transparent;
  color: var(--white);
}

/* 响应式设计 */
@media (max-width: 992px) {
  .process-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .process-container::before {
    display: none;
  }
  
  .process-step {
    width: 45%;
    margin-bottom: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 50px;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    margin-bottom: 10px;
  }
  
  .process-step {
    width: 100%;
    max-width: 300px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.8rem;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-desc {
    font-size: 1rem;
  }
}
