/* å…¬å¸ä¿¡æ¯ç»„ä»¶æ ·å¼ */
:root {
  /* é¢œè‰²å˜é‡ */
  --bomao-primary-blue: #3b82f6;
  --bomao-blue-gradient:linear-gradient(115deg, #519FE9 -5.09%, #064FC2 103.17%);
  --bomao-white: #ffffff;
  --bomao-text-dark: #000;
  --bomao-text-gray: #6b7280;
  --bomao-border-gray: #e5e7eb;
  
  /* é—´è·å˜é‡ */
  --bomao-spacing-xs: 8px;
  --bomao-spacing-sm: 0.375rem;
  --bomao-spacing-md: 0.625rem;
  --bomao-spacing-lg: 1rem;
  --bomao-spacing-xl: 1.5rem;
  --bomao-spacing-xxl: 2rem;
  
  /* å­—ä½“å˜é‡ */
  --bomao-font-size-sm: 0.4375rem;
  --bomao-font-size-base: 0.5rem;
  --bomao-font-size-lg: 0.5625rem;
  --bomao-font-size-xl: 1rem;
  --bomao-font-size-hero: 2.5rem;
  --bomao-line-height-base: 1.6;
  --bomao-line-height-tight: 1.2;
  
  /* å…¶ä»–å˜é‡ */
  --bomao-border-radius-sm: 8px;
  --bomao-border-radius-md: 0.375rem;
  --bomao-border-radius-lg: 0.5rem;
  --bomao-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --bomao-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --bomao-transition: all .3s ease-in-out;
}

/* ä¸»å®¹å™¨ */
.bomao-company-infor {
  margin-top: -3.125rem;
  border-radius: 1.5625rem 1.5625rem 0 0;
  background: #E4E4E4;
  position: relative;
  z-index: 101;
  margin-bottom: 3.125rem;
}

/* é¡¶éƒ¨æ ‡é¢˜åŒºåŸŸ */
.bomao-company-infor .bomao-header-section {
  padding: 2.5rem 0 1.875rem; 
  text-align: center;
}

.bomao-company-infor .bomao-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bomao-company-infor .bomao-main-title {
  margin-bottom: 0.625rem;
  text-align: left;
  font-size: var(--bomao-font-size-hero);
  font-weight: 700;
  color: var(--bomao-text-dark);
  margin: 0;
  line-height: 1.2;
}

.bomao-company-infor .bomao-main-subtitle {
  text-align: left;
  font-size: var(--bomao-font-size-xl);
  color: var(--bomao-text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.bomao-company-infor .bomao-learn-more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 1.75rem; */
  line-height: 1.75rem;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.5625rem;
  transition: var(--bomao-transition);
  cursor: pointer;
  border-radius: 2.5rem;
  border: 1px solid #000;
  overflow: hidden;
  min-width: 5.15625rem;
  padding: 0 1.25rem;
}
.bomao-learn-more-btn::before{
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  bottom: -1px;
  background-color: #FFF100;
  transform: translateX(-100%);
  z-index: -1;
  transition: var(--bomao-transition);
}
.bomao-learn-more-btn:hover::before{
  transform: translateX(0);
}
.bomao-learn-more-btn:hover{
  color: #876DE1;
  border-color: transparent;
}



@media (min-width:1600px){
  .fancybox-content{
    max-width: 80%;
  }
}
.fancybox-content{
    background: none;
    padding: 0;
  }
.bomao-company-infor .bomao-video-wrapper {
  position: relative;
  border-radius: 1.125rem 1.125rem 0 0;
  overflow: hidden;
  box-shadow: var(--bomao-shadow-md);
  background: var(--bomao-white);
}

.bomao-company-infor .bomao-video-player {
  width: 100%;
  height: auto;
  min-height: 12.5rem;
  display: none; /* é»˜è®¤éšè—ï¼Œç‚¹å‡»æ’­æ”¾æŒ‰é’®åŽæ˜¾ç¤º */
}

.bomao-company-infor .bomao-video-player[style*="display: block"] {
  display: block !important;
}

.bomao-company-infor .bomao-video-placeholder {
  position: relative;
  width: 100%;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.bomao-company-infor .bomao-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12.5rem;
}

.bomao-company-infor .bomao-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: var(--bomao-transition);
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0 4px 1.5625rem 0 rgba(0, 67, 111, 0.14);
  backdrop-filter: blur(0.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bomao-company-infor .bomao-play-button i{
  font-size: 1.4375rem;
  color: #939394;
  transform: translateX(4px);
}

.bomao-company-infor .bomao-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ç»Ÿè®¡æ•°æ®åŒºåŸŸ - ç‹¬ç«‹çš„è“è‰²èƒŒæ™¯åŒºåŸŸ */
.bomao-company-infor .bomao-stats-section {
  background: var(--bomao-blue-gradient);
  padding: 0.875rem 2.5rem;
  color: var(--bomao-white);
  border-radius: 0 0 1.125rem 1.125rem;
}

.bomao-company-infor .bomao-stats-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bomao-spacing-xxl);
}

/* ç»Ÿè®¡æ•°æ®ç½‘æ ¼ */
.bomao-company-infor .bomao-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.1875rem;
  /* flex: 1; */
  /* max-width: 500px; */
  width: 50%;
}

.bomao-company-infor .bomao-stat-card {
  text-align: center;
  transition: var(--bomao-transition);
  /* min-height: 120px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bomao-company-infor .support-ico{
      height: 1rem;
    width: auto;
    aspect-ratio: 1 / 1;
}
.bomao-company-infor .support-ico img{
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    vertical-align: top;
}
.bomao-company-infor .bomao-stat-number {
  margin-bottom: 4px;
  font-size: 1.5625rem;
  font-weight: 700;
  color: var(--bomao-white);
  margin-bottom: 0.64px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
}
.bomao-company-infor .bomao-stat-number-text{
  font-weight: 700;
  color: var(--bomao-white);
  line-height: 1.2;
}
.bomao-company-infor .bomao-stat-number-unit{
  font-weight: 600;
  color: var(--bomao-white);
  line-height: 1.2;
}

.bomao-company-infor .bomao-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bomao-white);
  margin-bottom: 2px;
  line-height: 1.2;
}

.bomao-company-infor .bomao-stat-sublabel {
  font-size: 0.625rem;
  color: var(--bomao-white);
  line-height: 1.2;
  font-weight: 600;
}

/* å³ä¾§ç‰¹è‰²ä¿¡æ¯ */
.bomao-company-infor .bomao-features-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  /* max-width: 544px; */
}

.bomao-company-infor .bomao-feature-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--bomao-transition);
}


.bomao-company-infor .bomao-feature-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
}

.bomao-company-infor .bomao-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bomao-white);
  margin: 0 0 10px 0;
  line-height: var(--bomao-line-height-tight);
}

.bomao-company-infor .bomao-feature-description {
  font-size: 0.625rem;
  color: var(--bomao-white);
  margin: 0;
  line-height: 1.2;
  font-weight: 400;
}

/* æ”¯æŒæœåŠ¡åŒºåŸŸ */
.bomao-company-infor .bomao-support-section {
  padding: 1.875rem 0 5.625rem;
}

.bomao-company-infor .bomao-support-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bomao-text-dark);
  margin-bottom: var(--bomao-spacing-xxl);
  position: relative;
}

.bomao-company-infor .bomao-support-title .light{
  color: #7B62DA;
  display: inline-block;
  line-height: 1.2;
}

.bomao-company-infor .bomao-support-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.bomao-company-infor .bomao-support-card {
  text-align: left;
  width: calc(25% - 1.40625rem);
  transition: all 0.5s;
}
.bomao-company-infor .bomao-support-card:hover{
  transform: scale(1.15);
}


.bomao-company-infor .bomao-support-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bomao-text-dark);
    margin-bottom: 0.625rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.bomao-company-infor .bomao-support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bomao-company-infor .bomao-support-item {
  font-size: 0.625rem;
  color: var(--bomao-text-dark);
  line-height: 1.2; 
  margin-bottom: 0.625rem;
  font-weight: 400;
  position: relative;
  padding-left: 0.5rem;
}

.bomao-company-infor .bomao-support-item::before {
  content: "";
  color: var(--bomao-text-dark);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bomao-text-dark);
}

.bomao-company-infor .bomao-support-item:last-child {
  margin-bottom: 0;
}

/* å“åº”å¼è®¾è®¡ */
@media (max-width: 1500px) {
  .bomao-company-infor .bomao-stats-grid{
    column-gap: 0.625rem;
  }
  .bomao-company-infor .bomao-stat-number{
    font-size: 1.25rem;
  }
  .bomao-company-infor .bomao-stat-sublabel{
    font-size: 0.75rem;
  }
}
@media (max-width: 1200px) {
  .bomao-company-infor .bomao-stats-content {
    gap: var(--bomao-spacing-xl);
  }
  
  .bomao-company-infor .bomao-stats-grid {
    /* max-width: 450px; */
  }
  
  .bomao-company-infor .bomao-features-info {
    /* max-width: 10.9375rem; */
  }
  
  .bomao-company-infor .bomao-support-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    flex-wrap: wrap;
  }
  .bomao-company-infor .bomao-support-card{
    width: calc(50% - 0.9375rem);
  }
  .bomao-company-infor .bomao-play-button{
    width: 3.5rem;
    height: 3.5rem;
  }
  .bomao-company-infor .bomao-play-button i{
    /* font-size: 1.125rem; */
  }
  .bomao-company-infor .bomao-learn-more-btn{
    font-size: 0.75rem;
  }
  .bomao-company-infor .bomao-feature-description{
    font-size: 0.75rem;
  }
  .bomao-company-infor .bomao-support-item{
    font-size: 0.75rem;
  }
}

@media (max-width: 991px) {
  :root {
    --bomao-font-size-hero: 1.5rem;
    --bomao-font-size-xl: 0.875rem;
    --bomao-spacing-xl: 1rem;
    --bomao-spacing-xxl: 1.5rem;
  }
  .bomao-company-infor .bomao-stats-grid{
    row-gap: 1.25rem;
    grid-template-columns:repeat(4, 1fr);
    grid-template-rows: repeat(1,1fr);
  }
  .bomao-company-infor .bomao-header-section{
    padding: 2.5rem 0 1.5625rem;
  }
  .bomao-company-infor .bomao-header-content {
    gap: var(--bomao-spacing-md);
  }
  .bomao-company-infor .bomao-play-button{
    /* width: 1.875rem; */
    /* height: 1.875rem; */
  }
  .bomao-company-infor .bomao-play-button i{
    /* font-size: 0.9375rem; */
  }
  .bomao-company-infor .bomao-stats-content {
    flex-direction: column;
    align-items: center;
    gap: var(--bomao-spacing-xl);
  }
  
  .bomao-company-infor .bomao-stats-grid {
    width: 100%;
    max-width: 15.625rem;
    max-width: 90%;
  }
  .bomao-company-infor .bomao-stats-section{
    padding: 0.9375rem 0 1.5625rem;
  }
  
  .bomao-company-infor .bomao-features-info {
    width: 100%;
    max-width: 15.625rem;
    flex-direction: row;
    max-width: 90%;
  }
  
  .bomao-company-infor .bomao-support-grid {
    grid-template-columns: 1fr;
    gap: var(--bomao-spacing-md);
  }
  .bomao-company-infor .bomao-support-title{
    font-size: 1.25rem;
  }
  .bomao-company-infor .bomao-support-card-title{
    font-size: 1rem;
  }
  .bomao-company-infor .bomao-support-item{
    font-size: 0.75rem;
  }
  .bomao-company-infor .bomao-support-section{
    padding: 0.9375rem 0 3.125rem;
  }
  .bomao-company-infor .bomao-learn-more-btn{
    font-size: 0.75rem;
    /* height: 1.4375rem; */
    min-width: 4.53125rem;
  }
  .bomao-company-infor .bomao-feature-title{
    font-size: 0.75rem;
  }
  .bomao-company-infor .bomao-feature-description{
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  :root {
    /* --bomao-font-size-hero: 1rem; */
    --bomao-spacing-md: 0.5rem;
    --bomao-spacing-lg: 0.75rem;
    --bomao-spacing-xl: 0.75rem;
    --bomao-spacing-xxl: 1rem;
  }
  .bomao-company-infor .bomao-support-card:hover{
    transform: scale(1.05);
  }
  .bomao-company-infor .bomao-support-title{
    /* font-size: 1rem; */
    margin-bottom: 0.625rem;
  }
  .bomao-company-infor .bomao-support-section{
    padding: 0.9375rem 0 3.125rem;
  }
  .bomao-company-infor .bomao-support-card-title{
    /* font-size: 0.5625rem; */
  }
  .bomao-company-infor .bomao-support-item{
    /* font-size: 0.4375rem; */
    margin-bottom: 10px;
  }
  .bomao-company-infor .bomao-video-wrapper {
    border-radius: 8px 8px 0 0;
  }
  
  .bomao-company-infor .bomao-video-placeholder,
  .bomao-company-infor .bomao-video-poster {
    /* min-height: 300px; */
  }
  
  .bomao-company-infor .bomao-stats-grid {
    gap: var(--bomao-spacing-md);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 100%;
    /* max-width: 350px; */
  }
  
  .bomao-company-infor .bomao-stat-card {
    min-height: 3.125rem;
    padding: 0;
  }
  
  .bomao-company-infor .bomao-stat-number {
    font-size: 1rem;
  }
  
  .bomao-company-infor .bomao-feature-card {
    padding: var(--bomao-spacing-md);
  }
  
  .bomao-company-infor .bomao-support-grid{
    gap: 0.625rem;
  }
  .bomao-company-infor .bomao-support-card {
    width: 100%;
    padding: 0;
  }
  .bomao-company-infor .bomao-features-info{
    flex-direction:column;
    max-width:100%
  }
}

@media (max-width: 576px) {
  :root {
    /* --bomao-font-size-hero: 0.75rem;
    --bomao-spacing-sm: 0.375rem;
    --bomao-spacing-md: 0.375rem;
    --bomao-spacing-lg: 0.5rem;
    --bomao-spacing-xl: 0.625rem;
    --bomao-spacing-xxl: 0.75rem; */
  }
  
  .bomao-company-infor .bomao-main-title {
    /* font-size: 0.875rem; */
  }
  
  .bomao-company-infor .bomao-main-subtitle {
    /* font-size: var(--bomao-font-size-lg); */
  }
  
  .bomao-company-infor .bomao-video-placeholder,
  .bomao-company-infor .bomao-video-poster {
    /* min-height: 250px; */
  }
  
  
  
  .bomao-company-infor .bomao-stats-grid {
    /* max-width: 300px; */
  }
  
  .bomao-company-infor .bomao-stat-number {
    /* font-size: 0.75rem; */
  }
  
  .bomao-company-infor .bomao-support-title {
    /* font-size: 0.75rem; */
  }
  .bomao-company-infor .bomao-learn-more-btn{
    padding: 0 0.3rem;
  }
} 