/* News */
.news-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: #152b3f;
  overflow: hidden;
}

.news-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  filter: saturate(.75) brightness(.6);
}

.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 25, 35, .3) 0%, rgba(15, 25, 35, .15) 100%);
}

.news-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.news-hero-content h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: .04em;
}

.news-hero-content p {
  margin-top: 12px;
  font-size: 16px;
  color: #c8d6e0;
}

.news-wrap {
  padding-top: 50px;
  padding-bottom: 90px;
}

.news-tabs {
  display: flex;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 36px;
}

.news-tabs a {
  position: relative;
  color: #666;
  font-size: 15px;
  padding-bottom: 16px;
  transition: color .2s;
}

.news-tabs a.active {
  color: #1a1a1a;
  font-weight: 600;
}

.news-tabs a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a1a1a;
  border-radius: 1px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.news-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: box-shadow .25s, transform .25s;
}

.news-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.news-card-img {
  aspect-ratio: 1.4;
  overflow: hidden;
  background: #f0efeb;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.news-card:hover .news-card-img img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 16px 18px 20px;
}

.news-card-body time {
  color: #999;
  font-size: 12px;
}

.news-card-body h3 {
  margin: 8px 0 12px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body b {
  color: #2c6fe8;
  font-size: 13px;
  font-weight: 500;
}

.news-detail-head {
  max-width: 990px;
  padding-top: 155px;
  padding-bottom: 60px;
  text-align: center;
}

.news-detail-head .back-link {
  text-align: left;
}

.news-detail-head .section-label {
  justify-content: center;
}

.news-detail-head h1 {
  margin: 18px 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.2;
  letter-spacing: 0;
}

.news-detail-head>p {
  color: var(--muted);
  font-size: 18px;
}

.news-detail-head>div {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #8493a0;
  font-size: 12px;
}

.news-detail-cover {
  max-width: 1160px;
}

.news-detail-cover img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  border-radius: var(--radius);
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  justify-content: center;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 120px;
}

.news-detail-layout aside {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
}

.news-detail-layout aside span {
  margin-bottom: 10px;
  font-weight: 700;
}

.news-detail-layout aside a {
  padding: 7px 0;
  color: #748493;
  font-size: 13px;
}

/* About and service */
/* Shared catalogue hero for news pages */
/* Commerce product detail */.shop-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}

.shop-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 19, .34);
}

.shop-hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.shop-hero-copy span {
  font-size: 13px;
  letter-spacing: .14em;
}

.shop-hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
}

.shop-catalog {
  padding-top: 58px;
  padding-bottom: 110px;
}

.shop-filters {
  padding: 4px 26px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 35px rgba(39, 35, 29, .06);
}

.shop-filters nav {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-filters nav::-webkit-scrollbar {
  display: none;
}

.shop-filters nav+nav {
  border-top: 1px solid #ecebe8;
}

.shop-filters a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #9297a0;
  font-size: 14px;
  white-space: nowrap;
}

.shop-filters a.active {
  color: #272a30;
  font-weight: 600;
}

.shop-filter-primary a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 0;
  background: #272a30;
}

.shop-filter-secondary a.active {
  color: #272a30;
  font-weight: 600;
}

.shop-filter-secondary a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  background: #2c6fe8;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 44px 0 22px;
}

.shop-toolbar strong {
  font-size: 20px;
  font-weight: 500;
}

.shop-toolbar span {
  color: #9a9da3;
  font-size: 13px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 100px;
}

.shop-card {
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(33, 30, 24, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(33, 30, 24, .12);
}

.shop-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fafafa;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.04);
}

.shop-badge {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 13px;
  padding: 4px 8px;
  border-radius: 3px;
  background: #3f5cf4;
  color: #fff;
  font-size: 10px;
}

.shop-card-copy {
  padding: 18px 18px 20px;
}

.shop-card-copy small {
  color: #9297a0;
  font-size: 11px;
}

.shop-card-copy h2 {
  margin: 8px 0 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.shop-card-copy p {
  display: -webkit-box;
  min-height: 39px;
  margin: 0;
  overflow: hidden;
  color: #9b9da1;
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shop-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eeeeec;
}

.shop-card-bottom strong {
  color: #ff4b4b;
  font-size: 16px;
  font-weight: 500;
}

.shop-card-bottom a {
  color: #3f5cf4;
  font-size: 12px;
}

.shop-card-bottom a span {
  margin-left: 5px;
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 新闻页面移动端适配 */
@media (max-width: 768px) {
  .news-hero {
    min-height: 240px;
  }

  .news-hero-content h1 {
    font-size: 28px;
  }

  .news-hero-content p {
    font-size: 13px;
    margin-top: 8px;
  }

  .news-wrap {
    padding-top: 24px;
    padding-bottom: 50px;
    padding-inline: 16px;
  }

  .news-tabs {
    gap: 16px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .news-tabs::-webkit-scrollbar {
    display: none;
  }

  .news-tabs a {
    font-size: 13px;
    white-space: nowrap;
    padding-bottom: 10px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-card {
    border-radius: 6px;
  }

  .news-card-img {
    aspect-ratio: 1.6;
  }

  .news-card-body {
    padding: 12px 14px 16px;
  }

  .news-card-body time {
    font-size: 11px;
  }

  .news-card-body h3 {
    font-size: 14px;
    margin: 6px 0 10px;
    -webkit-line-clamp: 2;
  }

  .news-card-body b {
    font-size: 12px;
  }

  /* 新闻详情页 */
  .news-detail-head {
    padding-top: 90px;
    padding-bottom: 30px;
    padding-inline: 16px;
  }

  .news-detail-head h1 {
    font-size: 26px;
    margin: 12px 0;
  }

  .news-detail-head > p {
    font-size: 13px;
  }

  .news-detail-head > div {
    gap: 8px;
    font-size: 11px;
  }

  .news-detail-cover {
    padding-inline: 16px;
  }

  .news-detail-cover img {
    max-height: 300px;
    border-radius: 6px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 50px;
    padding-inline: 16px;
  }

  .news-detail-layout aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
    border-radius: 6px;
  }

  .news-detail-layout aside span {
    margin-bottom: 0;
    width: 100%;
    font-size: 13px;
  }

  .news-detail-layout aside a {
    padding: 5px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
  }

  .news-detail-layout aside a:hover {
    border-color: #2c6fe8;
    color: #2c6fe8;
  }
}

@media (max-width: 480px) {
  .news-hero-content h1 {
    font-size: 24px;
  }

  .news-detail-head h1 {
    font-size: 22px;
  }

  .news-card-body h3 {
    font-size: 13px;
  }
}

/* 新闻列表页面 - shop-hero 样式移动端适配 */
@media (max-width: 768px) {
  .shop-hero {
    min-height: 240px;
  }

  .shop-hero-copy {
    padding: 0 20px;
  }

  .shop-hero-copy h1 {
    font-size: 32px;
    letter-spacing: 0.02em;
  }

  .shop-catalog {
    padding-top: 24px;
    padding-bottom: 60px;
    padding-inline: 16px;
  }

  .shop-filters {
    padding: 12px 14px 4px;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .shop-filters nav {
    gap: 16px;
    min-height: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .shop-filters nav::-webkit-scrollbar {
    display: none;
  }

  .shop-filters a {
    font-size: 13px;
    min-height: 36px;
    white-space: nowrap;
    padding: 0 4px;
  }

  .shop-filters a.active {
    font-weight: 600;
    color: #1a1a1a;
  }

  .shop-toolbar {
    padding: 28px 0 16px;
  }

  .shop-toolbar strong {
    font-size: 18px;
    font-weight: 600;
  }

  .shop-toolbar span {
    font-size: 12px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .news-card-img {
    aspect-ratio: 1.6;
    overflow: hidden;
  }

  .news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-card:hover .news-card-img img {
    transform: scale(1.02);
  }

  .news-card-body {
    padding: 14px 16px 18px;
  }

  .news-card-body time {
    font-size: 12px;
    color: #999;
  }

  .news-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 8px 0 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }

  /* 分页 */
  .pagination {
    margin-top: 40px;
    gap: 8px;
  }

  .pagination-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 6px;
  }

  .pagination-ellipsis {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
}

/* 新闻详情页面移动端适配 */
@media (max-width: 768px) {
  .sol-detail-wrap {
    background: #fff;
  }

  .sol-detail {
    padding-top: 70px;
    padding-bottom: 40px;
    padding-inline: 16px;
    max-width: 100%;
  }

  .sol-detail-title {
    font-size: 24px;
    line-height: 1.4;
    color: #1a1a1a;
    word-break: break-word;
  }

  .sol-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    color: #888;
    font-size: 13px;
  }

  .sol-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
  }

  .sol-detail-body {
    padding-top: 24px;
    padding-bottom: 30px;
    color: #444;
    font-size: 15px;
    line-height: 1.9;
  }

  .sol-detail-body p {
    margin-bottom: 16px;
  }

  .sol-detail-body h2 {
    font-size: 20px;
    margin: 28px 0 14px;
    color: #1a1a1a;
  }

  .sol-detail-body h3 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #1a1a1a;
  }

  .sol-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 16px 0;
  }

  .sol-detail-body ul,
  .sol-detail-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
  }

  .sol-detail-body li {
    margin-bottom: 8px;
    line-height: 1.7;
  }

  .sol-detail-body blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 3px solid #2c6fe8;
    background: #f8f9fa;
    border-radius: 0 6px 6px 0;
    color: #555;
    font-style: italic;
  }

  .sol-detail-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid #eee;
  }

  .sol-detail-prev,
  .sol-detail-next {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    border-radius: 8px;
    background: #f5f5f5;
    transition: background 0.2s;
  }

  .sol-detail-next {
    text-align: left;
  }

  .sol-detail-prev:hover,
  .sol-detail-next:hover {
    background: #eee;
  }

  .sol-detail-prev small,
  .sol-detail-next small {
    font-size: 11px;
    color: #999;
  }

  .sol-detail-prev strong,
  .sol-detail-next strong {
    margin-top: 4px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
  }

  .sol-detail-prev.disabled,
  .sol-detail-next.disabled {
    display: none;
  }
}

/* 相关推荐移动端适配 */
@media (max-width: 768px) {
  .sol-related {
    padding-top: 40px;
    padding-bottom: 60px;
    padding-inline: 16px;
    background: #f8f9fa;
  }

  .sol-related-heading {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
  }

  .sol-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sol-related-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .sol-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .sol-related-img {
    position: relative;
    aspect-ratio: 1.7;
    overflow: hidden;
  }

  .sol-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .sol-related-card:hover .sol-related-img img {
    transform: scale(1.03);
  }

  .sol-related-img span {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
  }

  .sol-related-body {
    padding: 14px 16px 18px;
  }

  .sol-related-body small {
    font-size: 12px;
    color: #999;
  }

  .sol-related-body h3 {
    margin: 6px 0 10px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .sol-related-body b {
    color: #2c6fe8;
    font-size: 13px;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .shop-hero-copy h1 {
    font-size: 28px;
  }

  .news-card-body h3 {
    font-size: 15px;
  }

  .sol-detail-title {
    font-size: 22px;
  }

  .sol-detail-body {
    font-size: 14px;
  }

  .sol-related-heading {
    font-size: 20px;
  }
}
