/* 产品目标 Tab 栏组件样式 */
/* 产品目标 Tab 栏部分 - 更新样式 */
.product-tab-section {
  padding: 80px 0;
  background: #fff;
}

.product-tab-section .container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .product-tab-section .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .product-tab-section .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .product-tab-section .container{
    width: 1170px;
  }
}

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

.product-main-title {
  font-size: 34px;
  color: #333;
  margin: 20px 0 10px;
}

.product-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 20px;
}

/* Tab 栏和内容容器 */
.product-tab-container {
  border: 1px solid #eee;
}
@media (max-width: 1170px) {
  .product-tab-container {
    margin-left: 15px;
    margin-right: 15px;
  }
}
/* Tab 栏 */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}

.product-tab {
  flex: 1;
  width: 50%;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  background: #f8f8f8;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-align: center;
}
.product-tab:hover {
  background: #eee;
  color: #000;
}

.product-tab.active {
  background: #357AD5;
  color: #fff;
}

/* Tab 内容区域 */
.product-content {
  position: relative;
}

.product-panel {
  display: none;
}

.product-panel.active {
  display: block;
}

.product-content-wrapper {
  display: flex;
  align-items: flex-start;
}

.product-content-left {
  width: 50%;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
}

.product-content-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 106px;
}

/* 步骤样式 */
.product-step {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 30px;
}
.product-step:last-child {
  margin-bottom: 0;
}

.product-step-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-step-title {
  font-size: 20px;
  color: #357AD5;
  margin: 10px 0;
  text-align: left;
}

.product-step-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.product-arrow-down {
  position: absolute;
  left: 40px;
  top: 103px;
  width: 10px;
  display: flex;
  justify-content: center;
}

.product-arrow-down img {
  width: 10px;
  height: auto;
  display: block;
}

/* 目标区域样式 */
.product-goal-title {
  font-size: 20px;
  color: #151515;
  margin: 0 0 37px;
}

.goal-label {
  font-size: 26px;
  color: #357AD5;
}

.product-goal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
}

.product-goal-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 21px;
  padding-left: 20px;
  position: relative;
}

.product-goal-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 16px;
}

/* 获取个性化方案按钮样式 */
.product-btn-wrapper {
  position: relative;
  display: inline-block;
}

.product-btn {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #357AD5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(53, 122, 213, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-btn-arrow {
  width: 6px;
  height: auto;
  display: block;
}

.product-btn:hover {
  background: #2a6bc4;
  box-shadow: 0 4px 12px rgba(53, 122, 213, 0.4);
}

/* 二维码气泡样式已移至 qr-bubble-component.css */
.product-btn-wrapper:hover .qr-bubble {
  opacity: 1;
  visibility: visible;
}

/* 响应式设计 */
@media (max-width: 991px) {
  .product-content-wrapper {
    flex-direction: column;
  }

  .product-content-left,
  .product-content-right {
    width: 100%;
    /* 修改边距界面更美观 */
    padding: 30px 60px;
  }
}

@media only screen and (max-width: 468px) {
  .product-tab-section{
    padding:40px 0;
  }

  .product-main-title {
    font-size: 24px;
  }

  .product-subtitle {
    font-size: 14px;
  }

  .product-header{
    margin-bottom: 20px;
  }

  .product-tab{
    font-size: 14px;
    padding:10px 15px;
  }
  .product-content-left{
    padding:24px 20px 0;
  }
  .product-content-right{
    padding:20px;
  }
  .product-step-icon{
    width:20%;
    height:auto;
    margin-right: 5%;
  }
  .product-step-icon img {
    width: 100%;
    height:100%;
  }

 .product-content-wrapper {
    gap: 0;
  }
  .product-step{
    gap:0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-step-title {
    font-size: 16px;
  }


  .product-step-desc {
    font-size: 12px;
  }

  .product-step:last-child {
    margin-bottom: 0;
    padding-bottom: 23px;
    border-bottom: 1px solid #EEEEEE;
  }

 .goal-label {
    font-size: 18px;
  }

  .product-goal-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
 .product-goal-list {
    margin-bottom: 10px;
    width:100%;
    padding-left:22px;
  }

  .product-goal-list li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .product-goal{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* 修改箭头位置，页面更美观 */
  .product-arrow-down {
    left: 9%;
    top: 110%;
  }
}

