/* bomao_pic_text2 样式 */
.bomao-pic-text2 {
  position: relative;
  background: #E4E4E4;
  border-radius: 1.5625rem 1.5625rem 0 0; /* 50px / 2 = 25px */
  padding: 3.75rem 0 2.5rem; /* 上下内边距 */
  z-index: 100;
  overflow: hidden;
}

.bomao-pic-text2-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 1.25rem; */ /* 40px / 2 = 20px */
}

/* 主标题区域 */
.bomao-pic-text2-header {
  width: 100%;
  text-align: left;
  margin-bottom: 2.5rem;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.bomao-pic-text2-title {
  font-family: var(--title-font-family), Montserrat, sans-serif;
  font-weight: 700;
  font-size: 2.5rem; /* 80px / 2 = 40px */
  line-height: 1.219;
  color: #000000;
  margin: 0;
  /* flex: 1; */
  width: 60%;
  animation: bomaoFadeInUp 0.8s ease-out both;
}

/* 卡片容器 */
.bomao-pic-text2-cards {
  display: flex;
  gap: 1.8125rem; /* 58px / 2 = 29px */
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  animation: bomaoFadeInUp 0.8s ease-out 0.2s both;
}

/* 单个卡片 */
.bomao-pic-text2-card {
  /* flex: 1; */
  /* position: relative; */
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.81rem; /* 20px / 2 = 10px */
}
.bomao-pic-text2-card:nth-child(even){
  flex-direction:row-reverse;
}
/* 卡片背景图片容器 */
.bomao-pic-text2-card-bg {
  /* position: relative; */
  width: 48%;
  /* padding-bottom: 100%; */ /* 保持正方形比例 */
  border-radius: 0.9375rem; /* 30px / 2 = 15px */
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 23/13;
  transition: transform 0.3s ease;
}

.bomao-pic-text2-card:hover .bomao-pic-text2-card-bg {
  transform: scale(1.02);
}
.bomao-pic-text2-card:hover .bomao-pic-text2-card-title{
  color:var(--color-primary);
}
.bomao-pic-text2-card-bg-img {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  aspect-ratio: 23/13;
  transition: transform 0.3s ease;
}

.bomao-pic-text2-card:hover .bomao-pic-text2-card-bg-img {
  transform: scale(1.05);
}
.bomao-pic-text2-card:hover .bomao-pic-text2-card-bg-img {
  transform: scale(1.05);
}
/* 卡片内容 */
.bomao-pic-text2-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem; /* 20px / 2 = 10px */
  flex: 1;
  padding: 0;
}

.bomao-pic-text2-card-title {
  font-family: var(--title-font-family), Montserrat, sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 48px / 2 = 24px */
  line-height: 1.219;
  color: #000000;
  margin: 0;
  transition: color 0.3s ease;
}

.bomao-pic-text2-card:first-child .bomao-pic-text2-card-title {
}

.bomao-pic-text2-card-desc {
  font-family: var(--font-family), Montserrat, sans-serif;
  font-weight: 500;
  font-size: 0.875rem; /* 28px / 2 = 14px */
  line-height: 1.219;
  color: #000000;
  margin: 0;
  white-space: pre-line;
}

/* 按钮区域 */
.bomao-pic-text2-action {
  width: 100%;
  text-align: center;
  margin-top: 1.25rem;
  animation: bomaoFadeInUp 0.8s ease-out 0.4s both;
}

.bomao-pic-text2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3D99FB;
  color: #000000;
  padding: 0.3125rem 0.9375rem; /* 10px 30px / 2 */
  border: 1px solid #000000;
  border-radius: 2.5rem; /* 80px / 2 = 40px */
  text-decoration: none;
  font-family: var(--title-font-family), Montserrat, sans-serif;
  font-weight: 700;
  font-size: 0.5625rem; /* 18px / 2 = 9px */
  line-height: 1.219;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-height: 1.8125rem; /* 58px / 2 = 29px */
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bomao-pic-text2-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF100;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.bomao-pic-text2-btn:hover {
  color: #7B62DA;
  text-decoration: none;
  border-color: #FFF100;
}

.bomao-pic-text2-btn:hover::before {
  transform: translateX(0);
}
/* Learn More 按钮，沿用 company_infor 动效 */
.bomao-pic-text2 .bomao-learn-more-btn {
  z-index: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  height: 1.8125rem;
  /* height: auto; */
  line-height: 1.75rem;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.5625rem;
  transition: all .3s ease-in-out;
  cursor: pointer;
  border-radius: 2.5rem;
  border: 1px solid #000;
  overflow: hidden;
  margin: 0;
}
.bomao-pic-text2 .bomao-learn-more-btn::before{ content:""; position:absolute; inset:-1px; background:#FFF100; transform:translateX(-100%); z-index:-1; transition:all .3s ease-in-out; }
.bomao-pic-text2 .bomao-learn-more-btn:hover::before{ transform:translateX(0); }
.bomao-pic-text2 .bomao-learn-more-btn:hover{ color:#876DE1; border-color:transparent; }
/* 响应式设计 - 平板 */
@media (max-width:1200px){ 
  .bomao-pic-text2 .bomao-learn-more-btn {
    font-size:0.75rem;
  }                       
}
@media (max-width: 992px) {
  .bomao-pic-text2-card{
    flex-direction:column !important;
  }
  .bomao-pic-text2 .bomao-learn-more-btn {
    padding: 0 0.825rem;
  }  
  .bomao-pic-text2 {
    padding: 2rem 0;
  }
  .bomao-pic-text2-card-content,.bomao-pic-text2-card-bg{
    width:100%;
  }
  .bomao-pic-text2-title {
    font-size: 2rem;
  }

  .bomao-pic-text2-cards {
    gap: 1.25rem;
  }

  .bomao-pic-text2-card-title {
    font-size: 1.25rem;
  }

  .bomao-pic-text2-card-desc {
    font-size: 0.75rem;
  }

  .bomao-pic-text2-btn {
    font-size: 0.5rem;
  }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
  .bomao-pic-text2 .bomao-learn-more-btn {
    margin: 0 auto;
  }
  .bomao-pic-text2 {
    padding: 1.5rem 0;
    border-radius: 1rem 1rem 0 0;
  }

  .bomao-pic-text2-header {
    text-align: center;
    margin-bottom: 1rem;
  }

  .bomao-pic-text2-title {
    font-size: 1.5rem;
  }

  .bomao-pic-text2-cards {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .bomao-pic-text2-card-content {
    text-align: center;
  }

  .bomao-pic-text2-card-title {
    font-size: 1.125rem;
  }

  .bomao-pic-text2-card-desc {
    font-size: 0.625rem;
  }

  .bomao-pic-text2-btn {
    font-size: 0.5625rem;
    padding: 0.5rem 1.25rem;
    min-height: 2rem;
  }

  .bomao-pic-text2-action {
    margin-top: 1rem;
  }
}

/* 超小屏幕 */
@media (max-width: 480px) {
  .bomao-pic-text2 {
    padding: 1rem 0;
  }

  .bomao-pic-text2-title {
    font-size: 1.25rem;
  }

  .bomao-pic-text2-card-title {
    font-size: 1rem;
  }

  .bomao-pic-text2-card-desc {
    font-size: 0.5625rem;
    line-height: 1.4;
  }

  .bomao-pic-text2-btn {
    font-size: 0.5rem;
    padding: 0.4rem 1rem;
  }
}

/* 动画定义 */
@keyframes bomaoFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

