@keyframes round {
  0% {
    stroke-dashoffset: -2000;
  }
  100% {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
  }
}
.section {
  overflow: hidden;
  position: relative;
}

#fullpage {
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
#fullpage.active {
  opacity: 1;
}
.section01{
  position: relative;
  width: 100%;
}
.section01 video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.section02 {
  position: relative;
  width: 100%;
}
.section02 .tu {
  position: relative;
  width: 100%;
  height: 100vh;
  
}
.section02 .tu video,
.section02 .tu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section02 .svg-box {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.section02 .svg-box .box {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  opacity: 0;
}
.section02 .svg-box svg {
  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%);
}
.section02 .svg-box svg g {
  transform-origin: center;
}
.section02 .svg-box svg g rect {
  stroke-dasharray: 2000;
  stroke-dashoffset: -2000;
}
.section02 .svg-box .tu {
  position: absolute;
  width: 35px;
  height: 38px;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  opacity: 0;
}
.section02 .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
.section02 .text h2 {
  font-weight: 500;
  position: relative;
  opacity: 0;
}
.section02 .text h2.t1 {
  top: -40px;
}
.section02 .text h2.t2 {
  top: 40px;
}
.section02 .text h3 {
  margin-top: 2vw;
  opacity: 0;
}
.section02.active .svg-box .box {
  opacity: 1;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section02.active .svg-box svg g rect {
  animation: round 2s 1s linear forwards;
}
.section02.active .svg-box .tu {
  bottom: -56px;
  opacity: 1;
  transition: all 1s ease 1.5s;
  -webkit-transition: all 1s ease 1.5s;
  -moz-transition: all 1s ease 1.5s;
  -ms-transition: all 1s ease 1.5s;
}
.section02.active .text h2 {
  opacity: 1;
}
.section02.active .text h2.t1 {
  top: 0;
  transition: all 1s ease 1s;
  -webkit-transition: all 1s ease 1s;
  -moz-transition: all 1s ease 1s;
  -ms-transition: all 1s ease 1s;
}
.section02.active .text h2.t2 {
  top: 0;
  transition: all 1s ease 1s;
  -webkit-transition: all 1s ease 1s;
  -moz-transition: all 1s ease 1s;
  -ms-transition: all 1s ease 1s;
}
.section02.active .text h3 {
  opacity: 1;
  transition: all 1s ease 1.5s;
  -webkit-transition: all 1s ease 1.5s;
  -moz-transition: all 1s ease 1.5s;
  -ms-transition: all 1s ease 1.5s;
}
/*--end-*/
.section02 .swiper-slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.section02 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 4s linear;
  transform: scale(1.1, 1.1);
}
.section02 .swiper-slide .text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30%;
  color: #fff;
}
.section02 .swiper-slide .text h2 {
  width: 450px;
  display: inline-block;
  overflow: hidden;
}
.section02 .swiper-slide .text h2 span {
  display: inline-block;
  font-family: MEBHeiHeiTi;
  font-size: 80px;
  letter-spacing: 8px;
  opacity: 0;
  transform: translateX(450px);
  box-shadow: 5px 9px 35px 0px rgba(35, 78, 109, 0.97);
}
.section02 .swiper-slide .text h3 {
  margin-top: 1vw;
  opacity: 0;
}
.section02 .swiper-slide .text .line {
  margin-top: 3vw;
  width: 0;
  height: 8px;
  background: var(--green);
}
.section02 .swiper-slide-active img {
  transform: scale(1, 1);
}
.section02 .swiper-slide-active .text h2 {
  width: auto;
}
.section02 .swiper-slide-active .text h2 span {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.5s ease 1s;
  -webkit-transition: all 1.5s ease 1s;
  -moz-transition: all 1.5s ease 1s;
  -ms-transition: all 1.5s ease 1s;
}
.section02 .swiper-slide-active .text h3 {
  opacity: 1;
  transition: all 1s ease 1s;
  -webkit-transition: all 1s ease 1s;
  -moz-transition: all 1s ease 1s;
  -ms-transition: all 1s ease 1s;
}
.section02 .swiper-slide-active .text .line {
  width: 100%;
  transition: all 4s ease 1s;
  -webkit-transition: all 4s ease 1s;
  -moz-transition: all 4s ease 1s;
  -ms-transition: all 4s ease 1s;
}
.section02 .swiper-pagination {
  display: none;
}
.section03 .video {
  width: 100%;
  height: 100vh;
}
.section03 .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section03 .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #fff;
}
.section03 .text h2 {
  font-weight: 700;
  opacity: 0;
  transform: translateX(100px);
}
.section03 .text ul {
  margin-top: 2vw;
}
.section03 .text ul li {
  max-width: 100%;
  width: 450px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
}
.section03 .text ul li:before {
  content: '';
  width: 0;
  height: 100%;
  background: var(--green);
  background-image: linear-gradient(to right, #bae0f1, #005da7);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}
.section03 .text ul li .box {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  padding: 0 30px;
  height: 70px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section03 .text ul li .box .logo {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section03 .text ul li .box h3 {
  margin-left: 16px;
}
.section03 .text ul li:hover:before {
  width: 100%;
}
.section03.active .text h2 {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease 0.5s;
  -webkit-transition: all 1s ease 0.5s;
  -moz-transition: all 1s ease 0.5s;
  -ms-transition: all 1s ease 0.5s;
}
.section03.active .text ul li {
  transform: translateX(0);
  opacity: 1;
}
.section03.active .text ul li:nth-child(1) {
  transition: all 0.5s ease 1s;
  -webkit-transition: all 0.5s ease 1s;
  -moz-transition: all 0.5s ease 1s;
  -ms-transition: all 0.5s ease 1s;
}
.section03.active .text ul li:nth-child(2) {
  transition: all 0.5s ease 1.2s;
  -webkit-transition: all 0.5s ease 1.2s;
  -moz-transition: all 0.5s ease 1.2s;
  -ms-transition: all 0.5s ease 1.2s;
}
.section03.active .text ul li:nth-child(3) {
  transition: all 0.5s ease 1.4s;
  -webkit-transition: all 0.5s ease 1.4s;
  -moz-transition: all 0.5s ease 1.4s;
  -ms-transition: all 0.5s ease 1.4s;
}
.section03.active .text ul li:nth-child(4) {
  transition: all 0.5s ease 1.6s;
  -webkit-transition: all 0.5s ease 1.6s;
  -moz-transition: all 0.5s ease 1.6s;
  -ms-transition: all 0.5s ease 1.6s;
}
.section03.active .text ul li:nth-child(5) {
  transition: all 0.5s ease 1.8s;
  -webkit-transition: all 0.5s ease 1.8s;
  -moz-transition: all 0.5s ease 1.8s;
  -ms-transition: all 0.5s ease 1.8s;
}
.section04 .swiper-top {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 4;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
}
.section04   .swiper-button-next,
.section04   .swiper-button-prev{
    display: none;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide {
  cursor: pointer;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide .icons {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide .icons .tu {
  position: relative;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide .icons .tu:before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--green);
  position: absolute;
  right: 0;
  bottom: 4px;
  opacity: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide .icons img {
  position: relative;
  max-height: 100%;
  z-index: 2;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide h2 {
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide.active .icons .tu:before {
  right: -6px;
  opacity: 1;
}
.section04 .swiper-top .swiper-wrapper .swiper-slide.active h2 {
  font-weight: 700;
}
.section04 .swiper-box {
  position: relative;
  z-index: 2;
}
.section04 .swiper-box .swiper-slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.section04 .swiper-box .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 4s linear;
  transform: scale(1.1, 1.1);
}
.section04 .swiper-box .swiper-slide .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.section04 .swiper-box .swiper-slide .text .right {
  float: right;
  width: 44.5%;
}
.section04 .swiper-box .swiper-slide .text .right h2 {
  opacity: 0;
  transform: translateY(30px);
}
.section04 .swiper-box .swiper-slide .text .right h2 a {
  font-weight: 700;
  color: #f5f5f5;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .swiper-box .swiper-slide .text .right h2 a:hover {
  color: var(--green);
}
.section04 .swiper-box .swiper-slide .text .right p {
  color: #fff;
  text-align: justify;
  -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;
  margin: 2.5vw 0;
  opacity: 0;
  transform: translateY(30px);
}
.section04 .swiper-box .swiper-slide .text .right ul {
  display: flex;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
}
.section04 .swiper-box .swiper-slide .text .right ul li {
  display: flex;
  align-items: flex-end;
}
.section04 .swiper-box .swiper-slide .text .right ul li h3 {
  line-height: 1;
  font-weight: 700;
  margin-right: 10px;
}
.section04 .swiper-box .swiper-slide .text .right ul li span {
  white-space: nowrap;
}
.section04 .swiper-box .swiper-slide .text .right ul li:not(:last-child) {
  margin-right: 3vw;
}
.section04 .swiper-box .swiper-slide .text .right .mores {
  width: 60px;
  margin-top: 4vw;
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
}
.section04 .swiper-box .swiper-slide .text .right .mores a {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .swiper-box .swiper-slide .text .right .mores a span {
  color: #fff;
  font-size: 18px;
}
.section04 .swiper-box .swiper-slide .text .right .mores a:hover {
  background: var(--blue);
}
.section04 .swiper-box .swiper-slide.active img {
  transform: scale(1, 1);
}
.section04 .swiper-box .swiper-slide.active .text .right h2 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section04 .swiper-box .swiper-slide.active .text .right p {
  opacity: 1;
  transform: translateY(0);
  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;
}
.section04 .swiper-box .swiper-slide.active .text .right ul {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease 0.4s;
  -webkit-transition: all 0.5s ease 0.4s;
  -moz-transition: all 0.5s ease 0.4s;
  -ms-transition: all 0.5s ease 0.4s;
}
.section04 .swiper-box .swiper-slide.active .text .right .mores {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transition: all 0.5s ease 0.6s;
  -webkit-transition: all 0.5s ease 0.6s;
  -moz-transition: all 0.5s ease 0.6s;
  -ms-transition: all 0.5s ease 0.6s;
}
.section04.active .swiper-top {
  opacity: 1;
  top: 3vw;
  transition: all 1s ease 0.5s;
  -webkit-transition: all 1s ease 0.5s;
  -moz-transition: all 1s ease 0.5s;
  -ms-transition: all 1s ease 0.5s;
}
.section05 .con {
  position: relative;
  top: -3vw;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .s-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section05 .con .s-title h2 {
  font-weight: 700;
}
.section05 .con .s-title a {
  color: #333;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .s-title a span {
  margin-left: 6px;
}
.section05 .con .s-title a:hover {
  color: var(--green);
}
.section05 .con .ctn-list {
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.section05 .con .ctn-list .list {
  opacity: 0.2;
  transform: translateY(6vw);
}
.section05 .con .ctn-list .list .tu {
  /*height: 360px;*/
  max-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.section05 .con .ctn-list .list .tu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section05 .con .ctn-list .left .tu img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}
.section05 .con .ctn-list .right .tu img{
      object-fit: cover;
}
.section05 .con .ctn-list .list .tu h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  color: #fff;
  width: 124px;
  background: #0260e5;
  line-height: 38px;
}
.section05 .con .ctn-list .list .text {
  padding: 24px 0;
}
.section05 .con .ctn-list .list .text h2 {
  color: #333;
  font-weight: 700;
  /*-webkit-line-clamp: 1;
   height: 1.5em;
 */
  height:3em;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;

  line-height: 1.5;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .ctn-list .list .text p {
  color: #333;
  opacity: 0.4;
  -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;
  text-align: justify;
  margin: 14px 0 16px;
}
.section05 .con .ctn-list .list .text h3 {
  color: #333333;
  opacity: 0.6;
}
.section05 .con .ctn-list .list:hover .tu img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.section05 .con .ctn-list .list:hover .text h2 {
  color: var(--green);
}
.section05 .con .ctn-list .left {
  width: 25%;
  transition: all 0.5s ease 0.6s;
  -webkit-transition: all 0.5s ease 0.6s;
  -moz-transition: all 0.5s ease 0.6s;
  -ms-transition: all 0.5s ease 0.6s;
}
.section05 .con .ctn-list .right {
  width: 39%;
  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;
}
.section05 .con .ctn-list .right .tu h2 {
  background: #f4852b;
}
.section05 .con .ctn-list .middle {
  width: 25%;
  opacity: 0.2;
  transform: translateY(6vw);
  transition: all 0.5s ease 0.4s;
  -webkit-transition: all 0.5s ease 0.4s;
  -moz-transition: all 0.5s ease 0.4s;
  -ms-transition: all 0.5s ease 0.4s;
}
.section05 .con .ctn-list .middle a {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  background: #fff;
  padding: 24px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  border-radius: 5px;
}
.section05 .con .ctn-list .middle a h4 {
  text-align: center;
  color: var(--green);
  color: #333;
  width: 124px;
  background: #fff;
  line-height: 38px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.section05 .con .ctn-list .middle a h2 {
  /*-webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
    height: 3em;*/
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  color: #333;
  margin: 1.8vw 0 2.5vw;
}
.section05 .con .ctn-list .middle a p {
  color: #fff;
  color: #333;
  opacity: 0.6;
  -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 .ctn-list .middle a h3 {
  color: #fff;
  color: #333;
  opacity: 0.6;
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.section05 .con .ctn-list .middle:hover a {
  background: var(--blue);
  background-image: linear-gradient(to right, #bae0f1, #005da7);
}
.section05 .con .ctn-list .middle:hover a h2,
.section05 .con .ctn-list .middle:hover a h3,
.section05 .con .ctn-list .middle:hover a p{
    color: #fff;
}
.section05 .con .ctn-list .middle:hover a h4 {
  color: var(--blue);
}
.section05.active .con .ctn-list .list {
  opacity: 1;
  transform: translateY(0);
}
.section05.active .con .ctn-list .middle {
  opacity: 1;
  transform: translateY(0);
}
.section06 .stock {
  padding: 2vw 0;
}
.section06 .stock .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section06 .stock .con .left h2 {
  font-weight: 700;
}
.section06 .stock .con .left h3 {
  margin-top: 6px;
}
.section06 .stock .con .middle .top {
  display: flex;
  align-items: center;
}
.section06 .stock .con .middle .top h2 {
  font-weight: 700;
  color: #ec5a54;
  margin-right: 14px;
}
.section06 .stock .con .middle .top h2.down{
 color: #59b086;
}
.section06 .stock .con .middle .top .jian {
  position: relative;
  top: 1px;
}
.section06 .stock .con .middle .top .jian img:nth-child(1){
    display: block;
}
.section06 .stock .con .middle .top .jian img:nth-child(2){
    display: none;
}
.section06 .stock .con .middle .top .jian.down img:nth-child(1){
    display: none;
}
.section06 .stock .con .middle .top .jian.down img:nth-child(2){
    display: block;
}
/*.section06 .stock .con .middle .top .jian.down {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}*/
.section06 .stock .con .middle h3 {
  margin-top: 6px;
}
.section06 .stock .con .middle h3 span {
  font-weight: 700;
}
.section06 .stock .con .middle h3 span:first-child {
  margin-right: 20px;
}
.section06 .stock .con .right ul {
  display: flex;
}
.section06 .stock .con .right ul li h2 {
  font-weight: 700;
  margin-top: 6px;
}
.section06 .stock .con .right ul li:not(:last-child) {
  margin-right: 4vw;
}
.bg-video {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10000;
}
.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1600px) {
  .section01 .svg-box {
    transform: translate(-50%, -50%) scale(0.9);
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -moz-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
  }
  .section01 .text .txt {
    font-size: 3.125vw;
  }
  .section02 .swiper-slide .text h2 span {
    font-size: 4.2vw;
  }
  /*.section05 .con .ctn-list .list .tu {
    height: 318px;
  }*/
}
@media screen and (max-width: 1440px) {
  .section01 .svg-box {
    transform: translate(-50%, -50%) scale(0.8);
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    -ms-transform: translate(-50%, -50%) scale(0.8);
  }
  .section01 .text h3 {
    font-size: 12px;
  }
  .section03 .text ul li {
    width: 420px;
  }
  .section04 .swiper-box .swiper-slide .text .right .mores a {
    width: 50px;
    height: 50px;
  }
  .section04 .swiper-box .swiper-slide .text .right .mores a span {
    font-size: 16px;
  }
  .section05 .con .ctn-list .list .tu {
    /*height: 286px;*/
    max-height: 320px;
  }
  .section05 .con .ctn-list .left .tu img{
     max-height: 320px;
  }
  .section05 .con .ctn-list .list .tu h2 {
    width: 110px;
    line-height: 34px;
  }
  .section05 .con .ctn-list .list .text {
    padding: 20px 0;
  }
  .section05 .con .ctn-list .middle a {
    padding: 20px;
  }
  .section05 .con .ctn-list .middle a h4 {
    width: 110px;
    line-height: 34px;
  }
  .section05 .con .ctn-list .middle a h3 {
    left: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .section01 .svg-box {
    transform: translate(-50%, -50%) scale(0.7);
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -moz-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
  }
  .section02 .swiper-slide .text .line {
    height: 6px;
  }
  .section03 .text ul li {
    width: 380px;
  }
  .section03 .text ul li .box {
    padding: 0 20px;
    height: 64px;
  }
  /*.section05 .con .ctn-list .list .tu {
    height: 260px;
  }*/
}
@media screen and (max-width: 1024px) {
  .section01 {
    margin-top: 70px;
  }
  .section01 .svg-box {
    transform: translate(-50%, -50%) scale(0.6);
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
  }
  .section01 .tu {
    height: 520px;
  }
  .section01 .svg-box {
    top: 50%;
  }
  .section01 .text {
    top: 50%;
  }
  .section02 .swiper-slide {
    height: 520px;
  }
  .section02 .swiper-slide .text {
    bottom: 25%;
  }
  .section02 .swiper-pagination {
    display: block;
    bottom: 30px;
  }
  .section02 .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
  }
  .section02 .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--green);
  }
  .section03 .video {
    height: 520px;
  }
  .section03 .text ul li .box {
    height: 54px;
  }
  .section03 .text ul li .box .logo img {
    height: 28px;
  }
  .section04 .swiper-top {
    top: 30px!important;
  }
  .section04 .swiper-top .swiper-wrapper .swiper-slide .icons {
    height: 30px;
  }
  .section04 .swiper-top .swiper-wrapper .swiper-slide .icons .tu:before {
    width: 12px;
    height: 12px;
  }
  .section04 .swiper-box .swiper-slide {
    height: 520px;
  }
  .section04 .swiper-box .swiper-slide .text {
    top: 56%;
  }
  .section04 .swiper-box .swiper-slide .text .right ul li h3 {
    margin-right: 4px;
  }
  .section04 .swiper-box .swiper-slide .text .right ul li:not(:last-child) {
    margin-right: 2vw;
  }
  .section04 .swiper-box .swiper-slide .text .right .mores a {
    width: 44px;
    height: 44px;
  }
  .section05 {
    padding: 40px 0;
  }
  .section05 .con {
    top: 0;
  }
  .section05 .con .ctn-list .list {
    opacity: 0;
  }
  /*.section05 .con .ctn-list .list .tu {
    height: 220px;
  }
  .section05 .con .ctn-list .left .tu{
    height: 280px;
  }*/
  .section05 .con .ctn-list .middle {
    opacity: 0;
  }
  .section06 .stock {
    padding: 0 0 40px;
  }
  .section02 .tu{
      height: auto;
  }
  #fullpage{
      margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
    .section02 .tu{
      height: auto;
  }
  .section {
    margin-top: 10px;
  }
  .section01 {
    margin-top: 70px;
  }
  .section01 .svg-box {
    transform: translate(-50%, -50%) scale(0.4);
    -webkit-transform: translate(-50%, -50%) scale(0.4);
    -moz-transform: translate(-50%, -50%) scale(0.4);
    -ms-transform: translate(-50%, -50%) scale(0.4);
  }
  .section01 .text {
    top: 48%;
    padding: 0 5%;
  }
  .section01 .text .txt {
    font-size: 24px;
  }
  .section01 .text h3 {
    margin-top: 10px;
  }
  .section02 .swiper-slide .text h2 span {
    font-size: 24px;
    letter-spacing: 4px;
  }
  .section02 .swiper-slide .text h3 {
    margin-top: 4px;
  }
  .section02 .swiper-slide .text .line {
    height: 4px;
    margin-top: 20px;
  }
  .section03 .text ul {
    margin-top: 20px;
  }
  .section03 .text ul li .box {
    padding: 0 10px;
  }
  .section03 .text ul li .box h3 {
    margin-left: 10px;
  }
  .section04 .swiper-box .swiper-slide:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
  .section04 .swiper-box .swiper-slide .text {
    z-index: 4;
  }
  .section04 .swiper-box .swiper-slide .text .right {
    width: 100%;
  }
  .section04 .swiper-box .swiper-slide .text .right p {
    margin: 20px 0 14px;
  }
  .section04 .swiper-box .swiper-slide .text .right ul {
    flex-wrap: wrap;
  }
  .section04 .swiper-box .swiper-slide .text .right ul li {
    margin-top: 6px;
  }
  .section04 .swiper-box .swiper-slide .text .right ul li span {
    position: relative;
    top: 2px;
  }
  .section04 .swiper-box .swiper-slide .text .right ul li:not(:last-child) {
    margin-right: 20px;
  }
  .section04 .swiper-box .swiper-slide .text .right .mores {
    margin-top: 30px;
  }
  .section05 {
    padding: 20px 0 10px;
  }
  .section05 .con .ctn-list {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .section05 .con .ctn-list .left {
    width: 100%;
        margin-top: 20px;
  }
  .section05 .con .ctn-list .right {
    width: 100%;

  }
  .section05 .con .ctn-list .list .text {
    padding: 14px 0 20px;
  }
  .section05 .con .ctn-list .middle {
    width: 100%;
  }
  .section05 .con .ctn-list .middle a h2 {
    margin: 14px 0 16px;
  }
  .section05 .con .ctn-list .middle a h3 {
    position: relative;
    left: 0;
    bottom: 0;
  }
  .section06 {
    margin-top: 0;
  }
  .section06 .stock .con {
    flex-wrap: wrap;
  }
  .section06 .stock .con .left {
    width: 50%;
  }
  .section06 .stock .con .middle {
    width: 50%;
  }
  .section06 .stock .con .middle .top h2 {
    margin-right: 8px;
  }
  .section06 .stock .con .middle .top .jian {
    display: flex;
    align-items: center;
  }
  .section06 .stock .con .middle .top .jian img {
    height: 16px;
  }
  .section06 .stock .con .right {
    margin-top: 20px;
    width: 100%;
  }
  .section06 .stock .con .right ul {
    justify-content: space-between;
  }
  .section06 .stock .con .right ul li:not(:last-child) {
    margin-right: 0;
  }
  .section05 .con .ctn-list .middle a {
  background: var(--blue);
  background-image: linear-gradient(to right, #bae0f1, #005da7);
}
.section05 .con .ctn-list .middle a h2,
.section05 .con .ctn-list .middle a h3,
.section05 .con .ctn-list .middle a p{
    color: #fff;
}
.section05 .con .ctn-list .middle a h4 {
  color: var(--blue);
}

.section04  .swiper-button-prev{
    width: 24px;
    height: 24px;
    left:-10px;
    top:50%;
    margin-top: 0;
    transform: translateY(-50%);
    border:1px solid rgba(255,255,255,.6);
    border-radius: 50%;
        background-image: none;
        display: flex;
        align-items: center;
        justify-content: center;
          transition: all .5s;
          
}
.section04 .con{
    position: relative;
}
.section04   .swiper-button-next{
     height: 24px;
    width: 24px;

    right: -10px;
   top:50%;
    margin-top: 0;
    transform: translateY(-50%);
    border:1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .5s;
}
.section04 .swiper-button-prev:hover,
.section04 .swiper-button-next:hover{
    border-color: var(--blue);
}
.section04  .swiper-button-next svg,
.section04 .swiper-button-prev svg{
        transform: rotate(270deg);
}
.section04  .swiper-button-next path,
.section04 .swiper-button-prev path{
        fill:rgba(255,255,255,.6);
        transition: all .5s;

    }
.section04 .swiper-button-next:hover path,
.section04.swiper-button-prev:hover path{
        fill:var(--blue);
    }
}
/*# sourceMappingURL=index.css.map */
