@keyframes bounces {
  0%,
  15%,
  47%,
  73%,
  89%,
  100% {
    animation-timing-function: ease-out;
    transform: translate3d(0, 0, 0);
  }
  30%,
  32% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -10px, 0);
  }
  60% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -8px, 0);
  }
  82% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -4px, 0);
  }
  94% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -2px, 0);
  }
}
.slide-box {
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.slide-box ul li {
  margin-bottom: 60px;
  position: relative;
}
.slide-box ul li:after {
  content: '';
  width: 1px;
  height: 60px;
  background: #fff;
  opacity: 0.6;
  position: absolute;
  left: 8px;
  top: 16px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.slide-box ul li .dian {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.slide-box ul li .tu {
  position: absolute;
  left: -26px;
  top: -26px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0b419a;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.slide-box ul li .tu img {
  width: 30px;
}
.slide-box ul li .tu span {
  color: #fff;
  font-size: 12px;
  margin-top: 2px;
}
.slide-box ul li:nth-child(6):after {
  display: none;
}
.slide-box ul li:last-child {
  display: none;
}
.slide-box ul li.active .tu {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
}
.slide-box.active ul li:after {
  background: #0b419a;
}
.slide-box.active ul li .dian {
  border: 2px solid #0b419a;
}
.fp-tableCell {
  vertical-align: top;
}
.section {
  background: #ccc;
  overflow: hidden;
  position: relative;
}
.section01 .swiper-container .swiper-slide {
  overflow: hidden;
}
.section01 .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transition: all 3s;
  -webkit-transition: all 3s;
  -moz-transition: all 3s;
  -ms-transition: all 3s;
}
.section01 .swiper-container .swiper-slide .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 36%;
  text-align: center;
}
.section01 .swiper-container .swiper-slide .text .con h2 {
  font-weight: bold;
  color: #fff;
  letter-spacing: 16px;
}
.section01 .swiper-container .swiper-slide .text .con h3 {
  color: #fff;
  letter-spacing: 6px;
}
.section01 .swiper-container .swiper-slide-active img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
}
.section01 .swiper-container .swiper-pagination {
  display: none;
}
.section01 .swiper-container .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: none;
  left: 6%;
  margin-top: -30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section01 .swiper-container .swiper-button-prev:before {
  content: '\e601';
  font-family: iconfont;
  font-size: 40px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section01 .swiper-container .swiper-button-prev:after {
  display: none;
}
.section01 .swiper-container .swiper-button-prev:hover {
  background: #0b419a;
}
.section01 .swiper-container .swiper-button-next {
  width: 60px;
  height: 60px;
  background: none;
  right: 6%;
  margin-top: -30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section01 .swiper-container .swiper-button-next:before {
  content: '\e683';
  font-family: iconfont;
  font-size: 40px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section01 .swiper-container .swiper-button-next:after {
  display: none;
}
.section01 .swiper-container .swiper-button-next:hover {
  background: #0b419a;
}
.section01 .scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.section01 .scroll img {
  animation-name: bounces;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-fill-mode: both;
}
.section01 .scroll h2 {
  font-size: 14px;
  color: #fff;
  margin-top: 6px;
}
.section02 {
  background: url(../image/c2972375-c814-4643-8fc5-815e9381ad2b.jpg) no-repeat center center;
  background-size: cover;
}
.section02 .title {
  position: absolute;
  width: 100%;
  top: -200px;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section02 .title h2 {
  text-align: center;
  font-weight: bold;
  color: #333;
}
.section02 .con {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.section02 .con .s-box {
  width: 20%;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  top: 200px;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box:last-child {
  border-right: none;
}
.section02 .con .s-box a {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -14%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .tu {
  padding: 0 14%;
  height: 280px;
  display: flex;
  align-items: center;
}
.section02 .con .s-box a .tu .t-box {
  position: relative;
  top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .tu .t-box img {
  width: 100%;
}
.section02 .con .s-box a .tu .t-box img.color {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.section02 .con .s-box a .text {
  padding: 20% 20% 0 20%;
  background: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .text h3 {
  color: #666;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .text h2 {
  font-weight: bold;
  color: #000;
  margin: 4% 0 7%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .text .line {
  width: 48px;
  height: 2px;
  background: #000;
  opacity: 0.5;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .text .ul {
  margin-top: 10%;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .text .ul p {
  color: #fff;
  opacity: 0.8;
  line-height: 30px;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.section02 .con .s-box a .text .more {
  width: 60px;
  height: 60px;
  background: #fff;
  text-align: center;
  line-height: 60px;
  margin-top: 20%;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .s-box a .text .more span {
  font-weight: bold;
  font-size: 24px;
  color: #0b419a;
}
.section02 .con .s-box a:hover {
  bottom: 0;
}
.section02 .con .s-box a:hover .tu {
  align-items: flex-end;
}
.section02 .con .s-box a:hover .tu .t-box {
  top: 3.2vw;
}
.section02 .con .s-box a:hover .tu .t-box img.regular {
  opacity: 0;
}
.section02 .con .s-box a:hover .tu .t-box img.color {
  opacity: 1;
}
.section02 .con .s-box a:hover .text {
  background: #0b419a;
  padding: 24% 18% 24% 18%;
}
.section02 .con .s-box a:hover .text h3 {
  color: #fff;
}
.section02 .con .s-box a:hover .text h2 {
  color: #fff;
}
.section02 .con .s-box a:hover .text .line {
  background: #fff;
  opacity: 1;
}
.section02 .con .s-box a:hover .text .ul {
  opacity: 1;
}
.section02 .con .s-box a:hover .text .more {
  opacity: 1;
}
.section02 .con .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: none;
  left: 0;
  margin-top: -30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .swiper-button-prev:before {
  content: '\e601';
  font-family: iconfont;
  font-size: 40px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .swiper-button-prev:after {
  display: none;
}
.section02 .con .swiper-button-prev:hover {
  background: #0b419a;
}
.section02 .con .swiper-button-next {
  width: 60px;
  height: 60px;
  background: none;
  right: 0;
  margin-top: -30px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .swiper-button-next:before {
  content: '\e683';
  font-family: iconfont;
  font-size: 40px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section02 .con .swiper-button-next:after {
  display: none;
}
.section02 .con .swiper-button-next:hover {
  background: #0b419a;
}
.section02.active .title {
  top: 12%;
}
.section02.active .con .s-box {
  top: 0;
  opacity: 1;
}
.section02.active .con .s-box:nth-child(1) {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.section02.active .con .s-box:nth-child(2) {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.section02.active .con .s-box:nth-child(3) {
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
}
.section02.active .con .s-box:nth-child(4) {
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}
.section02.active .con .s-box:nth-child(5) {
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
}
.section03 {
  background: url(../image/c0a36508-98a3-42c2-ae3d-835a79ada487.jpg) no-repeat center center;
  background-size: cover;
}
.section03 .title-mobile {
  display: none;
}
.section03 .s-list .swiper-container .swiper-slide .left {
  float: left;
  width: 40.4%;
  height: 100%;
  position: relative;
  left: -300px;
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section03 .s-list .swiper-container .swiper-slide .left .text {
  position: absolute;
  width: 100%;
  padding: 0 10% 0 20%;
  top: 44%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.section03 .s-list .swiper-container .swiper-slide .left .text h2 {
  font-weight: bold;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .line {
  width: 30px;
  height: 1px;
  background: #333;
  margin: 3% 0 8%;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .title {
  display: flex;
  position: relative;
  top: 60px;
  opacity: 0;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .title img {
  position: relative;
  top: -4px;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .title h3 {
  font-weight: bold;
  margin-left: 8px;
}
.section03 .s-list .swiper-container .swiper-slide .left .text p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
  margin: 5% 0;
  position: relative;
  top: 60px;
  opacity: 0;
}
.section03 .s-list .swiper-container .swiper-slide .left .text ul {
  display: flex;
  position: relative;
  top: 60px;
  opacity: 0;
}
.section03 .s-list .swiper-container .swiper-slide .left .text ul li {
  height: 50px;
  display: flex;
  align-items: center;
  margin-right: 5%;
}
.section03 .s-list .swiper-container .swiper-slide .left .text ul li img {
  max-height: 50px;
}
.section03 .s-list .swiper-container .swiper-slide .left .text ul li:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
.section03 .s-list .swiper-container .swiper-slide .left .text .more {
  margin-top: 10%;
  position: relative;
  top: 60px;
  opacity: 0;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .more a {
  display: inline-block;
  color: #333;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .more a span {
  color: #cd0000;
  font-weight: bold;
  margin-left: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .more a:hover {
  color: #0b419a;
  padding-left: 10px;
}
.section03 .s-list .swiper-container .swiper-slide .left .text .more a:hover span {
  color: #0b419a;
}
.section03 .s-list .swiper-container .swiper-slide .right {
  float: right;
  width: 59.6%;
  height: 100%;
  opacity: 0;
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section03 .s-list .swiper-container .swiper-slide .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section03 .s-list .swiper-container .swiper-slide-active .left .text .title {
  top: 0;
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s-list .swiper-container .swiper-slide-active .left .text p {
  top: 0;
  opacity: 1;
  transition: all 0.5s ease 0.1s;
  -webkit-transition: all 0.5s ease 0.1s;
  -moz-transition: all 0.5s ease 0.1s;
  -ms-transition: all 0.5s ease 0.1s;
}
.section03 .s-list .swiper-container .swiper-slide-active .left .text ul {
  top: 0;
  opacity: 1;
  transition: all 0.5s ease 0.2s;
  -webkit-transition: all 0.5s ease 0.2s;
  -moz-transition: all 0.5s ease 0.2s;
  -ms-transition: all 0.5s ease 0.2s;
}
.section03 .s-list .swiper-container .swiper-slide-active .left .text .more {
  top: 0;
  opacity: 1;
  transition: all 0.5s ease 0.3s;
  -webkit-transition: all 0.5s ease 0.3s;
  -moz-transition: all 0.5s ease 0.3s;
  -ms-transition: all 0.5s ease 0.3s;
}
.section03 .s-list .swiper-container .swiper-pagination {
  display: none;
}
.section03 .s3-wrapper {
  position: absolute;
  width: 84%;
  left: 8%;
  bottom: 6%;
  z-index: 2;
}
.section03 .s3-wrapper .swiper-container {
  padding-top: 64px;
}
.section03 .s3-wrapper ul li {
  padding: 36px 0 36px 36px;
  background: #fff;
  position: relative;
  top: 200px;
  opacity: 0;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s3-wrapper ul li:after {
  content: '';
  width: 1px;
  height: 64px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.section03 .s3-wrapper ul li:before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../image/e9b6d59e-18e8-48f3-b14e-50eafbc7828c.jpg);
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  z-index: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s3-wrapper ul li h3 {
  color: #333;
  opacity: 0.6;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s3-wrapper ul li h2 {
  color: #333;
  font-weight: bold;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s3-wrapper ul li:nth-child(2):before {
  background-image: url(../image/47abdb0f-bba1-4648-8bbb-22651734f5b7.jpg);
}
.section03 .s3-wrapper ul li:nth-child(3):before {
  background-image: url(../image/05f4f9ce-0e52-4d1f-9408-3e208660710f.jpg);
}
.section03 .s3-wrapper ul li:nth-child(4):before {
  background-image: url(../image/0041b4be-5bf4-4443-a40a-d700a4c0d590.jpg);
}
.section03 .s3-wrapper ul li:nth-child(5):before {
  background-image: url(../image/0475b7ed-508c-4661-9936-ed4b240015fd.jpg);
}
.section03 .s3-wrapper ul li:nth-child(6):before {
  background-image: url(../image/b49bc438-c64b-44ba-8776-1f1953e00cbd.jpg);
}
.section03 .s3-wrapper ul li.active:before {
  height: 120%;
  opacity: 1;
}
.section03 .s3-wrapper ul li.active h3 {
  color: #fff;
  opacity: 1;
}
.section03 .s3-wrapper ul li.active h2 {
  color: #fff;
}
.section03 .s3-wrapper .swiper-button-prev {
  width: 60px;
  height: 60px;
  left: -60px;
  top: 50%;
  margin-top: 0;
  background: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s3-wrapper .swiper-button-prev:before {
  content: '\e601';
  font-family: iconfont;
  font-size: 30px;
  color: #0b419a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s3-wrapper .swiper-button-next {
  width: 60px;
  height: 60px;
  right: -60px;
  top: 50%;
  margin-top: 0;
  background: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .s3-wrapper .swiper-button-next:before {
  content: '\e683';
  font-family: iconfont;
  font-size: 30px;
  color: #0b419a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03.active .s-list .swiper-container .swiper-slide .left {
  left: 0;
  opacity: 1;
}
.section03.active .s-list  .swiper-container .swiper-slide .right {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
}
.section03.active .s3-wrapper ul li {
  top: 0;
  opacity: 1;
}
.section03.active .s3-wrapper ul li:nth-child(1) {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.section03.active .s3-wrapper ul li:nth-child(2) {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.section03.active .s3-wrapper ul li:nth-child(3) {
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
}
.section03.active .s3-wrapper ul li:nth-child(4) {
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}
.section03.active .s3-wrapper ul li:nth-child(5) {
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
}
.section03.active .s3-wrapper ul li:nth-child(6) {
  transition-delay: 0.9s;
  -webkit-transition-delay: 0.9s;
}
.section04 {
  background: url(../image/e25f5f9e-a51a-42b1-b89d-b7995915ba48.jpg) no-repeat center center;
  background-size: cover;
}
.section04 .title {
  position: relative;
  top: 24%;
  left: -200px;
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section04 .title h2 {
  color: #fff;
  font-weight: bold;
}
.section04 .title a {
  display: inline-block;
  margin-top: 2%;
  color: #fff;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .title a span {
  color: #cd0000;
  font-weight: bold;
  margin-left: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .title a:hover {
  padding-left: 10px;
}
.section04 .title a:hover span {
  color: #fff;
}
.section04 .s4-wrapper {
  position: absolute;
  width: 84%;
  left: 8%;
  bottom: 10%;
}
.section04 .s4-wrapper ul li {
  float: left;
  width: 23.5%;
  height: 0;
  padding-bottom: 15%;
  overflow: hidden;
  position: relative;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .s4-wrapper ul li:not(:nth-child(4n)) {
  margin-right: 2%;
}
.section04 .s4-wrapper ul li img {
  width: 100%;
}
.section04 .s4-wrapper ul li .text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 12% 30% 0 10%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .s4-wrapper ul li .text h2 {
  font-weight: bold;
  color: #333;
  position: relative;
  z-index: 2;
}
.section04 .s4-wrapper ul li .text p {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 4.5em;
  color: #333;
  opacity: 0.8;
  margin: 12px 0 10px;
  position: relative;
  z-index: 2;
}
.section04 .s4-wrapper ul li .text span {
  display: none;
}
.section04 .s4-wrapper ul li .mask-text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(11, 65, 154, 0.9);
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .s4-wrapper ul li .mask-text .center {
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.section04 .s4-wrapper ul li .mask-text .center h2 {
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 2;
}
.section04 .s4-wrapper ul li .mask-text .center p {
  color: #fff;
  opacity: 0.8;
  margin: 12px 0 10px;
  position: relative;
  z-index: 2;
}
.section04 .s4-wrapper ul li .mask-text .center span {
  font-size: 20px;
  color: #fff;
  opacity: 1;
  position: relative;
  left: -10px;
  z-index: 2;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .s4-wrapper ul li:nth-child(even) .text h2 {
  color: #fff;
}
.section04 .s4-wrapper ul li:nth-child(even) .text p {
  color: #fff;
}
.section04 .s4-wrapper ul li:nth-child(even) .text span {
  color: #fff;
}
.section04 .s4-wrapper ul li:hover .text {
  opacity: 0;
}
.section04 .s4-wrapper ul li:hover .mask-text {
  opacity: 1;
}
.section04 .s4-wrapper ul li:hover .mask-text span {
  left: 0;
}
.section04.active .title {
  left: 8%;
  opacity: 1;
}
.section04.active .s4-wrapper ul li {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  opacity: 1;
}
.section04.active .s4-wrapper ul li:nth-child(1) {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.section04.active .s4-wrapper ul li:nth-child(2) {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.section04.active .s4-wrapper ul li:nth-child(3) {
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
}
.section04.active .s4-wrapper ul li:nth-child(4) {
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}
.section04.active .s4-wrapper ul li:nth-child(5) {
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
}
.section04.active .s4-wrapper ul li:nth-child(6) {
  transition-delay: 0.9s;
  -webkit-transition-delay: 0.9s;
}
.section05 {
  background: url(../image/27b712d1-46e4-4f64-92b5-c6512b09cf42.jpg) no-repeat center center;
  background-size: cover;
}
.section05 .con {
  position: absolute;
  width: 84%;
  left: 8%;
  top: 53%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.section05 .con .title {
  position: relative;
  top: -200px;
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section05 .con .title h2 {
  text-align: center;
  font-weight: bold;
}
.section05 .con .news-con {
  position: relative;
  margin-top: 2%;
}
.section05 .con .news-con .left {
  float: left;
  width: 52%;
  position: absolute;
  height: 100%;
  left: -200px;
  top: 0;
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section05 .con .news-con .left .swiper-container {
  position: relative;
  height: 100%;
}
.section05 .con .news-con .left .swiper-container .swiper-slide {
  position: relative;
  height: 100%;
}
.section05 .con .news-con .left .swiper-container .swiper-slide .top {
  position: relative;
  height: 72%;
  overflow: hidden;
}
.section05 .con .news-con .left .swiper-container .swiper-slide .top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section05 .con .news-con .left .swiper-container .swiper-slide .bottom {
  position: relative;
  height: 28%;
  background: #0b419a;
}
.section05 .con .news-con .left .swiper-container .swiper-slide .bottom .text {
  position: absolute;
  width: 86%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.section05 .con .news-con .left .swiper-container .swiper-slide .bottom .text h3 {
  color: #fff;
  opacity: 0.6;
}
.section05 .con .news-con .left .swiper-container .swiper-slide .bottom .text h2 {
  font-weight: bold;
  color: #fff;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 1.5em;
  margin: 1% 0;
}
.section05 .con .news-con .left .swiper-container .swiper-slide .bottom .text p {
  color: #fff;
  opacity: 0.8;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 3em;
}
.section05 .con .news-con .left .swiper-container .swiper-slide:hover .top img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.section05 .con .news-con .left .swiper-container .swiper-pagination {
  display: none;
}
.section05 .con .news-con .left .swiper-container .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: #fff;
  left: 7%;
  top: 57%;
  margin-top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .news-con .left .swiper-container .swiper-button-prev:before {
  content: '\e601';
  font-family: iconfont;
  font-size: 30px;
  color: #0b419a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .news-con .left .swiper-container .swiper-button-prev:hover {
  background: #0b419a;
}
.section05 .con .news-con .left .swiper-container .swiper-button-prev:hover:before {
  color: #fff;
}
.section05 .con .news-con .left .swiper-container .swiper-button-next {
  width: 60px;
  height: 60px;
  background: #fff;
  right: auto;
  left: 16%;
  top: 57%;
  margin-top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .news-con .left .swiper-container .swiper-button-next:before {
  content: '\e683';
  font-family: iconfont;
  font-size: 30px;
  color: #0b419a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .news-con .left .swiper-container .swiper-button-next:hover {
  background: #0b419a;
}
.section05 .con .news-con .left .swiper-container .swiper-button-next:hover:before {
  color: #fff;
}
.section05 .con .news-con .right {
  float: right;
  width: 46%;
}
.section05 .con .news-con .right ul li {
  padding: 4% 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  left: 200px;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .news-con .right ul li .tu {
  float: left;
  width: 40.7%;
  height: 0;
  padding-bottom: 23%;
  overflow: hidden;
}
.section05 .con .news-con .right ul li .tu img {
  width: 100%;
}
.section05 .con .news-con .right ul li .text {
  float: right;
  width: 54.5%;
  padding-top: 1%;
}
.section05 .con .news-con .right ul li .text h3 {
  color: #999;
}
.section05 .con .news-con .right ul li .text h2 {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  margin: 4% 0 2%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .news-con .right ul li .text p {
  color: #666;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 4.5em;
  line-height: 1.6;
  height: 4.8em;
  text-align: justify;
}
.section05 .con .news-con .right ul li:first-child {
  padding-top: 0;
}
.section05 .con .news-con .right ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.section05 .con .news-con .right ul li:hover .tu img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.section05 .con .news-con .right ul li:hover .text h2 {
  color: #0b419a;
}
.section05 .con .more {
  margin-top: 2%;
  text-align: center;
  position: relative;
  bottom: -200px;
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section05 .con .more a {
  display: inline-block;
  color: #333;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .more a span {
  color: #cd0000;
  font-weight: bold;
  margin-left: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .more a:hover {
  color: #0b419a;
  padding-left: 10px;
}
.section05 .con .more a:hover span {
  color: #0b419a;
}
.section05.active .con .title {
  opacity: 1;
  top: 0;
}
.section05.active .con .news-con .left {
  left: 0;
  opacity: 1;
}
.section05.active .con .news-con .right ul li {
  left: 0;
  opacity: 1;
}
.section05.active .con .news-con .right ul li:nth-child(1) {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.section05.active .con .news-con .right ul li:nth-child(2) {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.section05.active .con .news-con .right ul li:nth-child(3) {
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
}
.section05.active .con .news-con .right ul li:nth-child(4) {
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}
.section05.active .con .news-con .right ul li:nth-child(5) {
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
}
.section05.active .con .news-con .right ul li:nth-child(6) {
  transition-delay: 0.9s;
  -webkit-transition-delay: 0.9s;
}
.section05.active .con .more {
  opacity: 1;
  bottom: 0;
}
.section06 {
  background: url(../image/cf304f3d-2232-43cf-a7f5-26fe988f5eac.jpg) no-repeat center center;
  background-size: cover;
}
.section06 .con {
  padding-left: 8%;
  position: relative;
  width: 100%;
  height: 100%;
}
.section06 .con .title {
  position: absolute;
  left: -200px;
  opacity: 0;
  top: 16%;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section06 .con .title h2 {
  color: #fff;
  font-weight: bold;
}
.section06 .con .swiper-container {
  height: 100%;
  padding-right: 15%;
}
.section06 .con .swiper-container .swiper-wrapper {
  height: 100%;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide {
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  top: 200px;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text {
  position: absolute;
  width: 100%;
  top: 53%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  opacity: 1;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h3 {
  color: #fff;
  opacity: 0.6;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h2 {
  color: #fff;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 3em;
  padding-right: 10%;
  margin: 4% 0 8%;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h4 {
  margin-bottom: 6%;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h4 span {
  margin-left: 4px;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text .tu {
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text .tu img {
  width: 100%;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text:hover h4 {
  color: #0b419a;
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide .text:hover .tu img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.section06 .con .swiper-container .swiper-wrapper .swiper-slide.hide .text {
  opacity: 0.4;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section06 .con .swiper-container .swiper-pagination {
  display: none;
}
.section06 .con .swiper-container .swiper-button-prev {
  width: 60px;
  height: 60px;
  background: #fff;
  left: 0;
  top: auto;
  bottom: -100%;
  margin-top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section06 .con .swiper-container .swiper-button-prev:before {
  content: '\e601';
  font-family: iconfont;
  font-size: 30px;
  color: #0b419a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section06 .con .swiper-container .swiper-button-prev:hover {
  background: #0b419a;
}
.section06 .con .swiper-container .swiper-button-prev:hover:before {
  color: #fff;
}
.section06 .con .swiper-container .swiper-button-next {
  width: 60px;
  height: 60px;
  background: #fff;
  right: auto;
  left: 70px;
  top: auto;
  bottom: -100%;
  margin-top: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section06 .con .swiper-container .swiper-button-next:before {
  content: '\e683';
  font-family: iconfont;
  font-size: 30px;
  color: #0b419a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section06 .con .swiper-container .swiper-button-next:hover {
  background: #0b419a;
}
.section06 .con .swiper-container .swiper-button-next:hover:before {
  color: #fff;
}
.section06.active .con .title {
  left: 8%;
  opacity: 1;
}
.section06.active .con .swiper-container .swiper-wrapper .swiper-slide {
  top: 0;
  opacity: 1;
}
.section06.active .con .swiper-container .swiper-wrapper .swiper-slide:nth-child(1) {
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.section06.active .con .swiper-container .swiper-wrapper .swiper-slide:nth-child(2) {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}
.section06.active .con .swiper-container .swiper-wrapper .swiper-slide:nth-child(3) {
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
}
.section06.active .con .swiper-container .swiper-wrapper .swiper-slide:nth-child(4) {
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}
.section06.active .con .swiper-container .swiper-button-prev {
  bottom: 8%;
}
.section06.active .con .swiper-container .swiper-button-next {
  bottom: 8%;
}
@media screen and (max-width: 1600px) {
  .section02 .con .s-box a {
    bottom: -20%;
  }
  .section04 .s4-wrapper ul li .text {
    padding: 10% 25% 0  10%;
  }
  .section04 .s4-wrapper ul li .text p {
    font-size: 14px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-next {
    left: 18%;
  }
  .section03 .swiper-container .swiper-slide .left .text .more{
  	margin-top:6%;
  }
  .section03 .s3-wrapper{
  	bottom:5%;
  }
    .section03 .s3-wrapper ul li {
    padding: 30px 0 30px 30px;
  }
}
@media screen and (max-width: 1440px) {
  .slide-box {
    right: 40px;
  }
  .slide-box ul li {
    margin-bottom: 50px;
  }
  .slide-box ul li:after {
    height: 50px;
    left: 7px;
    top: 14px;
  }
  .slide-box ul li .dian {
    width: 14px;
    height: 14px;
  }
  .slide-box ul li .tu {
    width: 60px;
    height: 60px;
    left: -22px;
    top: -22px;
  }
  .slide-box ul li .tu img {
    width: 26px;
  }
   .section01 .swiper-container .swiper-slide .text .con h3{
        letter-spacing: 2px;
    }
  .section01 .scroll {
    bottom: 30px;
  }
  .section01 .scroll img {
    width: 24px;
  }
    .section01 .swiper-container .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .section01 .swiper-container .swiper-button-next:before {
    font-size: 32px;
  }
  .section01 .swiper-container .swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .section01 .swiper-container .swiper-button-prev:before {
    font-size: 32px;
  }
  .section02 .con .s-box a .tu {
    height: 200px;
  }
  .section02 .con .s-box a .text {
    padding: 20% 16% 0 16%;
  }
  .section02 .con .s-box a .text .ul p {
    font-size: 14px;
    line-height: 28px;
  }
  .section02 .con .s-box a .text .more {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .section02 .con .s-box a:hover .text {
    padding: 20% 16% 20% 16%;
  }
    .section03 .s3-wrapper ul li {
    padding: 30px 0 30px 30px;
  }
  .section04 .s4-wrapper ul li .text {
    padding: 8% 25% 0 10%;
  }
  .section04 .s4-wrapper ul li .text p {
    margin: 10px 0 8px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-slide .bottom .text h3 {
    font-size: 14px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-next {
    width: 50px;
    height: 50px;
    left: 17%;
  }
  .section05 .con .news-con .right ul li .text h3 {
    font-size: 14px;
  }
  .section05 .con .news-con .right ul li .text h2 {
    margin: 3% 0 2%;
  }
  .section05 .con .news-con .right ul li .text p {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.5;
    height: 3em;
    line-height: 1.6;
    height: 3.2em;
  }
  .section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h3 {
    font-size: 14px;
  }
  .section06 .con .swiper-container .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
  .section06 .con .swiper-container .swiper-button-next {
    width: 50px;
    height: 50px;
    left: 60px;
  }
}
@media screen and (max-width: 1366px) {
  .fnt_40 {
    font-size: 22px;
  }
  .fnt_24 {
    font-size: 16px;
  }
  .section02 .con .s-box a .tu {
    height: 160px;
  }
  .section02 .con .s-box a .tu {
    padding: 0 20%;
  }
  .section02 .con .s-box a .text {
    padding: 0% 12% 0% 12%;
  }
  .section02 .con .s-box a:hover .text {
    padding: 8% 12% 10% 12%;
  }
  .section02 .con .s-box a .text .more {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin-top: 10%;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text p {
    font-size: 14px;
  }
  .section03  .s-list  .swiper-container .swiper-slide .left .text .more {
    margin-top: 6%;
  }
  .section03 .s3-wrapper ul li {
    padding: 20px 0 20px 20px;
  }
  .section05 .con {
    width: 76%;
    left: 12%;
  }
  .section05 .con .news-con .right ul li {
    padding: 2% 0;
  }
  .section05 .con .news-con {
    margin-top: 1%;
  }
  .section06 .con .title {
    top: 14%;
  }
  .section06 .con .swiper-container .swiper-button-prev {
    width: 44px;
    height: 44px;
  }
  .section06.active .con .swiper-container .swiper-button-prev {
    bottom: 4%;
  }
  .section06 .con .swiper-container .swiper-button-next {
    width: 44px;
    height: 44px;
  }
  .section06.active .con .swiper-container .swiper-button-next {
    bottom: 4%;
  }
  .footer {
    padding-top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .section01 .scroll img {
    width: 20px;
  }
   .section04 .s4-wrapper ul li .text h2 {
    font-size: 18px;
  }
  .section04 .s4-wrapper ul li .mask-text .center {
    width: 90%;
  }
  .section04 .s4-wrapper ul li .mask-text .center h2 {
    font-size: 18px;
  }
  .section04 .s4-wrapper ul li .mask-text .center p {
    margin: 8px 0 4px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-slide .bottom .text h2 {
    font-size: 16px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-next {
    left: 18%;
    top: 56%;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-prev {
    top: 56%;
  }
  .section05 .con .news-con .right ul li .text h2 {
    font-size: 16px;
  }
  .section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h2 {
    font-size: 16px;
  }
  .section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .slide-box {
    display: none;
  }
  .section01 {
    margin-top: 64px;
  }
  .section02 .con {
    height: 540px;
  }
  .section02 .con .s-box a {
    bottom: -25%;
  }
  .section02 .con .s-box a .tu {
    height: 120px;
  }
  .section02 .con .s-box a .text {
    padding: 14px 14px 0 14px;
  }
  .section02 .con .s-box a:hover .text {
    padding: 20px 14px 30px 14px;
  }
  .section02.active .title {
    top: 40px;
  }
  .section03 .s-list .swiper-container .swiper-slide .left {
    position: absolute;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text {
    padding: 0 10% 0 12%;
    top: 38%;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text p {
    font-size: 14px;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text ul li {
    height: 40px;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text .more a {
    font-size: 14px;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text .more a span {
    font-size: 14px;
    margin-left: 4px;
  }
  .section03 .s3-wrapper {
    width: 90%;
    left: 5%;
  }
  .section03 .s3-wrapper ul li {
    padding: 14px 0 14px 20px;
  }
  .section03 .s3-wrapper ul li h3 {
    font-size: 14px;
  }
  .section03 .s3-wrapper ul li.active:before {
    height: 114%;
  }
  .section04 {
    height: 500px;
  }
  .section04 .title {
    top: 16%;
  }
  .section04 .title a {
    font-size: 14px;
  }
  .section04 .title a span {
    font-size: 14px;
    margin-left: 4px;
  }
   .section04 .s4-wrapper ul li .text {
    padding: 16px 14px 0 14px;
    opacity: 1!important;
  }
  .section04 .s4-wrapper ul li .text h2 {
    font-size: 16px;
  }
  .section04 .s4-wrapper ul li .text p {
    display: none;
  }
  .section04 .s4-wrapper ul li .text span {
    display: block;
    margin-top: 50px;
  }
  .section04 .s4-wrapper ul li .mask-text {
    display: none;
  }
  .section04 .s4-wrapper ul li .mask-text .center h2 {
    font-size: 16px;
  }
  .section04 .s4-wrapper ul li .mask-text .center p {
    margin: 4px 0 2px;
  }
  .section04 .s4-wrapper ul li .mask-text .center span {
    display: none;
  }
  .section05 {
    padding: 40px 0;
  }
  .section05 .con {
    position: relative;
    width: 90%;
    left: 5%;
    top: 0;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }
  .section05 .con .news-con {
    margin-top: 30px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-prev {
    left: 30px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-next {
    left: 90px;
  }
  .section05 .con .news-con .right ul li {
    padding: 20px 0;
  }
  .section05 .con .news-con .right ul li .text {
    padding-top: 0;
  }
  .section05 .con .news-con .right ul li .text h2 {
    margin: 2% 0 2%;
  }
  .section05 .con .more {
    margin-top: 30px;
  }
  .section05 .con .more a {
    font-size: 14px;
  }
  .section05 .con .more a span {
    font-size: 14px;
    margin-left: 4px;
  }
  .section06 {
    height: 540px;
  }
  .section06 .con .title {
    top: 40px;
  }
  .section06 .con .swiper-container .swiper-wrapper .swiper-slide .text {
    top: 50%;
  }
   .footer {
    padding-top:30px;
  }
}
@media screen and (max-width: 768px) {
  .section01 {
    margin-top: 56px;
  }
  .section01 .swiper-container .swiper-slide .text .con h2{
        letter-spacing: 6px;
        font-size: 20px;
    }
    .section01 .swiper-container .swiper-slide .text .con h3{
        letter-spacing: 0;
        font-size: 14px;
    }
  .section01 .swiper-container .swiper-pagination {
    display: block;
  }
  .section01 .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #0b419a;
  }
    .section01 .swiper-container .swiper-button-prev {
    display: none;
  }
  .section01 .swiper-container .swiper-button-next {
    display: none;
  }
  .section01 .scroll {
    display: none;
  }
  .section02 {
    padding: 30px 0 0;
  }
  .section02 .title {
    position: relative;
    top: 0!important;
  }
  .section02 .con {
    height: 900px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
    .section02 .con .swiper-wrapper {
    flex-wrap: wrap;
  }
  .section02 .con .s-box {
    width: 50%!important;
    height: 300px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
  }
  .section02 .con .s-box a {
    bottom: 0!important;
  }
  .section02 .con .s-box a .tu {
    height: 140px;
    align-items: center!important;
  }
  .section02 .con .s-box a .tu .t-box {
    top: 0!important;
  }
  .section02 .con .s-box a .tu .t-box img.regular {
    opacity: 0!important;
  }
  .section02 .con .s-box a .tu .t-box img.color {
    opacity: 1!important;
  }
  .section02 .con .s-box a .text {
    padding: 0 14px 20px 14px!important;
    background: none!important;
  }
  .section02 .con .s-box a .text h3 {
    color: #666 !important;
  }
  .section02 .con .s-box a .text h2 {
    color: #000 !important;
    margin: 8px 0 14px;
  }
  .section02 .con .s-box a .text .line {
    background: #000 !important;
    width: 38px;
    height: 1px;
  }
  .section02 .con .s-box a .text .ul {
    display: none;
  }
  .section02 .con .s-box a .text .more {
    width: 40px;
    height: 40px;
    line-height: 40px;
    opacity: 1;
    background: #0b419a;
    margin-top: 30px;
  }
  .section02 .con .s-box a .text .more span {
    color: #fff;
    font-size: 16px;
  }
  .section02 .con .s-box:nth-child(4) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .section02 .con .s-box:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .section02 .con .s-box:nth-child(even) {
    border-right: none;
  }
  .section03 {
    padding: 30px 0;
  }
  .section03 .s3-wrapper {
    display: none;
  }
  .section03 .title-mobile {
    display: block;
  }
  .section03 .title-mobile h2 {
    text-align: center;
    color: #333;
    font-weight: bold;
  }
  .section03 .s-list .swiper-container {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .section03 .s-list .swiper-container .swiper-slide .left {
    width: 100%;
    position: relative;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text {
    padding: 30px 5% 0;
    position: relative;
    top: 0;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text h2 {
    display: none;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text .line {
    display: none;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text .title img {
    width: 30px;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text p {
    margin: 20px 0 30px;
  }
  .section03 .s-list .swiper-container .swiper-slide .left .text .more {
    margin-top: 30px;
  }
  .section03 .s-list .swiper-container .swiper-slide .right {
    width: 100%;
    padding: 0 5%;
  }
  .section03 .s-list .swiper-container .swiper-pagination {
    display: block;
    bottom: 0;
  }
  .section03 .s-list .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #0b419a;
  }
  .section04 {
    height: 400px;
  }
  .section04 .title {
    top: 30px;
  }
  .section04 .title a {
    margin-top: 20px;
  }
  .section04 .s4-wrapper {
    width: 90%;
    left: 5%;
    bottom: 20px;
  }
  .section04 .s4-wrapper ul li {
    width: 49%;
    padding-bottom: 31%;
  }
  .section04 .s4-wrapper ul li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .section04 .s4-wrapper ul li:nth-child(odd) {
    margin-right: 2%;
  }
  .section04 .s4-wrapper ul li:nth-child(n+3) {
    margin-top: 10px;
  }
  .section04 .s4-wrapper ul li .text span {
    margin-top: 26px;
  }

  .section04.active .title {
    left: 5%;
  }
  .section05 {
    padding: 30px 0;
  }
  .section05 .con .title {
    opacity: 1;
    top: 0;
  }
  .section05 .con .news-con .left {
    float: left;
    width: 100%;
    position: relative;
  }
  .section05 .con .news-con .left .swiper-container {
    padding-bottom: 40px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-slide .bottom {
    padding: 20px;
  }
  .section05 .con .news-con .left .swiper-container .swiper-slide .bottom .text {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
  }
  .section05 .con .news-con .left .swiper-container .swiper-pagination {
    display: block;
    bottom: 0;
  }
  .section05 .con .news-con .left .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #0b419a;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-prev {
    display: none;
  }
  .section05 .con .news-con .left .swiper-container .swiper-button-next {
    display: none;
  }
  .section05 .con .news-con .right {
    width: 100%;
    margin-top: 30px;
  }
  .section05 .con .news-con .right ul li .text h2 {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.5;
    height: 3em;
    white-space: inherit;
  }
  .section05 .con .news-con .right ul li .text p {
    display: none;
  }
  .section06 {
    height: 500px;
  }
  .section06 .con {
    padding-left: 5%;
  }
  .section06 .con .title {
    left: 5%!important;
  }
  .section06 .con .swiper-container .swiper-wrapper .swiper-slide .text {
    top: 52%;
  }
  .section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h2 {
    margin: 10px 0 20px;
    padding-right: 20px;
  }
  .section06 .con .swiper-container .swiper-wrapper .swiper-slide .text h4 {
    margin-bottom: 20px;
  }
  .section06 .con .swiper-container .swiper-pagination {
    display: block;
    bottom: 30px;
    left: -2.5%;
  }
  .section06 .con .swiper-container .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
  }
  .section06 .con .swiper-container .swiper-button-prev {
    display: none;
  }
  .section06 .con .swiper-container .swiper-button-next {
    display: none;
  }
}