* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "HarmonyOS Sans SC", sans-serif;
  outline: none !important;
  /* overflow: hidden; */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scrollbar-color: #999 #f1f1f1; /* 滑块 轨道 */
  scrollbar-width: thin; /* 可选：窄一点 */
}
html {
  font-size: 16px;
}
@media screen and (max-width: 1644px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 14.5px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}
/* @media screen and (max-width: 1024px) {
  html {
    font-size: 13px;
  }
} */
@media screen and (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
ul li {
  list-style: none;
}
/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("HarmonyOS_Sans_SC_Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

#indexid {
  /* Hero区域 */
  #hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  #hero .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
  }
  #hero h1 {
    font-family: HarmonyOS Sans SC;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  #hero p {
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
  #hero .hero-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 2rem;
    font-family: HarmonyOS Sans SC;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #hero .hero-btn:hover {
    background: #fff;
    color: #0047ab;
  }

  /* 核心产品 */
  #products {
    width: 100%;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
  }
  #products .products-content {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
  }
  #products .products-header {
    width: 87.5rem;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #products .products-subtitle {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 1.875rem;
    color: #002b91;
    display: block;
  }
  #products h2 {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 2.875rem;
    color: #000000;
  }
  #products .products-container {
    position: relative;
    height: 41.25rem;
    overflow: hidden;
    width: 100%;
  }
  #products .products-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/copperCableSystem.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
    width: 100%;
    height: 100%;
  }
  #products .products-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  #products .product-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
  }
  #products .solutions-btn {
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #000000;
    border-radius: 2.9375rem;
    font-family: HarmonyOS Sans SC;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #products .solutions-btn img {
    height: 1.3125rem;
    width: 1.3125rem;
  }
  #products .solutions-btn:hover {
    background: #0047ab;
    color: #fff;
  }
  #products .product-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }
  #products .product-item:nth-child(3n) {
    /* border-right: none; */
  }
  #products .product-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background-color 0.3s ease;
  }
  #products .product-item:hover::before,
  #products .product-item.active::before {
    background: rgba(0, 71, 171, 0.3);
  }
  #products .product-item.active {
    border: 2px solid #fff;
  }
  #products .product-name {
    position: relative;
    z-index: 1;
    font-family: HarmonyOS Sans SC;
    font-weight: bold;
    font-size: 2.25rem;
    color: #fff;
  }
  #products .product-english {
    position: relative;
    z-index: 1;
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
  }

  /* 解决方案 */
  #solutions {
    width: 100%;
    padding: 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
  }
  #solutions .solutions-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  #solutions .solutions-header {
    display: flex;
    width: 87.5rem;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  #solutions .solutions-subtitle {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 1.875rem;
    color: #002b91;
    display: block;
  }
  #solutions h2 {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 2.875rem;
    color: #000000;
  }
  #solutions .solutions-btn {
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #000000;
    border-radius: 2.9375rem;
    font-family: HarmonyOS Sans SC;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #solutions .solutions-btn img {
    height: 1.3125rem;
    width: 1.3125rem;
  }
  #solutions .solutions-btn:hover {
    background: #0047ab;
    color: #fff;
  }
  #solutions .solutions-container {
    position: relative;
    height: 41.875rem;
    overflow: hidden;
    width: 100%;
  }
  #solutions .solutions-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("./img/government.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
  }
  #solutions .solutions-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  #solutions .solution-empty {
    position: relative;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  #solutions .solution-empty:last-child {
    border-right: none;
  }
  #solutions .solution-empty.solution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }
  #solutions .solution-arrow img {
    width: 4.25rem;
    height: 4.25rem;
    opacity: 0.8;
    filter: brightness(0) invert(1);
  }
  #solutions .solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
  }
  #solutions .solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }
  #solutions .solution-item:last-child {
    border-right: none;
  }
  #solutions .solution-desc {
    text-align: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0;
    pointer-events: none;
    padding: 0 1rem;
  }
  #solutions .solution-item:hover .solution-name {
    transform: translateY(-8rem);
  }
  #solutions .solution-item:hover .solution-desc {
    opacity: 1;
    max-height: 10rem;
    margin-bottom: 1rem;
    transform: translateY(-8rem);
    pointer-events: auto;
  }
  #solutions .solution-arrow {
    opacity: 0;
    transform: translateY(-5rem);
    transition: all 0.3s ease;
    pointer-events: none;
  }
  #solutions .solution-item:hover .solution-arrow {
    opacity: 1;
    transform: translateY(-5rem);
    pointer-events: auto;
  }
  #solutions .solution-arrow-icon {
    width: 3rem;
    height: 3rem;
    opacity: 0.8;
    filter: brightness(0) invert(1);
  }
  #solutions .solution-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    transition: background-color 0.3s ease;
  }
  #solutions .solution-item:hover::before {
    background: #74bcf7;
    opacity: 0.7;
  }
  #solutions .solution-name {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    font-family: HarmonyOS Sans SC;
    font-weight: bold;
    font-size: 2.25rem;
    color: #fff;
  }
  #solutions .solution-desc {
    position: relative;
    z-index: 1;
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    line-height: 1.5;
  }

  /* 最新新�?*/
  #news {
    width: 100%;
    padding: 3rem 0;
  }
  #news .news-content {
    width: 87.5rem;
    margin: 0 auto;
  }
  #news .news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  #news .news-title {
    display: flex;
    flex-direction: column;
  }
  #news .news-subtitle {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 1.875rem;
    color: #002b91;
  }
  #news .news-main-title {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 2.875rem;
    color: #000000;
  }
  #news .news-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border-radius: 2.9375rem;
    font-family: HarmonyOS Sans SC;
    font-size: 1.25rem;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #news .news-more img {
    width: 1.25rem;
    height: 1.25rem;
  }
  #news .news-more:hover {
    background: #0047ab;
    border-color: #0047ab;
    color: #fff;
  }
  #news .news-body {
    display: flex;
    gap: 3rem;
  }
  #news .news-left {
    width: 45%;
  }
  #news .news-left .news-item {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 19rem;
  }
  #news .news-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #news .news-left .news-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.875rem 6rem 1.875rem 1.875rem;
    color: #fff;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.5),
      transparent
    );
  }
  #news .news-left .news-date {
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  #news .news-left .news-text {
    font-family: HarmonyOS Sans SC;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #news .news-right {
    width: 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  #news .news-right .news-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #news .news-right .news-item:hover {
    border-bottom-color: #002a91;
  }
  #news .news-right .news-item:hover .news-date,
  #news .news-right .news-item:hover .news-text {
    color: #002a91;
  }
  #news .news-right .news-date {
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 1.125rem;
    color: #999999;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  #news .news-right .news-text {
    font-family: HarmonyOS Sans SC;
    font-weight: bold;
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
  }
}

@media (max-width: 1440px) {
  #indexid {
    #hero h1 {
      font-size: 2.5rem;
    }
    #hero p {
      font-size: 1.25rem;
    }
    #products .products-header {
      padding: 0 1.875rem;
      width: 100%;
    }
    #products .products-content {
      width: 100%;
    }
    #products .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    #solutions .solutions-header {
      padding: 0 1.875rem;
      width: 100%;
    }
    #solutions .solutions-content {
      width: 100%;
    }
    #news .news-content {
      width: 100%;
      padding: 0 1.875rem;
    }
  }
  #productid {
    #productSection .productSection-content {
      padding: 0 1.875rem;
    }
  }

}

@media (max-width: 1200px) {
  #indexid {
    #hero h1 {
      font-size: 2.5rem;
    }
    #hero p {
      font-size: 1.25rem;
    }
    #products .products-header {
      padding: 0 1.875rem;
      width: 100%;
    }
    #products .products-content {
      width: 100%;
    }
    #products .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    #solutions .solutions-header {
      padding: 0 1.875rem;
      width: 100%;
    }
    #solutions .solution-name {
      font-size: 1.7rem;
    }
    #solutions .solutions-content {
      width: 100%;
    }
    #news .news-content {
      width: 100%;
      padding: 0 1.875rem;
    }
  }
  #productid {
    #productSection .productSection-content {
      padding: 0 1.875rem;
    }
  }
  #solutionDetailid {
    #solutionContent .section-wrapper {
      width: 100%;
      padding: 0 1.875rem;
    }
  }
  .contact .banner2 {
    height: 20.25rem !important;
  }
}

@media (max-width: 1024px) {
  #indexid {
    #hero h1 {
      font-size: 2rem;
    }
    #hero p {
      font-size: 1.125rem;
    }
    #products .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    #solutions .solutions-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

@media (max-width: 920px) {
  #indexid {
    #hero h1 {
      font-size: 1.5rem;
    }
    #hero p {
      font-size: 1rem;
    }
    #hero .hero-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.875rem;
    }
    #products .products-content {
      width: 100%;
    }
    #products .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    #products .product-icon {
      font-size: 1.25rem;
    }
    #products .product-name {
      font-size: 1.8rem;
    }
    #products .product-english {
      font-size: 1.25rem;
    }
    #solutions .solutions-content {
      width: 100%;
    }
    #solutions .solutions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    #news .news-content {
      width: 100%;
      padding: 0 1.875rem;
    }
    #news .news-body {
      flex-direction: column;
    }
    #news .news-left,
    #news .news-right {
      width: 100%;
      display: flex;
      flex-direction: column;
    }
  }
}

@media (max-width: 768px) {
  #indexid {
    #hero h1 {
      font-size: 1.25rem;
    }
    #hero p {
      font-size: 0.875rem;
    }
    #products .products-container {
      height: auto;
      padding: 0 1.875rem;
    }
    #products .products-background {
      display: none;
    }
    #products .products-grid {
      grid-template-columns: 1fr;
      border: none;
      position: relative;
      gap: 1.25rem;
    }
    #products .product-item {
      border: none;
      height: 12rem;
    }
    #products .product-bg {
      display: block;
      opacity: 1;
    }
    #products .product-item::before {
      background: rgba(0, 71, 171, 0.4) !important;
    }
    #products .product-item:hover::before,
    #products .product-item.active::before {
      background: rgba(0, 71, 171, 0.6) !important;
    }
    #solutions .solutions-container {
      height: auto;
    }
    #solutions .solutions-background {
      display: none;
    }
    #solutions .solutions-grid {
      grid-template-columns: 1fr;
      border: none;
      position: relative;
      gap: 1.25rem;
      padding: 0 1.875rem;
    }
    #solutions .solution-item {
      border: none;
      height: 12rem;
    }
    #solutions .solution-bg {
      display: block;
      opacity: 1;
    }
    #solutions .solution-item::before {
      background: rgba(0, 71, 171, 0.4) !important;
    }
    #solutions .solution-item:hover::before,
    #solutions .solution-item.active::before {
      background: rgba(0, 71, 171, 0.6) !important;
    }
    #solutions .solution-empty {
      display: none;
    }
    #solutions .solutions-header {
      width: auto;
      padding: 0 1.875rem;
    }
    #solutions .solutions-btn {
      padding: 1.25rem 2.5rem;
      font-size: 1.25rem;
    }
    #solutions .solution-item {
      align-items: flex-start;
      justify-content: flex-end;
    }
    #solutions .solution-name {
      position: relative;
      z-index: 2;
      text-align: left;
      font-size: 1.8rem;
    }
    #solutions .solution-desc,
    #solutions .solution-arrow {
      display: none;
    }
    #solutions .solution-item:hover .solution-name {
      transform: none !important;
    }
  }
  .contact .banner2 {
    height: 20.25rem !important;
  }
}

@media (max-width: 640px) {
  #indexid {
    #hero h1 {
      font-size: 1.125rem;
    }
    #hero p {
      font-size: 0.75rem;
    }
    #products {
      padding: 2.5rem 0;
    }
    #products .products-header {
      margin-bottom: 1.5rem;
    }
    #products .product-item {
      height: 10rem;
    }
    #solutions .solution-item {
      height: 10rem;
    }
    /* #news .news-content {
      padding: 0 1.5rem;
    } */
  }
}

@media (max-width: 480px) {
  #indexid {
    #hero h1 {
      font-size: 1rem;
    }
    #hero p {
      font-size: 0.625rem;
    }
    #hero .hero-btn {
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
    }
    #products {
      padding: 3rem 0rem;
    }
    #products .products-header {
      margin-bottom: 1.25rem;

    }
    #news .news-subtitle,
    #products .products-subtitle {
      font-size: 1.5rem;
    }
    #news .news-main-title,
    #solutions h2,
    #products h2 {
      font-size: 1.8rem;
    }
    #products .product-item {
      height: 10rem;
    }
    #solutions .solution-item {
      height: 10rem;
    }
    #solutions .solutions-grid {
      padding: 0 1.875rem;
      margin-bottom: 3rem;
    }
    #solutions .solutions-header {
      padding: 0 1.875rem;
    }
    #news .news-content {
      padding: 0 1.875rem;
      margin-bottom: 3rem;
    }
    #solutions .solutions-subtitle {
      font-size: 1.5rem;
    }
  
  }
  .banner {
    height: 14.25rem !important;
  }
}

@media (max-width: 375px) {
  #indexid {
    #hero h1 {
      font-size: 0.875rem;
    }
    #hero p {
      font-size: 0.5625rem;
    }
    #products .product-item {
      height: 10rem;
    }
    #solutions .solution-item {
      height: 10rem;
    }
  }
}

#searchid {
  #searchHero {
    width: 100%;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("../img/search1.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* #searchHero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 71, 171, 0.85);
  } */
  #searchHero .searchHero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 59.5rem;
    padding: 0 2rem;
  }
  #searchHero .search-box {
    display: flex;
    align-items: center;
    border-radius: 5.5rem;
    border: 1px solid #fff;
    padding: 1rem 3.75rem 1rem 2.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  #searchHero .search-box input {
    flex: 1;
    border: none;
    outline: none;
    color: #fff;
    font-family: HarmonyOS Sans SC;
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
  }
  #searchHero .search-box input::placeholder {
    color: #ffffff;
  }
  #searchHero .search-btn {
    display: flex;
    align-items: center;
  }
  #searchHero .search-btn img {
    width: 1.6875rem;
    height: 1.6875rem;
    filter: brightness(0) invert(1);
  }

  #searchResults {
    width: 100%;
    padding: 4rem 0;
  }
  #searchResults .searchResults-content {
    width: 87.5rem;
    margin: 0 auto;
  }

  #searchResults .results-count {
    font-family: HarmonyOS Sans SC;
    font-size: 0.9rem;
    color: #666666;
  }
  #searchResults .results-count strong {
    color: #0047ab;
    font-weight: bold;
  }
  #searchResults .results-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  #searchResults .result-item {
    background: #f5f7fa;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
  }
  #searchResults .result-item:hover {
    transform: translateY(-2px);
    border-color: #e0e7ff;
    border-bottom: 1px solid #002a91;
  }
  #searchResults .result-date {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  #searchResults .date-box {
    background: #002a91;
    color: #fff;
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 71, 171, 0.3);
  }
  #searchResults .date-day {
    font-size: 2.625rem;
    font-weight: bold;
    padding: 0.5rem;
    line-height: 1.2;
    display: block;
  }

  #searchResults .date-year {
    font-size: 1rem;
    display: block;
    padding: 0.5rem;
    color: #002a91;
    background: #fff;
  }
  #searchResults .result-title {
    font-family: HarmonyOS Sans SC;
    font-size: 1.5rem;
    line-height: 2rem;
    max-height: 4rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  #searchResults .result-title::after {
    content: "";
    display: block;
    height: 2rem;
  }
  #searchResults .result-item:hover .result-title {
    color: #002a91;
  }
  #searchResults .result-item:hover .result-more {
    color: #002a91;
  }
  #searchResults .result-desc {
    font-family: HarmonyOS Sans SC;
    font-size: 1.125rem;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  #searchResults .result-more {
    padding: 0.5rem 1.5rem 0 6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #000;
    font-family: HarmonyOS Sans SC;
    font-size: 1.25rem;
    cursor: pointer;
  }
  #searchResults .result-more img {
    width: 1.25rem;
    height: 1.25rem;
  }
  #searchResults .result-more:hover {
    color: #002a91;
  }
  #searchResults .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
  }
  #searchResults .page-btn {
    width: 2.625rem;
    height: 2.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #ddd;
    color: #666666;
    border-radius: 50%;
    font-family: HarmonyOS Sans SC;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #searchResults .page-btn.next img {
    width: 0.75rem;
    height: 0.75rem;
  }
  #searchResults .page-btn:hover:not(:disabled) {
    border-color: #0047ab;
    color: #0047ab;
  }
  #searchResults .page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  #searchResults .page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #searchResults .page-num {
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid #ddd;
    color: #666666;
    border-radius: 50%;
    font-family: HarmonyOS Sans SC;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #searchResults .page-dots {
    display: flex;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
  }
  #searchResults .page-num.active {
    background: #0047ab;
    border-color: #0047ab;
    color: #fff;
  }
  #searchResults .page-num:hover {
    border-color: #0047ab;
    color: #0047ab;
  }
  #searchResults .page-num.active {
    background: #0047ab;
    border-color: #0047ab;
    color: #fff;
  }
}

@media (max-width: 1200px) {
  #searchid {
    #searchResults .searchResults-content {
      width: 100%;
      padding: 0 1.875rem;
    }
    #searchResults .results-list {
      gap: 1.25rem;
    }
  }
}
@media (max-width: 768px) {
  #searchid {
    #searchResults .searchResults-content {
      width: 100%;
    }
    #searchResults .results-list {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
  }
}

@media (max-width: 480px) {
  #searchid {
    #searchHero {
      height: 15rem;
    }
    #searchResults .result-item {
      padding: 1.5rem;
    }
    #searchResults .pagination {
      flex-wrap: wrap;
    }
  }
}

#productid {
  #productBanner {
    width: 100%;
    height: 31.25rem;
    background: url("../img/product.png") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #productSection {
    width: 100%;
    padding: 5rem 0;
  }
  #productSection .productSection-content {
    width: 87.5rem;
    margin: 0 auto;
  }
  #productSection .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  #productSection .product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #productSection .product-card:hover {
    transform: translateY(-0.25rem);
  }
  #productSection .product-card:hover .product-info {
    border-bottom: 1px solid #002a91;
  }
  #productSection .product-card:hover .product-name-en,
  #productSection .product-card:hover .product-link,
  #productSection .product-card:hover .product-name-cn {
    color: #002a91;
  }
  #productSection .product-image {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #productSection .product-image img {
    width: 100%;
    object-fit: cover;
  }
  #productSection .product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
  }
  #productSection .product-info {
    background: #f5f7fa;
    padding: 2.3125rem 2.3125rem 3.125rem 2.3125rem;
  }
  #productSection .product-name-en {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0.25rem;
  }
  #productSection .product-name-cn {
    font-size: 1.75rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 2.5rem;
  }
  #productSection .product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  #productSection .product-link:hover {
    color: #002a91;
  }
  #productSection .product-link img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 1200px) {
  #productid {
    #productSection .productSection-content {
      width: 100%;
    }
  }
}

@media (max-width: 920px) {
  #productid {
    #productBanner .productBanner-content h1 {
      font-size: 1.75rem;
    }
    #productBanner .productBanner-content p {
      font-size: 1.25rem;
    }
    #productSection .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.875rem;
    }
  }
}

@media (max-width: 768px) {
  #productid {
    #productBanner {
      height: 20.25rem;
    }
  }
}
@media (max-width: 680px) {
  #productid {
    #productBanner .productBanner-content h1 {
      font-size: 1.25rem;
    }
    #productBanner .productBanner-content p {
      font-size: 1rem;
    }
    #productSection .product-grid {
      grid-template-columns: 1fr;
    }
  }
}

#solutionid {
  #solutionBanner {
    width: 100%;
    height: 31.25rem;
    background: url("../img/solution1.png") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #solutionTabs {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
  }
  #solutionTabs .solutionTabs-content {
    width: 87.5rem;
    margin: 0 auto;
  }
  #solutionTabs .tabs-list {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 1.5rem 1.875rem;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  #solutionTabs .tabs-list::-webkit-scrollbar {
    display: none;
  }
  #solutionTabs .tab-item {
    font-family: HarmonyOS Sans SC;
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
  }
  /* #solutionTabs .tab-item:hover {
    color: #2e71d9;
  } */
  #solutionTabs .tab-item.active {
    color: #000;
    font-weight: bold;
  }

  #solutionContent {
    width: 100%;
    padding: 5rem 0;
    background: #f5f7fa;
  }
  #solutionContent .solutionContent-content {
    width: 87.5rem;
    margin: 0 auto;
  }
  #solutionContent .solution-item {
    display: flex;
    background: #fff;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  #solutionContent .solution-item.reverse {
    flex-direction: row-reverse;
  }
  #solutionContent .solution-image {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
  }
  #solutionContent .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #solutionContent .solution-info {
    flex: 1;
    display: flex;
    max-width: 50%;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem 3rem 3rem;
  }
  #solutionContent .solution-info h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.3rem;
  }
  #solutionContent .solution-english {
    font-size: 1.25rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 1.5rem;
  }
  #solutionContent .solution-desc {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex: 1;
  }
  #solutionContent .solution-btn {
    align-self: flex-start;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    color: #000;
    border: none;
    border: 2px solid #000;
    border-radius: 3rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  #solutionContent .solution-btn img {
    width: 1.25rem;
    height: 1.25rem;
  }
  /* #solutionContent .solution-btn:hover {
    background: #1a5bbf;
  } */
}

@media (max-width: 1200px) {
  #solutionid {
    #solutionContent .solutionContent-content {
      width: 100%;
      padding: 0 1.875rem;
    }
    #solutionContent .solution-info {
      width: 100%;
    }
  }
}

@media (max-width: 920px) {
  #solutionid {
    #solutionBanner .solutionBanner-content h1 {
      font-size: 1.75rem;
    }
    #solutionBanner .solutionBanner-content p {
      font-size: 1.25rem;
    }
    #solutionTabs .tabs-list {
      gap: 5rem;
    }
    #solutionTabs .tab-item {
      /* font-size: 0.9rem; */
    }
    #solutionContent .solution-item {
      flex-direction: column !important;
      /* padding: 2rem; */
    }
    #solutionContent .solution-image {
      max-width: 100%;
      height: 15rem;
    }
  }
}

@media (max-width: 768px) {
  #solutionid {
    #solutionBanner {
      height: 20.25rem;
    }
    #solutionTabs .solutionTabs-content {
      width: 100%;
    }
    #solutionTabs .tabs-list {
      gap: 5rem;
      justify-content: flex-start;
      padding: 0.875rem 1.875rem;
    }
    #solutionContent .solution-info {
      max-width: 100%;
    }
  }
}
@media (max-width: 480px) {
  #solutionid {
    #solutionBanner .solutionBanner-content h1 {
      font-size: 1.25rem;
    }
    #solutionBanner .solutionBanner-content p {
      font-size: 1rem;
    }
    #solutionTabs .tabs-list {
      gap: 5rem;
    }
    #solutionContent .solution-item {
      /* padding: 1.5rem; */
    }
    #solutionContent .solution-info h3 {
      /* font-size: 1.25rem; */
    }
  }
}

#solutionDetailid {
  #detailBanner {
    width: 100%;
    height: 31.25rem;
    background: url("../img/solutionDetail.png") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: center; */
  }
  #detailBanner .banner-content {
    width: 87.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    color: #fff;
  }

  #detailBanner .banner-category {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 1.125rem;
  }

  #detailBanner .banner-title {
    font-size: 2.875rem;
    font-weight: bold;
  }

  #detailTabs {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
  }
  #detailTabs .detailTabs-content {
    width: 87.5rem;
    margin: 0 auto;
  }
  #detailTabs .tabs-list {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 1.5rem 0;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  #detailTabs .tabs-list::-webkit-scrollbar {
    display: none;
  }
  #detailTabs .tab-item {
    font-family: HarmonyOS Sans SC;
    font-size: 1.25rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
  }
  /* #detailTabs .tab-item:hover {
    color: #002b91;
  } */
  #detailTabs .tab-item.active {
    color: #000;
    font-weight: bold;
  }

  #detailContent {
    width: 100%;
    padding: 5rem 0;
    background: #f5f7fa;
  }
  #detailContent .detailContent-content {
    width: 87.5rem;
    margin: 0 auto;
  }
  #detailContent .intro-section {
    display: flex;

    margin-bottom: 3rem;
    gap: 4rem;
  }
  #detailContent .intro-title {
    /* white-space: nowrap; */
  }
  #detailContent .detail-content {
    flex: 1;
  }
  #detailContent .intro-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.5rem;
  }
  #detailContent .detail-text {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  #detailContent .detail-text:last-child {
    margin-bottom: 0;
  }
  #detailContent .section-wrapper {
    width: 100%;
    background: #fff;
    padding: 3rem 1.875rem;
    margin-bottom: 3rem;
  }
  #detailContent .section-content-inner {
    width: 87.5rem;
    margin: 0 auto;
    gap: 3.5rem;
    display: flex;
    align-items: stretch;
  }
  #detailContent .section-header {
    flex: 1;
  }
  #detailContent .section-subtitle {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 1.875rem;
    color: #002b91;
    display: block;
  }
  #detailContent .section-header h2 {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 2.875rem;
    color: #000;
    margin-bottom: 5rem;
  }
  #detailContent .section-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
  }
  #detailContent .section-content:last-child {
    margin-bottom: 0;
  }
  #detailContent .section-content.reverse {
    flex-direction: row-reverse;
  }
  #detailContent .text-content {
    flex: 1;
  }
  #detailContent .text-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
  }
  #detailContent .text-content p {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  #detailContent .text-content ul {
    max-height: 18rem;
    min-height: 18rem;
    overflow-y: auto;
    padding-right: 1rem;
  }
  #detailContent .text-content ul li {
    font-size: 1.125rem;
    color: #000;
    line-height: 2;
  }
  #detailContent .tabs-wrapper {
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    /* white-space: nowrap; */
    -webkit-overflow-scrolling: touch;
    width: 100%;
    position: relative;
    flex-shrink: 0;
  }
  #detailContent .tabs-wrapper::-webkit-scrollbar {
    display: block;
  }
  #detailContent .text-content {
    flex: 1;
    min-width: 0;
  }
  #detailContent .tab-link {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    font-weight: 900;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
  }
  #detailContent .tab-link:hover {
    color: #002b91;
  }
  #detailContent .tab-link.active {
    color: #000;
  }

  #detailContent .tab-content {
  }
  #detailContent .image-content {
    max-width: 50%;
    overflow: hidden;
  }
  #detailContent .image-content img {
    width: 100%;
    object-fit: cover;
  }
  #detailContent .requirement-item h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
  }

  #detailContent .requirements-wrapper {
    width: 100%;
    padding: 0 1.875rem;
  }
  #detailContent .requirements-wrapper-inner {
    width: 87.5rem;
    margin: 0 auto;
  }
  #detailContent .requirements-header {
    width: 87.5rem;
    margin: 0 auto 3rem;
  }
  #detailContent .requirements-subtitle {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 1.875rem;
    color: #002b91;
    display: block;
  }
  #detailContent .requirements-header h2 {
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    white-space: nowrap;
    font-size: 2.875rem;
    color: #000;
  }
  #detailContent .requirements-intro {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.8;
  }
  #detailContent .requirements-content {
    display: flex;
    gap: 8rem;
  }
  #detailContent .requirement-row {
    display: flex;
    gap: 4rem;
    width: 87.5rem;
    margin: 0 auto 4rem;
    align-items: flex-start;
  }
  #detailContent .requirement-row:last-child {
    margin-bottom: 0;
  }
  #detailContent .requirement-row.alt {
    flex-direction: row-reverse;
  }
  #detailContent .requirement-image {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
  }
  #detailContent .requirement-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  #detailContent .requirement-text {
    flex: 1;
    
  }
  #detailContent .requirement-title {
    display: flex;
    align-items: center;
  }
  #detailContent .requirement-text h4 {
    font-size: 1.875rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
  }
  #detailContent .requirement-text h5 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
  }
  #detailContent .requirement-text p {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  #detailContent .requirement-text ul {
    max-height: 18rem;
    min-height: 18rem;
    overflow-y: auto;
    padding-right: 1rem;
  }
  #detailContent .requirement-text ul li {
    font-size: 1.125rem;
    color: #000;
    line-height: 2;

  }
}

@media (max-width: 1200px) {
  #solutionDetailid {
    #detailContent {
      padding: 0;
    }
    #detailTabs .detailTabs-content,
    #detailContent .requirements-header,
    #detailContent .requirement-row,
     .scenario-content,
    #detailContent .detailContent-content {
      width: 100% !important;
    }
    .scenario-content {
      padding: 0 1.875rem;
    }
    #detailContent .intro-section,
    #detailContent .section {
      padding: 3.125rem 1.875rem 1.875rem;
      flex-direction: column !important;
      gap: 2rem;
    }
    
  }
}

@media (max-width: 920px) {
  #solutionDetailid {
    #detailBanner .banner-content {
      padding: 0 0 0 4rem;
    }
    #detailBanner .banner-category {
      font-size: 1rem;
    }
    #detailBanner .banner-title {
      font-size: 1.75rem;
    }
    #detailContent .section-content-inner {
      width: 100%;
      flex-direction: column;
      gap: 2rem;
    }
    #detailContent .section-header {
      width: 100%;
    }
    #detailContent .section-header h2 {
      margin-bottom: 2rem;
    }
    #detailContent .image-content {
      max-width: 100%;
      height: 15rem;
      order: 2;
    }
    #detailContent .section-content {
      flex-direction: column !important;
    }
    #detailContent .requirements-header,
    #detailContent .requirement-row {
      width: 100%;
    }
    #detailContent .requirement-row {
      flex-direction: column !important;
    }
    #detailContent .requirement-image {
      max-width: 100%;
      height: 15rem;
      order: 2;
    }
    #detailContent .requirement-text {
      order: 1;
    }
  }
}

@media (max-width: 768px) {
  #solutionDetailid {
    #detailBanner {
      height: 20.25rem;
    }
    #detailBanner .banner-content {
      padding: 0 0 0 1.875rem;
    }
    #detailBanner .banner-category {
      font-size: 0.875rem;
    }
    #detailBanner .banner-title {
      font-size: 1.25rem;
    }
    #detailTabs .detailTabs-content {
      width: 100%;
    }
    #detailTabs .tabs-list {
      gap: 5rem;
      justify-content: flex-start;
      padding: 1.5rem;
    }
    #detailContent .intro-section,
    #detailContent .section {
      padding: 3.125rem 1.875rem 1.875rem;
      flex-direction: column !important;
      gap: 2rem;  
    }
    .scenario-content {
      width: 100% !important;
      padding: 0 1.875rem;
    }
    #detailContent .requirements-content {
      flex-direction: column;
      gap: 1.875rem;
    }
    #detailContent .requirements-subtitle,
    #detailContent .section-subtitle {
      font-size: 1.5rem;
    }
    #detailContent .requirements-header h2,
    #detailContent .section-header h2 {
      font-size: 1.8rem;
    }
   }
}
@media (max-width: 480px) {
  #solutionDetailid {
    #detailBanner .detailBanner-content h1 {
      font-size: 1.25rem;
    }
    #detailTabs .tabs-list {
      /* gap: 2rem; */
    }
    #detailContent .intro-section,
    #detailContent .section {
      padding: 3.125rem 1.875rem 1.875rem;
      flex-direction: column !important;
      gap: 2rem;
    }
    #detailContent .requirement-title {
      flex-direction: column;
      align-items: flex-start;

    }
    #detailContent .requirement-text h4 {
      margin-bottom: 0;
    }
  }
}

#solutionDetailid .scenario-section {
  width: 100%;
  background: #fff;
  padding: 4rem 0;
}
#solutionDetailid .scenario-content {
  width: 87.5rem;
  margin: 0 auto;
}
#solutionDetailid .scenario-subtitle {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.875rem;
  color: #002b91;
  display: block;
  margin-bottom: 0.5rem;
}
#solutionDetailid .scenario-content h2 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2.875rem;
  color: #000;
  margin-bottom: 1.5rem;
}
#solutionDetailid .scenario-tags {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
#solutionDetailid .scenario-tags span {
  font-weight: 900;
  color: #000;
  font-size: 1.5rem;
}
#solutionDetailid .scenario-desc {
  color: #000;
  font-size: 1.125rem;
  line-height: 1.8;
}
#solutionDetailid .scenario-desc span {
  margin-bottom: 0.5rem;
}
#solutionDetailid .scenario-desc p:last-child {
  margin-bottom: 0;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.pagination .page-btn {
  width: 2.625rem;
  height: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #ddd;
  color: #666666;
  border-radius: 50%;
  font-family: HarmonyOS Sans SC;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination .page-btn.next img {
  width: 0.75rem;
  height: 0.75rem;
}
.pagination .page-btn:hover:not(:disabled) {
  border-color: #0047ab;
  color: #0047ab;
}
.pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination .page-num {
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid #ddd;
  color: #666666;
  border-radius: 50%;
  font-family: HarmonyOS Sans SC;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-num:hover {
  border-color: #0047ab;
  color: #0047ab;
}
.pagination .page-num.active {
  background: #0047ab;
  border-color: #0047ab;
  color: #fff;
}
.pagination .page-dots {
  display: flex;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
}
#newsid {
  #newsBanner {
    width: 100%;
    height: 31.25rem;
    background: url("../img/news1.png") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #newsSection {
    padding: 5rem 0;
    background: #f5f7fa;
  }
  #newsSection .newsSection-content {
    width: 87.5rem;
    margin: 0 auto;
  }
  #newsSection .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  #newsSection .news-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    position: relative;
  }
  #newsSection .news-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #002b91;
    transform: scaleX(0);
    /* transition: transform 0.3s ease; */
  }
  #newsSection .news-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  #newsSection .news-card:hover::after {
    transform: scaleX(1);
  }
  #newsSection .news-card:hover .news-date,
  #newsSection .news-card:hover .news-title,
  #newsSection .news-card:hover .news-link {
    color: #002a91;
  }
  #newsSection .news-card:hover .news-card {
    border-bottom: 1px solid #002a91;
  }
  #newsSection .news-image {
    width: 100%;
    height: 15rem;
    overflow: hidden;
  }
  #newsSection .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #newsSection .news-date {
    font-size: 1.125rem;
    color: #999;
    padding: 1rem 1.5rem 0;
  }
  #newsSection .news-content {
    padding: 0.75rem 1.5rem;
    min-height: 6rem;
  }
  #newsSection .news-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    
  }
  #newsSection .news-desc {
    font-size: 1.125rem;
    color: #000;
    padding: 0 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #newsSection .news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: #000;
    padding: 0 1.5rem 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  #newsSection .news-link img {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (max-width: 1200px){
  #newsid {
    #newsSection .newsSection-content {
      width: 100%;
      padding: 0 1.875rem;
    }
    /* #newSection .news {
      width: 100%;
      padding: 0 2rem;
    }  */
    /* #newsSection .news-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.875rem;
    } */
  }
}
@media (max-width: 920px) {
  #newsid {
    #newsSection .newsSection-content {
      width: 100%;
      padding: 0 1.875rem;
    }
    #newsSection .news-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.875rem;
    }
  }
}

@media (max-width: 768px) {
  #newsid {
    #newsBanner {
      height: 20.25rem;
    }
  }
}

@media (max-width: 680px) {
  #newsid {
    #newsSection {
      padding: 3rem 0;
    }
    #newsSection .newsSection-content {
      width: 100%;
      padding: 0 1.875rem;
    }
    #newsSection .news-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    #newsSection .news-card {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
  }
}
/* 新闻详情 */
.news-box {
  width: 100%;
  background-color: #f5f7fa;
  box-sizing: border-box;
}

.news-box .news-details-wrapper {
  width: 100%;
  background: #fff;
  border-top: 1px solid #e6e6e6;
}

.news-box .news-deatils-content {
  width: 87.5rem;
  margin: 0 auto;
  padding: 3rem;
}

.news-box .news-deatils-content h2 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2.875rem;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  min-height: 4rem;
}

.news-box .news-details-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.news-box .news-details-meta span {
  font-size: 1.125rem;
  color: #000;
}

.news-box .news-details-body {
  color: #000;
  font-size: 1.125rem;
  line-height: 1.8;
}

.news-box .news-details-body p {
  text-align: justify;
  text-indent: 2em;
}

.news-box .news-details-body p:has(img) {
  text-indent: 0 !important;
}
.news-box .news-details-body img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.news-box .news-details-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
  margin-top: 2.5rem;
}

.news-box .news-details-list .news-details-item {
  width: 100%;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.news-box .news-details-list .news-details-item:hover  .news-details-title,
.news-box .news-details-list .news-details-item:hover  .news-details-link,
.news-box .news-details-list .news-details-item:hover  .news-details-time {
  color: #002b91 !important;
}
.news-box .news-details-list .news-details-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #002b91;
  transform: scaleX(0);
}
.news-box .news-details-list .news-details-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.news-box .news-details-list .news-details-item:hover::after {
  transform: scaleX(1);
}

.news-box .news-details-list .news-details-item .news-details-img {
  height: 15rem;
  width: 100%;
  overflow: hidden;
}
.news-box .news-details-list .news-details-item .news-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-box .news-details-list .news-details-item .news-details-main {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-time {
  font-size: 1.125rem;
  color: #999;
}

.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-content {
    min-height: 6rem;
  }
.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-top: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-text {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: #000;
  padding: 0 1.5rem 0 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-link
  img {
  width: 1.25rem;
  height: 1.25rem;
}
.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-more
  .news-details-more-img {
  width: 1.25rem;
  height: 1.25rem;
}

.news-box
  .news-details-list
  .news-details-item
  .news-details-main
  .news-details-more
  .news-details-more-text {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.25rem;
  color: #002b91;
}

@media (max-width: 1200px) {
  .news-box .news-details-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-box .news-deatils-content {
    width: 100%;
    padding: 3.125rem 1.875rem;
  }
}
@media (max-width: 900px) {
  .news-box .news-details-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-box .news-deatils-content {
    width: 100%;
    padding: 3.125rem 1.875rem;
  }
}

@media (max-width: 456px) {
  .news-box .news-details-list {
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .news-box .news-deatils-content {
    width: 100%;
  }
}
/* *****************************关于我们 ****************************/
.about {
  width: 100%;
  height: auto;
}
.banner {
  width: 100%;
  height: 31.25rem;
  background: url("../img/about-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.second-one {
  background: #fff;
  width: 100%;
  overflow: hidden;
  padding: 5rem 0;
  box-sizing: border-box;
}
.second-one .wrap {
  width: 87.5rem;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  column-gap: 3.6875rem;
  margin-bottom: 3rem;
}
.second-one .mobile-second-p1 {
  display: none;
}
.one-left {
  opacity: 0;
  transform: translateX(-500px);
  transition: all 0.9s ease;
}
.one-left .tit {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.875rem;
  color: #002b91;
}
.one-left .tit-h {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2.875rem;
  color: #000000;
  margin-bottom: 5.0625rem;
}
.one-left .p1 {
  margin-top: 5.0625rem;
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 2.625rem;
}
.one-left .p2 {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 1.5rem;
}
.one-left .p3 {
  margin-bottom: 0 !important;
}
.one-right {
  opacity: 0;
  transform: translateX(500px);
  transition: all 0.9s ease;
  flex-shrink: 0;
  width: 28.75rem;
  height: 39.25rem;
}
.second-one .mobile-cont {
  display: flex;
  width: 87.5rem;
  margin: 0 auto;
  flex-direction: column;
  display: none;
}
.second-two {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f5f7fa;
  padding: 2.25rem 0;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}
.second-two .wrap,
.second-three .wrap {
  width: 87.5rem;
  margin: 0 auto;
}
.top-pack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
}
.t-p-one {
  width: 50%;
  height: auto;
  /* height: 12.5rem; */
  background: #ffffff;
  text-align: center;
  padding: 4rem 1rem;
  box-sizing: border-box;
}
.t-p-one .t1,
.bottom-pack .t1 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.5rem;
  color: #000000;
}
.t-p-one .t2,
.bottom-pack .t2 {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.125rem;
  color: #000000;
  margin-top: 1.1875rem;
}
.bottom-pack {
  width: 100%;
  height: 12.5rem;
  background: #ffffff;
  text-align: center;
  padding: 4rem 0;
  box-sizing: border-box;
  margin-top: 1rem;
}
.second-three {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 4.9375rem 0;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}
.second-three .tit {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.875rem;
  color: #002b91;
}
.second-three .tit-h {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2.875rem;
  color: #000000;
  margin-bottom: 3.0625rem;
}
.t-img {
  width: 100%;
  height: 43.625rem;
  background: url("../img/about-icon3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 3.5625rem 10.125rem;
}
.t-img h1 {
  color: #fff;
  text-align: center;
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 4.75rem;
}
.iconList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: #fff;
  margin-bottom: 3.4375rem;
}
.iconList .icon1 img {
  width: 3.375rem;
  height: 3.5625rem;
  margin-bottom: 1.1875rem;
}
.iconList .icon1 p {
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  font-size: 1.5rem;
  color: #ffffff;
}
.about-code {
  width: 100%;
  text-align: center;
  color: #ffffff;
}
.about-code img {
  width: 10rem;
  height: 10rem;
  margin-bottom: 1rem;
}
.about-code p {
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  font-size: 1.25rem;
}
.about-phone {
  margin-top: 2.1875rem;
  display: flex;
  align-items: center;
  column-gap: 1.3125rem;
  color: #ffffff;
  justify-content: center;
}
.about-phone img {
  width: 2.125rem;
  height: 2.125rem;
}
.about-phone .phone1 {
  font-family: HarmonyOS Sans SC;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
}
.about-phone .phone2 {
  display: inline-block;
  margin-left: 0.8125rem;
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2rem;
  color: #ffffff;
}
.second-three-f {
  margin-top: 6.1875rem;
}
.second-three-f .wrap {
  width: 87.5rem;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  column-gap: 3.6875rem;
}
.second-three-f .one-left {
}
.second-three-f .three-right {
  width: 30.75rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(500px);
  transition: all 0.9s ease;
}
.second-three-f .three-right img {
  /* height: 33.5rem; */
}
.second-three-f .s-t-p1 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 2.375rem;
}
.second-three-f .s-t-p2 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.5rem;
  color: #000000;
}
.second-three-f .s-t-p3 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.5rem;
  color: #999999;
  margin: 1rem 0;
}
.second-three-f .s-t-p4 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.5rem;
  color: #999999;
}
.second-three-f .s-t-p5 {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.125rem;
  color: #000000;
  line-height: 2rem;
  margin-top: 2.3125rem;
}
.about-btn {
  transition: all 0.5s;
  cursor: pointer;
}
.about-btn:hover {
  color: #000000;
}
.mobile-t {
  display: none;
}
.second-three-f .three-right.animate,
.second-three-f .one-left.animate {
  width: 50%;
}
.second-one .one-left.animate,
.second-one .one-right.animate,
.second-three-f .one-left.animate,
.second-three-f .three-right.animate {
  opacity: 1;
  transform: translateX(0);
}
.second-two.animate,
.second-three.animate {
  opacity: 1;
  transform: translateY(0);
}
/* ***************************** 联系我们 ****************************/
.contact .banner {
  width: 100%;
  height: 31.25rem;
  background: url("../img/contact1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.contact .banner2 {
  width: 100%;
  height: 38.125rem;
  background: url("../img/contact2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.contact-form {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 6.25rem 0;
  background: #f5f7fa;
}
.contact-form .wrap {
  width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-left,
.form-right {
  flex: 1;
}
.contact-f-top {
  margin-top: 2.375rem;
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
}
.contact-f-b {
  width: 100%;
  min-height: 18.8125rem;
  background: #ffffff;
}
.contact-f-b .texture {
  width: 100%;
}
.form-left .name {
  flex: 1;
  height: 3.875rem;
}
.form-left .put {
  outline: none;
  border: none;
  padding: 1.375rem 1.25rem;
  background: #ffffff;
  border-radius: 1px;
}
@media (max-width: 1200px) {
  .second-one .wrap,
  .second-two .wrap,
  .second-one .mobile-cont,
  .second-three .wrap {
    width: 100%;
  }
  .second-one .wrap {
    /* display: none; */
  }
  .second-one .mobile-cont {
    display: block;
  }
  .second-one,
  .second-two,
  .second-three {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 768px) {
  .mobile-t .s-t-p5 {
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin: 2rem 0;
  }
  .second-three-f .mobile-t {
    display: block !important;
  }
  .second-three-f .s-t-p5 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  .contact .banner {
    margin-bottom: 2rem;
  }
  .banner {
    height: 20.25rem;
  }
  .second-one {
    padding: 2.625rem 1.875rem;
  }
  .second-one .wrap {
    width: 100%;
    column-gap: 2.4375rem;
    margin-bottom: 0;
  }
  .one-left .tit {
    font-size: 1.5rem;
  }
  .one-left .tit-h {
    font-size: 1.8rem;
    margin-bottom: 2.375rem;
  }
  
  .one-left .cont {
    display: none;
  }
  .one-left .p1 {
    margin-bottom: 0;
    margin-top: 2.375rem;
    font-size: 1.5rem;
  }
  .one-right {
    width: 35%;
    height: 19.125rem;
    display: none;
  }

  .one-left .p2 {
    display: none;
  }
  .mobile-second-p1 {
    display: block !important;
    margin-bottom: 1rem;
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 1.125rem;
    color: #000000;
  }
  .mobile-second-p2 {
    margin-bottom: 0 !important;
  }
  .second-two {
    padding: 3.75rem 1.875rem;
  }
  .second-two .wrap,
  .second-three .wrap {
    width: 100%;
  }
  .top-pack {
    width: 100%;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 1rem;
  }
  .t-p-one {
    width: 100%;
  }
  .second-three {
    padding: 49px 1.875rem;
  }
  .t-img {
    padding: 3.5625rem 1.125rem;
  }
  .second-three-f {
    margin-top: 3.0625rem;
  }
  .second-three .tit {
    font-size: 1.5rem;
  }
  .second-three .tit-h {
    margin-bottom: 3.375rem;
    font-size: 1.8rem;
  }
  .second-three-f .one-left {
    width: 100% !important;
  }
  .second-three-f .wrap {
    display: unset;
    column-gap: 0;
  }
  .second-three-f .three-right.animate {
    width: 100%;
  }
  .second-three-f .three-right {
    width: 100%;
  }
  .mobile-t .pack {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* 联系我们页面新样式 */
.contact {
  background-color: #f5f7fa;
  min-height: calc(100vh - 150px);
}

.contact-main {
  width: 100%;
}

.contact-wrapper {
  width: 87.5rem;
  margin: 0 auto;
  display: flex;
  padding: 6rem 0;
  gap: 4rem;
}

.contact-left {
  flex: 1;
}

.contact-left h1 {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 2.25rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.contact-left h4 {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 2rem;
}

.contact-input-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-input {
  flex: 1;
  height: 3.75rem;
  background: #ffffff;
  border: none;
  padding: 0 1.25rem;
  font-family: HarmonyOS Sans SC;
  font-size: 1.125rem;
  color: #333;
  outline: none;
}

.contact-input::placeholder {
  color: #999999;
}

.contact-textarea-wrapper {
  width: 100%;
  min-height: 20.5rem;
  background: #fff;
  border: none;
  padding: 1.25rem;
  font-family: HarmonyOS Sans SC;
  font-size: 1.125rem;
  color: #333;
  outline: none;
  display: flex;
  flex-direction: column;
}

.contact-textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  font-family: HarmonyOS Sans SC;
  font-size: 1.125rem;
  color: #333;
  outline: none;
  resize: none;
}

.contact-textarea::placeholder {
  color: #999999;
}

.contact-code-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.code-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.code-input {
  width: 26.25rem;
  height: 3.125rem;
  background: #f5f7fa;
  border: 1px solid #e0e0e0;
  border-radius: 3.125rem;
  padding: 0 2.5rem 0 1.25rem;
  font-family: HarmonyOS Sans SC;
  font-size: 1rem;
  color: #333;
  outline: none;
}

.code-icon {
  position: absolute;
  right: 1.25rem;
  width: auto;
  height: 2rem;
  pointer-events: none;
}

.code-input::placeholder {
  color: #999999;
}

.get-code-btn {
  height: 3.125rem;
  background: transparent;
  border: none;
  color: #002a91;
  font-family: HarmonyOS Sans SC;
  font-size: 1rem;
  cursor: pointer;
}

.send-btn {
  height: 3.125rem;
  background: #f5f7fa;
  border-radius: 3.125rem;
  color: #002a91;
  font-family: HarmonyOS Sans SC;
  font-size: 1.125rem;
  padding: 0.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.send-btn img {
  width: 1rem;
  height: 1rem;
}

.contact-right {
  width: 43.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-content: start;
}

.contact-info {
  background: #ffffff;
  padding: 2rem;
  text-align: center;
}

.contact-info:nth-child(3) {
  grid-column: 1 / -1;
}

.contact-info .info-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info .info-title {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.contact-info .info-value {
  font-family: HarmonyOS Sans SC;
  font-weight: 900;
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 2rem;
}

.contact-info .info-en {
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: 1.25rem;
  color: #002a91;
}
@media (max-width: 1200px) {
  .contact-wrapper {
    width: 100%;
    padding: 4rem 1.875rem;
  }
  .contact-right {
    width: 100%;
  }
  .send-btn {
    justify-content: center;
    padding: 0.5rem 1.6rem;
  }
  .code-input {
    width: 20.25rem;
  }
}

@media (max-width: 920px) {
  .contact-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 1.875rem;
  }
  .contact-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    width: 100%;

    padding: 3rem 1.875rem;
  }
  .contact-right {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .contact-wrapper {
    width: 100%;
    padding: 3rem 1.875rem;
  }
  .contact-input-row {
  }
  .contact-input {
    width: 100%;
  }
  .contact-code-row {
    align-items: stretch;
    gap: 1rem;
  }
  .code-input {
    width: 100%;
  }
  .send-btn {
    justify-content: center;
    padding: 0.5rem 1.6rem;
  }
  .contact-right {
    grid-template-columns: 1fr;
  }
  .contact-info:nth-child(3) {
    /* grid-column: auto; */
    padding: 2rem 1rem;
  }
}
