/* 极致紧凑：所有尺寸缩小10倍 */
.calendar-highlights-section.pro {
  padding: 5px 0 3px 0;
  min-height: 6vh;
}
.highlight-title-pro {
  font-size: 0.21rem;
  margin-bottom: 3.6px;
  letter-spacing: 0.15px;
}
.highlight-list-pro {
  gap: 3.6px;
  max-width: 90px;
}
.highlight-card-pro {
  border-radius: 2px;
  min-height: 14px;
  margin: 0 0.8px;
  box-shadow: 0 0.4px 2.4px 0 rgba(0,234,255,0.08), 0 0.1px 0.8px 0 rgba(127,95,255,0.06);
  border: 0.1px solid rgba(0,234,255,0.13);
}
.highlight-img-glass {
  flex: 0 0 12px;
  margin: 0 0 0 -3.2px;
  border-radius: 1.4px;
  box-shadow: 0 0 1.6px 0.2px #00eaff33, 0 0 0 0.1px #7f5fff18;
  backdrop-filter: blur(0.4px);
}
.highlight-card-pro:hover .highlight-img-glass {
  box-shadow: 0 0 2.8px 0.4px #00eaff77, 0 0 0 0.2px #7f5fff33;
  transform: scale(1.01);
}
.highlight-img-glass img {
  width: 6px;
  height: 8px;
  border-radius: 1px;
  box-shadow: 0 0.1px 0.8px 0 rgba(0,0,0,0.13);
}
.highlight-content-pro {
  padding: 2px 2.4px 2px 0;
}
.highlight-card-pro:nth-child(even) .highlight-content-pro {
  padding: 2px 0 2px 2.4px;
}
.highlight-icon-pro {
  font-size: 0.14rem;
  margin-bottom: 0.6px;
}
.highlight-content-pro h3 {
  font-size: 0.115rem;
  margin-bottom: 0.6px;
  letter-spacing: 0.05px;
}
.highlight-content-pro h4 {
  font-size: 0.098rem;
  margin-bottom: 1px;
  letter-spacing: 0.02px;
}
.highlight-desc-pro {
  margin-bottom: 0.3px;
  font-size: 0.098rem;
  line-height: 1.1;
}
.highlight-badge-pro {
  margin-top: 1px;
  padding: 0.4px 1.2px;
  border-radius: 1.2px;
  font-size: 0.092rem;
  letter-spacing: 0.05px;
  box-shadow: 0 0.1px 0.6px #00eaff22;
}
@media (max-width: 900px) {
  .highlight-img-glass {
    max-width: 8px;
    min-width: 4px;
    padding: 0.4px;
  }
  .highlight-img-glass img {
    width: 0.6px;
    height: 0.8px;
  }
  .highlight-content-pro, .highlight-card-pro:nth-child(even) .highlight-content-pro {
    padding: 1.2px 0.6px 1.8px 0.6px;
  }
}

/* 智能日历页面样式 */

/* 功能模块样式 */
.feature-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.feature-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* 使用流程样式 */
.workflow-section {
    padding: 60px 0;
    background-color: #fff;
}

.workflow-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 32px;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

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

/* 产品优势样式 */
.advantages-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.advantages-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 32px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
    font-size: 40px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.advantage-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* 日历图标样式 */
.icon-smart::before {
    content: '📅';
}

.icon-sync::before {
    content: '🔄';
}

.icon-team::before {
    content: '👥';
}

.icon-customize::before {
    content: '⚙️';
}

/* 响应式设计 */
@media (max-width: 768px) {
    .workflow-steps {
        flex-direction: column;
        align-items: center;
    }

    .workflow-steps::before {
        display: none;
    }

    .step {
        margin-bottom: 30px;
    }

    .feature-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
} 

/* 滚动淡入动画 */
.highlight-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s cubic-bezier(.4,2,.6,1) forwards;
  animation-delay: 0.1s;
}
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }
.highlight-card:nth-child(7) { animation-delay: 0.7s; }
.highlight-card:nth-child(8) { animation-delay: 0.8s; }
.highlight-card:nth-child(9) { animation-delay: 0.9s; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

/* 智能日历亮点区块 · 极简黑白风格+大图 */
.calendar-highlights-section.pro {
  background: #18181c;
  padding: 60px 0 40px 0;
}
.calendar-highlights-section.pro .highlight-title-pro {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1.5px;
  color: #fff;
}
.calendar-highlights-section.pro .highlight-list-pro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.calendar-highlights-section.pro .highlight-card-pro {
  display: flex;
  align-items: center;
  background: #23232a;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10), 0 1px 8px 0 rgba(0,0,0,0.08);
  min-height: 180px;
  margin: 0 0 18px 0;
  padding: 32px 40px;
  gap: 40px;
  max-width: 900px;
}
.calendar-highlights-section.pro .highlight-card-pro:nth-child(even) {
  flex-direction: row-reverse;
}
.calendar-highlights-section.pro .highlight-img-glass {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18181c;
  border-radius: 16px;
  box-shadow: 0 0 24px 2px #00000022;
  overflow: hidden;
  padding: 0;
  min-width: 200px;
  max-width: 200px;
  height: 320px;
}
.calendar-highlights-section.pro .highlight-img-glass img {
  width: 180px;
  height: 300px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  background: #fff;
}
.calendar-highlights-section.pro .highlight-content-pro {
  flex: 1 1 0%;
  padding: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.calendar-highlights-section.pro .highlight-icon-pro {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
  filter: drop-shadow(0 0 4px #00000044);
}
.calendar-highlights-section.pro .highlight-content-pro h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  letter-spacing: 0.5px;
}
.calendar-highlights-section.pro .highlight-content-pro h4 {
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0.2px;
  opacity: 0.7;
}
.calendar-highlights-section.pro .highlight-desc-pro {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.85;
}
.calendar-highlights-section.pro .highlight-badge-pro {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 6px #00000022;
}
@media (max-width: 900px) {
  .calendar-highlights-section.pro .highlight-card-pro,
  .calendar-highlights-section.pro .highlight-card-pro:nth-child(even) {
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 0 !important;
    margin: 0 0 16px 0 !important;
    padding: 12px 4px !important;
    gap: 0 !important;
    max-width: 98vw;
  }
  .calendar-highlights-section.pro .highlight-img-glass {
    margin: 0 auto 10px auto !important;
    max-width: 120px !important;
    min-width: 60px !important;
    padding: 0 !important;
    height: 160px !important;
  }
  .calendar-highlights-section.pro .highlight-img-glass img {
    width: 100px !important;
    height: 140px !important;
  }
  .calendar-highlights-section.pro .highlight-content-pro {
    padding: 6px 2px 10px 2px !important;
    text-align: center !important;
  }
} 

/* 智能日历亮点区块 · 大图高级感优化 */
.calendar-highlights-section.pro .highlight-card-pro {
  display: flex;
  align-items: center;
  background: #23232a;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13), 0 2px 12px 0 rgba(0,0,0,0.10);
  min-height: 220px;
  margin: 0 0 24px 0;
  padding: 32px 32px;
  gap: 36px;
  max-width: 900px;
}
.calendar-highlights-section.pro .highlight-img-glass {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18181c;
  border-radius: 18px;
  box-shadow: 0 0 32px 4px #00000022;
  overflow: hidden;
  padding: 0;
  min-width: 260px;
  max-width: 260px;
  height: 420px;
}
.calendar-highlights-section.pro .highlight-img-glass img {
  width: 240px;
  height: 400px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
  background: #fff;
}
.calendar-highlights-section.pro .highlight-content-pro {
  flex: 1 1 0%;
  padding: 0 0 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.calendar-highlights-section.pro .highlight-icon-pro {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #fff;
  filter: drop-shadow(0 0 8px #00000033);
  width: 2.8em;
  height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.calendar-highlights-section.pro .highlight-content-pro h3 {
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.5px;
}
.calendar-highlights-section.pro .highlight-content-pro h4 {
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.2px;
  opacity: 0.7;
}
.calendar-highlights-section.pro .highlight-desc-pro {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.88;
}
.calendar-highlights-section.pro .highlight-badge-pro {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 22px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 16px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px #00000022;
}
@media (max-width: 900px) {
  .calendar-highlights-section.pro .highlight-card-pro,
  .calendar-highlights-section.pro .highlight-card-pro:nth-child(even) {
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 0 !important;
    margin: 0 0 18px 0 !important;
    padding: 12px 4px !important;
    gap: 0 !important;
    max-width: 98vw;
  }
  .calendar-highlights-section.pro .highlight-img-glass {
    margin: 0 auto 10px auto !important;
    max-width: 160px !important;
    min-width: 80px !important;
    padding: 0 !important;
    height: 220px !important;
  }
  .calendar-highlights-section.pro .highlight-img-glass img {
    width: 140px !important;
    height: 200px !important;
  }
  .calendar-highlights-section.pro .highlight-content-pro {
    padding: 6px 2px 10px 2px !important;
    text-align: center !important;
  }
  .calendar-highlights-section.pro .highlight-icon-pro {
    justify-content: center !important;
  }
} 

/* 智能日历亮点区块 · 超大图+高级黑白图标 */
.calendar-highlights-section.pro .highlight-card-pro {
  display: flex;
  align-items: center;
  background: #23232a;
  border-radius: 26px;
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.15), 0 4px 16px 0 rgba(0,0,0,0.12);
  min-height: 320px;
  margin: 0 0 32px 0;
  padding: 40px 40px;
  gap: 48px;
  max-width: 1100px;
}
.calendar-highlights-section.pro .highlight-img-glass {
  flex: 0 0 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18181c;
  border-radius: 22px;
  box-shadow: 0 0 48px 8px #00000022;
  overflow: hidden;
  padding: 0;
  min-width: 480px;
  max-width: 480px;
  height: 800px;
}
.calendar-highlights-section.pro .highlight-img-glass img {
  width: 440px;
  height: 760px;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
  background: #fff;
}
.calendar-highlights-section.pro .highlight-content-pro {
  flex: 1 1 0%;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.calendar-highlights-section.pro .highlight-icon-pro {
  width: 3.6em;
  height: 3.6em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* 建议用SVG黑白线性图标替换 */
  color: #fff;
  filter: drop-shadow(0 0 10px #00000033);
  font-size: 2.8rem;
}
.calendar-highlights-section.pro .highlight-content-pro h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0.5px;
}
.calendar-highlights-section.pro .highlight-content-pro h4 {
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.2px;
  opacity: 0.7;
}
.calendar-highlights-section.pro .highlight-desc-pro {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.8;
  opacity: 0.9;
}
.calendar-highlights-section.pro .highlight-badge-pro {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 32px;
  background: transparent;
  color: #fff;
  border: 2.5px solid #fff;
  border-radius: 20px;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px #00000022;
}
@media (max-width: 1200px) {
  .calendar-highlights-section.pro .highlight-card-pro {
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 0 !important;
    margin: 0 0 24px 0 !important;
    padding: 16px 4px !important;
    gap: 0 !important;
    max-width: 98vw;
  }
  .calendar-highlights-section.pro .highlight-img-glass {
    margin: 0 auto 14px auto !important;
    max-width: 260px !important;
    min-width: 120px !important;
    padding: 0 !important;
    height: 400px !important;
  }
  .calendar-highlights-section.pro .highlight-img-glass img {
    width: 220px !important;
    height: 360px !important;
  }
  .calendar-highlights-section.pro .highlight-content-pro {
    padding: 8px 2px 14px 2px !important;
    text-align: center !important;
  }
  .calendar-highlights-section.pro .highlight-icon-pro {
    justify-content: center !important;
  }
} 

/* 交错悬浮高级亮点区块样式 */
.calendar-highlights-section.pro {
  background: #18181c;
  padding: 60px 0 40px 0;
}
.highlight-title-pro {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: 2px;
}
.highlight-list-pro {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.highlight-row-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 480px;
}
.highlight-row-pro.odd .highlight-img-float {
  order: 1;
  margin-right: -80px;
  z-index: 2;
}
.highlight-row-pro.odd .highlight-content-float {
  order: 2;
  margin-left: -80px;
  z-index: 1;
}
.highlight-row-pro.even .highlight-img-float {
  order: 2;
  margin-left: -80px;
  z-index: 2;
}
.highlight-row-pro.even .highlight-content-float {
  order: 1;
  margin-right: -80px;
  z-index: 1;
}
.highlight-img-float {
  position: relative;
  width: 480px;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.highlight-img-float img {
  width: 440px;
  height: 760px;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 rgba(0,0,0,0.18);
  background: #fff;
  object-fit: inherit;
}
.highlight-icon-float {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23232a;
  border-radius: 50%;
  box-shadow: 0 2px 8px #00000022;
  border: 2px solid #fff;
}
.highlight-content-float.card {
  background: #23232a;
  border-radius: 26px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
  padding: 48px 56px;
  color: #fff;
  min-width: 340px;
  max-width: 520px;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.highlight-content-float h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.highlight-content-float h4 {
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0.7;
}
.highlight-content-float p {
  font-size: 1.18rem;
  line-height: 1.8;
  margin-bottom: 22px;
  opacity: 0.9;
}
.highlight-badge-float {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 32px;
  border: 2.5px solid #fff;
  border-radius: 20px;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: transparent;
  color: #fff;
  box-shadow: 0 2px 12px #00000022;
}
@media (max-width: 1200px) {
  .highlight-row-pro {
    flex-direction: column !important;
    min-height: 0 !important;
    gap: 0 !important;
  }
  .highlight-img-float,
  .highlight-content-float.card {
    margin: 0 !important;
    max-width: 98vw;
  }
  .highlight-img-float {
    width: 90vw;
    height: auto;
  }
  .highlight-img-float img {
    width: 80vw;
    height: auto;
  }
  .highlight-content-float.card {
    padding: 24px 8px;
  }
} 

/* 交错悬浮区块：图片与内容区距离加大，避免遮挡文字 */
.highlight-list-pro {
  gap: 120px;
}
.highlight-row-pro.odd .highlight-img-float {
  margin-right: 40px;
}
.highlight-row-pro.odd .highlight-content-float {
  margin-left: 40px;
}
.highlight-row-pro.even .highlight-img-float {
  margin-left: 40px;
}
.highlight-row-pro.even .highlight-content-float {
  margin-right: 40px;
}
@media (max-width: 1200px) {
  .highlight-list-pro {
    gap: 40px;
  }
  .highlight-row-pro.odd .highlight-img-float,
  .highlight-row-pro.odd .highlight-content-float,
  .highlight-row-pro.even .highlight-img-float,
  .highlight-row-pro.even .highlight-content-float {
    margin: 0 !important;
  }
} 

/* 亮点区块多样化布局设计 */
/* 1. 标准左图右文 */
.highlight-row-pro.layout-left-img {
  flex-direction: row;
}
.highlight-row-pro.layout-left-img .highlight-img-float {
  margin-right: 56px;
}
.highlight-row-pro.layout-left-img .highlight-content-float {
  margin-left: 0;
}
/* 2. 标准右图左文 */
.highlight-row-pro.layout-right-img {
  flex-direction: row-reverse;
}
.highlight-row-pro.layout-right-img .highlight-img-float {
  margin-left: 56px;
}
.highlight-row-pro.layout-right-img .highlight-content-float {
  margin-right: 0;
}
/* 3. 图片上文字下 */
.highlight-row-pro.layout-img-top {
  flex-direction: column;
  align-items: center;
}
.highlight-row-pro.layout-img-top .highlight-img-float {
  margin-bottom: 32px;
}
.highlight-row-pro.layout-img-top .highlight-content-float {
  margin: 0;
  text-align: center;
}
/* 4. 文字上图片下 */
.highlight-row-pro.layout-img-bottom {
  flex-direction: column-reverse;
  align-items: center;
}
.highlight-row-pro.layout-img-bottom .highlight-img-float {
  margin-top: 32px;
}
.highlight-row-pro.layout-img-bottom .highlight-content-float {
  margin: 0;
  text-align: center;
}
/* 5. 图片斜切卡片悬浮 */
.highlight-row-pro.layout-diagonal {
  flex-direction: row;
  align-items: flex-end;
}
.highlight-row-pro.layout-diagonal .highlight-img-float {
  transform: skewY(-6deg);
  margin-right: 40px;
}
.highlight-row-pro.layout-diagonal .highlight-content-float {
  box-shadow: 0 16px 48px 0 rgba(0,0,0,0.18);
  margin-left: 0;
}
/* 6. 图片左上文字右下 */
.highlight-row-pro.layout-corner {
  flex-direction: row;
  align-items: flex-start;
}
.highlight-row-pro.layout-corner .highlight-img-float {
  margin-right: 0;
  align-self: flex-start;
}
.highlight-row-pro.layout-corner .highlight-content-float {
  margin-left: 56px;
  align-self: flex-end;
}
/* 7. 图片右上文字左下 */
.highlight-row-pro.layout-corner-reverse {
  flex-direction: row-reverse;
  align-items: flex-start;
}
.highlight-row-pro.layout-corner-reverse .highlight-img-float {
  margin-left: 0;
  align-self: flex-start;
}
.highlight-row-pro.layout-corner-reverse .highlight-content-float {
  margin-right: 56px;
  align-self: flex-end;
}
/* 8. 图片与文字并列居中，间距大 */
.highlight-row-pro.layout-center {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.highlight-row-pro.layout-center .highlight-img-float {
  margin-right: 80px;
}
.highlight-row-pro.layout-center .highlight-content-float {
  margin-left: 0;
}
/* 9. 图片与文字上下错位 */
.highlight-row-pro.layout-offset {
  flex-direction: row;
  align-items: flex-end;
}
.highlight-row-pro.layout-offset .highlight-img-float {
  margin-right: 40px;
  margin-bottom: 40px;
}
.highlight-row-pro.layout-offset .highlight-content-float {
  margin-left: 0;
  margin-top: 40px;
}

/* 保证图片和文字互不遮挡，间距适中 */
.highlight-img-float, .highlight-content-float.card {
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .highlight-row-pro.layout-left-img,
  .highlight-row-pro.layout-right-img,
  .highlight-row-pro.layout-diagonal,
  .highlight-row-pro.layout-corner,
  .highlight-row-pro.layout-corner-reverse,
  .highlight-row-pro.layout-center,
  .highlight-row-pro.layout-offset {
    flex-direction: column !important;
    align-items: center !important;
  }
  .highlight-row-pro.layout-img-top,
  .highlight-row-pro.layout-img-bottom {
    flex-direction: column !important;
    align-items: center !important;
  }
  .highlight-img-float,
  .highlight-content-float.card {
    margin: 0 !important;
    max-width: 98vw;
  }
} 

/* 亮点区块 · 水平并排整齐交错布局 */
.highlight-list-pro {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.highlight-row-pro {
  display: flex;
  align-items: center;
  max-width: 1200px;
  min-height: 320px;
  width: 100%;
  justify-content: center;
}

/* 奇数区块：图片左文字右，整体居中 */
.highlight-row-pro.odd {
  flex-direction: row;
}
.highlight-row-pro.odd .highlight-img-float {
  margin-right: 48px;
}
.highlight-row-pro.odd .highlight-content-float {
  margin-left: 0;
  width: 440px;
  min-width: 320px;
  max-width: 480px;
}

/* 偶数区块：图片右文字左，整体居中 */
.highlight-row-pro.even {
  flex-direction: row-reverse;
}
.highlight-row-pro.even .highlight-img-float {
  margin-left: 48px;
}
.highlight-row-pro.even .highlight-content-float {
  margin-right: 0;
  width: 440px;
  min-width: 320px;
  max-width: 480px;
}

.highlight-img-float {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.highlight-content-float.card {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1200px) {
  .highlight-row-pro,
  .highlight-row-pro.odd,
  .highlight-row-pro.even {
    flex-direction: column !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
  }
  .highlight-img-float,
  .highlight-content-float.card {
    margin: 0 !important;
    max-width: 98vw;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
  }
  .highlight-content-float.card {
    width: 96vw !important;
    min-width: 0 !important;
  }
} 

/* --- 优化亮点区块错落感 --- */
.highlight-row-pro.odd {
  transform: translate(-24px, -10px);
  z-index: 2;
}
.highlight-row-pro.even {
  transform: translate(24px, 18px);
  z-index: 1;
}
@media (max-width: 900px) {
  .highlight-row-pro.odd, .highlight-row-pro.even {
    transform: none;
  }
}
.highlight-content-float.card {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 1.5px 16px #000;
  background: rgba(24,24,24,0.98);
  border-radius: 18px;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.highlight-row-pro.odd .highlight-content-float.card {
  width: 98%;
  left: -8px;
}
.highlight-row-pro.even .highlight-content-float.card {
  width: 92%;
  right: -8px;
} 

.highlight-divider-svg path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: divider-draw 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes divider-draw {
  to {
    stroke-dashoffset: 0;
  }
} 