.fufild {
  overflow-x: hidden;
  background-color: #e8edf0;
}

.lang-btn {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-left: 5px;
}

.lang-btn:first-child {
  margin-left: 0;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
  background: white;
  color: #1e3c72;
  border-color: white;
  font-weight: bold;
}

.pageone {
  width: 100%;
  /* height: 40vh; */
  /* background-image: url("/static/image/bianzu.png"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -25px;
  margin-bottom: 10px;
}

/* 父级菜单激活状态 - 蓝色白底字 */
.navbar_nav>li.active>a {
  background-color: #2a5298;
  color: #fff;
  /* 蓝色 */
  font-weight: 600;
}

/* 下拉菜单父项激活状态 */
.navbar_nav>li.dropdown.active>a {
  background-color: #2a5298;
  color: #fff;
}

/* 下拉菜单中子项激活状态 */
.dropdown_menu a.active {
  background-color: #f0f7ff;
  color: #fff;
  font-weight: 500;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
  background: #f5f7fa;
  color: #2a5298;
  padding-left: 20px;
}

/* 带动画的下拉菜单 */
.dropdown_menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  padding: 8px 0;
}

.navbar_nav>li.dropdown:hover>.dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 悬停效果 */
.navbar_nav>li>a:hover {
  /* background-color: #3494F0; */
  /* color: #fff; */
}

/* 轮播容器 */
.carousel-container {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  height: 500px;
  overflow: hidden;
  /* border-radius: 20px; */
  box-shadow: 0 21px 13px -16px rgba(0, 0, 0, 0.25);
}

/* 轮播轨道 */
.carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 12s infinite;
}

/* 轮播项 */
.carousel-slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

/* 遮罩层 */
.carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* 关键帧动画 - 无缝循环 */
@keyframes slide {

  0%,
  20% {
    transform: translateX(0);
  }

  25%,
  45% {
    transform: translateX(-33.333%);
  }

  50%,
  70% {
    transform: translateX(-66.666%);
  }

  75%,
  95% {
    transform: translateX(-66.666%);
  }

  100% {
    transform: translateX(0);
  }
}

/* 指示器 */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* 激活状态的指示器动画 */
.indicator:nth-child(1) {
  animation: indicator1 12s infinite;
}

.indicator:nth-child(2) {
  animation: indicator2 12s infinite;
}

.indicator:nth-child(3) {
  animation: indicator3 12s infinite;
}

@keyframes indicator1 {

  0%,
  20% {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }

  25%,
  100% {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
    box-shadow: none;
  }
}

@keyframes indicator2 {

  0%,
  45% {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }

  50%,
  70% {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }

  75%,
  100% {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}

@keyframes indicator3 {

  0%,
  70% {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }

  75%,
  95% {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }

  100% {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}

/* 导航按钮 */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.carousel-container:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* 标题文字 */
.slide-content {
  position: absolute;
  bottom: 60px;
  left: 40px;
  color: white;
  z-index: 5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.carousel-slide:nth-child(1) .slide-content {
  animation-delay: 0.5s;
}

.carousel-slide:nth-child(2) .slide-content {
  animation-delay: 3.5s;
}

.carousel-slide:nth-child(3) .slide-content {
  animation-delay: 6.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* 进度条 */
/* .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  width: 0%;
  animation: progress 12s linear infinite;
  z-index: 10;
} */

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .carousel-container {
    height: 300px;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    opacity: 1;
  }
}

/* 暂停动画（鼠标悬停时） */
/* .carousel-container:hover .carousel-track,
.carousel-container:hover .indicator,
.carousel-container:hover .progress-bar {
  animation-play-state: paused;
} */

.topinfo {
  width: 100%;
  height: 85px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  background-color: #224480;
}

.topinfo .logo {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topinfo .logo p {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 66px;
  color: #FFFFFF;
  font-style: normal;
}

.topinfo .logo img {
  width: 100px;
  height: 100px;
}

.topinfo .txtbx {
  width: 80%;
  padding: 10px 0 15px;
  display: flex;
  align-items: center;
}

.topinfo .txtbx p {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 36px;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
}

.topinfo .txtbx .containbx {
  display: flex;
  justify-content: space-between;
  height: 60px;
  width: 100%;
}

.topinfo .txtbx .containbx .item {
  height: 100%;
  display: flex;
  align-items: center;
}

.topinfo .txtbx .containbx .item img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}

.topinfo .txtbx .containbx .item ul {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 22px;
  text-align: left;
  font-style: normal;
}

.topinfo .txtbx .containbx .item:nth-child(1) {
  width: 20%;
}

.topinfo .txtbx .containbx .item:nth-child(2) {
  width: 30%;
}

.topinfo .txtbx .containbx .item:last-child {
  width: 35%;
}

.pagetwo {
  width: 100%;
  background-repeat: no-repeat;
  background-image: url("/static/image/bmbgm.png");
  background-size: cover;
  background-position-y: -125px;
  position: relative;
  top: -150px;
  padding-top: 165px;
}

.pagetwo .contain {
  width: 65%;
  margin: 0 auto;
}

.pagetwo .contain .boxlist {
  width: 100%;
  height: auto;
  min-height: 135px;
  margin-bottom: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  padding: 20px 0;
}

.pagetwo .contain .boxlist .item {
  flex: 0 0 calc((100% - 96px) / 5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.pagetwo .contain .boxlist .item img {
  width: 65px;
  height: 65px;
}

.pagetwo .contain .boxlist .item div {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 18px;
  color: #003A62;
  line-height: 25px;
  text-align: center;
  font-style: normal;
}

.pagetwo .contain .mainbox {
  width: 100%;
  display: flex;
}

.pagetwo .contain .mainbox .left {
  width: 50%;
  height: 100%;
}

.pagetwo .contain .mainbox .left .ttl {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 22px;
  color: #FAC400;
  line-height: 30px;
  padding: 30px 0 40px 50px;
  font-style: normal;
  background-image: url("/static/image/gkttlimg.png");
  background-repeat: no-repeat;
}

.pagetwo .contain .mainbox .left .info {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
}

.pagetwo .contain .mainbox .left .info span {
  text-indent: 36px;
  display: inline-block;
  line-height: 24px;
  margin-bottom: 15px;
}

.pagetwo .contain .mainbox .left .info span:last-child {
  margin-bottom: 0;
}

.pagetwo .contain .mainbox .right {
  width: 40%;
}

.pagetwo .contain .childbox {
  width: 100%;
  display: flex;
  margin-top: 30px;
}

.pagetwo .contain .childbox .left {
  width: 50%;
}

.pagetwo .contain .childbox .left .item {
  margin-bottom: 50px;
}

.pagetwo .contain .childbox .left .item .tp {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
}

.pagetwo .contain .childbox .left .item .tp .ttb {
  width: 100px;
  height: 50px;
  background-color: #F8BD01;
  transform: skew(-20deg);
  margin-right: 20px;
}

.pagetwo .contain .childbox .left .item .tp .ttb div {
  width: 100%;
  transform: skew(20deg);
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 30px;
  color: #FFFFFF;
  font-style: normal;
  text-align: center;
}

.pagetwo .contain .childbox .left .item .tp .ttl {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 18px;
  color: #FAC400;
  font-style: normal;
}

.pagetwo .contain .childbox .left .item .bm {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  font-style: normal;
  line-height: 32px;
}

.pagetwo .contain .childbox .left .item .bm span {
  display: block;
}

.pagetwo .contain .childbox .right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pagetwo .contain .childbox .right .item {
  width: 80%;
  height: 50%;
  margin-left: 55px;
}

.pagetwo .contain .childbox .right .item:last-child {
  margin-left: -15px;
}

.pagethree {
  width: 100%;
}

.pagethree .contain1 {
  width: 65%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 450px;
  position: relative;
  top: -50px;
}

.pagethree .contain1 .left {
  width: 50%;
  height: 100%;
}

.pagethree .contain1 .left .firsettl {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 36px;
  color: #01BBF8;
  text-align: left;
  font-style: normal;
  margin-bottom: 20px;
}

.pagethree .contain1 .left .infotx {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 2px;
  color: #272727;
  line-height: 28px;
  text-align: left;
  font-style: normal;
  margin-bottom: 15px;
  text-indent: 36px;
  /* 新增：多行截断最多显示10行，超出隐藏并显示省略 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
  /* 兼容性兜底：非 WebKit 浏览器以高度裁切 */
  max-height: calc(10 * 28px);
}

.pagethree .contain1 .detailbtn {
  width: 200px;
  height: 50px;
  background: #01BBF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 21px;
  color: #FFFFFF;
  font-style: normal;
  letter-spacing: 2px;
  cursor: pointer;
}

.pagethree .contain1 .right {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagethree .contain2 {
  width: 100%;
  height: 645px;
  margin: 0 auto;
  background-image: url(/static/image/ourab.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
}

.pagethree .contain2 .title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 36px;
  color: #2B2B2B;
  line-height: 50px;
  text-align: center;
  font-style: normal;
  color: #FFFFFF;
  letter-spacing: 3px;
}

.pagethree .contain2 .logobox {
  width: 80%;
  height: 260px;
  margin: 0 auto;
  position: relative;
  top: 9.375%;
}

.pagethree .contain2 .logobox img {
  width: 100%;
  height: 100%;
}

.pagefour {
  width: 100%;
  background-color: #f6f6f6;
  padding: 50px 0 0 0;
  position: relative;
}

.pagefour .title1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 36px;
  color: #2B2B2B;
  line-height: 50px;
  text-align: center;
  font-style: normal;
  letter-spacing: 3px;
  margin-bottom: 150px;
}

.pagefour .readbox {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.pagefour .readbox .menulist {
  display: flex;
  width: 70%;
  height: 135px;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
  top: -75px;
}

.pagefour .readbox .menulist .item {
  width: 19%;
  background-color: #fff;
  border-bottom: 4px solid #2B2B2B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 16px;
  color: #2B2B2B;
  font-style: normal;
}

.pagefour .readbox .title2 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 36px;
  color: #2B2B2B;
  line-height: 50px;
  text-align: center;
  font-style: normal;
  letter-spacing: 3px;
  margin-bottom: 80px;
}

.pagefour .readbox .policybox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.pagefour .readbox .policybox .item {
  width: 50%;
  height: 500px;
  margin-bottom: 85px;
}

.pagefour .readbox .policybox .item:nth-child(2),
.pagefour .readbox .policybox .item:nth-child(3),
.pagefour .readbox .policybox .item:nth-child(6) {
  display: flex;
  justify-content: center;
  align-items: start;
}

.pagefour .readbox .policybox .item:nth-child(2) .boxinfo,
.pagefour .readbox .policybox .item:nth-child(3) .boxinfo,
.pagefour .readbox .policybox .item:nth-child(6) .boxinfo {
  width: 65%;
  word-wrap: break-word;
  padding-right: 128px;
  position: relative;
}

.pagefour .readbox .policybox .item:nth-child(2) .boxinfo .title,
.pagefour .readbox .policybox .item:nth-child(3) .boxinfo .title,
.pagefour .readbox .policybox .item:nth-child(6) .boxinfo .title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 20px;
  color: #2B2B2B;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  width: 80%;
}

.pagefour .readbox .policybox .item:nth-child(2) .boxinfo .line,
.pagefour .readbox .policybox .item:nth-child(3) .boxinfo .line,
.pagefour .readbox .policybox .item:nth-child(6) .boxinfo .line {
  background-color: #01BBF8;
  width: 110px;
  height: 2px;
  margin: 20px 0;
}

.pagefour .readbox .policybox .item:nth-child(2) .boxinfo .infotxt,
.pagefour .readbox .policybox .item:nth-child(3) .boxinfo .infotxt,
.pagefour .readbox .policybox .item:nth-child(6) .boxinfo .infotxt {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 16px;
  color: #2B2B2B;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-indent: 32px;
}

.pagefour .readbox .policybox .item:nth-child(2) .boxinfo .icon,
.pagefour .readbox .policybox .item:nth-child(3) .boxinfo .icon,
.pagefour .readbox .policybox .item:nth-child(6) .boxinfo .icon {
  position: absolute;
  width: 90px;
  height: 90px;
  right: 21.875%;
  top: -8px;
  background-image: url("/static/image/jricon1.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.pagefour .readbox .policybox .item:nth-child(2) .boxinfo .btn,
.pagefour .readbox .policybox .item:nth-child(3) .boxinfo .btn,
.pagefour .readbox .policybox .item:nth-child(6) .boxinfo .btn {
  width: 200px;
  height: 50px;
  background: #01BBF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 21px;
  color: #FFFFFF;
  font-style: normal;
  letter-spacing: 2px;
  margin-top: 20px;
  cursor: pointer;
}

.pagefour .readbox .policybox .item:nth-child(1),
.pagefour .readbox .policybox .item:nth-child(4),
.pagefour .readbox .policybox .item:nth-child(5) {
  background-size: cover;
  background-repeat: no-repeat;
}

.pagefour .readbox .policybox .item:nth-child(1) {
  background-image: url("/static/image/zcimg1.png");
}

.pagefour .readbox .policybox .item:nth-child(4) {
  background-image: url("/static/image/zcimg2.png");
}

.pagefour .readbox .policybox .item:nth-child(5) {
  background-image: url("/static/image/zcimg3.png");
}

.pagefour .readbox .policybox .lineimg {
  position: absolute;
  top: 210px;
  left: 43%;
  height: 1250px;
}

.pagefive {
  width: 100%;
  background-image: url("/static/image/advice.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 0 0;
  position: relative;
}

.pagefive .title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 36px;
  color: #2B2B2B;
  line-height: 50px;
  text-align: center;
  font-style: normal;
  color: #FFFFFF;
  letter-spacing: 3px;
}

.pagefive .lbxbox {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  text-align: center;
}

.pagefive .lbxbox ul {
  display: flex;
  margin: auto;
  width: 85%;
  justify-content: space-evenly;
  padding: 80px 0;
  height: 600px;
}

.pagefive .lbxbox ul li {
  position: relative;
  height: 100%;
  width: 25%;
  text-align: center;
}

.pagefive .lbxbox ul li img {
  width: 100%;
}

.pagefive .lbxbox ul li .ttl {
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  font-style: normal;
  color: #fff;
}

.pagesix {
  width: 100%;
  /* height: 250px; */
  display: none;
  background-color: #282828;
}

.pagesix .contain {
  width: 80%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

html[lang="ru"] .pagesix .contain {
  width: 100% !important;
}

.lang-ru .pagesix .contain,
:lang(ru) .pagesix .contain,
html[lang="ru"] .pagesix .contain,
body.lang-ru .pagesix .contain {
  width: 100% !important;
}

.pagesix .contain .left {
  width: 60%;
  height: 100%;
  color: #fff;
  padding-left: 100px;
}

/* 首页页脚强制等宽居中（高优先级） */
.pagesix .contain .left .top {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.pagesix .contain .left .top .item {
  flex: 1 1 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 18px !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  flex-shrink: 0 !important;
}

.pagesix .contain .left .top .item:last-child {
  border: none !important;
}

.pagesix .contain .left .top .item:last-child {
  border: none;
}

.pagesix .contain .left .bottom {
  margin-top: 30px;
  margin-left: 25px;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  color: #E7E7E7;
  line-height: 25px;
  text-align: left;
  font-style: normal;
}

.pagesix .contain .left .bottom .item {
  margin-bottom: 6px;
}

.pagesix .contain .right {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
}

.pagesix .contain .right .qr,
.pagesix .contain .right .un {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.pagesix .contain .right .qr .code,
.pagesix .contain .right .un .code {
  width: 130px;
  height: 130px;
  background-image: url("/static/image/qrcode.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.pagesix .contain .right .qr .txt,
.pagesix .contain .right .un .txt {
  font-family: "Times New Roman", Times, serif;
  font-size: 21px;
  color: #E7E7E7;
  font-style: normal;
  letter-spacing: 2px;
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .pageone .topinfo .txtbx .containbx .item ul li {
    font-size: 14px;
  }

  .pagetwo {
    top: -20px;
    padding-top: 0px;
    background-size: unset;
    background-position-y: -290px;
  }

  .pagetwo .contain .mainbox .info span {
    font-size: 14px;
  }

  .pagetwo .contain .childbox {
    margin-top: 0;
  }

  .pagetwo .contain .mainbox .right img,
  .pagetwo .contain .childbox .right img {
    scale: 0.8;
  }

  .pagetwo .contain .childbox .left .item .tp .ttl {
    font-size: 16px;
  }

  .pagetwo .contain .childbox .left .item .tp .ttb {
    width: 60px;
    height: 30px;
  }

  .pagetwo .contain .childbox .left .item .tp .ttb div {
    font-size: 22px;
  }

  .pagetwo .contain .childbox .left .item {
    margin-bottom: 0;
  }

  .pagethree .contain1 {
    top: 20px;
  }

  .pagethree .contain1 .left .infotx {
    font-size: 16px;
  }

  .pagefour .readbox .policybox .lineimg {
    left: 40%;
  }

  .pagefive .lbxbox ul {
    height: 500px;
  }

  .pagefive .lbxbox ul li .ttl {
    font-size: 24px;
  }

  .pagefive .lbxbox ul li .ttl {
    bottom: -50px;
    left: -10px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .pageone {
    /* height: 40vh; */
  }

  .pageone .topinfo {
    width: 80%;
  }

  .pageone .topinfo .txtbx .containbx .item:last-child {
    width: 40%;
  }

  .pageone .topinfo .txtbx .containbx .item img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }

  .pageone .topinfo .txtbx .containbx .item ul li {
    font-size: 14px;
  }

  .pagetwo {
    background-size: cover;
    background-position: 50% 50%;
    top: -170px;
  }

  .pagetwo .contain {
    width: 70%;
  }

  .pagetwo .contain .boxlist {
    height: auto;
    min-height: 120px;
    padding: 16px 0;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .pagetwo .contain .mainbox .left {
    position: relative;
    width: 100%;
  }

  .pagetwo .contain .mainbox .right {
    display: none;
  }

  .pagetwo .contain .mainbox .left .ttl {
    padding: 15px 0 15px 50px;
    position: absolute;
    top: -85px;
    white-space: nowrap;
    background-size: contain;
  }

  .pagetwo .contain .childbox .left .item {
    margin-bottom: 25px;
  }

  .pagetwo .contain .mainbox .left .info {
    font-size: 16px;
  }

  .pagetwo .contain .childbox .left .item .tp .ttb {
    width: 80px;
    height: 40px;
    margin-right: 15px;
  }

  .pagetwo .contain .childbox .left .item .tp .ttb div {
    font-size: 25px;
  }

  .pagetwo .contain .childbox .left .item .tp .ttl {
    font-size: 18px;
  }

  .pagetwo .contain .childbox .left .item .bm {
    font-size: 16px;
  }

  .pagetwo .contain .childbox .right .item img {
    scale: 0.7;
    position: relative;
    left: -65px;
  }

  .pagethree .contain1 {
    width: 90%;
    position: relative;
    top: -135px;
  }

  .pagethree .contain1 .left .infotx {
    line-height: 30px;
    /* 兼容性兜底：保持10行裁切与媒体查询一致 */
    max-height: calc(10 * 30px);
  }

  .contain1 .right img {
    scale: 0.9;
  }

  .contain2 .logobox {
    width: 90%;
  }

  .pagefour .readbox .policybox .lineimg {
    left: 38%;
  }

  .pagefour .readbox .policybox .item {
    height: 460px;
    margin-bottom: 50px;
  }

  .pagefour .readbox .policybox .lineimg {
    height: 1100px;
    top: 185px;
  }

  .pagefour .readbox .policybox .item:nth-child(2) .boxinfo,
  .pagefour .readbox .policybox .item:nth-child(3) .boxinfo,
  .pagefour .readbox .policybox .item:nth-child(6) .boxinfo {
    width: 50%;
    padding-right: unset;
  }

  .pagefour .readbox .policybox .item:nth-child(2) .boxinfo .icon,
  .pagefour .readbox .policybox .item:nth-child(3) .boxinfo .icon,
  .pagefour .readbox .policybox .item:nth-child(6) .boxinfo .icon {
    right: -10%;
  }

  .pagefive .lbxbox ul {
    height: 350px;
    padding: 30px 0;
  }

  .pagefive .lbxbox ul li .ttl {
    font-size: 20px;
  }

  .pagefive .lbxbox ul li .ttl {
    bottom: 0;
    left: -45px;
  }

  .pagesix .contain .left {
    padding-left: unset;
  }

  .pagesix .contain .left .top {
    font-size: 16px;
  }

  .pagesix .contain .left .top .item {
    border-right: 1px solid #E7E7E7;
    white-space: nowrap;
    word-break: keep-all;
    flex-shrink: 0;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .pagesix .contain .left .top .item:last-child {
    border: none;
  }

  .pagesix .contain .left .bottom {
    font-size: 16px;
    margin-left: 8px;
  }

  .pagesix .contain .right .qr .code,
  .pagesix .contain .right .un .code {
    width: 100px;
    height: 100px;
  }

  .pagesix .contain .right .qr .txt,
  .pagesix .contain .right .un .txt {
    font-size: 18px;
  }
}

/* Footer pagesix unified enhancements */
.pagesix .contain {
  padding-bottom: 30px;
}

.pagesix .contain .left .bottom .item {
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
}

/* 首页页脚左侧容器与其他页面保持一致 */
.pagesix .contain .left {
  padding-left: 100px !important;
}

/* 强制分隔线显示（全局），最后一项去掉 */
.pagesix .contain .left .top .item {
  border-right: 1px solid #E7E7E7 !important;
}

.pagesix .contain .left .top .item:last-child {
  border: none !important;
}

/* 统一页脚字体为 18px，覆盖 base.css 与媒体查询 */
.pagesix .contain .left .top {
  font-size: 18px !important;
}

.pagesix .contain .left .bottom {
  font-size: 18px !important;
}

/* Migrated from Home.min.css overrides */
.pagesix .contain .left .top {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.pagesix .contain .left .top .item {
  flex: 1 1 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 18px !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  flex-shrink: 0 !important;
}

.pagesix .contain .left .top .item:last-child {
  border: none !important;
}

.lang-ru .pagesix .contain {
  width: 100% !important;
}

body.lang-ru .pagesix .contain {
  width: 100% !important;
}

:lang(ru) .pagesix .contain {
  width: 100% !important;
}

html[lang="ru"] .pagesix .contain {
  width: 100% !important;
}

.pagesix .contain .left {
  padding-left: 100px !important;
}

.pagesix .contain .left .top .item {
  border-right: 1px solid #E7E7E7 !important;
}

.pagesix .contain .left .top {
  font-size: 18px !important;
}

.pagesix .contain .left .bottom {
  font-size: 18px !important;
}

.topinfo {
  height: 85px !important;
}

/* 主体内容样式 */
.main {
  padding: 20px 0 50px;
  width: 80%;
  margin: 0 auto;
}

.section {
  margin-bottom: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.section-title {
  padding: 20px 30px;
  background: #f5f7fa;
  border-bottom: 2px solid #2a5298;
  margin-bottom: 20px;
}

.section-title h2 {
  color: #2a5298;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.section-title h2::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 20px;
  background: #ff6b35;
  margin-right: 10px;
  border-radius: 4px;
}

.section-content {
  padding: 0 30px 30px;
}

/* 卡片样式 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-content {
  padding: 15px;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.card-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}

/* 列表样式 */
.news-list {
  padding: 0;
}

.news-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.news-item:last-child {
  /* border-bottom: none; */
}

.news-item:hover {
  background: #fafafa;
  padding-left: 10px;
}

.news-date {
  width: 80px;
  text-align: center;
  margin-right: 20px;
}

.news-date span {
  display: block;
  background: #2a5298;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
}

.news-date small {
  color: #999;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.news-info {
  flex: 1;
}

.news-info h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.news-info h3:hover {
  color: #2a5298;
}

.news-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 图文混排样式 */
.mixed-content {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.mixed-content .content-left {
  flex: 1;
}

.mixed-content .content-right {
  width: 400px;
}

.mixed-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.mixed-content h3 {
  color: #2a5298;
  font-size: 18px;
  margin-bottom: 15px;
}

.mixed-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* 视频样式 */
/* .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
} */

/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination li {
  margin: 0 5px;
}

.pagination li a {
  display: block;
  padding: 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #666;
  transition: all 0.3s ease;
}

.pagination li a:hover {
  background: #2a5298;
  color: white;
  border-color: #2a5298;
}

.pagination li.active a {
  background: #2a5298;
  color: white;
  border-color: #2a5298;
}

/* 侧边栏样式 */
.sidebar {
  width: 300px;
  margin-left: 30px;
}

.sidebar-section {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.sidebar-title {
  padding: 15px 20px;
  background: #f5f7fa;
  border-bottom: 2px solid #2a5298;
  margin-bottom: 15px;
}

.sidebar-title h3 {
  color: #2a5298;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.sidebar-title h3::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 16px;
  background: #ff6b35;
  margin-right: 8px;
  border-radius: 3px;
}

.sidebar-content {
  padding: 0 20px 20px;
}

/* 底部样式 */
.footer {
  background: #1e3c72;
  color: white;
  padding: 40px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
  width: 25%;
  padding: 0 20px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.footer-column p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-column ul li a:hover {
  color: #ff6b35;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #2a5298;
  color: white;
}

.btn-primary:hover {
  background: #1e3c72;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ff6b35;
  color: white;
}

.btn-secondary:hover {
  background: #e55a2a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #2a5298;
  border: 2px solid #2a5298;
}

.btn-outline:hover {
  background: #2a5298;
  color: white;
}

/* 表单样式 */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #2a5298;
  box-shadow: 0 0 0 2px rgba(42, 82, 152, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* 标签样式 */
.tag {
  display: inline-block;
  background: #e8f0fe;
  color: #2a5298;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* 进度条样式 */
/* .progress-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin: 10px 0;
} */

/* .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2a5298, #ff6b35);
  border-radius: 4px;
  transition: width 0.5s ease;
} */

/* 响应式设计 */
@media (max-width: 1200px) {
  .container {
    width: 100%;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-column {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 15px;
  }

  .search-box {
    width: 100%;
    margin-bottom: 15px;
  }

  .search-box input {
    width: 100%;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .main-nav>li>a {
    padding: 12px 15px;
  }

  .banner {
    height: 300px;
  }

  .banner-text {
    left: 5%;
    right: 5%;
    max-width: none;
  }

  .banner-text h2 {
    font-size: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .mixed-content {
    flex-direction: column;
  }

  .mixed-content .content-right {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
  }
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* 工具类 */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

/* 悬浮效果 */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 分隔线 */
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}

/* 标签页样式 */
.tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.tab-item {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  margin-right: 20px;
}

.tab-item.active {
  color: #2a5298;
  border-bottom-color: #2a5298;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* 面包屑导航 */
.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.breadcrumb-item {
  margin-right: 10px;
}

.breadcrumb-item a {
  color: #666;
}

.breadcrumb-item a:hover {
  color: #2a5298;
}

.breadcrumb-item::after {
  content: '>';
  margin-left: 10px;
  color: #999;
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-item:last-child {
  color: #2a5298;
  font-weight: bold;
}