@font-face {
  font-family: 'HarmonyOS Sans';
  src: url('../HarmonyOS_Sans_SC_Medium.woff');
  font-weight: normal;
  font-style: normal;
}
.mobile {
  display: none !important;
}
.no-border {
  border: none !important;
}
body {
  font-family: 'HarmonyOS Sans', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.img-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--box-border-radius);
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
a {
  display: block;
  max-width: 100%;
}
input {
  border: none;
  outline: none;
}
input:focus,
inputfocus-visible {
  outline: none!important;
  box-shadow: none!important;
}
.article-categories {
  margin-bottom: 32px!important;
}
.article-image {
  flex: 0 0 240px;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}
.article-image:before {
  display: block;
  content: "";
  padding-top: 70%;
}
.article-image.article-image-none {
  background-color: #f0f0f0;
}
.article-image.article-image-none .img-a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-image.article-image-none img {
  width: auto;
}
.article-image .article-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.breadcrumb-nav,
.breadcrumb {
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #7f8c8d;
}
.breadcrumb-nav a,
.breadcrumb a {
  color: #7f8c8d;
  transition: color 0.3s;
}
.breadcrumb-nav a:hover,
.breadcrumb a:hover {
  color: #3498db;
}
.breadcrumb-nav .separator,
.breadcrumb .separator {
  margin: 0 8px;
}
.breadcrumb-nav .current,
.breadcrumb .current {
  color: #3498db;
  font-weight: 500;
}
.breadcrumb-nav .breadcrumb-item,
.breadcrumb .breadcrumb-item {
  color: #666;
  text-decoration: none;
}
.breadcrumb-nav .breadcrumb-item:hover,
.breadcrumb .breadcrumb-item:hover {
  color: #e60012;
}
.breadcrumb-nav .breadcrumb-item.current,
.breadcrumb .breadcrumb-item.current {
  color: #252525;
  font-weight: 500;
}
.breadcrumb-nav .breadcrumb-separator,
.breadcrumb .breadcrumb-separator {
  margin: 0 8px;
}
.hover {
  transition: all 0.3s;
}
.hover:hover {
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.9;
}
.common-banner {
  min-height: 20vh;
  position: relative;
  margin-bottom: 32px!important;
}
.common-banner .banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.common-banner .banner:before {
  display: block;
  content: "";
  padding-top: 30%;
  background: url('../img/banner.png') no-repeat;
  background-size: cover;
  background-position: center;
}
.common-banner .banner .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common-banner .banner .title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.common-banner .banner .title-box .img-tit {
  font-size: 3.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.common-banner .banner .title-box .img-en-tit {
  font-size: 24px;
  line-height: 1.2;
}
.flex {
  display: flex;
  align-items: center;
}
.container {
  width: 1440px;
  margin: 0 auto;
  max-width: 100%;
}
.a-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.article-list {
  min-height: 30vh;
}
header {
  height: 90px;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: sticky;
  background: #FFF;
  top: 0;
  z-index: 998;
}
header .center {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.6vw;
}
header .center .logo {
  position: relative;
}
header .center .logo img {
  height: 48px;
}
header .center .nav {
  display: flex;
  align-items: center;
  gap: 1.7vw;
  height: 90px;
}
header .center .nav .nav-item {
  color: #b5b5b5;
  font-size: 16px;
  height: 90px;
  line-height: 90px;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}
header .center .nav .nav-item span {
  display: block;
  height: 100%;
}
header .center .nav .nav-item:hover {
  transition: all 0.3s;
  color: #252525;
}
header .center .nav .nav-item.act {
  font-weight: bold;
  color: #252525;
  position: relative;
}
header .center .nav .nav-item.act .submenu a {
  font-weight: normal;
}
header .center .nav .nav-item.act:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -2px;
  right: 0;
  height: 4px;
  background: #e60012;
  border-radius: 6px;
}
header .center .nav .nav-item .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
header .center .nav .nav-item .submenu a {
  display: block;
  padding: 12px 20px;
  color: #252525;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}
header .center .nav .nav-item .submenu a:hover {
  background: #f9f9f9;
  color: #e60012;
}
header .center .nav .nav-item .submenu a:last-child {
  border-bottom: none;
}
header .center .nav .nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .center .search {
  border: 2px solid #252525;
  border-radius: 32px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .center .search span {
  color: #e60012;
  font-size: 16px;
}
header .center .search input {
  max-width: 150px;
  font-size: 16px;
}
header .center .search input.custom-placeholder::placeholder {
  color: #e60012;
  /* 设置placeholder文本颜色 */
  font-size: 16px;
  /* 设置placeholder文本字体大小 */
}
header .center .contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
header .center .contact .call {
  font-size: 20px;
  color: #252525;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .center .contact .call .icon {
  width: 1.5rem;
  height: 1.5rem;
  background: url('../img/call.svg') no-repeat;
  background-size: contain;
}
header .center .contact .email {
  font-size: 16px;
  color: #252525;
}
/* 分页 */
.common-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.common-pagination .pagination {
  display: flex;
  gap: 5px;
}
.common-pagination .pagination .page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f2f2f2;
  color: #252525;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.common-pagination .pagination .page-item.active {
  background-color: #e60012;
  color: #fff;
}
.common-pagination .pagination .page-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.common-pagination .pagination .page-item:hover:not(.active):not(.disabled) {
  background-color: #e0e0e0;
}
.common-pagination .pagination .page-item.prev,
.common-pagination .pagination .page-item.next {
  width: fit-content;
  padding: 0 20px;
  border-radius: 16px;
}
footer {
  margin-top: 48px;
}
footer .footer-box {
  border-radius: 16px 16px 0 0;
  background: #f2f2f2;
}
footer .company-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 4.3125rem 3.25rem;
}
footer .company-info .info .line {
  margin-bottom: 1.5rem;
}
footer .company-info .info .line:nth-last-child(when) {
  margin: 0;
}
footer .company-info .contact {
  display: flex;
  align-items: center;
  gap: 18px;
}
footer .company-info .contact .item {
  border-radius: 1rem;
  background: #252525;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .company-info .contact .item .icon {
  width: 60%;
}
footer .web-info {
  align-items: center;
  justify-content: space-between;
  background: #D2D2D2;
  border-radius: 16px 16px 0 0;
  background: #d2d2d2;
  padding: 26px 53px;
}
footer .web-info .text {
  font-size: 16px;
  color: #252525;
}
@media screen and (max-width: 1480px) {
  main,
  header > .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1260px) {
  header .center {
    justify-content: space-between;
  }
  header .center .contact {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  header .center {
    justify-content: space-between;
  }
  header .center .search {
    display: none !important;
  }
  header .center .search.mobile {
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  header .center {
    justify-content: space-between;
  }
  header .center .nav {
    display: none;
  }
  header .center .nav-icon {
    width: 30px;
    display: block !important;
  }
  header .center .search.mobile {
    display: none !important;
  }
  header .center .search.pc {
    display: flex !important;
    margin-left: 20px;
  }
  header .center .flex {
    gap: 16px;
  }
}
@media screen and (max-width: 650px) {
  footer {
    margin-top: 20px;
  }
  footer .company-info {
    flex-direction: column;
    padding: 20px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  footer .web-info {
    display: block;
    text-align: center;
  }
  header .center .search.mobile {
    display: block !important;
    padding: 0;
  }
  header .center .search.pc {
    display: none !important;
  }
  header .center .flex {
    gap: 10px;
  }
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}
.search-overlay .search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 16px;
}
.search-overlay .search-container .search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.search-overlay .search-container .search-header h2 {
  margin: 0;
  font-size: 20px;
  color: #333;
}
.search-overlay .search-container .search-header .close-search {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
}
.search-overlay .search-container .search-header .close-search img {
  width: 100%;
  height: 100%;
}
.search-overlay .search-container .search-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search-overlay .search-container .search-content .search-input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 0 16px;
  font-size: 1rem;
}
.search-overlay .search-container .search-content .search-input:focus {
  border-color: #252525;
  box-shadow: 0 0 0 2px rgba(37, 37, 37, 0.25);
}
.search-overlay .search-container .search-content .search-button {
  width: 100%;
  height: 48px;
  background-color: #252525;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.search-overlay .search-container .search-content .search-button:hover {
  background-color: #252525;
}
/*# sourceMappingURL=styles.css.map */