/* CSS Document*/
/* @font-face {
  font-family: 'HWMC';
  src:url('../fonts/huiwenmincho.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
* {
  padding: 0px;
  margin: 0px;
  outline: 0 none;
}

a {
  text-decoration: none;
  color: #666;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

a:hover {
  color: #002FAB;
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  vertical-align: bottom;
  zoom: 1;
}

img {
  border: 0px;
}

select {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
}

textarea {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

th,
td {
  padding: 0;
}

input {
  vertical-align: middle;
  outline: none;
  font-size: 12px;
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  margin: 0px;
}

p {
  margin: 0px;
}

em,
i {
  font-style: normal;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}


/* 滚动条整体部分 */
::-webkit-scrollbar {
  width: 8px;
  /* 滚动条的宽度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #eee;
  /* 轨道颜色 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #ccc;
  /* 滑块颜色 */
}

/* 滑块悬停状态 */
::-webkit-scrollbar-thumb:hover {
  background: #999;
  /* 滑块悬停颜色 */
}

body {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  background: #fff;
  color: #666;
  font-size: 14px;
}

.container {
  margin: 0px auto;
  padding: 0px 80px;
  max-width: 1400px;
}

.top {
  height: 100px;
  z-index: 999;
  top: 0px;
  width: 100%;
  transition: all 0.5s ease 0s;
  position: fixed;
  background: #000;
}

.top_pc{
  display: block;
}

.top_ph{
  display: none;
}

.top>.container {
  height: 100%;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px;
}

.top .logo {
  width: auto;
  height: 39px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
}

.top .logo img {
  height: 100%;
  width: auto;
}

.phone_btn {
  float: right;
  display: block;
}

.top .phone_btn span {
    width: 30px;
    height: 17px;
    display: inline-block;
    position: relative;
  }

  .top .phone_btn span:before {
    content: "";
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
  }

  .top .phone_btn span:after {
    content: "";
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease 0s;
  }

  .top .phone_btn span i {
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
    margin-top: -1px;
  }

  .top .phone_btn.on span{
    height: 2px;
  }

  .top .phone_btn.on span:before {
    transform: rotate(45deg);
    transition: all 0.3s ease 0s;
  }

  .top .phone_btn.on span:after {
   transform: rotate(-45deg);
   transition: all 0.3s ease 0s;
  }

  .top .phone_btn.on span i{
    display: none;
  }

.nav{
  position: fixed;
  top: 100px;
  left: 0px;
  width: 100%;
  z-index: 10;
  background: #000;
  padding-bottom: 30px;
  display: none;
}

.nav.show{
display: block !important;
animation: fadeInDown 0.5s ease-out forwards;
}

/* 关键帧动画 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px); /* 稍微向上移动 */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 回到原位 */
  }
}


.nav ul{
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.nav ul i{
  display: none;
}

.nav ul li{
  flex: 1;
  position: relative;
}

.nav ul li h2{
  position: relative;
}

.nav ul li h2 a{
border-bottom: 1px solid #999;
color: #fff;
display: block;
text-align: center;
line-height: 45px;
font-size: 16px;
font-weight: bold;
position: relative;
}

.nav ul li h2:hover::after{
content: '';
width: 64px;
height: 3px;
border-radius: 15px;
position: absolute;
bottom: 0px;
left: 50%;
transform: translate(-50% , 0);
background: #fff;
}

.nav ul li h3{
  padding: 10px 0px;
}

.nav ul li h3 a{
  display: block;
  width: 100%;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.menu_cot {
  width: 80%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into .menu_cot {
  transform: translateX(0);
  transition: all 0.3s 0.2s ease;
}

.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
}

.menu_close img {
  width: 40px;
}

.menu_close a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.nav_gao {
  height: 100px;
}


.in_banner {
  height: auto;
}

.in_banner .swiper-slide .bj {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj img {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj .pc_img {
  height: calc(100vh - 210px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.in_banner .swiper-slide .bj .pc_img video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_banner .swiper-slide .nr {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
}


.in_banner .swiper-slide .nr .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 90%;
}

.in_banner .swiper-slide .nr .container h2 {
  font-size: 60px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 860px;
}


.in_banner .swiper-slide .nr .container p {
  font-size: 42px;
  color: #fff;
  max-width: 860px;
  font-weight: bold;
  text-align: center;
}

.in_banner .swiper-button-next,
.in_banner .swiper-button-prev {
  width: 60px;
  height: 60px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.in_banner .swiper-button-next::after,
.in_banner .swiper-button-prev::after {
  font-size: 20px;
}

/*.swiper-pagination{*/
/*  left: 10%;*/
/*  text-align: left;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  bottom: 20%;*/
/*}*/

/*.in_banner .swiper-pagination i{*/
/*  width: 500px;*/
/*  height: 2px;*/
/*  background: #fff;*/
/*  display: block;*/
/*  position: relative;*/
/*}*/

/*.in_banner .swiper-pagination i::after{*/
/*  content: '';*/
/*  background: #0630A8;*/
/*  width: 100%;*/
/*  height: 2px;*/
/*  animation: width 7s infinite;*/
/*  position: absolute;*/
/*  left: 0px;*/
/*  top: 0px;*/
/*}*/

@keyframes width {
  0% {
   width: 0px;
  }

  100% {
   width: 100%;
  }
}

/*.in_banner .swiper-pagination span {*/
/*  color: #fff;*/
/*  font-size: 18px;*/
/*  padding-left: 5px;*/
/*}*/


.in_box{
  background: url(../images/in_box_dbj.png) no-repeat #fafafa;
  background-size:100% auto;
  padding: 80px 0px;
}

.in_box_jj{
  text-align: center;
}


.in_box_jj .bt h2{
  font-size: 30px;
  color: #333;
}

.in_box_jj .bt b{
  background: #002FAB;
  width: 40px;
  height: 4px;
  display: inline-block;
}

.in_box_jj .nr{
  padding: 40px 0px;
}

.in_box_jj .nr p{
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 5px;
}

.in_box_jj ul{
  display: flex;
  justify-content: center;
}

.in_box_jj ul li{
  width: 180px;
}

.in_box_jj ul li h2 {
  color: #002FAB;
  font-size: 20px;
  font-weight: bold;
}

.in_box_jj ul li h2 b {
  font-size: 35px;
  font-weight: bold;
}

.in_box_jj ul li p {
  font-size: 14px;
  color: #333;
  padding-top: 3px;
}

.in_box_qh{
  margin-top: 50px;
}

.in_box_qh .swiper-slide{
  height: 450px;
  width: 60%;
  opacity: .7;
}

.in_box_qh .swiper-slide.swiper-slide-active{
  opacity: 1;
}

.in_box_qh .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_box_qh .swiper-button-next,
.in_box_qh .swiper-button-prev {
  width: 60px;
  height: 60px;
  color: #333;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.in_box_qh .swiper-button-next::after,
.in_box_qh .swiper-button-prev::after {
  font-size: 20px;
}

.in_box1{
  padding: 80px 0px;
}

.in_box1 .bt{
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.in_box1 .bt h2{
  font-size:26px;
  color: #333;
}

.in_box1 .bt h3 a{
  font-size: 16px;
  color: #333;
}

.in_box1 .bt h3 a:hover{
  color: #002FAB;
}

.in_box1 .bt h3 a i{
  margin-left: 5px;
}

.in_box1 ul{
  display: flex;
  flex-wrap: wrap;
}

.in_box1 ul li{
  width: 33.3%;
  box-sizing: border-box;
}

.in_box1 ul li a{
  display: block;
  padding: 10%;
  box-sizing: border-box;
}

.in_box1 ul li a h3{
  font-size: 42px;
  line-height: 1;
  font-weight: bold;
}

.in_box1 ul li a h3 b{
  font-weight: normal;
  font-size: 20px;
  display: block;
}

.in_box1 ul li a h2{
height: 64px;
font-size: 20px;
color: #333;
font-weight: bold;
display: -webkit-box;        /* 启用弹性盒模型 */
-webkit-box-orient: vertical; /* 设置垂直排列 */
-webkit-line-clamp: 2;       /* 限制显示行数 */
overflow: hidden;            /* 隐藏溢出内容 */
text-overflow: ellipsis;     /* 显示省略号 */
margin: 20px 0px;
line-height: 1.6;
}

.in_box1 ul li a:hover h2{
  color: #002FAB;
}

.in_box1 ul li a p{
  font-size: 16px;
   white-space: nowrap; /* 禁止文本换行 */
  overflow: hidden; /* 隐藏溢出内容 */
  text-overflow: ellipsis; /* 溢出部分显示省略号 */
  color: #666;
}

.in_box1 ul li a span{
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  font-size: 20px;
}

.in_box1 ul li a:hover span{
  background: #002FAB;
  border: 1px solid #002FAB;
  color: #fff;
}

.in_box2{
  background: url(../images/in_box2_bj.png) no-repeat;
  background-size: cover;
  padding: 80px 0px;
}

.in_box2 .bt{
  text-align: center;
  font-size: 20px;
  color: #fff;
  padding-bottom: 30px;
}

.in_box2 .bt b{
  font-size: 28px;
}

.in_box2 ul{
  padding: 40px 0px;
  display: flex;
  justify-content: space-between;
}

.in_box2 ul li{
  width: calc(50% - 12px);
  box-sizing: border-box;
border-radius: 8px;
backdrop-filter: blur(3px);
border: 1px solid #fff;
background: linear-gradient(180.00deg, rgba(255, 255, 255, 0.2) 0%,rgba(255, 255, 255, 0) 100%);
padding: 5%;
color: #fff;
text-align: center;
}

.in_box2 ul li h2{
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
}

.in_box2 ul li p{
  font-size: 16px;
  line-height: 1.6;
}

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

.in_box2 .nr p{
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.in_box2 .nr span a{
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 30px;
}

.in_box2 .nr span a i{
  margin-left: 5px;
}

.in_box2 .nr span a:hover{
  background: #fff;
  color: #002FAB;
}

.in_box3{
  padding: 80px 0px;
  overflow: hidden;
}

.in_box3 .bt p{
  font-size: 20px;
}

.in_box3 .bt h2{
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.in_box3 .nr{
  display: flex;
  align-items: center;
}

.in_box3 .nr .left{
  width: 60%;
}

.in_box3 .nr .left img{
  width: 100%;
  height: auto;
}

.in_box3 .nr .right ul li{
  display: flex;
  align-items: center;
  margin: 16% 0px;
  margin-left: -20%;
}

.in_box3 .nr .right ul li:nth-child(2){
  margin-left: -10%;
}

.in_box3 .nr .right ul li i{
  box-shadow: 0px 0px 30px 0px rgba(190, 183, 201, 0.25);
background: rgba(255, 255, 255, 1);
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
}

.in_box3 .nr .right ul li i img{
  width: 50%;
  height: auto;
}

.in_box3 .nr .right ul li h2{
font-size: 20px;
color: #002FAB;
font-weight: bold;
}


.in_box3 .nr .right ul li h2 p{
  font-size: 16px;
  font-weight: normal;
  color: #666;
  padding-top: 10px;
}

.in_box4{
  padding: 80px 0px;
  background: url(../images/in_box4_bj.png) no-repeat center bottom #EAEAEA;
  background-size: cover;
  padding-bottom: 200px;
}

.in_box4 .bt{
  text-align: center;
  font-size: 28px;
  color: #333;
  font-weight: bold;
  padding-bottom: 40px;
}

.in_box4 .nr{
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 5%;
  overflow: hidden;
}

.in_box4 .nr .left{
  width: 48%;
}

.in_box4 .nr .xbt{
font-size: 20px;
color: #333;
padding-bottom: 10px;
}

.in_box4 .nr .left ul{
padding: 20px 0px;
}

.in_box4 .nr .left ul li{
  padding-bottom: 20px;
  display: flex;
}

.in_box4 .nr .left ul li i{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #002FAB;
  border: 1px solid #002FAB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 10px;
}

.in_box4 .nr .left ul li h2{
  width: calc(100% - 60px);
  font-size: 18px;
  color: #333;
}

.in_box4 .nr .left ul li h2 p{
  font-size: 16px;
  color: #666;
}

.in_box4 .nr .left .guanzhu{
  display: flex;
}

.in_box4 .nr .left .guanzhu a{
  margin-right: 10px;
}

.in_box4 .nr .left .guanzhu a i{
width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: #002FAB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.in_box4 .nr .right{
  width: 48%;
}

.in_box4 .nr .right ul li{
  padding-bottom: 20px;
}

.in_box4 .nr .right ul li .text{
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #999;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0px 10px;
}

.in_box4 .nr .right ul li .text1{
  width: 100%;
  height: 100px;
  border-radius: 8px;
  border: 1px solid #999;
  font-size: 16px;
  box-sizing: border-box;
  padding:10px;
}

.in_box4 .nr .right ul li .btn{
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 0px;
  color: #fff;
  background: #002FAB;
  font-size: 16px;
}

.bottom{
  position: relative;
  background: #002FAB;
}

.bottom .container{
  position: relative;
}

.bottom1{
background: #fff;
box-sizing: border-box;
padding: 2% 3%;
position: absolute;
width: 90%;
top: -150px;
}

.bottom1_1{
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.bottom1_1 a{
flex: 1;
font-size: 14px;
text-align: center;
}

.bottom1_2{
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom1_2 .left h2{
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-bottom: 5px;
}

.bottom1_2 .left h2 i{
  color: #002FAB;
  margin-right: 10px;
}

.bottom1_2 .right img{
    max-height: 110px;
    width: auto;
}

.bottom2{
  padding: 10px 0px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding-top: 100px;
}

.bottom2 a{
  color: #fff;
}


.ny_banner{
  height: 400px;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ny_banner h2{
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}

.ny_banner p{
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding-top: 15px;
}

.about_box{
  padding: 80px 0px;
  position: relative;
}

.about_box::after{
  width: 22%;
  height: 100%;
  content: '';
  background: #002FAB;
  position: absolute;
  right: 0px;
  top: 0px;
}

.about_box .container{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.about_box .left{
  width: 52%;
}


.about_box .left .bt h2{
  font-size: 30px;
  color: #333;
}

.about_box .left .bt b{
  background: #002FAB;
  width: 40px;
  height: 4px;
  display: inline-block;
}

.about_box .left .nr{
  padding: 40px 0px;
}

.about_box .left .nr p{
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 5px;
}

.about_box .left ul{
  display: flex;
}

.about_box .left ul li{
  width: 180px;
}

.about_box .left ul li h2 {
  color: #002FAB;
  font-size: 20px;
  font-weight: bold;
}

.about_box .left ul li h2 b {
  font-size: 35px;
  font-weight: bold;
}

.about_box .left ul li p {
  font-size: 14px;
  color: #333;
  padding-top: 3px;
}

.about_box .right{
  width: 40%;
}

.about_box .right img{
  width: 100%;
  height: auto;
}

.about_box1{
  background: url(../images/about_box1_pic.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0px;
  position: relative;
}

.about_box1::after{
  width: 78%;
  height: 100%;
  content: '';
  background: rgba(0, 47, 171, 0.6);
  position: absolute;
  left: 0px;
  top: 0px;
}

.about_box1 .container{
  position: relative;
  z-index: 2;
}

.about_box1 .nr{
  width: 70%;
}

.about_box1 h2{
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 40px;
}

.about_box1 p{
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  color: #fff;
}

.about_box2{
  padding: 80px 0px;
}

.about_box2 .bt{
  text-align: center;
  font-size: 30px;
  color: #333;
  padding-bottom: 40px;
}

.about_box2_qh {
  position: relative;
  max-width: 1000px;
  margin: 0px auto;
  box-sizing: border-box;
  padding: 0px 80px;
  padding-bottom: 40px;
}

.about_box2_qh .swiper-slide{
  border-radius: 20px;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.about_box2_qh .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_box2_qh .swiper-slide h2{
  box-sizing: border-box;
border-radius: 16px;
backdrop-filter: blur(6px);
background: rgba(255, 255, 255, 0.6);
position: absolute;
width: 90%;
left: 5%;
bottom: 5%;
box-sizing: border-box;
padding: 15px;
text-align: center;
font-size: 16px;
color: #333;
}

.about_box2_qh .swiper-button-next,
.about_box2_qh .swiper-button-prev {
  width: 50px;
  height: 50px;
  color: #fff;
  background: #002FAB;
  border-radius: 50%;
}

.about_box2_qh .swiper-button-next::after,
.about_box2_qh .swiper-button-prev::after {
  font-size: 20px;
}

.about_box2_qh .swiper-pagination{
  bottom: 0px;
  width: 100%;
  left: 0px;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.about_box2_qh .swiper-pagination h2{
  color: #002FAB;
  font-size: 24px;
  font-weight: bold;
}


.about_box2_qh .swiper-pagination b{
  padding: 0px 5px;
}

.about_box3{
  background: url(../images/about_box3_bj.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0px;
}

.about_box3 .bt{
  font-size:30px;
  color: #fff;
  padding-bottom: 40px;
}

.about_box3 ul{
  display: flex;
}

.about_box3 ul li h2{
  color: #fff;
  font-size: 20px;
  padding-bottom: 10px;
}

.about_box3 ul li p{
  font-size: 14px;
  color: #fff;
}

.about_box3 ul li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_box3 ul li div{
  box-sizing: border-box;
  padding: 7%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_box3 ul li:nth-child(1){
  width: 20%;
}

.about_box3 ul li:nth-child(2){
  width: 30%;
}

.about_box3 ul li:nth-child(3){
  width: 30%;
}

.about_box3 ul li:nth-child(4){
  width: 20%;
}

.about_box3 ul.two li:nth-child(3){
  width: 50%;
}

.about_box4{
  padding: 80px 0px;
}

.about_box4 .bt{
  font-size: 30px;
  text-align: center;
  padding-bottom: 40px;
  color: #333;
}

.about_box4_nr{
  padding-bottom: 30px;
}

.about_box4_nr .swiper-slide img{
  width: 100%;
  aspect-ratio: 10/9;
  object-fit: cover;
}

.about_box4_nr .swiper-slide h2{
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 0px;
  color: #333;
}

.about_box4_nr .swiper-slide:hover h2{
  color: #002FAB;
}

.about_box5{
  background: #fafafa;
  height: 200px;
}

.brand_box{
  background: #fff;
  padding: 80px 0px;
}

.brand_box ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.brand_box ul li{
margin:10px 10px;
width: calc(25% - 20px);
box-sizing: border-box;
box-shadow: 0px 0px 10px #ddd;
aspect-ratio: 33/18;
display: flex;
align-items: center;
justify-content: center;
}

.brand_box ul li:hover{
  border-bottom: 5px solid #002FAB;
}

.brand_box ul li img{
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.brand_box .nr{
  padding-top: 40px;
}

.brand_box .nr p{
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.brand_box .nr span{
  display: block;
  text-align: center;
  padding-top: 30px;
}

.brand_box .nr span a{
  display: inline-block;
  background: #002FAB;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
}

.brand_box .nr span a i{
  margin-left: 5px;
}

.brand_box1{
 background: linear-gradient(to bottom, #fff, #fafafa);
}

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

.brand_box1 img{
  width: auto;
  max-width: 100%;
}

.kernel_box{
  padding: 80px 0px;
}

.kernel_box .bt{
  text-align: center;
  font-size: 24px;
  color: #333;
  padding-bottom: 40px;
}

.kernel_box ul li{
  height: 300px;
  background-position: center center;
  background-size: cover;
  margin-bottom: 40px;
  transition: 0.3s all 0s ease;
}

.kernel_box ul li:hover{
  transform: translate(0 , -30px);
  transition: 0.3s all 0s ease;
}

.kernel_box ul li a{
  width: 100%;
  height: 100%;
  display: block;
 background: linear-gradient(to right, rgba(0, 47, 171, 1), rgba(0, 47, 171, 0));
 color: #fff;
 box-sizing: border-box;
 padding: 5%;
}

.kernel_box ul li a h2{
  font-size: 22px;
  padding-bottom: 20px;
max-width: 880px;  
}

.kernel_box ul li a p{
  font-size: 14px;
  line-height: 1.6;
  max-width: 880px;
}

.ny_lj{
  box-shadow: 0px 10px 10px #ddd;
background: rgba(255, 255, 255, 1);
}

.ny_lj .container{
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #888;
}

.ny_lj .container b{
  font-weight: normal;
  color: #333;
}

.ny_lj .container a{
  color: #888;
}

.ny_lj .container em{
  padding: 0px 5px;
}

.ny_lj .container span{
  color: #002FAB;
}

.news_detail{
  background: #fafafa;
  padding: 40px 0px;
}

.news_detail .bt{
  padding-bottom: 40px;
}

.news_detail .bt h2{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  padding-bottom: 10px;
}

.news_detail .bt h3{
  text-align: center;
  font-size: 14px;
}

.news_detail .nr p{
  font-size: 16px;
  line-height: 1.6;
  display: block;
  padding-bottom: 20px;
}

.news_detail .nr img{
  width: auto;
  height: auto;
  max-width: 100%;
}

.news_detail .nr1 h2{
  font-size: 24px;
  line-height: 1.6;
  display: block;
  padding: 20px 0px;
  padding-bottom: 10px;
}

.news_detail .nr1 p{
  font-size: 16px;
  line-height: 1.6;
  display: block;
}

.honor_box{
  padding: 60px 0px;
}

.honor_box .bt{
  border-bottom: 1px solid #ddd;
  font-size: 30px;
  color: #333;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.honor_box .nr{
  display: flex;
  justify-content: space-between;
}

.honor_box .left{
  width: 45%;
}

.honor_box .left h2{
  font-size: 22px;
  color: #333;
  padding-bottom: 10px;
}

.honor_box .left h3{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

.honor_box .left h3 p{
  font-size: 14px;
  color: #333;
  padding: 5px 0px;
  display: block;
  width: 50%;
  box-sizing: border-box;
  padding-right: 10px;
}

.honor_box .right{
  width: 50%;
}

.honor_box .right ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.honor_box .right ul li{
  width: calc(25% - 20px);
  margin: 0px 10px;
  margin-bottom: 20px;
}

.honor_box .right ul li img{
  width: 100%;
  aspect-ratio: 166/118;
  object-fit: cover;
}

.ny_nav{
box-shadow: 0px 10px 10px #eee;
background: rgba(255, 255, 255, 1);
position: relative;
}

.ny_nav .container{
  display: flex;
  color: #888;
}

.ny_nav a{
  width: 100px;
  margin: 0px 40px;
  line-height: 100px;
  border-bottom: 3px solid #fff;
  font-size: 18px;
  text-align: center;
}

.ny_nav a.on{
  color: #002FAB;
  border-bottom: 3px solid #002FAB;
}

.news_box{
  padding-top: 60px;
  background: url(../images/news_bj.png) no-repeat right top 10%;
  background-size: 25%;
}

.news_box .bt{
  font-size: 28px;
  color: #333;
  padding-bottom: 40px;
}

.news_box .nr{
  display: flex;
  justify-content: space-between;
}

.news_box .nr .left{
  width: 45%;
}

.news_box .nr .left a{
  overflow: hidden;
  display: block;
}

.news_box .nr .left a img{
  width: 100%;
  height: auto;
  transition: 0.3s all 0s ease;
}

.news_box .nr .left a:hover img{
  transform: scale(1.05);
  transition: 0.3s all 0s ease;
}

.news_box .nr .right{
  width: 50%;
}

.news_box .nr .right a{
  display: block;
  padding: 10%;
  box-sizing: border-box;
}

.news_box .nr .right a h3{
  font-size: 42px;
  line-height: 1;
  font-weight: bold;
}

.news_box .nr .right a h3 b{
  font-weight: normal;
  font-size: 20px;
  display: block;
}

.news_box .nr .right a h2{
font-size: 22px;
color: #333;
font-weight: bold;
display: -webkit-box;        /* 启用弹性盒模型 */
-webkit-box-orient: vertical; /* 设置垂直排列 */
-webkit-line-clamp: 2;       /* 限制显示行数 */
overflow: hidden;            /* 隐藏溢出内容 */
text-overflow: ellipsis;     /* 显示省略号 */
margin: 20px 0px;
line-height: 1.6;
}

.news_box .nr .right a:hover h2{
  color: #002FAB;
}

.news_box .nr .right a p{
  font-size: 16px;
  line-height: 1.6;
  display: -webkit-box;        /* 启用弹性盒模型 */
-webkit-box-orient: vertical; /* 设置垂直排列 */
-webkit-line-clamp: 3;       /* 限制显示行数 */
overflow: hidden;            /* 隐藏溢出内容 */
text-overflow: ellipsis;     /* 显示省略号 */
  color: #666;
}

.news_box .nr .right a span{
  border: 1px solid #333;
  border-radius: 25px;
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  padding: 10px 30px;
}

.news_box .nr .right a:hover span{
  background: #002FAB;
  border: 1px solid #002FAB;
  color: #fff;
}

.fanye{
  text-align: center;
}

.join_box{
  padding: 80px 0px;
}

.join_box .bt{
  text-align: center;
  font-size: 28px;
  color: #333;
  padding-bottom: 40px;
}

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

.join_box .nr img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.join_box1{
  background: url(../images/join_bj.png) no-repeat center bottom;
  background-size: cover;
  padding: 80px 0px;
  padding-bottom: 200px;
}

.join_box1 .bt{
  text-align: center;
  font-size: 28px;
  color: #333;
  padding-bottom: 40px;
}

.join_box1 .nr{
  background: #fff;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 5%;
}

.join_box1 .nr ul{
  display: flex;
  flex-wrap: wrap;
}

.join_box1 .nr ul li{
  width: 33.3%;
  box-sizing: border-box;
  padding: 0px 15px;
  margin-bottom: 25px;
}

.join_box1 .nr ul li h2{
  font-size: 16px;
  color: #333;
  font-weight: bold;
  padding-bottom: 6px;
}

.join_box1 .nr ul li h2 i{
  color: #FF2E2E;
  padding-right: 3px;
}

.join_box1 .nr ul li h3 .text{
  width: 100%;
  height: 50px;
  border: 1px solid #333;
  border-radius: 15px;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0px 10px;
}

.join_box1 .nr ul li h3 label{
  padding-right: 10px;
  display: inline-block;
}

.join_box1 .nr ul li h3 label input{
  margin-right: 3px;
}

.join_box1 .nr ul li h3 span{
  position: relative;
  margin-right: 10px;
}

.join_box1 .nr ul li h3 span .text1{
  width: 100px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 15px;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0px 10px;
}

.join_box1 .nr ul li h3 span em{
  position: absolute;
  right: 10px;
  top: 0px;
}

.join_box1 .nr .tj{
  padding-top: 20px;
  text-align: center;
}

.join_box1 .nr .tj .btn{
  width: 200px;
  height: 50px;
  background: #002FAB;
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  border: 0px;
}

.join_box1 .nr .tj p{
  padding-top: 10px;
}

.hr{
  background: url(../images/HR_bj.png) no-repeat center bottom #fff;
  padding: 80px 0px;
  padding-bottom: 200px;
}

.hr ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.hr ul li{
  width: calc(33.3% - 20px);
  margin: 0px 10px;
  margin-bottom: 30px;
  aspect-ratio: 45/20;
  transition: 0.3s all 0s ease;
}

.hr ul li a{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 16px;
box-shadow: 0px 10px 20px 0px rgba(204, 204, 204, 0.5);
background: rgba(242, 242, 242, 1);
}

.hr ul li a h2{
  font-size: 20px;
  color: #333;
  padding-bottom: 6px;
}

.hr ul li a p{
  font-size: 14px;
}

.hr ul li:hover{
  transform: translate(0 , -20px);
  transition: 0.3s all 0s ease;
}

.duty_box{
  padding: 80px 0px;
}

.duty_box .bt{
  font-size: 28px;
  color: #333;
  font-weight: bold;
  text-align: center;
  padding-bottom: 40px;
}

.duty_box .nr p{
  font-size: 16px;
  line-height: 1.6;
  display: block;
  color: #333;
  padding-bottom: 10px;
}

.duty_box .nr img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.duty_box1{
  padding: 80px 0px;
  padding-bottom: 400px;
  background: url(../images/duty_bj.png) no-repeat center center;
  background-size: cover;
}

.duty_box1 .bt{
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding-bottom: 40px;
}

.duty_box1 .nr p{
  font-size: 16px;
  line-height: 1.6;
  display: block;
  color: #fff;
  padding-bottom: 10px;
}

.in_news{
  background: #002FAB;
}

.in_news .container{
  height: 110px;
  display: flex;
  align-items: center;
}

.in_news .container .left{
  width: 150px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

.in_news .container .right{
  width: calc(100% - 150px);
}

.in_news .container .right .tempWrap{
  width: 100% !important;
}

.in_news .container .right ul{
  display: flex;
}

.in_news .container .right ul li{
  max-width: 500px;
 width: auto !important;
 margin-right:70px;
}

.in_news .container .right ul li a{
  color: #fff;
}

.in_news .container .right ul li a h3{
  font-size: 16px;
  padding-bottom: 6px;
}

.in_news .container .right ul li a h2{
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}