@charset "utf-8";

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url('/static/index/fonts/HarmonyOS_Sans_SC_Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url('/static/index/fonts/HarmonyOS_Sans_SC_Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url('/static/index/fonts/HarmonyOS_Sans_SC_Bold.ttf') format("truetype");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

/* 首页专用样式。保留旧站内容区留白断点，不影响其他页面。 */
.home-redesign {
  margin: 0;
  font-size: 14px;
  overflow-x: hidden;
  font-family: "HarmonyOS Sans SC", sans-serif;
  color: #333;
  background: #fff;
  --home-blue: #0869b9;
  --home-muted: #777;
  --home-header-height: 100px;
  --home-feature-aspect: 1.39;
}

.home-redesign *,
.home-redesign *::before,
.home-redesign *::after {
  box-sizing: border-box;
}

.home-redesign h1,
.home-redesign h2,
.home-redesign h3,
.home-redesign p,
.home-redesign figure {
  margin: 0;
}

.home-redesign a {
  color: inherit;
  text-decoration: none;
  font-weight: 300;
}

.home-redesign button,
.home-redesign input {
  font: inherit;
}

.home-redesign button {
  cursor: pointer;
}

.home-redesign img {
  display: block;
  max-width: 100%;
}

.home-redesign [hidden] {
  display: none !important;
}

.home-redesign :focus-visible {
  outline: 2px solid var(--home-blue);
  outline-offset: 4px;
}

.home-container {
  padding-inline: 170px;
  width: 100%;
  margin-inline: auto;
}

.home-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  padding: 12px 20px;
  background: white;
}

.home-skip-link:focus {
  top: 8px;
}

.home-header {
  position: relative;
  z-index: 100;
  background: #fff;
  height: var(--home-header-height);
}

.home-header-inner {
  height: 100%;
  max-width: 1480px;
  /* padding: 0 32px; */
  padding: 0 115px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.home-logo {
  min-width: 0;
  flex: 0 1 400px;
  /* margin-left: 120px; */
  margin-right: auto;
}

.home-logo img {
  width: 350px;
  height: auto;
}

.home-navigation {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: 8px;
  white-space: nowrap;
}

.home-nav-home,
.home-nav-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0 16px;
  font-family: "HarmonyOS Sans SC", sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: normal;
  border: 0;
  background: transparent;
  color: #333333;
}

.home-navigation .home-nav-home.is-current,
.home-navigation .home-nav-item.is-current>.home-nav-label {
  color: var(--home-blue);
}

.home-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.home-nav-item.has-children {
  display: grid;
  align-self: flex-start;
  margin-top: calc((var(--home-header-height) - 70px) / 2);
  border-radius: 12px;
}

.home-nav-item.has-children .home-nav-label {
  min-height: 70px;
}

.home-nav-label {
  position: relative;
  z-index: 2;
}

.home-dropdown {
  display: none;
  position: static;
  width: 100%;
  min-width: 100%;
  max-width: none;
  margin-top: -16px;
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
}

.home-dropdown a {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 42px;
  padding: 0;
  color: #333333;
}

.home-nav-item.has-children::before {
  display: none;
}

.home-nav-item.is-open::before {
  display: none;
}

.home-nav-item.is-open {
  background: rgba(241, 241, 241, .92);
}

.home-nav-item.is-open .home-dropdown {
  display: block;
}

.home-nav-item.is-open .home-nav-label,
.home-dropdown a:hover {
  color: var(--home-blue);
}

.home-nav-chevron {
  display: none;
}

.home-menu-toggle {
  display: none;
}

.home-search {
  position: relative;
  flex: none;
  align-self: center;
  margin-left: 5px;
}

.home-search-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: none;
  color: #777;
}

.home-search-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.home-search-form {
  position: absolute;
  right: 0;
  top: calc(100% - 5px);
  width: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.home-search-input-group {
  display: flex;
  align-items: stretch;
}

.home-search-form input {
  width: 140px;
  min-width: 0;
  border: 1px solid #dee2e6;
  border-right: 0;
  border-radius: 30px 0 0 30px;
  padding: .1rem .8rem;
  font-size: 12px;
  line-height: 1.5;
}

.home-search-form input:focus {
  outline: 0;
  border-color: #dee2e6;
  box-shadow: none;
}

.home-search-form button {
  flex: none;
  border: 1px solid #ccc;
  border-left: 0;
  border-radius: 0 30px 30px 0;
  background: var(--home-blue);
  color: white;
  padding: .375rem .75rem;
  font-size: 12px;
  line-height: 1.5;
}

.home-search-form button:hover,
.home-search-form button:focus {
  background: var(--home-blue);
  color: #fff;
}

.home-hero {
  width: 100%;
}

.home-hero-swiper {
  width: 100%;
  aspect-ratio: 115 / 19;
  background: #edf2f5;
}

.home-hero-swiper .swiper-slide {
  display: block;
  height: 100%;
}

.home-hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-swiper .swiper-pagination,
.home-feature-swiper .swiper-pagination {
  display: none !important;
}

.home-redesign .swiper-pagination-bullet {
  background: #fff;
  opacity: .65;
}

.home-redesign .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--home-blue);
}

.home-notice {
  background: #f7f7f7;
  color: #003E99;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.home-notice-inner {
  padding: 12px max(24px, 4.5vw);
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
}

.home-notice-label {
  display: flex;
  align-items: center;
  flex: none;
  gap: 10px;
}

.home-notice-label svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

.home-notice-label svg path+path {
  fill: none;
}

.home-notice-window {
  min-width: 0;
  overflow: hidden;
  flex: 1;
}

.home-notice-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
}

.home-notice-inner a:hover,
.home-notice-inner a:focus,
.home-notice-inner a:active {
  text-decoration: none;
}

.home-section {
  padding-top: 44px;
}

.home-section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.home-section-heading h1,
.home-section-heading h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #333;
  font-weight: 700;
  letter-spacing: 3px;
}

.home-section-heading p {
  font: 16px/1.5 "HarmonyOS Sans SC", sans-serif;
  color: #444;
  font-weight: 500;
  margin-top: -4px;
}

.home-section-heading>span {
  display: block;
  width: 35px;
  height: 12px;
  background: var(--home-blue);
  margin: 16px auto 0;
}

.home-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: stretch;
}

.home-feature {
  min-width: 0;
  align-self: start;
}

.home-feature-swiper,
.home-feature-empty {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: var(--home-feature-aspect);
  background: #f2f4f5;
}


.home-feature-empty {
  display: grid;
  place-items: center;
  color: #888;
}

.home-feature-swiper .swiper-slide {
  position: relative;
  display: block;
  height: 100%;
}

.home-feature-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(70, 90, 88, .34);
  color: #fff;
  font-size: 14px;
  padding: 17px 90px 17px 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-feature-swiper .swiper-pagination {
  text-align: right;
  padding-right: 16px;
  bottom: 20px;
  left: auto;
  right: 0;
  width: auto;
  max-width: 88px;
}

.home-feature-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 3px !important;
}

/* 新闻中心焦点图：对照参考页 .newsimg / .swipertext 样式。 */
.home-news-feature .home-feature-swiper,
.home-news-feature .home-feature-empty {
  height: 370px;
  aspect-ratio: auto;
}

.home-news-feature .home-feature-caption {
  min-height: 62px;
  padding: 20px 22% 17px 20px;
  background: rgba(0, 0, 0, .2);
  font-size: 16px;
  line-height: 25px;
}

/* 左侧焦点图保持原宽度，缩短的列间距全部让给右侧新闻列表。 */
.home-news .home-editorial {
  grid-template-columns: minmax(0, calc((100% - 90px) / 2)) minmax(0, 1fr);
  gap: 60px;
}

.home-news-feature .swiper-pagination {
  display: block !important;
  right: 10px;
  bottom: 5px;
  left: auto;
  width: 20%;
  max-width: none;
  padding-right: 0;
  text-align: right;
  z-index: 11;
}

.home-news-feature .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: #fff;
  opacity: 1;
}

.home-news-feature .swiper-pagination-bullet-active {
  border-radius: 5px;
  background: #01afb6;
}

.home-feature-next,
.home-feature-prev {
  --swiper-navigation-size: 25px;
  top: 45%;
  padding: 30px 20px;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .15s;
}

.home-feature-next {
  right: 0;
}

.home-feature-prev {
  left: 0;
  z-index: 99;
}

.home-news-feature:hover .home-feature-next,
.home-news-feature:hover .home-feature-prev,
.home-feature-next:focus-visible,
.home-feature-prev:focus-visible {
  opacity: 1;
}

.home-tab-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.home-tabs {
  display: flex;
  gap: 5px;
  flex: none;
  overflow-x: auto;
  padding: 0 2px 4px;
  scrollbar-width: thin;
}

.home-tab {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #d9d9d9;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
  padding: 8px 20px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.home-tab.is-active {
  background: var(--home-blue);
  color: #fff;
  border-color: var(--home-blue);
}

.home-tab-panel {
  margin-top: 33px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.home-news-list {
  display: grid;
  grid-template-rows: repeat(4, 82px);
  flex: none;
}

.home-news-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  font-size: 15px;
  min-width: 0;
}

.home-news-row:nth-child(odd) {
  background: #f6f6f6;
}

.home-news-row>span {
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.home-news-row:first-child>span {
  color: var(--home-blue);
  font-weight: 700;
  font-size: 16px;
}

.home-news-row time {
  font: 13px/1.5 "HarmonyOS Sans SC", sans-serif;
  flex: none;
}

.home-news-row:hover>span {
  color: var(--home-blue);
}

.home-more {
  align-self: flex-end;
  font-size: 13px;
  color: #777 !important;
  margin-top: 8px;
}

.home-more:hover {
  color: var(--home-blue) !important;
}

.home-empty {
  color: #999;
  padding: 25px 12px;
  font-size: 15px;
}

.home-industries {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.55fr 1.3fr;
  min-height: 440px;
  aspect-ratio: 2.95;
}

.home-industry-card {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  isolation: isolate;
  overflow: hidden;
  color: #fff !important;
}

.home-industry-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.home-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0000, #0004 60%, #0002);
  z-index: -1;
}

.home-industry-copy {
  width: 100%;
  padding: 20px 12px;
  text-align: center;
}

.home-industry-copy h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.home-industry-copy p {
  font: 300 12px/1.4 "HarmonyOS Sans SC", sans-serif;
  margin: 5px auto 0;
  max-width: 260px;
}

.home-industry-arrow {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #087bd0;
  margin: 18px auto 0;
  font-size: 22px;
  line-height: 1;
}

.home-industry-featured .home-industry-copy {
  text-align: left;
  padding-left: 50px;
}

.home-industry-featured .home-industry-copy p {
  margin-left: 0;
}

.home-industry-detail {
  display: inline-block;
  background: #fff;
  color: #555;
  padding: 10px 25px;
  font-size: 13px;
  margin-top: 36px;
}

.home-party {
  padding-bottom: 64px;
}

/* 党群建设：右侧内容区略宽，左侧固定焦点图随栏目切换。 */
.home-party .home-editorial {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 60px;
}

.home-party .home-feature {
  align-self: stretch;
  min-height: 0;
}

.home-party-feature {
  display: flex;
}

.home-party-feature-panel,
.home-party-feature-empty {
  position: relative;
  display: block;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #f2f4f5;
}

.home-party-feature-panel>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-party-feature-empty {
  display: grid;
  place-items: center;
  color: #888;
}

.home-party .home-tab-panel {
  margin-top: 45px;
}

.home-party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 8px;
  flex: 1;
}

.home-party-card {
  padding: 18px;
  min-width: 0;
  background: #f0f0f0;
  transition: background .15s, color .15s;
}

.home-party-card time {
  font: 13px/1.4 "HarmonyOS Sans SC", sans-serif;
  color: #666;
}

.home-party-card h3 {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  margin: 12px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-party-card p {
  color: #595757;
  /* font-family: "HarmonyOS Sans SC", sans-serif; */
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-party-card:hover {
  background: var(--home-blue);
  color: #fff;
}

.home-party-card:hover time,
.home-party-card:hover h3,
.home-party-card:hover p {
  color: #fff;
}

.home-footer {
  background: #f7f7f7;
}

.home-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 100px;
  padding-top: 30px;
  padding-bottom: 45px;
}

.home-footer-logo {
  display: block;
  max-width: 410px;
  margin-bottom: 40px;
}

.home-footer-logo img {
  width: 100%;
}

.home-footer-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  max-width: 765px;
}

.home-footer-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-footer-column a {
  font-size: 14px;
  line-height: 2;
  color: #3E3A39;
}

.home-footer-column .home-footer-heading {
  font-size: 16px;
  color: #3E3A39;
  margin-bottom: 5px;
  font-weight: 600;
}

.home-footer-column a:hover {
  color: var(--home-blue);
}

.home-footer-contact {
  font-weight: 300;
}

.home-contact-line {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #595757;
  font-size: 15px;
  margin-bottom: 10px !important;
}

.home-contact-line img {
  width: 26px;
  height: 26px;
  flex: none;
  object-fit: contain;
}

.home-qr-heading {
  text-align: center;
  font-size: 13px;
  color: #595757;
  padding: 25px 0 14px;
}

.home-qr-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.home-qr-list figure {
  width: 155px;
  min-width: 0;
  text-align: center;
}

.home-qr-list img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: white;
  padding: 5px;
}

.home-qr-list figcaption {
  color: #595757;
  font-size: 13px;
  margin-top: 6px;
}

.home-footer-bottom {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 12px 24px;
  background: #efefef;
  color: #595757;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

@media (max-width:1700px) {
  .home-container {
    padding-inline: 100px;
  }

  .home-header-inner {
    max-width: 1400px;
    gap: 16px;
  }

  .home-logo {
    flex-basis: 340px;
  }

  .home-nav-label,
  .home-nav-home {
    padding-inline: 13px;
    font-size: 18px;
  }

  .home-editorial {
    gap: 50px;
  }

  .home-tab {
    padding-inline: 18px;
  }

  .home-footer-main {
    gap: 60px;
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .home-party-card {
    padding: 18px;
  }
}

@media (max-width:1400px) {
  .home-party .home-editorial {
    gap: 30px;
  }

  .home-container {
    padding-inline: 50px;
  }

  .home-redesign {
    --home-header-height: 100px;
  }

  .home-header-inner {
    gap: 16px;
  }

  .home-logo {
    flex-basis: 300px;
    max-width: 320px;
  }

  .home-navigation {
    gap: 0;
  }

  .home-nav-label,
  .home-nav-home {
    font-size: 18px;
    padding-inline: 12px;
  }

  .home-dropdown a {
    font-size: 16px;
  }

  .home-editorial {
    gap: 30px;
  }

  .home-section {
    padding-top: 50px;
  }

  .home-section-heading {
    margin-bottom: 40px;
  }

  .home-section-heading h1,
  .home-section-heading h2 {
    font-size: 34px;
  }

  .home-section-heading p {
    font-size: 16px;
  }

  .home-section-heading>span {
    width: 34px;
    height: 9px;
    margin-top: 22px;
  }

  .home-tab {
    font-size: 14px;
    padding: 6px 14px;
  }

  .home-tab-panel {
    margin-top: 36px;
  }

  .home-news-row {
    padding: 12px 16px;
    gap: 14px;
    font-size: 13px;
  }

  .home-news-row:first-child>span {
    font-size: 14px;
  }

  .home-news-row time {
    font-size: 12px;
  }

  .home-party .home-tab-panel {
    margin-top: 30px;
  }

  .home-party-grid {
    grid-template-rows: repeat(2, minmax(150px, 1fr));
  }

  .home-party-card h3 {
    font-size: 13px;
    margin-top: 10px;
  }

  .home-industries {
    min-height: 350px;
  }

  .home-industry-copy h3 {
    font-size: 20px;
  }

  .home-industry-featured .home-industry-copy {
    padding-left: 30px;
  }

  .home-footer-main {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .home-footer-nav {
    gap: 16px;
  }

  .home-footer-column .home-footer-heading {
    font-size: 16px;
  }

  .home-footer-column a {
    font-size: 13px;
  }
}

@media (max-width:1200px) {
  .home-header-inner {
    gap: 8px;
    padding-inline: 24px;
  }

  .home-logo {
    flex-basis: 250px;
  }

  .home-nav-label,
  .home-nav-home {
    font-size: 18px;
    padding-inline: 10px;
  }

  .home-tab {
    padding: 6px 10px;
    font-size: 13px;
  }

  .home-news-row {
    padding: 10px 12px;
    gap: 10px;
    font-size: 13px;
  }

  .home-feature-caption {
    font-size: 13px;
    padding-left: 15px;
  }

  .home-footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width:993px) {
  .home-news .home-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-party .home-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-party-feature {
    aspect-ratio: var(--home-feature-aspect);
  }

  .home-feature-next,
  .home-feature-prev {
    display: none;
  }

  .home-container {
    padding-inline: 30px;
  }

  .home-redesign {
    --home-header-height: 78px;
  }

  .home-header-inner {
    gap: 18px;
    padding-inline: 30px;
  }

  .home-logo {
    flex-basis: auto;
    width: 300px;
  }

  .home-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: none;
    padding: 10px 4px;
    width: 32px;
    order: 3;
  }

  .home-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #666;
  }

  .home-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 30px 24px;
    max-height: calc(100dvh - var(--home-header-height));
    overflow: auto;
    box-shadow: 0 12px 20px #0001;
    white-space: normal;
  }

  .home-navigation.is-open {
    display: block;
  }

  .home-search {
    margin: 12px 0 0;
  }

  .home-nav-item {
    display: block;
    border-bottom: 1px solid #eee;
  }

  .home-nav-item.has-children {
    display: block;
    align-self: auto;
    margin-top: 0;
    border-radius: 0;
  }

  .home-nav-item.has-children .home-nav-label {
    min-height: 48px;
  }

  .home-nav-item.is-open {
    background: transparent;
  }

  .home-nav-home,
  .home-nav-label {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
  }

  .home-nav-chevron {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(45deg);
    margin-right: 5px;
  }

  .home-nav-item.is-open .home-nav-chevron {
    transform: rotate(225deg);
  }

  .home-nav-item.has-children::before {
    display: none;
  }

  .home-dropdown {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 5px 16px 12px;
    border-radius: 8px;
  }

  .home-dropdown a {
    font-size: 14px;
    text-align: left;
    padding: 8px 0;
  }

  .home-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-tab-panel,
  .home-party .home-tab-panel {
    margin-top: 22px;
  }

  .home-news-list {
    grid-template-rows: repeat(4, 70px);
  }

  .home-party-grid {
    grid-template-rows: repeat(2, minmax(170px, auto));
  }

  .home-party-card h3 {
    font-size: 14px;
  }

  .home-industries {
    aspect-ratio: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .home-industry-card {
    min-height: 330px;
  }

  .home-industry-featured .home-industry-copy {
    text-align: center;
    padding-left: 12px;
  }

  .home-industry-featured .home-industry-copy p {
    margin-inline: auto;
  }

  .home-footer-main {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .home-footer-logo {
    margin-bottom: 28px;
  }
}

@media (max-width:768px) {
  .home-footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .home-footer-left {
    min-width: 0;
  }

  .home-footer-logo {
    max-width: 360px;
    margin-bottom: 28px;
  }

  .home-footer-nav {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 24px;
  }

  .home-footer-column a {
    width: 100%;
  }

  .home-footer-contact {
    width: 100%;
    padding-top: 26px;
    border-top: 1px solid #e5e5e5;
  }
}

@media (max-width:576px) {
  .home-party .home-editorial {
    gap: 22px;
  }

  .home-news-feature .home-feature-swiper,
  .home-news-feature .home-feature-empty {
    height: 220px;
  }

  .home-news-feature .home-feature-caption {
    min-height: 0;
    padding: 5px 20% 5px 20px;
    font-size: 14px;
  }

  .home-container {
    padding-inline: 20px;
  }

  .home-redesign {
    --home-header-height: 68px;
  }

  .home-header-inner {
    padding-inline: 20px;
    gap: 12px;
  }

  .home-logo {
    width: auto;
    max-width: 245px;
    min-width: 0;
    flex: 1;
  }

  .home-footer-logo {
    max-width: 310px;
    margin-bottom: 24px;
  }

  .home-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 22px;
  }

  .home-footer-column .home-footer-heading {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .home-footer-column a {
    font-size: 13px;
    line-height: 1.9;
  }

  .home-contact-line {
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .home-contact-line img {
    width: 22px;
    height: 22px;
    margin-top: 1px;
  }

  .home-qr-heading {
    padding-top: 20px;
  }

  .home-qr-list {
    gap: 14px;
  }

  .home-qr-list figure {
    width: min(135px, calc((100% - 14px) / 2));
  }

  .home-footer-bottom {
    row-gap: 3px;
    padding-inline: 20px;
    font-size: 12px;
    line-height: 1.7;
  }

  .home-search-toggle {
    width: 28px;
    padding: 4px;
  }

  .home-search-form {
    right: 0;
    width: auto;
  }

  .home-hero-swiper {
    aspect-ratio: 4.5;
  }

  .home-notice-inner {
    padding: 10px 20px;
    min-height: 42px;
    font-size: 11px;
    gap: 3px;
  }

  .home-notice-label {
    gap: 6px;
  }

  .home-notice-label svg {
    width: 17px;
    height: 17px;
  }

  .home-notice-track {
    gap: 24px;
  }

  .home-section {
    padding-top: 38px;
  }

  .home-section-heading {
    margin-bottom: 28px;
  }

  .home-section-heading h1,
  .home-section-heading h2 {
    font-size: 27px;
    letter-spacing: 2px;
  }

  .home-section-heading p {
    font-size: 13px;
  }

  .home-section-heading>span {
    width: 28px;
    height: 7px;
    margin-top: 16px;
  }

  .home-editorial {
    gap: 22px;
  }

  .home-tabs {
    gap: 4px;
  }

  .home-tab {
    padding: 5px 9px;
    font-size: 12px;
  }

  .home-news-row {
    font-size: 12px;
  }

  .home-news-row:first-child>span {
    font-size: 13px;
  }

  .home-news-row time {
    font-size: 11px;
  }

  .home-feature-caption {
    padding: 12px 78px 12px 12px;
    font-size: 12px;
  }

  .home-feature-swiper .swiper-pagination {
    bottom: 15px;
  }

  .home-industry-card {
    min-height: 265px;
  }

  .home-industry-copy {
    padding: 15px 8px;
  }

  .home-industry-copy h3 {
    font-size: 17px;
  }

  .home-industry-copy p {
    font-size: 10px;
  }

  .home-industry-detail {
    padding: 8px 14px;
    margin-top: 22px;
  }

  .home-party {
    padding-bottom: 40px;
  }

  .home-party-grid {
    gap: 10px;
    grid-template-rows: repeat(2, minmax(165px, auto));
  }

  .home-party-card {
    padding: 12px;
  }

  .home-party-card time {
    font-size: 10px;
  }

  .home-party-card h3 {
    font-size: 12px;
  }

  .home-party-card p {
    color: #999;
    font-family: "HarmonyOS Sans SC", sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion:reduce) {
  .home-redesign * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}