/* Home hero */
.home-main {
  background: #06122c;
}

.home-hero {
  position: relative;
}

.home-hero__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.home-hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 13, 34, 0.85), rgba(7, 32, 91, 0.72));
  z-index: 0;
}

.home-hero__media {
}

.home-hero__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-hero__content {
  position: absolute;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-hero__content h1 {
  font-size: 46px;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 2px;
  margin: 0;
}

.home-hero__content p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  margin: 0;
}

.home-hero__eyebrow {
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3em;
  font-size: 14px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  justify-content: center;
}

.home-hero .btn-primary {
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(120deg, #00a2ff, #1663ff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 35px rgba(10, 45, 120, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 45px rgba(12, 55, 140, 0.4);
}

.home-hero .btn-link {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.home-hero__stats {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  flex-wrap: wrap;
  justify-content: center;
}

.home-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.78);
  align-items: center;
}

.home-hero__stats strong {
  font-size: 36px;
  color: #fff;
}

.home-hero__pagination {
  position: absolute;
  bottom: 18px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.home-hero__pagination .swiper-pagination-bullet {
  width: 56px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: background 0.2s ease;
}

.home-hero__pagination .swiper-pagination-bullet-active {
  background: #003c8c;
}

@media (max-width: 768px) {
  .home-hero__slide {
    padding: 80px 16px;
  }

  .home-hero__content h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .home-hero__stats {
    flex-direction: column;
  }
}
/* Index news */
.index-news {
  position: relative;
  padding: 38px 0;
  background:url(../images/index_bg1.png) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.index-news__texture {
  position: absolute;
  inset: 0;
  background-image: url('../images/index-section6-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.index-news__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 70px rgba(7, 25, 69, 0.12);
}

.index-news__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
}

.index-news__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.index-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #e1e6f2;
}

.index-news__eyebrow {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #5a6bb8;
  margin: 0 0 6px;
}

.index-news__header h2 {
  font-size:24px;
  margin: 0;
  color: #000000;
  font-weight: normal;
  position: relative;
}


.index-news__header h2::after {
  content: ' ';
  display: inline-block;
  height: 6px;
  width: 120%;
  position: absolute;
  left: 0;
  bottom: -22px;
  background: #003c8c;
}

.index-news__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-weight: 600;
  font-weight: normal;
  text-decoration: none;
}

.index-news__more:hover {
  color: #000000;
}

.index-news__more span {
  display: inline-block;
  width: 47px;
  height: 18px;
  border-radius: 999px;
  background: url(../images/more.png) no-repeat center center;

}

.index-news__feature-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e9f4;
}

.index-news__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-news__feature-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.index-news__feature-body h3 {
  font-size: 22px;
  margin: 0;
  color: #0f204f;
}

.index-news__feature-body time {
  font-size: 14px;
  color: rgba(15, 32, 79, 0.6);
}

.index-news__feature-body p {
  margin: 0;
  color: rgba(15, 32, 79, 0.75);
  line-height: 1.8;
}

.index-news__policy-card {
  display: flex;
  /* min-height: 192px; */

}
.article-detail__r img {
  width: 14px;
  height: 14px;
  margin-right: 9px;
}
.index-news__policy-card h3 {
  font-size: 18px;
  margin: 10px 0 10px;
  color: #000000;
  font-weight: normal;
}
.article-detail__img {
  padding-right: 20px;
}
.article-detail__r {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.index-news__policy-card time {
  font-size: 14px;
  padding: 20px 0;
  color: rgba(15, 32, 79, 0.6);
  width: 100%;
}

.index-news__policy-card p {
  margin: 10px 0 0;
  color: #2d2e2e;
  line-height: 1.8;
  font-size:14px ;
  /* 超出两行省略号 */

  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index-news__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.index-news__bullet-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
}

.index-news__bullet-list a {
  flex: 1;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
}

.index-news__bullet-list a:hover {
  color: #0f4fbf;
}

.index-news__bullet-list time {
  flex: 0 0 auto;
  font-size: 14px;
  color: #818181;
}

.index-news__bullet-list--compact li {
  padding-bottom: 10px;
}

@media (max-width: 992px) {
  .index-news {
    padding: 100px 16px;
  }

  .index-news__inner {
    padding: 32px;
  }

  .index-news__grid {
    grid-template-columns: 1fr;
  }
}


/* Index services */
.index-services {
  padding: 38px 0;
  background: #f7f9ff;
}

.index-services__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.index-services__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  color: #0f204f;
}

.index-services__eyebrow {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 79, 191, 0.2);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: #0f4fbf;
  margin-bottom: 16px;
}

.index-services__head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.index-services__head p {
  margin: 0;
  color: rgba(15, 32, 79, 0.68);
  line-height: 1.8;
}

.index-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
}

.index-services__card {
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.index-services__artwork,
.index-services__card h3,
.index-services__card p {
  position: relative;
  z-index: 1;
}
.index-services__artwork,.index-advantages__card {
  transition: all 0.2s ease-in-out;
}
.index-services__artwork:hover,.index-advantages__card:hover {
  transition: all 0.2s ease-in-out !important;
     transform: translateY(-10px) !important;
}

.index-services__artwork {

  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 auto 18px;
  background-image: url('../images/icon_bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.index-services__artwork img {
  width: 70%;
  max-width: 180px;
}

.index-services__card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  position: absolute;
  left: 0;
  width: 100%;
  right: 0;
  top: 30px;
  color: #0f204f;
  z-index: 59;
  font-weight: normal;
}

.index-services__card p {
  margin: 0;
  color: rgba(15, 32, 79, 0.7);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .index-services {
    padding: 100px 16px 120px;
  }

  .index-services__grid {
    gap: 18px;
  }
}

/* Index advantages */
.index-advantages {
  position: relative;
  padding: 40px 0 ;
  background: url('../images/indexbg2.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
}

.index-advantages__texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(74, 192, 255, 0.3), transparent 55%);
  opacity: 0.6;
}

.index-advantages__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 120px 24px 0;
}

.index-advantages__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.index-advantages__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 16px;
}

.index-advantages__head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 16px;
}

.index-advantages__head p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.index-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.index-advantages .section-divider span{
  color: #fff;
}
.index-advantages .section-divider::before {
  background: #ffffff;
  opacity: 0.3;
}
.index-advantages__card {
  padding:75px 26px 42px;
  background: #003c8c;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.index-advantages__card:nth-child(even) {
  background: #fff;
}
.index-advantages__card:nth-child(even) h3{
  color: #003c8c;
}
.index-advantages__card:nth-child(even) p{
  color: #1b1b1b;
}

.index-advantages__icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-advantages__card:nth-child(even) .index-advantages__icon {
  background: #003c8c;
}

.index-advantages__icon svg {
  width: 40px;
  height: 40px;
  color: #003c8c;
}


.index-advantages__card:nth-child(even) .index-advantages__icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.index-advantages__card h3 {
  font-size: 20px;
  margin: 0;
  font-weight: normal;
}

.index-advantages__card p {
  margin: 0 auto;
  margin-top: 10px;
  font-size: 13px;
  max-width: 195px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

@media (max-width: 992px) {
  .index-advantages__inner {
    padding-top: 100px;
  }
}

@media (max-width: 640px) {
  .index-advantages__grid {
    gap: 18px;
  }

  .index-advantages__card {
    padding: 30px 20px;
  }
}

/* Entrust entrust section */
.entrust-section {
  background: #f4f7fb;
  padding: 80px 0 120px;
}

.entrust-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;

  align-items: stretch;
}

.entrust-card,
.entrust-contact-card {
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(7, 25, 69, 0.08);
  padding: 40px;
}

.entrust-card__head {
  margin-bottom: 28px;
  padding-bottom: 18px;
  line-height: 46px;
  width: 100%;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

.entrust-card__head h2 {
  margin: 0 auto 8px;
  font-size:18px;
  width: 440px;
  letter-spacing: 0.1em;
  background: #003c8c;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.entrust-card__head p {
  margin: 0;
  color: #7a819a;
  font-size: 15px;
}

.entrust-card__head strong {
  color: #c40000;
}

.entrust-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 80px;
}

.entrust-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.entrust-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entrust-field__label {
  font-size: 15px;
  color: #0f204f;
}

.entrust-field input,
.entrust-field textarea {
  width: 100%;
  border: 1px solid #dfe3eb;
  padding: 14px 16px;
  font-size: 15px;
  color: #111111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.entrust-field textarea {
  resize: vertical;
  min-height: 140px;
}

.entrust-field input:focus,
.entrust-field textarea:focus {
  outline: none;
  border-color: #0d349b;
  box-shadow: 0 0 0 1px rgba(13, 52, 155, 0.2);
}

.entrust-field.has-error input,
.entrust-field.has-error textarea {
  border-color: #e53e3e;
}

.entrust-form__hint {
  margin: 4px 0 0;
  color: #8b90a7;
  font-size: 14px;
}

.entrust-form__submit {
  align-self: flex-start;
  padding: 14px 45px;
  border: none;
  background: #003c8c;
  color: #ffffff;
  font-size: 16px;
  margin: 20px auto 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.entrust-form__submit:hover {
  transform: translateY(-1px);
}

.entrust-form__message {
  min-height: 20px;
  font-size: 14px;
  color: #0d8a4d;
  margin: 4px 0 0;
}

.entrust-form__message.is-error {
  color: #c53030;
}
.entrust-contact-card {
  color: #ffffff;
  background: url(../images/b6.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.entrust-contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 60%);
  pointer-events: none;
}
.entrust-contact-card h3 {
  position: relative;
  margin: 0 0 24px;
  font-size: 20px;
  letter-spacing: 0.2em;
}
.entrust-contact-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.entrust-contact-list li {
  display: flex;
  gap: 5px;
  align-items: center;
}

.entrust-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin-right: 5px;
  color: #ffffff;
}

.entrust-contact__label {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.72);
}

.entrust-contact-list p {
  margin: 2px 0 0;
}

@media (max-width: 992px) {
  .entrust-section__inner {
    grid-template-columns: 1fr;
  }

  .entrust-contact-card {
    order: -1;
  }
}


.report-query-section {
  position: relative;
  padding: 90px 24px 80px;
  background-color: #031a41;
  background-image: linear-gradient(135deg, rgba(4, 34, 87, 0.92), rgba(15, 65, 138, 0.88)), url('../images/report-query-bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #ffffff;
}

.report-query-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(58, 121, 255, 0.25), transparent 55%), radial-gradient(circle at 80% 0%, rgba(26, 180, 255, 0.18), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.report-query__inner {
  position: relative;
  z-index: 1;
  width: 1010px;
  margin: 0 auto;
  text-align: center;
}

.report-query__eyebrow {
  display: inline-flex;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.report-query__title {
  margin: 30px auto 10px;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.report-query__subtitle {
  margin-bottom: 36px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.report-query__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  gap: 16px;
  margin: 0 auto 16px;
}

.query-tab {
  min-width: 120px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.query-tab:hover,
.query-tab:focus-visible {
  border-color: rgba(0, 60, 140, 1);
  background: rgba(0, 60, 140, 0.4);
  outline: none;
}

.query-tab.active {
  border-color: rgba(0, 60, 140, 1);
  background: rgba(0, 60, 140, 0.4);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(10, 32, 78, 0.3);
}

.report-query__form {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.report-query__form input {
  flex: 1;
  border: none;
  padding: 0 18px;
  height: 50px;
  color: #0d2250;
  background: #ffffff;
}

.report-query__form input::placeholder {
  color: #6e7a9a;
}

.report-query__form input:focus {
  outline: none;
}

.report-query__form button {
  min-width: 140px;
  margin-left: 12px;
  height: 50px;
  border: none;
  background: #003c8c;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-query__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 79, 191, 0.4);
}

.report-query__feedback {
  min-height: 24px;
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.report-query__feedback.is-error {
  color: #ffb5b5;
}

.report-query__feedback.is-success {
  color: #b9ffd9;
}

.report-query__result {
  margin-top: 28px;
  text-align: left;
}

.report-query__result-card {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 11, 32, 0.72);
  box-shadow: 0 25px 55px rgba(1, 5, 17, 0.55);
  backdrop-filter: blur(6px);
}

.result-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.result-card__eyebrow {
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px;
}

.report-query__result-card h3 {
  margin: 0;
  font-size: 32px;
  color: #ffffff;
}

.result-card__sub {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.result-card__badge {
  padding: 16px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(11, 67, 164, 0.4);
  text-align: right;
}

.result-card__badge span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.result-card__badge strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  color: #ffffff;
}

.result-card__meta {
  margin: 28px 0 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.result-card__meta-item span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.result-card__meta-item strong {
  font-size: 18px;
  color: #ffffff;
  word-break: break-word;
}

.result-card__excerpt {
  margin: 12px 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.result-card__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.result-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.result-card__link:hover,
.result-card__link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.85);
  outline: none;
}

.result-card__cover {
  margin: 18px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-card__cover img {
  width: 100%;
  display: block;
}

.result-card__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.result-card__gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.result-card__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-query__hint {

  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 992px) {
  .report-query-section {
    padding: 120px 20px 100px;
  }

  .report-query__form {
    padding: 10px;
  }

  .report-query__form input {
    font-size: 16px;
    height: 58px;
  }

  .report-query__form button {
    height: 58px;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .report-query-section {
    padding: 100px 16px 90px;
  }

  .report-query__tabs {
    gap: 10px;
  }

  .query-tab {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    text-align: center;
  }

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

  .report-query__form button {
    width: 100%;
  }

  .report-query__result-card {
    padding: 24px;
  }

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

  .result-card__badge {
    width: 100%;
    text-align: left;
  }

  .result-card__actions {
    justify-content: flex-start;
  }
}



/* Report verification methods */
.report-verify-methods {
  position: relative;
  padding: 50px 0;
  background: #f5f7fb;
}

/* Case gallery */
.case-gallery {
  padding: 47px 0;
  background: #ffffff;
  color: #111111;
}

.news-spotlight {
  margin-bottom: 40px;
  position: relative;
}
.news-spotlight__slider  {
  width: 1500px;
}

.news-spotlight__slider {
  position: relative;
}
.news-spotlight__slider .swiper-slide{
  width: 100%;
}

.news-spotlight-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #f4f7ff;
  overflow: hidden;
  min-height: 360px;
}

.news-spotlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-spotlight-card__content {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
}

.news-spotlight-card__content h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-spotlight-card__meta {
  display: flex;
  gap: 12px;
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
  margin-bottom: 18px;
}

.news-spotlight-card__content p {
  flex: 1;
  color: #666666;
  line-height: 1.8;
  font-size: 15px;
}

.news-spotlight-card__more {
  margin-top: 18px;
  font-weight: 600;
  color: #0d349b;
  text-decoration: none;
}

.news-spotlight__nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 999;
}

.news-spotlight__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.news-spotlight__btn:hover {
  background: #0d349b;
  color: #fff;
}


.case-gallery__head {
  display: flex;
  flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.case-gallery__head h2 {
  font-size: 22px;
  font-weight: normal;
}

.case-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.case-dropdown {
  position: relative;
  min-width: 190px;
}

.case-dropdown__toggle {
  width: 100%;
  height: 48px;
  padding: 0 18px 0 18px;
  border: 1px solid #dcdfe6;
  background: #ffffff;
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.case-dropdown.is-open .case-dropdown__toggle,
.case-dropdown__toggle:focus-visible {
  outline: none;
  border-color: #003c8c;
  box-shadow: 0 0 0 1px rgba(0, 60, 140, 0.15);
}

.case-dropdown__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #555555;
  border-bottom: 2px solid #555555;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  margin-top: -2px;
  position: relative;
}

.case-dropdown.is-open .case-dropdown__icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.case-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dcdfe6;
  box-shadow: 0 12px 36px rgba(7, 16, 38, 0.12);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.case-dropdown.is-open .case-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.case-dropdown__option {
  width: 100%;
  padding: 10px 18px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 15px;
  color: #333333;
  cursor: pointer;
}

.case-dropdown__option:hover,
.case-dropdown__option:focus-visible {
  background: rgba(0, 60, 140, 0.08);
  outline: none;
}

.case-dropdown__option.is-active {
  font-weight: 600;
  color: #003c8c;
}

@media (max-width: 768px) {
  .case-dropdown {
    width: 100%;
  }
}

.case-select {
  position: relative;
  min-width: 180px;
}

.case-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.case-select select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 18px;
  border: 1px solid #dcdfe6;
  background: #ffffff;
  font-size: 15px;
  color: #333333;
  appearance: none;
  border-radius: 0;
  letter-spacing: 0.05em;
}

.case-select select:focus {
  outline: none;
  border-color: #003c8c;
  box-shadow: 0 0 0 1px rgba(0, 60, 140, 0.15);
}

.news-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-empty-state {
  text-align: center;
  padding: 80px 24px;
  border-radius: 24px;
  border: 1px dashed rgba(14, 48, 138, 0.25);
  background: #f8faff;
  color: #30405f;
  line-height: 1.9;
}

.search-empty-state strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  color: #0d349b;
}

.search-empty-state p {
  margin: 0;
  font-size: 14px;
  color: rgba(17, 26, 44, 0.75);
}

.news-timeline-item {

  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 30px;
  margin-bottom: 10px;
  gap: 24px;
}

.news-timeline-item.is-hidden {
  display: none;
}

.news-timeline-item__date {

  border-right: 1px solid #e5e7ed;
  padding-right: 24px;
    margin-right: 12px;
  text-align: left;
  font-family: 'DIN Alternate', 'Arial Narrow', sans-serif;
}

.news-timeline-item__date strong {
  display: block;
  font-size: 28px;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
}

.news-timeline-item__date span {
  color: rgba(17, 17, 17, 0.5);
}
.news-timeline-item__body {
  margin-right: 60px;
}
.news-timeline-item__body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.news-timeline-item__body p {
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.8;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-timeline-item__link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e0e3eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.news-timeline-item__link:hover {
  background: #0d349b;
  color: #fff;
  border-color: #0d349b;
}

@media (max-width: 768px) {
  .news-timeline-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .news-timeline-item__date {
    border-right: none;
    border-bottom: 1px solid #e5e7ed;
    padding-right: 0;
    padding-bottom: 12px;
    text-align: left;
  }

  .news-timeline-item__link {
    justify-self: flex-end;
  }
}

.case-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px;
}

.case-gallery-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease;
}

.case-gallery-card__linkmask {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.case-gallery-card__linkmask:hover,
.case-gallery-card__linkmask:focus-visible {
  text-decoration: none;
}

.case-gallery-card__linkmask:focus-visible {
  outline: 2px solid #0d349b;
  outline-offset: 4px;
}

.case-gallery-card.is-hidden {
  display: none;
}

.case-gallery-card:hover {
  transform: translateY(-8px);
}

.case-gallery-card__media img {
  width: 100%;
  height:322px;
  object-fit: cover;
  display: block;
}

.case-gallery-card__body {
  padding: 26px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-gallery-card__body h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
  color: #111;
}

.case-gallery-card__body p {
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.8;
  font-size: 14px;
  flex: 1;
}

.case-gallery-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-gallery-card__date {
  font-weight: 500;
  color: #111;
}

.case-gallery-card__action {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
/* 
.case-gallery-card__linkmask:hover .case-gallery-card__action,
.case-gallery-card__linkmask:focus-visible .case-gallery-card__action {
  background: #0d349b;
  border-color: #0d349b;
  color: #fff;
} */

@media (max-width: 768px) {
  .about_show_d {
    padding: 0 12px!important;
  }
  .news-spotlight-card {
    grid-template-columns: 1fr;
  }

  .news-spotlight-card__content {
    padding: 24px;
  }

  .news-spotlight__nav {
    position: static;
    margin-top: 16px;
    justify-content: flex-end;
  }

  .case-gallery {
    padding: 100px 16px;
  }

  .case-gallery__filters {
    width: 100%;
    flex-direction: column;
  }

  .case-select {
    width: 100%;
  }
}

.report-verify__inner {
  width: 1210px;
  margin: 0 auto;
}

.report-verify__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
  color: #102048;
}

.report-verify__eyebrow {
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(13, 52, 155, 0.08);
  color: #0d349b;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.report-verify__header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.report-verify__header p {
  font-size: 16px;
  color: rgba(16, 32, 72, 0.78);
}

.verify-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.verify-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 20px 45px rgba(6, 25, 70, 0.18);
}

.verify-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/bginx.png);
  background-size: cover;
  z-index: 1;
}
.verify-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 12px;
  z-index: 3;
  color: #ffffff;
  text-align: right;
}

.verify-card__body h3 {
  font-size: 23px;
  margin-bottom: 16px;
}

.verify-card__body p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.verify-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(6, 25, 70, 0.28);
}

.card-report {
  background-image: url('../images/img1.png');
}

.card-qrcode {
  background-image: url('../images/img2.png');
}

.card-manual {
  background-image: url('../images/img3.png');
}

.card-paper {
  background-image: url('../images/img4.png');
}

@media (max-width: 768px) {
  .verify-card {
    min-height: 320px;
  }

  .verify-card__body {
    padding: 32px;
  }
}

@media (max-width: 480px) {

  .verify-card__body {
    padding: 28px;
  }

  .verify-card__body h3 {
    font-size: 22px;
  }
}

/* Honor section */
.honor-section {
  padding: 38px 0;
  background: #ffffff;
}

.honor-section__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.section-divider {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
  padding-bottom: 18px;
}

.section-divider::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(9, 23, 58, 0.16);
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: #0d349b;
}

.section-divider span {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #111111;
}

.honor-section__intro {
  text-align: center;
  color: rgba(17, 17, 17, 0.75);
  line-height: 1.8;
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto 50px;
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.honor-card {
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(6, 25, 70, 0.08);
  box-shadow: 0 15px 35px rgba(5, 26, 69, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-card h3 {
  font-size: 22px;
  color: #0d349b;
  margin-bottom: 12px;
}

.honor-card p {
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.7;
}

.honor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(5, 26, 69, 0.15);
}

/* About overview */
.about-overview {
  padding: 38px 0 55px;
}

.about-overview__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.about-overview__content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-top: 24px;
}

.about-overview__media {
  overflow: hidden;
}

.about-overview__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-overview__text {
  flex: 1;
  color: rgba(17, 17, 17, 0.8);
  line-height: 1.9;
  font-size: 15px;
}

.about-overview__text p + p {
}

@media (max-width: 992px) {
  .about-overview {
    padding: 100px 20px;
  }

  .about-overview__content {
    gap: 24px;
  }

  .about-overview__text {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-overview__content {
    flex-direction: column;
  }

  .about-overview__media,
  .about-overview__text {
    flex: 1 1 auto;
  }

  .about-overview__media {
    max-height: 320px;
  }

  .honor-section {
    padding: 100px 18px 110px;
  }

  .section-divider span {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section-divider span {
    font-size: 24px;
    letter-spacing: 0.05em;
  }

  .section-divider::after {
    width: 90px;
  }

  .honor-card {
    padding: 26px 22px;
  }

  .about-overview__text {
    padding: 24px;
  }
}


/* Report certificate */
.report-content {
  /* background: #f4f7fb; */
  padding: 20px 0 46px;
}

.report-certificate {
  width: min(1100px, 100%);
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.report-certificate__banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 30px;
  background: #003c8c;
  color: #ffffff;
  position: relative;
}

.report-certificate__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  letter-spacing: 0.22em;
  font-size: 14px;
  margin-bottom: 20px;
}

.report-certificate__banner h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: 0.08em;
}

.report-certificate__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  width: 1080px;
  justify-content: space-between;
}
.report-certificate__meta li {
  width: 32%;
  color: #fff;
}

.report-certificate__meta span {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 8px;
}

.report-certificate__meta--secondary {
  margin-top: 8px;
}

.report-certificate__badge {
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  min-width: 160px;
}

.badge-medal {
  width: 96px;
  height: 120px;
  margin: 0 auto 12px;
  background: linear-gradient(180deg, #d6e3ff 0%, #9bb7ff 100%);
  border-radius: 12px 12px 40px 40px;
  padding: 12px;
  position: relative;
}

.badge-medal::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  background: linear-gradient(180deg, #9bb7ff, #5f7bd9);
  border-radius: 0 0 8px 8px;
}

.badge-medal__inner {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 30%, #fff, #8aa8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 8px 18px rgba(10, 40, 90, 0.25);
}

.badge-medal__star {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 30% 30%, #ffe8a3, #f6c344);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.report-certificate__badge p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.report-certificate__body {
  padding:24px 31px ;
  background: #ffffff;
  color: #111111;
}

.report-certificate__item + .report-certificate__item {
  margin-top: 30px;
}

.report-certificate__item h2 {
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
}

.report-certificate__item h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width:4px;
  height: 19px;
  background: #003c8c;
}

.report-certificate__item p {
  margin: 0;
  line-height: 1.9;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.82);
}

.report-certificate__item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: rgba(17, 17, 17, 0.82);
}

@media (max-width: 992px) {
  .report-content {
    padding: 60px 12px 100px;
  }

  .report-certificate__banner {
    padding: 40px;
  }

  .report-certificate__body {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .report-certificate__banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .report-certificate__meta,
  .report-certificate__meta--secondary {
    justify-content: center;
  }

  .report-certificate__item ul {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .report-certificate__banner,
  .report-certificate__body {
    padding: 32px 24px;
  }

  .report-certificate__item h2 {
    font-size: 18px;
  }
}

/* Contact connect */

.contact-connect {
  padding: 47px 0;
  background: url(../images/17.jpg) no-repeat center/cover;
}
.contact-connect .wrap{
  display: flex;
  background: #fff;
  padding: 33px;
    justify-content: space-around;

}

.contact-connect__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.contact-connect__logo {
  text-align: center;
  display: flex;
  align-items: center;
  width: 20%;
}

.contact-connect__logo img {
  max-width: 160px;
  margin: 0 auto 12px;
  display: block;
}

.contact-connect__logo p {
  font-size: 18px;
  font-weight: 600;
  color: #0d349b;
}
.contact-connect__info {
  width: 40%;
}
.contact-connect__info h3,
.contact-connect__follow h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #111111;
}


.contact-connect__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 23px;
  color: rgba(17, 17, 17, 0.75);
  margin-top: 50px;
}

.contact-connect__info .icon {
  margin-right: 8px;
}
.contact-connect__follow {
  width: 30%;
}
.contact-connect__follow p {
  color: rgba(17, 17, 17, 0.6);
  margin-bottom: 20px;
}

.contact-connect__qrs {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.qr-card {
  text-align: center;
  color: rgba(17, 17, 17, 0.7);
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: #000;
  margin-bottom: 12px;
}
.qr-placeholder img{
 width: 100%;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4c76ae;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top img {
  width: 22px;
  height: 22px;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {

  .contact-connect {
    padding: 100px 20px;
  }

  .contact-connect__inner {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
  }

  .qr-placeholder {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 600px) {
  .contact-connect__inner {
    text-align: center;
  }

  .contact-connect__info ul {
    align-items: center;
  }

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

/* Article detail */
.article-detail {
  padding: 50px 0;
  background: #f9fafc;
  color: #111;
}

.article-detail__container {
  width: 100%;
}

.article-detail__header h1 {
  font-size: 30px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 14px;
}

.article-detail__meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.6);
  border-bottom: 1px solid #f0f2f7;
  padding: 14px 0 24px;
}

.article-detail__meta li {
  list-style: none;
}

.article-detail__body {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.9;
  color: #717171;
}

.article-detail__body p {
}

.article-detail__figure {
  margin: 20px 0;
  text-align: center;
}

.article-detail__figure img {
  width: 100%;
}

.article-detail__figure figcaption {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.6);
  margin-top: 12px;
}

.article-detail blockquote {
  margin: 30px 0;
  padding: 24px 30px;
  background: #f0f3ff;
}

.article-detail blockquote strong {
  color: #0d349b;
}

.article-detail__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.article-detail__nav-link {
  padding: 20px;
  border: 1px solid #e4e8f3;
  border-radius: 12px;
  color: #111;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.article-detail__nav-link span {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.6);
}

.article-detail__nav-link p {
  margin-top: 6px;
  font-weight: 600;
}

.article-detail__nav-link:hover,
.article-detail__nav-link:focus-visible {
  background: rgba(13, 52, 155, 0.08);
  border-color: #0d349b;
}

/* Article list pagination */
.paging {
  margin-top: 40px;
  text-align: center;
}

.paging .uk-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.paging .uk-pagination li {
  list-style: none;
}

.paging .uk-pagination a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d1f44;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.paging .uk-pagination li.uk-active a,
.paging .uk-pagination a:hover {
  background: #003c8c;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 60, 140, 0.25);
}

.paging .uk-pagination li.uk-disabled a {
  pointer-events: none;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .article-detail {
    padding: 80px 16px 100px;
  }


  .article-detail__container {
    padding: 32px;
  }

  .article-detail__meta {
    flex-direction: column;
    align-items: center;
  }

  .article-detail__body p {
    text-indent: 0;
  }
}
.honor_list img {
  max-width: 100%;
}

.honor_list {
  display: flex;
  text-align: center;
  justify-content: space-between;
}
.honor_list h3{
  font-size: 14px;
  padding-bottom: 14px;
}
.honor_list_l {
  display: flex;
  flex-wrap: wrap;
  width:48%;
}
.honor_list_r {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  border: 1px solid #ebebeb;
  padding: 28px 28px 0 28px;
  width: 48%;

}
.honor_list_l1 {
  border: 1px solid #ebebeb;
  margin-bottom: 14px;
  padding: 28px;
}
.honor_list_l1:last-child{
  margin-bottom: 0;
}

.news-spotlight-card__media {
  width: 738px;
  height: 424px;
  flex: 0 0 738px;
  display: flex;
  max-width: 100%;
}

.news-spotlight-card__content {
  width: 718px;
  height: 424px;
  flex: 0 0 738px;
  display: flex;
  max-width: 100%;
}
.index-news__policy-card h3 {
  width: 100%;
}





.article-detail__img img {
  width: 300px;
  height: 190px;
}



@media screen and (max-width: 1600px){
  .header-wrap .logo_right {
      float: left;
      padding-left: 5px;
  }
  .wrap {
      width: 1360px;
      margin-left: auto;
      margin-right: auto;
  }
  .index-news__grid {
    display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 48px;
  }

  .news-spotlight__slider {
      width: 1360px;
  }
  .news-spotlight-card__content {
      width: 630px;
      height: 395px;
  }
  .news-spotlight-card__media {
      width: 688px;
      height: 395px;
      flex: 0 0 688px;
  }



}
@media screen and (max-width: 1440px){
  .report-query-section{
    padding: 70px 0;
  }
    .wrap {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .header-wrap .logo_right {
       display: none;
    }
.header-wrap .nav {
  margin-left: 120px;
}

.footer-map {
    float: right;
    width: 50%;
}

.report-query__title {
    margin: 10px auto 10px;
    font-size: 36px;
}

  .news-spotlight__slider {
      width: 1100px;
  }
  .news-spotlight-card__content {
      width: 500px;
      height: 395px;
  }
  .news-spotlight-card__media {
      width: 560px;
      height: 395px;
      flex: 0 0 560px;
  }






}
@media screen and (max-width: 1200px){
  .report-query__inner ,.report-verify__inner{
    width: 90%;
  }
  .news-spotlight__slider {
    width: 100%;
  }

  .news-spotlight-card {
      grid-template-columns: 1fr;
      row-gap: 24px;
  }

  .news-spotlight-card__content,
  .news-spotlight-card__media {
      width: 100%;
      height: auto;
  }

  .news-spotlight-card__media {
      min-height: 320px;
  }

.news-spotlight-card__content {
    padding: 20px;
  }
  .news-spotlight-card {
        row-gap: 0;

  }
  .news-spotlight-card__media img{
    height: 340px;
  }
  .news-spotlight-card__content h3 {
      font-size: 18px;
  }
  .news-spotlight-card__meta {
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .news-spotlight-card__more {
      margin-top:8px;
      font-size: 12px;
  }

.report-certificate,.report-certificate__banner-info
 {
  width: 90%;
}

.report-certificate__meta{
  width: 100%;
}

.report-certificate__meta li {
  width: auto;
  padding-right: 8px;
}





    .index-news__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0;
    }
.index-news__bullet-list {
    margin-top: 0;
}

.index-news__column {
    display: flex;
    flex-direction: column;
    gap:22px;
    margin-bottom: 30px;
}
.index-news__policy-card time {
    font-size: 14px;
    padding:4px 0;
}
.index-services__grid ,.index-advantages__grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.home-hero__content h1 {
    font-size: 38px;
    line-height: 1.2;
    margin: 0;
}


.case-gallery__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

}
@media screen and (max-width: 991px){
.article-detail__img img {
  width: 100%;
  height: auto;
}

.case-gallery__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}
.case-gallery-card__body {
    padding: 16px 0 0;
}

  .index-news__column {
    padding-bottom: ;
  }
    .index-news {
        padding: 40px 0;
    }
    .search-btn {
      margin-right: 20px;
    }
    .index-advantages__card:nth-child(3),.index-advantages__card:nth-child(6) {
      background: #fff;
  }
.index-advantages__card:nth-child(3),.index-advantages__card:nth-child(6) {
  background: #fff;
}
.index-advantages__card:nth-child(3) h3,.index-advantages__card:nth-child(6) h3{
  color: #003c8c;
}
.index-advantages__card:nth-child(3) p,.index-advantages__card:nth-child(6) p{
  color: #1b1b1b;
}
.index-advantages__card:nth-child(3) .index-advantages__icon,.index-advantages__card:nth-child(6) .index-advantages__icon {
  background: #003c8c;
}
.index-advantages__card:nth-child(3) .index-advantages__icon svg,.index-advantages__card:nth-child(6) .index-advantages__icon svg {
color: #fff;
}



    .index-advantages__card:nth-child(4) {
      background: #003c8c;
  }
.index-advantages__card:nth-child(4) {
  background: #003c8c;
}
.index-advantages__card:nth-child(4) h3{
  color: #fff;
}
.index-advantages__card:nth-child(4) p{
  color: #fff;
}
.index-advantages__card:nth-child(4) .index-advantages__icon {
  background: #fff;
}
.index-advantages__card:nth-child(4) .index-advantages__icon svg {
color: #003c8c;
}

    .header-wrap .nav {
        margin-left: 0;
    }

.header-wrap .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 3px 0px 3px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }


    .header-wrap .nav .nav-item .item-top {
        padding: 0 ;
    }

.header-wrap .nav {
  display: block;
  padding-top: 50px;
}
.header-wrap .nav .nav-item {
  display: inline-block;
        margin-bottom: 0px;
}

.header-wrap .nav .nav-item .item-top .link {
  padding-left: 20px;
}
.header-wrap .nav .nav-item:has(.item-bottom) .item-top .link::before {
  right: 12px;
}
    .header-wrap .nav .nav-item .item-bottom .bottom-link {
        display: block;
        padding: 10px 0;
        font-size: var(--font14);
        color: #fff;
        transition: color 0.3s ease;
    }


    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
        background: #003c8c;

    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
        background: #003c8c;
    }






.footer-wrap-logo {
  width: 100%;
}
.footer-map{
  width: 100%;
  padding-top: 15px;
} 

  .header-wrap-hegiht {
      height: 60px;
  }

    .home-hero__content h1 {
        font-size: 28px;
    }
  .home-hero__pagination .swiper-pagination-bullet {
      width: 36px;
      height: 4px;
  }
  .home-hero__pagination {
      bottom: 12px !important;
  }
  
  .index-services__artwork {
    padding: 80px 0 40px;
    aspect-ratio:initial;
  }
.index-advantages__icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 30px;
}

.index-advantages__card {
    padding: 45px 16px 22px;
    min-height: 260px;
}

.index-advantages__card p {
    max-width: 80%;
}

.report-query__form input {
  width: 100%;
height: 46px;
line-height: 46px;
}
.report-query__form button {
  margin-left: 0;
}


    .honor-section {
        padding: 30px 0 20px;
    }

    .about-overview {
        padding: 30px 0 20px;
    }


.contact-connect .wrap {
    padding: 20px;
}

.contact-connect__logo {
    width: 100%;
    justify-content: center;
}
.contact-connect__info {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}
.contact-connect__info ul {
    gap: 13px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.contact-connect__follow {
    width: 100%;
    justify-content: center;
    text-align: center;
}
.contact-connect__qrs {
    justify-content: center;
}
.contact-connect .wrap {
    flex-wrap: wrap;
}

.contact-connect__info h3, .contact-connect__follow h3 {
    font-size: 18px;
}
.contact-connect__follow p {
    font-size: 14px;
    margin-bottom: 20px;
}



    .contact-connect {
        padding: 40px 0px;
    }

.news-timeline-item__link {
  display: none;
}


.news-timeline-item__date {
  border: none;;
}
.news-timeline-item__date strong {
  display: inline-block;
        padding-bottom: 0;
}


.news-timeline-item {
  gap: 0;
}



    .article-detail {
        padding: 0  0 30px;
    }
.article-detail__header h1 {
    font-size: 20px;
}
.article-detail__meta {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.article-detail__meta li {
  display: inline-block;
  padding:0 5px;
}
.article-detail__body {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
    color: #717171;
}
















}



@media screen and (max-width: 768px){
 .wrap {
    width: 94%;
  }
    .header-wrap-hegiht {
        height: 55px;
    }
.home-hero__media img {
  width: 1000px;
}
.home-hero__slide {
  overflow: hidden;
  padding: 0;
}


    .home-hero__content h1 {
        font-size: 20px;
    }


header .wrap {
  padding: 0 15px;
}
.article-detail__img {
    padding-right: 0;
    width: 100%;
}
.article-detail__img  img{
    padding-right: 0;
    width: 100%;
}
.index-news__policy-card {
    display: flex
;
    flex-wrap: wrap;
}
.index-news__policy-card p {
  display: none;
}
.index-news__bullet-list a {
  /* 超出单行省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-news__header {
    padding-bottom: 18px;
}
.index-news__header h2 {
    font-size:20px;
}
.index-news__header h2::after {
    height: 4px;
    width: 110%;
    bottom: -18px;
}

.index-news__more span {
    display: inline-block;
    width: 36px;
    height: 18px;
    border-radius: 999px;
    background: url(../images/more.png) no-repeat center center;
    background-size: contain;
}


.index-news__column {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.index-news__column:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom:0px;
}

    .index-services {
        padding: 40px 0 20px;
    }

.section-divider {
    margin: 0 auto 20px;
    padding-bottom: 12px;
}


.index-services__artwork {
        padding: 40px 0 10px;
    margin: 0 auto 8px;
        aspect-ratio: initial;
    }


.index-services__artwork img {
    width: 70%;
    max-width: 120px;
}
    .index-services__grid {
        gap: 8px;
    }

    .index-advantages__icon {
        width: 58px;
        height: 58px;
        margin: 0 auto 10px;
    }


    .index-advantages__card {
        padding: 35px 12px 20px;
        min-height: 180px;
    }

.index-advantages__card h3 {
    font-size: 18px;
}

.footer-wrap-logo {
  text-align: center;
  padding: 40px 0 0;
}
.footer-wrap-logo-box img{
height: 50px;
}
.footer-wrap-logo-box {
    width: 100%;
    padding-bottom: 10px;
}
.footer-wrap-logo-boxx {
  font-size: 12px;
}

.footer-wrap-box {
  padding-bottom: 20px;
}


.footer-map img{
  width: 100%;
}

.report-query__title {
  font-size: 20px;
}

    .report-query__subtitle {
        font-size: 14px;
    }
    .report-query__form input {
        width: 100%;
        height: 46px;
        line-height: 46px;
        flex: none;
        display: inline-block;
    }



    .report-query__form {
        padding: 12px 0;
    }

.verify-card__body h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.case-gallery {
        padding: 30px 0;
    }

    .case-gallery__list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 15px;
    }


.case-gallery-card__media img {
  height:auto ;
}


.case-gallery-card__body h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.news-spotlight-card__media img {
  height: auto;
}
    .news-spotlight-card__media,.news-spotlight-card {
        min-height: inherit;
    }


.news-spotlight__nav {
  display: none;
}
.news-spotlight-card__content {
  padding: 20px 5%;
  width: 90%;
}

.news-spotlight-card__more {
  display: none;
}
.news-timeline-item__date strong {
  font-size: 20px;
}

.news-timeline-item__date span {
  font-size: 12px;
}
.news-timeline-item__date {
  margin-right: 0;
} .news-timeline-item__body {
    margin-right:0px;
}
.news-timeline-item__body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.news-timeline-item {
    padding-bottom: 20px;
    margin-bottom: 10px;
}


.news-timeline {
    gap: 14px;
}
    .report-certificate__banner {
        padding: 20px;
    }

.report-certificate__badge {

    min-width: 60px;
}
.report-certificate__badge img{
width: 40px;
}


.report-certificate__meta {
  
    gap: 8px 0;
}
.report-certificate__meta li {
  font-size: 12px;
}
.report-certificate__banner h1 {
    font-size: 18px;
    margin: 0 0 10px;
}

    .report-certificate__body {
        padding: 20px;
    }



    .report-content {
        padding: 20px 0 50px;
    }



    .article-detail__container {
        padding: 12px 0;
    }

.article-detail__meta {
    gap: 10px;
    font-size: 12px;
    padding: 4px 0 14px;
}


    .article-detail {
        padding: 10px 0 30px;
    }

.breadcrumb-wrapper {
    padding-top: 10px;
    background: #f9fafc;
}
.breadcrumb img {
    margin-right: 4px;
    top: 0;
}



    .section-divider span {
        font-size: 20px;
    }

.honor_list_l {
    display: flex
;
    flex-wrap: wrap;
    width: 100%;
}
.honor_list {
    display: flex
;
    text-align: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.honor_list_l1 {
    border: 1px solid #ebebeb;
    margin-bottom: 14px;
    padding: 18px;
}

.honor_list_r {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-around;
    border: 1px solid #ebebeb;
    padding: 18px 18px 0 18px;
    width: 100%;
    margin-top: 20px;
}

    .about-overview__text {
        padding: 0px;
    }


.contact-connect__logo img {
    max-width: 140px;
    margin: 0 auto 22px;
    display: block;
}
.contact-connect__qrs span{
font-size: 12px;
}

.header-wrap .logo img {
    height: 38px;
}

    .footer-wrap-logo {
        text-align: center;
        padding:  0;
    }

.footer-wrap {
  padding-top: 30px;
}
}


.report-query-layer {
    background: #003c8c;
    width: 800px;
    height: 400px;
}

.honor_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.honor_list_item {
  width: calc(33.333% - 20px);
  text-align: center;
}
