@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.eot');
  src: url('../fonts/Outfit-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Outfit-Regular.woff2') format('woff2'), url('../fonts/Outfit-Regular.woff') format('woff'), url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Medium.eot');
  src: url('../fonts/Outfit-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Outfit-Medium.woff2') format('woff2'), url('../fonts/Outfit-Medium.woff') format('woff'), url('../fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.eot');
  src: url('../fonts/Outfit-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Outfit-Bold.woff2') format('woff2'), url('../fonts/Outfit-Bold.woff') format('woff'), url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
body {
  --color: #3d94ba;
  font-family: 'Outfit';
  font-weight: 400;
  max-width: 1920px;
  margin: 0 auto;
  color: #333;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1670px;
  margin: 0 auto;
}
.more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  background: var(--color);
  height: 46px;
  color: #fff;
  border-radius: 23px;
  padding: 0 29px 0 17px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more img {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -moz-transition: transform .5s, -moz-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s, -moz-transform .5s;
}
.more em {
  margin: 3px 0 0 30px;
}
.more::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 6px;
  left: 9px;
  width: 34px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more.white {
  background: #fff;
  color: #333;
}
.more.white img {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.more.white::before {
  background: var(--color);
}
.more.white:hover::before {
  background: var(--color);
}
.more:hover,
.more:focus {
  color: #fff;
}
.more:hover img,
.more:focus img {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-filter: brightness(100);
  filter: brightness(100);
}
.more:hover::before,
.more:focus::before {
  width: 100%;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  background: #000;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
#header .nav {
  padding: 29px 0;
}
#header .nav .ui.menu .logo {
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#header .nav .ui.menu .menu-box {
  margin: 0 auto 0 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 6.2em;
  color: #fff;
  font-size: 20px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: inline-block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: auto;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: .5em 1em;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:nth-child(5) {
  margin-left: 6.55em;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .h-search {
  cursor: pointer;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu .yuy span {
  color: #fff;
}
#header .nav .ui.menu .yuy ul {
  left: initial;
  right: 0;
}
#header::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header.inner .nav .ui.menu .more:hover,
#header.active .nav .ui.menu .more:hover {
  color: var(--color);
}
#header.inner .nav .ui.menu .more:hover i img,
#header.active .nav .ui.menu .more:hover i img {
  -webkit-filter: none;
  filter: none;
}
#header.inner .nav .ui.menu .more:hover::before,
#header.active .nav .ui.menu .more:hover::before {
  background: #fff;
}
#header.inner::after,
#header.active::after {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.i-title {
  font-size: 60px;
  line-height: 1.3;
}
.i-title,
.title {
  font-weight: bold;
}
.text-color {
  color: var(--color);
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner ul {
  margin: 0 auto;
}
#banner ul li {
  position: relative;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text {
  position: absolute;
  z-index: 2;
  top: 47%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
}
#banner ul li .text .box {
  width: 50%;
  margin: 0 auto;
}
#banner ul li .text .box .title {
  font-size: 3em;
}
#banner ul li .text .title,
#banner ul li .text .con,
#banner ul li .text .btn {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 61, 85, 0.6);
}
#banner ul .swiper-slide-active .text .title,
#banner ul .swiper-slide-active .text .con,
#banner ul .swiper-slide-active .text .btn {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#banner ul .swiper-slide-active .text .title {
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  transition-delay: .6s;
}
#banner ul .swiper-slide-active .text .con {
  opacity: .6;
  -webkit-transition-delay: .9s;
  -moz-transition-delay: .9s;
  transition-delay: .9s;
}
#banner ul .swiper-slide-active .text .btn {
  -webkit-transition-delay: 1.2s;
  -moz-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
#banner .swiper-pagination {
  width: 100%;
  left: 0;
  text-align: center;
  bottom: 57px;
  z-index: 1;
}
#banner .swiper-pagination span {
  width: 11px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 4.5px;
}
#banner .swiper-pagination span:first-child {
  margin-left: 0;
}
#banner .swiper-pagination span:last-child {
  margin-right: 0;
}
#banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}
#banner .arrow a {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .arrow a.prev {
  left: 7.3%;
}
#banner .arrow a.prev i {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
#banner .arrow a.next {
  right: 7.03125%;
}
#banner .arrow a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color);
}
.tr_5 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.font-18 {
  line-height: 1.6;
}
.font-16 {
  line-height: 1.7;
}
.font-14 {
  line-height: 2;
}
.dots {
  margin-top: 2px;
}
.dots i {
  display: inline-block;
  width: 6px;
  height: 7px;
  border-radius: 50%;
  background: var(--color);
  margin-right: 4px;
}
.dots i:nth-child(2) {
  opacity: .6;
}
.dots i:last-child {
  opacity: .4;
}
@-webkit-keyframes img {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-moz-keyframes img {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes img {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes img1 {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-moz-keyframes img1 {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes img1 {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
#index-body .i-about {
  padding: 5.42% 0 6.25%;
}

#index-body .i-about .header .con {
  color: #999;
}
#index-body .i-about .content .img {
  width: 50.8537%;
  padding-right: 71px;
}
#index-body .i-about .content .img img {
  border-radius: 10px;
}
#index-body .i-about .content .img .play {
  width: 6.75em;
  height: 6.75em;
  left: initial;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#index-body .i-about .content .img .play svg {
  text-transform: uppercase;
  -webkit-animation: xz 10s linear infinite;
  -moz-animation: xz 10s linear infinite;
  animation: xz 10s linear infinite;
}
#index-body .i-about .content .img .play svg text {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 6px;
  fill: #fff;
}
#index-body .i-about .content .img .play em {
  position: absolute;
  top: 22px;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .i-about .content .img .play em i {
  border-left: 1.35em solid var(--color);
  border-top: .75em solid transparent;
  border-bottom: 0.75em solid transparent;
}
#index-body .i-about .content .img .play::before,
#index-body .i-about .content .img .play::after {
  display: none;
}
#index-body .i-about .content .text {
  width: 44%;
    z-index: 1;
    /*display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 13;
    overflow: hidden;
    text-overflow: ellipsis;*/
}
}
#index-body .i-about .content .text .con {
  line-height: 1.7;
  color: #666;
}
#index-body .i-about .content .text .con h1 {
  display: inline;
}
#index-body .i-about .content .text .con strong {
  color: var(--color);
}
#index-body .i-about .content .text::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  right: -22%;
  bottom: -26px;
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #ececec;
  white-space: nowrap;
  letter-spacing: 6px;
}
#index-body .i-category {
  background-color: #e8eff6;
  padding: 5.46875% 0 6.771%;
}
#index-body .i-category .header .con {
  line-height: 1.5;
  color: #999;
  width: 81.1%;
  margin: 12px auto 0;
}
#index-body .i-category .content .left {
  width: 40.671%;
}
#index-body .i-category .content .left .title {
  position: relative;
  z-index: 1;
}
#index-body .i-category .content .left .title::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  font-size: 2.5em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #d9dfe5;
  text-transform: uppercase;
}
#index-body .i-category .content .left .tab {
  width: 67.35%;
}
#index-body .i-category .content .left .tab ul li {
  padding-bottom: 18px;
}
#index-body .i-category .content .left .tab ul li a {
  display: block;
  font-size: 24px;
  color: #666;
  padding: 11px 20px;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content .left .tab ul li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 40%;
  background: #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content .left .tab ul li a::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content .left .tab ul li:last-child {
  padding-bottom: 0;
}
#index-body .i-category .content .left .tab ul li.active a {
  color: #fff;
}
#index-body .i-category .content .left .tab ul li.active a::before {
  opacity: 0;
}
#index-body .i-category .content .left .tab ul li.active a::after {
  width: 100%;
}
#index-body .i-category .content .right {
  width: 59.329%;
}
#index-body .i-category .content .right .item {
  display: none;
  min-height: 700px;
}
#index-body .i-category .content .right .item.active {
  display: block;
}
#index-body .i-category .content .right ul .slick-list {
  padding-right: 47.8%;
  padding-top: 40px;
}
#index-body .i-category .content .right ul li .img {
  border-radius: 50%;
  position: relative;
  z-index: 1;
  padding: 42px 32px 41px 31px;
}
#index-body .i-category .content .right ul li .img .img-box {
  border-radius: 50%;
}
#index-body .i-category .content .right ul li .img::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/circle.png) no-repeat center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: xz 40s 0.3s linear infinite;
  -moz-animation: xz 40s 0.3s linear infinite;
  animation: xz 40s 0.3s linear infinite;
}
#index-body .i-category .content .right ul .slick-slide {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content .right ul .slick-slide .title {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  margin-top: 10px;
  font-weight: 400;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category .content .right ul .slick-current {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#index-body .i-category .content .right ul .slick-current li .img::after {
  opacity: 1;
}
#index-body .i-category .content .right ul .slick-current li .title {
  font-weight: bold;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  margin-top: 31px;
}
#index-body .i-category .content .right .slickBtn {
  font-size: 28px;
}
#index-body .i-category .content .right .slickBtn div {
  width: 2.11em;
  height: 2.11em;
}
#index-body .i-category .content .right .slickBtn div.prev {
  display: none !important;
}
#index-body .i-category .content .right .slickBtn div:hover {
  background: #fff;
  color: var(--color);
}
#index-body .i-application .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .i-application .top .text {
  top: 0;
  left: 0;
  color: #fff;
  padding: 10.208% 0 0 12.556%;
}
#index-body .i-application .top .text .title {
  line-height: 1.3;
}
#index-body .i-application .top .text .dots i {
  background: #fff;
}
#index-body .i-application .top .num {
  position: absolute;
  right: 0;
  bottom: -68px;
  font-size: 188px;
  font-weight: bold;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #bdbdcc;
}
#index-body .i-application .top .left {
  width: 57.65625%;
}
#index-body .i-application .top .left ul li {
  height: 100%;
  /*top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;*/
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
#index-body .i-application .top .left ul li::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}
#index-body .i-application .top .left ul li .num {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  right: initial;
  left: 11%;
}
/*#index-body .i-application .top .left ul li.active {
  opacity: 1;
  z-index: 2;
  -webkit-animation: img1 2s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  -moz-animation: img1 2s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  animation: img1 2s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}*/
#index-body .i-application .top .left ul li.active .num {
  opacity: 1;
  z-index: 3;
}
#index-body .i-application .top .left ul li.zIndex {
  opacity: 1;
  z-index: 1;
}
#index-body .i-application .top .right {
  width: 42.34375%;
  height: auto;
  position: relative;
}
#index-body .i-application .top .right ul {
  height: 100%;
}
#index-body .i-application .top ul .slick-list{
  overflow: unset;
}
#index-body .i-application .top ul .slick-list,
#index-body .i-application .top ul .slick-slide {
  height: 100%;
}
#index-body .i-application .top ul .slick-list > div,
#index-body .i-application .top ul .slick-slide > div {
  height: 100%;
}
#index-body .i-application .top ul li {
  height: 100%;
}
#index-body .i-application .top ul li .text,
#index-body .i-application .top ul li .num {
  z-index: 1;
}
#index-body .i-application .top .right ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 61, 85, 0.5);
}
#index-body .i-application .top .right .arrow {
  position: absolute;
  bottom: 82px;
  left: -82px;
  z-index: 3;
}
#index-body .i-application .top .right .arrow a {
  display: inline-block;
  width: 58px;
  height: 58px;
  border: solid 2px #999999;
  border-radius: 50%;
  font-size: 28px;
  color: #999;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-align: center;
  line-height: 58px;
}
#index-body .i-application .top .right .arrow a i {
  display: inline-block;
}
#index-body .i-application .top .right .arrow a.prev i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#index-body .i-application .top .right .arrow a.next {
  margin-left: 43px;
}
#index-body .i-application .top .right .arrow a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}
#index-body .i-application .bottom {
  background: var(--color);
  color: #fff;
}
#index-body .i-application .bottom .i-title {
  width: 48.3537%;
}
#index-body .i-application .bottom .con {
  line-height: 1.9;
  width: 41.463%;
}
#index-body .i-advantage {
  padding: 6.146% 0 6.2%;
}
#index-body .i-advantage .header {
  top: 0;
  right: 0;
  width: 52.11%;
}
#index-body .i-advantage .header .con {
  color: #999;
}
#index-body .i-advantage ul li .ig {
  height: 358px;
  background-color: #e8eff6;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-advantage ul li .ig .icon {
  display: inline-block;
  line-height: 93px;
}
#index-body .i-advantage ul li .ig .icon img {
  vertical-align: middle;
}
#index-body .i-advantage ul li .ig .title {
  width: 71%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
#index-body .i-advantage ul li .ig .con {
  line-height: 1.7;
  display: none;
}
#index-body .i-advantage ul li .ig::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(307deg, #47b7ea 0%, #328db5 100%), -webkit-linear-gradient(#0a368f, #0a368f);
  background-image: -moz-linear-gradient(307deg, #47b7ea 0%, #328db5 100%), -moz-linear-gradient(#0a368f, #0a368f);
  background-image: linear-gradient(143deg, #47b7ea 0%, #328db5 100%), linear-gradient(#0a368f, #0a368f);
  background-blend-mode: normal, normal;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-advantage ul li .ig:hover {
  color: #fff;
}
#index-body .i-advantage ul li .ig:hover .icon {
  display: none;
}
#index-body .i-advantage ul li .ig:hover .title {
  width: 100%;
}
#index-body .i-advantage ul li .ig:hover .con {
  display: block;
}
#index-body .i-advantage ul li .ig:hover::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-advantage ul li:nth-child(2) {
  margin-top: 9.45%;
}
#index-body .i-advantage ul li:last-child {
  margin-top: 18.66%;
}
#index-body .i-support {
  background: #f6f9fb;
  padding: 5.3646% 0 5.89%;
}
#index-body .i-support .header {
  width: 71.9%;
}
#index-body .i-support .header .con {
  line-height: 1.8;
  color: #999;
  width: 90%;
}
#index-body .i-support .content {
  z-index: 1;
  min-height: 500px;
  overflow: hidden;
}
#index-body .i-support .content .img {
  width: 51.2805%;
  height: 42.071vh;
  border-radius: 10px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
#index-body .i-support .content .img ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#index-body .i-support .content .img ul li img {
  width: 100%;
  height: 100%;
}
#index-body .i-support .content .img ul li.active {
  z-index: 2;
  -webkit-animation: img 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  -moz-animation: img 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  animation: img 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}
#index-body .i-support .content .img::after {
  content: attr(data-text);
  position: absolute;
  z-index: 3;
  bottom: -19px;
  left: -16.6%;
  font-size: 100px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #d7d8dc;
}
#index-body .i-support .content .text {
  width: 41.16%;
}
#index-body .i-support .content .text ul li {
  position: relative;
}
#index-body .i-support .content .text ul li .icon {
  width: 64px;
  height: 64px;
  border: solid 1px transparent;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
#index-body .i-support .content .text ul li .icon img {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-support .content .text ul li .icon::before,
#index-body .i-support .content .text ul li .icon::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-support .content .text ul li .icon::before {
  top: 6px;
  width: 14px;
  height: 13px;
  border: solid 1px #3d94ba;
  opacity: 0.4;
}
#index-body .i-support .content .text ul li .icon::after {
  top: 9px;
  width: 8px;
  height: 7px;
  background-color: #3d94ba;
  opacity: 0.4;
}
#index-body .i-support .content .text ul li .ig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-bottom: 1px solid rgba(54, 54, 54, 0.1);
}
#index-body .i-support .content .text ul li .ig .top .tit {
  line-height: 1;
  color: #666;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#index-body .i-support .content .text ul li .ig .top .dj {
  width: 34px;
  height: 35px;
  border: solid 1px #666666;
  border-radius: 50%;
  font-size: 16px;
  color: #666;
}
#index-body .i-support .content .text ul li .ig .con {
  line-height: 1.65;
  color: #999;
  display: none;
}
#index-body .i-support .content .text ul li .line {
  top: 27px;
  left: 30px;
  bottom: 7px;
  width: 1px;
  background-color: #d1d3d4;
}
#index-body .i-support .content .text ul li .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: #96baca;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-support .content .text ul li.active .icon {
  border-color: var(--color);
}
#index-body .i-support .content .text ul li.active .icon img {
  opacity: 1;
}
#index-body .i-support .content .text ul li.active .icon::before,
#index-body .i-support .content .text ul li.active .icon::after {
  opacity: 0;
}
#index-body .i-support .content .text ul li.active .ig .top .tit {
  font-weight: bold;
  color: var(--color);
  /*font-size: 1.5em;*/
}
#index-body .i-support .content .text ul li.active .line {
  top: 70px;
}
#index-body .i-support .content .text ul li.active .line::after {
  height: 50%;
}
#index-body .i-support .content .text ul li:last-child .line {
  display: none;
}
#index-body .i-news {
  padding: 6.6146% 0 10.3125%;
}
#index-body .i-news .header .con {
  color: #999;
}
#index-body .i-news .top {
  margin-top: -6%;
  border-bottom: 1px solid #ccc;
}
#index-body .i-news .top .text {
  width: 33.6%;
}
#index-body .i-news .top .text .tit {
  color: #666;
  line-height: 1.4;
}
#index-body .i-news .top .text .tit:hover {
  color: var(--color);
}
#index-body .i-news .bottom ul li .ig {
  height: 357px;
  background-color: #f4f4f4;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-news .bottom ul li .ig .title {
  line-height: 1.5;
}
#index-body .i-news .bottom ul li .ig .con {
  line-height: 1.7;
  margin-top: 13px;
  display: none;
}
#index-body .i-news .bottom ul li .ig .link {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  line-height: 58px;
  margin: 0 auto;
  text-align: center;
  font-size: 28px;
}
#index-body .i-news .bottom ul li .ig .link i {
  display: inline-block;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
#index-body .i-news .bottom ul li .ig .more {
  display: none;
}
#index-body .i-news .bottom ul li .ig::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(307deg, #47b7ea 0%, #328db5 100%), -webkit-linear-gradient(#86c9db, #86c9db);
  background-image: -moz-linear-gradient(307deg, #47b7ea 0%, #328db5 100%), -moz-linear-gradient(#86c9db, #86c9db);
  background-image: linear-gradient(143deg, #47b7ea 0%, #328db5 100%), linear-gradient(#86c9db, #86c9db);
  background-blend-mode: normal, normal;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news .bottom ul li .ig::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 93px;
  height: 92px;
  background: url(../images/n-icon.png) no-repeat center;
  background-size: cover;
}
#index-body .i-news .bottom ul li .ig:hover {
  color: #fff;
}
#index-body .i-news .bottom ul li .ig:hover .title {
  text-align: left;
}
#index-body .i-news .bottom ul li .ig:hover .con {
  display: -webkit-box;
}
#index-body .i-news .bottom ul li .ig:hover .btn .link {
  display: none;
}
#index-body .i-news .bottom ul li .ig:hover .btn .more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
#index-body .i-news .bottom ul li .ig:hover::before {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-news .bottom ul li .ig:hover::after {
  -webkit-filter: brightness(100) opacity(0.9);
  filter: brightness(100) opacity(0.9);
}
#footer {
  background-image: -webkit-linear-gradient(274deg, #4ca4cc 0%, #3a8cb0 32%, #277393 100%), -webkit-linear-gradient(#1c6f99, #1c6f99);
  background-image: -moz-linear-gradient(274deg, #4ca4cc 0%, #3a8cb0 32%, #277393 100%), -moz-linear-gradient(#1c6f99, #1c6f99);
  background-image: linear-gradient(176deg, #4ca4cc 0%, #3a8cb0 32%, #277393 100%), linear-gradient(#1c6f99, #1c6f99);
  background-blend-mode: normal, 
		normal;
  border-radius: 24px 24px 0px 0px;
  color: #fff;
  position: relative;
  z-index: 1;
}
#footer .tit {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin: 29px 0 25px;
}
#footer ul li {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer ul li:hover {
  color: #fff;
}
#footer ul li i {
  width: 21px;
  margin-top: 6px;
}
#footer ul li span {
  margin-left: 13px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#footer ul li:last-child {
  margin-bottom: 0;
}
#footer ul li ul {
  display: none;
}
#footer .f-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .f-header .i-title {
  width: 27.38%;
}
#footer .f-header .form {
  width: 52.32%;
  background-color: #ffffff;
  border-radius: 31px;
  padding: 9px 16px;
  margin-bottom: 18px;
}
#footer .f-header .form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .f-header .form input {
  width: 18%;
  height: 46px;
  border: 0;
  font-size: 14px;
  color: #333;
  padding: 0 16px;
}
#footer .f-header .form input::-webkit-input-placeholder {
  color: #999;
}
#footer .f-header .form input:-moz-placeholder {
  color: #999;
}
#footer .f-header .form input::-moz-placeholder {
  color: #999;
}
#footer .f-header .form input:-ms-input-placeholder {
  color: #999;
}
#footer .f-header .form input::placeholder {
  color: #999;
}
#footer .f-header .form input:nth-child(5) {
  width: 46.86%;
}
#footer .f-header .form button {
  border: 0;
}
#footer .f-content .f-ab {
  width: 22.744%;
}
#footer .f-content .f-contact {
  width: 19.0854%;
}
#footer .f-content .f-contact ul li {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 28px;
}
#footer .f-content .f-contact ul li:last-child {
  margin-bottom: 0;
}
#footer .f-copy {
  font-size: 14px;
  line-height: 2;
  padding: 11px 0 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .f-copy svg {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  max-height: 26px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: -1px;
  opacity: 1;
  text-transform: capitalize;
  fill: #fff;
}
#footer .f-copy svg text {
  fill: #fff;
}
#footer .f-copy .share a {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  margin-right: 26px;
}
#footer .f-copy .share a:nth-child(3) {
  font-size: 28px;
}
@media screen and (max-width: 1700px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 4em;
  }
  #index-body .i-about .content .text::after {
    right: -8%;
  }
  .slickBtn.pos div.next {
    left: 96%;
  }
  #index-body .i-category .content .left .tab ul li a {
    font-size: 19px;
  }
  .i-title {
    font-size: 50px;
  }
  #footer .f-header .form {
    width: 56%;
  }
  #footer .f-header .form input {
    width: 22%;
  }
  #footer .f-header .form input:nth-child(5) {
    width: 36.6%;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 17px;
  }
  #banner ul li .text {
    top: 50%;
  }
  #banner ul li .text .box {
    width: 60%;
  }
  #index-body .i-about .content .text::after {
    font-size: 86px;
  }
  #index-body .i-category .content .left .tab {
    width: 80%;
  }
  .i-title {
    font-size: 43px;
  }
  #index-body .i-advantage ul li .ig .title {
    width: 76%;
  }
  #index-body .i-support .content .text {
    width: 46%;
  }
  #index-body .i-news .top .img-box {
    width: 60%;
  }
  #footer .f-header .form {
    width: 62%;
  }
  #footer .f-header .form input:nth-child(5) {
    width: 35%;
  }
}
@media screen and (max-width: 1250px) {
  #banner .swiper-pagination {
    bottom: 20px;
  }
  #index-body .i-about .content .text {
    width: 46%;
  }
  #index-body .i-advantage .header{
    top: -70px;
  }
  #index-body .i-advantage .list{
    margin-top: 70px;
  }
  #footer .f-header .i-title {
    width: 36%;
  }
  #footer .f-header .form {
    width: 57%;
  }
  #footer .f-header .form input {
    width: 50%;
  }
  #footer .f-header .form input:nth-child(5) {
    width: 100%;
  }
  #footer .f-header .form button {
    margin-top: 20px;
  }
  #footer ul li {
    font-size: 16px;
  }
  #footer .f-content .f-contact ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .font-30 {
    font-size: 24px;
    line-height: 1.5 !important;
  }
  .font-20 {
    font-size: 18px;
    line-height: 1.6 !important;
  }
  .font-18 {
    font-size: 16px;
    line-height: 1.8 !important;
  }
  #banner ul li .text .box {
    width: 100%;
  }
  #banner ul li .text .box .title {
    font-size: 2em;
  }
  #banner ul li .text .btn {
    margin-top: 12px;
  }
  #banner .arrow {
    display: none;
  }
  #banner .swiper-pagination {
    bottom: 6px;
  }
  .i-title {
    font-size: 36px;
  }
  #index-body .i-about .content .img {
    width: 100%;
  }
  #index-body .i-about .content .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  #index-body .i-about .content .text::after {
    right: -2%;
  }
  #index-body .i-category .header .con {
    width: 93%;
  }
  #index-body .i-category .content .left {
    width: 50%;
  }
  #index-body .i-category .content .right {
    width: 50%;
    padding-right: 50px;
  }
  #index-body .i-category .content .right ul .slick-list {
    padding-right: 0;
  }
  #index-body .i-category .content .right .slickBtn {
    font-size: 20px;
  }
  #index-body .i-category .content .right .slickBtn div.next {
    left: 102%;
  }
  #index-body .i-application .top .num {
    font-size: 100px;
    bottom: -30px;
  }
  #index-body .i-advantage .header {
    position: initial;
    width: 100%;
    text-align: left;
  }
  #index-body .i-advantage .list ul li .ig .title {
    font-size: 20px;
    width: 100%;
  }
  #index-body .i-advantage .list ul li .ig .con {
    font-size: 16px;
  }
  #index-body .i-support .header {
    width: 100%;
  }
  #index-body .i-support .content .img {
    height: 32vh;
  }
  #index-body .i-support .content .img::after {
    display: none;
  }
  #index-body .i-support .content .text ul li .ig .tit {
    font-size: 18px;
  }
  #index-body .i-support .content .text ul li .ig .con {
    font-size: 16px;
  }
  #index-body .i-support .content .text ul li.active .ig .top .tit {
    font-size: 18px;
  }
  #index-body .i-news .top {
    margin-top: 0;
  }
  #footer .f-header .i-title {
    width: 100%;
  }
  #footer .f-header .form {
    width: 100%;
    margin-top: 20px;
  }
  #footer .f-content .f-nav,
  #footer .f-content .f-product {
    display: none;
  }
  #footer .f-content .f-ab {
    width: 40%;
  }
  #footer .f-content .f-contact {
    width: 40%;
  }
  #footer .f-copy .share {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #banner ul li .text .box .title {
    font-size: 26px;
  }
  #banner ul li .text .box .con {
    font-size: 16px;
    padding: 0;
  }
  #banner .swiper-pagination {
    bottom: 0;
  }
  .more {
    padding: 0 17px;
  }
  .more em {
    margin-left: 15px;
  }
  .font-40 {
    font-size: 30px;
  }
  .font-30 {
    font-size: 20px;
  }
  .font-24 {
    font-size: 18px;
  }
  .i-title {
    font-size: 30px;
  }
  #index-body .i-about .content .text::after {
    display: none;
  }
  #index-body .i-category .header .con {
    width: 100%;
  }
  #index-body .i-category .content .left {
    width: 100%;
  }
  #index-body .i-category .content .right {
    width: 100%;
    margin-top: 20px;
    padding-right: 0;
  }
  #index-body .i-category .content .right ul .slick-list {
    padding-right: 46%;
  }
  #index-body .i-category .content .right .slickBtn {
    font-size: 18px;
  }
  #index-body .i-category .content .right .slickBtn div.next {
    left: 94%;
  }
  #index-body .i-application .top .text {
    padding: 20px 15px;
  }
  #index-body .i-application .top .right .arrow a {
    font-size: 20px;
    width: 46px;
    height: 46px;
    line-height: 46px;
  }
  #index-body .i-application .bottom .i-title {
    width: 100%;
  }
  #index-body .i-application .bottom .con {
    width: 100%;
    margin-top: 20px;
  }
  #index-body .i-advantage .list ul {
    margin: -10px 0;
  }
  #index-body .i-advantage .list ul li {
    width: 50%;
    margin: 10px 0 !important;
  }
  #index-body .i-support .content .img {
    display: none;
  }
  #index-body .i-support .content .text {
    width: 100%;
  }
  #index-body .i-news .top {
    display: none;
  }
  #footer .f-content .f-ab,
  #footer .f-content .f-contact {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  .more {
    height: 36px;
    font-size: 14px;
  }
  .more::before {
    width: 28px;
    height: 28px;
    top: 4px;
  }
  .font-20,
  .font-18 {
    font-size: 16px;
    line-height: 1.8 !important;
  }
  #banner ul li .text .box .title {
    font-size: 20px;
  }
  #banner ul li .text .con {
    display: none;
  }
  #index-body .i-about .content .img {
    padding-right: 20px;
  }
  #index-body .i-category .content .left .tab {
    width: 96%;
  }
  #index-body .i-category .content .left .tab ul li a {
    font-size: 16px;
  }
  #index-body .i-category .content .right ul .slick-list {
    padding-right: 0;
  }
  #index-body .i-application .top .num {
    display: none;
  }
  #index-body .i-application .top .left {
    display: none;
  }
  #index-body .i-application .top .right {
    width: 100%;
  }
  #index-body .i-application .top .right .arrow {
    left: 0;
    bottom: 0;
  }
  #index-body .i-application .top .right .arrow.next {
    margin-left: 12px;
  }
  #index-body .i-advantage .list {
    margin-top: 20px;
  }
  #index-body .i-advantage .list ul li {
    width: 100%;
  }
  #index-body .i-support .header .con {
    width: 100%;
  }
  #index-body .i-support .content .text ul li .ig .top .tit {
    line-height: 1.6;
  }
  #index-body .i-news .bottom ul li .ig {
    height: 280px;
  }
  #footer .f-header .form input {
    width: 100%;
  }
  #footer .f-content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .f-content .f-ab,
  #footer .f-content .f-contact {
    width: 100%;
  }
  #footer .f-content .f-contact ul li {
    margin-bottom: 14px;
  }
}
.inner-banner {
    margin-top: 104px;
    overflow: hidden;
}
.inner-banner .con {
    padding-left: 90px;
}
.inner-banner img.ban {
    position: absolute;
    left: 0;
    top: 19px;
}
.inner-banner .mbx {
    color: #666565;
}
.inner-banner .mbx span {
    color: var(--color);
}
.inner-banner .con .line {
    display: block;
    height: 1px;
    width: 100%;
    background-color: #b1b2b2;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (max-width: 1250px) {
    .inner-banner {
        margin-top: 60px;
    }
}
.grid-box {
    font-size: 0;
    [;
    letter-spacing: -4px;
    font-size: 12px;
    ]
}

.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
    [;
    letter-spacing: 0;
    ]
}

.grid-box .column {
    width: 100%;
}

.grid-box.two>.column {
    width: 50%;
}

.grid-box.three>.column {
    width: 33.33333%;
}

.grid-box.four>.column {
    width: 25%;
}

.grid-box.five>.column {
    width: 20%;
}

.grid-box.six>.column {
    width: 16.6666667%;
}

.grid-box.seven>.column {
    width: 14.285714%;
}

.grid-box.eight>.column {
    width: 12.5%;
}

.grid-box.nine>.column {
    width: 11.11111111%;
}

.grid-box.ten>.column {
    width: 10%;
}
@media screen and (max-width: 1000px) {
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 33.33333%;
    }
    .grid-box.four>.column {
        width: 33.33333%;
    }
    .grid-box.five>.column {
        width: 33.33333%;
    }
}
@media screen and (max-width: 700px) {
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 50%;
    }
    .grid-box.four>.column {
        width: 50%;
    }
    .grid-box.five>.column {
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .grid-box.two>.column {
        width: 100%;
    }
    .grid-box.three>.column {
        width: 100%;
    }
    .grid-box.four>.column {
        width: 100%;
    }
    .grid-box.five>.column {
        width: 100%;
    }
}
.zdy-switch {
    display: flex;
    align-items: center;
    justify-content: center;
}
.zdy-switch>div {
    position: static;
    width: 50px;
    height: 50px;
    background-color: rgba(237, 237, 237, 0.1);
    border-radius: 50%;
    margin-top: 0;
    margin-left: 12px;
    margin-right: 12px;
    transition: all 0.5s;
}
.zdy-switch>div::after {
    font-size: 16px;
    color: #b2b2b2;
    transition: all 0.5s;
}
.zdy-switch>div:hover {
    background-color: var(--color);
}
.zdy-switch>div:hover::after {
    color: #fff;
}
.zdy-switch.grey>div {
    background-color: #ededed;
}
.zdy-switch.grey>div:hover {
    background-color: var(--color);
}
.mk-desc {
    color: #666666;
    line-height: 1.8;
    font-size: 16px;
}
.mk-desc.white {
    color: #fff;
}
.about-page .about-1 .about-img img {
    border-radius: 20px;
}
.about-page .about-1 .about-txt {
    background-color: #f4f5f9;
    border-radius: 10px;
    width: 85%;
    margin: -13% auto 0;
    position: relative;
    z-index: 1;
}
.about-page .about-1 .about-txt .desc {
    color: #666666;
    line-height: 1.7;
}
.about-page .about-2 {
  position: relative;
  overflow: hidden;
}
.about-page .about-2 .swiper{
    padding: 60px 0;
    margin: 0 150px;
}
.about-page .about-2 .mk-tt{ 
    color: #fff;
}
.about-page .about-2 .swiper .h6{
    line-height: 2;
    color: #fff;
}
.about-page .about-2 .swiper .text{
    line-height: 2;
    padding-right: 40px;
    color: #fff;
}  
.about-page .about-2 .swiper .swiper-wrapper{
    align-items: flex-end;
}
.about-page .about-2 .swiper .swiper-slide .box{
    position: relative;
}
.about-page .about-2 .swiper .swiper-slide .box .line{
    display: block;
    height: 1px;
    background: #dcdcdc;
    position: relative;
    width: 100%;
    margin: 20px 0 10px;
}
.about-page .about-2 .swiper .swiper-slide .box .line:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color);
    -webkit-transition: 6.5s linear;
    -moz-transition: 6.5s linear;
    transition: 6.5s linear;
}
.about-page .about-2 .swiper .swiper-slide .box .line i{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #787878;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page .about-2 .swiper .swiper-slide .box .line i:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color);
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}
.about-page .about-2 .swiper .swiper-slide.swiper-slide-active .box .line:before {
    width: 100%
}
.about-page .about-2 .swiper .swiper-slide.swiper-slide-active .box .line i {
    left: 3px;
    background-color: var(--color)
}
.about-page .about-2 .swiper .swiper-slide.swiper-slide-active .box .line i:after {
    opacity: .5
}
.about-page .about-2 .zdy-switch>div{
    position: absolute;
    margin-top: -25px;
    background-color: #fff;
}
.about-page .about-2 .zdy-switch>div:hover{
    background-color: var(--color);
}
.about-page .about-3 .brands-list ul li .box {
    background-color: #f4f5f9;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.5s;
}
.about-page .about-3 .brands-list ul li .box .txtbox .desc {
    height: 158px;
    overflow-y: auto;
    line-height: 1.7;
    transition: all 0.5s;
}
.about-page .about-3 .brands-list ul li .box:hover {
    background-color: var(--color);
}
.about-page .about-3 .brands-list ul li .box:hover .tt {
    color: #fff;
}
.about-page .about-3 .brands-list ul li .box:hover .desc {
    color: #fff;
}
.about-page .about-3 .brands-list ul li .box:hover .desc::-webkit-scrollbar-thumb {
    background-color: #000;
}
.about-page .about-3 .brands-list ul li .box:hover a img{
  filter: grayscale(100%) brightness(200%);
}
.about-page .about-4 {
    background-color: #f4f5f9;
}
.about-page .about-4 .list {
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0 20% 2.5%;
}
.about-page .about-4 .list ul li {
    padding-top: 130px;
    transition: all 0.5s;
}
.about-page .about-4 .list ul li .box {
    transform-origin: bottom;
    transition: all 0.5s;
}
.about-page .about-4 .list ul li.swiper-slide {
    opacity: 0;
}
.about-page .about-4 .list ul li.swiper-slide-prev .box {
    transform: scale(1.2) translateX(-20px);
}
.about-page .about-4 .list ul li.swiper-slide-next {
    z-index: 9;
}
.about-page .about-4 .list ul li.swiper-slide-next .box {
    transform: scale(1.2) translateX(20px);
}
.about-page .about-4 .list ul li.swiper-slide-active {
    z-index: 10;
}
.about-page .about-4 .list ul li.swiper-slide-active .box {
    transform: scale(1.4);
}
.about-page .about-4 .list .zdy-switch>div {
    position: absolute;
    background-color: #ededed;
}
.about-page .about-4 .list .zdy-switch>div:hover {
    background-color: var(--color);
}
.about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
    left: 13%;
}
.about-page .about-4 .list .zdy-switch>div.swiper-button-next {
    right: 13%;
}
.faq-page .faq-1 .list ul li {
  border: 1px solid #dcdcdc;
  padding: 1.33333333em 2.3em;
}
.faq-page .faq-1 .list ul li i {
  cursor: pointer;
  font-size: 1.2em;
  line-height: 1;
}
.faq-page .faq-1 .list ul li .text {
  line-height: 2;
}
.faq-page .faq-1 .list ul li.active {
  background-color: var(--color);
  color: white;
}
.faq-page .faq-1 .list ul li.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 1450px) {
    .about-page .about-4 .list {
        padding: 0 10% 2.5%;
    }
    .about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
        left: 2%;
    }
    .about-page .about-4 .list .zdy-switch>div.swiper-button-next {
        right: 2%;
    }
}
@media (max-width: 1250px) {
    .about-page .about-2 .swiper .swiper-slide::after{
        height: 150px;
    }
    .about-page .about-3 .brands-list ul li .box {
        padding: 20px 15px;
    }
    .about-page .about-4 .list {
        padding: 0 0 2.5%;
    }
    .about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
        left: -9%;
    }
    .about-page .about-4 .list .zdy-switch>div.swiper-button-next {
        right: -9%;
    }
    .about-page .about-4 .list ul li.swiper-slide-prev .box {
        transform: none;
    }
    .about-page .about-4 .list ul li.swiper-slide-next .box {
        transform: none;
    }
    .about-page .about-4 .list ul li.swiper-slide-active .box {
        transform: scale(1.2);
    }
    .about-page .about-4 .list ul li {
        padding-top: 70px;
    }
}
@media (max-width: 1000px) {
    .about-page .about-1 .about-txt {
        width: 100%;
        margin-top: 5%;
    }
    .about-page .about-2 .swiper {
        padding: 30px 0;margin: 0 66px;
    }
    .about-page .about-2 .swiper .swiper-slide .box {
        padding: 0 10px;
    }
}
@media (max-width: 700px) {
    .about-page .about-1 .about-img img {
        height: 360px;
        object-fit: cover;
    }
    .about-page .about-2 .swiper {
        padding: 20px 0;
    }
    .about-page .about-4 .list {
        background-image: none !important;
    }
    .about-page .about-4 .list .zdy-switch {
        display: none;
    }
    .about-page .about-4 .list ul li.swiper-slide-active .box {
        transform: none;
    }
    .about-page .about-4 .list ul li {
        padding-top: 0;
    }
}
@media screen and (max-width: 500px) {
  .faq-page .faq-1 .list ul li {
    padding: 5%;
  }
}
.gallery-page .wrap {
  margin: -18px;
}
.gallery-page .wrap li {
  padding: 18px;
}

.gallery-page .wrap li .img-box{
    border-radius: 10px;overflow: hidden;
}

.seoPublic .Auxil-related .list ul li{
    padding: 20px 10px;
}

.gallery-page.partner .wrap li{
    width: 20%;
}
@media screen and (max-width: 1450px) {
    .gallery-page.partner .wrap li{
        width: 25%;
    }
}
@media screen and (max-width: 1000px) {
    .gallery-page.partner .wrap li{
        width: 33.3%;
    }
}
@media screen and (max-width: 700px) {
    .gallery-page.partner .wrap li{
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .gallery-page.partner .wrap li{
        width: 100%;
    }
}
.m-page {
    text-align: center;
    float: none;
    margin: 30px -5px 0;
}
.m-page a,
.m-page span {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    font-size: 15px;
    line-height: 36px;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
    -moz-box-shadow: 0 2px 10px 0 #d8dde6;
    -o-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    margin: 5px;
}
.m-page span,
.m-page a:hover {
    background: var(--color) none repeat scroll 0 0;
    color: #fff;
}
@media screen and (max-width: 700px) {
    .m-page {
        margin: 15px -5px 0;
    }
}
.contact-page .contact-1 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.contact-page .contact-1 .left .text {
  color: rgba(0, 0, 0, 0.8);
}

.contact-page .contact-1 .left .text span {
  color: black;
}

.contact-page .contact-1 .left .text i ,
.contact-page .contact-1 .left .text .img{
  width: 2.625em;
  height: 2.625em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
}

.contact-page .contact-1 .left .text i:before,
.contact-page .contact-1 .left .text .img:before {
  font-size: 1.2em;
}

.contact-page .contact-1 .right p,
.contact-page .contact-1 .right span {
  display: block;
  margin-bottom: .2em;
  opacity: .8;
}

.contact-page .contact-1 .right p i,
.contact-page .contact-1 .right span i {
  color: var(--color);
}

.contact-page .contact-1 .right input,
.contact-page .contact-1 .right textarea,
.contact-page .contact-1 .right select {
  width: 100%;
  padding: .9em;
  border: none;
  background-color: #f0f1f2;
  font-size: inherit;
  line-height: 1.4;
}
.contact-page .contact-1 .right input[type="submit"]{
    width: 196px;
    background-color: var(--color);
}
.contact-page .contact-1 .right input[type="submit"]:hover{
    background-color: #000;color: #fff;
}
.contact-page .contact-1 .right textarea {
  height: 110px;
}

.contact-page .contact-1 .right select {
  padding: 1em;
}

.contact-page .contact-1 .right button {
  width: auto;
  border: none;
}

.contact-page iframe {
  border: none;
  display: block;
}
@media screen and (max-width: 1250px) {

  .contact-page iframe {
    height: 400px;
  }
}
@media screen and (max-width: 1000px){
    .contact-page .contact-1 .left {
    position: static;
  }
}
.news-page #index-body .i-news .bottom ul{
  margin: -15px;
}
.news-page #index-body .i-news .bottom ul li{
  padding: 15px;
}
.newdet-page h1 {
  line-height: 1.4;
}

.newdet-page .text {
  color: #666;
  line-height: 2;
}
.newdet-page .text h2 {
  font-size: 20px;
  line-height: 1.6;
  color: #83b444;
  font-weight: 600;
}
.newdet-page .text h3 {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  font-weight: 600;
}
.newdet-page .text ol li,.newdet-page .text ul li {
    padding: 0 0 0 10px;
    list-style: square;
    list-style-position: inside;
}
.newdet-page .text strong {
  color: black;
}
.newdet-page .text p:first-child {
  margin-top: 0;
}

.newdet-page .m-link a {
  height: 2em;
  padding: 0 2.5em;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 5px;
  line-height: 2em;
}

.newdet-page .m-link a:hover {
  background-color: black;
}
.inner-page .sidebarLeft {
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
}

.inner-page .sidebarLeft .slide span.h6 {
  padding: 2% 4%;
  border: 1px solid #b1b1b1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.inner-page .sidebarLeft .slide span.h6.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.inner-page .sidebarLeft .slide ul {
  padding: 6% 4%;
  border: 1px solid #b1b1b1;
  color: #9e9e9e;
  margin: -1px 0;
}

.inner-page .sidebarLeft .slide ul li {
  margin-bottom: 1.2em;
}

.inner-page .sidebarLeft .slide ul li i {
  width: 1.42857143em;
  height: 1.42857143em;
  border-radius: 3px;
  border: 1px solid #9e9e9e;
  margin-right: .5em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.inner-page .sidebarLeft .slide ul li i:before {
  font-size: 1.4em;
  opacity: 0;
}

.inner-page .sidebarLeft .slide ul li.active i:before {
  opacity: 1;
}

.inner-page .sidebarLeft .info {
  background-color: var(--color);
  padding: 15% 10%;
  border-radius: 10px;
}
.inner-page .sidebarLeft .info hr{
  
    background-color: #fff;
}
.inner-page .sidebarLeft .info .text{
    color: #fff;
}
.inner-page .sidebarLeft .info .share a i{
    color: #fff;
}
.inner-page .sidebarLeft .nav {
  border: 1px solid #bebebe;
  border-radius: 10px;
}

.inner-page .sidebarLeft .nav span.h6 {
  background-color: var(--color);
  color: white;
  padding: 10px 20px;
  line-height: 1.2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.inner-page .sidebarLeft .nav ul li {
  border-top: 1px solid #bebebe;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.inner-page .sidebarLeft .nav ul li:first-child {
  border-top: none;
}

.inner-page .sidebarLeft .nav ul li a {
  padding: .8em 20px;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .sidebarLeft .nav ul li a:hover {
  background-color: var(--color);
  color: white;
}
.inner-page .sidebarLeft .nav ul li i {
    position: absolute;
    top: 21px;
    right: 14px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.inner-page .sidebarLeft .nav ul li ul{
    padding-left: 10px;
}
.inner-page .sidebarLeft .nav ul li li{
    font-size: 18px;
    font-weight: 300;
    color: #666;
}
.inner-page .sidebarLeft .nav ul li li li{
    font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .newdet-page h1 {
    width: 100%;
    font-size: 22px;
    line-height: 1.4;
  }
    .inner-page .sidebarLeft {
    display: none;
  }
}
.product-banner,
.product-link-page{
  background: #E9EFF6;
}
.product-link-page .sidebar-box {
    border-bottom: 1px solid #eee;
}

.inner-page .sidebar-left {
    width: 29%;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 10px;
}

.inner-page .sidebar-left .box {
    margin-bottom: 30px;
    padding: 30px 20px;
}
.inner-page .sidebar-left .box.contact ul li{
    font-size: 18px;
    font-weight: 300;

}
.inner-page .sidebar-left .box.contact ul li a{
    color: #666;
    word-break: break-all;
}
.inner-page .sidebar-left .box:last-child {
    margin-bottom: 0;
}

.inner-page .sidebar-left .box h3 {
    font-size: 26px;
    line-height: 1.8;
    color: var(--color);
    margin-bottom: 10px;
    FONT-WEIGHT: 600;
}

.inner-page .sidebar-left .box ul li {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    border-bottom: solid 1px #e5e5e5;
    padding: 10px 0;
    margin-bottom: 5px;
    position: relative;
    font-weight: bold;
}

.inner-page .sidebar-left .box ul li i {
    position: absolute;
    top: 12px;
    right: 0;
}

.inner-page .sidebar-left .box ul li li {
    width: 100%;
    font-size: 18px;font-weight: 300;
}
.inner-page .sidebar-left .box ul li li li{
    font-size: 16px;font-weight: 300;
}
.inner-page .sidebar-left .box ul li ul li:last-child {
    border-bottom: none;
}

.inner-page .sidebar-left .box ul li a.child:after {
    content: "\f105";
    position: absolute;
    font-family: "FontAwesome";
    top: 0;
    right: 0;
    font-size: 16px;
}

.inner-page .sidebar-left .box ul li:hover>a,
.inner-page .sidebar-left .box ul li.active>a {
    color: var(--color);
}

.inner-page .sidebar-left .box ul li ul {
    padding-left: 10px;
    display: none;
}
.inner-page .sidebar-left .box ul li.active ul{
    display: block;
}
.inner-page .sidebar-left .box ul li.active a.child {
    color: var(--color);
}

.inner-page .sidebar-left .box ul li.active a.child:after {
    content: "\f107";
}

.inner-page .sidebar-left .box .share ul li a {
    display: block;
    padding: 5px 0;
    position: relative;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.inner-page .sidebar-right {
    width: 71%;
    padding-left: 40px;
}

.product-page .sidebar-right ul {
    text-align: left;
    margin: -10px;
}

.product-page .sidebar-right ul.sharelist {
    display: flex;
    justify-content: flex-start;
}

.product-page .sidebar-right ul li {
    padding: 10px;
}

.product-page .sidebar-right ul li .box {
    border: solid 1px #97c5a9;
    padding: 10px;
}



.product-page .sidebar-right ul li a.img-box {
    width: 100%;
    display: block;
}

.product-page .sidebar-right ul li a.img-box img {
    width: 100%;
}

.product-page .sidebar-right ul li .content {
    display: block;
    margin-top: 10px;
}
.inner-page.product-link-page .pro-1 .box ul {
    margin: 0 -12px;
}

.inner-page.product-link-page .pro-1 .box ul li {
    width: 33.3333%;
    padding: 12px;
}

.inner-page.product-link-page .pro-1 .box ul li .ig {
    display: inline-block;
}

.inner-page.product-link-page .pro-1 .box ul li .ig img {
    margin: auto;
}

.inner-page.product-link-page .pro-1 .box ul li h4 {
    text-align: center;
    color: #383737;
    padding-top: 10px;
    line-height: 1.6;
}

.inner-page.product-link-page .pro-1 .m-page a {
    color: #000;
}

.inner-page.product-link-page .pro-1 .m-page a:hover {
    color: #fff;
    background: var(--color);
}

@media screen and (max-width: 1450px) {
    .inner-page.product-link-page .pro-1 .box ul li {
        width: 33.3333%;
    }
}

@media screen and (max-width: 1000px) {
    .inner-page .sidebar-left {
        display: none;
    }

    .inner-page.product-link-page .pro-1 .box ul li {
        width: 50%;
    }

    .inner-page .sidebar-right {
        width: 100%;
        padding: 0;
    }
    .phone_hide{
      display: none;
    }
}
@media screen and (max-width: 500px) {
    .inner-page.product-link-page .pro-1 .box ul li {
        width: 100%;
        text-align: center;
    }
}
.prodet-page,
.prodet-banner{
  background: #e9eff6;
}
.inner-page.prodet-page .pro-1 .grid1 {
    font-size: 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0 20px 0 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left .prev,
.inner-page.prodet-page .pro-1 .grid1 .left .next {
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: #525252;
    background-color: #262626;
    cursor: pointer;
    padding: 10px 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left ul li {
    padding: 5px 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left ul li a {
    display: inline-block;
    background-color: #ebeaea;
    padding: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right {
    display: inline-block;
    vertical-align: top;

}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 {
    color: #282828;
    /*background-color: #fafafa;*/
    margin-bottom: 15px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
    width: 65%;
    padding: 0 7% 0 0;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left span {
    font-size: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left .contact {
    font-size: 16px;
    padding: 20px 0;
    color: #666;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
    width: 35%;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right img{
    background-color: #fff;
    border-radius: 10px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-2 {
    font-size: 16px;
    /*background-color: #fff;*/
    color: #666;
    padding-top: 50px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options{
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options span{
    padding-right: 20px;
    cursor: pointer;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options span.active{
    color: var(--color);
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret{
    margin-top: 15px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>span{
    display: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-3 {
    font-size: 16px;
    background-color: #fff;
    color: #666;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 {
    background-color: #1c1c1c;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title {
    color: #fff;
    padding: 26px 40px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title h4 {
    font-size: 38px;
    font-family: 'Anton';
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title span {
    font-size: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form {
    background-color: #2d2d2d;
    padding: 54px 80px 30px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li {
    font-size: 14px;
    padding-bottom: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li h6 {
    text-transform: uppercase;
    color: #bcbcbc;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li p {
    font-size: 16px;
    color: #bcbcbc;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li p span {
    color: var(--color);
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li input {
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 10px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li input[type="submit"] {
    display: inherit;
    width: auto;
    font-size: 15px;
    font-family: 'Roboto-Black';
    border: none;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--color);
    padding: 20px 36px;
    margin: auto;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li textarea {
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 10px;
}

@media screen and (max-width: 1000px) {
    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
        width: 100%;
        margin-top: 5%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left .contact {
        padding: 30px 0;
    }
}

@media screen and (max-width: 700px) {

    .inner-page.prodet-page .pro-1 .grid1>.left {
        display: none;
    }

    .inner-page.prodet-page .pro-1 .grid1>.right {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options{
        display: none;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>span {
        display: block;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide{
        display: block!important;
        margin: 10px 0;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>div{
        margin-top: 10px;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret {
        margin-top: 0;
    }

}

@media screen and (max-width: 500px) {
    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
        width: 100%;
    }

    .inner-page .sol-form .form,
    .inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form {
        padding: 30px 20px 10px;
    }
}
.appdet-page{
  background: #e9eff6;
}
.appdet-page .header {
      text-align: left;
}
.appdet-page .init-1 {
  padding: 30px 0;
}
.appdet-page .init-1 .container ul li .box {
  min-height: 240px;
  padding: 10px;
}
.appdet-page .init-1 .container ul li .box .imgC{
    height: 50px;
    display: inline-block;
    margin: auto;
    width: 100%;
}
.appdet-page .init-1 .container ul li .box .img {
  display: block;
  height: 46px;
  margin: auto;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  opacity: 0.6;
}
.appdet-page .init-1 .container ul li .box .text {
  margin-top: 10px;
}
.appdet-page .init-1 .container ul li .box .text a {
  display: block;
  text-align: center;
}
.appdet-page .init-1 .container ul li .box:hover,
.appdet-page .init-1 .container ul li .box.active {
  background-color: var(--color);
  color: #fff;
}
.appdet-page .init-1 .container ul li .box:hover .imgC img,
.appdet-page .init-1 .container ul li .box.active .imgC img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.appdet-page .init-2 {
  z-index: 1;
  position: relative;
}
.appdet-page .init-2 .shadow {
  min-height: 160px;
  position: absolute;
  width: 100%;
  height: 60%;
  top: 0;
  left: 0;
  background-color: var(--color);
  z-index: -1;
}
.appdet-page .init-2 .container .des {
  color: #fff;
  /*margin: auto;*/
  /*max-width: 870px;*/
  /*text-align: center;*/
  /*padding-bottom: 30px;*/
}
.appdet-page .init-2 .container .img {
  margin-top: 40px;
  display: block;
  width: 100%;
}
@media (max-width: 1250px) {
  .appdet-page .init-1{
    padding-bottom: 0;
  }
}
@media (max-width: 1000px) {
  .appdet-page .init-2 .shadow {
    display: none;
  }
  .appdet-page .init-2 .container .des {
    color: #000;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .appdet-page .init-2 .container .img {
    margin-top: 20px;
  }
  .appdet-page .init-1 .container ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .appdet-page .init-1 .container ul li{
    width: 25%;
  }
}
@media (max-width: 700px) {
  .appdet-page .init-1 .container ul li{
    width: 33.3333%;
  }
  .appdet-page .init-1 .container ul li .box{
    min-height: 200px;
  }
  .proPublic.pb-80 {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 500px) {
  .appdet-page .init-1 .container ul li{
    width: 50%;
  }
}
.proPublic .init-releted .content.sinewseo ul li .box .text {
    text-overflow: ellipsis;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    width: 340px;
    font-weight: 600;
    padding: 15px 0;
}
.proPublic .init-releted .content.sinewseo ul li .box .des.font-16 {
    font-size: 15px;
    line-height: 2;
}
.proPublic .init-releted .content.sinewseo ul li .box .time.font-18 {
    font-size: 16px;
    margin-top: 15px;
}
.proPublic.pb-80 {
    padding-bottom: 200px;
}
.service-page .service-1 {
  background-color: #fff;
  position: relative;
}
.service-page .service-1 .top{
  width: 1200px;
  margin: 0 auto;
}
.service-page .service-1:before {
  content: '';
  position: absolute;
  bottom: 100%;
  height: 10%;
  left: 0;
  width: 100%;
  background-color: inherit;
  z-index: -1;
}
.service-page .service-1 .left {
  padding-right: 9%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.service-page .service-1 .left .text {
  margin: 2.5em 0;
}
.service-page .service-1 .left .text p {
  margin-top: 2em;
}
.service-page .service-1 .left .list {
  font-weight: bold;
}
.service-page .service-1 .left .list ul {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.service-page .service-1 .left .list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color);
  margin-top: 2em;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.service-page .service-1 .left .list li:before {
  content: '';
  width: 1px;
  height: 3.5em;
  background-color: var(--color);
  position: absolute;
  left: 0.38888889em;
  top: 50%;
  z-index: -1;
}
.service-page .service-1 .left .list li:first-child {
  margin-top: 0;
}
.service-page .service-1 .left .list li i {
  width: 0.77777778em;
  height: 0.77777778em;
  border-radius: 100%;
  border: 1px solid var(--color);
  background-color: white;
  margin-right: 1.4em;
}
.service-page .service-1 .left .list li span {
  opacity: .3;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-1 .left .list li.active span {
  opacity: 1;
}
.service-page .service-1 .left .list li:last-child:before {
  display: none;
}
.service-page .service-1 .right {
  padding-left: 2%;
}
.service-page .service-1 .right .list ul {
  margin: -20px 0;
}
.service-page .service-1 .right .list ul ul{
    margin: 10px 0;
}

.service-page .service-1 .right .list ul li {
  padding: 20px 0;
}
.service-page .service-1 .right .list ul li li{
  padding:  0;

}

.service-page .service-1 .right .list ul li .box {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--color);
}
.service-page .service-1 .right .list ul li .box .img {
  width: 100px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.service-page .service-1 .right .list ul li .box .img img{
  width: 50%;
}
.service-page .service-1 .right .list ul li .box .content {
  margin-left: 5%;
      width: 81%;
    color: #fff;
}
.service-page .service-1 .right .list ul li .box .content span.h6 {
  font-weight: bold;
  line-height: 1.8;
}
.service-page .service-1 .right .list ul li .box .content .text {
  margin-top: 1em;
}
.service-page .service-1 .right .list ul .slick-slide:nth-child(odd) li .box .img {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 150px;
  border-bottom-left-radius: 150px;
}
@media (max-width: 1250px) {
  .proPublic .init-releted .content .btn {
    display: none;
  }
  .service-page .service-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .service-page .service-1 .right {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
  .service-page .service-1 .ui > .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-1 .left {
    position: static;
  }
  .service-page .service-1 .left .list {
    display: none;
  }
  .service-page .service-1 .right .list ul li .box .img {
    height: 250px;
  }
}
@media (max-width: 500px) {
  .proPublic .init-releted .content {
    margin-top: 20px;
  }
  .service-page .service-1 .right .list ul li .box .img {
    height: 120px;
    width: 100%;
    border-radius: 15px !important;
  }
  .service-page .service-1 .right .list ul li .box .content {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .service-page .service-1 .right .list ul li .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#index-body .i-news1{
  padding: 60px 0;
  background: #e8eff6;
}
.seoPublic > div:nth-child(odd){
  background: transparent;
}
.seoIndustry{
  background: #fff !important;
}
.seoPublic .Auxil-related .list ul li .box .content a.more{
  height: 46px;
  padding: 0 29px 0 17px;
   display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
}
.seoPublic .Auxil-related .list ul li .box .content a.more i{
  margin-left: 0;
}
.oxy-nav-menu .mb2-search input[type=submit]{
  background-image: url(../images/icon-search-white.png);
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--color);
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: var(--color);
}
#pups_from ul li textarea {
  height: 80px;
}
#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from ul li:last-child {
  margin-bottom: 0;
}
.seoPublic .Auxil-related .list ul li .box{
  -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0);
  box-shadow: 0 0 12px rgba(125, 125, 125, 0);
}
table tr:nth-child(even){
  background: #e1e6ee;
}
.seoPublic .Auxil-through a{
  background: transparent;
}
.seoPublic .Auxil-through a:hover{
  background: transparent;
}
.seoPublic .Auxil-related .list ul li .box a.img-box img{
  width: 80%;
  margin: 0 auto;
}
.seoPublic .Auxil-related .list ul li .box .content{
  padding-top: 0;
}
#index-body .i-about .content .text a{
  color: #fff;
}
.seoPublic .Auxil-through a{
  padding: 0;
}
@media (max-width: 1250px) {
  .service-page .service-1 .right .list ul li .box .img{
    height: 100px;
  }
  #innerMobileBanner{
    padding-top: 60px;
  }
}
@media (max-width: 1000px) {
  .news-page #index-body .i-news .bottom ul li{
    width: 50%;
  }
}
@media (max-width: 500px) {
  .about-page .about-1 .about-txt{
    padding: 20px 15px;
  }
  .font-40 {
    font-size: 24px;
  }
  .about-page .about-1 .about-txt .desc{
    font-size: 16px;
  }
  .service-page .service-1 .right .list ul li .box .img img{
    width: 28%;
  }
  .news-page #index-body .i-news .bottom ul li{
    width: 100%;
  }
}