
.Box1 {
  position: relative;
}

.Box1 .banners {
  height: 100%;
  position: relative;
}

.Box1 .banners .slick-prev,
.Box1 .banners .slick-next {
  display: none !important;
}

.Box1 .banners .slick-list {
  height: 100%;
}

.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}


.Box1 .slick-track {
  height: 100%;
}

.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}

.slick-dots li button {
  width: 30px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 0;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.slick-dots li.slick-active button {
  background: #fff;
  transform: scaleX(1.5);
  opacity: 1;
}

.slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.8);
}

.Box1 .row {

  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.Box1 .row h1 {
  font-size: 90px;
}

.Box1 .row .right {
  display: flex;
  justify-content: end;
  align-items: end;
}

.Box1 .row .right .nr {
  font-size: 18px;
  max-width: 50%;
}

.Box1 .row .right .iconfont {
  font-size: 50px;
  margin-left: 15%;
  display: inline-block;
  animation: gravityBounce 4s infinite ease-in;
  /* 总时间 = 动画2s + 暂停2s */
}

@keyframes gravityBounce {

  0%,
  50% {
    /* 前50%时间（2s）执行动画，后50%时间（2s）保持静止 */
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  12.5% {
    /* 25% of 50% = 12.5% */
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }

  25% {
    /* 50% of 50% = 25% */
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  37.5% {
    /* 75% of 50% = 37.5% */
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }

  50%,
  100% {
    /* 后50%时间保持静止 */
    transform: translateY(0);
  }
}

.Box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Box1 .banner {
  position: relative;
}

.Box1 .banner:not(:first-child):before {
  position: absolute;
  background-color: rgb(14 43 92 / 0.7);
  z-index: 2;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}



.Box1 .banner .text {
  z-index: 4;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.Box1 .banner h4 {
  font-size: 50px;
  color: #FFFFFF;
}

.Box1 .banner p {
  font-size: 14px;
  max-width: 40%;
  color: #FFFFFF;
}

.Box1 .banner a {
  background: #054A94;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  padding: 18px 30px;
  text-align: center;
  position: relative;
  margin-right: 20px;
  z-index: 2;
  transition: 1s;
  font-weight: 400;
  overflow: hidden;
}

.Box1 .banner a::before {
  transition: 0.5s;
  position: absolute;
  width: 35%;
  height: 100%;
  content: "";
  bottom: 0;
  left: -38px;
  background: #22242926;
  z-index: -1;
  border-radius: 50px;
}

.Box1 .banner a:hover {
  color: #054A94;
  background-color: #fff;
}

.Box1 .banner a:hover::before {
  width: 100%;
}

.Box1 .banner iframe  #pano-start-top-ad{
  display: none !important;
}


.Box2 {
  /* margin-top: 100px; */
  background-color: #F5F7FA;
  padding: 80px 0;
}

.Box2 .row {
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

.Box2 .row .col-lg-7 {
  padding-right: 5%;
}

.Box2 .row .col-lg-7 h3 {
  font-size: 48px;
  font-family: 'Titillium Web';
}





.Box2 .row .imgs {
  display: flex;
  justify-content: space-between;
}

.Box2 .row .ImgBox {
  width: 100%;
  height: 100%;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.Box2 .row .ImgBox::before {
  width: 70%;
  height: 70%;
  background-color: transparent;
  border: 2px solid rgb(22 93 255 / 0.2);
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  border-radius: 10px;
}

.Box2 .row .ImgBox::after {
  width: 70%;
  height: 70%;
  background-color: rgb(22 93 255 / 0.2);
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 10px;
}

.Box2 .row .ImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}





.Box2 .row a {
  margin-top: 30px;
  display: block;
  margin-bottom: 30px;
  max-width: 20%;
}

.Box2 p {
  font-size: 18px;
  text-indent: 2em;
}

.Box2 ul {
  padding-left: 0;
}

.Box2 ul li {
  text-indent: 2em;
  position: relative;
  margin-bottom: 5px;
}

.Box2 ul li::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background-color: #054A94;
  top: 2px;
  left: 0;
}




.buttons {
  width: 95%;
  /* background-color: red; */
  background-color: transparent;
  position: relative;
  padding: 10px 0;
  border-left: none;
  border-right: none;
  overflow: hidden;
  transition: 0.3s;
}

.buttons span {
  transition: 0.3s;
  position: relative;
  left: 0;
  font-size: 18px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.buttons::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 50%;
  top: -50%;
  left: 0;
  background-color: #000000;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.buttons::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 50%;
  bottom: -50%;
  left: 0;
  background-color: #000000;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.buttons:hover {
  color: #fff;
}

.buttons:hover span {
  left: 3%;
}

.buttons:hover::before {
  top: 0;
}

.buttons:hover::after {
  bottom: 0;
}

@media screen and (max-width:1400px) {
  .Box2 .ImgBox:nth-child(1) {
    width: 100%;
  }

  .Box2 .ImgBox:nth-child(2) {
    display: none;
  }


  @media screen and (max-width:991px) {
    .Box2 .row .col-lg-7 h3{
      font-size: 35px;
    }
    .Box2 .row .ImgBox{
      margin-top: 40px;
    }
    .Box2 .row a{
      max-width: none;
    }
  }
  @media screen and (max-width:768px) {
    .Box2 .row .col-lg-7 h3{
      font-size: 30px;
    }
    .Box2 p{
      font-size: 14px;
    }
  }
  


}




.Box3 {
  margin-top: 100px;
}

.Box3 .B3Head {
  display: flex;
  justify-content: space-between;
}

.Box3 .B3Head .left {
  width: 40%;
  padding-left: 5%;
}

.Box3 .B3Head .left h1 {
  font-size: 48px;
  font-family: 'Titillium Web';
}

.Box3 .B3Head .right {
  width: 60%;
  padding-top: 4%;
}

.Box3 .B3Head .right p {
  max-width: 95%;
  font-size: 18px;
  line-height: 1.1;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  text-indent: 2em;
}

.Box3 .B3Head .right a {
  margin-top: 20px;
  display: block;
}

.Box3 .row {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 30px;
}

.Box3 .row .col-lg-3 {
  overflow: hidden;
  position: relative;
}

.Box3 .row .col-lg-3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}

.Box3 .row .col-lg-3:hover img {
  transform: scale(1.05);
}

.Box3 .row .nr {
  position: absolute;
  bottom: 7%;
  padding: 0 5%;
}

.Box3 .row .nr h3 {
  color: white;
  margin-bottom: 10%;
}

.Box3 .row .nr a {
  width: 50%;
  color: white;
}

.Box3 .row .nr a button {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  width: 100%;
  padding: 10px 0;
  color: white;
}

.Box3 .row .nr a button span {
  position: relative;
  left: 5%;
  transition: 0.3s;
}

.Box3 .row .nr a button:hover span {
  left: 10%;
}

@media screen and (max-width:991px) {
  .Box3 .B3Head {
    display: block;
  }

  .Box3 .B3Head .left,
  .Box3 .B3Head .right {
    width: 100%;
    padding-left: 5%;
  }

  .Box3 .row .col-lg-3 {
    margin-bottom: 30px;
  }
}



.Box4 {
  /* margin-top: 100px; */
  background-color: #F5F7FA;
  padding: 80px 0;
}

.Box4 .row {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 30px;
}


.Box4 .newTit {
  text-align: center;
  font-size: 48px;
  text-transform: capitalize;
  font-family: 'Titillium Web';
  margin-bottom: 40px;
}

.Box4 .newTit span {
  color: #054A94;
}

.Box4 .imgBox {
  overflow: hidden;
  height: 100%;
}

.Box4 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.Box4 ul {
  margin: 0;
}

.Box4 ul li a {
  display: flex;
  justify-content: space-between;
}

.Box4 ul li:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc57;
  padding-bottom: 20px;
}

.Box4 ul li .newImg {
  width: 20%;
  overflow: hidden;
}

.Box4 ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Box4 ul li .newtext {
  width: 80%;
  padding-left: 10px;
}

.Box4 ul li h6 {
  color: #222;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;

  transition: 0.4s;
}

.Box4 ul li p {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  color: #555;
}

.Box4 .row .row {
  margin-top: 0;
  height: 100%;

}

.Box4 ul li .newImg {
  overflow: hidden;
}

.Box4 ul li img {
  transition: 0.4s;
}

.Box4 ul li:hover img {
  transform: rotate(-10deg) scale(1.1);
}

.Box4 ul li:hover h6 {
  color: #054A94;
}

@media screen and (max-width:991px) {
  .Box4 .xws {
    margin-top: 40px;
  }
}

.Box5 {
  margin-top: 100px;
}

.Box5 .title {
  font-size: 48px;
  text-transform: capitalize;
  font-family: 'Titillium Web'
}

.Box5 .B5-1 .col-lg-4 {
  padding: 20px;
}

.Box5 .B5-1 .col-lg-4 .boxs {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}

.Box5 .B5-1 .col-lg-4 .boxs h5 {
  background: linear-gradient(135deg, #0b62c0, #069cff);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 10px;
  font-size: 30px;
}

.Box5 .B5-1 .col-lg-4 .boxs h6 {
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
}

.Box5 .B5-1 .col-lg-4 .boxs p {
  font-size: 14px;
  color: #777;
}

@media screen and (max-width:991px) {
  .Box5 .title{
    font-size: 35px;
  }
}



.Box6 {
  background-color: #054A94;
}

.Box6 .container-md {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}

.Box6 .container-md h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 35px;
  font-family: 'Titillium Web';
  max-width: 50%;
}

.Box6 .container-md a button {
  background: #fff;
  border-style: default;
  border-radius: 0px 0px 0px 0px;
  padding: 15px 50px 15px 50px;
  color: #222429;
  position: relative;
  transition: 0.5s;
  border: none;
  overflow: hidden;
  font-family: 'Titillium Web';
}

.Box6 .container-md a button::before {
  transition: 0.5s;
  position: absolute;
  width: 35%;
  height: 100%;
  content: "";
  bottom: 0;
  left: -38px;
  background: #22242926;
  z-index: 1;
  border-radius: 50px;

}

.Box6 .container-md a button:hover {
  color: #FFFFFF;
  background: #1B1A1A;
  border-style: default;
}

.Box6 .container-md a button:hover::before {
  width: 100%;
}


.Box7 {
  margin-top: 100px;
  background-color: #F5F7FA;
  padding: 60px 0 160px 0;
  background-image: url('../img/index/SumBj.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.Box7 .container-md.row {
  margin: 0 auto;
  text-align: center;
  color: balck;
  color: #fff;
}

.Box7 .container-md.row i {
  font-size: 50px;
}

.Box7 .container-md.row h5 {
  font-family: 'Titillium Web';
  font-size: 50px;
  font-weight: normal;
}

.Box7 .container-md.row p {
  font-size: 20px;
  font-weight: 400;
  margin: 8px 0 0;
}

.Box8 {
  top: -100px;
  position: relative;
}

.Box8 .container-md {
  background-color: white;
  text-align: center;
  padding: 50px 0 0 0;
}

.Box8 .container-md .t1 {
  color: #054A94;
  text-align: center;
  width: 100%;
  display: block;
  text-transform: uppercase;
  font-size: 18px;
}

.Box8 .container-md .t2 {
  text-transform: uppercase;
  font-family: 'Titillium Web';
  font-weight: bold;
  font-size: 50px;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.Box8 .container-md .col-lg-4.col-md-12.col-12 .pad {
  position: relative;
}

.Box8 .container-md .pad {
  /* overflow: hidden; */
  height: 100%;
}

.Box8 .container-md .box { 
  height: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.33); 
  transition: transform 0.3s ease; /* 明确指定过渡属性 */
    -webkit-transition: transform 0.3s ease; /* 增加webkit前缀 */
}
.Box8 .container-md .box:hover{
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px); /* 增加webkit前缀 */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); /* 悬停时调整阴影，增强视觉效果 */
}
.Box8 .container-md .box:nth-child(1){ 
  background: linear-gradient(to bottom, #1478e2, #054A94);
}
.Box8 .container-md .box:nth-child(2) {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, #054A94, #1478e2);
}

.Box8 .container-md .box h6 {
  color: white;
  font-weight: bold;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.Box8 .container-md .box ul{
  padding-left: 0;
  margin: 0;
}
.Box8 .container-md .box ul li a{
  font-size: 18px;
  line-height: 27px; 
  color: rgb(228, 228, 228);
} 



.Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad{
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.33); 
  overflow: hidden;
  transition: transform 0.3s ease; 
  -webkit-transition: transform 0.3s ease;  
}
.Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad:hover{
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);  
}
.Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: white;
}
.Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad .text h5{
  font-size: 50px;
  margin-bottom: 20px;
  
}
.Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad .text a{
  color: white;
  transition: 0.3s;
  position: relative; 
}
.Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad .text a::before{
  position: absolute;
  transition: 0.3s;
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: '';
  bottom: 0 ;
  left: 0;
}  

.Box8 .container-md img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:1200px) {
  .Box8 .container-md .t2{
    font-size: 40px;
  }
  .Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad .text h5{
    font-size: 35px;
  }
}
@media screen and (max-width:991px) {
  .Box8 .container-md .t2{
    max-width: 90%;
  }
}
@media screen and (max-width:768px) {
  .Box8 .container-md .t1{
    font-size: 16px;
  }
  .Box8 .container-md .t2{
    font-size: 33px;
  }
  .Box8 .container-md .col-lg-4.col-sm-6.col-12 .pad .text h5{
    font-size: 30px;
  }

}

 
.footer {
  margin-top: 0 !important;
}