@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/HarmonyOS_Sans_Regular.ttf");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/HarmonyOS_Sans_Medium.ttf");
  font-family: "title";
}
@font-face {
  src: url("../fonts/impact.ttf");
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "myfont", sans-serif;
  box-sizing: border-box;
}
@font-face {
  font-family: "iconfont";
  src: url("../icons/iconfont.eot");
  src: url("../icons/iconfont.eot?#iefix") format("embedded-opentype"),
    url("../icons/iconfont.woff") format("woff"),
    url("../icons/iconfont.ttf") format("truetype"),
    url("../icons/iconfont.svg#iconfont") format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  list-style: none;
}
img {
  width: 100%;
  display: block;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
dir,
section {
  margin: 0;
  padding: 0;
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
input,
button {
  background: none;
  border: none;
  box-shadow: none;
}
/*index*/
.w_all {
  width: 100%;
  position: relative;
  padding: 0 10%;
}
.w_all2 {
  width: 90%;
  margin: 0 auto;
}
.w_all3 {
  width: 100%;
  margin: auto;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.w100p10 {
  width: 100%;
  position: relative;
  padding: 5% 10%;
}
.pt5 {
  padding-top: 5%;
  padding-bottom: 5%;
}
.font24 p {
  font-size: 2.4rem;
}

html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
  --height: 65px;
  --height2: 80px;
}

header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
  background-color: transparent;
  padding: 0 10%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  /* box-shadow: 0 0 20px 1px #999999; */
}
header.active {
  background-color: #fff;
  box-shadow: 0 0 20px 1px #999999;
}
header .nav_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: var(--height2);
  align-items: center;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header.active .nav_box {
  height: var(--height);
}
header .nav_box .logo img {
  height: 28px;
  width: auto;
}
header .nav_box .logo img:last-of-type {
  display: none;
}
header.active .nav_box .logo img:last-of-type {
  display: block;
}
header.active .nav_box .logo img:first-of-type {
  display: none;
}
header .nav_box .nav {
  display: flex;
  align-items: center;
}
header .nav_box .nav ul {
  display: flex;
}
header * {
  position: relative;
}
header .nav *{
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header .other *{
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

header .nav_box .nav ul li {
  margin: 0 24px;
  position: relative;
  height: var(--height);
  line-height: var(--height);
}
header .nav_box .nav ul li a {
  font-size: 1.8rem;
  color: #fff;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header.active .nav_box .nav ul li a {
  color: #111;
}
header .nav_box .nav ul li > a {
  font-weight: 600;
}
header .nav_box .nav ul li:hover > a {
  color: #f7941d;
}
header.active .nav_box .nav ul li:hover > a {
  color: #073043;
}
header .nav_box .other {
  display: flex;
  align-items: center;
}
header .nav_box .mobileNav{
  display: none;
}
header .nav_box .other .search .iconF {
  cursor: pointer;
}
header .nav_box .other .search .iconF img {
  width: 25px;
  height: 25px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
header.active .nav_box .other .search .iconF img {
  -webkit-filter: none;
  filter: none;
}
header .nav_btn{
  display: none;
}
header .nav_box .nav ul li .s_menu {
  position: fixed;
  left: 0;
  top: var(--height2);
  height: 60px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.35);
  transform: scaleY(0);
  transform-origin: 50% 0;
  padding: 0 10%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header.active .nav_box .nav ul li .s_menu{
  top: var(--height);
  background-color: #0e2a5c;
}
header .nav_box .nav ul dl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0 5%;
  padding: 0 10%;
}
header .nav_box .nav ul dl a {
  color: #fff !important;
  font-size: 1.8rem;
}
header .nav_box .nav ul li:hover .s_menu {
  transform: scaleY(1);
}
header .nav_box .other .searchInput {
  position: fixed;
  left: 0;
  top: var(--height);
  height: 200px;
  width: 100%;
  background-color: #e9e9e9;
  transform: scaleY(0);
  transform-origin: 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
}
header .nav_box .other .searchInput form{
  display: flex;
  align-items: center;
  justify-content: center;
}
header .nav_box .other .searchInput input {
  width: 500px;
  height: 40px;
  background: none;
  border: none;
  border-bottom: 1px solid #666666;
  color: #333333;
  text-indent: 1rem;
  font-size: 1.6rem;
}
header .nav_box .other .searchInput button {
  display: block;
  width: 28px;
  height: 28px;
  margin-left: 15px;
}
header .nav_box .other .searchInput.open {
  transform: scaleY(1);
}
header .nav_box .other .searchInput .close {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
header .nav_box .other .language {
  margin-right: 15px;
  font-size: 1.4rem;
  color: #666;
  font-weight: bold;
  display: flex;
  align-items: center;
}
header .nav_box .other .language a {
  font-size: 1.8rem;
  margin: 0 6px;
  cursor: pointer;
  color: #666;
}
header .nav_box .other .language a.active {
  color: #fff;
}
header .nav_box .other .language a:hover {
  color: #fff;
}
header.active .nav_box .other .language a.active {
  color: #073043;
}
header.active .nav_box .other .language a:hover {
  color: #073043;
}

/* 公共 Strat */
.more {
  border: 2px solid #f7941d;
  border-radius: 30px;
  position: relative;
  width: 160px;
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.more::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #f7941d;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  z-index: -1;
}
.more a {
  position: relative;
  display: block;
  padding: 13px 24px;
}
.more span {
  font-size: 1.5rem;
  color: #f7941d;
  display: flex;
  justify-content: space-between;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  align-items: center;
}
.more span i {
  display: block;
  width: 20px;
  height: 20px;
}
.more:hover::before {
  width: 100%;
}
.more:hover span {
  color: #fff;
}
.more:hover span img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.more1 {
  width: 160px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 2px solid #0e2a5c;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.more1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #0e2a5c;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  z-index: -1;
}
.more1 span {
  display: block;
  font-size: 1.6rem;
  color: #0e2a5c;
}
.more1:hover::before {
  width: 100%;
}
.more1:hover span {
  color: #fff;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 5%;
}
.title em {
  display: block;
  width: 50px;
  height: 3px;
  background-color: #f7941d;
  margin: 0 17px;
}
.title span {
  font-size: 1.8rem;
  line-height: 2;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title h2 {
  font-size: 4rem;
  color: #000;
  font-family: "title";
  margin-top: 10px;
}
/* 公共 End*/

/* 首页banner Strat */
.banner {
  position: relative;
  width: 100%;
  /* height: calc(100vh - var(--height));
  margin-top: var(--height); */
  height: 100vh;
  margin-top: 0;
  z-index: 10;
}
.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.banner .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper .imgBox {
  width: 100%;
  height: 100%;
}
.banner .swiper .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper .txtBox {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.banner .swiper .txtBox h2 {
  font-size: 6rem;
  color: #fff;
  font-weight: bold;
}
.banner .swiper .txtBox h3 {
  font-size: 4rem;
  color: #fff;
}
.banner .swiper .txtBox em {
  width: 110px;
  height: 6px;
  background-color: #fff;
  display: block;
  margin: 20px 0 80px 0;
}
.banner .swiper-pagination{
  bottom: 32px !important;
}
.banner .swiper-pagination-bullet {
  background: #fff;
}
.banner .swiper-pagination-bullet-active{
  background: #fff;
}
.banner .more {
  border: 2px solid #fff;
}
.banner .more a span {
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.banner .more a span img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.more:hover {
  border-color: #f7941d;
}
/* 首页banner End*/

/* 首页---产品 Strat */
.home {
  width: 100%;
  position: relative;
  background: #fff;
}
.home .i_part1 {
  position: relative;
  width: 100%;
}
.home .i_part1::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-image: url("../images/sypro.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.home .i_part1 .content {
  position: relative;
  width: 100%;
  /* padding-bottom: 0 !important; */
}
.home .i_part1 .box {
  position: relative;
}
.home .i_part1 .box > .swiper {
  position: relative;
  padding-top: 80px;
}
.home .i_part1 .box .items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
/* 
  display: flex;
  align-items: stretch; */
}
.home .i_part1 .box .items .item {
  width: 100%;
  background-color: #f4f4f4;
  transition: all .4s;
  -webkit-transition: all .4s;
}
.home .i_part1 .box .items .item a{
  display: block;
  padding: 28px 32px;
}
.home .i_part1 .box .items .item .imgBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 38px;
  padding: 33% 0;
}
.home .i_part1 .box .items .item .imgBox img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* box-shadow: 12px 12px 10px 0px rgba(0, 0, 0, 0.45); */
}
.home .i_part1 .box .items .item h2 {
  font-size: 2.2rem;
  text-align: center;
  color: #111;
  margin-bottom: 15px;
  transition: all .4s;
  -webkit-transition: all .4s;
}
.home .i_part1 .box .items .item p {
  font-size: 1.6rem;
  color: #888;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home .i_part1 .box .items .item:hover{
  transform: translateY(-10px);
}
.home .i_part1 .box .items .item:hover h2{
  color: #0e2a5c;
}
.home .i_part1 .swiper-pagination-horizontal {
  width: auto;
  position: absolute;
  right: 0%;
  left: 0;
  z-index: 99;
  bottom: auto;
  top: 0;
  display: flex;
  padding-bottom: 15px;
  align-items: center;
  justify-content: center;
}
.home .i_part1 .content .swiper-pagination-bullet {
  width: auto !important;
  height: auto !important;
  background: none !important;
  font-size: 2.4rem;
  border-radius: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  position: relative;
  color: #111;
  display: block !important;
  opacity: 1 !important;
  padding: 0 54px;
}
.home .i_part1 .content .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 2px;
  height: 80%;
  background-color: #000;
}
.home .i_part1 .content .swiper-pagination-bullet:last-of-type:before {
  display: none;
}
.home .i_part1 .content .swiper-pagination-bullet-active {
  color: #f7941d;
}
.home .i_part1 .content .swiper-pagination-bullet:hover {
  color: #f7941d;
}

.more2 {
  margin-top: 42px;
}
.more2 span {
  font-size: 1.6rem;
  color: #0e2a5c;
}

/* 首页---产品 End*/

/* 首页---服务 Strat */
.home .i_part2 {
  background-color: #f4f4f4;
}
.home .i_part2 .content {
  width: 100%;
  position: relative;
}
.home .i_part2 .box {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 25px;
}
.home .i_part2 .box .imgBox {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.home .i_part2 .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.home .i_part2 .box .item {
  position: relative;
  background-color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}
.home .i_part2 .box .item * {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.home .i_part2 .box .item a {
  position: relative;
}
.home .i_part2 .box .txtBox {
  width: 100%;
  padding: 8% 5%;
}
.home .i_part2 .box .txtBox h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}
.home .i_part2 .box .txtBox p {
  font-size: 1.6rem;
  color: #666;
  text-align: center;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .i_part2 .box .item:hover {
  background-color: #0e2a5c;
}
.home .i_part2 .box .item:hover img {
  transform: scale(1.15);
}
.home .i_part2 .box .item:hover h2 {
  color: #f7941d;
}
.home .i_part2 .box .item:hover p {
  color: #fff;
}
/* 首页---服务 End*/

/* 首页---关于 Strat */
.home .i_part3 {
  background-image: url("../images/syabt.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home .i_part3 .content {
  width: 100%;
  position: relative;
}
.home .i_part3 .aa {
  width: 50%;
}
.home .i_part3 .aa img {
  height: 100%;
  object-fit: cover;
}
.home .i_part3 .bb {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home .i_part3 .bb .title {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 3%;
}
.home .i_part3 .bb .title em:first-of-type {
  margin-left: 0;
}
.home .i_part3 .bb .title h2 {
  font-size: 3rem;
}
.home .i_part3 .bb .itro p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.75;
}
.home .i_part3 .bb .more {
  margin-top: 5%;
}
/* 首页---关于 End*/

/* 首页---新闻 Strat */
.home .i_part4 {
  background-color: #f9f9f9;
}
.home .i_part4 .content {
  width: 100%;
  position: relative;
}
.home .i_part4 .content .box {
  width: 100%;
  position: relative;
}
.home .i_part4 .content .box * {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.home .i_part4 .aa {
  width: 65%;
  display: flex;
  justify-content: space-between;
}
.home .i_part4 .aa .item {
  width: 48%;
}
.home .i_part4 .item {
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.home .i_part4  .item .imgBox {
  /* height: 320px; */
  padding: 33% 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home .i_part4 .item .imgBox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .i_part4 .aa .item .txtBox {
  padding: 6% 6% 12%;
}
.home .i_part4 .item .time {
  font-size: 1.6rem;
  color: #999;
  margin-bottom: 15px;
}
.home .i_part4 .item .tit {
  display: flex;
  justify-content: space-between;
}
.home .i_part4 .item .tit h2 {
  width: calc(100% - 64px);
  font-size: 2rem;
  color: #333;
  font-weight: 400;
  height: 6.4rem;
  line-height: 3.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home .i_part4 .item .tit i {
  display: block;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .i_part4 .item .tit i img {
  width: 18px;
  height: 18px;
}
.home .i_part4 .bb {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.home .i_part4 .bb .item {
  padding: 8% 6%;
}
.home .i_part4 .aa .item:hover img {
  transform: scale(1.15);
}
.home .i_part4 .item:hover h2 {
  color: #f7941d;
}
.home .i_part4 .item:hover {
  background-color: #0e2a5c;
}
.home .i_part4 .item:hover .time {
  color: #fff;
}
.home .i_part4 .item:hover i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
/* 首页---新闻 End*/

/* 合作伙伴 Strat */
.i_part5 {
  padding-bottom: 0 !important;
}
.i_part5 .content {
  width: 100%;
  position: relative;
}
.i_part5 .content .box {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.i_part5 .content .box .item1,
.i_part5 .content .box .item2 {
  width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.i_part5 .content .box ul {
  width: 100%;
  display: flex;
  position: relative;
}
.i_part5 .content .box ul li {
  list-style: none;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  margin: 15px 20px 15px 0;
}
.i_part5 .content .box ul li img {
  width: 280px;
  height: 150px;
  object-fit: cover;
  object-position: center;
}
/* 合作伙伴 End*/

/* 首页---商务合作 Strat */
.footer {
  width: 100%;
  background-color: #142448;
}
.footer.pad {
  padding-top: 0;
}
.footer .content {
  width: 100%;
  position: relative;
}
.footer .content .box {
  width: 100%;
  position: relative;
}
.footer .content .box .join {
  padding:  40px 10% 0;
  display: none;
}
.footer .box .aa {
  width: 45%;
}
.footer .box .aa span {
  font-size: 1.4rem;
  color: #6c7991;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .box .aa span i {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
.footer .box .aa span i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .box .aa h2 {
  font-size: 4rem;
  color: #fff;
  line-height: 1.5;
}
.footer .box .aa a,
.footer .box .aa p {
  display: block;
  font-size: 1.8rem;
  color: #fff;
}
.footer .box .aa .way {
  margin-top: 80px;
  padding-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .box .aa .way ul {
  display: -ms-grid;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 25px;
}
.footer .box .aa .way ul li {
  width: 100%;
  margin-right: 2%;
}
.footer .box .aa .way ul li:last-of-type{
  grid-column-start: span 2;
}
.footer .box .bb {
  width: 48%;
}
.footer .box .bb h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
}
.footer .box .bb form {
  width: 100%;
  position: relative;
  margin-top: 62px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer .box .bb form .table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.footer .box .bb form input {
  width: 47%;
  font-size: 1.6rem;
  color: #fff;
  height: 64px;
  line-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer .box .bb form input::-webkit-input-placeholder {
  color: #6c7991;
}
.footer .box .bb form textarea {
  width: 100%;
  height: 130px;
  font-size: 1.6rem;
  color: #fff;
  box-sizing: border-box;
  background: none;
  resize: none;
  border: none;
  background: none;
  padding: 0;
  display: block;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer .box .bb form textarea::-webkit-input-placeholder {
  color: #6c7991;
}
.footer .box .bb button {
  width: 160px;
  margin: 6% 0 0;
  color: #fff;
  float: none;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 4.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin-left: 5px;
  background: #f7941d;
}
.footer .box .bb button:hover {
  box-shadow: 0 0 10px 5px rgb(247 148 29 / 20%);
}
.footer .box .copyRight {
  display: flex;
  justify-content: center;
  gap: 0 32px;
  /* height: 80px;
  line-height: 80px; */
  margin-top: 0;
  padding: 28px 10%;
  /* background-color: #0e2a5c; */
}
.footer .box .copyRight span {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.5;
}
.footer.pad .box .copyRight {
  margin-top: 20px;
}
/* 首页---商务合作 End*/

/* 内页banner Strat */

.nyBanner {
  width: 100%;
  position: relative;
  /* margin-top: var(--height); */
  padding: 13% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nyBanner .txtBox h2 {
  font-size: 3.6rem;
  line-height: 2;
  color: #fff;
  text-align: left;
  padding: 0 10%;
}
.nyBanner .txtBox p{
  font-size: 1.8rem;
  color: #fff;
  padding: 0 10%;
  letter-spacing: 1px;
  font-weight: 600;
}

.nyMenu ul {
  display: flex;
  justify-content: center;
}
.nyMenu ul li {
  position: relative;
}
.nyMenu ul li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: #ddd;
}
.nyMenu ul li:first-of-type {
  padding-left: 0;
}
.nyMenu ul li:last-of-type {
  padding-right: 0;
}
.nyMenu ul li:last-of-type::after {
  display: none;
}
.nyMenu ul li span {
  padding: 20px 42px;
  display: block;
  font-size: 2.4rem;
  color: #0e2a5c;
  font-family: "title";
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-weight: 600;
}
.nyMenu ul li.active span {
  color: #f7941d;
}
.nyMenu ul li:hover span {
  color: #f7941d;
}
/* 内页banner End*/

/* 产品分类 Strat */
.proPage .nyMenu {
  padding: 0 10%;
}
.proPage {
  width: 100%;
  position: relative;
  background-color: #f4f4f4;
}
.proPage .nyMenu.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--height2);
  z-index: 999999;
  background-color: #fff;
  padding-top: 0 !important;
}
.proPage .nyMenu.active ul {
  height: 100%;
} 
.proPage .nyMenu.active li span {
  height: var(--height);
  line-height: var(--height2);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.proPage .box {
  width: 100%;
  position: relative;
  background-color: #fff;
}

.proPage .box .input {
  display: flex;
  height: 64px;
  line-height: 64px;
  align-items: center;
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  justify-content: space-between;
  padding-right: 20px;
}
.proPage .box .input .aa {
  width: 120px;
}
.proPage .box .input span {
  padding: 0 20px;
  font-size: 1.8rem;
  color: #000;
}
.proPage .box .input em {
  font-style: normal;
  font-size: 14px;
  color: #bebebe;
}
.proPage .box .input input {
  padding: 0 20px;
  display: block;
  height: 64px;
  line-height: 64px;
  width: calc(100% - 160px);
  font-size: 1.6rem;
  color: #000;
}
.proPage .box .input button {
  width: 32px;
  height: 32px;
  display: block;
  background-image: url("../images/searchIcon.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.proPage .box .top {
  padding: 48px 36px 36px;
  border-bottom: 1px solid #e5e5e5;
}

.proPage .box .bottom .aa {
  width: 18%;
}

.proPage .box .bottom .aa ul {
  display: flex;
  flex-direction: column;
}
.proPage .box .bottom .aa ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 36px;
}
.proPage .box .bottom .aa ul li a {
  font-size: 2rem;
  color: #333;
  padding-left: 20px;
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-weight: 600;
}
.proPage .box .bottom .aa ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #333;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.proPage .box .bottom .aa ul li.active a {
  color: #0e2a5c;
}
.proPage .box .bottom .aa ul li.active a::before {
  background-color: #0e2a5c;
}
.proPage .box .bottom .aa ul li:hover a {
  color: #0e2a5c;
}
.proPage .box .bottom .aa ul li:hover a::before {
  background-color: #0e2a5c;
}

.proPage .box .bottom .bb {
  width: 82%;
  border-left: 1px solid #e5e5e5;
  padding: 0 4% 4%;
}
.proPage .box .bottom ul {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: var(--height2);
}
.proPage .box .bottom ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}
.proPage .box .bottom ul li a {
  display: flex;
  align-items: center;
}
.proPage .box .bottom .imgBox {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  border: 1px solid #0e2a5c;
  overflow: hidden;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.proPage .box .bottom .imgBox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
.proPage .box .bottom .txtBox {
  width: calc(100% - 460px);
  margin: 0 50px;
}
.proPage .box .bottom .txtBox .more1{
  display: none;
}
.proPage .box .bottom .txtBox h2 {
  font-size: 1.8rem;
  color: #0e2a5c;
  font-weight: 600;
}
.proPage .box .bottom .txtBox .itro {
  margin-top: 25px;
}
.proPage .box .bottom .txtBox .itro p {
  font-size: 1.4rem;
  color: #666;
  margin: 8px 0;
}

.proPage .box .bottom ul li a:hover .imgBox {
  padding: 10px;
}
.proPage .box .bottom ul li a:hover .more1::before {
  width: 100%;
}
.proPage .box .bottom ul li a:hover .more1 span {
  color: #fff;
}
/* 产品分类 End*/

/* 产品详情页 Strat */
.pageNav {
  width: 100%;
  position: relative;
  padding: 29px 0 24px;
}
.pageNav ul {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #999;
}
.pageNav ul li {
  font-size: 1.4rem;
  color: #999;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 5px;
  overflow: hidden;
}
.pageNav ul li a {
  display: block;
  width: auto;
  max-width: 200px;
  font-size: 1.4rem;
  color: #999;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.prodPage {
  /* margin-top: var(--height); */
  background-color: #f4f4f4;
}
.prodPage .nyMenu span {
  cursor: pointer;
}
.prodPage .content {
  width: 100%;
  position: relative;
  padding-top: 45px;
}
.prodPage .top {
  align-items: center;
}
.prodPage .top .aa {
  width: 468px;
  height: 468px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #ccc;
}
.prodPage .top .aa img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
.prodPage .top .bb {
  width: calc(100% - 568px);
}
.prodPage .top .bb h2 {
  font-size: 2.4rem;
  color: #0e2a5c;
  font-weight: bold;
}
.prodPage .top .bb .sku {
  margin-top: 42px;
}
.prodPage .top .bb .sku {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  flex-wrap: wrap;
}
.prodPage .top .bb .sku p {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}
.prodPage .top .bb .sku p strong {
  font-size: 1.6rem;
  color: #000;
  margin-right: 15px;
  font-weight: 600;
}
.prodPage .top .bb .sku p {
  font-size: 1.6rem;
  color: #666;
  display: block;
  line-height: 1.75;
  /* white-space: nowrap; */
  /* overflow: hidden;
  text-overflow: ellipsis; */
}

.prodPage .top .bb .more1 {
  margin-top: 48px;
}
.prodPage .top .bb .more1 span {
  color: #fff;
}
.prodPage .top .bb .more1::before {
  width: 100%;
}
.prodPage .bottom {
  position: relative;
  width: 100%;
  margin-top: 80px;
  background-color: #fff;
  margin-bottom: 80px;
}
.prodPage .bottom .nyMenu {
  padding-top: 42px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding-top: 20px;
}
.prodPage .bottom .nyMenu.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--height2);
  z-index: 999999;
  background-color: #fff;
  padding-top: 0 !important;
}
.prodPage .bottom .nyMenu.active ul {
  height: 100%;
}
.prodPage .bottom .nyMenu.active li span {
  height: var(--height);
  line-height: var(--height2);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.prodPage .bottom .box {
  margin-top: 3%;
  width: 100%;
  position: relative;
}
.prodPage .bottom .box .item {
  display: none;
  width: 100%;
  position: relative;
}
.prodPage .bottom .box .item.active {
  display: block;
}
.prodPage .bottom .box .item img {
  width: 100%;
  height: auto;
}
.prodPage .bottom .box .item ul {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 72px 0;
}
.prodPage .bottom .box .item ul li h2 {
  font-size: 2.4rem;
  color: #000;
}
.prodPage .bottom .box .item ul li .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 36px;
  gap: 18px 0;
}
.prodPage .bottom .box .item ul li a {
  width: 48%;
  font-size: 1.8rem;
  color: #666;
  position: relative;
  display: block;
  padding: 32px 32px 24px 84px;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  z-index: 1;
}
.prodPage .bottom .box .item ul li a::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 52%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url("../images/downloadIcon.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.prodPage .bottom .box .item ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #0e2a5c;
  z-index: -1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.prodPage .bottom .box .item ul li a:hover {
  color: #fff;
}
.prodPage .bottom .box .item ul li a:hover::after {
  width: 100%;
}
.prodPage .bottom .box .item ul li a:hover::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.prodPage .table {
  width: 100%;
  margin-bottom: 5%;
}
.prodPage .table table {
  width: 100%;
  position: relative;
}
.prodPage .table table tr td {
  font-size: 1.8rem;
  color: #000;
  background-color: #f4f4f4;
  padding: 15px 48px;
}
/* 产品详情页 End*/

/* WIKI教程 Strat */
.wikiPage .content {
  margin-top: 36px;
}
.wikiPage .menuBox {
  width: 24%;
  padding-left: 36px;
}
.wikiPage .menuBox h2 {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wikiPage .menuBox h2::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 5px;
  background-image: url("../images/downIcon.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 12px;
  height: 12px;
}
.wikiPage .menuBox li {
  cursor: pointer;
}
.wikiPage .menuBox li.open h2 {
  color: #0e2a5c;
}
.wikiPage .menuBox li.open h2::before {
  background-image: url("../images/downIcon1.png");
}

.wikiPage .menuBox dd {
  display: none;
  margin: 24px 0;
}
.wikiPage .menuBox dl a {
  font-size: 1.6rem;
  color: #333;
  display: block;
  padding: 10px 24px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-weight: 600;
}
.wikiPage .menuBox li.open a.active {
  color: #0e2a5c;
}
.wikiPage .menuBox li a:hover {
  color: #0e2a5c;
}
.wikiPage .proBox {
  width: 76%;
  border-left: 1px solid #e5e5e5;
  padding: 0 4% 4%;
}
.wikiPage .proBox ul {
  display: -ms-grid;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 25px;
  align-items: stretch;
}
.wikiPage .proBox ul li {
  border-bottom: none !important;
}
.wikiPage .proBox ul li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wikiPage .proBox ul li .img {
  width: 100%;
  /* height: 390px; */
  height: 100%;
  padding: 10%;
  border-radius: 8px;
  border: 1px solid #0e2a5c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.wikiPage .proBox ul li .img img {
  height: auto;
  object-fit: cover;
}
.wikiPage .proBox ul li .txt {
  margin-top: 10px;
}
.wikiPage .proBox ul li .txt h3 {
  font-size: 2.2rem;
  color: #111;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.wikiPage .proBox ul li a:hover .img {
  padding: 7%;
}
.wikiPage .proBox ul li a:hover h3 {
  color: #0e2a5c;
}

/* WIKI教程 End*/

/* 新闻分类 Strat */
.newsPage .box {
  width: 100%;
  position: relative;
}
.newsPage .box ul {
  display: flex;
  flex-direction: column;
}
.newsPage .box ul * {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsPage .box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 0;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}
.newsPage .box ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0e2a5c;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.newsPage .box ul li a:hover::after {
  width: 100%;
}
.newsPage .box ul li a .imgBox {
  width: 28%;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
.newsPage .box ul li a .imgBox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPage .box ul li a .text {
  width: 65%;
}
.newsPage .box ul li a .text i {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.newsPage .box ul li a .text i img {
  width: 100%;
  height: 100%;
}
.newsPage .box ul li a .text h2 {
  font-size: 1.6rem;
  color: #666;
  display: flex;
  align-items: center;
}
.newsPage .box ul li a .text h3 {
  font-size: 2.4rem;
  color: #111;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 20px 0;
  overflow: hidden;
  margin-bottom: 8px;
}
.newsPage .box ul li a .text p {
  font-size: 1.4rem;
  line-height: 24px;
  height: 72px;
  margin: 20px 0;
  overflow: hidden;
  margin-top: 6px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsPage .box ul li a:hover h3 {
  color: #0e2a5c;
}
.newsPage .box ul li a:hover .imgBox img {
  transform: scale(1.05);
}
.newsPage .box ul li span {
  margin-top: 36px;
  display: block;
  width: 48px;
  height: 48px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: rotate(-15deg);
  transition: all 0.3s;
  -webkit-transition: all 0.4s;
}
.newsPage .box ul li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPage .box ul li a:hover span {
  transform: rotate(0);
  background-color: #0e2a5c;
}
.newsPage .box ul li a:hover span img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* 新闻分类 End*/

/* 新闻详情页 Strat */
.newsdPage {
  width: 100%;
  position: relative;
  background: #fff;
}
.newsdPage .box {
  width: 100%;
  position: relative;
  /* padding: 0 10%; */
}
.newsdPage .box h3 {
  font-size: 3.2rem;
  color: #111;
  font-weight: 700;
  text-align: center;
}
.newsdPage .box h4 {
  font-size: 1.6rem;
  color: #666;
  text-align: center;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.newsdPage .box h4 i {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.newsdPage .box h4 i img {
  width: 100%;
  height: 100%;
}
.newsdPage .box .text {
  margin-top: 5%;
}
.newsdPage .box .text p {
  font-size: 1.8rem;
  color: #111;
  font-weight: 300;
  text-indent: 2em;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.newsdPage .box .text p img {
  width: 50%;
  margin: 15px auto;
}
.newsdPage .box .text p strong {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.newsdPage .newGo {
  margin-top: 5%;
  padding: 42px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsdPage .newGo .list {
  display: flex;
  flex-direction: column;
  width: calc(100% - 165px);
}
.newsdPage .newGo .list a {
  display: block;
  margin: 10px 0;
}
.newsdPage .newGo span {
  font-size: 1.8rem;
  color: #111;
}
.newsdPage .newGo .list a:hover span {
  color: #0e2a5c;
}
.newsdPage .newGo .goBack {
  width: 135px;
}
.newsdPage .newGo .goBack a {
  width: 135px;
  font-size: 1.4rem;
  color: #fff;
  display: block;
  padding: 12px 24px;
  background-color: #0e2a5c;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.newsdPage .newGo .goBack a:hover {
  letter-spacing: 2px;
}
/* 新闻详情页 End*/

/* 关于我们页面 Strat */
.abtPage {
  width: 100%;
  position: relative;
  background-color: #fff;
}
.abtPage .companyItro {
  padding: 5% 15%;
  width: 100%;
  position: relative;
}
.abtPage .companyItro p {
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 1.75;
  color: #111;
  text-indent: 2em;
  margin-bottom: 15px;
}
.abtPage .companytData {
  width: 100%;
  position: relative;
  padding: 10% 10%;
  background-image: url("../images/abt1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.abtPage .companytData ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.abtPage .companytData ul li {
  width: 20%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.abtPage .companytData i {
  display: block;
  width: 72px;
  height: 72px;
}
.abtPage .companytData h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 24px;
}
.abtPage .companytData p {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
.abtPage .companyMsg {
  width: 100%;
  position: relative;
  padding: 5% 10%;
}
.abtPage .companyMsg .tit h2 {
  font-size: 3.2rem;
  color: #000;
  text-align: center;
  font-weight: 400;
}
.abtPage .companyMsg .tit h3 {
  font-size: 1.8rem;
  text-align: center;
  color: #111;
  font-weight: 400;
  margin-top: 10px;
}
.abtPage .companyMsg ul {
  display: flex;
  flex-wrap: wrap;
  gap: 42px 0;
}
.abtPage .companyMsg ul li {
  width: 33.3%;
  border-right: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  justify-content: flex-end;
}
.abtPage .companyMsg ul li:nth-of-type(3n) {
  border-right: none;
}
.abtPage .companyMsg ul li i {
  display: block;
  width: 54px;
  height: 54px;
}
.abtPage .companyMsg ul li h2 {
  font-size: 2rem;
  color: #111;
  font-weight: 400;
  margin: 20px 0;
  text-align: center;
}
.abtPage .companyMsg ul li h2 img {
  width: 32%;
  margin: 0 auto;
}
.abtPage .companyMsg ul li h3 {
  font-size: 1.8rem;
  color: #111;
  font-weight: 400;
  text-align: center;
  color: #073043;
}

.abtPage .companyHonor {
  padding: 5% 10% 0;
  width: 100%;
  position: relative;
}
.abtPage .companyHonor .swiper-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.abtPage .companyHonor .swiper-container .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.abtPage .companyHonor .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: column;
  height: auto;
}

.abtPage .companyHonor .swiper-slide .imgBox {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.abtPage .companyCul {
  width: 100%;
  position: relative;
  padding: 0 10% 5%;
}
.abtPage .companyCul .items ul {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
}
.abtPage .companyCul .items ul li {
  display: flex;
  justify-content: space-between;
  background-color: #f7f7f7;
  padding: 54px 32px 36px;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
}
.abtPage .companyCul .items ul li .txt{
  width: 100%;
}
.abtPage .companyCul .items ul li .tit{
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}
.abtPage .companyCul .items ul li img {
  width: 84px;
  height: 84px;
}
.abtPage .companyCul .items ul li h2 {
  font-size: 3.2rem;
  color: #fff;
  font-family: "title";
  font-weight: bolder;
  margin-bottom: 18px;
}
.abtPage .companyCul .items ul li span {
  display: block;
  position: absolute;
  left: 10px;
  top: 15px;
  font-size: 6rem;
  color: #A6BFE5;
  font-family: "num";
  opacity: 0.85;
  z-index: -1;
}
.abtPage .companyCul .items ul li h3 {
  font-size: 3.2rem;
  font-weight: bold;
  font-family: 'title';
  color: #fff;
  margin-bottom: 15px;
}
.abtPage .companyCul .items ul li p {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

/* 关于我们页面 End*/

/* 回到顶部 */
.topBack {
  position: fixed;
  right: 10px;
  bottom: 5%;
  width: 65px;
  height: 65px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #0e2a5c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9;
}
.topBack img {
  width: 18px;
}

/* 搜索 */
.proSearch .box .bottom .bb{
  width: 100%;
}
.wikiSearch .proBox{
  width: 100%;
}
.wikiSearch .proBox ul {
  grid-template-columns: repeat(5, 1fr);
}


/* 英文 */
html[lang="en"]  .title h2 {
  text-transform: capitalize;
}
html[lang="en"] .title span {
  text-transform: capitalize;
}
html[lang="en"] .home .i_part2 .box .txtBox h2{
  text-transform: capitalize;
}
html[lang="en"] .home .i_part2 .box .txtBox p {
  -webkit-line-clamp: 3;
}
html[lang="en"] .abtPage .companyCul .items ul li h3{
  display: none;
}
html[lang="en"] .abtPage .companyCul .items ul li h2{
  text-transform: uppercase;
}
html[lang="en"] .footer .box .aa .way ul li:last-of-type {
  grid-column-start: span 3;
}
html[lang="en"] .abtPage .companytData h2 {
  text-transform: capitalize;
}
html[lang="en"] .more a {
  padding: 13px 20px;
}
html[lang="en"] .proPage .box .bottom .aa ul li {
  padding-left: 20px;
}
html[lang="en"] .proPage .box .bottom .txtBox .itro p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
html[lang="en"] .home .i_part1 .content .swiper-pagination-bullet{
  padding: 0 20px;
}
html[lang="en"] .footer .box .aa .way{
  margin-top: 32px;
}
html[lang="en"] .footer .box .aa h2{
  font-size: 3.2rem;
}
html[lang="en"] .footer .box .bb form{
  margin-top: 24px;
}
html[lang="en"] .home .i_part4 .item .tit i {
  display: none;
}
html[lang="en"] .home .i_part4 .item .tit h2{
  width: 100%;
}