/* ===== components (compiled from Vue SCSS) ===== */
@charset "UTF-8";
/* ---------- component: common/Breadcrumb.vue ---------- */
.breadcrumb-container {
  background-color: #f7faf9;
  padding: 16px 0;
}
.breadcrumb-container .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* 不换行，方便进行截断或横向滚动 */
  font-size: 14px;
  color: #66736e;
  overflow-x: auto;
  /* 隐藏滚动条但保留滚动功能 */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.breadcrumb-container .breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb-container .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* 防止子元素被过度挤压 */
  max-width: 100%; /* 允许子元素宽度达到100%以触发自身截断 */
}
.breadcrumb-container .breadcrumb .breadcrumb-item .breadcrumb-link,
.breadcrumb-container .breadcrumb .breadcrumb-item .breadcrumb-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px; /* PC 端限制最大宽度 */
}
.breadcrumb-container .breadcrumb .breadcrumb-item .breadcrumb-link {
  color: #66736e;
  transition: color 160ms ease;
}
.breadcrumb-container .breadcrumb .breadcrumb-item .breadcrumb-link:hover {
  color: #0b6b5a;
}
.breadcrumb-container .breadcrumb .breadcrumb-item .is-current {
  color: #1e2b27;
  font-weight: 500;
}
.breadcrumb-container .breadcrumb .breadcrumb-item .separator {
  margin: 0 12px;
  color: rgba(102, 115, 110, 0.5);
  flex-shrink: 0;
}

/* 移动端适配 */
/* Reverted responsive */
@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 12px 0;
  }
  .breadcrumb-container .breadcrumb {
    font-size: 12px;
  }
  .breadcrumb-container .breadcrumb .breadcrumb-item .breadcrumb-link,
  .breadcrumb-container .breadcrumb .breadcrumb-item .breadcrumb-text {
    max-width: 120px; /* 移动端限制最大宽度 */
  }
  .breadcrumb-container .breadcrumb .breadcrumb-item .separator {
    margin: 0 4px;
  }
}
/* ---------- component: common/CTASection.vue ---------- */
.cta-section {
  background-color: #0b6b5a;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.btn-lg {
  padding: 12px 32px;
  font-size: 16px;
}

.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white:hover {
  background-color: #f7faf9;
}

.cta-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  transition: all 160ms ease;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus, .cta-btn-secondary:active {
  background-color: #ffffff !important;
  color: #0b6b5a !important;
  border-color: #ffffff !important;
}

/* 滚动显示动效基础样式，确保在没有全局指令时有默认行为*/
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

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

.text-center {
  text-align: center;
}

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

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-white {
  color: #ffffff;
}

.max-w-800 {
  max-width: 800px;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.gap-4 {
  gap: 24px;
}

.opacity-90 {
  opacity: 0.9;
}

/* ---------- component: common/EmptyState.vue ---------- */
.empty-state {
  border: 1px dashed #d9e5e0;
  border-radius: 12px;
}
.empty-state .py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.empty-state .mt-8 {
  margin-top: 80px;
}
.empty-state .mb-5 {
  margin-bottom: 32px;
}
.empty-state .mb-4 {
  margin-bottom: 24px;
}
.empty-state .mb-3 {
  margin-bottom: 16px;
}
.empty-state .text-secondary {
  color: #66736e;
}
.empty-state .opacity-50 {
  opacity: 0.5;
}
.empty-state .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.empty-state .d-block {
  display: block;
}
.empty-state .d-flex {
  display: flex;
}
.empty-state .flex-column {
  flex-direction: column;
}
.empty-state .align-items-center {
  align-items: center;
}
.empty-state .justify-center {
  justify-content: center;
}
.empty-state .text-center {
  text-align: center;
}
.empty-state .action-btn {
  border: 1px solid #0b6b5a;
  transition: all 0.3s ease;
}
.empty-state .action-btn:hover {
  background-color: #ffffff;
  color: #0b6b5a;
}
.empty-state .action-btn:focus, .empty-state .action-btn:active {
  border: 1px solid #0b6b5a;
  outline: none;
}

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

.text-center {
  text-align: center;
}

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

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mb-3 {
  margin-bottom: 16px;
}

.opacity-50 {
  opacity: 0.5;
}

.flex-column {
  flex-direction: column;
}

.mb-5 {
  margin-bottom: 32px;
}

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

/* ---------- component: common/InquiryForm.vue ---------- */
.bg-white {
  background-color: #ffffff;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-error {
  color: #c94a4a;
}

.form-wrapper .form-group {
  position: relative;
  padding-bottom: 20px;
}
.form-wrapper .error-msg {
  color: #c94a4a;
  position: absolute;
  bottom: 0;
  left: 0;
}
.form-wrapper .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-wrapper .form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9e5e0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}
.form-wrapper .form-input:focus {
  outline: none;
  border-color: #0b6b5a;
  box-shadow: 0 0 0 2px rgba(11, 107, 90, 0.1);
}
.form-wrapper .submit-cta-btn:hover {
  background-color: #0b6b5a;
  color: #ffffff;
}

/* ==========================================*/
/* 滚动显示动效 (Reveal Animations)*/
/* ==========================================*/
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s ease, border-color 0.24s ease;
}
.reveal-up.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mb-6 {
  margin-bottom: 48px;
}

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

.text-center {
  text-align: center;
}

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

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

.mb-2 {
  margin-bottom: 12px;
}

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

.p-4 {
  padding: 24px;
}

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

.text-white {
  color: #ffffff;
}

.text-xs {
  font-size: 12px;
}

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

.rounded {
  border-radius: 8px;
}

.opacity-80 {
  opacity: 0.8;
}

.gap-4 {
  gap: 24px;
}

.px-8 {
  padding-left: 80px;
  padding-right: 80px;
}

.mt-5 {
  margin-top: 32px;
}

/* ---------- component: common/PageHero.vue ---------- */
.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0b2f2a;
  /* Pattern Background Styles*/
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero .hero-bg .molecule-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(30deg, rgba(46, 168, 138, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(46, 168, 138, 0.1) 87.5%, rgba(46, 168, 138, 0.1)), linear-gradient(150deg, rgba(46, 168, 138, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(46, 168, 138, 0.1) 87.5%, rgba(46, 168, 138, 0.1)), linear-gradient(30deg, rgba(46, 168, 138, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(46, 168, 138, 0.1) 87.5%, rgba(46, 168, 138, 0.1)), linear-gradient(150deg, rgba(46, 168, 138, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(46, 168, 138, 0.1) 87.5%, rgba(46, 168, 138, 0.1)), linear-gradient(60deg, rgba(11, 107, 90, 0.1) 25%, transparent 25.5%, transparent 75%, rgba(11, 107, 90, 0.1) 75%, rgba(11, 107, 90, 0.1)), linear-gradient(60deg, rgba(11, 107, 90, 0.1) 25%, transparent 25.5%, transparent 75%, rgba(11, 107, 90, 0.1) 75%, rgba(11, 107, 90, 0.1));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  animation: patternMove 60s linear infinite;
}
.page-hero .hero-bg .gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, #0b2f2a 80%);
}
.page-hero .hero-content {
  position: relative;
  z-index: 1;
}
.page-hero .hero-content.is-first-enter .hero-title,
.page-hero .hero-content.is-first-enter .hero-desc {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; will-change: transform, opacity;
  opacity: 0;
}
.page-hero .hero-content.is-first-enter .hero-desc {
  animation-delay: 0.2s;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  }
  100% {
    background-position: 800px -1400px, 800px -1400px, 840px -1330px, 840px -1330px, 800px -1400px, 840px -1330px;
  }
}
/* Reverted from utilities.scss */
.mb-4 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-white {
  color: #ffffff;
}

.max-w-800 {
  max-width: 800px;
}

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

.opacity-90 {
  opacity: 0.9;
}

/* ---------- component: common/RegistrationModal.vue ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border: 1px solid #d9e5e0;
  overflow: hidden;
}
.modal-content .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9e5e0;
  border-radius: 4px;
  font-size: 14px;
  background-color: #ffffff;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: #0b6b5a;
  box-shadow: 0 0 0 2px rgba(11, 107, 90, 0.1);
}

.text-error {
  color: #c94a4a;
}

.text-h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e2b27;
}

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

.w-100 {
  width: 100%;
}

.d-block {
  display: block;
}

.btn-block {
  width: 100%;
  display: block;
}

.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}

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

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

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

.hover-primary {
  transition: color 0.3s;
}
.hover-primary:hover {
  color: #0b6b5a;
}

.p-6 {
  padding: 48px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.m-0 {
  margin: 0;
}

.mb-3 {
  margin-bottom: 16px;
}

.text-xs {
  font-size: 12px;
}

.justify-between {
  justify-content: space-between;
}

.interactive-btn {
  transition: transform 0.2s ease;
}
.interactive-btn:hover, .interactive-btn:focus {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
}
.interactive-btn:active {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
  transform: scale(0.96) translateY(2px);
}

.no-hover-bg:hover, .no-hover-bg:focus {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
}

.mb-5 {
  margin-bottom: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

/* Reverted responsive */
@media (max-width: 767px) {
  .modal-content {
    max-width: 90%; /* 缩小组件在移动端的显示宽度*/
    padding: 24px !important; /* 缩小移动端的内边距*/
  }
}
/* ---------- component: common/RelatedContent.vue ---------- */
.border-top {
  border-top: 1px solid #d9e5e0;
}

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

.text-truncate-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.related-col .related-item {
  padding: 12px;
  border: 1px solid #d9e5e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.related-col .related-item:hover {
  border-color: #0b6b5a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mb-6 {
  margin-bottom: 48px;
}

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

.text-center {
  text-align: center;
}

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

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

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

.cursor-pointer {
  cursor: pointer;
}

.hover-primary {
  transition: color 0.3s;
}
.hover-primary:hover {
  color: #0b6b5a;
}

.mb-3 {
  margin-bottom: 16px;
}

.text-xs {
  font-size: 12px;
}

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

.gap-6 {
  gap: 48px;
}

.mb-1 {
  margin-bottom: 8px;
}

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

.pb-2 {
  padding-bottom: 12px;
}

/* Reverted responsive */
@media (max-width: 767px) {
  .py-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .gap-6 {
    gap: 24px !important;
  }
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
}
/* ---------- component: common/SectionTitle.vue ---------- */
.section-header {
  margin-bottom: 48px;
}
.section-header.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-header .text-h2 {
  margin-bottom: 12px;
  color: #0b2f2a;
}

/* Reverted from utilities.scss */
.text-secondary {
  color: #66736e;
}

/* Reverted responsive */
@media (max-width: 767px) {
  .section-header &.flex-between {
    /* 保持移动端左右布局排版*/
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .section-header &.flex-between .text-h2 {
    font-size: 24px; /* 移动端稍微减小字号*/
    margin-bottom: 0; /* 左右布局时减小标题底部边距*/
  }
  .section-header &.flex-between .text-secondary {
    display: none; /* 如果空间不够，可考虑隐藏副标题或做其他处理，这里保留不强制隐藏，视情况*/
  }
}
/* ---------- component: common/StatsSection.vue ---------- */
.stat-value-text {
  font-size: 48px;
  line-height: 1;
}

/* ==========================================*/
/* 滚动显示动效 (Reveal Animations)*/
/* ==========================================*/
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s ease, border-color 0.24s ease;
}
.reveal-up.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-center {
  text-align: center;
}

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

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

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

.gap-6 {
  gap: 48px;
}

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

/* Reverted responsive */
@media (max-width: 767px) {
  .stat-value-text {
    font-size: 44px; /* 移动端稍微增大数字*/
  }
  .stat-value-text .text-h4 {
    font-size: 22px; /* 同步放大后缀的字号*/
  }
}
@media (max-width: 767px) {
  .stat-item .text-secondary {
    font-size: 16px; /* 移动端增大下方标签文字的字号*/
  }
}
@media (max-width: 767px) {
  /* 针对“能力数据区” 4 列模块两列显示*/
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px; /* 进一步缩小项与项之间的间距，给大字体留出空间*/
  }
}
/* ---------- component: content/ArticleCard.vue ---------- */
.article-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.article-card.featured {
  height: 100%;
}
.article-card.featured .article-img-wrapper {
  flex: 1;
  min-height: 260px;
}
.article-card.featured .card-content {
  flex: none;
}
.article-card.featured .title-wrapper {
  height: 76px; /* Fixed height for 2 lines of text-h2*/
}
.article-card.featured .desc-wrapper {
  height: 48px; /* Fixed height for 2 lines of description*/
}
.article-card:not(.featured) {
  background-color: #f7faf9;
  border-radius: 12px;
  box-shadow: none;
  height: 100%;
}
.article-card:not(.featured):hover {
  background-color: #eaf6f2;
}
.article-card:not(.featured) .title-wrapper {
  height: 52px; /* Fixed height for 2 lines of text-h3*/
}
.article-card:not(.featured) .desc-wrapper {
  height: 48px; /* Fixed height for 2 lines of description*/
}
.article-card .article-img-wrapper {
  height: 180px;
  background-color: #e2ebe8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.article-card .article-img-wrapper .article-img-placeholder {
  width: 100%;
  height: 100%;
}
.article-card .article-img-wrapper picture,
.article-card .article-img-wrapper .responsive-image-wrapper,
.article-card .article-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card .card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card .title-wrapper {
  margin-bottom: 16px;
  overflow: hidden;
}
.article-card .title-wrapper h3,
.article-card .title-wrapper h4 {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.article-card .desc-wrapper {
  margin-bottom: 16px;
}
.article-card .desc-wrapper .text-secondary {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.article-card .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.article-card .article-meta .date {
  font-size: 14px;
  color: #66736e;
}

/* Reverted from utilities.scss */
.text-secondary {
  color: #66736e;
}

/* ---------- component: content/ProductCard.vue ---------- */
.product-card {
  cursor: pointer;
}
.product-card .product-img-wrapper,
.product-card .product-img-placeholder {
  height: 180px;
  background-color: #e2ebe8;
  overflow: hidden;
}
.product-card .card-content {
  padding: 24px;
}
.product-card .card-content .title-wrapper {
  height: 44px; /* 2 lines of text approximately*/
  margin-bottom: 12px;
}
.product-card .card-content .title-wrapper .text-h3 {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

/* Reverted from utilities.scss */
.text-secondary {
  color: #66736e;
}

/* ---------- component: content/ResearchCard.vue ---------- */
.research-card {
  cursor: pointer;
}
.research-card .card-content {
  padding: 32px;
}
.research-card .card-content .meta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.research-card .card-content .title-wrapper {
  height: 26px; /* 1 line height*/
  margin-bottom: 12px;
}
.research-card .card-content .title-wrapper .text-h3 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.research-card .card-content .desc-wrapper {
  height: 48px; /* 2 lines height (approx 14px * 1.65 * 2)*/
}
.research-card .card-content .desc-wrapper .text-secondary {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.research-card .journal-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #0b2f2a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}
.research-card .publish-date {
  font-size: 13px;
  color: #66736e;
}

/* Reverted from utilities.scss */
.text-secondary {
  color: #66736e;
}

.mb-3 {
  margin-bottom: 16px;
}

/* ---------- component: layout/ContactEntry.vue ---------- */
.contact-entry .desktop-float {
  position: fixed;
  right: 40px;
  width: 56px;
  height: 56px;
  background-color: #0b6b5a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(11, 107, 90, 0.08);
  cursor: pointer;
  z-index: 99;
  transition: all 160ms ease;
  border: 1px solid #0b6b5a;
}
.contact-entry .desktop-float:hover {
  background-color: #eaf6f2;
  color: #0b6b5a;
  transform: translateY(-2px);
}
.contact-entry .desktop-float.contact-btn {
  bottom: 40px;
}
.contact-entry .desktop-float.back-to-top {
  bottom: 112px; /* 40px + 56px(按钮高度) + 16px(间距)*/
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  border: 1px solid #0b6b5a;
}
.contact-entry .desktop-float.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact-entry .desktop-float.back-to-top.is-visible:hover {
  transform: translateY(-2px);
}
.contact-entry .desktop-float .float-text {
  font-size: 12px;
  margin-top: 2px;
}
.contact-entry .mobile-bottom-bar {
  display: none;
}

/* Reverted responsive */
@media (max-width: 767px) {
  .contact-entry .desktop-float {
    display: none;
  }
}
@media (max-width: 767px) {
  .contact-entry .mobile-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    background-color: #ffffff;
    border-top: 1px solid #d9e5e0;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }
  .contact-entry .mobile-bottom-bar .full-width {
    width: 100%;
  }
  .contact-entry .mobile-bottom-bar {
    /* 解决移动端点击后 hover 状态残留导致背景色改变的问题 */
  }
}
@media (max-width: 767px) and (hover: none) {
  .contact-entry .mobile-bottom-bar .btn-primary:hover {
    background-color: #0b6b5a;
  }
  .contact-entry .mobile-bottom-bar .btn-primary:active {
    background-color: #0b2f2a;
  }
}
/* ---------- component: layout/SiteFooter.vue ---------- */
.site-footer {
  background-color: #0b2f2a;
  color: #ffffff;
  padding-top: 48px;
  /* 如果出现了底部的 mobile-bottom-bar，则整体加个 padding-bottom*/
}
.site-footer.has-mobile-bar {
  padding-bottom: 80px;
}
.site-footer .footer-top {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(217, 229, 224, 0.1);
}
.site-footer .footer-nav-wrap {
  display: contents;
}
.site-footer .footer-col .footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
.site-footer .footer-col .col-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}
.site-footer .footer-col .text-secondary {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}
.site-footer .footer-col .mt-2 {
  margin-top: 12px;
}
.site-footer .footer-col .mt-3 {
  margin-top: 16px;
}
.site-footer .links ul li {
  margin-bottom: 12px;
}
.site-footer .links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 160ms ease;
}
.site-footer .links ul li a:hover {
  color: #eaf6f2;
}
.site-footer .contact-info .info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.site-footer .contact-info .info-list li .icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.site-footer .contact-info .social-media {
  display: flex;
  gap: 16px;
}
.site-footer .contact-info .social-media .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; /* 匹配 SVG 宽度*/
  height: 32px; /* 匹配 SVG 高度*/
  border-radius: 50%; /* 圆形背景，贴合图标*/
  color: #ffffff;
  cursor: default; /* 禁用可点击手势*/
  overflow: hidden; /* 确保完全贴合*/
}
.site-footer .contact-info .social-media .social-icon svg {
  width: 100%;
  height: 100%;
}
.site-footer .contact-info .social-media .social-icon.wechat-icon {
  background-color: #ffffff; /* 微信需要白色背景*/
}
.site-footer .contact-info .social-media .social-icon.douyin-icon {
  background-color: transparent; /* 抖音不需要背景*/
}
.site-footer .footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-bottom a:hover {
  color: #ffffff;
}
.site-footer .footer-bottom .legal-links {
  display: flex;
  gap: 24px;
}

/* Reverted from utilities.scss */
.text-secondary {
  color: #66736e;
}

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

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

/* Reverted responsive */
@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .site-footer .footer-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-nav-wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
  .site-footer .footer-nav-wrap .footer-col {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* ---------- component: layout/SiteHeader.vue ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #d9e5e0;
  height: var(--hesora-header-mobile);
}
.site-header .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
  max-width: none; /* 覆盖 container 的 max-width 限制，使其左右占满，仅受 padding 限制 */
}
.site-header .logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.site-header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #0b6b5a;
}
.site-header .main-nav {
  display: none;
}
.site-header .main-nav .nav-item {
  font-size: 16px;
  font-weight: 500;
  color: #1e2b27;
  padding: 8px 0;
  position: relative;
}
.site-header .main-nav .nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0b6b5a;
  transform: scaleX(0);
  transition: transform 160ms ease;
}
.site-header .main-nav .nav-item:hover, .site-header .main-nav .nav-item.is-active {
  color: #0b6b5a;
}
.site-header .main-nav .nav-item:hover::after, .site-header .main-nav .nav-item.is-active::after {
  transform: scaleX(1);
}
.site-header .header-actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.site-header .header-actions .action-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #1e2b27;
  transition: color 160ms ease;
  font-weight: 500;
}
.site-header .header-actions .action-icon:hover {
  color: #0b6b5a;
}
.site-header .header-actions .contact-btn {
  display: none;
}
.site-header .header-actions .contact-btn:hover, .site-header .header-actions .contact-btn:focus {
  background-color: #0b6b5a !important; /* 保持原有背景色*/
  color: #ffffff !important; /* 保持原有文字色*/
  border-color: #0b6b5a !important; /* 保持原有边框色*/
}
.site-header .header-actions .contact-btn:active {
  background-color: #0b6b5a;
  color: #ffffff;
  border-color: #0b6b5a;
  transform: scale(0.96) translateY(2px); /* 按压缩放和下沉效果*/
}
.site-header .header-actions .menu-btn {
  display: flex;
}
.site-header .mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #d9e5e0;
  border-bottom: 1px solid #d9e5e0;
  box-shadow: 0 4px 12px rgba(11, 107, 90, 0.08);
  z-index: 99;
}
.site-header .mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.site-header .mobile-menu .mobile-nav .mobile-nav-item {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #1e2b27;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 160ms ease;
}
.site-header .mobile-menu .mobile-nav .mobile-nav-item.is-active, .site-header .mobile-menu .mobile-nav .mobile-nav-item:hover {
  color: #0b6b5a;
  background-color: #eaf6f2;
  border-left-color: #0b6b5a;
}
.site-header .slide-down-enter-active,
.site-header .slide-down-leave-active {
  transition: all 0.3s ease;
  transform-origin: top;
}
.site-header .slide-down-enter-from,
.site-header .slide-down-leave-to {
  opacity: 0;
  transform: scaleY(0);
}

/* Reverted responsive */
@media (min-width: 1200px) {
  .site-header {
    height: var(--hesora-header-desktop);
  }
}
@media (min-width: 1200px) {
  .site-header .main-nav {
    display: flex;
    gap: 32px; /* 2026-09-05 12:44（北京）：按需求文档统一主导航间距。 */
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .site-header .header-actions .contact-btn {
    display: inline-flex;
  }
}
@media (min-width: 1200px) {
  .site-header .header-actions .menu-btn {
    display: none;
  }
}
@media (min-width: 1200px) {
  .site-header .mobile-menu {
    display: none;
  }
}
/* ---------- component: media/ResponsiveImage.vue ---------- */
.responsive-image-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}

.responsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- component: navigation/Pagination.vue ---------- */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.pagination-wrapper .page-numbers {
  display: flex;
  gap: 8px;
}
.pagination-wrapper .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  background-color: #ffffff;
  border: 1px solid #d9e5e0;
  border-radius: 4px;
  color: #1e2b27;
  font-size: 14px;
  cursor: pointer;
  transition: all 160ms ease;
}
.pagination-wrapper .page-btn:hover:not(:disabled) {
  border-color: #0b6b5a;
  color: #0b6b5a;
}
.pagination-wrapper .page-btn.is-active {
  background-color: #0b6b5a;
  border-color: #0b6b5a;
  color: #ffffff !important; /* 强制使用白色字体，解决权重或变量问题导致的数字消失*/
}
.pagination-wrapper .page-btn.is-ellipsis {
  border: none;
  background: transparent;
  cursor: default;
}
.pagination-wrapper .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-wrapper .page-btn:disabled.is-ellipsis {
  opacity: 1;
}