/* ========== 导航栏头部 ========== */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* 滚动后添加样式 */
.header-wrap.scrolled {
  background-color: rgba(0, 0, 0, 0.3);
  /* 深色半透明 */
  backdrop-filter: blur(5px);
  /* 毛玻璃模糊 */
}

.header-wrap .nav-box {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  height: 100%;
}

.header-wrap .nav-box .logo {
  width: 80px;
  margin-top: 8px;
}

.header-wrap .nav-box .nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-wrap .nav-box .nav-menu .menu-item {
  position: relative;
  margin: 0 15px;
  padding: 0 5px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  line-height: 64px;
}

.header-wrap .nav-box .nav-menu .menu-item span {
  position: relative;
  display: inline-block;
  height: 100%;
}

.header-wrap .nav-box .nav-menu .menu-item span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  /* 从中间开始，缩放为0 */
  transform-origin: center;
  /* 缩放中心点在中间 */
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease;
}

.header-wrap .nav-box .nav-menu .menu-item.active span::after {
  transform: translateX(-50%) scaleX(1);
  /* 从中间延伸到两边 */
}

.header-wrap .nav-box .nav-menu .menu-item:hover {
  color: #9cb8ff;
}

.header-wrap .nav-box .nav-menu .menu-action {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-wrap .nav-box .nav-action {
  display: flex;
  align-items: center;
}

.header-wrap .nav-box .nav-action .language-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  margin: 0 16px;
}

.header-wrap .nav-box .nav-action .language-select option {
  color: #333;
  padding: 20px 15px;
}

.header-wrap .nav-box .nav-action .btn {
  cursor: pointer;
  min-width: auto;
}

.header-wrap .m-nav-box.show-xs-down {
  height: 48px;
  background-color: #fff;
  color: #1C2C41;
}

.header-wrap .m-nav-box.show-xs-down .left-icon,
.header-wrap .m-nav-box.show-xs-down .right-icon {
  display: flex;
  align-items: center;
  min-width: 24px;
}

/* ========== 导航栏底部 ========== */
.footer-wrap {
  background-color: #101F2E;
}

.footer-wrap .links-wrap {
  display: flex;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #fff;
  justify-content: space-between;
}

.footer-wrap .links-wrap .links-item span,
.footer-wrap .links-wrap .contact>div,
.footer-wrap .links-wrap .about>div {
  margin-top: 1rem;
}
.footer-wrap .links-wrap .contact>div{
    margin-top: 0.5rem;
}

.footer-wrap .links-wrap .contact .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  object-fit: cover;
}

.footer-wrap .links-wrap .about .qrcode {
  width: 100px;
  height: 100px;
}

.footer-wrap .links-wrap .about .other {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: cover;
}

.footer-wrap .links-wrap .line {
  width: 1px;
  height: 185px;
  background-color: #fff;
}

.footer-wrap .filing-info {
  border-top: 1px solid #858E97;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  text-align: center;
}

/* ========== 容器样式 ========== */
.container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.card {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: var(--gap);
  transition: all 0.3s ease;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--gap);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--gap);
}

/* ========== 布局样式 ========== */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.items-center {
  align-items: center;
}

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

.justify-end {
  justify-content: end;
}

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

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.none {
  display: none !important;
}

/* ========== 文本样式 ========== */
.text-ellipsis-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== 按钮样式 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s ease-in-out;
  letter-spacing: 0.05rem;
  min-width: 100px;
}

/* info 按钮 */
.btn-info {
  background-color: #1C2C41;
}

.btn-info:hover {
  background-color: #243954;
}

/* primary 按钮 */
.btn-primary {
  background-color: #3C6EF1;
}

.btn-primary:hover {
  background-color: #315ad0;
}

/* 圆角按钮 */
.btn-circle {
  padding: 10px;
  min-width: 42px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ecf1ff;
}

.btn-circle path {
  fill: #666;
}

.btn-circle:hover {
  background-color: #315ad0;
}

.btn-circle:hover path {
  fill: #fff;
}

/* 方形按钮 */
.btn-square {
  padding: 10px;
  min-width: 42px;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ecf1ff;
}

.btn-square path {
  fill: #666;
}

.btn-square:hover {
  background-color: #315ad0;
}

.btn-square:hover path {
  fill: #fff;
}

/* outline 按钮 */
.btn-outline {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* 分页样式 */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.pagination .prev,
.pagination .next {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 4px;
  border: 1px solid #DCDFE6;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
}

.pagination .pagination-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 15px;
}

.pagination .pagination-list li {
  cursor: pointer;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #DCDFE6;
  color: #666;
}

.pagination .pagination-list li.ellipsis {
  line-height: 30px;
}

.pagination .pagination-list li.active {
  background-color: #101F2E;
  color: #fff;
}

.pagination input {
  height: 42px;
  width: 46px;
  border-radius: 4px;
  border: 1px solid #DCDFE6;
  text-align: center;
  margin: 0 10px;
  color: #666;
}

/*  ========== 点击效果 ========== */
/* 基础 tap 效果 */
.tap {
  display: inline-block;
  cursor: pointer;

  transition: all 0.15s ease;
  transform: translateZ(0);
}

/* 点击时的缩放 + 下压 */
.tap:active {
  opacity: 0.85;
  transform: scale(0.98) translateY(1px);
}

/* 可选：点击时背景高亮 */
.tap-bg:active {
  background-color: #f5f5f5;
}

/*  ========== 遮罩层+菜单样式 ========== */
.slide-menu-mask {
  position: fixed;
  z-index: 9000;
  left: 0;
  width: 100%;
  top: 48px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.slide-menu-mask.show {
  display: block;
}

.menu-wrapper {
  width: 268px;
  position: fixed;
  left: -268px;
  bottom: 0;
  top: 48px;
  z-index: 9999;
  background-color: #fff;
  font-size: 16px;
  /* 添加动画 */
  transition: left 0.3s ease;
}

.slide-menu-mask.show .menu-wrapper {
  left: 0;
}

.menu-wrapper .menu-header {
  padding: 20px 16px;
}

.menu-wrapper .menu-header img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 10px
}

.menu-wrapper .menu-list {
  padding: 0 20px;
}

.menu-wrapper .menu-list li {
  display: flex;
  align-items: center;
  height: 56px;
  line-height: 56px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  border-bottom: 1px solid #f5f5f5;
  color: #ccc;
}

.menu-wrapper .menu-list li a {
  display: flex;
  color: #1C2C41;
  flex: 1;
}

/* ========== 其他样式 ========== */

/* 无数据显示 */
.empty-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
    .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  margin: 0 0; 
          margin-top: 40px;
      }
  .pagination li.active a {
    background: #111111;
    color: #FFF; }
  .pagination li a {
    min-width: 36px;
    max-width: auto;
    width: auto;
    height: 36px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #DCDFE6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    padding: 0 10px;
    line-height: 20px; }
    .pagination li:nth-child(1) a{
        border: 0;
    width: auto;
    background: none;
    }
  .pagination li:last-child {
    border: 0;
    width: auto;
     }
    .pagination li:last-child input {
      width: 55px;
      height: 36px;
      background: #FFFFFF;
      border-radius: 4px;
      border: 1px solid #DCDFE6;
      margin: 0 10px;
      text-align: center;
      font-size: 14px; }
/* ========== 动画效果 ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.6s ease forwards;
}
.uw-boxsssss{
    max-width: 491px;
}
/*@media screen and (max-width: 1160px) {*/
/*    .header-wrap .nav-box .nav-menu{*/
/*        display: none;*/
/*    }*/
/*}*/
@media screen and (max-width: 1160px) {
   .uw-boxsssss{
    max-width: 100%;
}
  .header-wrap .m-nav-box.show-xs-down {
    display: flex !important;
  }
  .show-xs-down {
    /* 小屏显示 */
    display: block !important;
  }
    .hide-xs-down {
    /* 小屏隐藏 */
    display: none !important;
  }
  .footer-wrap .m-wrap {
    flex: 1;
    justify-content: space-between;
  }

  .footer-wrap .links-wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-wrap .m-wrap .show-xs-down {
    display: flex !important;
  }

  .footer-wrap .contact {
    margin-right: 0 !important;
  }
  .uw-boxsssss{
      width: 100%;
  }
}
@media screen and (max-width: 820px) {
    .uw-boxsssss{
        max-width: 100%;
    }
  .header-wrap .m-nav-box.show-xs-down {
    display: flex !important;
  }
  .show-xs-down {
    /* 小屏显示 */
    display: block !important;
  }
    .hide-xs-down {
    /* 小屏隐藏 */
    display: none !important;
  }
  .footer-wrap .m-wrap {
    flex: 1;
    justify-content: space-between;
  }

  .footer-wrap .links-wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-wrap .m-wrap .show-xs-down {
    display: flex !important;
  }

  .footer-wrap .contact {
    margin-right: 0 !important;
  }
  .uw-boxsssss{
      width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .links-item {
    display: none !important;
  }
 
}

