/* 样式重置 */

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
input,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea,
article,
aside,
audio,
canvas,
figure,
footer,
header,
mark,
menu,
nav,
section,
time,
video {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
blockquote {
  display: block;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0 none;
  vertical-align: top;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ins {
  text-decoration: underline;
}

del {
  text-decoration: line-through;
}

mark {
  background: none;
}

input::-ms-clear {
  display: none !important;
}

body {
  font: 12px/1.5 \5FAE\8F6F\96C5\9ED1, \5B8B\4F53, "Hiragino Sans GB", STHeiti,
    "WenQuanYi Micro Hei", "Droid Sans Fallback", SimSun, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: none;
}

/* 公共样式 */

::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.2);
  background: #535353;
}

::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  background: #ededed;
}

/* Sweep To Top */

.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #fff;
}

.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  color: #000;
}

.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
  color: #000;
}

.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  color: #000;
}

.fp-watermark {
  display: none;
}

.section {
  position: relative;
  overflow: hidden;
}

.section .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  user-select: none;
}

.section .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 头部 */

.head {
  position: fixed;
  top: 0px;
  padding: 0 2%;
  width: 96%;
  z-index: 7;
  display: flex;
  transition: all 1.6s;
}

.head .logo {
  position: absolute;
  pointer-events: none;
}

.head .nav {
  margin: 0 auto;
  width: fit-content;
  height: 100px;
  animation-name: fadeInDownBig;
  visibility: visible;
}

.head .nav ul {
  display: flex;
  margin: 0 auto;
  height: 100px;
  align-items: center;
  justify-content: center;
}

.head .nav ul li {
  margin: 0 20px;
}

.head .nav ul li a {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  display: block;
}

.head .menu {
  width: 132px;
  height: 42px;
  border-radius: 21px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 29px 0 0 0;
  display: none;
  position: absolute;
  right: 5%;
  z-index: 5;
  animation-name: fadeInRightBig;
  visibility: visible;
}

.head .menu span {
  font-size: 16px;
  color: #fff;
  margin-right: 5px;
}

/* 首页鼠标标志样式及动画*/

.sq_mouse {
  position: absolute;
  bottom: 3%;
  left: 50%;
  margin-left: -10px;
  z-index: 3;
}

.sq_m_small {
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 8px;
  border-radius: 6px;
  background: #fff;
  animation: smallDown 1.5s forwards infinite;
  -webkit-animation: smallDown 1.5s forwards infinite;
}

@keyframes smallDown {
  0% {
    top: 7px;
    opacity: 1;
  }
  50% {
    top: 9px;
    opacity: 0.5;
  }
  100% {
    top: 10px;
    opacity: 0;
  }
}

@-webkit-keyframes smallDown {
  0% {
    top: 7px;
    opacity: 1;
  }
  50% {
    top: 9px;
    opacity: 0.5;
  }
  100% {
    top: 10px;
    opacity: 0;
  }
}

.section .bg {
  animation: mymove 14s infinite;
  -webkit-animation: mymove 14s infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  -webkit-animation: mymove 14s infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
}

@keyframes mymove {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* 首页第一屏样式 */

.section .textbox {
  position: absolute;
  width: fit-content;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  position: absolute;
  width: 360px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -200px;
  transition: bottom 1.8s;
  opacity: 0.5;
}

.section .textbox P {
  font-size: calc(1.56vw + 8px);
  color: #fff;
  font-weight: bold;
  line-height: calc(2vw + 20px);
  text-align: center;
}

.fp-completely .textbox {
  bottom: 10%;
  transition: bottom 1.2s;
  opacity: 1;
}

.section .cloud img {
  position: absolute;
  top: 16%;
  left: 0%;
  opacity: 1;
  animation: cloudmove 90s linear infinite alternate;
  z-index: 1;
}

.section2 {
  background: #000;
}

.section2 .moviebg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
}

.section2 .moviebg #videomask {
  /* background: url(../images/videooverlay1.png) repeat; */
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0Pgo8cGF0aCBkPSJNMCA1TDUgMFpNNiA0TDQgNlpNLTEgMUwxIC0xWiIgc3Ryb2tlPSIjMjkyNzI3IiBzdHJva2Utd2lkdGg9IjMuMjUiIG9wYWNpdHk9Ii4yNSI+PC9wYXRoPgo8L3N2Zz4=);
  opacity: 0.9;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
}

.section2 .moviebg video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

@keyframes cloudmove {
  0% {
    left: 0%;
  }
  100% {
    left: -100%;
  }
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

/* SIX */

#hamburger.is-active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger.is-active .line:nth-child(2) {
  width: 0px;
}

#hamburger.is-active .line:nth-child(1),
#hamburger.is-active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transform: translateY(8px);
}

#hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(90deg);
  -ms-transform: translateY(-6px) rotate(90deg);
  -o-transform: translateY(-6px) rotate(90deg);
  transform: translateY(-6px) rotate(90deg);
}

/* 隐藏全屏按钮  */

video::-webkit-media-controls-fullscreen-button {
  display: none;
}

/* 关闭谷歌浏览器的视频下载按钮提示  */

.xl-chrome-ext-bar {
  display: none;
}

/* 遮罩 */

#mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 6;
  display: none;
}

#mask .navlist {
  text-align: center;
  width: 100%;
  padding: 10% 0 0 0;
  animation-name: fadeInLeft;
  visibility: visible;
}

#mask .navlist ul li {
  margin: 20px 0;
}

#mask .navlist ul li a {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.slide .leaves {
  width: 31.718vw;
  position: absolute;
  right: -100%;
  top: 10%;
  transition: all 1.2s;
  pointer-events: none;
}

.fp-completely .slide .leaves {
  transition: all 1.6s;
  transition-delay: 0.6s;
  right: 5px;
  height: 28.7vw;
  pointer-events: none;
}

.slide1 .wrap {
  width: 65%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}

.slide1 .wrap .txtbox .name {
  font-size: 2.3vw;
  color: #fff;
  line-height: 3vw;
  font-weight: bold;
}

.slide1 .wrap .txtbox .desc {
  font-size: 1.1vw;
  font-weight: 400;
  color: #fff;
  margin: 12px 0 0 0;
  display: block;
}

.slide1 .wrap .txtbox {
  padding: 7% 0 0 0;
  transition: all 1.4s;
  opacity: 0;
  /* transform: scale(0.5, 0.5); */
  animation-delay: 1.5s;
  margin: 0 0 0 -20%;
}

.section3 .fp-arrow.fp-prev {
  left: -100px;
  transition: all 1.2s;
}

.section3 .fp-arrow.fp-next {
  right: -100px;
  transition: all 1.2s;
}

.fp-completely .wrap .txtbox {
  opacity: 1;
  /* transform: scale(1, 1); */
  transition: all 1.4s;
  animation-delay: 1.5s;
  margin: 0;
}

.slide1 .wrap .txtbox a {
  width: 8.43vw;
  height: 2.7vw;
  line-height: 2.7vw;
  text-align: center;
  font-size: 1.1vw;
  /* color: #fff; */
  border-radius: 26px;
  display: block;
  margin: 50px 0 0 0;
  border: 1px solid #fff;
  overflow: hidden;
}

.slide1 .wrap .picbox {
  transition: all 1.4s;
  opacity: 0;
  transform: scale(0.2, 0.2);
}

.fp-completely .wrap .picbox {
  transition: all 1.4s;
  opacity: 1;
  transform: scale(1, 1);
}

/* .slide1 .wrap .picbox img {
width: 27.34vw;
} */

.section4 .fp-prev {
  opacity: 0;
}

.section4 .fp-next {
  opacity: 0;
}

.section4 .txtbox {
  position: absolute;
  right: -100%;
  top: 42%;
  z-index: 2;
  letter-spacing: 4px;
  text-align: center;
  transition: all 1.8s;
  opacity: 0;
}

.fp-completely .sec4-txtbox {
  right: 20%;
  transition: all 1.8s;
  opacity: 1;
}

.section4 .txtbox p {
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
}

.section4 .txtbox p i {
  font-style: normal;
}

.section4 .txtbox p .item {
  color: #fff;
  font-size: 2.3rem;
  padding: 0 0 5px 0;
}

.section4 .txtbox .active {
  border-bottom: 1px solid #fbec00;
}

.section .fp-slidesNav ul {
  text-align: right;
  padding: 0 10% 0 0;
}

.section .fp-slidesNav ul li a span {
  margin: -6px 0 0 -6px;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.section .fp-slidesNav ul li a.active span {
  width: 10px;
  height: 10px;
  background: #fff;
}

.section5 .wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.section5 .wrap .item {
  width: calc(100% / 3);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.footer {
  background: #ebf4f6;
  min-height: auto !important;
}

.footer .wrap {
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
  transition: all 1.6s;
  transform: scale(0.2, 0.2);
}

.active .footwrap {
  transition: all 1.6s;
  transform: scale(1, 1);
}

.footer .wrap .item {
  margin: 0 1%;
}

.footer .wrap .item .name {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.footer .wrap .item .add {
  font-size: 16px;
  color: #000;
  margin: 8px 0;
}

.footer .wrap .item .hotline {
  font-size: 16px;
  color: #000;
  margin: 15px 0;
}

.footer .wrap .item .hotline span {
  font-size: 30px;
}

.footer .wrap .item .copyright {
  font-size: 14px;
}

.footer .wrap .item .copyright a {
  color: #000;
  font-size: 14px;
}

.footer .wrap .nav {
  margin: 0 1%;
  padding: 30px 0;
}

.footer .nav ul li {
  display: inline-block;
  margin: 0 15px;
}

.footer .nav ul li a {
  font-size: 16px;
}

.footer .wrap .qrcode {
  padding: 20px 0;
  text-align: center;
}

.footer .wrap .qrcode img {
  max-width: 123px;
  height: 123px;
}

.footer .wrap .qrcode p {
  font-size: 14px;
  color: #000;
  padding: 10px 0;
}

/* 
.section5 .wrap .item1 {
background: url(../images/0501.png);
background-size: cover;
background-repeat: no-repeat;
background-position: 0 0;
height: 100%;
} */

.section5 .wrap .item img {
  display: block;
  margin: 0 auto;
  transition: all 0.8s;
  max-height: 100%;
  width: 100%;
}

.section5 .wrap .item:hover img {
  transition: all 0.8s;
  transform: scale(1.08);
}

.section5 .wrap .item .txtbox {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  transition: all 4.2s;
  transition-delay: 1.2;
}

.fp-completely .wrap .item .txtbox {
  bottom: 5%;
  transition: all 1.2s;
}

.section5 .wrap .item .txtbox .name {
  font-size: 2.08rem;
  font-weight: bold;
  color: #fff;
}

.section5 .wrap .item .txtbox .more {
  width: 8.43rem;
  height: 2.7rem;
  font-size: 1.1rem;
  border: 1px solid #fff;
  border-radius: 26px;
  text-align: center;
  line-height: 2.7rem;
  display: block;
  margin: 10px auto;
  overflow: hidden;
  color: #fff;
}

/* 关于我们 */

.about-sec1 .intro {
  position: absolute;
  width: 40.88vw;
  height: 20.97vw;
  padding: 2%;
  background: #fff;
  right: -80%;
  top: 24%;
  border-radius: 14px;
  z-index: 2;
  transition: all 1.4s;
  opacity: 0;
}

.fp-completely .sec1-intro {
  transition: all 1.4s;
  right: 8%;
  opacity: 0.98;
}

.about-sec1 .intro .name {
  font-size: 2.08vw;
  font-weight: bold;
  color: #000;
  margin: 10px 0 20px 0;
}

.about-sec1 .intro .cont {
  font-size: 0.9vw;
  color: #000;
  margin: 10px 0;
  line-height: 1.8vw;
}

.about-sec2 .leftside {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 42.55vw;
  z-index: 2;
  transition: all 1.4s;
  opacity: 0;
  transform: scale(0.1, 0.1);
}

.active .about-sec2pic {
  transition: all 1.4s;
  opacity: 1;
  transform: scale(1, 1);
}

.about-sec2 .leftside img {
  max-width: 100%;
}

.about-sec2 .rightside {
  position: absolute;
  right: -50%;
  top: 30%;
  z-index: 2;
  width: 24.6vw;
  opacity: 0;
  transition: all 1.2s;
}

.active .about-sec2txt {
  transition: all 2.2s;
  opacity: 1;
  right: 15%;
}

.about-sec2 .rightside .gilogo {
  margin: 20px 0;
}

.about-sec2 .rightside p {
  position: relative;
  font-size: 2.08vw;
  color: #145baa;
}

.about-sec2 .rightside p::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #145baa;
  border-radius: 50%;
  left: -16px;
  top: 24px;
  position: absolute;
}

.about-sec2 .rightside .introtxt {
  margin: 10px 0 0 0;
}

.about-sec2 .rightside .introtxt span {
  font-size: 1.15vw;
  color: #000;
  display: inline-block;
  vertical-align: text-top;
  margin: 0 10px;
}

.about-sec3 .leftside {
  position: absolute;
  left: -150%;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  transition: 0.8s;
}

.active .about-sec3txt {
  transition: all 1.8s;
  left: 10%;
}

.about-sec3 .leftside .name {
  font-size: 2.08vw;
  color: #fff;
}

.about-sec3 .leftside .desc {
  font-size: 0.83vw;
  color: #fff;
  letter-spacing: 2px;
}

.about-sec3 .rightside {
  width: 45.67vw;
  position: absolute;
  z-index: 2;
  right: 9%;
  top: 28%;
  height: 32.81vw;
}

.about-sec3 .rightside .img1 {
  position: absolute;
  left: -50%;
  width: 18.95vw;
  top: 300%;
  transition: all 1.2s;
  animation-delay: 0.1s;
}

.active .rightside .img1 {
  transition: all 1.2s;
  top: 0;
  left: -11%;
}

.about-sec3 .rightside .img2 {
  position: absolute;
  width: 19.89vw;
  right: -50%;
  top: 300%;
  transition: all 1.4s;
}

.active .rightside .img2 {
  transition: all 1.2s;
  top: -1%;
  transition-delay: 0.4s;
  right: 23%;
}

.about-sec3 .rightside .img3 {
  width: 18.95vw;
  top: 300%;
  position: absolute;
  left: -100%;
  transition: all 1.2s;
}

.active .rightside .img3 {
  transition: all 1.2s;
  top: 45%;
  transition-delay: 0.6s;
  left: -7%;
}

.about-sec3 .rightside .img4 {
  position: absolute;
  width: 19.47vw;
  right: -58%;
  top: 300%;
  transition: all 1.2s;
}

.active .rightside .img4 {
  transition: all 1.2s;
  transition-delay: 0.8s;
  right: 14%;
  top: 47%;
}

.pro-sec1 .fp-arrow.fp-prev {
  left: -100px;
  transition: all 1.2s;
}

.pro-sec1 .fp-arrow.fp-next {
  right: -100px;
  transition: all 1.2s;
}

.fp-completely .fp-arrow.fp-prev {
  left: -45px;
  transition: all 1.2s;
  transition-delay: 0.7s;
}

.fp-completely .fp-arrow.fp-next {
  right: -45px;
  transition: all 1.2s;
  transition-delay: 0.7s;
}

.pro-sec1 .sq_mouse {
  bottom: 34%;
}

.pro-sec1 .rightside {
  width: 24.63vw;
  position: absolute;
  z-index: 1;
  right: -24%;
  top: 23%;
}

.pro-sec1 .rightside img {
  max-width: 100%;
}

.pro-sec1 .leftside .name {
  font-size: 2.29vw;
  color: #fff;
  font-weight: bold;
}

.pro-sec1 .fp-controlArrow {
  top: 33%;
}

.pro-sec1 .leftside .desc {
  font-size: 0.83vw;
  color: #fff;
}

.pro-sec1 .leftside {
  top: 45%;
  left: -22%;
  position: absolute;
  z-index: 2;
  transition: all 1.8s;
}

.fp-completely .pro-leftside {
  left: 22%;
  transition: all 1.8s;
}

.fp-completely .pro-rightside {
  right: 24%;
  transition: all 1.8s;
}

.pro-sec1 .fp-slides {
  height: 70%;
}

.pro-sec1 .btmbar {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  background: #fff;
  width: 100%;
  height: 30%;
}

.pro-sec1 .btmbar .wrap {
  display: flex;
  width: 80%;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  height: 100%;
  align-items: center;
  overflow: hidden;
}

.pro-sec1 .btmbar .wrap .item {
  width: calc(100% / 4 - 10px);
  /* margin: 0 10px 0 0; */
  margin: -40% 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation-delay: 0;
  transition: all 0.8s;
  opacity: 0;
}

.pro-sec1 .btmbar .wrap .item span {
  font-size: 1.25vw;
  color: #000;
}

.active .btmbar .wrap .item {
  /* transition: all 2.2s; */
  margin: 0 10px 0 0;
  /* animation: bounceInDown 1.8s; */
  opacity: 1;
}

.active .btmbar .wrap .item:nth-child(1) {
  transition-delay: 0.4s;
}

.active .btmbar .wrap .item:nth-child(2) {
  transition-delay: 0.6s;
}

.active .btmbar .wrap .item:nth-child(3) {
  transition-delay: 0.8s;
}

.active .btmbar .wrap .item:nth-child(4) {
  transition-delay: 1.2s;
}

.pro-sec .wrap {
  display: flex;
  height: 100%;
}

.pro-sec .wrap .leftside {
  width: 68.75vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pro-sec .wrap .leftside img {
  width: fit-content;
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 6.4s;
}

.pro-sec .wrap .leftside:hover img {
  transition: all 6.4s;
  transform: scale(1.08);
}

.pro-sec .fp-overflow {
  height: 100%;
}

.pro-sec2 .wrap .rightside {
  background: #fff;
  position: absolute;
  right: -50%;
  bottom: -50%;
  height: 100%;
  width: 31.25vw;
  display: flex;
  align-items: center;
  transition: all 1s;
}

.pro-sec3 .wrap {
  justify-content: end;
}

.pro-sec3 .wrap .rightside {
  background: #fff;
  position: absolute;
  left: -50%;
  height: 100%;
  width: 31.25vw;
  display: flex;
  align-items: center;
  transition: 1s;
}

/* .fp-completely .wrap .pro-sec3txt {
left: 0;
transition: 1s;
} */

.pro-sec .wrap .rightside .txtbox {
  width: 61%;
  display: block;
  margin: 0 auto;
  letter-spacing: 1px;
}

.pro-sec .wrap .rightside .txtbox .name {
  font-size: 2.08vw;
  color: #000;
  margin: 12px 0;
}

.pro-sec .wrap .rightside .txtbox .desc {
  font-size: 0.9vw;
  color: #000;
  text-align: justify;
}

.pro-sec4 .fp-slides {
  height: 80%;
}

.pro-sec4 .introtxt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20%;
  width: 100%;
}

.pro-sec4 .introtxt img {
  margin: 0 20px 0 0;
}

.pro-sec4 .introtxt .txt .name {
  font-size: 2.08vw;
  font-weight: bold;
  color: #000;
}

.pro-sec4 .introtxt .txt .desc {
  font-size: 1.25vw;
  color: #000;
}

.pro-sec4 .slide .icon1 {
  position: absolute;
  right: 35%;
  top: 46%;
  transition: all 1.2s;
  animation: animate1 3s ease-in-out infinite alternate;
}

@keyframes animate1 {
  0% {
    top: 46%;
  }
  50% {
    top: 48%;
  }
  100% {
    top: 46%;
  }
}

.pro-sec4 .slide .icon2 {
  position: absolute;
  right: 18%;
  top: 36%;
  transition: all 1.2s;
  animation: animate2 12s ease-in-out infinite alternate;
}

@keyframes animate2 {
  0% {
    top: 36%;
  }
  50% {
    top: 49%;
  }
  100% {
    top: 36%;
  }
}

.pro-sec4 .slide .icon3 {
  position: absolute;
  right: 9%;
  top: 55%;
  transition: all 1.2s;
  animation: animate3 5s ease-in-out infinite alternate;
}

@keyframes animate3 {
  0% {
    top: 55%;
  }
  50% {
    top: 62%;
  }
  100% {
    top: 55%;
  }
}

.pro-sec4 .slide .icon4 {
  position: absolute;
  right: 10%;
  top: 21%;
  transition: all 1.2s;
  animation: animate4 5s ease-in-out infinite alternate;
}

@keyframes animate4 {
  0% {
    top: 21%;
  }
  50% {
    top: 32%;
  }
  100% {
    top: 21%;
  }
}

.pro-sec4 .slide .icon5 {
  position: absolute;
  right: 29%;
  top: 27%;
  transition: all 1.2s;
  animation: animate5 8s ease-in-out infinite alternate;
}

@keyframes animate5 {
  0% {
    top: 27%;
  }
  50% {
    top: 32%;
  }
  100% {
    top: 27%;
  }
}

.pro-sec4 .slide .icon6 {
  position: absolute;
  right: 42%;
  top: 34%;
  transition: all 1.2s;
  animation: animate6 8s ease-in-out infinite alternate;
}

@keyframes animate6 {
  0% {
    top: 34%;
  }
  50% {
    top: 27%;
  }
  100% {
    top: 34%;
  }
}

.pro-sec4 .slide .icon:hover {
  transition: all 1.2s;
  transform: scale(1.18);
}

.pro-sec5 .wrap .rightside {
  background: #fff;
  position: absolute;
  right: -50%;
  height: 100%;
  width: 31.25vw;
  display: flex;
  align-items: center;
  transition: 1s;
}

.active .wrap .rightside {
  right: 0;
  transition: 1s;
  bottom: 0%;
}

.active .wrap .pro-sec3txt {
  left: 0;
  transition: 1s;
}

.quality-sec .txtbox {
  position: absolute;
  bottom: -50%;
  left: 10%;
  z-index: 2;
  max-width: calc(20.3125vw + 50px);
  text-align: justify;
  transition: all 1.2s;
}

.active .quality-txt {
  transition: all 2.2s;
  bottom: 10%;
}

.quality-sec .txtbox .name {
  font-size: calc(1.56vw + 10px);
  color: #fff;
  font-weight: bold;
  margin: 0 0 15px 0;
}

.quality-sec .txtbox .desc {
  font-size: 0.9375vw;
  color: #fff;
}

.quality-sec .tips {
  position: absolute;
  z-index: 2;
  transition: all 0.8s;
}

.quality-sec .tips1 {
  left: -54%;
  top: 24%;
  transition: all 1.4s;
}

.fp-completely .tips1 {
  left: 17%;
  transition: all 1.4s;
}

.quality-sec .background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.quality-sec .tips i {
  position: absolute;
  display: block;
}

.quality-sec .tips1 i:nth-child(1) {
  width: 22px;
  height: 22px;
  border: 1px dashed #fff;
  border-radius: 50%;
  right: -69%;
  top: -14%;
}

.quality-sec .tips1 i:nth-child(2) {
  width: 59px;
  border-bottom: 1px dashed #fff;
  right: -63%;
  transform: rotate(-45deg);
  top: 7%;
}

.quality-sec .tips1 i:nth-child(3) {
  width: 126px;
  border: 1px dashed #fff;
  right: -37%;
  top: 17%;
}

.quality-sec .tips .circle {
  border-radius: 50%;
  background: #fff;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 1.2s;
}

.quality-sec .tips .circle .name {
  font-size: calc(1.56vw + 10px);
  color: #3f6b36;
}

.quality-sec .tips .circle .desc {
  font-size: 00.9375vw;
  color: #3f6b36;
  text-align: center;
}

.quality-sec .tips2 {
  top: 24%;
  right: -100%;
  transition: all 1.2s;
}

.fp-completely .tips2 {
  right: 32%;
  transition: all 2.2s;
  transition-delay: 0.4s;
}

.quality-sec .tips2 i:nth-child(1) {
  width: 22px;
  height: 22px;
  border: 1px dashed #fff;
  border-radius: 50%;
  left: -89%;
  bottom: 8%;
}

.quality-sec .tips2 i:nth-child(2) {
  width: 59px;
  border-bottom: 1px dashed #fff;
  left: -83%;
  transform: rotate(-45deg);
  bottom: 29%;
}

.quality-sec .tips2 i:nth-child(3) {
  width: 126px;
  border: 1px dashed #fff;
  left: -57%;
  bottom: 40%;
}

.quality-sec .tips3 {
  right: -100%;
  bottom: 27%;
  transition: all 1.2s;
}

.fp-completely .tips3 {
  right: 9%;
  transition: all 2.2s;
  transition-delay: 0.8s;
}

.quality-sec .tips3 i:nth-child(1) {
  width: 22px;
  height: 22px;
  border: 1px dashed #fff;
  border-radius: 50%;
  left: -89%;
  bottom: 8%;
}

.quality-sec .tips3 i:nth-child(2) {
  width: 59px;
  border-bottom: 1px dashed #fff;
  left: -83%;
  transform: rotate(-45deg);
  bottom: 29%;
}

.quality-sec .tips3 i:nth-child(3) {
  width: 126px;
  border: 1px dashed #fff;
  left: -57%;
  bottom: 40%;
}

.quality-sec2 .txtbox {
  bottom: auto;
  top: -100%;
  transition: all 1.2s;
}

.active .quality-sec2txt {
  transition: all 1.2s;
  top: 30%;
}

.quality-sec2 img {
  position: absolute;
  z-index: 2;
}

.quality-sec2 .icon1 {
  left: 14%;
  bottom: 32%;
  animation: myanimate1 linear infinite 6s;
}

@keyframes myanimate1 {
  0% {
    bottom: 32%;
  }
  50% {
    bottom: 38%;
  }
  100% {
    bottom: 32%;
  }
}

.quality-sec2 .icon2 {
  left: 37%;
  top: 14%;
  animation: myanimate2 linear infinite 6s;
}

@keyframes myanimate2 {
  0% {
    top: 14%;
  }
  50% {
    top: 10%;
  }
  100% {
    top: 14%;
  }
}

.quality-sec2 .icon3 {
  left: 34%;
  bottom: 14%;
  animation: myanimate3 linear infinite 6s;
}

@keyframes myanimate3 {
  0% {
    bottom: 14%;
  }
  50% {
    bottom: 18%;
  }
  100% {
    bottom: 14%;
  }
}

.quality-sec2 .icon4 {
  left: 39%;
  top: 49%;
  animation: myanimate4 ease-in-out infinite 9s;
}

@keyframes myanimate4 {
  0% {
    top: 49%;
  }
  50% {
    top: 58%;
  }
  100% {
    top: 49%;
  }
}

.quality-sec2 .icon5 {
  left: 23%;
  top: 47%;
  animation: myanimate5 ease-in-out infinite 9s;
}

@keyframes myanimate5 {
  0% {
    top: 47%;
  }
  50% {
    top: 36%;
  }
  100% {
    top: 47%;
  }
}

.quality-sec2 .icon6 {
  left: 5%;
  top: 48%;
  animation: myanimate6 ease-in-out infinite 12s;
}

@keyframes myanimate6 {
  0% {
    top: 47%;
  }
  50% {
    top: 42%;
  }
  100% {
    top: 47%;
  }
}

.quality-sec3 .txtbox {
  bottom: auto;
  top: 49%;
  left: -100%;
  transition: all 1.2s;
}

.active .quality-sec3txt {
  left: 10%;
  transition: all 2.2s;
}

.quality-sec2 .icon {
  transition: all 0.3s;
}

.quality-sec2 .icon:hover {
  transform: scale(1.3);
  transition: all 0.3s;
}

/* 媒介查询 Start */
@media screen and (min-width: 1920px) {
  .quality-sec .tips .circle .desc {
    font-size: 00.6075vw;
  }
}
@media screen and (max-width: 1650px) {
  .fp-completely .tips1 {
    left: 11%;
  }
  .fp-completely .tips2 {
    right: 25%;
  }
  .fp-completely .tips1 {
    left: 16%;
    transition: all 1.4s;
    top: 25%;
  }
}

@media screen and (max-width: 1440px) {
  .fp-completely .tips1 {
    left: 10%;
  }
  .about-sec1 .intro {
    height: fit-content;
    transition: all 0.4s;
  }
}

@media screen and (max-width: 1366px) {
  .section5 .wrap .item .txtbox .name {
    font-size: 1.5rem;
  }
  .about-sec1 .intro .cont {
    font-size: 1.2vw;
  }
  .fp-completely .tips1 {
    left: 17%;
    transition: all 1.4s;
  }
  .fp-completely .tips2 {
    right: 22%;
  }
  .fp-completely .tips3 {
    right: 6%;
    transition: all 0.6s;
  }
}

@media screen and (max-width: 1280px) {
  .quality-sec .tips3 i:nth-child(1) {
    left: -73%;
    bottom: 6%;
  }
  .quality-sec .tips3 i:nth-child(2) {
    width: 45px;
    left: -64%;
    bottom: 30%;
  }
  .quality-sec .tips3 i:nth-child(3) {
    width: 81px;
    left: -38%;
    bottom: 40%;
  }
  .quality-sec .tips3 i:nth-child(2) {
    left: -63%;
    bottom: 30%;
  }
  .quality-sec .tips2 i:nth-child(1) {
    left: -95%;
    bottom: 3%;
  }
  .quality-sec .tips2 i:nth-child(2) {
    left: -87%;
    bottom: 28%;
  }
  .quality-sec .tips1 i:nth-child(1) {
    right: -74%;
    top: -22%;
  }
  .quality-sec .tips1 i:nth-child(2) {
    right: -67%;
    top: 5%;
  }
  .quality-sec .tips .circle {
    width: 160px;
    height: 160px;
  }
  .fp-completely .tips1 {
    left: 8%;
    transition: all 1.4s;
  }
  .fp-completely .tips2 {
    right: 27%;
  }
  .fp-completely .tips3 {
    right: 5%;
    transition: all 0.6s;
  }
  .slide1 .wrap .txtbox a {
    width: 10vw;
    height: 3.5vw;
    line-height: 3.5vw;
    margin: 30px 0 0 0;
  }
  .slide1 .wrap .txtbox .desc {
    font-size: 1.6vw;
  }
  .slide1 .wrap {
    width: 78%;
  }
  .section5 .wrap .item .txtbox {
    bottom: 15%;
  }
  .section5 .wrap .item .txtbox .name {
    font-size: 1.5rem;
  }
  .slide1 .wrap .picbox img {
    width: 34.34vw;
  }
  .slide1 .wrap .picbox {
    margin: 0 0% 0 0;
  }
  .slide1 .wrap .txtbox .name {
    font-size: 3.2vw;
    line-height: 4.2vw;
  }
  .about-sec2 .rightside .introtxt span {
    font-size: 1.45vw;
  }
}

@media screen and (max-width: 1100px) {
  .fp-completely .tips1 {
    left: 6%;
  }
  .quality-sec .tips .circle {
    width: 150px;
    height: 150px;
    transition: all 1.2s;
  }
  .quality-sec .tips1 i:nth-child(1) {
    width: 22px;
    height: 22px;
    border: 1px dashed #fff;
    border-radius: 50%;
    right: -85%;
    top: -30%;
    transition: all 1.2s;
  }
  .quality-sec .tips1 i:nth-child(2) {
    width: 59px;
    border-bottom: 1px dashed #fff;
    right: -79%;
    transform: rotate(-45deg);
    top: -3%;
    transition: all 1.2s;
  }
  .quality-sec .tips1 i:nth-child(3) {
    width: 101px;
    border: 1px dashed #fff;
    right: -45%;
    top: 12%;
    transition: all 1.2s;
  }
  .quality-sec .tips2 i:nth-child(2) {
    width: 59px;
    border-bottom: 1px dashed #fff;
    left: -83%;
    transform: rotate(-45deg);
    bottom: 29%;
  }
  .quality-sec .tips2 i:nth-child(3) {
    width: 91px;
    border: 1px dashed #fff;
    left: -49%;
    bottom: 43%;
  }
  .quality-sec .tips2 i:nth-child(1) {
    width: 22px;
    height: 22px;
    border: 1px dashed #fff;
    border-radius: 50%;
    left: -91%;
    bottom: 1%;
  }
  .quality-sec .tips3 i:nth-child(3) {
    width: 67px;
    border: 1px dashed #fff;
    left: -39%;
    bottom: 42%;
    transition: all 0.6s;
  }
  .quality-sec .tips3 i:nth-child(1) {
    width: 22px;
    height: 22px;
    border: 1px dashed #fff;
    border-radius: 50%;
    left: -74%;
    bottom: 6%;
    transition: all 0.6s;
  }
  .quality-sec .tips3 i:nth-child(2) {
    width: 47px;
    border-bottom: 1px dashed #fff;
    left: -66%;
    transform: rotate(-45deg);
    bottom: 30%;
    transition: all 0.6s;
  }
}

@media screen and (max-width: 1024px) {
  .about-sec2 .rightside p {
    font-size: calc(2.2vw + 10px);
  }
  .about-sec1 .intro .name {
    font-size: 24px;
  }
  .about-sec1 .intro {
    width: 80%;
    transition: all 0.4s;
  }
  .about-sec1 .intro .cont {
    font-size: 16px;
    line-height: 32px;
  }
  .head .menu {
    display: flex;
  }
  .footer .wrap .nav {
    display: none;
  }
  .head .nav {
    display: none;
  }
  #mask .navlist {
    padding: 20% 0 0 0;
  }
}

@media screen and (max-width: 992px) {
  .quality-sec .tips3 i:nth-child(1) {
    left: auto;
    right: -83%;
    bottom: 14%;
    transition: all 0.6s;
  }
  .quality-sec .tips3 i:nth-child(2) {
    left: auto;
    right: -73%;
    transform: rotate(45deg);
    bottom: 39%;
    transition: all 0.6s;
  }
  .quality-sec .tips3 i:nth-child(3) {
    left: 100%;
    bottom: 50%;
    transition: all 0.6s;
  }
  .fp-completely .tips3 {
    right: inherit;
    left: 46%;
    transition: all 0.6s;
  }
  .fp-completely .tips2 {
    right: auto;
    left: 61%;
    top: 32%;
  }
  .fp-completely .tips1 {
    left: 55%;
    transition: all 1.4s;
    top: 12%;
  }
  .quality-sec .tips1 i:nth-child(3) {
    right: auto;
    left: -63%;
    top: 61%;
  }
  .quality-sec .tips1 i:nth-child(2) {
    right: auto;
    left: -98%;
    top: 77%;
  }
  .quality-sec .tips1 i:nth-child(1) {
    right: auto;
    left: -107%;
    top: 91%;
  }
}

@media screen and (max-width: 768px) {
  .about-sec2 .leftside {
    position: absolute;
    top: 10%;
    left: 6%;
    width: 90%;
    z-index: 2;
    transition: all 0.4s;
  }
  .about-sec2 .rightside {
    position: absolute;
    right: 50%;
    bottom: 7%;
    z-index: 2;
    width: 70%;
    top: auto;
    transform: translateX(50%);
  }
  .about-sec2 .rightside .introtxt span {
    font-size: calc(2.15vw + 4px);
  }
}

@media screen and (max-width: 640px) {
  .quality-sec .tips .circle .desc {
    font-size: 14px;
  }
  .head .menu span {
    font-size: 12px;
  }
  .head .menu {
    width: 100px;
    height: 40px;
  }
  .head .logo img {
    max-width: 70%;
    margin: 5% 0 0 0;
  }
  .fp-completely .fp-arrow.fp-prev {
    left: -30px;
  }
  .fp-completely .fp-arrow.fp-next {
    right: -30px;
  }
  .fp-arrow.fp-prev::before {
    top: 5%;
  }
  .fp-arrow.fp-next::before {
    top: 5%;
  }
  .fp-arrow.fp-prev {
    width: 60px;
    height: 60px;
  }
  .fp-arrow.fp-next {
    width: 60px;
    height: 60px;
  }
  .section2 .moviebg #videomask {
    display: none;
  }
  .about-sec3 .leftside .name {
    font-size: 22px;
  }
  .about-sec3 .leftside .desc {
    font-size: 14px;
  }
  .about-sec3 .rightside {
    width: 95%;
    right: 0;
    top: 20%;
  }
  .active .rightside .img1 {
    left: 0%;
    width: 40%;
  }
  .active .rightside .img2 {
    top: 13%;
    width: 43%;
    right: 9%;
  }
  .active .rightside .img3 {
    top: 83%;
    width: 45%;
    left: -3%;
  }
  .active .rightside .img4 {
    top: 111%;
    width: 45%;
    right: 8%;
  }
  .active .about-sec3txt {
    top: 71%;
  }
  .fp-completely .tips3 {
    left: 26%;
    bottom: 32%;
  }
  .about-sec2 .leftside {
    top: 14%;
    transition: all 0.4s;
  }
  .about-sec1 .intro {
    top: 18%;
  }
  .section .textbox {
    position: absolute;
    width: 80%;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
  .section .textbox P {
    font-size: calc(6vw + 6px);
    color: #fff;
    font-weight: bold;
    line-height: calc(5vw + 20px);
    transition: all 0.4s;
    text-align: center;
  }
  .section4 .txtbox {
    right: 7%;
    top: 35%;
  }
  .section4 .txtbox p i {
    font-style: normal;
    font-size: 1.8rem;
    text-align: center;
    display: inline-block;
    margin: 0px 0 0 10px;
  }
  .section4 .txtbox p .item {
    font-size: 1.4rem;
  }
  .slide1 .wrap .txtbox a {
    width: 23vw;
    height: 8vw;
    line-height: 8vw;
    margin: 30px 0 0 0;
    font-size: 2.8vw;
  }
  .slide1 .wrap .picbox img {
    width: 100%;
  }
  .slide1 .wrap .picbox {
    margin: 22% 0% 0 0;
  }
  .slide1 .wrap .txtbox .name {
    font-size: 6vw;
    line-height: 8.2vw;
  }
  .slide1 .wrap .txtbox .desc {
    font-size: 4.2vw;
  }
  .footer .wrap .nav {
    display: none;
  }
  .footer .wrap .qrcode {
    display: none;
  }
  .slide1 .wrap {
    width: 65%;
    flex-direction: column;
  }
  .section5 .wrap {
    display: flex;
    justify-content: flex-start;
    flex-direction: column !important;
  }
  .section5 .wrap .item {
    width: calc(100% / 1);
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  .section5 .wrap .item img {
    display: block;
    margin: 0 auto;
    transition: all 0.8s;
    max-height: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .pro-sec .wrap .rightside .txtbox .name {
    font-size: 16px;
  }
  .pro-sec .wrap .rightside .txtbox .desc {
    font-size: 14px;
  }
  .pro-sec1 .btmbar .wrap {
    width: 100%;
    height: 73%;
  }
  .pro-sec3 .wrap {
    flex-direction: column-reverse;
  }
  .active .wrap .rightside {
    right: 0;
    transition: 1s;
    bottom: 0%;
    width: 100%;
    height: 28%;
  }
  .pro-sec1 .btmbar .wrap .item span {
    font-size: 14px;
  }
  .pro-sec1 .btmbar .wrap .item img {
    width: 100%;
  }
  .fp-completely .tips3 {
    left: 3%;
    bottom: 30%;
  }
  .quality-sec .txtbox {
    max-width: 60%;
  }
  .pro-sec1 .rightside img {
    max-width: 63%;
    display: block;
    margin: 0 auto;
  }
  .fp-completely .pro-rightside {
    right: 50%;
    transition: all 1.8s;
    transform: translateX(50%);
  }
  .pro-sec1 .rightside {
    width: 87%;
    position: absolute;
    z-index: 1;
    right: 50%;
    top: 23%;
  }
  .pro-sec1 .leftside {
    top: 65%;
  }
  .pro-sec1 .leftside .name {
    font-size: 22px;
  }
  .pro-sec1 .leftside .desc {
    font-size: 14px;
  }
  .pro-sec .wrap .leftside {
    width: 100%;
    height: 100%;
  }
  .pro-sec .wrap .leftside img {
    width: fit-content;
    height: 100%;
    position: absolute;
    bottom: 30%;
    transition: all 6.4s;
    object-fit: contain;
  }
  .pro-sec2 .wrap .rightside {
    width: 100%;
    height: 46%;
  }
  .pro-sec3 .wrap .rightside {
    top: 0;
    z-index: 9;
  }
  .pro-sec5 .wrap .rightside {
    height: 50%;
  }
  .pro-sec4 .slide .icon1 {
    transform: scale(0.5);
  }
  .pro-sec4 .slide .icon2 {
    transform: scale(0.5);
  }
  .pro-sec4 .slide .icon3 {
    transform: scale(0.5);
  }
  .pro-sec4 .slide .icon4 {
    transform: scale(0.5);
  }
  .pro-sec4 .slide .icon5 {
    transform: scale(0.5);
  }
  .pro-sec4 .slide .icon6 {
    transform: scale(0.5);
  }
  .pro-sec4 .introtxt .txt .name {
    font-size: 16px;
  }
  .pro-sec4 .introtxt .txt .desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 392px) {
}

@media screen and (max-width: 375px) {
}
