@font-face {
  font-family: 'Roboto-Bold';
  src: url(../fonts/Roboto-Bold.ttf) format('truetype'), url(../fonts/Roboto-Bold.eot) format('eot'), url(../fonts/Roboto-Bold.woff) format('woff'), url(../fonts/Roboto-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url(../fonts/Roboto-Medium.ttf) format('truetype'), url(../fonts/Roboto-Medium.eot) format('eot'), url(../fonts/Roboto-Medium.woff) format('woff'), url(../fonts/Roboto-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url(../fonts/Roboto-Regular.ttf) format('truetype'), url(../fonts/Roboto-Regular.eot) format('eot'), url(../fonts/Roboto-Regular.woff) format('woff'), url(../fonts/Roboto-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Roboto-Black';
  src: url(../fonts/Roboto-Black.ttf) format('truetype'), url(../fonts/Roboto-Black.eot) format('eot'), url(../fonts/Roboto-Black.woff) format('woff'), url(../fonts/Roboto-Black.woff2) format('woff2');
}
input::-webkit-input-placeholder {
  color: #000;
}
textarea::-webkit-input-placeholder {
  color: #000;
}
input::-moz-placeholder {
  color: #000;
}
input:-moz-placeholder {
  color: #000;
}
input:-ms-input-placeholder {
  color: #000;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #1765b9;
  font-family: 'Roboto-Regular';
  --font: 'Roboto-Black';
  --font1: 'Roboto-Bold';
  background-color: white;
  color: #010101;
  max-width: 1920px;
  --animation-timing: 6000;
  --color-foreground: #ffffff;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1640px;
  margin: 0 auto;
  position: relative;
}

#back{
  position: fixed;
  bottom: 250px;
  right: 2%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.5s;
  background-color: var(--color);
}
#back:hover{
  background-color: #000;
}

#back i{
  font-size: 24px;
  color: white;
}
.progress-button {
  position: fixed;
  bottom: 110px;
  right: 2%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.3s;
}

.progress-button.visible {
  opacity: 1;
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 2;
}

.circle-fill {
  fill: none;
  stroke: var(--color);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dasharray 0.1s;
}

.arrow {
  font-size: 20px;
  color: var(--color);
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  background-color: white;
}
#header.active,
#header.inner-header {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  position: relative;
  height: 120px;
  transition: all 0.5s;
}
#header .nav .ui.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 80px;
  font-size: 20px;
  color: #666;
  -webkit-perspective: 500px;
  perspective: 500px;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  transition: all 0.5s;
  line-height: 1;
  border-bottom: 2px solid transparent;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  position: relative;
  z-index: 2;
  line-height: 120px;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  perspective: 500px;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: auto;
  min-width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  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 {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #3163b7;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > a{
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right {
  display: flex;
  align-items: center;
  margin-left: 60px;
}
#header .nav .ui.menu .right .h-search {
  transition: all 0.5s;
  cursor: pointer;
}
.language-box {
  margin-left: 35px;
  margin-right: 45px;
}
.language-box .zhuyu img {
  transition: all 0.5s;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  transition: 0.5s;
  text-transform: capitalize;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}


@-webkit-keyframes qodef-animate-image-in {
    0% {
        clip-path: inset(0 100% 0 0);
        -webkit-clip-path: inset(0 100% 0 0)
    }

    100% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0)
    }
}

@-moz-keyframes qodef-animate-image-in {
    0% {
        clip-path: inset(0 100% 0 0);
        -webkit-clip-path: inset(0 100% 0 0)
    }

    100% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0)
    }
}

@keyframes qodef-animate-image-in {
    0% {
        clip-path: inset(0 100% 0 0);
        -webkit-clip-path: inset(0 100% 0 0)
    }

    100% {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0)
    }
}
@keyframes bannerInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
#banner {
  position: relative;
  margin-top: 120px;
}
#banner .bigImg{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top:0;
}

#banner  .bigImg .img {
    width: 100%;
    height: 100%;
    background-position: center left;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    -webkit-animation: qodef-animate-image-out 1s cubic-bezier(.78,.2,.21,.88) forwards;
    -moz-animation: qodef-animate-image-out 1s cubic-bezier(.78,.2,.21,.88) forwards;
    animation: qodef-animate-image-out 1s cubic-bezier(.78,.2,.21,.88) forwards
}


#banner .banner-content ul .slick-current li .bg {
    z-index: 2;
    -webkit-animation: qodef-animate-image-in 1s cubic-bezier(.78,.2,.21,.88) forwards;
    -moz-animation: qodef-animate-image-in 1s cubic-bezier(.78,.2,.21,.88) forwards;
    animation: qodef-animate-image-in 1s cubic-bezier(.78,.2,.21,.88) forwards
}



#banner .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
  background-position: center left;
  display: block;
  -webkit-animation: qodef-animate-image-out 1s cubic-bezier(.78,.2,.21,.88) forwards;
  -moz-animation: qodef-animate-image-out 1s cubic-bezier(.78,.2,.21,.88) forwards;
  animation: qodef-animate-image-out 1s cubic-bezier(.78,.2,.21,.88) forwards
}

#banner .banner-content {
  position: relative;
  z-index: 5;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
  height: 880px;
}
#banner .banner-content ul li .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}
#banner .banner-content ul li .bg{
  width: 100%;
  height: 100%;
  opacity: 1;
}
#banner .banner-content ul li .content .box {
  color: white;
  max-width: 55%;
}
#banner .banner-content ul .slick-current li .content .box h2{
  animation: bannerInUp 0.8s linear forwards;
}
#banner .banner-content ul .slick-current li .content .box p{
  animation: bannerInUp 0.8s linear forwards;
}
#banner .banner-content ul .slick-current li .content .box .more{
  animation: bannerInUp 0.8s linear forwards;
}
#banner .banner-content ul li .content .box .more{
  pointer-events: bounding-box;
}
#banner .banner-content ul .slick-current li .content .box .img{
  animation: bannerInUp 0.8s linear forwards;
}
#banner .banner-content ul li .content .box h2 {
  font-size: 60px;
  line-height: 1.2;
  font-family: 'Roboto-Black';
  font-style: italic;
  text-transform: uppercase;
  color:white;
}
#banner .banner-content ul li .content .box p {
  font-size: 18px;
  margin: 35px 0;
  color:white;
}
#banner .banner-content ul li .content .box .img {
  margin-top: 50px;
}
#banner .banner-content .page {
  position: absolute;
  right: 150px;
  bottom: 55px;
  display: flex;
  align-items: center;
}
#banner .banner-content .page .current {
  font-size: 40px;
  color: white;
}
#banner .banner-content .page .total {
  font-size: 24px;
  color: #91b4d7;
}
#banner .banner-content .page .dots-container {
  margin: 0 15px;
}
#banner .banner-content .page .dots-container .banner-dots {
  display: flex;
}
#banner .banner-content .page .dots-container .banner-dots li {
  width: 35px;
  height: 1px;
  background-color: #91b4d7;
  transition: all 0.3s;
}
#banner .banner-content .page .dots-container .banner-dots li.slick-active {
  background-color: white;
}
#banner .banner-content .page .dots-container .banner-dots li button {
  display: none;
}
.more.white {
  background-color: transparent;
  border: 1px solid white;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0);
}
.more.white::before {
  background-color: var(--color);
}
.more.white:hover {
  border-color: var(--color);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}
.more.white:hover i{
  background-color: white;
  color: var(--color);
}
.more.white:hover span{
  color: white;
}
.more:hover {
  border-color: #666;
}
.more {
  width: 190px;
  height: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  background-color: var(--color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 35px;
  padding-left: 10px;
  padding-right: 30px;
}
.more:hover::before {
  right: 1px;
}
.more::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 100%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: white;
  z-index: 0;
  transition: all 0.5s;
  border-radius: 35px;
}
.more i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  font-size: 14px;
  position: relative;
  z-index: 5;
  color: var(--color);
}
.more:hover i {
   background-color: var(--color);
   color:white;
}
.more.submit{
  margin: 0 auto;
  cursor: pointer;
}
.more span,
.more.submit input {
  display: block;
  position: relative;
  z-index: 5;
  font-size: 18px;
  transition: all 0.5s;
  color: white;
}
.more:hover span,
.more.submit:hover input { 
  color:var(--color);
}
.tit-font {
  font-family: 'Roboto-Bold';
}
.h-title p {
  font-size: 20px;
  color: var(--color);
  font-style: italic;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 5px;
}
.h-title p::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color);
  margin-right: 5px;
}
.h-title h3 {
  font-size: 40px;
  font-family: 'Roboto-Black';
  position: relative;
  color: #181818;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.4;
      /*display: flex;
    flex-direction: column;*/
}
.h-title .flex-box1{
    justify-content: center;
}
.h-title h3 em {
  color: var(--color);
  display: block;
}

@keyframes play_img {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#index-body .about {
  padding: 250px 0 295px;
  background: url('../images/about-bg.jpg') no-repeat;
  background-size: cover;
  position: relative;
}
#index-body .about .img {
  max-width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#index-body .about .img .play {
  position: absolute;
  top: 45%;
  left: 41%;
  transform: translate(-50%, -50%);
  width: 165px;
  height: 165px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#index-body .about .img .play .play_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: play_img 10s infinite;
}
#index-body .about .img .play .sanjiao {
  position: relative;
  z-index: 5;
}
#index-body .about .about-content .right {
  width: 50%;
  margin-left: auto;
  position: relative;
}
#index-body .about .about-content .right .num {
  position: absolute;
  right: -75px;
  top: 0;
  transform: translateY(-65%);
}
#index-body .about .about-content .right .h-title p {
  margin-left: auto;
}
#index-body .about .about-content .right .con {
  margin-top: 50px;
}
#index-body .about ul {
  width: 64%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 150px;
  position: absolute;
  bottom: 110px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  z-index: 10;
}
#index-body .about ul li {
  display: flex;
  align-items: center;
}
#index-body .about ul li h4{
  font-size: 40px;
}
#index-body .about ul li h4 pp{
  text-align: center;
}
#index-body .about ul li:hover i,
#index-body .about ul li.active i {
  background-color: var(--color);
}
#index-body .about ul li:hover i img,
#index-body .about ul li.active i img {
  filter: brightness(0) invert(1);
}
#index-body .about ul li i {
  width: 65px;
  height: 65px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
#index-body .about ul li i img {
  max-width: 35px;
  transition: all 0.5s;
}
#index-body .about ul li span{
  padding-left: 25px;
}
#index-body .what-ets .h-title h3 em {
  display: inline-block;
}
#index-body .what-ets .content {
  margin-top: 60px;
}
#index-body .what-ets .content ul li:hover .box .btn {
  opacity: 1;
  z-index: 10;
}
#index-body .what-ets .content ul li:hover .box .text {
  opacity: 1;
  z-index: 10;
}
#index-body .what-ets .content ul li .box {
  position: relative;
  overflow: hidden;
}
#index-body .what-ets .content ul li .box .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#index-body .what-ets .content ul li .box .btn {
  position: absolute;
  top: 50px;
  left: 25px;
  opacity: 0;
  transition: all 0.5s;
}
#index-body .what-ets .content ul li .box .btn i {
  font-size: 45px;
  color: white;
  transition: all 0.5s;
}
#index-body .what-ets .content ul li .box .btn:hover i {
  color: var(--color);
}
#index-body .what-ets .content ul li .box .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 35px 45px;
  color: white;
  opacity: 0;
  z-index: -5;
  transition: all 0.5s;
}
#index-body .what-ets .content ul li .box .text .con {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  margin-top: 25px;
}
#index-body .honor {
  padding: 90px 0 185px;
  background: url('../images/honor-bg.png') no-repeat;
  background-position: center bottom;
}
#index-body .honor .h-title p {
  margin: 0 auto 10px;
}
#index-body .honor .h-title p::before {
  display: none;
}
#index-body .honor .h-title h3 em {
  display: inline-block;
}
#index-body .honor .honor-slide-ul {
  margin-top: 4vw;
  position: relative;
}
#index-body .honor .honor-slide-ul .slick-arrow{
  border-radius: 100%;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background-color: #cbcbcb;
  color: transparent;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 50;
}
#index-body .honor .honor-slide-ul .slick-arrow:hover{
  background-color: var(--color);
}
#index-body .honor .honor-slide-ul .slick-arrow.slick-prev{
  left: 30px;
}
#index-body .honor .honor-slide-ul .slick-arrow.slick-next{
  right: 30px;
}
#index-body .honor .honor-slide-ul .slick-arrow::before{
  content:"\f104";
  font-family: "FontAwesome";
  font-size: 16px;
  color: white;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
#index-body .honor .honor-slide-ul .slick-arrow.slick-next::before{
  content:"\f105";
}
#index-body .honor .honor-slide-ul .slick-list {
  padding-right: 40px;
}
#index-body .honor .honor-slide-ul .slide-box {
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  margin-top: 78px;
  position: relative;
  margin-right: -40px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s;
  display: block;
}
#index-body .honor .honor-slide-ul .slick-active .slide-box {
  z-index: 2;
}
#index-body .honor .honor-slide-ul .slick-current + div + div + div .slide-box {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 5;
}
#index-body .honor .honor-slide-ul .slick-current + div + div .slide-box {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  z-index: 4;
}
#index-body .honor .honor-slide-ul .slick-current + div + div + div + div .slide-box {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  z-index: 4;
}
#index-body .honor .honor-slide-ul .slick-current + div + div + div + div + div .slide-box {
  z-index: 3;
}
#index-body .i-product {
  padding: 175px 0;
  position: relative;
  z-index: 1;
}
#index-body .i-product .left {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
#index-body .i-product .left ul {
  margin: 85px 0 90px;
}
#index-body .i-product .left ul li {
  font-size: 30px;
  margin-bottom: 30px;
  color: #cbcbcb;
  font-family: 'Roboto-Bold';
}
#index-body .i-product .left ul li:last-child {
  margin-bottom: 0;
}
#index-body .i-product .left ul li a {
  position: relative;
  display: inline-block;
  transition: all 0.5s ease;
}
#index-body .i-product .left ul li a.active {
  border-bottom: 2px solid #000;
  color: #000;
}
#index-body .i-product .left ul li a.active .icon {
  opacity: 1;
}
#index-body .i-product .left ul li .icon {
  width: 79px;
  height: 79px;
  border-radius: 100%;
  background-color: #0065b2;
  text-align: center;
  line-height: 79px;
  position: absolute;
  right: -56px;
  top: -40px;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
#index-body .i-product .left ul li .icon img {
  vertical-align: middle;
}
#index-body .i-product .right ul li {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}
#index-body .i-product .right ul li a > img {
  display: block;
  margin-left: auto;
  width: 90%;
}
#index-body .i-product .right ul li .img {
  position: absolute;
  left: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
#index-body .i-product .right ul li .img img{
  width: 90%;
}
#index-body .i-product .right ul li:last-child {
  margin-bottom: 0;
}
#index-body .i-product .right ul li .text-border {
  content: '';
  position: absolute;
  z-index: -1;
  right: -47px;
  top: -26px;
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  z-index: 10;
}
#footer {
  position: relative;
  background: url('../images/footer-bg.jpg') no-repeat;
  background-size: cover;
  padding: 95px 0 0;
}
#footer .h-title p {
  color: white;
  margin: 0 auto 10px;
}
#footer .h-title p::before {
  display: none;
}
#footer .h-title h3 {
  color: white;
}
#footer form {
  display: flex;
  justify-content: space-between;
  max-width: 1360px;
  margin: 80px auto 120px;
}
#footer form input[type="text"] {
  width: 260px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 0 10px 15px;
  color: white;
  font-size: 18px;
}
#footer form .more {
  background-color: white;
  width: 160px;
  margin: 0;
}
#footer form .more::before{
  background-color: var(--color);
}
#footer form .more i {
  background-color: var(--color);
  color: white;
}
#footer form .more:hover i{
  background-color: white;
  color: var(--color);
}
#footer form .more:hover input[type='submit']{
  color: white;
}
#footer form .more input[type='submit'] {
  background-color: transparent;
  border: none;
  color: var(--color);
  font-size: 18px;
  transition: all 0.5s;
  position: relative;
  z-index: 5;
}
#footer form input::-webkit-input-placeholder {
  color: #a2c1e3;
}
#footer .footer-t {
  padding: 0 15px 25px;
}
#footer .footer-t .footer-t-gird {
  display: flex;
  justify-content: space-between;
}
#footer .footer-t .footer-t-gird .t-list.news {
  max-width: 380px;
}
#footer .footer-t .footer-t-gird .t-list.news ul {
  margin: -15px 0;
}
#footer .footer-t .footer-t-gird .t-list.news ul li {
  padding: 15px 0;
}
#footer .footer-t .footer-t-gird .t-list.news ul li:hover .box {
  border-color: white;
}
#footer .footer-t .footer-t-gird .t-list.news ul li:hover .box h5,
#footer .footer-t .footer-t-gird .t-list.news ul li:hover .box .btn {
  opacity: 1;
}
#footer .footer-t .footer-t-gird .t-list.news ul li .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0 10px;
  transition: all 0.3s ease;
}
#footer .footer-t .footer-t-gird .t-list.news ul li .box h5 {
  font-size: 14px;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-weight: 400;
  line-height: 28px;
}
#footer .footer-t .footer-t-gird .t-list.news ul li .box .btn {
  opacity: 0;
  transition: all 0.3s ease;
}
#footer .footer-t .footer-t-gird .t-list.news ul li .box .btn i {
  font-size: 24px;
  color: white;
}
#footer .footer-t .footer-t-gird .t-list.news .share {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#footer .footer-t .footer-t-gird .t-list.news .share h5 {
  font-size: 20px;
  color: white;
}
#footer .footer-t .footer-t-gird .t-list.news .share a i {
  font-size: 24px;
  color: white;
}
#footer .footer-t .footer-t-gird .t-list.news .share .qrcode {
  position: relative;
}
#footer .footer-t .footer-t-gird .t-list.news .share .qrcode:hover .box {
  transform: translateY(-50%) rotateY(0);
  opacity: 1;
}
#footer .footer-t .footer-t-gird .t-list.news .share .qrcode .box {
  position: absolute;
  top: 50%;
  right: 120%;
  transform: translateY(-50%) rotateY(-90deg);
  width: 150px;
  height: 150px;
  border-radius: 15px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#footer .footer-t .footer-t-gird .t-list.link span {
  margin-bottom: 20px;
  border-bottom: 1px solid transparent;
}
#footer .footer-t .footer-t-gird .t-list.link span:last-child {
  margin-bottom: 0;
}
#footer .footer-t .footer-t-gird .t-list.link span:hover {
  border-color: white;
  color: white;
  opacity: 1
}
#footer .footer-t .footer-t-gird .t-list.contact {
  max-width: 410px;
}
#footer .footer-t .footer-t-gird .t-list.contact span {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#footer .footer-t .footer-t-gird .t-list.contact span:nth-child(4) {
  align-items: flex-start;
  margin-bottom: 0;
  line-height: 1.6;
}
#footer .footer-t .footer-t-gird .t-list.contact span i {
  color: white;
  margin-right: 10px;
  font-size: 16px;
}
#footer .footer-t .footer-t-gird .t-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#footer .footer-t .footer-t-gird .t-list .qc-img img,
#footer .footer-t .footer-t-gird .t-list .qc-img canvas {
  width: 130px;
  height: auto;
  border: 8px solid #fff;
}
#footer .footer-t .footer-t-gird .t-list h4 {
  font-size: 24px;
  font-family: 'Roboto-Bold';
  color: white;
  margin-bottom: 25px;
}
#footer .footer-t .footer-t-gird .t-list span {
  font-size: 18px;
  color: #d2e1f1;
  line-height: 1;
  width: fit-content;
  transition: all 0.5s;
  font-family: 'Roboto-Medium';
  opacity: .8
}
#footer .footer-b .footer-b-box {
  height: 105px;
}
#footer .footer-b .footer-b-box span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
#footer .footer-b .footer-b-box span:first-child a {
  transition: all 0.5s;
}
#footer .footer-b .footer-b-box span:first-child a:hover {
  opacity: 0.6;
}
#footer .footer-b .footer-b-box img {
  width: 240px;
  height: auto;
  padding-top: 2px;
  margin-left: 5px;
  opacity: 0.6;
}
@media (max-width: 1850px) {
  #index-body .i-product .right ul li .text-border {
    transform: scale(0.9) rotate(10deg);
    right: -35px;
  }
}
@media (max-width: 1650px) {
  .ui.container {
    width: 1400px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 40px;
    font-size: 18px;
  }
  #banner .banner-content ul li .content .box .img {
    max-width: 65%;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 50px;
  }
  .h-title h3 {
    font-size: 40px;
    line-height: 1.3;
  }
  #index-body .about .img {
    height: 100%;
  }
  #index-body .about .img > img {
    height: 100%;
    object-position: right;
    object-fit: cover;
  }
  #index-body .about ul {
    padding: 0 35px;
    z-index: 15;
  }
  #index-body .i-product .left ul {
    margin: 40px 0;
  }
  #index-body .i-product .right ul li .text-border {
    transform: scale(0.8) rotate(10deg);
    right: -35px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #index-body .i-product .right ul li a .img{
    width: 80%;
  }
  #header .nav .ui.menu .right{
    margin-left: 30px;
  }
  .language-box {
    margin-left: 25px;
    margin-right: 25px;
  }
  #header .nav .logo {
    max-width: 180px;
  }
  #banner .banner-content ul li .content .box .img {
    margin-top: 25px;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 40px;
  }
  #banner .banner-content ul li .content .box p {
    font-size: 16px;
    margin: 20px 0;
  }
  #index-body .about ul {
    padding: 0 30px;
    width: 70%;
  }
  #index-body .i-product .right ul li a .img {
    max-width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #index-body .i-product {
    padding: 100px 0;
  }
  #footer form {
    max-width: 100%;
    padding: 0 15px;
  }
  #footer .footer-t .footer-t-gird .t-list.contact {
    max-width: 280px;
  }
  #footer .footer-t .footer-t-gird .t-list.news {
    max-width: 320px;
  }
  #index-body .honor-slide-ul .slick-current + div + div + div .slide-box {
    transform: unset !important;
  }
  #index-body .honor-slide-ul .slick-current + div + div .slide-box {
    transform: unset !important;
  }
  #index-body .honor-slide-ul .slick-current + div + div + div + div .slide-box {
    transform: unset !important;
  }
  #index-body .honor-slide-ul li {
    padding: 0 15px;
  }
  #index-body .honor .honor-slide-ul .slide-box {
    margin-top: 0;
    margin-right: 0;
  }
  #index-body .honor .honor-slide-ul .slick-list {
    padding-right: 0;
  }
  #index-body .honor .honor-slide-ul .slide-box {
    display: flex;
    justify-content: center;
  }
  #index-body .i-product .right ul li .text-border {
    transform: scale(0.7) rotate(10deg);
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
    font-size: 14px;
  }
  #header .nav .logo {
    max-width: 140px;
  }
  #header .nav .ui.menu .right {
    margin-left: 25px;
  }
  #banner .banner-content ul li .content .box .img {
    display: none;
  }
  #index-body .about ul li span {
    margin-left: 10px;
    font-size: 18px;
  }
  #index-body .i-product .right ul li .text-border {
    top: -90px;
    width:auto;
    top: -125px;
    transform: scale(0.5) rotate(-10deg);
    right: -35px;
  }
  #index-body .i-product .left ul li {
    font-size: 24px;
  }
  #footer .footer-t .footer-t-gird .t-list.contact span {
    font-size: 16px;
  }
  #footer .footer-t .footer-t-gird .t-list span {
    font-size: 16px;
  }
  #footer .footer-t .footer-t-gird .t-list:nth-child(3) {
    display: none;
  }
  #index-body .about ul li .text p {
    font-size: 16px;
  }
  #index-body .about ul li .text {
    padding-left: 10px;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
  .ui.container {
    width: 700px;
  }
  #banner .banner-content .page {
    display: none;
  }
  #index-body .about .img {
    max-width: 100%;
    position: relative;
    top: unset;
    left: unset;
  }
      #banner .banner-content ul li .content .box h2 {
        font-size: 30px;
    }
  #banner .banner-content ul li .content .box {
    max-width: 100%;
  }
  #index-body .about {
    display: flex;
    flex-direction: column-reverse;
  }
  #index-body .about .about-content .right {
    width: 100%;
    margin-left: 0;
    margin-bottom: 60px;
  }
  #index-body .about ul {
    width: 100%;
  }
  #footer form {
    flex-wrap: wrap;
  }
  #footer form input[type="text"] {
    width: 100%;
    margin-bottom: 25px;
  }
  #footer .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-t .footer-t-gird {
    flex-wrap: wrap;
  }
  #footer .footer-t .footer-t-gird .t-list {
    max-width: 100% !important;
    width: 100%;
  }
  #footer .footer-t .footer-t-gird .t-list.contact {
    margin-bottom: 60px;
  }
  #footer .footer-t .footer-t-gird .t-list.news ul {
    width: 100%;
    display: none!important;
  }
  #footer .footer-t .footer-t-gird .t-list h4 {
    display: none!important;
  }
  #footer .footer-t .footer-t-gird .t-list.news .share {
    justify-content: flex-start;
  }
  #footer .footer-t .footer-t-gird .t-list.news .share h5 {
    margin-right: 20px;
  }
  #footer .footer-t .footer-t-gird .t-list.news .share a {
    margin-right: 20px;
  }
  #footer .footer-t .footer-t-gird .t-list.news .share a:last-child {
    margin-right: 0;
  }
  #index-body .i-product .right {
    display: none;
  }
  #index-body .i-product .left {
    width: 100%;
  }
  #index-body .honor {
    padding: 90px 0;
  }
  #footer form {
    margin: 65px 0;
  }
  #footer .footer-b .footer-b-box {
    height: auto;
    padding: 15px;
  }
  #footer .footer-b .footer-b-box span {
    margin: 5px 0;
    text-align: center;
  }
  #index-body .about .about-content .right .num {
    right: 0;
    transform: translateY(-65%);
  }
  .Auxil-catdes.font-18.mb-20.mt-20 {
    height: 285px;
    overflow-y: auto;
 }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 34px;
  }
  #banner .banner-content ul li .content .box h2 {
    font-size: 26px;
  }
  #banner .banner-content ul li .content .box p {
    display: none;
  }
  #banner .banner-content ul li .content .box .more {
    margin-top: 30px;
  }
  #index-body .about {
    padding: 161px 0 80px;
  }
  #index-body .about ul {
    display: none;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .content .box .more {
    display: none;
  }
  .h-title h3 {
    font-size: 30px;
  }
  #index-body .honor {
    background: none;
  }
}




















.inner-nav{
  padding: 0 0 50px;
}
.inner-nav ul{
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}
.inner-nav ul li{
  font-size: 20px;
  padding: 0 20px;
}
.inner-nav ul li a{
  transition: all 0.5s;
}
.inner-nav ul li:first-child{
  border-right:1px solid #b5b5b5;
  margin-right: 20px;
}
.inner-nav ul li:hover a,
.inner-nav ul li.active a{
  color: var(--color);
}
.inner_banner {
    position: relative;
    z-index: 0;
    margin-top: 114px;
}

.inner_banner .textAniC {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1
}

.inner_banner .textAniC .text .c {
    font-size: 380px;
    font-family: var(--font1);
    text-transform: uppercase;
    color: #f6f6f6;
    line-height: .9;
    white-space: nowrap;
    width: 5000px;
    animation: transAni2 60s linear infinite
}

.inner_banner .container {
    position: relative;
    z-index: 2
}

.inner_banner .innerBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.inner_banner .cont {
    padding: 180px 0 100px
}

.inner_banner .cont .title {
    font-weight: 700
}

.inner_banner .cont .mbx {
    font-size: 0;
    font-family: var(--font);
    margin-top: 10px
}

.inner_banner .cont .mbx span {
    font-size: 20px;
    padding-left: 20px;
    position: relative;
    color:var(--color);
}

.inner_banner .cont .mbx a {
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.inner_banner .cont .mbx a:hover {
    color: var(--color);
}

.inner_banner .cont .mbx a:first-child {
    padding-left: 0
}

.inner_banner .cont .mbx a:first-child:before {
    display: none
}

.inner_banner .cont .mbx a:before,.inner_banner .cont .mbx span:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    top: 13px;
    left: 7px;
    background-color: #000
}
@-webkit-keyframes transAni2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@-moz-keyframes transAni2 {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -moz-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@-o-keyframes transAni2 {
    0% {
        -o-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -o-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes transAni2 {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
@media (max-width: 1500px) {
    .inner_banner .textAniC {
        top:34px
    }

    .inner_banner .textAniC .text .c {
        font-size: 360px
    }
}

@media (max-width: 1250px) {
    .inner_banner .textAniC {
        top:40px
    }

    .inner_banner .textAniC .text .c {
        font-size: 260px
    }
}

@media (max-width: 1000px) {
    .inner_banner {
        margin-top:120px
    }

    .inner_banner .textAniC .text .c {
        font-size: 160px
    }

    .inner_banner .cont {
        padding: 40px 0
    }
}

@media (max-width: 700px) {
    .inner_banner .textAniC .text .c {
        font-size:100px
    }
}

@media (max-width: 500px) {
    .inner_banner .textAniC {
        top:30px
    }

    .inner_banner .textAniC .text .c {
        font-size: 80px
    }
}

:root {
    --noile-size-8xl: 150px;
    --noile-size-7xl: 96px;
    --noile-size-6xl: 48px;
    --noile-size-5xl: 32px;
    --noile-size-4xl: 24px;
    --noile-size-3xl: 20px;
    --noile-size-2xl: 18px;
    --noile-size-xl: 16px;
    --noile-size-lg: 15px;
    --noile-size-md: 14px;
    --noile-size-sm: 13px;
    --noile-body-size: 16px;
    --noile-body-line-height: 1.875;
    --noile-font: "Sora",sans-serif;
    --noile-font2: "Syne",sans-serif;
    --noile-heading-font: "Epilogue",sans-serif;
    --noile-base: #015db4;
    --noile-base-rgb: 217,70,69;
    --noile-base2: #015db4;
    --noile-base2-rgb: 190,64,63;
    --noile-base3: #015db4;
    --noile-base3-rgb: 244,37,73;
    --noile-primary: #1d1d1d;
    --noile-primary-rgb: 29,29,29;
    --noile-secondary: #a0a1a6;
    --noile-secondary-rgb: 160,161,166;
    --noile-white: #fff;
    --noile-white-rgb: 255,255,255;
    --noile-white2: #f6f6f6;
    --noile-white2-rgb: 246,246,246;
    --noile-white3: #f7f7f7;
    --noile-white3-rgb: 247,247,247;
    --noile-white4: #f4e5e5;
    --noile-white4-rgb: 244,229,229;
    --noile-black: #222;
    --noile-black-rgb: 34,34,34;
    --noile-black2: #0e1c31;
    --noile-black2-rgb: 14,28,49;
    --noile-black3: #282828;
    --noile-black3-rgb: 40,40,40;
    --noile-gray: #777;
    --noile-gray-rgb: 119,119,119;
    --noile-gray2: #9aa5b3;
    --noile-gray2-rgb: 154,165,179;
    --color: #015db4
}

.social-list {
    display: flex;
    align-items: center
}

.social-list .social-link {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center
}

.social-list .social-link:nth-child(odd) {
    background: rgba(var(--noile-white-rgb,255,255,255),.05)
}

.social-list .social-link:nth-child(even) {
    background: rgba(var(--noile-white-rgb,255,255,255),.1)
}

.social-list .social-link i {
    font-size: var(--noile-size-sm);
    color: rgba(var(--noile-white-rgb,255,255,255),.5)
}

.social-list .social-link:hover {
    background-color: var(--noile-base,#d94645)
}

.social-list .social-link:hover i {
    color: rgba(var(--noile-white-rgb,255,255,255),1)
}
.shop-product__card {
    border: 1px solid rgba(var(--noile-primary-rgb,29,29,29),.1)
}

.shop-product__img-box {
    position: relative;
    overflow: hidden
}



.shop-product__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 86px;
    height: 86px;
    background-color: var(--noile-white,#fff);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,150px);
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease,visibility .5s ease,transform .5s ease
}

@media (max-width: 1599px) {
    .shop-product__btn {
        width:70px;
        height: 70px
    }
}

.shop-product__btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    left: -10px;
    border-radius: 50%;
    border: 1px solid var(--noile-white,#fff);
    transition: all .4s ease-in-out;
    z-index: 1
}

.shop-product__btn-icon {
    font-size: 24px;
    color: var(--noile-base,#d94645)
}

.shop-product__btn:hover {
    background-color: var(--noile-base,#d94645)
}

.shop-product__btn:hover:after {
    top: 0;
    left: 0;
    border-color: var(--noile-base,#d94645)
}

.shop-product__btn:hover .shop-product__btn-icon {
    color: var(--noile-white,#fff)
}

.shop-product__img {
    width: 100%
}

.shop-product__category {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: table;
    padding: 10px 21.5px;
    color: var(--noile-white,#fff);
    line-height: 1.25;
    background-color:var(--color);
    margin-bottom: 0;
    z-index: 11
}

.shop-product__card:hover .shop-product__btn {
    transform: translate(-50%,-50%);
    opacity: 1;
    visibility: visible
}

.shop-product__card:hover .shop-product__img-box:after {
  display: none;
    transform: translateY(0%);
    opacity: 1;
    visibility: visible
}

.shop-product__card:hover .shop-product__category {
    background-color: var(--noile-base,#d94645)
}

.shop-product__content {
    padding: 22px 29px 30px
}

@media (max-width: 1399px) {
    .shop-product__content {
        padding-left:20px;
        padding-right: 20px;
        padding-bottom: 25px
    }
}

.shop-product__name {
    display: block;
    font-size: var(--noile-size-3xl);
    color:var(--color);
    line-height: 1.7;
    font-family: var(--font);
    text-transform: capitalize;
    margin-bottom: 15px;
    text-align: center;
    min-height: 68px;
}

.shop-product__name:hover {
    color: var(--noile-base,#d94645)
}

.shop-product__price-review-box {
    display: flex;
    align-items: flex-end;
    margin-bottom: 21px
}

@media (max-width: 375px) {
    .shop-product__price-review-box {
        flex-direction:column;
        align-items: flex-start
    }
}

.shop-product__price-inner {
    display: flex;
    align-items: flex-end;
    margin-right: 28px
}

@media (max-width: 1399px) {
    .shop-product__price-inner {
        margin-right:20px
    }
}

@media (max-width: 375px) {
    .shop-product__price-inner {
        margin-right:0;
        margin-bottom: 6px
    }
}

.shop-product__price-new {
    font-size: var(--noile-size-4xl);
    line-height: 1.25;
    margin-right: 6px;
    margin-bottom: 0
}

.shop-product__price-old {
    font-size: var(--noile-size-md);
    font-weight: 400;
    text-decoration: line-through;
    margin-bottom: 0
}

.shop-product__review-inner {
    display: flex;
    align-items: center
}

.shop-product__review-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    margin-right: 9px
}

.shop-product__review-icon {
    font-size: 14px;
    color: var(--noile-base,#d94645)
}

.shop-product__review-text {
    margin-bottom: 0
}

.shop-product__btn-box {
    display: none;
    /*align-items: center;
    justify-content: center;*/
}

.shop-product__icon {
    font-size: var(--noile-size-md);
    color: var(--noile-secondary,#a0a1a6)
}

.shop-product__btn-wishlist {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30.5px;
    font-size: var(--noile-size-md);
    color: var(--noile-secondary,#a0a1a6);
    line-height: 2.142;
    font-weight: 400;
    background-color: var(--noile-white2,#f6f6f6);
    margin-right: 0px
}

@media (max-width: 375px) {
    .shop-product__btn-wishlist {
        padding:10px 20px;
        margin-right: 20px
    }
}

.shop-product__btn-wishlist .icon-wishlist {
    margin-right: 8px;
    vertical-align: middle
}

.shop-product__btn-wishlist:hover {
    background-color:var(--color);
    color: var(--noile-white,#fff)
}

.shop-product__btn-wishlist:hover .icon-wishlist {
    color: var(--noile-white,#fff)
}

.shop-product__btn-circle {
    margin-right: 20px
}

.shop-product__btn-circle:hover span,.shop-product__btn-bookmark:hover span {
    color: var(--noile-base,#d94645)
}

.shop-sidebar {
    /*padding-top: 120px;*/
    padding-bottom: 120px;
    background-color: var(--noile-white,#fff)
}

@media (max-width: 575px) {
    .shop-sidebar {
        padding-top:80px;
        padding-bottom: 80px
    }
}

.shop-sidebar__right {
    padding-left: 0;
    padding-right: 0
}

@media (max-width: 1399px) {
    .shop-sidebar .showing-product__left {
        justify-content:space-between
    }
}

@media (max-width: 1399px) {
    .shop-sidebar .showing-product__right {
        justify-content:space-between
    }
}

.page-sidebar__single {
    padding: 27px 30px 30px;
    background-color: var(--noile-white3,#f7f7f7)
}

@media (max-width: 425px) {
    .page-sidebar__single {
        padding:17px 20px 20px
    }
}

.page-sidebar__single:not(:last-child) {
    margin-bottom: 30px
}

.page-sidebar__title {
    font-size: var(--noile-size-4xl);
    line-height: 1.25;
    margin-bottom: 22px;
    text-transform: capitalize;
    font-family: var(--font);
}

.page-sidebar__search-form {
    display: flex;
    align-items: center
}

@media (max-width: 375px) {
    .page-sidebar__search-form {
        flex-direction:column
    }
}

.page-sidebar__search-input {
    border: 0;
    outline: 0;
    padding: 10px 10px 10px 19px;
    width: calc(100% - 56px);
    height: 50px;
    background-color: var(--noile-white,#fff)
}

.page-sidebar__search-input::placeholder {
    color: var(--noile-secondary,#a0a1a6)
}

@media (max-width: 375px) {
    .page-sidebar__search-input {
        width:100%;
        margin-bottom: 15px
    }
}

.page-sidebar__search-btn {
    position: relative;
    border: 0;
    outline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 50px;
    background-color:var(--color);
    overflow: hidden;
    z-index: 1
}

.page-sidebar__search-btn:after {
    content: "";
    width: 20px;
    height: 300px;
    background-color: var(--color);
    position: absolute;
    right: -18px;
    bottom: -136px;
    z-index: -1;
    transform: rotate(45deg);
    transition: all .6s ease-in-out
}

.page-sidebar__search-btn:hover:after {
    width: 350px
}

@media (max-width: 375px) {
    .page-sidebar__search-btn {
        width:100%
    }
}

.page-sidebar__search-icon {
    font-size: 14px;
    color: var(--noile-white,#fff)
}

.page-sidebar__service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

.page-sidebar__service-item:not(:last-child) {
    margin-bottom: 10px
}

.page-sidebar__service-link {
    padding: 10px 20px;
    display: block;
    font-size: var(--noile-size-xl);
    font-weight: 400;
    color: var(--noile-secondary,#a0a1a6);
    line-height: 1.875;
    background-color: var(--noile-white,#fff);
    text-transform: capitalize
}

.page-sidebar__service-link.active,.page-sidebar__service-link:hover {
    color: var(--noile-white,#fff);
    background-color: var(--color)
}

@media (max-width: 425px) {
    .page-sidebar__service-link {
        padding-left:15px;
        padding-right: 15px
    }
}

.page-sidebar__social-link:nth-child(odd) {
    background-color: var(--noile-white,#fff) !important
}

.page-sidebar__social-link:nth-child(even) {
    background-color: rgba(var(--noile-primary-rgb),.08) !important
}

.page-sidebar__social-link i {
    color: var(--noile-secondary,#a0a1a6) !important
}

.page-sidebar__social-link:hover {
    background-color: var(--color) !important
}

.page-sidebar__social-link:hover i {
    color: var(--noile-white,#fff) !important
}

.page-sidebar__contact {
    position: relative;
    padding: 131px 30px 132px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-color:var(--color);
    background-blend-mode: luminosity
}

.page-sidebar__contact:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(var(--noile-primary-rgb),.7);
    background-blend-mode: overlay;
    z-index: 1
}

@media (max-width: 991px) {
    .page-sidebar__contact {
        padding-top:100px;
        padding-bottom: 101px
    }
}

@media (max-width: 425px) {
    .page-sidebar__contact {
        padding-top:80px;
        padding-bottom: 81px
    }
}

.page-sidebar__contact-wrap {
    position: relative;
    z-index: 11;
    text-align: center
}

.page-sidebar__contact-title {
    font-size: var(--noile-size-5xl);
    color: var(--noile-white,#fff);
    line-height: 1.312;
    text-transform: capitalize;
    margin-bottom: 38px
}

@media (max-width: 767px) {
    .page-sidebar__contact-title {
        margin-bottom:30px
    }
}

.page-sidebar__contact-btn {
    padding: 17.5px 28px 17.5px;
    background-color: var(--color)
}

.page-sidebar__contact-icon {
    color: var(--noile-white,#fff);
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px
}

.page-sidebar__contact-text {
    font-size: var(--noile-size-xl);
    color: var(--noile-white,#fff);
    line-height: 1.375;
    margin-bottom: 0;
    display: inline-block;
    transition: all .3s ease-in-out
}

.page-sidebar__contact-btn:hover {
    background-color: var(--noile-white,#fff)
}

.page-sidebar__contact-btn:hover span,.page-sidebar__contact-btn:hover .page-sidebar__contact-text {
    color:var(--color)
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1*var(--bs-gutter-y));
    margin-right: calc(-.5*var(--bs-gutter-x));
    margin-left: calc(-.5*var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5);
    margin-top: var(--bs-gutter-y)
}

.g-4,.gx-4 {
    --bs-gutter-x: 15px
}

.g-4,.gy-4 {
    --bs-gutter-y: 15px
}

.mini-banner-one .row {
    align-items: center
}

.g-xl-0,.gy-xl-0 {
    --bs-gutter-y: 0
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex:0 0 auto;
        width: 50%
    }

    .order-sm-1 {
        order: 1!important
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex:0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .order-lg-0 {
        order: 0!important
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        flex:0 0 auto;
        width: 25%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
}

@media (min-width: 1400px) {
    .col-xxl-2 {
        flex:0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .ms-xxl-auto {
        margin-left: auto!important
    }
}

.shop-details__main-tab-box .tab-buttons .tab-btn {
    position: relative
}

.shop-details__main-tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: block;
    font-size: var(--noile-size-2xl);
    color:var(--color);
    font-family: var(--font);
    line-height: 1.25;
    border: 1px solid rgba(var(--noile-primary-rgb,29,29,29),.1);
    padding: 18px 32.5px;
    cursor: pointer;
    overflow: hidden;
    text-transform: capitalize;
    border-radius: 0;
    transition: all .5s linear;
    z-index: 1;
    width: fit-content;
}

@media (max-width: 767px) {
    .shop-details__main-tab-box .tab-buttons .tab-btn span {
        padding:15px 25px
    }
}
/*
.shop-details__main-tab-box .tab-buttons .tab-btn span:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color:var(--color);
    transition: all .3s ease;
    z-index: -1
}*/

.shop-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
    border-color: transparent;
    color: var(--noile-white,#fff)
}
/*
.shop-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
    width: 100%
}*/

.shop-details__main-tab-box .tabs-content {
    position: relative;
    display: block
}

.shop-details__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    z-index: 10
}

.shop-details__main-tab-box .tabs-content .tab.active-tab {
    display: block;
}

.shop-details__top-description {
    margin-bottom: 0
}

.shop-details__top-description--two {
    margin-bottom: 14px
}

.shop-details__tab-list-item {
    gap: 17px
}

@media (max-width: 767px) {
    .shop-details__tab-list-item {
        gap:10px
    }
}

.shop-details__table-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.shop-details__table {
    width: 100%;
    border: 1px solid #eee;
    border-collapse: collapse
}

.shop-details__table thead th,.shop-details__table tbody td {
    padding: 14px 14px 13px 50px;
    border: 1px solid #eee;
    font-weight: 400
}
.inner-page .slideBarBox .slideBarLeft+.slideBarRight .Auxil-through a{
  margin: 10px 0 5px;
}

@media (max-width: 1399px) {
    .shop-details__table thead th,.shop-details__table tbody td {
        padding:12px 12px 11px 30px
    }
}

@media (max-width: 1199px) {
    .shop-details__table thead th,.shop-details__table tbody td {
        padding-left:20px
    }
}

.shop-details__table tbody td:nth-child(1) {
    font-size: var(--noile-size-xl);
    color:var(--color);
    line-height: 1.5
}

.shop-details__table tbody td:nth-child(2) {
    font-size: var(--noile-size-md);
    color: var(--noile-secondary,#a0a1a6);
    line-height: 1.5
}


.i-tag {
    font-size: 20px;
    font-family: var(--font);
    color: var(--color)
}

.i-tag i {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color);
    width: 40px;
    height: 1px;
    margin-right: 20px
}





#index-body .i-advantage {
    padding-bottom: 130px;
    padding-top: 90px;
    position: relative
}

#index-body .i-advantage .bg {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fafafa;
    width: 71%;
    height: 70%;
    z-index: -1
}

#index-body .i-advantage .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 100px;
    justify-content: space-between;
    align-items: center
}

#index-body .i-advantage .top .i-title {
    width: 60%;
    margin-left: 55px
}

#index-body .i-advantage .top .more_btn {
    position: absolute;
    right: 0
}

#index-body .i-advantage .top .more_btn a.more:before {
    display: none
}

#index-body .i-advantage .top .more_btn a.more:after {
    background: 0 0
}

#index-body .i-advantage .top .more_btn a.more {
    color: #000
}

#index-body .i-advantage .top .more_btn .more {
    border-color: rgba(0,0,0,.1)
}

#index-body .i-advantage .top .more_btn .more:after {
    color: #000
}

#index-body .i-advantage .list {
    padding-left: 0
}

#index-body .i-advantage ul {
    margin: -25px
}

#index-body .i-advantage ul .slick-list {
    padding-top: 20px
}

#index-body .i-advantage ul li {
    padding: 25px
}

#index-body .i-advantage ul li .box {
    border: 1px solid #b5b5b5;
    position: relative;
    padding: 70px 35px;
    background: #fff
}

#index-body .i-advantage ul li .box .num {
    font-size: 18px;
    width: 48px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--color);
    color: #fff;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2
}

#index-body .i-advantage ul li .box .h5 {
    font-size: 24px;
    font-family: var(--font);
    margin: 24px 0 15px
}

#index-body .i-advantage ul li .box .des {
    font-size: 16px;
    line-height: 2;
    color: #4d4d4d;
    height: 96px;
    overflow-y: auto
}

#index-body .i-advantage ul li .box .border i {
    position: absolute;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
    background: #000
}

#index-body .i-advantage ul li .box .border i:nth-child(1) {
    left: -1px;
    top: 0;
    width: 1px;
    height: 0
}

#index-body .i-advantage ul li .box .border i:nth-child(2) {
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px
}

#index-body .i-advantage ul li .box .border i:nth-child(3) {
    right: -1px;
    bottom: 0;
    width: 1px;
    height: 0
}

#index-body .i-advantage ul li .box .border i:nth-child(4) {
    right: 0;
    top: -1px;
    width: 0;
    height: 1px
}

#index-body .i-advantage ul li .box:hover .border i:nth-child(1) {
    height: 100%
}

#index-body .i-advantage ul li .box:hover .border i:nth-child(2) {
    width: 100%;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s
}

#index-body .i-advantage ul li .box:hover .border i:nth-child(3) {
    height: 100%;
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    transition-delay: .4s
}

#index-body .i-advantage ul li .box:hover .border i:nth-child(4) {
    width: 100%;
    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    transition-delay: .6s
}
@media screen and (max-width: 1600px) {
    #banner .banner-content ul li {
      height: 800px;
    }
    #index-body .i-advantage ul {
        margin: -13px
    }


    #index-body .i-advantage .list {
        padding-left: 80px
    }
}
@media screen and (max-width: 1400px) {
  #banner .banner-content ul li {
    height: 660px;
  }
}
@media screen and (max-width: 1000px) {
    #banner .banner-content ul li {
        height: 420px;
    }
    #index-body .i-advantage .top .more_btn {
        position: relative
    }

    #index-body .i-advantage .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    #index-body .i-advantage .top .i-title {
        width: 100%;
        margin-left: 0;
        margin: 20px 0
    }

    #index-body .i-advantage .list {
        padding: 0 15px
    }
    #index-body .i-advantage ul li{
      width: 100%;
      margin: 20px 0;
    }
}
@media screen and (max-width: 700px) {
   #index-body .i-advantage .top {
        margin-bottom: 66px
    }
    #banner .banner-content ul li {
        height: 320px;
    }
}




.about-page #index-body .about ul li i{
  position: relative;
  width: auto;
  height: auto;
      margin-right: 20px;

}
.about-page #index-body .about ul li i::before{
  content:"";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color);
  position: absolute;
  top: 6px;
  left: 0px;
  z-index: -1;
  transition: left 0.3s;
}
.about-page #index-body .about ul li:hover i::before{
  left: 10px;
}
.about-page  #index-body .about ul li i img{
  max-width: unset;
}
.about-page #index-body .about ul li:hover i{
  background-color: transparent;
}
.about-page  #index-body .about ul li:hover i img{
  filter: none;
}
.about-page .about-3 {
    padding:   160px 0 120px;
}

.about-page .about-3 .left {
    width: 58.666%;
    position: -webkit-sticky;
    position: sticky;
    top: 160px
}

.about-page .about-3 .left span {
    font-size: 18px;
    line-height: 1.8;
    padding-left: 21px;
    position: relative
}

.about-page .about-3 .left span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000
}

.about-page .about-3 .left .title {
    font-size: 48px;
    line-height: 1;
    font-family: var(--font);
    margin-top: 21px;
}

.about-page .about-3 .left .title em {
    display: block
}

.about-page .about-3 .right {
    width: 41.334%;
    padding-left: 101px;
    position: relative
}

.about-page .about-3 .right .tag {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%
}

.about-page .about-3 .right .tag ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: 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;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 100%
}

.about-page .about-3 .right .tag ul li {
    list-style: none;
    height: 25%;
    position: relative;
    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-transition: all .3s 0s ease-out;
    -moz-transition: all .3s 0s ease-out;
    transition: all .3s 0s ease-out
}

.about-page .about-3 .right .tag ul li span {
    position: absolute;
    width: 1px;
    height: 0;
    background: #20282d;
    left: 27px;
    bottom: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease
}

.about-page .about-3 .right .tag ul li a {
    width: 54px;
    height: 54px;
    line-height: 54px;
    background: #fff;
    color: #20282d;
    position: relative;
    text-align: center;
    border: 1px solid #e6e6e6;
    z-index: 2;
    font-size: 20px;
    font-weight: 700
}

.about-page .about-3 .right .tag ul li.current span {
    height: 100%;
    bottom: auto;
    top: 0
}

.about-page .about-3 .right .tag ul li.current a {
    background-color: #000;
    color: #fff;
    border-color: #000
}

.about-page .about-3 .right .content ul li {
    background: -webkit-gradient(linear,left top,left bottom,color-stop(90%,#da),to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(#da 90%,rgba(255,255,255,0)) background:-moz-linear-gradient(rgba(241,238,226,.8) 90%,rgba(255,255,255,0));
    background: linear-gradient(#da 90%,rgba(255,255,255,0));
    padding: 40px 20px;
    margin-bottom: 60px;
}

.about-page .about-3 .right .content ul li .tit {
    font-size: 60px;
    line-height: 1;
    color: #030303;
    font-weight: 700
}

.about-page .about-3 .right .content ul li .con {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0,0,0,.65);
    margin-top: 21px
}

.about-page .about-3 .right .content ul li:last-child {
    margin-bottom: 0
}

.about-page .about-3 .right .content ul li.active {
    background: #f3f3f3;
    border-radius: 20px
}
.about-page .about-4{
  padding: 120px 0;
}
.about-page .about-4 ul{
  margin: 0 -15px;
}
.about-page .about-4 ul li{
  padding: 0 15px;
}
.about-page .about-5{
  /*padding: 120px 0;*/
}
.about-page .about-5 ul{
  margin: 0 -15px;
}
.about-page .about-5 ul li{
  padding: 20px 20px;
}
.about-page .about-5 ul li a{
    box-shadow: 0 0px 20px #e3e3e3;
    padding: 10px;
}
@media screen and (max-width: 1680px) {
    .about-page .about-3 .left .title {
        font-size: 72px
    }
}

@media screen and (max-width: 1440px) {
    .about-page .about-3 .left .title {
        font-size: 66px
    }
}

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

    .about-page .about-3 .right .content ul li {
        padding: 60px 20px
    }
}

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

    .about-page .about-3 .left .title {
        font-size: 53px
    }

    .about-page .about-3 .right .content ul li {
        padding: 40px 20px
    }

    .about-page .about-3 .right .content ul li .tit {
        font-size: 60px
    }

    .about-page .about-3 .right .content ul li .con {
        margin-top: 10px
    }
}

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

    .about-page .about-3 .left {
        position: initial;
        width: 100%
    }

    .about-page .about-3 .right {
        width: 100%;
        margin-top: 30px
    }
}

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

    .about-page .about-3 .left .title {
        font-size: 46px
    }
}

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

    .about-page .about-3 .left .title {
        font-size: 32px;
        line-height: 1.6
    }

    .about-page .about-3 .right {
        padding-left: 0
    }

    .about-page .about-3 .right .tag {
        display: none
    }

    .about-page .about-3 .right .content ul li {
        margin-bottom: 20px;
        background: rgba(241,238,226,.8);
        padding: 30px 15px
    }

    .about-page .about-3 .right .content ul li .tit {
        font-size: 40px
    }

    .about-page .about-3 .right .content ul li .con {
        font-size: 16px;
        line-height: 1.8
    }
}
.m-page{
  margin-top: 60px;
  text-align: center;
}
.m-page span,.m-page a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: transparent;
    color: #666;
    border-radius: 50%;
    margin-right: 5px;
    transition: all 0.5s;
    border: 1px solid #666;
}
.m-page span:hover,
.m-page a:hover{
  background: var(--color);
  color: white;
  border-color: var(--color);
}
.m-page span {
    background: var(--color);
    color: white;
     border-color: var(--color);
}

.gallery-page ul {
    margin: -15px
}

.gallery-page ul li {
    padding: 15px
}

.gallery-page ul li a {
    display: block;
    background: #fff
}

.news-page .news-1 {
    padding: 50px 0;
    background-color: #faf9f9
}

.news-page .news-1 .list ul {
    margin: -15px
}

.news-page .news-1 .list ul li {
    padding: 15px
}

.news-page .news-1 .list ul li a.img-box {
    display: block
}

.news-page .news-1 .list ul li .content {
    -o-box-shadow: 0px 5px 43px 0px rgba(27,26,26,.06);
    -webkit-box-shadow: 0px 5px 43px 0px rgba(27,26,26,.06);
    box-shadow: 0px 5px 43px 0px rgba(27,26,26,.06);
    padding: 30px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    border-radius: 20px;
    z-index: 1;
    background-color: #fff
}

.news-page .news-1 .list ul li .content time {
    font-size: 14px;
    line-height: 28px;
    display: block;
    margin-bottom: 1em
}

.news-page .news-1 .list ul li .content span.h6 {
    font-size: 20px;
    font-weight: 500;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.news-page .news-1 .list ul li .content span.h6 a{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page .news-1 .list ul li .content .text {
    font-size: 16px;
     display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
}

.news-page .news-1 .list ul li .content .pre {
    position: relative;
    z-index: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-bottom: 24px;
}

.news-page .news-1 .list ul li .content a.link {
    margin-top: 2em
}

.news-page .news-1 .list ul li .content .img{
  width: 41%;
}
.news-page .news-1 .list ul li .content .img img{
  border-radius: 20px;
        width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-page .news-1 .list ul li .content .right{
  width: 59%;
  padding-left: 50px;
  padding-top: 50px;
}


.newdet-page {
    padding: 50px 0;
    background-color: #faf9f9
}

.newdet-page .slideBarRight time {
    font-size: 14px;
    line-height: 28px;
    display: block
}

.m-link Auxil-through {
    font-size: 14px;
    line-height: 28px
}

.newdet-page .slideBarRight h1 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 700
}

.newdet-page .slideBarRight .text {
    margin: 2em 0
}

.newdet-page .slideBarRight .text p {
    margin-top: 1em
}

.newdet-page .slideBarRight .text p:first-child {
    margin-top: 0
}

.newdet-page .slideBarRight .share {
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2em
}

.newdet-page .slideBarRight .share a {
    margin-left: 1em;
    width: 1.5em;
    height: 1.5em;
    background-color: #000;
    color: #fff;
    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;
    border-radius: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.newdet-page .slideBarRight .share a:hover {
    background-color: var(--color)
}

.newdet-page .slideBarRight span.h5 {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    margin: 2em 0 1em;
    display: block;
}

.inner-page .slideBarBox .slideBarLeft {
    width: 30%;
    position: sticky;
    top: 160px
}

.inner-page .slideBarBox .slideBarLeft+.slideBarRight {
    padding-left: 4%;
    padding-right: 0
}

.inner-page .slideBarBox .slideBarLeft .slide {
    margin-bottom: 40px;
    padding: 50px;
    background-color: #fff
}

.inner-page .slideBarBox .slideBarLeft .slide span.h5 {
    font-size: 20px;
    line-height: 36px;
    font-family: var(--font);
    display: block;
    margin-bottom: 1em
}

.inner-page .slideBarBox .slideBarLeft .slide form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    background-color: #fff
}

.inner-page .slideBarBox .slideBarLeft .slide form input {
    width: 100%;
    padding: 1em;
    border: none;
    background-color: transparent;
    color: #000
}

.inner-page .slideBarBox .slideBarLeft .slide form input[type=submit] {
    width: 4em;
    background-image: url("/template/en/images/icon-search-black.png");
    background-position: center;
    background-repeat: no-repeat;
    padding: 0
}

.inner-page .slideBarBox .slideBarLeft .slide.search {
    background-color: var(--color);
    color: #fff;
    border-radius: 20px;
    background-image: -webkit-linear-gradient(315deg,var(--color),var(--color2));
    background-image: -moz-linear-gradient(315deg,var(--color),var(--color2));
    background-image: linear-gradient(170deg,var(--color),var(--color2))
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li:last-child {
    margin-bottom: 0
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li a.img {
    width: 30%;
    background-size: cover;
    background-position: center
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content {
    width: 70%;
    padding: 10px 0;
    padding-left: 5%
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content span.h6 {
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 30px;
    height: 3.2em
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content time {
    display: block;
    font-size: 14px;
    margin-top: .5em
}

.inner-page .slideBarBox .slideBarLeft .slide .nav {
    font-size: 14px;
    line-height: 28px;
    font-weight: 500
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li {
    margin-bottom: 1em
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
    padding: 1.5em;
    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: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #333;
    background-color: #faf9f9;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a i {
    width: 1.5em;
    height: 1.5em;
    border-radius: 100%;
    background-color: #fff;
    color: #000;
    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
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a:hover,.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a.active {
  color: #fff;
    background-color: var(--color);
    background-image: -webkit-linear-gradient(315deg,var(--color),var(--color2));
    background-image: -moz-linear-gradient(315deg,var(--color),var(--color2));
    background-image: linear-gradient(170deg,var(--color),var(--color2))
}

.inner-page .slideBarBox .slideBarLeft .slide:last-child {
    margin-bottom: 0;
    border-radius: 20px
}

.inner-page .slideBarBox .slideBarRight {
    width: 70%;
    padding-right: 4%
}
@media screen and (max-width: 1700px) {
    .newdet-page,.news-page .news-1,.gallery-page,.product-page {
        padding:70px 0
    }

    .newdet-page .slideBarRight h1 {
        font-size: 32px
    }
    .news-page .news-1 .list ul li .content {
        padding: 7%
    }

    .news-page .news-1 .list ul li .content span.h6 {
        font-size: 18px
    }
     .inner-page .slideBarBox .slideBarLeft .slide {
        padding: 30px
    }
}

@media screen and (max-width: 1450px) {
    .newdet-page .slideBarRight h1 {
        font-size:28px
    }

    .news-page .news-1 .list ul li .content {
        padding: 5%
    }

    .news-page .news-1 .list ul li .content span.h6 {
        font-size: 16px;
        line-height: 30px
    }

    .news-page .news-1 .list ul li:hover .content .pre {
        padding-bottom: 50px
    }

    .news-page .news-1 .list ul li:hover .content {
        margin-top: -50px
    }
    .inner-page .slideBarBox .slideBarLeft .slide {
        padding: 20px
    }

    .inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
        padding: 1em
    }

    .inner-page .slideBarBox .slideBarLeft .slide span.h5 {
        font-size: 18px
    }
}

@media screen and (max-width: 1250px) {
    .newdet-page .slideBarRight h1 {
        font-size:24px
    }

    .news-page .news-1 .list ul li .content .pre .text {
        position: static;
        opacity: 1;
        margin-top: 1em
    }
    .inner-page .slideBarBox .slideBarLeft+.slideBarRight {
        padding-left: 2%
    }
}
@media screen and (max-width: 1000px) {
   .inner-page .slideBarBox .slideBarLeft {
        display:none
    }

    .inner-page .slideBarBox .slideBarLeft+.slideBarRight {
        width: 100%;
        padding-left: 0
    }
}
@media screen and (max-width: 700px) {
    .newdet-page,
    .news-page .news-1 {
        padding:30px 0
    }

    .newdet-page .slideBarRight h1 {
        font-size: 28px;
        line-height: 1.6
    }

    .news-page .news-1 .list ul li:hover .content span.h6 {
        opacity: 1
    }

    .news-page .news-1 .list ul li:hover .content {
        margin-top: 0
    }

    .news-page .news-1 .list ul li:hover .content .pre {
        padding-bottom: 0
    }

    .news-page .news-1 .list ul li .content a.link {
        margin-top: 1em
    }
      .news-page .news-1 .list ul li .content .right {
    width: 100%;
    padding-left: 0;
  }
  .news-page .news-1 .list ul li .content .img {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
    .news-page .news-1 .list ul li .content span.h6,.news-page .news-1 .list ul li .content .pre .text {
        height:auto
    }
}

.service-page {
  padding: 60px 0  0 0px;
}
.service-page .service-1 {
  padding-bottom: 60px;
}
.service-page .service-1 #index-body .about {
  padding: 0;
  background: none;
}
.service-page .service-1 #index-body .about .top .text h2.title {
   margin-bottom: 40px;
  line-height: 1.4;
   text-transform:uppercase;
}

.service-page .service-1 #index-body .about .top .text p {
  font-size: 18px;
  line-height: 30px;
  color: #666;
  margin: 0 0 40px;
}
 
.service-page .service-1 #index-body .about .top .img_box {
  text-align: right;
  padding: 0 0 50px 0;
  border-radius: 10px;
}
.service-page .service-1 #index-body .about .top .img_box .i2 {
  position: absolute;
  left: 0;
  bottom: -25px;
  top: auto;
  z-index: 1;
  border-radius: 10px;
}
.service-page .service-2 {
  background: #f9f9f9;
    padding: 70px 0;
    margin: 50px 40px;
}
.service-page .service-2 .header {
  width: 70%;
  margin: 0 auto;
}
.service-page .service-2 .header .title{
  line-height: 1.2;
  margin-top: 12px;
   text-transform:uppercase;
}
.service-page .service-2 .content {
  margin-top: 80px;
}
.service-page .service-2 .content ul {
  margin-right: -30px;
  display: flex;
    justify-content: space-between;
}
.service-page .service-2 .content ul li {
  padding-right: 30px;
}
.service-page .service-2 .content ul li .ig {
  text-align: center;
}
.service-page .service-2 .content ul li .ig .img-box {
  display: block;
  width: 60%;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0px -0.4px 9px 3px rgb(0 0 0 / 8%);
}
.service-page .service-2 .content ul li .ig .text {
  padding-top: 28px;
}
.service-page .service-2 .content ul li .ig .text span {
  font-size: 17px;
  color: #83827F;
  line-height: 1.6;
  text-transform: uppercase;
}
.service-page .service-2 .content ul li .ig .text h3 {
  font-size: 22px;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: bold;
}
.service-page .service-2 .content ul li .ig .text p {
  font-size: 16px;
  line-height: 30px;
  color: #83827F;
  margin-top: 10px;
}
.service-page .service-2 .content ul li .ig .text .mores {
  width: 47px;
  height: 47px;
  line-height: 45px;
  text-align: center;
  background: #fff;
  border: 1px solid #d1d0c8;
  border-radius: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 25px;
  display: inline-block;
}
.service-page .service-2 .content ul li .ig .text .mores img {
  display: inline-block;
  vertical-align: middle;
}
.service-page .service-2 .content ul li .ig .text .mores:hover {
  background: var(--color);
  border-color: var(--color);
}
.service-page #index-body .init1 .img {
  margin: auto;
  /*padding-top: 35px;*/
  border-radius: 20px;
}
.service-page #index-body .init1 .img img{
      border-radius: 20px;
}
.service-page #index-body .rate {
  padding: 80px 0 140px;
  background-color: #f9f9f9;
}
.service-page #index-body .rate .header,
.service-page .service-2 .header{
    background-color: transparent;
}
.service-page #index-body .rate .content{
  margin-top: 50px;
}
.service-page #index-body .rate .content ul{
  margin: -15px;
      display: flex;
    justify-content: space-between;
}
.service-page #index-body .rate .content ul li{
  padding: 15px;
  width: 32%;
}
.service-page #index-body .rate .content ul li .box{
  background: #f2f2f2;
    padding: 30px;
    min-height: 340px;
    border-radius: 10px;
    transition: all 0.5s;
    text-align: center
}


.service-page #index-body .rate .content ul li .box .title{
  display: block;
  font-weight: bold;
  font-size: 26px;
  margin-top: 15px;
}
.service-page #index-body .rate .content ul li .box .desc{
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
  color: #666;
  transition: all 0.5s;
}
.service-page #index-body .rate .content ul li:hover .box{
  background: #1765b9;
  color: #fff
}
.service-page #index-body .rate .content ul li:hover .box .desc,
.service-page #index-body .rate .content ul li:hover .box .desc p{
  color: #fff
}
.service-page .service-3 {
  padding: 120px 0;
}
.service-page .service-3 .top .img {
  vertical-align: middle;
}
.service-page .service-3 .top .img .info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 70px;
  width: 100%;
}
.service-page .service-3 .top .img img {
  width: 48.2%;
  margin-right: 20px;
}
.service-page .service-3 .top .img img:last-child {
  margin: 0 0 0 20px;
}
.service-page .service-3 .top .text {
  padding-left: 48px;
  vertical-align: middle;
}
.service-page .service-3 .top .text .box {
  width: 80%;
}
.service-page .service-3 .top .text .box h2.title {
  line-height: 1.2;
  width: 90%;
}
.service-page .service-3 .top .text .box p {
  font-size: 17px;
  line-height: 1.8;
  color: #83827F;
  margin-top: 20px;
}
.service-page .service-3 .top .text .box .more {
  padding: 21px 29px 20px 28px;
  margin-top: 45px;
}
.service-page .service-3 .bottom {
  padding-top: 120px;
}
.service-page .service-3 .bottom ul {
  margin-right: -60px;
}
.service-page .service-3 .bottom ul li {
  text-align: center;
  padding-right: 60px;
}
.service-page .service-3 .bottom ul li i {
  display: inline-block;
  height: 69px;
}
.service-page .service-3 .bottom ul li i img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-3 .bottom ul li i:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.service-page .service-3 .bottom ul li .text {
  padding-top: 21px;
}
.service-page .service-3 .bottom ul li .text h3 {
  font-size: 26px;
  line-height: 1.1;
}
.service-page .service-3 .bottom ul li .text p {
  font-size: 17px;
  line-height: 1.6;
  color: #83827F;
  margin-top: 20px;
}
.service-page .service-3 .bottom ul li .text .mores {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  overflow: hidden;
}
.service-page .service-3 .bottom ul li .text .mores span {
  margin-top: 5px;
  position: relative;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-indent: -110px;
  visibility: hidden;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  -moz-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  will-change: visibility, margin-right, text-indent, opacity;
}
.service-page .service-3 .bottom ul li .text .mores em {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  line-height: 21px;
}
.service-page .service-3 .bottom ul li .text .mores em img {
  display: inline-block;
  vertical-align: middle;
}
.service-page .service-3 .bottom ul li .text .mores:hover span {
  opacity: 1;
  text-indent: 0;
  margin-right: 6px;
  visibility: visible;
  -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  -moz-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
}

#index-body .about .top .text {
    
    vertical-align: middle;
    padding-right: 73px;
}
#index-body .about .top .text .btn a.link {
    display: inline-block;
    vertical-align: top;
    margin-left: 35px;
}
#index-body .about .top .text .btn a.link em {
    display: inline-block;
    padding: 22px;
    background: var(--color);
}
 
#index-body .about .top .text .btn a.link span {
    display: inline-block;
    font-size: 20px;
    line-height: 36px;
    padding-left: 5px;
}
#index-body .about .top .text .btn {
    margin-top: 37px;
}
#index-body .init1 {
    /*background: #f9f9f9;*/
    padding: 60px 0 108px;
}
#index-body .init1 .info {
    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: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.service-page #index-body .init1 .btn{
width: 60%;
    color: #666;
        font-size: 18px;
    line-height: 1.4;
   
}
.service-page #index-body .init1 .more{
  background: white;
  color: black;
}
.service-page #index-body .init1 .more:hover{
  color: white;
}
@media screen and (max-width: 1680px) {
  .service-page .service-3 .top .text .box h2.title {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .service-page {
    padding: 100px 0;
  }
  .service-page .service-1 {
    padding-bottom: 60px;
  }
   
  .service-page .service-2 {
    padding: 100px 0;
  }
  .service-page .service-3 .top .img {
    width: 55%;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 40px;
  }
  .service-page .service-3 .top .text {
    width: 45%;
  }
  .service-page .service-3 .top .text .box {
    width: 100%;
  }
  .service-page .service-3 {
    padding: 100px 0;
  }
  .service-page .service-3 .bottom {
    padding-top: 100px;
  }
  .service-page #index-body .rate .content ul li .box .title{
    font-size: 20px;
    line-height: 36px;
  }
  .service-page #index-body .rate .content ul li .box .desc{
    min-height: 162px;
  }
  
}
@media screen and (max-width: 1280px) {
   
  #index-body .about .top .text {
    padding-right: 50px;
  }
  .service-page .service-2 {
    margin: 50px 0;
  }
}
@media screen and (max-width: 1100px) {
  .service-page .service-1 #index-body .about .top .img_box {
    padding: 0 0 50px 30px;
  }
}
@media screen and (max-width: 1000px) {
  .service-page .service-2 .content ul li {
    width: 100%;
    margin: 35px 0;
  }
  .service-page #index-body .rate .content ul,.service-page .service-2 .content ul{
    flex-wrap: wrap;
  }
  .service-page #index-body .rate .content ul li{
    width: 50%;
  }
  .inner-page .sidebar-box .sidebar-left{
    display: none;
  }
  .inner-page .sidebar-box .sidebar-right{
    width: 100%;
  }
  .service-page {
    padding: 60px 0;
  }
  #index-body .init1 .info{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .service-page .service-1 #index-body .about .top .text {
    padding-right: 0;
    width: 100%;
  }
  .service-page .service-1 #index-body .about .top .img_box{
    width: 100%;
    margin-top: 25px;
    padding: 0;
  }
  .service-page .service-1 #index-body .about .top .img_box img{
    width: 100%;
    object-fit: cover;
  }
  .service-page .service-1 {
    padding-bottom: 60px;
  }
  .service-page .service-2 {
    padding: 60px 0;
    
  }
  .service-page .service-2 .content ul li .ig .text h3 {
    min-height: 60px;
  }
  .service-page .service-3 {
    padding: 60px 0;
  }
  .service-page .service-3 .top .img {
    width: 100%;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 40px 0 20px;
  }
  .service-page .service-3 .top .text {
    width: 100%;
    padding: 20px 20px 0;
  }
  .service-page .service-3 .bottom {
    padding-top: 60px;
  }
  .service-page .service-3 .bottom ul {
    margin-right: -20px;
  }
  .service-page .service-3 .bottom ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .service-page {
    padding: 30px 0;
  }
  .service-page #index-body .rate .content ul li{
    width:100%;
  }
  .service-page #index-body .rate .h-title{
    text-align: center;
  }
  .service-page #index-body .rate .h-title h3{
    flex-wrap: wrap;
    justify-content: center;
  }
  .service-page #index-body .rate .h-title h3 em{
    margin: 0;
  }
  .service-page .service-1 #index-body .about .top .text h3 {
    margin-top: 12px;
  }
  .service-page .service-1 {
    padding-bottom: 30px;
  }
  .service-page .service-2 {
    padding: 30px 0;
  }
  .service-page .service-2 .header {
    width: 100%;
  }
  .service-page .service-2 .content {
    margin-top: 20px;
  }
  .service-page .service-2 .content ul {
    margin-right: -15px;
  }
  .service-page .service-2 .content ul li {
    /*padding-right: 15px;*/
  }
  .service-page .service-2 .content ul li .ig .text {
    padding-top: 14px;
  }
  .service-page .service-2 .content ul li .ig .text span {
    font-size: 15px;
  }
  .service-page .service-2 .content ul li .ig .text h3 {
    font-size: 24px;
    line-height: 1.6;
  }

  .service-page .service-3 .top .text .box .more {
    margin-top: 20px;
  }
  .service-page .service-3 .bottom {
    padding-top: 30px;
  }
  .service-page .service-3 .bottom ul li .text h3 {
    font-size: 20px;
  }
  .service-page .service-3 .bottom ul li .text p {
    font-size: 15px;
  }
  .service-page .service-3 .bottom ul {
    margin-bottom: -20px;
  }
  .service-page .service-3 .bottom ul li {
    padding-bottom: 20px;
  }
  .service-page .service-3 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 500px) {
   

  .service-page #index-body .about .top .text .btn a.link {
    display: block;
    margin: 10px 0 0 0;
  }
  .service-page .service-3 .top .text .box p {
    font-size: 15px;
    line-height: 30px;
  }
  .service-page .service-3 .top .text .box .more {
    padding: 12px 18px;
  }
  #index-body .about .top .text .btn a.link em {
    padding: 10px;
  }
  .service-page .service-3 .top .img img {
    margin-right: 10px;
    width: 49.5%;
  }
  .service-page .service-3 .top .img img:last-child {
    margin: 0 0 0 10px;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 30px 0 20px;
  }
}

.faq-page .faq-1 {
  font-size: 18px;
  padding: 1em 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 4em;
}
.faq-page .faq-1 .filter {
  display: flex;
}
.faq-page .faq-1 .filter a {
  margin-right: 1.5em;
  position: relative;
}
.faq-page .faq-1 .filter a:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1em;
  background-color: #1155a6;
  opacity: 0;
}
.faq-page .faq-1 .filter a span {
  display: block;
}
.faq-page .faq-1 .filter a.active:after {
  opacity: 1;
}
.faq-page .faq-2 .list ul li {
  padding: 30px;
}
.faq-page .faq-2 .list ul li span.h6 {
  font-size: 18px;
  color: #303030;
  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;
  font-weight: 500;
  line-height: 1.6;
}
.faq-page .faq-2 .list ul li span.h6 i.fa {
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background-color: #cfcfcf;
  color: white;
  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;
  margin-right: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.faq-page .faq-2 .list ul li span.h6 i.fa.fa-angle-down {
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
  cursor: hand;
}
.faq-page .faq-2 .list ul li span.h6.active i.fa {
  background-color: #1155a6;
}
.faq-page .faq-2 .list ul li span.h6.active i.fa.fa-angle-down {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq-page .faq-2 .list ul li .text {
      padding: 0 4em;
  color: #a8a8a8;
  margin-top: 1.3em;
  padding-top: 1.3em;
  border-top: 1px solid #e0e0e0;
  display: none;
      line-height: 2;
}
.about-page .about-1 .right .text {
    line-height: 2;
}
.faq-page .faq-2 .list ul li:nth-child(odd) {
  background-color: #f8f8f8;
}
.pdf-page {
    padding: 100px 0;
}
.pdf-page .pdf-1 {
  padding: 110px 0;
}
.pdf-page .pdf-1 .flexTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.pdf-page .pdf-1 .flexTitle form {
  width: 430px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eee;
  border-radius: 30px;
  font-size: 18px;
}
.pdf-page .pdf-1 .flexTitle form input {
  background-color: transparent;
  width: 100%;
  border: none;
  padding: 0 1.5em;
}
.pdf-page .pdf-1 .flexTitle form input[type="submit"] {
  width: 60px;
  background-image: url("../images/icon-search2.png");
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  overflow-x: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.pdf-page .pdf-2 .slide {
  padding-bottom: 80px;
}
.pdf-page .pdf-2 .slide span.h3 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  line-height: 1.2;
  margin-bottom: 1.5em;
}
.pdf-page .pdf-2 .slide .list ul {
  margin: -13px -27px;
}
.pdf-page .pdf-2 .slide .list ul li {
  padding: 13px 27px;
}
.pdf-page .pdf-2 .slide .list ul li .box {
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #c1c1c1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.pdf-page .pdf-2 .slide .list ul li .box i {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.pdf-page .pdf-2 .slide .list ul li .box .content {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  max-width: 80%;
}
.pdf-page .pdf-2 .slide .list ul li .box .content span.h6 {
  font-size: 24px;
  font-weight: bold;
  color: #0b0b0b;
  line-height: 1.2;
  margin-bottom: .4em;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pdf-page .pdf-2 .slide .list ul li .box .content .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  color: #323232;
}
.pdf-page .pdf-2 .slide .list ul li .box .content .link a {
  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;
}
.pdf-page .pdf-2 .slide .list ul li .box .content .link a i.fa {
  margin-right: .5em;
  color: #1155a6;
}
.pdf-page .pdf-2 .slide .list ul li .box .content .link a i.fa:before {
  font-size: 1.5em;
}
.pdf-page .pdf-2 .slide .list ul li .box .content .link a:after {
  content: '';
  margin: 0 1em;
  width: 1px;
  height: 1em;
  background-color: #c3c3c3;
}
.pdf-page .pdf-2 .slide .list ul li .box .content .link a:last-child:after {
  display: none;
}
.pdf-page .pdf-2 .slide .list ul li .box:hover {
  background-color: #1155a6;
  color: white;
}
.pdf-page .pdf-2 .slide .list ul li .box:hover > * {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.downloadBox {
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.downloadBox i.dots {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  -webkit-box-shadow: inset -3px 1px 7px rgba(0, 0, 0, 0.5);
  box-shadow: inset -3px 1px 7px rgba(0, 0, 0, 0.5);
  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;
  background-color: white;
  margin-right: 1em;
  position: relative;
}
.downloadBox .top {
  height: 5em;
  color: white;
  background-color: #1155a6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 2em;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.downloadBox .top img {
  margin-right: 1em;
}
.downloadBox .top .line {
  width: 1px;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.48);
  margin: 0 1.3em;
}
.downloadBox .top span {
  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;
  cursor: pointer;
  cursor: hand;
}
.downloadBox .top span i.dots:before {
  content: '';
  width: .8em;
  height: .8em;
  border-radius: 100%;
  background-color: #1155a6;
}
.downloadBox .downloadLeft {
  width: 28%;
}
.downloadBox .downloadLeft .top em {
  font-size: 1.33333333em;
}
.downloadBox .downloadLeft .nav {
  border: 1px solid #dfdfdf;
  border-top: none;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
}
.downloadBox .downloadLeft .nav a {
  padding: 1.5em 2em;
  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: #626262;
  border-top: 1px solid #dfdfdf;
}
.downloadBox .downloadLeft .nav a:first-child {
  border-top: none;
}
.downloadBox .downloadLeft .nav a em {
  font-size: 1.33333333em;
  line-height: 1.5;
}
.downloadBox .downloadLeft .nav a i.dots {
  width: 3.5em;
  height: 3.5em;
  -webkit-box-shadow: inset -3px 1px 7px rgba(0, 0, 0, 0.2);
  box-shadow: inset -3px 1px 7px rgba(0, 0, 0, 0.2);
}
.downloadBox .downloadLeft .nav a i.dots img {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.downloadBox .downloadLeft .nav a:hover,
.downloadBox .downloadLeft .nav a.active {
  color: #1155a6;
}
.downloadBox .downloadLeft .nav a:hover i.dots img,
.downloadBox .downloadLeft .nav a.active i.dots img {
  opacity: 1;
}
.downloadBox .downloadRight {
  width: 72%;
  padding-left: 3%;
}
.downloadBox .downloadRight .top {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
  -moz-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.downloadBox .downloadRight .bottom {
  border: 1px solid #dfdfdf;
  border-top: none;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  padding: 0 2%;
}
.downloadBox .downloadRight .bottom ul li {
  padding: 1.05em 0;
  border-top: 1px solid #dfdfdf;
}
.downloadBox .downloadRight .bottom ul li:first-child {
  border-top: none;
}
.downloadBox .downloadRight .bottom ul li .flex {
  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;
}
.downloadBox .downloadRight .bottom ul li .flex i.icon {
  width: 6em;
  height: 6em;
  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;
  border: 1px solid #dfdfdf;
  border-radius: 100%;
}
.downloadBox .downloadRight .bottom ul li .flex i.icon img {
  max-width: 35%;
}
.downloadBox .downloadRight .bottom ul li .flex .content {
  padding: 0 1.5em;
}
.downloadBox .downloadRight .bottom ul li .flex .content .path {
  font-size: 16px;
  color: #acacac;
  margin-bottom: .5em;
      line-height: 2;
}
.downloadBox .downloadRight .bottom ul li .flex .content .path span {
  color: #1155a6;
}
.downloadBox .downloadRight .bottom ul li .flex .content .title {
  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;
}
.downloadBox .downloadRight .bottom ul li .flex .content .title span.h6 {
  font-size: 1.44444444em;
  font-weight: bold;
  margin-right: 1em;
}
.downloadBox .downloadRight .bottom ul li .flex .content .title span.lang {
  height: 2.33333333em;
  border-radius: 1.16666667em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #cdcdcd;
  color: white;
  position: relative;
  text-transform: uppercase;
  padding: 0 .5em;
  cursor: pointer;
  cursor: hand;
}
.downloadBox .downloadRight .bottom ul li .flex .content .title span.lang i {
  width: 1.77777778em;
  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;
}
.downloadBox .downloadRight .bottom ul li .flex .content .title span.lang:before {
  content: '';
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: white;
  position: absolute;
  left: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.downloadBox .downloadRight .bottom ul li .flex .content .title span.lang.on:before {
  left: 52%;
}
.downloadBox .downloadRight .bottom ul li .flex .btn {
  margin-left: auto;
}
/*
.downloadBox .downloadRight .bottom ul li .flex .btn a {
  height: 3em;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2.33333333em;
  border-radius: 1.5em;
  border: 1px solid #1155a6;
  width: 100%;
  margin: 10px 0;
  color: #1155a6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.downloadBox .downloadRight .bottom ul li .flex .btn a img {
  margin-left: 1em;
  transition: .5s;
}
.downloadBox .downloadRight .bottom ul li .flex .btn a:hover {
  background-color: #1155a6;
  color: white;
}
.downloadBox .downloadRight .bottom ul li .flex .btn a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}*/

/*.downloadBox .downloadRight .bottom ul li .flex .btn a.on {
  background-color: #1155a6;
  color: white;
}
.downloadBox .downloadRight .bottom ul li .flex .btn a.on img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.downloadBox .downloadRight .bottom ul li .flex .btn a.on:hover {
  background-color: transparent;
  color: #1155a6;
}
.downloadBox .downloadRight .bottom ul li .flex .btn a.on:hover img {
  -webkit-filter: unset;
  filter: unset;
}*/
.downloadBox .downloadRight .bottom .search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #e7e7e7;
  font-size: 18px;
}
.downloadBox .downloadRight .bottom .search input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .3em 0;
}
.downloadBox .downloadRight .bottom .search input::-webkit-input-placeholder {
  color: #aaa;
}
.downloadBox .downloadRight .bottom .search input:-moz-placeholder {
  color: #aaa;
}
.downloadBox .downloadRight .bottom .search input::-moz-placeholder {
  color: #aaa;
}
.downloadBox .downloadRight .bottom .search input:-ms-input-placeholder {
  color: #aaa;
}
.downloadBox .downloadRight .bottom .search input::placeholder {
  color: #aaa;
}
.downloadBox .downloadRight .bottom .search input[type="submit"] {
  width: 50px;
  background-image: url("../images/icon-search2.png");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.case-page .case-3 {
  padding: 110px 0 200px;
}
.case-page .case-3 .case-3-box {
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
}
.case-page .case-3 .case-3-box .ui.container{
  padding: 15px 15px 100px;

}
.case-page .case-3 .list{
  overflow: visible;
}
.case-page .case-3 .list ul li{
  padding: 0;
}
.case-page .case-3 .list ul li .box2 img{
  border-radius: 0;
}
.case-page .case-3 .list ul li .img_box {
  position: relative;
}
.case-page .case-3 .list ul li .img_box > img{
  width:100%;
  object-fit: cover;
}
.case-page .case-3 .list ul li a.img {
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  z-index: -1;
}
.case-page .case-3 .list ul li.swiper-slide-active a.img {
  opacity: 1;
  z-index: 10;
}
.case-page .case-3 .list ul li a.img span.play {
  width: 3em;
  height: 3em;
  font-size: 18px;
  border-radius: 100%;
  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: black;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: white;
  position: relative;
}
.case-page .case-3 .list ul li a.img span.play i{
  color: var(--color);
  transition: all 0.5s;
}
.case-page .case-3 .list ul li:hover a.img span.play i{
  color: white;
}
.case-page .case-3 .list ul li a.img span.play:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  top: 0;
  left: 0;
  /*border: 2px solid white;*/
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.case-page .case-3 .list ul li span.slide-title {
  display: none;
}
.case-page .case-3 .list ul li:hover a.img span.play {
  background-color: #1155a6;
  color: white;
}
.case-page .case-3 .list ul li:hover a.img span.play:before {
  border-color: #1155a6;
}


.case-page .case-3 .list .bot {
  position: absolute;
  left: 50%;
  bottom: -65px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 1000px;
  text-align: center;
}
.case-page .case-3 .list .bot h4 {
  font-size: 24px;
  font-family: 'Roboto-Medium';
  margin: 0 auto;
}
.case-page .case-3 .list span.btn {
  cursor: pointer;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  z-index: 100;
  width:50px;
  height: 50px;
  border-radius: 50%;
  background-color:transparent;
  text-align: center;
  line-height: 50px;
  transition: all 0.5s;
  border: 1px solid #eee;
}
.case-page .case-3 .list span.btn:hover{
  background-color: var(--color);
  border-color: var(--color);
}
.case-page .case-3 .list span.btn.prev{
  left:15%;
}
.case-page .case-3 .list span.btn.next{
  right: 15%;
}
.case-page .case-3 .list span.btn i {
  font-size: 22px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  display: block;
  color: #eee;
}


@media(max-width:700px) {
  .case-page .case-3 .list span.btn{
    display: none;
  }
  .case-page .case-3 .list .bot h4{
    font-size: 24px;
  }
  .case-page .case-3 .case-3-box{
    padding: 0 15px;
  }
}




.quality-page .quality-1 {
  padding: 138px 0 130px;
}
.quality-page .quality-1 ul {
  margin: -20px;
  display: flex;
  justify-content: space-between;
}
.quality-page .quality-1 ul li {
  padding: 20px;
}
.quality-page .quality-1 ul li .box {
  background: white;
  -webkit-box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 75px 55px;
}
.quality-page .quality-1 ul li .box .icon {
  height: 60px;
}
.quality-page .quality-1 ul li .box .icon img {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.quality-page .quality-1 ul li .box h4 {
  font-size: 25px;
  font-weight: bold;
  margin: 20px 0 26px;
  line-height: 2;
}
.quality-page .quality-1 ul li .box .text {
  font-size: 16px;
  line-height: 2;
  min-height: 180px;
}
.quality-page .quality-1 ul li .box:hover .icon img {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.quality-page .quality-2 {
  background-color: #fafafa;
  padding: 130px 0 120px;
}
.quality-page .quality-2 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quality-page .quality-2 .top .img,
.quality-page .quality-2 .bottom .img{
  width: 50%;
  border-radius: 20px;
}
.quality-page .quality-2 .top .img img,
.quality-page .quality-2 .bottom .img img,
.case-page ul li .box img,
.shop-product__img img,
#index-body .i-advantage ul li .box{
  border-radius: 20px;
}
.quality-page .quality-2 .top .text {
  width: 50%;
  padding-right: 60px;
}

.quality-page .quality-2 .top .text h5{
  font-size: 25px;
  line-height: 40px;
}
.quality-page .quality-2 .top .text .content {
  font-size: 16px;
  line-height: 2;
  margin-top: 50px;
}
.quality-page .quality-2 .top .text .content p:not(:last-child) {
  margin-bottom: 50px;
}
.quality-page .quality-2 .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quality-page .quality-2 .bottom .text {
  width: 50%;
  padding-left: 80px;
}
.quality-page .quality-2 .bottom .text .content {
  font-size: 16px;
  line-height: 2;
}
.quality-page .quality-2 .bottom .text .content p:not(:last-child) {
  margin-bottom: 60px;
}
.quality-page .quality-3 {
  padding: 140px 0;
  overflow: hidden;
}
.quality-page .quality-3 h2 {
  font-size: 43px;
  font-family: var(--font);
  font-style: italic;
  margin-bottom: 45px;
  line-height: 2;
}
.quality-page .quality-3 .text {
  margin: -50px;
}
.quality-page .quality-3 .text h4 {
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 2;
}
.quality-page .quality-3 .text .column {
  padding: 50px;
  padding-bottom: 0;
}
.quality-page .quality-3 .text .content {
  /*font-weight: 300;*/
  line-height: 30px;
}
.quality-page .quality-3 .imgbox {
  margin-top: 50px;
}
.quality-page .quality-3 ul {
  margin: -15px;
}
.quality-page .quality-3 ul li {
  padding: 15px;
}
.quality-page .quality-4 {
  background-color: #fafafa;
  padding-bottom: 100px;
  padding-top: 100px;
}
.quality-page .quality-4 h2 {
  font-size: 43px;
  font-family: var(--font);
  font-style: italic;
  text-align: center;
  line-height: 2;
}
.quality-page .quality-4 p.text {
  margin: 30px auto 90px;
  text-align: center;
  font-size: 18px;
  line-height: 2;
  max-width: 1050px;
}
/*.quality-page .quality-4 ul.grid-box {
  margin: -35px;
}
.quality-page .quality-4 ul.grid-box .column {
  padding: 35px;
}*/
.quality-page .quality-4 ul li .box {
  position: relative;
}
.quality-page .quality-4 ul li .box .column{
  vertical-align: middle;
}
  .quality-page .quality-4 ul li .box .column img{
    width: 90% ;
        border-radius: 20px;
  }
.quality-page .quality-4 ul li .box .content {
  /*position: absolute;
  left: 15px;
  bottom: 15px;
  background-color: white;
  max-width: 365px;*/
  padding: 9px;
  vertical-align: middle;
}
.quality-page .quality-4 ul li .box .content h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
}
.quality-page .quality-4 ul li .box .content .text {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  margin: 20px 0 40px;
}
.quality-page .quality-4 ul li .box .content .text p{
  margin-bottom: 5px;
  font-weight: 500;
}
.quality-page .quality-4 ul.grid-box .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 90px;
}
.quality-page .quality-4 ul.grid-box .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #878787;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 6px;
}
.quality-page .quality-4 ul.grid-box .slick-dots li button {
  display: none;
}
.quality-page .quality-4 ul.grid-box .slick-dots li.slick-active {
  background-color: var(--color);
}

.contact-page {
  padding-top: 40px;
}
.contact-page .title {
  font-size: 50px;
  font-family: var(--font);
  font-style: italic;
  line-height: 2;
}
.contact-page .contact-1 form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .contact-1 form input {
  width: 46%;
  font-size: 20px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #bdbdbd;
  height: 63px;
  margin-bottom: 30px;
}
.contact-page .contact-1 form p {
  width: 100%;
  font-size: 20px;
  opacity: 0.6;
  margin-bottom: 10px;
}
.contact-page .contact-1 form textarea {
  width: 100%;
  height: 177px;
  font-size: 20px;
  padding: 25px 20px;
  border: 1px solid #bdbdbd;
  margin-bottom: 30px;
}
.contact-page .contact-1 form input[type="submit"] {
  background: transparent;
  border: none;
  margin-bottom: 0;
  height: auto;
  margin-right: 15px;
}
.contact-page .contact-2 {
  padding: 110px 0;
}
.contact-page .contact-2 .left {
  width: 60%;
  padding-right: 60px;
}
.contact-page .contact-2 .left .text {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  margin: 8px 0 42px;
}
.contact-page .contact-2 .left .content .box:first-child {
  margin-bottom: 50px;
}
.contact-page .contact-2 .left .content h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 13px;
}
.contact-page .contact-2 .left .content ul {
  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;
}
.contact-page .contact-2 .left .content ul li {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  width: 33%;
  margin-bottom: 16px;
}
.contact-page .contact-2 .left .content ul li.add {
  width: 75%;
}
.contact-page .contact-2 .right {
  width: 40%;
}
.contact-page .contact-2 .right img {
  display: block;
  margin-left: auto;
  margin: 0;
}
@media screen and (max-width: 1800px) {
  .faq-page .faq-2 .list ul li .text {
    font-size: 16px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box .content span.h6 {
    font-size: 20px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box .content .link{
    font-size: 14px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box i {
    margin-right: 15px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box {
    padding: 25px;
  }
  .faq-page .faq-2 .list ul li span.h6 {
    font-size: 24px;
  }
  .downloadBox {
    font-size: 16px;
  }
}
@media screen and (max-width: 1450px) {
  .faq-page .faq-2 .list ul li span.h6 {
    font-size: 20px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box .content span.h6{
    font-size: 18px;
  }
  .faq-page .faq-2 .list ul li {
    padding: 30px;
  }
  .technical-page {
    padding: 90px 0;
  }
  .downloadBox .downloadRight .bottom .search {
    font-size: 16px;
  }
  .technical-page .downloadRight .bottom .faq dl dd {
    padding: 15px 20px;
    border-radius: 10px;
  }
  .pdf-page .pdf-1 {
    padding: 60px 0;
  }
  .pdf-page .pdf-2 .slide {
    padding-bottom: 50px;
  }
  
  .downloadBox {
    font-size: 12px;
  }
  .downloadBox .top span {
    font-size: 1.3em;
  }
  .downloadBox .downloadLeft .top em {
    font-size: 1.5em;
  }
  /*.downloadBox .downloadRight .bottom ul li .flex .btn {
    font-size: 1.2em;
  }*/
    .quality-page .quality-2 .top .text h3{
        font-size: 34px;
    }
}
@media screen and (max-width: 1250px) {
  .pdf-page .pdf-2 .slide .list ul li {
    padding: 10px;
  }
  .pdf-page .pdf-2 .slide .list ul {
    margin: -10px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box {
    padding: 15px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box i {
    max-width: 40px;
  }
  .pdf-page .pdf-2 .slide span.h3 {
    margin-bottom: .6em;
    font-size: 22px;
  }
  .technical-page .downloadRight .bottom {
    padding: 20px;
  }
  .technical-page .downloadRight .bottom .faq dl dd span.h6 {
    font-size: 18px;
  }
  .faq-page .faq-2 .list ul li span.h6 {
    font-size: 18px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box .content span.h6,
  .faq-page .faq-2 .list ul li .text{
    font-size: 16px;
  }
  .downloadBox {
    font-size: 10px;
  }
  
  .downloadBox .downloadRight {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .downloadBox .downloadLeft {
    width: 100%;
  }
  .downloadBox {
    display: block;
  }
  /*.downloadBox .downloadRight .bottom ul li .flex .btn a img {
    max-width: 15px;
  }*/
    .quality-page .quality-1 ul li .box {
    padding: 50px 20px;
  }
  .quality-page .quality-3 {
    padding: 70px 0;
  }
}
@media screen and (max-width: 1000px) {
  .quality-page .quality-1 ul{
    flex-wrap: wrap;
  }
  .quality-page .quality-1 ul.grid-box.three li{
    width: 50%;
  }
  .quality-page .quality-1 {
    padding: 50px 0 60px;
  }
  .quality-page .quality-2 .top .text {
    width: 100%;
    padding-right: 0;
  }
  .quality-page .quality-2 .top .img {
    display: none;
  }
  .quality-page .quality-2 .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .quality-page .quality-2 .bottom .text {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .quality-page .quality-4 ul.grid-box .column .box .content {
    max-width: 260px;
    padding: 20px;
  }
    .contact-page .contact-2 .left {
    width: 100%;
  }
  .contact-page .contact-2 .right {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .faq-2 .list ul li {
    padding: 15px;
  }
  .faq-page .faq-2 .list ul li span.h6,{
    font-size: 16px;
  }
  .pdf-page .pdf-2 .slide .list ul li .box .content span.h6,
  .faq-page .faq-2 .list ul li .text {
    font-size: 14px;
  }
  .technical-page .downloadRight .bottom .faq dl dd span.h6 {
    font-size: 16px;
  }
  .technical-page {
    padding: 60px 0;
  }
  .pdf-page .pdf-1 .flexTitle form {
    width: 300px;
    height: 50px;
    font-size: 16px;
  }
  .pdf-page .pdf-2 .slide .list ul li {
    width: 100%;
  }
  
  .downloadBox .downloadRight .bottom ul li .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .downloadBox .downloadRight .bottom ul li .flex i.icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 25%;
  }
  .downloadBox .downloadRight .bottom ul li .flex .content {
    width: 75%;
  }
  .downloadBox .downloadRight .bottom ul li .flex .btn {
    width: 100%;
    margin-top: 20px;
  }
  .downloadBox .downloadRight .bottom ul li .flex .content .path {
    font-size: 13px;
  }
  .downloadBox .top img {
    max-width: 24px;
  }
  
  .quality-page .quality-1 ul li {
    width: 100% !important;
  }
  .quality-page .quality-3 .text {
    margin: -20px;
  }
  .quality-page .quality-3 .text .column {
    width: 100%;
    padding: 20px;
  }
  .quality-page .quality-3 h2,
  .quality-page .quality-4 h2 {
    font-size: 30px;
  }
  .quality-page .quality-2 .top .text h3 {
    font-size: 24px;
  }
  
  .quality-page .quality-4 ul li .box .column{
    width: 100%;
  }

  .quality-page .quality-4 ul li .box .column:nth-child(1) img{
    width: 100%;
  }
  .quality-page .quality-4 ul li .box .content{
    padding: 30px 0;
  }
  
  .contact-page .title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .contact-page .contact-2 .left .content ul li {
    width: 50%;
  }
  .contact-page .contact-2 .left .content ul li.add {
    width: 100%;
  }
  .contact-page {
    padding-top: 60px;
  }
  .contact-page .contact-2 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 500px) {
  .pdf-page .pdf-1 .flexTitle {
    display: block;
  }
  .pdf-page .pdf-1 .flexTitle form {
    width: 100%;
    margin-top: 20px;
  }
.quality-page .quality-3 .text .content,
  .quality-page .quality-1 ul li .box .text{
    line-height: 2;
  }
  
  .quality-page .quality-3 .text h4,
  .quality-page .quality-2 .top .text h5 {
    font-size: 20px;
    line-height: 2;
  }
  .quality-page .quality-4 p.text,
  .quality-page .quality-2 .bottom .text .content,
  .quality-page .quality-2 .top .text .content{
    line-height: 2;
  }
  .quality-page .quality-3 h2, 
  .quality-page .quality-4 h2 {
    font-size: 24px;
  }
  .contact-page .title {
    font-size: 24px;
  }
  .contact-page .contact-1 form textarea,
  .contact-page .contact-1 form p,
  .contact-page .contact-1 form input{
    font-size: 18px;
  }
  .contact-page .contact-2 .left{
    padding-right: 0;
  }
  .contact-page .contact-2 .left .content ul li,
  .contact-page .contact-1 form input {
    width: 100%;
  }
}

.case-page ul {
    margin: -15px
}

.case-page ul li {
    padding: 15px
}
.case-page ul li .title{
  display: block;
}
.case-page ul li .box{
  position: relative;
}
.case-page ul li .box .text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20% 35px 0;
    height: 100%;
    color: white;
    opacity: 0;
    z-index: -5;
    transition: all 0.5s;
}
.case-page ul li .box .text .con {
  line-height: 1.6;
  margin-top: 25px;
}
.case-page ul li:hover .box::before {
  opacity: 1;
  z-index: 10;
}
.case-page ul li:hover .box .text {
  opacity: 1;
  z-index: 10;
}
.case-page ul li .box img{
  transition: all 0.5s;
}

@media screen and (max-width: 1650px) {
  .case-page ul li .box .text h4{
    font-size: 24px;
  }
}

@media screen and (max-width: 1400px) {
  .case-page ul.grid-box li{
    width: 33.33333% !important;
  }
}
@media screen and (max-width: 1200px) {
  .case-page ul li .box .text .con {
    line-height: 1.4;
    margin-top: 25px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .case-page ul.grid-box li{
    width: 320px !important;
  }
  a.jinyu {
    display: none!important;
 }
  .seoIndustry.Auxil-industry {
    display: none!important;
 }
 h1.Auxil-h1.font-30.font-bold {
    font-size: 20px;
 }
}
@media screen and (max-width: 700px) {
  .case-page ul.grid-box li{
    width: 100% !important;
  }
  .case-page ul li .box .text .con {
    line-height: 1.6;
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .case-page ul li .box .text .con {
    line-height: 1.4;
    font-size: 16px;
  }
}


.case-page ul li .box .text .con{
  max-height: 250px;
  overflow-y: auto;
  padding-right: 20px;
}
.case-page ul li:hover .box img{
  filter: brightness(0.6);
}
@media screen and (max-width: 1600px) {
  .case-page ul li .box .text .con{
    max-height: 200px;
  }
}
@media screen and (max-width: 1400px) {
  .case-page ul li .box .text .con{
    max-height: 280px;
  }
}
@media screen and (max-width: 1200px) {
  .case-page ul li .box .text .con{
    max-height: 220px;
  }
}
@media screen and (max-width: 700px) {
  .case-page ul li .box .text .con{
    max-height: 400px;
  }
}
@media screen and (max-width: 700px) {
  .case-page ul li .box .text .con{
    max-height: 200px;
  }
}
#index-body .what-ets .content ul li .box .bg{
  transition: all 0.3s;
}
#index-body .what-ets .content ul li:hover .box .bg{
  filter: brightness(0.6);
}
#index-body .about .about-content .right .con h1 {
    display: inline;
}
.seoPublic .Auxil-about .box .right .text a {
    color: #666;
}
.seoPublic .seoIndustry .text a {
    color: #666;
}



.contact-page .contact-2 .left .content ul{
  margin: -20px;
}

.contact-page .contact-2 .left .content ul li{
  width: 50%;
  margin: 0;
  padding: 20px;
}
#footer .footer-t .footer-t-gird .t-list.contact h5{
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
}
#footer .footer-t .footer-t-gird .t-list.contact span:last-child{
  align-items: flex-start;
}
#footer .footer-t .footer-t-gird .t-list.contact .list{
  margin-bottom: 20px;
}
#footer .footer-t .footer-t-gird .t-list.contact .list:last-child{
  margin-bottom: 0;
}
#footer .footer-t .footer-t-gird .t-list.contact .list span{
  margin-bottom: 10px;
}
#footer .footer-t .footer-t-gird .t-list.contact .list span:last-child{
  margin-bottom: 0;
}