/* ===== page technology-technologydetail (compiled from Vue SCSS) ===== */
@charset "UTF-8";
.w-100 {
  width: 100%;
}

/* 1. Hero*/
.detail-hero {
  background-color: #ffffff;
  border-bottom: 1px solid #d9e5e0;
  padding: 48px 0;
}
.detail-hero .category-tag {
  background-color: #0b2f2a;
  color: #ffffff;
  font-size: 13px;
  padding: 4px 12px;
}
.detail-hero .hero-desc-container {
  height: 3.2em; /* 行高(1.6) * 2行*/
  overflow: hidden;
  position: relative;
  max-width: 800px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.detail-hero .hero-desc-container .hero-desc {
  font-size: 18px;
  color: #66736e;
  line-height: 1.6;
  margin: 0;
  /* 多行文本溢出省略号*/
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.detail-hero .hero-tags {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.detail-hero .hero-actions {
  margin-top: 32px;
}
.detail-hero .tag-outline {
  background-color: transparent;
  border: 1px solid #d9e5e0;
  color: #1e2b27;
}
.detail-hero .consult-btn:hover, .detail-hero .consult-btn:focus {
  background-color: #0b6b5a;
  color: #ffffff;
  border-color: #0b6b5a;
}
.detail-hero .consult-btn:active {
  background-color: #0b6b5a;
  color: #ffffff;
  border-color: #0b6b5a;
  transform: scale(0.96) translateY(2px); /* 按压缩放和下沉效果*/
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2); /* 内阴影增强按压感*/
}

/* 2. Main Layout*/
.main-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.main-layout .content-area {
  flex: 1;
  min-width: 0;
}
.main-layout .sidebar {
  width: 100%;
}
.main-layout .sidebar .sidebar-widget {
  background-color: #ffffff;
  border: 1px solid #d9e5e0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.main-layout .sidebar .sidebar-widget .widget-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9e5e0;
}
.main-layout .sidebar .sidebar-widget.contact-widget {
  border: none;
}

/* Content Blocks*/
.content-block {
  margin-bottom: 48px;
}
.content-block .block-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 4px solid #0b6b5a;
}
.content-block:last-child {
  margin-bottom: 0;
}

/* Capabilities*/
.capability-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.capability-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.capability-list li .icon {
  font-size: 18px;
  margin-top: 2px;
}
.capability-list li .cap-text {
  color: #66736e;
  line-height: 1.6;
}
.capability-list li .cap-text strong {
  color: #1e2b27;
}

/* Timeline Workflow*/
.timeline {
  position: relative;
  padding-left: 40px;
  /* 将贯穿整条时间线的竖线拆分到每个 item 中，从而实现首尾控制*/
}
.timeline .timeline-item {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  /* 为每个 item 绘制连接线，默认贯穿整个 item 高度并连接到下一个*/
}
.timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -28px; /* -40px(padding) + 12px(center) = -28px*/
  top: -24px; /* 从上一个元素的中心开始*/
  bottom: -24px; /* 延伸到下一个元素的中心*/
  width: 2px;
  background-color: #d9e5e0;
  transform: translateX(-50%);
  z-index: 1; /* 放在数字图标下面*/
}
.timeline .timeline-item {
  /* 第一个元素：不需要顶部的线，线从自身的中心点开始向下延伸*/
}
.timeline .timeline-item:first-child::before {
  top: 50%;
}
.timeline .timeline-item {
  /* 最后一个元素：不需要底部的线，线从上一个元素延伸下来，在自身的中心点停止*/
}
.timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.timeline .timeline-item:last-child::before {
  bottom: 50%;
}
.timeline .timeline-item {
  /* 只有一个元素时：不需要任何连接线*/
}
.timeline .timeline-item:first-child:last-child::before {
  display: none;
}
.timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -40px; /* 抵消 padding，使其左边缘对齐 0px 位置，圆心即为 12px*/
  top: 50%;
  transform: translateY(-50%); /* 仅在垂直方向居中，不再水平偏移*/
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0b6b5a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 0 0 4px #f7faf9;
}
.timeline .timeline-item .timeline-content {
  background-color: #ffffff;
  border: 1px solid #d9e5e0;
  border-radius: 8px;
  padding: 16px;
  width: 100%; /* 确保占满剩余空间*/
}
.timeline .timeline-item .timeline-content h4 {
  margin-bottom: 8px;
}

/* Scenarios*/
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.scenario-grid .scenario-card {
  cursor: pointer;
  border-color: #d9e5e0;
}
.scenario-grid .scenario-card:hover {
  border-color: #0b6b5a;
  background-color: #eaf6f2;
}
.scenario-grid .scenario-card .card-content {
  padding: 16px;
}

/* Info Box*/
.info-box {
  padding: 24px;
  border-radius: 8px;
}
.info-box.sample-reqs-box {
  padding-left: 0;
  /* 仅在此页面该模块内取消 ul 的底部边距 */
}
.info-box.sample-reqs-box ul {
  margin-bottom: 0;
}
.info-box.border-box {
  background-color: #ffffff;
  border: 1px dashed #d9e5e0;
}
.info-box .downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.info-box .downloads .download-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background-color: #eaf6f2;
  color: #0b6b5a;
  border-radius: 4px;
  font-size: 14px;
}
.info-box .downloads .download-link:hover {
  background-color: rgba(11, 107, 90, 0.2);
}

/* Accordion (FAQ)*/
.accordion {
  border: 1px solid #d9e5e0;
  border-radius: 8px;
  overflow: hidden;
}
.accordion .accordion-item {
  border-bottom: 1px solid #d9e5e0;
}
.accordion .accordion-item:last-child {
  border-bottom: none;
}
.accordion .accordion-item .accordion-header {
  padding: 16px 24px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.accordion .accordion-item .accordion-header h4 {
  font-weight: 500;
  margin: 0;
}
.accordion .accordion-item .accordion-header .toggle-icon {
  font-size: 20px;
  color: #0b6b5a;
  font-weight: 300;
}
.accordion .accordion-item .accordion-body {
  padding: 0 24px 16px;
  background-color: #ffffff;
}
.accordion .accordion-item.is-active .accordion-header h4 {
  color: #0b6b5a;
}

/* Sidebar Related*/
.related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.related-list .related-item {
  display: flex;
  gap: 16px;
  cursor: pointer;
}
.related-list .related-item:hover h5 {
  color: #0b6b5a;
}
.related-list .related-item .prod-img-placeholder {
  width: 60px;
  height: 60px;
  background-color: #e2ebe8;
  border-radius: 4px;
  flex-shrink: 0;
}
.related-list .related-item .prod-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.related-list .related-item .prod-info h5 {
  margin: 0 0 4px 0;
  font-weight: 500;
}

/* Bottom Fixed CTA*/
.bottom-fixed-cta {
  background-color: #ffffff;
  border-top: 1px solid #d9e5e0;
  padding: 16px 0;
}
.bottom-fixed-cta .flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consult-btn {
  transition: all 0.3s ease;
}
.consult-btn:hover {
  background-color: #ffffff !important;
  color: #0b6b5a !important;
}

/* Reverted from utilities.scss */
.mb-8 {
  margin-bottom: 80px;
}

.mb-4 {
  margin-bottom: 24px;
}

.text-secondary {
  color: #66736e;
}

.text-main {
  color: #1e2b27;
}

.text-sm {
  font-size: 14px;
}

.text-primary {
  color: #0b6b5a;
}

.mt-3 {
  margin-top: 16px;
}

.font-weight-bold {
  font-weight: bold;
}

.bg-light {
  background-color: #f7faf9;
}

.bg-primary {
  background-color: #0b6b5a;
}

.border {
  border: 1px solid #d9e5e0;
}

.opacity-80 {
  opacity: 0.8;
}

.mt-1 {
  margin-top: 8px;
}

.mt-6 {
  margin-top: 48px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-2 {
  margin-top: 12px;
}

/* Reverted responsive */
@media (min-width: 1200px) {
  .main-layout {
    flex-direction: row;
    justify-content: center; /* 确保 content-area 在中间位置*/
    position: relative; /* 为侧边栏绝对定位提供参考*/
  }
}
@media (min-width: 1200px) {
  .main-layout .content-area {
    max-width: 640px; /* 限制最大宽度，使内容居中且不与侧边栏重叠*/
    margin: 0 auto; /* 确保在剩余空间中完全居中*/
  }
}
@media (min-width: 1440px) {
  .main-layout .content-area {
    max-width: 760px; /* 大屏下可以更宽*/
  }
}
@media (min-width: 1200px) {
  .main-layout .sidebar {
    width: 260px;
    /* 利用 position: absolute 和内部的 sticky 实现悬浮*/
    position: absolute;
    top: 0;
    bottom: 0; /* 替代 height: 100%，更可靠地撑满父容器*/
    /* 悬浮在屏幕右侧*/
    right: calc(50% - 50vw + 16px);
    pointer-events: none; /* 避免绝对定位层阻挡点击*/
  }
}
@media (min-width: 1440px) {
  .main-layout .sidebar {
    width: 280px;
    right: calc(50% - 50vw + 32px);
  }
}
@media (min-width: 1200px) {
  .main-layout .sidebar .sidebar-inner {
    position: sticky;
    top: 100px;
    z-index: 10;
    pointer-events: auto; /* 恢复子元素的点击事件*/
  }
}
@media (min-width: 768px) {
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .bottom-fixed-cta .flex-between {
    flex-direction: column;
    gap: 16px;
  }
  .bottom-fixed-cta .flex-between button {
    width: 100%;
  }
}