:root {
  --logoColor: #004c96;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("../fonts/HarmonyOS Sans SC.ttf");
  font-weight: normal;
  font-style: normal;
}
.w1640 {
  width: 41rem;
  max-width: 90%;
  margin: 0 auto;
}

.tac {
  text-align: center;
}

.lh1 {
  line-height: 1;
}

.fonb {
  font-weight: bold;
}

.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-tit {
  font-size: 1.15rem;
  color: #333333;
  line-height: 1;
  font-weight: bold;
}
.main-tit.other {
  color: #fff;
}

.main-sub {
  margin-top: 0.6rem;
  font-size: 0.45rem;
  line-height: 1;
  color: #333333;
}

.main-lf {
  width: 30%;
}

.main-rg {
  width: 70%;
}

.flexBox {
  display: flex;
  align-items: flex-start;
}

.main-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  box-shadow: 0 0 0 1px #fff;
  color: #fff;
  transition: all 0.4s;
}

.main-more.otherx{
    color: #333;
    box-shadow: 0 0 0 1px #333;
}

.main-more.otherx:hover{
    color: #fff;
    box-shadow: 0 0 0 1px transparent;
}

.main-more span {
  display: flex;
  width: clamp(10px, 0.35rem, 16px);
  margin-left: 0.2rem;
  filter: grayscale(1) brightness(100);
  transition: all .4s;
}

.main-more.otherx span{
    filter: grayscale(0) brightness(0);
}

.main-more.otherx:hover span{
    filter: grayscale(1) brightness(100);
}

.main-more.colOth {
  background-color: #fff;
  color: var(--logoColor);
}
.main-more.colOth span {
  filter: none;
}
.main-more.colOth:hover {
  background-color: var(--logoColor);
  color: #fff;
}
.main-more.colOth:hover span {
  filter: grayscale(1) brightness(100);
}
.main-more.other {
  background-color: var(--logoColor);
  box-shadow: none;
}
.main-more.other:hover {
  opacity: 0.9;
}
.main-more.hovOth:hover {
  background-color: #fff;
  color: var(--logoColor);
}
.main-more.hovOth:hover span {
  filter: none;
}
.main-more:hover {
  background-color: var(--logoColor);
  box-shadow: none;
}

.main-more:hover span{
    transform: translateX(5px);
}

.main-swiper .swiper-button-prev,
.main-swiper .swiper-button-next {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #999999;
  background-color: #fff;
  transition: all 0.4s;
}
.main-swiper .swiper-button-prev::after,
.main-swiper .swiper-button-next::after {
  width: 0.55rem;
  height: 0.3rem;
  font-size: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-swiper .swiper-button-prev:hover,
.main-swiper .swiper-button-next:hover {
  background-color: var(--logoColor);
  box-shadow: none;
}
.main-swiper .swiper-button-prev:hover::after,
.main-swiper .swiper-button-next:hover::after {
  filter: grayscale(100) brightness(100);
}
.main-swiper .swiper-button-prev::after {
  background-image: url(../img/5.png);
}
.main-swiper .swiper-button-next::after {
  background-image: url(../img/6.png);
}

.page-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-box a {
  width: 1.3rem;
  height: 1.3rem;
  line-height: 1.3rem;
  text-align: center;
  border-radius: 50%;
  color: #999999;
  margin-right: 0.25rem;
  transition: all 0.4s;
}
.page-box a:last-child {
  margin-right: 0;
}
.page-box a:hover, .page-box a.active {
  box-shadow: 0 0 0 2px var(--logoColor);
  color: var(--logoColor);
}

.footer {
  background-color: #002d71;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 26%;
  width: 1px;
  height: calc(100% - 1.5rem);
  background-color: rgba(255, 255, 255, 0.1);
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.footer .wrap {
  position: relative;
  z-index: 5;
}
.footer .top {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.footer .top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer .top .intro {
  width: 78%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
}
.footer .top .f-logo {
  width: 1.85rem;
}
.footer .top .f-logo img {
  width: 100%;
}
.footer .top .info {
  display: flex;
  align-items: center;
}
.footer .top .info .share {
  display: flex;
  align-items: center;
}
.footer .top .info .share>a {
  width: 1rem;
  height: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer .top .info .share>a:last-child {
  margin-right: 0;
}
.footer .top .info .share>a>img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .top .info .share>a:hover{background-color: #fff;}
.footer .top .info .share>a>img.img2{display: none;}
.footer .top .info .share>a:hover>img.img2{display: block;}
.footer .top .info .share>a:hover>img.img1{display: none;}

.footer .top .info .link {
  margin-left: 1.25rem;
  width: 3.5rem;
  height: 1rem;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0 0.5rem;
  z-index: 10;
}
.footer .top .info .link span {
  border-top: 6px solid #fff;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
}
.footer .top .info .link .drop-down {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 4rem;
  background-color: var(--logoColor);
  border-radius: 0.25rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.25rem);
  transition: all 0.4s;
}
.footer .top .info .link .drop-down::-webkit-scrollbar {
  width: 2px;
}
.footer .top .info .link .drop-down a {
  display: block;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  padding: 0 0.5rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .top .info .link .drop-down a:last-child {
  border-bottom: none;
}
.footer .top .info .link:hover .drop-down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .top .tel {
  width: 22%;
  display: flex;
  align-items: center;
  color: #fff;
  padding-left: 2.75rem;
  white-space: nowrap;
}
.footer .top .tel div {
  width: 0.6rem;
  min-width: 0.6rem;
  margin-right: 0.3rem;
  text-align: center;
}
.footer .mid {
  display: flex;
  justify-content: space-between;
  padding: 1.75rem 0 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .mid .nav-box {
  width: 78%;
  display: flex;
}
.footer .mid .nav-box .li {
  margin-right: 3.15rem;
  text-align: center;
}
.footer .mid .nav-box .li:last-child {
  margin-right: 0;
}
.footer .mid .nav-box .li a {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: all 0.4s;
}
.footer .mid .nav-box .li a:first-child {
  margin-bottom: 0.75rem;
}
.footer .mid .nav-box .li a:last-child {
  margin-bottom: 0;
}
.footer .mid .nav-box .li a:hover {
  transform: translateY(-4px);
}
.footer .mid .intro {
  width: 22%;
  padding-left: 2.75rem;
}
.footer .mid .intro .li {
  margin-bottom: 0.65rem;
  color: #fff;
}
.footer .mid .intro .li .icon {
  display: flex;
  align-items: center;
}
.footer .mid .intro .li .icon div {
  width: 0.6rem;
  text-align: center;
  margin-right: 0.3rem;
}
.footer .mid .intro .li .txt {
  padding-left: 0.9rem;
  margin-top: 0.3rem;
}
.footer .mid .intro .code {
  margin-top: 0.75rem;
  margin-left: 0.9rem;
  width: -moz-max-content;
  width: max-content;
}
.footer .mid .intro .code div {
  padding: 0.1rem;
  width: 2.4rem;
  border: 1px solid rgba(229, 229, 229, 0.5);
}
.footer .mid .intro .code img {
  width: 100%;
}
.footer .mid .intro .code p {
  margin-top: 6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.87);
}
.footer .btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.5rem;
}
.footer .btm a {
  display: inline-block;
  color: #fff;
}
.footer .btm .link:first-child {
  padding-right: 0.3rem;
  margin-right: 0.3rem;
  border-right: 1px solid #fff;
}
.footer .btm .copyright {
  margin-left: 0.65rem;
}
.footer .btm .support {
  color: rgba(255, 255, 255, 0.87);
}

.index-swiper {
  height: calc(100vh - 2rem);
}
.index-swiper .swiper-slide {
  height: 100%;
}
.index-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-swiper .swiper-slide .pos-cont .tit {
  color: #fff;
  line-height: 1.4;
}
.index-swiper .swiper-slide .pos-cont .more {
  margin-top: 2.35rem;
}

.index .i-sol {
  padding: 3.2rem 0 2.3rem;
  position: relative;
  overflow: hidden;
}
.index .i-sol .wrap {
  position: relative;
  z-index: 2;
}
.index .i-sol .sol-swiper {
  margin-top: 2.15rem;
  overflow: initial;
}
.index .i-sol .sol-swiper .swiper-slide {
  width: 66%;
  height: 14.6rem;
  /*margin: 0 0.45rem;*/
  border-radius: 0.25rem;
  overflow: hidden;
}
.index .i-sol .sol-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.index .i-sol .sol-swiper .swiper-slide:hover img{
    transform: scale(1.05);
} 
.index .i-sol .sol-swiper .swiper-slide .pos-cont {
  position: absolute;
  bottom: 0.95rem;
  left: 17.5%;
  width: 65%;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s 0.2s;
}
.index .i-sol .sol-swiper .swiper-slide-active .pos-cont {
  opacity: 1;
  transform: translateY(0);
}
.index .i-sol .tab {
  margin: 1.15rem auto 0;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: center;
  padding: 0 0.2rem;
  border-top: 1px solid rgba(0, 76, 150, 0.33);
}
.index .i-sol .tab span {
  padding: 0.5rem 0.4rem 0;
  position: relative;
  color: #333333;
  margin-right: 2.25rem;
  cursor: pointer;
  transition: all 0.4s;
}
.index .i-sol .tab span:last-child {
  margin-right: 0;
}
.index .i-sol .tab span::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--logoColor);
  transition: all 0.4s;
}
.index .i-sol .tab span:hover {
  color: var(--logoColor);
}
.index .i-sol .tab span.active {
  color: var(--logoColor);
  font-weight: bold;
}
.index .i-sol .tab span.active::after {
  width: 100%;
}
.index .i-advan {
  width: 100%;
  padding: 3.4rem 0 3.95rem;
}
.index .i-advan .wrap {
  display: flex;
  position: relative;
}
.index .i-advan .lf {
  width: 24.4%;
  padding-right: 1rem;
  padding-top: 1.6rem;
}
.index .i-advan .lf .more {
  margin-top: 1.95rem;
}
.index .i-advan .rg {
  width: 75.6%;
}
.index .i-advan .rg .advan-swiper {
  width: 100%;
  overflow: initial;
  overflow: hidden;
  padding-left: 0.3rem;
  transform: translateX(3.2rem);
}
.index .i-advan .rg .advan-swiper .swiper-pagination {
  position: relative;
  margin-top: 2.1rem;
  bottom: 0;
  line-height: 1;
  width: 6.25rem;
  height: 1px;
  background: #d6d6d6;
}
.index .i-advan .rg .advan-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  height: 2px;
  background: var(--logoColor);
}
.index .i-advan .rg .advan-swiper .swiper-slide {
  width: 32%;
  height: 13rem;
  padding: 2rem 1.15rem 1rem;
  margin-right: 4%;
  border-radius: 0.3rem;
  box-shadow: 0 3px 0.5rem rgba(0, 0, 0, 0.1);
  background-image: url(../img/19.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  transition: all 0.5s;
}

.index .i-advan .rg .advan-swiper .swiper-slide:hover{background-image: url(../img/19x.png);background-color:var(--logoColor);}


.index .i-advan .rg .advan-swiper .swiper-slide:last-child {
  margin-right: 0;
}
.index .i-advan .rg .advan-swiper .swiper-slide .icon {
  width: 1.95rem;
  height: 1.55rem;
  margin-bottom: 2.1vw;
}
.index .i-advan .rg .advan-swiper .swiper-slide .icon img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.index .i-advan .rg .advan-swiper .swiper-slide .icon img.img2{display: none;}
.index .i-advan .rg .advan-swiper .swiper-slide:hover .icon img.img1{display: none;}
.index .i-advan .rg .advan-swiper .swiper-slide:hover .icon img.img2{display: block;}

.index .i-advan .rg .advan-swiper .swiper-slide .h {
  color: #333333;
  transition: all 0.5s;
}
.index .i-advan .rg .advan-swiper .swiper-slide .txt {
  margin-top: 0.4rem;
  color: #666666;
  line-height: 1.8;
  transition: all 0.5s;
}
.index .i-advan .rg .advan-swiper .swiper-slide .num {
  position: absolute;
  left: 1.15rem;
  bottom: 0.75rem;
  color: var(--logoColor);
  transition: all 0.5s;
}

.index .i-advan .rg .advan-swiper .swiper-slide:hover .h{color:#ffffff;}
.index .i-advan .rg .advan-swiper .swiper-slide:hover .txt{color:#ffffff;}
.index .i-advan .rg .advan-swiper .swiper-slide:hover .num{color:#ffffff;}

.index .i-advan .btn-box {
  position: absolute;
  bottom: 2.1rem;
  left: 0;
  display: flex;
}
.index .i-advan .btn-box .swiper-button-prev,
.index .i-advan .btn-box .swiper-button-next {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.index .i-advan .btn-box .swiper-button-prev {
  margin-right: 0.6rem;
}
.index .i-about .top {
  padding: 3.8rem 0 4.9rem;
  position: relative;
}
.index .i-about .top .wrap {
  position: relative;
  z-index: 2;
}
.index .i-about .top .cont {
  margin-top: 0.7rem;
  color: #fff;
  line-height: 2;
  width: 51.5%;
}
.index .i-about .top .more {
  margin-top: 1rem;
}
.index .i-about .btm {
  position: relative;
  padding: 2.45rem 0 0;
}
.index .i-about .btm .wrap {
  position: relative;
}
.index .i-about .btm .num-box {
  display: flex;
}
.index .i-about .btm .num-box .li {
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 1px dashed #d5d5d5;
}
.index .i-about .btm .num-box .li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.index .i-about .btm .num-box .li .intro {
  display: flex;
  color: #333333;
}
.index .i-about .btm .num-box .li .intro .num {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-right: 0.2rem;
}
.index .i-about .btm .num-box .li .intro .unit {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.index .i-about .btm .num-box .li .txt {
  margin-top: 0.35rem;
  color: #666;
}
.index .i-about .btm .pos-intro {
  position: absolute;
  top: -8.25rem;
  right: 0.5rem;
  width: 12.5rem;
  padding: 1.1rem 1rem 1.6rem 1.25rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.07);
  background-color: #fff;
  z-index: 1;
}
.index .i-about .btm .pos-intro::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 5.8rem;
  background-color: var(--logoColor);
  z-index: -1;
}
.index .i-about .btm .pos-intro .tit {
  color: #fff;
}
.index .i-about .btm .pos-intro .cont {
  margin-top: 0.5rem;
  color: #f2f2f2;
  line-height: 1.5;
  height: 6em;
  overflow: hidden;
}
.index .i-about .btm .pos-intro .li-box {
  margin-top: 2.35rem;
  padding-right: 0.25rem;
}
.index .i-about .btm .pos-intro .li-box .li {
  display: flex;
  align-items: flex-start;
  padding: 0 0.75rem 0.4rem;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 1rem;
}
.index .i-about .btm .pos-intro .li-box .li:last-child {
  margin-bottom: 0;
}
.index .i-about .btm .pos-intro .li-box .li .num {
  color: var(--logoColor);
  line-height: 1.2;
  border-right: 1px solid #eeeeee;
  padding-right: 0.8rem;
  margin-right: 0.9rem;
}
.index .i-about .btm .pos-intro .li-box .li .intro {
  width: calc(100% - 2.8rem);
}
.index .i-about .btm .pos-intro .li-box .li .intro .h {
  color: #333333;
  transition: all 0.4s;
}
.index .i-about .btm .pos-intro .li-box .li .intro .txt {
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.index .i-about .btm .pos-intro .li-box .li:hover .intro .h {
  color: var(--logoColor);
}
.index .i-about .btm .pic {
  margin-top: 0.4rem;
  width: 63.4%;
}
.index .i-about .btm .pic img {
  width: 100%;
}
.index .i-news {
  padding: 3.9rem 0 3.75rem;
}
.index .i-news .li-box {
  margin-top: 1.65rem;
}
.index .i-news .li-box .li {
  width: 100%;
  height: 8rem;
  display: flex;
  border-radius: 0.3rem;
  overflow: hidden;
  background-color: rgba(157, 157, 157, 0.06);
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}
.index .i-news .li-box .li:last-child {
  margin-bottom: 0;
}
.index .i-news .li-box .li .pic {
  width: 27.6%;
  height: 100%;
  overflow: hidden;
}
.index .i-news .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.index .i-news .li-box .li .intro {
  width: 72.4%;
  height: 100%;
  padding: 1.45rem 1.75rem 1rem 2.15rem;
  position: relative;
  z-index: 1;
}
.index .i-news .li-box .li .intro .h {
  color: #333333;
  line-height: 1.15;
  transition: all 0.4s;
}
.index .i-news .li-box .li .intro .cont {
  margin-top: 0.6rem;
  color: #666666;
  line-height: 2;
}
.index .i-news .li-box .li .intro .info {
  position: absolute;
  bottom: 1.45rem;
  left: 0;
  width: 100%;
  padding: 0 2.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #818181;
}
.index .i-news .li-box .li .intro .info .more {
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.index .i-news .li-box .li .intro .info .more:hover{
    color:var(--logoColor) ;
}
.index .i-news .li-box .li .intro .info .more span {
  display: flex;
  width: 0.4rem;
  margin-left: 0.25rem;
}

.index .i-news .li-box .li .intro .info .more span img{
        filter: grayscale(100);
        opacity: 0.7;
        transition: all 0.5s;
}
.index .i-news .li-box .li .intro .info .more:hover span img{
    filter: grayscale(0);
    opacity: 1;
}

.index .i-news .li-box .li .intro .pos-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}
.index .i-news .li-box .li .intro .pos-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  
}
.index .i-news .li-box .li:hover {
  background-color: #fff;
  box-shadow: 0 0 1.65rem rgba(103, 120, 134, 0.14);
}
.index .i-news .li-box .li:hover .pic img {
  transform: scale(1.05);
}
.index .i-news .li-box .li:hover .intro .h {
  color: var(--logoColor);
}
.index .i-news .li-box .li:hover .intro .pos-bg {
  opacity: 1;
}
.index .i-news .link {
  margin: 1.5rem auto 0;
}

.form-box {
  padding: 3.3rem 0 3.75rem;
}
.form-box .wrap {
  padding: 0 0.9rem;
  display: flex;
}
.form-box .lf {
  width: 37.3%;
}
.form-box .lf .tit {
  color: #ffffff;
  line-height: 1.6;
}
.form-box .lf .link-box {
  margin-top: 2.6rem;
  display: flex;
}
.form-box .lf .link-box .link {
  margin-right: 0.6rem;
}
.form-box .rg {
  width: 62.7%;
}
.form-box .rg .form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.form-box .rg .form .item {
  width: 31%;
  margin-right: 3.5%;
  color: #fff;
}
.form-box .rg .form .item .h1 {
  margin-bottom: 0.5rem;
}
.form-box .rg .form .item input {
  width: 100%;
  height: 1.25rem;
  border-radius: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.59);
  padding: 0 0.6rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.form-box .rg .form .item input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.form-box .rg .form .item input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.form-box .rg .form .item textarea {
  width: 100%;
  height: 3.1rem;
  border-radius: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.59);
  padding: 0.45rem 0.6rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.form-box .rg .form .item textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.form-box .rg .form .item textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.form-box .rg .form .item.mar0 {
  margin-right: 0;
}
.form-box .rg .form .item.mart {
  margin-top: 1.25rem;
}
.form-box .rg .form .item.wid100 {
  width: 100%;
  margin-right: 0;
}

.business .box1 {
  padding: 0 0 3.25rem;
  position: relative;
}
.business .box1 .pos-bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.business .box1 .pos-bg img {
  width: 100%;
}
.business .box1 .wrap {
  position: relative;
  z-index: 2;
  padding-top: 5.3rem;
}
.business .box1 .tit{
    width: 100%;
}
.business .box1 .pc_box {
  margin-top: 0.5rem;
  padding-right: 1rem;
  float: left;
  position: sticky;
  top:8vw;
  min-height: 60vh;
}

.business .box1 .tit p{margin-bottom: 3vw;font-size:0.8rem;transition:all 0.4s;color:rgba(51, 51, 51, 0.5);}
.business .box1 .tit p.on{font-size: 1.15rem;color:#333333;}

.business .box1 .rg{float: right;}
.business .box1 .rg>div{margin-bottom: 7vw;}
.business .box1 .rg>div:last-child{margin-bottom:0;}
.business .box1 .cont {
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.8;
  text-align: justify;
}
.business .box1 .pic {
  width: 100%;
  margin-top: 1rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.business .box1 .pic img {
  width: 100%;
  transition: all .4s;
}
.business .box1 .pic video {
  width: 100%;
}
.business .box1 .pic:hover img {
  transform: scale(1.04);
}
.business .box2 {
  padding: 2.5rem 0 3.5rem;
  background-color: rgba(178, 178, 178, 0.12);
}
.business .box2 .lf {
  padding-right: 2.25rem;
}
.business .box2 .li-box {
  margin-top: 1.9rem;
}
.business .box2 .li-box .li {
  display: flex;
  align-items: center;
  padding: 0 0.2rem 0.3rem;
  border-bottom: 1px dashed rgba(112, 112, 112, 0.53);
  position: relative;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.business .box2 .li-box .li:last-child {
  margin-bottom: 0;
}
.business .box2 .li-box .li div {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.3rem;
  margin-right: 0.4rem;
}
.business .box2 .li-box .li div img{width: 100%;height: 100%;object-fit: contain;}
.business .box2 .li-box .li p {
  color: #333333;
  transition: all 0.4s;
}
.business .box2 .li-box .li span {
  position: absolute;
  right: 0;
  top: calc(50% - 0.15rem);
  transform: translateY(-50%);
  width: 0.45rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.4s;
}
.business .box2 .li-box .li span img {
  width: 100%;
}
.business .box2 .li-box .li.active p {
  color: var(--logoColor);
}
.business .box2 .li-box .li.active span {
  transform: translateX(0);
}
.business .box2 .li-box .li:hover p {
  color: var(--logoColor);
}
.business .box2 .rg {
  margin-top: 1.2rem;
  position: relative;
  height: 16.75rem;
}
.business .box2 .rg .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0.5rem);
  transition: all 0.4s;
}
.business .box2 .rg .item.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.business .box2 .rg .item img,
.business .box2 .rg .item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all .4s;
}
.business .box2 .rg .item .pos-cont {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  padding: 0 1.8rem;
  color: #fff;
}
.business .box2 .rg .item .pos-cont .txt {
  margin-top: 0.4rem;
  color: #ffffff;
  line-height: 1.8;
}
.business .box2 .rg .item:hover img {
  transform: scale(1.04);
}
.business .box3 {
  padding: 2.75rem 0 3.25rem;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.business .box3 .lf {
  padding-right: 1rem;
}
.business .box3 .rg {
  display: flex;
  flex-wrap: wrap;
}
.business .box3 .rg .li {
  width: 49%;
  height: 8.4rem;
  margin-right: 2%;
  margin-bottom: 0.65rem;
  border-radius: 0.3rem;
  padding: 1rem 1.05rem;
  background-color: rgba(0, 76, 150, 0.06);
  position: relative;
  transition: all 0.4s;
}
.business .box3 .rg .li:nth-child(2n) {
  margin-right: 0;
}
.business .box3 .rg .li .icon {
  width: 1.1rem;
  height: 1.3rem;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business .box3 .rg .li .icon .hov-img {
  display: none;
}
.business .box3 .rg .li .h {
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  color: #333333;
  padding-left: 0.3rem;
  position: relative;
  transition: all 0.4s;
}
.business .box3 .rg .li .h::before {
  content: "";
  position: absolute;
  top: calc(50% + 0.25rem);
  left: 0;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 0.45rem;
  background-color: var(--logoColor);
  transition: all 0.4s;
}
.business .box3 .rg .li .h::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--logoColor);
  width: 66.67%;
  height: 1px;
  opacity: 0.5;
  transition: all 0.4s;
}
.business .box3 .rg .li .txt {
  margin-top: 0.4rem;
  color: #333333;
  line-height: 1.8;
  transition: all 0.4s;
}
.business .box3 .rg .li .pos-icon {
  position: absolute;
  right: -0.2rem;
  bottom: 0;
  width: 49%;
}
.business .box3 .rg .li .pos-icon img {
  width: 100%;
}
.business .box3 .rg .li:hover {
  background-color: var(--logoColor);
}
.business .box3 .rg .li:hover .icon .nor-img {
  display: none;
}
.business .box3 .rg .li:hover .icon .hov-img {
  display: block;
}
.business .box3 .rg .li:hover .h {
  color: #fff;
}
.business .box3 .rg .li:hover .h::before {
  background-color: #fff;
}
.business .box3 .rg .li:hover .h::after {
  background-color: #fff;
}
.business .box3 .rg .li:hover .txt {
  color: #fff;
}
.business .box4 {
  padding: 3.4rem 0 3.45rem;
}
.business .box4 .lf {
  padding-right: 0.75rem;
  overflow: hidden;
}
.business .box4 .lf .tit-box {
  background-color: var(--logoColor);
  height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-radius: 0.3rem 0.3rem 0 0;
}
.business .box4 .lf .tab {
  border-radius: 0 0 0.3rem 0.3rem;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 3px 0.75rem rgba(0, 0, 0, 0.05);
  padding: 1rem 1rem 1.3rem;
  background-color: rgba(255, 255, 255, 0.7);
}
.business .box4 .lf .tab p {
  width: -moz-max-content;
  width: max-content;
  color: #333333;
  margin-bottom: 0.65rem;
  cursor: pointer;
  position: relative;
  transition: all 0.4s;
}
.business .box4 .lf .tab p:last-child {
  margin-bottom: 0;
}
.business .box4 .lf .tab p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1.7rem);
  transform: translateY(-50%);
  border-left: 6px solid var(--logoColor);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  opacity: 0;
  transition: all 0.4s;
}
.business .box4 .lf .tab p:hover {
  color: var(--logoColor);
}
.business .box4 .lf .tab p.active {
  color: var(--logoColor);
}
.business .box4 .lf .tab p.active::after {
  opacity: 1;
}
.business .box4 .rg .item {
  width: 100%;
  display: none;
}
.business .box4 .rg .item.show {
  display: block;
}
.business .box4 .rg .item table {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 3px 0.75rem rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.business .box4 .rg .item table tr {
  width: 100%;
  height: 2.5rem;
  color: #333333;
  font-size: 0.4rem;
  text-align: center;
}
.business .box4 .rg .item table tr td {
  width: 33.33%;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.business .box4 .rg .item table tr td:last-child {
  border-right: none;
}
.business .box4 .rg .item table tr td:nth-child(1) {
  color: var(--logoColor);
}
.business .box4 .rg .item table tr:first-child {
  background-color: var(--logoColor);
  height: 2.75rem;
  font-size: 0.5rem;
}
.business .box4 .rg .item table tr:first-child td {
  color: #fff;
}
.business .box5 {
  padding: 3.9rem 0 4.1rem;
  position: relative;
  background-color: #fff;
}
.business .box5 .top-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.business .box5 .top-intro .lf {
  width: 70%;
}
.business .box5 .top-intro .tab {
  display: flex;
}
.business .box5 .top-intro .tab .li {
  min-width: 4.1rem;
  white-space: nowrap; 
  padding: 0 .5rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(51, 51, 51, 0.53);
  margin-right: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  cursor: pointer;
}
.business .box5 .top-intro .tab .li:last-child {
  margin-right: 0;
}
.business .box5 .top-intro .tab .li span {
  display: flex;
  width: 14px;
  margin-left: 0.3rem;
}
.business .box5 .top-intro .tab .li.active, .business .box5 .top-intro .tab .li:hover {
  background: linear-gradient(to right, #004c96, #00264b);
  color: #fff;
}
.business .box5 .top-intro .tab .li.active span, .business .box5 .top-intro .tab .li:hover span {
  filter: brightness(100);
}
.business .box5 .item-box {
  margin-top: 1.7rem;
}
.business .box5 .item-box .item {
  display: none;
  flex-wrap: wrap;
}
.business .box5 .item-box .item.show {
  display: flex;
}
.business .box5 .item-box .item .li {
  width: 48.7%;
  margin-right: 2.6%;
  margin-bottom: 1rem;
}
.business .box5 .item-box .item .li:nth-child(2n) {
  margin-right: 0;
}
.business .box5 .item-box .item .li .pic {
  width: 100%;
  height: 9.5rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.business .box5 .item-box .item .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.business .box5 .item-box .item .li .h1 {
  margin-top: 0.35rem;
  color: #333333;
}
.business .box5 .item-box .item .li:hover .pic img {
  transform: scale(1.04);
}

.reseach {
  padding: 4.85rem 0 3.85rem;
  /*overflow: hidden;*/
  position: relative;
  padding-left: 4.425rem;
}
.reseach .lf {
  padding-right: 0.5rem;
  float: left;
  padding-right: 4.425rem;
  position: sticky;
  top:3rem;
}
.reseach .rg{float: right;padding-right: 4.425rem;overflow:hidden;}
.reseach .rg .txt {
  color: #333333;
  line-height: 2;
}
.reseach .rg .pic {
  margin-top: 0.55rem;
  width: 100%;
  border-radius: 0.3rem;
  overflow: hidden;
}
.reseach .rg .pic img {
  width: 100%;
}
.reseach .rg .h {
  margin-top: 4.35rem;
  color: #333333;
}
.reseach .rg .research-swiper {
  margin-top: 1.35rem;
  overflow: initial;
}
.reseach .rg .research-swiper .swiper-button-prev,
.reseach .rg .research-swiper .swiper-button-next {
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #999999;
  background-color: #fff;
  transition: all 0.4s;
}
.reseach .rg .research-swiper .swiper-button-prev::after,
.reseach .rg .research-swiper .swiper-button-next::after {
  width: 0.45rem;
  height: 0.25rem;
  font-size: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.reseach .rg .research-swiper .swiper-button-prev:hover,
.reseach .rg .research-swiper .swiper-button-next:hover {
  background-color: var(--logoColor);
  box-shadow: none;
}
.reseach .rg .research-swiper .swiper-button-prev:hover::after,
.reseach .rg .research-swiper .swiper-button-next:hover::after {
  filter: grayscale(100) brightness(100);
}
.reseach .rg .research-swiper .swiper-button-prev {
  right: 2rem;
  bottom: 1px;
}
.reseach .rg .research-swiper .swiper-button-prev::after {
  background-image: url(../img/5.png);
}
.reseach .rg .research-swiper .swiper-button-next {
  right: 1px;
  bottom: 1px;
  position: relative;
  margin-top: 1.7rem;
  float: right;
}
.reseach .rg .research-swiper .swiper-button-next::after {
  background-image: url(../img/6.png);
}
.reseach .rg .research-swiper .swiper-slide {
  width: 45.4%;
  margin-right: 4%;
  border-radius: 0.3rem;
  overflow: hidden;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
}
.reseach .rg .research-swiper .swiper-slide:last-child {
  margin-right: 0;
}
.reseach .rg .research-swiper .swiper-slide .img {
  width: 100%;
  height: 9.35rem;
  overflow: hidden;
}
.reseach .rg .research-swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.reseach .rg .research-swiper .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.reseach .rg .research-swiper .swiper-slide .intro {
  width: 100%;
  height: 5.5rem;
  background-color: #fff;
  padding: 1.4rem 1.15rem 0.5rem;
  transition: all 0.5s;
}
.reseach .rg .research-swiper .swiper-slide:hover .intro {
  background-color: var(--logoColor);
}
.reseach .rg .research-swiper .swiper-slide .intro .h1 {
  color: #333;
  transition: all 0.5s;
}
.reseach .rg .research-swiper .swiper-slide .intro .cont {
  margin-top: 0.5rem;
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.6;
  transition: all 0.5s;
}

.reseach .rg .research-swiper .swiper-slide:hover .intro .h1 {
  color: #fff;
}
.reseach .rg .research-swiper .swiper-slide:hover .intro .cont {
  color: rgba(255, 255, 255, 0.7);
}

.news {
  padding: 1.95rem 0 3.7rem;
}
.news .tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4rem;
  height: 1.1rem;
  text-align: center;
  line-height: 1.1rem;
  background-color: #cdcdcd;
  color: #fff;
  border-radius: 0.25rem 0 0 0;
  transition: all 0.5s;
}

.news .li-box .li:hover .tag{
    background-color: var(--logoColor);
}

.news .top {
  display: flex;
  background-color: #f8f8f8;
  border-radius: 0.25rem;
  overflow: hidden;
}
.news .top .pic {
  width: 55%;
  position: relative;
  overflow: hidden;
}
.news .top .pic img {
  width: 100%;
  transition: all .4s;
}
.news .top .intro {
  width: 45%;
  padding: 2.1rem 1.5rem 1rem 1.2rem;
}
.news .top .intro .tit {
  color: #333333;
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
}
.news .top .intro .time {
  margin-top: 0.5rem;
  color: #333333;
}
.news .top .intro .txt {
  margin-top: 0.4rem;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.8;
}
.news .top .intro .more {
  margin-top: 1.25rem;
}
.news .top:hover .pic img {
  transform: scale(1.04);
}
.news .li-box {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
}
.news .li-box .li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 0.7rem;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: #f8f8f8;
  transition: all 0.4s;
}
.news .li-box .li:nth-child(3n) {
  margin-right: 0;
}
.news .li-box .li .pic {
  width: 100%;
  height: 7.9rem;
  position: relative;
  overflow: hidden;
}
.news .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.news .li-box .li .intro {
  width: 100%;
  height: 5.05rem;
  padding: 0.75rem 1rem;
}
.news .li-box .li .intro .tit {
  color: #333333;
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
}
.news .li-box .li .intro .time {
  margin-top: 0.7rem;
  color: #111111;
}
.news .li-box .li:hover {
  background-color: #fff;
  box-shadow: 0 3px 1.5rem rgba(0, 0, 0, 0.07);
}
.news .li-box .li:hover .pic img {
  transform: scale(1.05);
}
.news .page-box {
  margin-top: 0.85rem;
}

.news-detail {
  padding: 3.4rem 0 3.75rem;
}
.news-detail .left {
  float: left;
  width: 68.4%;
  padding: 1.85rem 1.25rem 1rem;
  background-color: #f9f9f9;
  border-radius: 0.3rem;
}
.news-detail .left .title {
  color: #393737;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.news-detail .left .top_tit_f {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.news-detail .left .top_tit_f .time {
  margin-right: 1rem;
  color: #333333;
}
.news-detail .left .top_tit_f .share {
  display: flex;
  align-items: center;
  color: #333333;
}
.news-detail .left .top_tit_f .fx {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
}
.news-detail .left .top_tit_f .fx a {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.35rem;
  transition: all 0.5s;
}
.news-detail .left .top_tit_f .fx a img {
  width: 0.375rem;
}
.news-detail .left .top_tit_f .fx a:last-child {
  margin-right: 0;
}
.news-detail .left .top_tit_f .fx a:hover {
  background-color: var(--logoColor);
}
.news-detail .left .new_txt_cont {
  border-top: 1px solid #f0f0f0;
  padding-top: 2rem;
  padding-right: 0.7rem;
  color: #666666;
}
.news-detail .right {
  float: right;
  width: 30%;
  position: sticky;
  top: 2.5rem;
}
.news-detail .right .card {
  background-color: #f9f9f9;
  border-radius: 0.3rem;
  overflow: hidden;
  padding: 1.5rem 1.15rem 1.2rem;
  margin-bottom: 0.5rem;
}
.news-detail .right .card.dow {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.news-detail .right .card.dow .h {
  padding-left: 3.35rem;
  margin-bottom: 0.45rem;
}
.news-detail .right .card.dow .list {
  display: block;
  padding: 0 1.15rem;
  margin-bottom: 0.7rem;
}
.news-detail .right .card.dow .list .img {
  width: 100%;
  height: 6rem;
  border-radius: 0.3rem;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.news-detail .right .card.dow .list .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail .right .card.dow .list .tit_f {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
  overflow: hidden;
  max-height: 3.2em;
  color: #393737;
}
.news-detail .right .card.dow .btn {
  width: 100%;
  height: 1.55rem;
  background-color: var(--logoColor);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-detail .right .card.dow .btn svg {
  width: 0.4rem;
  margin-left: 0.5rem;
}
.news-detail .right .card:last-child {
  margin-bottom: 0;
}
.news-detail .right .card .h {
  margin-bottom: 0.85rem;
}
.news-detail .right .card .list .item {
  display: block;
  margin-bottom: 0.7rem;
}
.news-detail .right .card .list .item:last-child {
  margin-bottom: 0;
}
.news-detail .right .card .list .item .tit_h {
  color: #393737;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  transition: all 0.4s;
}
.news-detail .right .card .list .item .time {
  color: #999999;
}
.news-detail .right .card .list .item:hover .tit_h {
  color: var(--logoColor);
}

.contact{position: relative;z-index: 11;}

.contact .box1 {
  padding: 3.9rem 0;
}
.contact .box1 .media {
  margin-top: -0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.contact .box1 .media .h {
  color: var(--logoColor);
}
.contact .box1 .media .i-li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.75rem;
  position: relative;
}
.contact .box1 .media .i-li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 78%;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.2);
}
.contact .box1 .media .i-li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22%;
  height: 100%;
  background-color: #fff;
}
.contact .box1 .media .i-li .i {
  position: relative;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebebeb;
  transition: all 0.4s;
}
.contact .box1 .media .i-li .i:last-child {
  margin-right: 0;
}
.contact .box1 .media .i-li .i>img {
  width: 50%;
  max-width: 70%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact .box1 .media .i-li .i:hover {
  background-color: var(--logoColor);
}
.contact .box1 .li-box {
  margin-top: 1.6rem;
  display: flex;
}
.contact .box1 .li-box .li {
  width: 32%;
  height: 9rem;
  margin-right: 2%;
  border-radius: 0.45rem;
  background-color: rgba(239, 239, 239, 0.5);
  padding: 2.05rem 0.5rem 1rem;
  text-align: center;
  transition: all 0.4s;
}
.contact .box1 .li-box .li:nth-child(3n) {
  margin-right: 0;
}
.contact .box1 .li-box .li .icon {
  width: 2.05rem;
  height: 1.9rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.contact .box1 .li-box .li .h {
  margin-top: 0.65rem;
  color: #000000;
}
.contact .box1 .li-box .li .txt {
  margin-top: 0.65rem;
  color: #333333;
}
.contact .box1 .li-box .li:hover {
  background-color: #fff;
  box-shadow: 0 0.4rem 1.15rem rgba(0, 0, 0, 0.06);
}
.contact .box2 .map {
  margin-top: 1.65rem;
  position: relative;
}
.contact .box2 .map img {
  width: 100%;
}
.contact .box2 .map .point {
  position: absolute;
  top: 41.06%;
  left: 59.79%;
  width: 1.45rem;
}
.contact .box2 .map .point img {
  width: 100%;
}
.contact .box2 .map .cont {
  position: absolute;
  top: 18.17%;
  left: 66%;
  width: 22%;
  border-radius: 0.3rem;
  overflow: hidden;
  box-shadow: 0 0.6rem 1rem rgba(0, 0, 0, 0.04);
}
.contact .box2 .map .cont .img {
  width: 100%;
  height: 5.95rem;
  overflow: hidden;
}
.contact .box2 .map .cont .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all .4s;
}
.contact .box2 .map .cont .intro {
  width: 100%;
  height: 3.3rem;
  padding: 0.6rem 1.4rem;
  background-color: #fff;
}
.contact .box2 .map .cont .intro .h {
  color: #000000;
}
.contact .box2 .map .cont .intro .address {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  color: #333333;
}
.contact .box2 .map .cont .intro .address div {
  width: 0.7rem;
  margin-right: 5px;
}
.contact .box2 .map .cont:hover .img img {
  transform: scale(1.04);
}
.contact .box3 {
  width: 100%;
  padding: 1.65rem 0 1.3rem;
  background: linear-gradient(to right, #1d83f4, #004c96);
  position: relative;
}
.contact .box3 .wrap {
  position: relative;
  z-index: 2;
}
.contact .box3 .tit {
  line-height: 1.5;
}
.contact .box3 .more {
  margin-top: 1.2rem;
}

.social-share .icon-wechat, .social-share .icon-weibo{color: transparent !important;
        border-color: transparent !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;}

.join {
  padding: 3.9rem 0 3.25rem;
  background-color: #f6f6f6;
}
.join .top-tit {
  width: 100%;
  height: 2.15rem;
  margin-top: 1.65rem;
  display: flex;
  align-items: center;
  background-color: var(--logoColor);
  padding-left: 2.25rem;
  color: #fff;
  border-radius: 0.2rem;
}
.join .top-tit p {
  width: 22.5%;
}
.join .top-tit p:nth-child(5) {
  width: 10%;
}
.join .li-box {
  margin-top: 0.65rem;
}
.join .li-box .li {
  background-color: #fff;
  margin-bottom: 0.6rem;
  border-radius: 0.1rem;
  transition: all 0.4s;
}
.join .li-box .li:last-child {
  margin-bottom: 0;
}
.join .li-box .li .top-bots {
  width: 100%;
  height: 2.15rem;
  display: flex;
  align-items: center;
  padding-left: 2.25rem;
  color: #333333;
  cursor: pointer;
  transition: all 0.4s;
}
.join .li-box .li .top-bots p {
  width: 22.5%;
}
.join .li-box .li .top-bots p:nth-child(5) {
  width: 10%;
}
.join .li-box .li .top-bots p:nth-child(5) img {
  filter: brightness(100) grayscale(1);
  width: 0.4rem;
  margin-right: 0.2rem;
}
.join .li-box .li .btn-bots {
  border-top: 1px solid rgba(27, 32, 142, 0.15);
  position: relative;
  padding: 0.75rem 0 1.05rem 2.25rem;
  display: none;
}
.join .li-box .li .btn-bots .close {
  position: absolute;
  top: 0.9rem;
  right: 1.4rem;
  color: rgba(0, 76, 150, 0.5);
  cursor: pointer;
}
.join .li-box .li .btn-bots .list-box {
  display: flex;
}
.join .li-box .li .btn-bots .list-box .list {
  width: 21.5%;
  margin-right: 12%;
}
.join .li-box .li .btn-bots .list-box .list:last-child {
  margin-right: 0;
}
.join .li-box .li .btn-bots .list-box .list .h {
  color: #333333;
}
.join .li-box .li .btn-bots .list-box .list .cont {
  margin-top: 0.7rem;
  color: #333333;
  line-height: 1.8;
}
.join .li-box .li.active {
  box-shadow: 0 3px 0.5rem rgba(0, 0, 0, 0.1);
}
.join .li-box .li.active .top-bots {
  height: 2rem;
  color: var(--logoColor);
}
.join .li-box .li.active .top-bots p:nth-child(5) a {
  color: #d6000f;
}
.join .li-box .li.active .top-bots p:nth-child(5) img {
  filter: none;
}
.join .page-box {
  margin-top: 1.95rem;
}

.about .box1 {
  padding: 5.85rem 0 3.45rem;
  position: relative;
  overflow: hidden;
}
.about .box1 .pos-bg {
  position: absolute;
  top: 5.1rem;
  left: -0.5rem;
  width: 105.4%;
}
.about .box1 .pos-bg img {
  width: 100%;
}
.about .box1 .wrap {
  position: relative;
  z-index: 2;
}
.about .box1 .top-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about .box1 .top-intro .lf {
  width: 47%;
  padding-right: 1rem;
}
.about .box1 .top-intro .rg {
  width: 53%;
  color: #333333;
  line-height: 2;
}
.about .box1 .top-intro .rg span {
  color: var(--logoColor);
}
.about .box1 .pic {
  margin-top: 3.5rem;
  width: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.about .box1 .pic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1.5rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5));
}
.about .box1 .pic .pos-li {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 0;
  width: 100%;
  padding: 0 3.15rem;
  display: flex;
  align-items:flex-end;
  justify-content: space-between;
}
.about .box1 .pic .pos-li .li {
  width: 22%;
  color: #fff;
  padding-top: 0.7rem;
  border-top: 1px solid #fff;
}
.about .box1 .pic .pos-li .li .h{margin-bottom: 0.2rem;}
.about .box1 .pic .pos-li .li .cont {
  line-height: 1.8;
  display: none;
}
.about .box2 {
  padding-bottom: 4.45rem;
}
.about .box2 .wrap {
  overflow: hidden;
}
.about .box2 .box2-swiper {
  margin-top: 3.1rem;
  overflow: initial;
}
.about .box2 .box2-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8.75rem;
  height: 100%;
  background: linear-gradient(to left, transparent, #fff);
  z-index: 15;
}
.about .box2 .box2-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8.75rem;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff);
  z-index: 15;
}
.about .box2 .box2-swiper .swiper-slide {
  width: 28%;
  margin: 0 4%;
}
.about .box2 .box2-swiper .swiper-slide .pic {
  width: 100%;
  height: 7.3rem;
  border-radius: 0.4rem;
  overflow: hidden;
  transition: all 0.4s;
}
.about .box2 .box2-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all .4s;
    
}
.about .box2 .box2-swiper .swiper-slide .year {
  margin-top: 2.25rem;
  color: var(--logoColor);
  font-size: 2.05rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.about .box2 .box2-swiper .swiper-slide .txt {
  margin-top: 0.8rem;
  color: #333333;
  text-align: center;
  line-height: 1;
  opacity: 0;
  transition: all 0.4s;
}
.about .box2 .box2-swiper .swiper-slide-active .pic {
  transform: scale(1.3);
}
.about .box2 .box2-swiper .swiper-slide-active .txt {
  opacity: 1;
}
.about .box2 .box2-swiper .swiper-slide-active:hover .pic img {
  transform: scale(1.04);
}
.about .box3 {
  padding: 1.85rem 0 3.6rem;
  overflow: hidden;
}
.about .box3 .top-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about .box3 .top-intro .tab {
  display: flex;
}
.about .box3 .top-intro .tab .li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  box-shadow: 0 0 0 1px #333333;
  color: #333333;
  margin-right: 0.75rem;
  cursor: pointer;
  transition: all 0.4s;
}
.about .box3 .top-intro .tab .li:last-child {
  margin-right: 0;
}
.about .box3 .top-intro .tab .li span {
  width: 0.35rem;
  margin-left: 0.4rem;
}
.about .box3 .top-intro .tab .li.active, .about .box3 .top-intro .tab .li:hover {
  background-color: var(--logoColor);
  color: #fff;
  box-shadow: none;
}
.about .box3 .top-intro .tab .li.active span, .about .box3 .top-intro .tab .li:hover span {
  filter: brightness(100);
}
.about .box3 .box3-swiper {
  display: none;
  margin-top: 2rem;
  overflow: initial;
}
.about .box3 .box3-swiper.show {
  display: block;
}
.about .box3 .box3-swiper .box3-button-prev,
.about .box3 .box3-swiper .box3-button-next {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--logoColor);
  top: auto;
  left: auto;
  right: auto;
  transition: all 0.4s;
}
.about .box3 .box3-swiper .box3-button-prev::after,
.about .box3 .box3-swiper .box3-button-next::after {
  font-size: 0;
  width: 0.55rem;
  height: 0.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.about .box3 .box3-swiper .box3-button-prev:hover,
.about .box3 .box3-swiper .box3-button-next:hover {
  background-color: var(--logoColor);
}
.about .box3 .box3-swiper .box3-button-prev:hover::after,
.about .box3 .box3-swiper .box3-button-next:hover::after {
  filter: grayscale(100) brightness(100);
}
.about .box3 .box3-swiper .box3-button-prev {
  margin-top: 1.65rem;
  position: relative;
}
.about .box3 .box3-swiper .box3-button-prev::after {
  background-image: url(../img/5.png);
}
.about .box3 .box3-swiper .box3-button-next {
  left: 2.4rem;
  bottom: 0;
}
.about .box3 .box3-swiper .box3-button-next::after {
  background-image: url(../img/6.png);
}
.about .box3 .box3-swiper .swiper-pagination {
  bottom: 0.3rem;
  left: 5.5rem;
  width: -moz-max-content;
  width: max-content;
  color: var(--logoColor);
  line-height: 1;
}
.about .box3 .box3-swiper .swiper-pagination .swiper-pagination-current {
  font-size: 0.9rem;
}
.about .box3 .box3-swiper .swiper-pagination .swiper-pagination-total {
  opacity: 0.43;
}
.about .box3 .box3-swiper .swiper-scrollbar {
  width: 77%;
  left: 26%;
  height: 1px;
  background: #d6d6d6;
  bottom: 0.5rem;
}
.about .box3 .box3-swiper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 2px;
  background: var(--logoColor);
}
.about .box3 .box3-swiper .swiper-slide {
  width: 47.5%;
  height: 9.65rem;
  margin: 0 4%;
  border-radius: 0.3rem;
  background-color: #fff;
  box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.08);
  padding: 2rem 1.25rem 1rem;
  overflow: hidden;
  z-index: 1;
}
.about .box3 .box3-swiper .swiper-slide .icon {
  width: 1.3rem;
}
.about .box3 .box3-swiper .swiper-slide .icon img {
  width: 100%;
}
.about .box3 .box3-swiper .swiper-slide .h {
  margin-top: 0.6rem;
  color: #333333;
}
.about .box3 .box3-swiper .swiper-slide .pic {
  position: absolute;
  right: 1.2rem;
  top: 1.95rem;
  width: 46%;
  max-height: 60%;
}
.about .box3 .box3-swiper .swiper-slide .pic img {
  width: 100%;
}
.about .box3 .box3-swiper .swiper-slide .pos-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}
.about .box3 .box3-swiper .swiper-slide .pos-bg img {
  height: 100%;
}
.about .box3 .box3-swiper .swiper-slide .num {
  position: absolute;
  bottom: 0.9rem;
  left: 1.25rem;
  padding-left: 0.6rem;
  color: #666666;
}
.about .box3 .box3-swiper .swiper-slide .num::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
  background-color: var(--logoColor);
}
.about .box3 .box3-swiper .swiper-slide .num::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
}






@media (max-width: 1024px) {
    
    .index-swiper {
        height: 130.667vw;
    }
    
    .banner .banner-img {
        height: 130.667vw;
    }
    
    .v_slide .pos-center {
        
        transform: translate(-50%, 0%);
        top: 30.667vw;
    }
    
    .index-swiper .swiper-button-prev, .index-swiper .swiper-button-next {
        display: none;
    }
    
    .main-sub {
        font-size: 12px;
    }
    .main-tit {
        text-align: center;
    }
    .contact .box1 .media {
        margin-top: 0;
    }
    
    .index .i-advan .rg .advan-swiper .swiper-slide .txt {
        text-align: justify;
    }
    .index .i-advan .lf .more {
        margin: 0 auto;
    }
    
    .index .i-sol .sol-swiper .swiper-slide {
        width: 88%;
        height: auto;
        aspect-ratio: 660 / 328;
    }
    
    .index .i-sol .definition-Phone {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .index .i-advan .wrap {
        flex-direction: column;
    }
    .index .i-advan .lf {
        width: 100%;
        padding: 0;
        margin-bottom: 46px;
    }
    .index .i-advan .rg {
        width: 100%;
    }
    .index .i-advan .rg .advan-swiper {
        padding: 0;
        transform: none;
    }
    .index .i-advan .rg .advan-swiper .swiper-slide {
        width:70%;
        height: auto;
        /*aspect-ratio: 400 / 570;*/
    }
    .index .i-advan .rg .advan-swiper .swiper-slide {
        padding-bottom: 2rem;
    }
    .index .i-advan .btn-box {
        left: auto;
        right: 0;
        bottom: -15px;
        /*transform: translateY(50%);*/
    }
    
    .index .i-about .top .cont {
        width: 100%;
        text-align: justify;
        margin-bottom: 31px;
    }
    .index .i-about .top .more {
        margin: 0 auto;
    }
    
    .index .i-about .btm .wrap {
        display: flex;
        flex-direction: column;
    }
    
    .index .i-about .btm .num-box {
        flex-wrap: wrap;
        margin-bottom: 47px;
        
    }
    .index .i-about .btm .num-box .li {
        width: 48%;
        margin: 0;
        border: 0;
        padding: 0;
        margin-bottom: 26px;
    }
    .index .i-about .btm .num-box .li .intro {
        align-items: flex-end;
        height: 50%;
    }
    .index .i-about .btm .pos-intro {
        width: 100%;
        padding: 0;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    .index .i-about .btm .pos-intro .tit {
        background-color: var(--logoColor);
        padding: 1.1rem 1rem 0 1.25rem;
    }
    .index .i-about .btm .pos-intro .cont {
        background-color: var(--logoColor);
        padding:0.5rem 1rem 1.6rem 1.25rem;
        margin: 0;
        line-height: 1.5;
        text-align: justify;
        height: auto;
    }
    .index .i-about .btm .pos-intro .li-box .li {
        padding: 0 0.75rem 17px;
    }
    .index .i-about .btm .pic {
        width: 100%;
    }

    .index .i-about .btm .pos-intro::after {
        display: none;
    }
    
    .index .i-news .li-box .li {
        flex-direction: column;
        height: auto;
    }
    .index .i-news .li-box .li .pic {
        width: 100%;
        height: auto;
        aspect-ratio: 734 / 410;
    }
    .index .i-news .li-box .li .intro {
        width: 100%;
        padding: 5.333% 29px;
    }
    .index .i-news .li-box .li .intro .cont {
          display: -webkit-box;
          -webkit-line-clamp: 2; /* 设置显示的行数 */
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
        margin-bottom: 37px;
    }
    .index .i-news .li-box .li .intro .info {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 0;
    }
    
    .form-box .wrap {
        flex-direction: column;
        padding: 0;
    }
    .form-box .lf {
        width: 100%;
        margin-bottom: 31px;
    }
    .form-box .lf .tit br {
        display: none;
    }
    
    .form-box .rg {
        width: 100%;
    }
    .form-box .rg .form .item { 
        width: 48%;
        margin-right: 2%;
        margin-bottom: 13px;
    }
    .form-box .rg .form .link-box {
        display: flex;
    }
    .form-box .rg .form .link-box .main-more {
        margin-right: 13px;
    }
    .form-box .rg .form .link-box .main-more:last-child {
        margin-right: 0;
    }
    
    
    /*关于我们*/
    .about .box1 .top-intro {
        flex-direction: column;
    }
    .about .box1 .top-intro .lf {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .about .box1 .top-intro .lf .main-sub {
        text-align: center;
    }
    .about .box1 .top-intro .rg {
        width: 100%;
        text-align: justify;
    }
    .about .box1 .pic {
        box-shadow: 0 5px 40px #d5d5d5;
    }
    .about .box1 .pic .pos-li {
        position: relative;
        bottom: 0;
        flex-direction: column;
        padding: 0 6vw;
        background-color: #fff;
    }
    .about .box1 .pic .pos-li .li {
        width: 100%;
        margin-bottom: 6vw;
        border: 0;
        color: #000;
    }
    .about .box1 .pic .pos-li .li .cont {
        display: block !important;
        height: auto !important;
        text-align: justify;
    }
    .about .box2 .box2-swiper::before {
        display: none;
    }
    .about .box2 .box2-swiper::after {
        display: none;
    }
    .about .box2 .box2-swiper .swiper-slide {
        width: 75%;
    }
    .about .box2 .box2-swiper .swiper-slide-active .pic {
        transform: scale(1);
    }
    .about .box2 .box2-swiper .swiper-slide-active .txt {
        line-height: 1.5;
    }
    .about .box3 .top-intro {
        flex-direction: column;
        align-items: center
    }
    .about .box3 .top-intro .lf {
        margin-bottom: 6vw;
    }
    
    .about .box3 .box3-swiper .swiper-slide {
        width: 75%;
        height: auto;
        padding-bottom: 2rem;
    }
    
    .about .box3 .box3-swiper .swiper-slide .pic {
        position: relative;
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    .about .box3 .box3-swiper .swiper-scrollbar {
        width:53% ;
        left: auto;
        right: 0;
    }
    
    /*业务范围*/
    .business .box1 .tit {
        float:none;
        height: auto;
        width: 100%;
        min-height: 0;
        padding: 0;
    }
    .business .box1 .rg {
        float: none;
        width: 100%;
    }
    
     .flexBox {
        flex-direction: column;
    }
    .business .box1 .tit {
        position: static;
    }
    .business .box2 .lf {
        width: 100%;
        padding: 0;
    }
    .business .box2 .rg {
        width: 100%;
        height: 13.75rem;
    }
    .business .box2 .rg .item {
        transform: none;
    }
    .business .box3 .lf {
        width: 100%;
        padding: 0;
        margin-bottom: 6vw;
    }
    .main-sub {
        text-align: center;
    }
    .business .box3 .rg {
        width: 100%;
    }
    .business .box3 .rg .li {
        width: 100%;
    }
    .business .box4 .lf {
        width: 100%;
        padding: 0;
        margin-bottom: 5vw;
    }
    .business .box4 .main-rg {
        width: 100%;
    }
    .business .box4 .rg .item table tr {
        font-size: 12px;
    }
    .business .box5 .top-intro {
        flex-direction: column;
    }
    .business .box5 .top-intro .lf {
        width: 100%;
        margin-bottom: 6vw;
    }
    .business .box5 .top-intro .tab {
        width: 100%;
        flex-wrap: wrap;
    }
    .business .box5 .top-intro .tab .li {
        margin-bottom: 5vw;
    }
    .pos-center {
        width: 100%;
        padding: 0 6vw;
    }
    .lh1 {
        line-height: 1.5;
    }
    /*技术研发*/
    .reseach {
        padding: 12vw 6vw;
    }
    .reseach .lf {
        float: none;
        width: 100%;
        padding: 0;
        position: static;
        margin-bottom: 6vw;
    }
    .reseach .rg {
        float: none;
        width: 100%;
        padding: 0;
    }
    .reseach .rg .research-swiper .swiper-slide {
        width: 70%;
    }
    
    
    /*新闻*/
    .news .top {
        flex-direction: column;
    }
    .news .top .pic {
        width: 100%;
    }
    .news .top .intro {
        width: 100%;
    }
    /*新闻详情*/
    .news-detail .wrap {
        display: flex;
        flex-direction: column;
    }
    .news-detail .left {
        width: 100%;
        margin-bottom: 10vw;
    }
    .news-detail .left .top_tit_f {
        flex-wrap: wrap;
    }
    .news-detail .left .new_txt_cont {
        padding: 12vw 0;
        font-size: 16px;
        line-height: 1.5;
    }
    .news-detail .right .card.dow .h {
        padding: 0 1.15rem;
    }
    .news-detail .right {
        flex-wrap: wrap;
        width: 100%;
        position: static;
    }
    .contact .box1 .media .i-li::before {
        width: 59%;
    }
    .contact .box1 .li-box {
        flex-direction: column;
    }
    .contact .box1 .li-box .li {
        width: 100%;
        margin: 0;
        margin-bottom: 6vw;
    }
    .contact .box2 .map>img {
        max-width:fit-content;
        object-fit: cover;
        width: 200vw;
        transform: translateX(-42%);
        /*transform: scale(4.5) translate(-10%, 7%);*/
        height: 100vw;
    }
    .contact .box2 .map {
        overflow: hidden;
        height: auto;
        /*aspect-ratio: 1 / ;*/
    }
    .contact .box2 .map .cont .img img {
        transform: none;
        height: auto;
    }
    .contact .box2 .map .cont {
        position: static;
        transform: none;
        /*width: 100%;*/
        width: 88%;
        margin: 6%;
        /*box-shadow: 0 5px 30px #000;*/
        box-shadow: 0 5px 40px #d5d5d5;
    }
    .contact .box2 .map .cont .img {
        height: auto;
    }
    .contact .box2 .map .cont .intro {
        padding: 6%;
        height: auto;
    }
    .contact .box2 .map .point {
        top:23.06%;
        left: 41.79%;

    }
    .contact .box3 .more {
        margin: 0 auto;
        margin-top: 6vw;
    }
    .contact .box1 .media {
        padding-top: 6vw;
        align-items: center;
    }
    .contact .box1 .media .i-li {
        justify-content: center;
    }
    .contact .box1 .media .i-li::before {
        display: none;
    }
    .join .top-tit {
        padding: 0 6%;
        justify-content: space-between;
    }
    .join .li-box .li .top-bots {
        padding: 0 6%;
    }
    .join .top-tit p {
        /*width: 24%;*/
        flex: 1;
    }
    .join .top-tit p:nth-child(4n) {
        display: none;
    }
    .join .top-tit p:last-child {
        /*width: 22.5%;*/
          flex: 1;
    }
    .join .li-box .li .top-bots {
        justify-content: space-between;
    }
    .join .li-box .li .top-bots p {
        /*width: 24%;*/
          flex: 1;
    }
    .join .li-box .li .top-bots p:last-child {
        /*width: 24%;*/
          flex: 1;
    }
    .join .li-box .li .top-bots p:nth-child(4n) {
        display: none;
    }
    .join .li-box .li .btn-bots {
        padding: 6% ;
    }
    .join .li-box .li .btn-bots .list-box {
        flex-direction: column;
    }
    .join .li-box .li .btn-bots .list-box .list {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5%;
    }
    .join .li-box .li .btn-bots .list-box .list .cont {
        text-align: justify;
    }
}














/*# sourceMappingURL=style.css.map */