@font-face {
  font-family: 'Montserrat-Light';
  src: url(../fonts/Montserrat-Light.ttf) format('truetype'), url(../fonts/Montserrat-Light.eot) format('eot'), url(../fonts/Montserrat-Light.woff) format('woff'), url(../fonts/Montserrat-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-Regular';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-ExtraBold';
  src: url(../fonts/Montserrat-ExtraBold.ttf) format('truetype'), url(../fonts/Montserrat-ExtraBold.eot) format('eot'), url(../fonts/Montserrat-ExtraBold.woff) format('woff'), url(../fonts/Montserrat-ExtraBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-Bold';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url(../fonts/Montserrat-SemiBold.ttf) format('truetype'), url(../fonts/Montserrat-SemiBold.eot) format('eot'), url(../fonts/Montserrat-SemiBold.woff) format('woff'), url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-Medium';
  src: url(../fonts/Montserrat-Medium.ttf) format('truetype'), url(../fonts/Montserrat-Medium.eot) format('eot'), url(../fonts/Montserrat-Medium.woff) format('woff'), url(../fonts/Montserrat-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Regular';
  src: url(../fonts/Poppins-Regular.ttf) format('truetype'), url(../fonts/Poppins-Regular.eot) format('eot'), url(../fonts/Poppins-Regular.woff) format('woff'), url(../fonts/Poppins-Regular.woff2) format('woff2');
}
input::-webkit-input-placeholder {
  color: #616161;
}
textarea::-webkit-input-placeholder {
  color: #616161;
}
input::-moz-placeholder {
  color: #616161;
}
input:-moz-placeholder {
  color: #616161;
}
input:-ms-input-placeholder {
  color: #616161;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #ed1c24;
  --green: #00eaa9;
  font-family: 'Montserrat-Regular';
  --font: 'Montserrat-ExtraBold';
   --main-font: 'Montserrat-SemiBold';
  background-color: white;
  color: black;
  max-width: 1920px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1630px;
  margin: 0 auto;
  position: relative;
}
#header {
  z-index: 2000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: white;
}
#header.active {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  position: relative;
  height: 100px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu {
  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: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  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: 55px;
  font-size: 16px;
  color: black;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  height: 100%;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  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;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 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;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .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: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  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 {
  margin-left: 220px;
  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;
}
.language-box {
  margin-left: 30px;
}
.language-box .zhuyu {
  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;
}
.language-box .zhuyu span {
  font-size: 18px;
  font-family: 'Montserrat-Medium';
  margin: 0 8px;
}
.language-box .zhuyu i {
  font-size: 20px;
}
.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;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  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;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}

#banner {
  position: relative;
  margin-top: 100px;
  padding: 100px 0 70px;
}
#banner .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
}
#banner .banner-content ul li {
  color: white;
}
#banner .banner-content ul li .top .text.active{
  display: block;
}
#banner .banner-content ul li .top .text {
  margin-left: auto;
  width: 50%;
  line-height: 1.8;
  padding-left: 60px;
  display: none;
}
#banner .banner-content ul li .bottom {
  margin-top: 85px;
}
#banner .banner-content ul li .bottom h4 {
  font-family: 'Montserrat-ExtraBold';
  margin-bottom: 25px;
}
#banner .banner-content ul li .bottom .box {
  width: 53%;
}
#banner .banner-content ul li .bottom .box .text {
  line-height: 1.8;
}
#banner .banner-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#banner .banner-nav ul li {
  color: white;
  padding: 20px 10px;
  height: 300px;
  width: 90px;
  background-color: #1b1b1b;
  margin-right: 8px;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-nav ul li.active {
  width: 185px;
  background-color: var(--color);
}
#banner .banner-nav ul li:last-child {
  margin-right: 0;
}
#banner .banner-nav ul li h5 {
  font-size: 24px;
  position: absolute;
  left: 45px;
  bottom: 15px;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transform-origin: left 100%;
  -moz-transform-origin: left 100%;
  -ms-transform-origin: left 100%;
  transform-origin: left 100%;
  white-space: nowrap;
}
#banner .banner-nav ul li span {
  font-size: 30px;
  display: block;
  text-align: right;
  line-height: 1;
}




.more,
.Cmore {
  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;
  width: 155px;
  height: 65px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color);
}
.more:hover,
.Cmore:hover{
  background-color: black;
}
.more:hover span,
.Cmore:hover span{
  color: #fff;
}
.more span,
.Cmore span{
  display: block;
  position: relative;
  z-index: 5;
  font-size: 16px;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: 'Montserrat-Medium';
}
.h-title h3 {
  font-size: 36px;
  font-family: var(--font);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.h-title h3::before {
  content: '';
  display: block;
  width: 70px;
  height: 8px;
  background-color: var(--color);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -15px;
}
.h-title.h-left h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.h-title.h-left h3::before {
  width: 8px;
  height: 70px;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}
@-webkit-keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes img_scale {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes img_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes img_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes img_rotate {
  0% {
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes img_rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#index-body .init-1 {
  padding: 110px 0;
}
#index-body .init-1 ul {
  margin: 70px -60px 0;
}
#index-body .init-1 ul li {
  padding: 0 60px;
}
#index-body .init-1 ul li .box .img-box {
  width: 100%;
  display: block;
  border-radius: 25px;
}
#index-body .init-1 ul li .box .text {
  margin-top: 50px;
}
#index-body .init-1 ul li .box .text h4 {
  font-family: 'Montserrat-Bold';
  font-size: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .init-1 ul li .box .text h4:hover {
  color: var(--color);
}
#index-body .init-1 ul li .box .text .line {
  width: 230px;
  height: 5px;
  background-color: var(--color);
  margin: 15px 0;
}
#index-body .init-1 ul li .box .text p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  margin-bottom: 10px;
}
#index-body .init-1 ul li .box .text a.btn {
  font-size: 16px;
  color: var(--color);
  font-family: 'Montserrat-Bold';
}
#index-body .init-2 .h-title {
  margin-bottom: 85px;
}
#index-body .init-3 {
  position: relative;
  padding: 115px 0;
  background-color: #262626;
  margin-top: 110px;
}
#index-body .init-3 .content {
  padding: 0 70px;
}
#index-body .init-3 .content .top {
  color: white;
}
#index-body .init-3 .content .top .h-title h3 {
  color: white;
}
#index-body .init-3 .content .top .h-title h3::before {
  background-color: white;
}
#index-body .init-3 .content .bottom {
  margin-top: 130px;
}
#index-body .init-3 .content .bottom ul {
  margin: 0 -38px;
}
#index-body .init-3 .content .bottom ul li {
  color: white;
  padding: 0 38px;
}
#index-body .init-3 .content .bottom ul li .img {
  display: block;
}
#index-body .init-4 {
  padding: 130px 0 110px;
}
#index-body .init-4 .container {
  margin-top: 80px;
}
#index-body .init-4 .container ul {
  margin: -10px;
}
#index-body .init-4 .container ul li {
  padding: 10px;
}
#index-body .init-4 .container ul li .img {
  border: 1px solid rgba(0, 0, 0, 0.2);
  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;
  height: 95px;
  width: 100%;
}
#index-body .init-4 .container ul .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;
  margin-top: 50px;
}
#index-body .init-4 .container ul .slick-dots li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #dadada;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0 10px;
  padding: 0;
}
#index-body .init-4 .container ul .slick-dots li.slick-active {
  background-color: var(--color);
}
#index-body .init-4 .container ul .slick-dots li button {
  display: none;
}
#index-body .news {
  position: relative;
  padding: 120px 0 130px;
  background: url('../images/news-bg.jpg') no-repeat;
  background-size: cover;
}
#index-body .news .news-content {
  max-width: 1370px;
}
#index-body .news .news-content ul {
  margin: 70px -20px 0;
}
#index-body .news .news-content ul li {
  padding: 0 20px;
  position: relative;
}
#index-body .news .news-content ul li .text {
  background-color: white;
  padding: 55px 25px;
}
#index-body .news .news-content ul li .text:hover .bot {
  border-color: var(--color);
}
#index-body .news .news-content ul li .text h4 {
  font-family: 'Montserrat-Bold';
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .news .news-content ul li .text p {
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.6;
  margin: 15px 0 40px;
}
#index-body .news .news-content ul li .text .news_category {
  width: 155px;
  height: 60px;
  background-color: var(--color);
  line-height: 60px;
  text-align: center;
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  color: white;
}
#index-body .news .news-content ul li .text .date {
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  margin-top: 45px;
}
#index-body .news .news-content ul li .text .date span {
  opacity: 0.6;
}
#index-body .news .news-content ul li .text .date span:first-child::after {
  content: '|';
  margin-left: 10px;
}
#footer {
  position: relative;
  background-color: #1b1b1b;
}
#footer .footer-t {
  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;
  position: relative;
}
#footer .footer-t .footer-t-gird {
  width: 100%;
  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;
  padding: 85px 0 55px;
}
#footer .footer-t .footer-t-gird .qcode.t-list {
  width: 360px;
}
#footer .footer-t .footer-t-gird .qcode.t-list form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
#footer .footer-t .footer-t-gird .qcode.t-list form input[type='text'] {
  width: 49%;
  height: 60px;
  border: none;
  background-color: #5a5a5a;
  color: white;
  font-size: 17px;
  padding: 0 20px;
  margin-bottom: 15px;
}
#footer .footer-t .footer-t-gird .qcode.t-list form input[name='content'],
#footer .footer-t .footer-t-gird .qcode.t-list form input[name='mail'] {
  width: 100%;
}
#footer .footer-t .footer-t-gird .qcode.t-list form textarea {
  width: 100%;
  height: 90px;
  padding: 10px 20px;
  background-color: #5a5a5a;
  color: white;
  font-size: 17px;
  border: none;
  margin-bottom: 15px;
}
#footer .footer-t .footer-t-gird .qcode.t-list form input::-webkit-input-placeholder,
#footer .footer-t .footer-t-gird .qcode.t-list form textarea::-webkit-input-placeholder {
  color: white;
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit {
  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;
  margin-left: auto;
}

#footer .footer-t .footer-t-gird .qcode.t-list form .submit::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  margin-left: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit input[type='submit'] {
  font-size: 20px;
  font-family: 'Montserrat-Medium';
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit:hover input[type='submit']{
  color:var(--color);
}
#footer .footer-t .footer-t-gird .qcode.t-list form .submit:hover::after {
  background-color: var(--color);
}
#footer .footer-t .footer-t-gird .qcode.t-list .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a {
  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;
  width: 40px;
  height: 40px;
  background-color: white;
  margin-right: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a i {
  color: #333;
  font-size: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a:hover {
  background-color: var(--color);
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a:hover i {
  color: white;
}
#footer .footer-t .footer-t-gird .qcode.t-list .share a:last-child {
  margin-right: 0;
}
#footer .footer-t .footer-t-gird .t-list.contact {
  max-width: 365px;
}
#footer .footer-t .footer-t-gird .t-list.contact ul li {
  margin-bottom: 40px;
}
#footer .footer-t .footer-t-gird .t-list.contact ul li span {
  display: block;
  line-height: 1.6;
}
#footer .footer-t .footer-t-gird .t-list.contact ul li span:first-child {
  margin-bottom: 5px;
}
#footer .footer-t .footer-t-gird .t-list.link span {
  margin-bottom: 20px;
}
#footer .footer-t .footer-t-gird .t-list.link span a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .footer-t-gird .t-list.link span:hover a {
  color: var(--color);
}
#footer .footer-t .footer-t-gird .t-list {
  color: #fff;
  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;
}
#footer .footer-t .footer-t-gird .t-list .qc-img img,
#footer .footer-t .footer-t-gird .t-list .qc-img canvas {
  width: 40px;
  height: auto;
  border: 2px solid #fff;
}
#footer .footer-t .footer-t-gird .t-list h4 {
  font-size: 24px;
  font-family: Montserrat-Bold;
  margin-bottom: 40px;
  color: white;
  text-transform: uppercase;
}
#footer .footer-t .footer-t-gird .t-list span {
  font-size: 18px;
  color: white;
  line-height: 1.4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: 'Poppins-Rugular';
  opacity: 0.8;
}
#footer .footer-b .footer-b-box {
  height: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-b .footer-b-box span {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Poppins-Regular';
}
#footer .footer-b .footer-b-box span:first-child a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-b .footer-b-box span:first-child a:hover {
  color: white;
}
#footer .footer-b .footer-b-box img {
  width: 280px;
  height: auto;
  padding-top: 5px;
  margin-left: 5px;
  opacity: 0.4;
}
@media (max-width: 1650px) {
  .ui.container {
    width: 1400px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 45px;
  }
  #header .nav .ui.menu .right {
    margin-left: 50px;
  }
  
  #banner .banner-content ul li .bottom {
    margin-top: 50px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  .about-motion .about-con .main-tit-wrap{
    padding-left: 60px;
  }
  .h-title h3 {
    font-size: 30px;
  }
  #index-body .init-3 .content .bottom {
    margin-top: 65px;
  }
  #index-body .init-1 ul {
    margin: 60px -20px 0;
  }
  #index-body .init-1 ul li {
    padding: 0 20px;
  }
  #index-body .init-3 .content {
    padding: 0 30px;
  }
  #index-body .init-3 .content .top p {
    width: 100%;
    margin-top: 30px;
  }
    #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  
  #footer .footer-t .footer-t-gird .t-list span {
    font-size: 16px;
  }
  #footer .footer-t .footer-t-gird {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-t .footer-t-gird .t-list {
    width: 50%;
    max-width: 50%;
    margin: 20px 0;
  }
  #footer .footer-t .footer-t-gird .qcode.t-list {
    width: 100%;
  }

  #header .nav .ui.menu .right {
    margin-left: 20px;
  }
  #header .nav .logo {
    max-width: 120px;
  }
   #banner .banner-content ul li .top .text {
    margin-left: 0;
    width: 100%;
    line-height: 1.8;
    padding-left: 0;
  }
  #banner .banner-content ul li .bottom {
    margin: 50px 0;
  }
  #banner .banner-content ul li .bottom .box {
    width: 100%;
  }
  #index-body .init-3 .content .bottom ul {
    margin: 0 -10px;
  }
  #index-body .init-3 .content .bottom ul li {
    padding: 0 10px;
  }
  #index-body .init-3 .content .top p br {
    display: none;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block !important;
  }
  .ui.container {
    width: 700px;
  }
   #index-body .init-4 {
    padding: 75px 0;
  }
  #index-body .init-3 {
    margin-top: 80px;
  }
  #footer .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-b .footer-b-box {
    height: auto;
    padding: 15px 0;
  }
  #footer .footer-b .footer-b-box span {
    text-align: center;
  }
  #index-body .news{
    padding: 85px 0;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner {
    padding: 80px 0;
  }
  .h-title h3 {
    font-size: 24px;
  }
  #index-body .news {
    padding: 80px 0;
  }
  #footer .footer-t .footer-t-gird .t-list {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
   #banner .banner-nav ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #banner .banner-nav ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    width: 100%;
  }
  #banner .banner-nav ul li {
    padding: 20px 10px;
    height: 300px;
    width: 49%;
    margin: 6px 0;
  }
  #banner .banner-nav ul li.active {
    width: 49%;
  }
  #footer .footer-t .footer-t-gird {
    padding: 55px 0;
  }
}






















/*------------------------------inner-page----------------------------------*/


.inner-banner {
  height: 600px;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 1;
  margin-top: 100px;
}
.inner-banner .box {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
}
.inner-banner .box .mbx {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 5px;
}
.inner-banner .box h2 {
  font-size: 36px;
  line-height: 1.6;
  font-family: var(--main-font);
}
.inner-banner .box h2 em {
  color: var(--color);
}
.inner-banner::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}


.mbx {
  padding: 12px 0;
  background: #f2f2f2;
  font-size: 16px;
  line-height: 28px;
}

.inner-page span.h2 {
  font-size: 36px;
  color: #000;
  font-family: var(--font);
  line-height: 1.5;
  display: block;
}





.inner-page h3.title {
  font-size: 40px;
  line-height: 1.2;
  font-family: var(--main-font);
}
.inner-page h3.title em {
  color: var(--color);
}
.inner-page .sidebox .sideleft {
  width: 22%;
  position: sticky;
  top: 160px;
}
.inner-page .sidebox .sideleft .widget {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.inner-page .sidebox .sideleft .widget form {
  position: relative;
}
.inner-page .sidebox .sideleft .widget form input {
  width: 100%;
  padding: 10px;
  padding-right: 60px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  height: 40px;
  font-size: 16px;
  line-height: 2;
}
.inner-page .sidebox .sideleft .widget form button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color);
  color: #fff;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  height: 40px;
}
.inner-page .sidebox .sideleft .widget h6 {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: var(--main-font);
  color: #000;
}
.inner-page .sidebox .sideleft .widget ul {
  margin-bottom: 0;
  padding: 0;
}
.inner-page .sidebox .sideleft .widget ul li {
  margin-bottom: 15px;
  color: #555;
  font-size: 18px;
  line-height: 1.5;
  padding-left: 7px;
  position: relative;
  overflow: hidden;
}
.inner-page .sidebox .sideleft .widget ul li a {
  padding-left: 10px;
  line-height: 28px;
}
.inner-page .sidebox .sideleft .widget ul li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebox .sideleft .widget ul li i {
  font-size: 16px;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 4px;
}
.inner-page .sidebox .sideleft .widget ul li:hover,
.inner-page .sidebox .sideleft .widget ul li.active {
  color: var(--color);
}
.inner-page .sidebox .sideleft .widget ul li ul {
  display: none;
  margin-top: 15px;
}
.inner-page .sidebox .sideleft .widget ul li ul li a {
  padding-left: 0;
  color: #999;
}
.inner-page .sidebox .sideleft .widget ul li ul li a.active {
  color: var(--color);
}
.inner-page .sidebox .sideleft .widget .recent li {
  display: block;
}
.inner-page .sidebox .sideleft .widget .recent li .thum {
  width: 100px;
  overflow: hidden;
  float: left;
}
.inner-page .sidebox .sideleft .widget .recent li a.title {
  display: block;
  margin-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 32px;
}
.inner-page .sidebox .sideleft .widget .form1 {
  text-align: center;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .widget .form1 textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  margin-bottom: 15px;
  height: 40px;
  font-size: 16px;
}
.inner-page .sidebox .sideleft .widget .form1 textarea {
  height: 70px;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
  background: var(--color);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
  background: #000;
}
.inner-page .sidebox .sideright {
  width: 78%;
  padding: 0 10px 0px 50px;
}

@media screen and (max-width: 1000px) {
  .inner-page .sidebox .sideright{
    width: 100%;
    padding: 0;
  }
  .inner-page .sidebox .sideleft{
    display: none;
  }
}








.about2-page .about-1 {
  padding: 80px 0 100px;
  /*background: url(../images/about-1.jpg) bottom right no-repeat;*/
  background-size: 45% auto;
}
.about2-page .about-1 .text {
  width: 100%;
}
.about2-page .about-1 .text span.h3 {
  font-size: 36px;
}
.about2-page .about-1 .text span.h3 em {
  color: var(--color);
}
.about2-page .about-1 .text span.h2 {
  font-size: 48px;
  font-weight: 700;
  max-width: 24em;
}
.about2-page .about-1 .text .con {
  font-size: 18px;
  line-height: 32px;
  margin-top: 2em;
}
.about2-page .about-1 .list {
  margin-top: 45px;
  max-width: 100%;
  margin-right: auto;
  display: block;
}
.about2-page .about-1 .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about2-page .about-1 .list ul li {
  width: auto;
  text-align: center;
}
.about2-page .about-1 .list ul li span {
  font-size: 50px;
  font-family: var(--main-font);
  color: var(--color);
  line-height: 1;
  display: block;
}
.about2-page .about-1 .list ul li span i {
  color: var(--color);
  margin-left: .1em;
}
.about2-page .about-1 .list ul li p {
  font-size: 16px;
  opacity: .8;
  display: block;
}
.about2-page .about-2 {
  text-align: center;
  padding: 260px 0;
}
.about2-page .about-2 .play {
  display: inline-block;
  cursor: pointer;
  cursor: hand;
}
.about2-page .about-3 {
  padding: 90px 0;
}
.about2-page .about-3 .left {
  width: 42%;
  vertical-align: middle;
}
.about2-page .about-3 .right {
  width: 58%;
  vertical-align: middle;
  padding: 0 8%;
}
.about2-page .about-3 .right span.h2 {
  display: flex;
  align-items: center;
  margin-bottom: 4em;
}
.about2-page .about-3 .right span.h2:before {
  content: '';
  width: 1.5em;
  height: 2px;
  background-color: #181818;
  margin-right: .5em;
}
.about2-page .about-3 .right .text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}
.about2-page .about-4 {
  padding: 80px 0 80px;
  background-color: var(--color);
  color: white;
}
.about2-page .about-4 .left {
  width: 60%;
  vertical-align: bottom;
}
.about2-page .about-4 .left span.h2 {
  color: inherit;
  text-transform: uppercase;
}
.about2-page .about-4 .right {
  width: 40%;
  text-align: right;
  vertical-align: bottom;
}
.about2-page .about-4 .right a.more {
  font-size: 18px;
  font-family: var(--main-font);
  color: white;
  line-height: 3em;
  height: 3em;
  margin-bottom: 10px;
  padding: 0 3em;
  border-radius: 1.5em;
  border: 1px solid white;
  transition: .5s;
  display: inline-block;
  width:auto;
}
.about2-page .about-4 .right a.more:hover {
  background-color: black;
}
.about2-page .about-5 {
  padding: 80px 0 120px;
}
.about2-page .about-5 .left {
  width: 40%;
  padding-right: 3%;
  vertical-align: middle;
}
.about2-page .about-5 .right {
  width: 60%;
  vertical-align: middle;
}
.about2-page .about-5 .left span.h2 {
  text-transform: uppercase;
}
.about2-page .about-5 .left .text {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 2em;
}
.about2-page .about-5 .right ul {
  margin: -25px;
}
.about2-page .about-5 .right ul li {
  padding: 25px;
}
.about2-page .about-5 .right ul li img {
  width: 100%;
}
.about2-page .about-5 .right ul li p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: .5em;
}
.about2-page .about-6 {
  padding: 90px 0 70px;
  background-color: #efefef;
}
.about2-page .about-6 span.h2 {
  margin-bottom: 1em;
}
.about2-page .about-6 .box .left {
  width: 76.5%;
  padding-right: 20px;
}
.about2-page .about-6 .box .right {
  width: 23.5%;
}
.about2-page .about-6 .box img {
  width: 100%;
}
.about2-page .about-6 .box .right ul {
  margin: -10px;
}
.about2-page .about-6 .box .right ul li {
  padding: 10px;
  cursor: pointer;
}

.news-page.newsBox {
  padding: 70px 0 130px;
  /*    background: #efeeee;*/
}
.news-page.newsBox span.h2 {
  font-size: 48px;
}
.news-page.newsBox .list {
  margin-top: 30px;
}
.news-page.newsBox .list ul {
  margin: -15px;
}
.news-page.newsBox .list ul li {
  padding: 15px;
}
.news-page.newsBox .list ul li time {
  display: block;
  font-size: 16px;
  color: #d12138;
  line-height: 1.2;
  margin-top: 15px;
}
.news-page.newsBox .list ul li .h6 {
  font-size: 24px;
  font-family: var(--main-font);
  color: #191919;
  margin: .6em 0 0.7em;
  line-height: 1.5;
  transition: .5s;
}
.news-page.newsBox .list ul li .h6:hover {
  color: #da1c28;
}
.news-page.newsBox .list ul li p {
  font-size: 16px;
  color: #828181;
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  #resources_nav {
    display: none;
  }
  .about-page .about-1 .text a.link {
    font-size: 14px;
  }
  .resources_sidebar {
    margin: 0;
  }
  .resources_sidebar .resources_left {
    width: 100%;
    padding: 0;
  }
  .resources_sidebar .resources_right {
    display: none;
  }
  .resources_more {
    display: none;
  }
  .about2-page .about-1 .text,
  .about2-page .about-3 .right,
  .about2-page .about-4 .right,
  .about2-page .about-4 .left,
  .about2-page .about-5 .left,
  .about2-page .about-5 .right,
  .about2-page .about-6 .box .left,
  .technology-page .technology-1 .left,
  .technology-page .technology-1 .right {
    width: 100%;
    padding: 0;
  }
  .about2-page .about-1 .img,
  .about2-page .about-3 .left,
  .about2-page .about-6 .box .right {
    display: none;
  }
  .about2-page .about-1 .text span.h2,
  .inner-page span.h2,
  .application-page .application-2 .box span.h2 {
    font-size: 24px;
  }
  .about2-page .about-1 .text .con,
  .about2-page .about-1 .list ul li p,
  .about2-page .about-5 .left .text {
    font-size: 14px;
  }
  .about2-page .about-1 .list ul li span {
    font-size: 32px;
  }
  .about2-page .about-2 {
    padding: 120px 0;
  }
  .about2-page .about-2 .play {
    max-width: 70px;
  }
  .about2-page .about-3 .right span.h2 {
    margin-bottom: 2em;
  }
  .about2-page .about-4 .left {
    margin-bottom: 20px;
  }
  .about2-page .about-4,
  .about2-page .about-3,
  .about2-page .about-1,
  .about2-page .about-5,
  .about2-page .about-6,
  .technology-page .technology-2,
  .product-page.application,
  .application-page .application-2 .box {
    padding: 50px 0;
  }
  .about2-page .about-1 {
    background-image: unset;
  }
  .about2-page .about-1 .list {
    max-width: none;
  }

  .about2-page .about-5 .right {
    margin-top: 40px;
  }

  .about2-page .about-5 .right ul {
    margin: -15px;
  }

  .about2-page .about-5 .right ul li {
    padding: 15px;
  }
  
  .technology-page .technology-1 .right {
    margin-top: 20px;
  }
  .application-page .application-1,
  .application-page .application-2:after {
    display: none;
  }
  .product-page .sideright .list ul li .box .text h4 {
    font-size: 16px;
  }
  .product-page .sideright .list ul li .box .text p {
    font-size: 14px;
  }
  .news-page.newsBox .list ul li {
    width: 50%;
  }
  .news-page.newsBox .list ul li .h6 {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  .video_content h3 {
    font-size: 20px;
  }
  .news-page.newsBox .list ul li {
    width: 100%;
  }
  .news-page .news-1 .right {
    padding-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  .news-page .news-1 .left {
    width: 100%;
  }
  .news-page .news-1 .right span.h6 {
    font-size: 24px;
  }
  .news-page.newsBox span.h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .product_catalogue .img {
    width: 100%!important;
  }
  .product_catalogue .mml-text {
    width: 100%!important;
    padding: 0!important;
    margin-top: 30px;
  }
  .about2-page .about-1 .list ul li {
    width: 50%;
    padding: 5px;
  }
  .about2-page .about-1 .text span.h2,
  .inner-page span.h2 {
    font-size: 20px;
  }
}






.about-page .init-5 {
    padding: 110px 0 150px;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    color: #fff
}

.about-page .init-5 .container .sub_img {
    position: absolute;
    top: -70px;
    left: 0;
    width: 910px
}

.about-page .init-5 .container .tips {
    font-weight: 500;
    position: relative;
    z-index: 2
}

.about-page .init-5 .container .s_page {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2
}

.about-page .init-5 .container .s_page .btn {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 30px;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    background: rgba(0,0,0,0);
    transition: all .5s
}

.about-page .init-5 .container .s_page .btn.slick-disabled {
    opacity: .4
}

.about-page .init-5 .container .s_page .btn i {
    position: relative;
    z-index: 2
}

.about-page .init-5 .container .s_page .btn:hover {
    color: #245e3e
}

.about-page .init-5 .container .s_page .prev i {
    margin-left: -4px
}

.about-page .init-5 .container .s_page .next i {
    margin-left: 4px
}

.about-page .init-5 .container .s_page .next {
    margin-left: 10px
}

.about-page .init-5 .container .list_cont {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-top: 80px
}

.about-page .init-5 .container .list_cont .slick li .box {
    position: relative;
    padding: 0 40px
}

.about-page .init-5 .container .list_cont .slick li .box .year {
    font-weight: 500
}

.about-page .init-5 .container .list_cont .slick li .box .img {
    position: absolute;
    height: 100%;
    top: 100px;
    left: 0;
    height: 310px
}

.about-page .init-5 .container .list_cont .slick li .box .cont {
    position: relative
}

.about-page .init-5 .container .list_cont .slick li .box .cont .title {
    font-weight: 500;
    margin-top: 10px
}

.about-page .init-5 .container .list_cont .slick li .box .cont .des {
    margin-top: 40px;
    opacity: 0;
    padding-right: 2px;
    overflow-y: auto;
    height: 255px
}

.about-page .init-5 .container .list_cont .slick li .box:hover .cont .des {
    opacity: 1
}

@media screen and (max-width: 1000px) {
 
 .about-page .init-5 {
        text-align: center
    }

    .about-page .init-5 .container .s_page {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px auto 0
    }

    .about-page .init-5 .container .sub_img {
        display: none
    }

    .about-page .init-5 .container .list_cont .slick li .box {
        padding: 0 10px
    }

    .about-page .init-5 .container .list_cont .slick li .box .cont {
        height: auto
    }

    .about-page .init-5 .container .list_cont .slick li .box .cont .des {
        opacity: 1
    }

    .about-page .init-5 .container .list_cont .slick li .box .img {
        display: none
    }
}
@media screen and (max-width: 500px) {

    .about-page .init-5 {
        padding: 40px 0
    }

    .about-page .init-5 .container .list_cont {
        margin-top: 20px;
        padding: 0
    }
  
}



.customer-page {
  padding-top: 100px;
}
.customer-page .customer-1 .list ul {
  margin: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.customer-page .customer-1 .list ul li {
  padding: 20px;
}
.customer-page .customer-1 .list .mml-text {
  height: 100%;
  padding: 40px 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.customer-page .customer-1 .list i {
  display: block;
  height: 70px;
}
.customer-page .customer-1 .list p {
  line-height: 2;
}
.customer-page .customer-2 {
  padding: 100px 0;
}
.customer-page .customer-2 .box {
  margin: -15px;
}
.customer-page .customer-2 .box .left {
  padding: 15px;
}
.customer-page .customer-2 .box .right {
  padding: 15px;
}
.customer-page .customer-2 .tabs {
  border-bottom: 1px solid #f2f2f2;
}
.customer-page .customer-2 .tabs ul {
  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;
}
.customer-page .customer-2 .tabs ul li {
  padding: 15px 0;
  position: relative;
  width: auto;
}
.customer-page .customer-2 .tabs ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 3px;
  background-color: #da1c28;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.customer-page .customer-2 .tabs ul li.active::after {
  opacity: 1;
}
.customer-page .customer-2 .tabs ul li a {
  /*font-style: italic;*/
}
.customer-page .customer-2 .content .text {
  /*color: #a0a0a0;*/
}
.customer-page .customer-3 {
  background-color: #f4f4f4;
  padding: 80px 0 0 0;
      /*height: 1190px;*/
}
.customer-page .customer-3 hr {
  margin: 50px 0;
  border: none;
  border-bottom: 1px solid #dbdbdb;
}
.customer-page .customer-3 .list .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #da1c28;
}
.customer-page .customer-3 .list .slick-arrow.slick-prev {
  left: -40px;
}
.customer-page .customer-3 .list .slick-arrow.slick-next {
  right: -40px;
}
.customer-page .customer-3 .list ul {
  margin: -40px;
}
.customer-page .customer-3 .list ul li {
  padding: 40px;
}
.customer-page .customer-3 .list img {
  display: inline-block;
}
.customer-page .customer-4 {
  padding: 100px 0;
}
.customer-page .customer-4 .list ul {
  margin: -15px;
}
.customer-page .customer-4 .list ul li {
  padding: 15px;
}
@media screen and (max-width: 1200px) {
  .customer-page .customer-3 .list ul {
    margin: -15px;
  }
  .customer-page .customer-3 .list ul li {
    padding: 15px;
  }
  .customer-page .customer-3 .list .slick-arrow.slick-prev {
    left: 0;
  }
  .customer-page .customer-3 .list .slick-arrow.slick-next {
    right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .customer-page .customer-1 .list ul {
    display: block;
    margin: -10px;
  }
  .customer-page .customer-1 .list ul li {
    padding: 10px;
  }
  .customer-page .customer-1 .list .mml-text {
    padding: 30px 15px;
  }
  .customer-page .customer-2 .box .left {
    width: 100%;
  }
  .customer-page .customer-2 .box .right {
    width: 100%;
    text-align: center;
  }
  .customer-page {
    padding-top: 60px;
  }
  .customer-page .customer-2 {
    padding: 60px 0;
  }
  .customer-page .customer-3 {
    padding: 60px 0;
  }
  .customer-page .customer-4 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 700px) {
  .customer-page .customer-2 .tabs ul {
    display: block;
  }
  .customer-page .customer-2 .tabs ul li {
    margin-right: 30px;
  }
}











.product-page {
  background: #fcfcfc;
}
.product-page .sideright .top {
  width: 100%;
  /*width: 45%;*/
}
.product-page .sideright .top h3,
.product-page .sideright .top h1 {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: .5em;
  font-family: var(--main-font);
}
.product-page .sideright .top h3 em {
  color: var(--color);
  font-family: var(--main-font);
}
.product-page .sideright .top .desc {
  font-size: 14px;
  line-height: 2;
  padding: 1em 0;
}
.product-page .sideright .top .box {
  display: flex;
  flex-wrap: wrap;
}
.product-page .sideright .top .img {
  width: 43%;
}
.product-page .sideright .top .img .img-box {
  min-height: 400px;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.product-page .sideright .top .content {
  width: 57%;
  padding-left: 2%;
}
.product-page .sideright .list {
  margin-top: 40px;
}
.product-page .sideright .list ul {
  margin: 0 -48px -38.4px 0;
}
.product-page .sideright .list ul li {
  padding: 0 48px 38.4px 0;
}
.product-page .sideright .list ul li .box {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
  display: block;
}
.product-page .sideright .list ul li .box i {
  position: absolute;
  z-index: 1;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  width: 0;
  height: 0;
}
.product-page .sideright .list ul li .box i.ie1 {
  width: 2px;
  top: 0;
  left: 0;
}
.product-page .sideright .list ul li .box i.ie2 {
  width: 2px;
  bottom: 0;
  right: 0;
}
.product-page .sideright .list ul li .box i.ie3 {
  height: 2px;
  top: 0;
  right: 0;
}
.product-page .sideright .list ul li .box i.ie4 {
  height: 2px;
  bottom: 0;
  left: 0;
}
.product-page .sideright .list ul li .box .img {
  width: 100%;
  padding: 10% 3%;
}
.product-page .sideright .list ul li .box .text {
  padding: 23.2px 20.8px 20.8px;
}
.product-page .sideright .list ul li .box .text span {
  color: #0047af;
  font-family: var(--main-font);
}
.product-page .sideright .list ul li .box .text h4 {
  font-size: 18px;
  line-height: 1.8;
  font-family: var(--main-font);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.product-page .sideright .list ul li .box .text p {
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 6px;
}
.product-page .sideright .list ul li .box:hover i.ie1 {
  height: 100%;
  bottom: 0;
  top: auto;
}
.product-page .sideright .list ul li .box:hover i.ie2 {
  height: 100%;
  top: 0;
}
.product-page .sideright .list ul li .box:hover i.ie3 {
  width: 100%;
  left: 0;
}
.product-page .sideright .list ul li .box:hover i.ie4 {
  width: 100%;
  right: 0;
  left: auto;
}
.product-page #index-body {
  background: #fff;
}
@media screen and (max-width: 1600px) {
  .product-page .sideright .top .content {
    width: 100%;
    padding-left: 0;
  }
  .product-page .sideright .top .img {
    width: 100%;
  }
  .product-page .sideright .top .img .img-box {
    background-position: center bottom;
  }
}
@media screen and (max-width: 1366px) {
  .product-page .sideright .list ul li {
    width: 50%;
  }
  .product-page .sideright .top .content {
    width: 100%;
    padding-left: 0;
  }
  .product-page .sideright .top .img {
    width: 100%;
  }
  .product-page .sideright .top .img .img-box {
    min-height: 280px;
  }
}

@media screen and (max-width: 700px) {
  .product-page .sideright .top {
    width: 100%;
    /*display: none!important;*/
  }
  .product-page .sideright .top h1.Auxil-h1 {
    font-size: 16px;
  }
  .product-page .sideright .top .desc {
    font-size: 14px;
    line-height: 2;
  }
  .product-page .sideright .list ul li {
    width: 100%;
  }
  .product-page .sideright .top .img .img-box {
    min-height: 220px;
  }
}
.prodet-page {
  background: #fff;
  padding: 100px 0;
}
.prodet-page .product-box .prodet-1 .left {
  width: 50%;
}
.prodet-page .product-box .prodet-1 .left .swiper {
  overflow: hidden;
  margin-top: 20px;
  padding: 5px;
}
.prodet-page .product-box .prodet-1 .left .swiper-slide {
  border: #ccc solid 1px;
}
.prodet-page .product-box .prodet-1 .left .swiper-slide img {
  width: 100%;
}
.prodet-page .product-box .prodet-1 .left a {
  display: block;
  border: 1px solid #eee;
}
.prodet-page .product-box .prodet-1 .left a img {
  width: 100%;
}
.prodet-page .product-box .prodet-1 .left .img {
  border: 1px solid #eee;
}
.prodet-page .product-box .prodet-1 .left ul li i,
.prodet-page .product-box .prodet-1 .left ul li span {
  display: none !important;
}
.prodet-1 .left .small ul {
  margin-right: -9px;
}
.prodet-1 .left .small ul .slick-track{
  margin-left: 0;
}
.prodet-1 .left .small ul li {
  padding-right: 10px;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-indent: -9999em;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  background-size: 8px;
  background-position: center center;
  background-repeat: no-repeat;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-prev {
  background-image: url("../images/banner-btn-l.png");
  left: 10px;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-next {
  background-image: url("../images/banner-btn-r.png");
  right: 10px;
}
.prodet-page .product-box .prodet-1 .right {
  padding-left: 50px;
  width: 50%;
}
.prodet-page .product-box .prodet-1 .right .title {
  font-size: 28px;
  line-height: 1.6;
  font-family: var(--main-font);
}
.prodet-page .product-box .prodet-1 .right h3.title {
  font-size: 24px;
}
.prodet-page .product-box .prodet-1 .right .text {
  margin: 24px 0;
  font-size: 16px;
  line-height: 30px;
  max-height: 25em;
  overflow: auto;
}
.prodet-page .product-box .prodet-1 .right .share {
  padding: 10px 0;
}
.prodet-page .product-box .prodet-1 .right .share h4 {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 2;
}
.prodet-page .product-box .prodet-1 .right .share ul {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .product-box .prodet-1 .right .share ul li {
  width: auto;
  color: #666;
  margin: 5px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .product-box .prodet-1 .right .share ul li a i{
  font-size: 14px;
}
.prodet-page .product-box .prodet-1 .right .share ul li:hover {
  color: var(--color);
}
.prodet-page .product-box .prodet-1 .right a.tel {
  font-size: 18px;
  color: var(--color);
  display: block;
}
.prodet-page .product-box .prodet-1 .right a.contact {
  display: inline-block;
  vertical-align: middle;
  line-height: 50px;
  height: 50px;
  background: var(--color);
  color: white;
  padding: 0 35px;
  font-size: 20px;
  margin-top: 10px;
}
.prodet-page .product-box .prodet-2 {
  padding: 30px 0 0 0;
  line-height: 1.8;
}
.prodet-page .product-box .prodet-2 .options ul {
  background: #fff;
}
.prodet-page .product-box .prodet-2 .options ul li {
  width: auto;
  line-height: 40px;
  height: 40px;
      background: #f1f1f1;
  padding: 0 20px;
  color: #3d474a;
  border-radius: 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.prodet-page .product-box .prodet-2 .options ul li:hover,
.prodet-page .product-box .prodet-2 .options ul li.active {
  color: white;
  background: var(--color);
}
.prodet-page .product-box .prodet-2 .ret {
  padding-top: 20px;
}
.prodet-page .product-box .prodet-2 .ret strong {
  font-family: var(--main-font);
  font-size: 1.2em;
}
.prodet-page .product-box .prodet-2 .ret ul li {
  display: none;
}
.prodet-page .product-box .prodet-2 .ret p {
  padding: 5px 0;
  background: transparent !important;
  line-height: 30px !important;
}
.prodet-page .product-box .prodet-2 .ret form {
  margin-top: 30px;
  padding: 10px;
  background: #fff;
  box-shadow: #e7e7e7 0 0 10px 0;
}
.prodet-page .product-box .prodet-2 .ret form ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prodet-page .product-box .prodet-2 .ret form ul li {
  margin-top: 10px;
  width: 48%;
  display: inline-block;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) {
  width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) textarea {
  width: 100%;
  border: #ccc solid 1px;
  padding: 5px;
  font-size: 16px;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) {
  width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input {
  background: var(--color);
  color: #fff;
  transition: all .5s;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input:hover {
  background: #000;
}
.prodet-page .product-box .prodet-2 .ret form ul li input {
  padding: 5px;
  border: #ccc solid 1px;
  width: 100%;
  font-size: 16px;
}
.prodet-page .product-box .prodet-3 h3.title {
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: var(--main-font);
  margin-top: 50px;
}
.prodet-page .product-box .prodet-3 ul {
  margin: -10px;
}
.prodet-page .product-box .prodet-3 ul .slick-track {
  margin: 0;
}
.prodet-page .product-box .prodet-3 ul li {
  padding: 10px;
}
.prodet-page .product-box .prodet-3 ul li .box {
  display: block;
  background: white;
  -moz-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  -o-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
}
.prodet-page .product-box .prodet-3 ul li .box a.img-box {
  display: block;
}
.prodet-page .product-box .prodet-3 ul li .box .content {
  display: block;
  padding: 20px 20px;
  text-align: center;
  margin-top: 20px;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3 {
  font-size: 20px;
  line-height: 36px;
  color: #111;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  min-height: 114px;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3:hover {
  color: var(--color);
}
.prodet-page .product-box .prodet-3 ul li .box .content h5 {
  display: block;
  font-size: 14px;
  line-height: 2;
  text-transform: uppercase;
  font-family: var(--main-font);
}
.prodet-page .product-box .prodet-3 ul li .box .content p {
  display: block;
  font-size: 16px;
  color: #888;
  line-height: 30px;
  margin: 5px 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--color);
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more i {
  margin-left: 5px;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more:hover {
  color: white;
  background: var(--color);
}
@media screen and (max-width: 1600px) {
  .inner-banner {
    height: 540px;
  }
}
@media screen and (max-width: 1400px) {
  .prodet-page .product-box .prodet-1 .right .text {
    max-height: 12em;
  }
  .inner-banner {
    height: 460px;
  }
}
@media screen and (max-width: 1200px) {
  .inner-banner {
    height: 380px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner {
    height: 270px;
    margin-top: 120px;
  }
  .font-40 {
    font-size: 30px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner {
    height: 200px;
  }
  .inner-page h3.title {
    font-size: 30px;
  }
  .prodet-page .product-box .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .product-box .prodet-1 .right {
    width: 100%;
    padding: 24px 0 0 0;
  }
  .prodet-page .product-box .prodet-1 .right .title {
    font-size: 24px;
    line-height: 1.8;
  }
  .font-40 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner {
    height: 140px;
  }
}
.news-page {
  background: #fff;
}
.news-page .sideright {
  padding: 0 50px 50px 0 !important;
}
.news-page .sideright .list ul {
  margin-right: -16px;
}
.news-page .sideright .list ul li {
  padding-right: 16px;
  margin-bottom: 48px;
}
.news-page .sideright .list ul li .img {
  position: relative;
}
.news-page .sideright .list ul li .img img {
  width: 100%;
}
.news-page .sideright .list ul li .img .date {
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--color);
  color: #fff;
  padding: 6px 12px;
  text-align: center;
  line-height: 1.5em;
  border-radius: 2px;
}
.news-page .sideright .list ul li .img .date span {
  display: block;
  font-size: 14px;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.news-page .sideright .list ul li .img .date i {
  display: block;
  font-size: 24px;
  line-height: 1.8;
  font-style: normal;
  color: #fff;
  font-family: var(--main-font);
}
.news-page .sideright .list ul li .con {
  padding: 30px;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  -webkit-transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
}
.news-page .sideright .list ul li .con h5,
.news-page .sideright .list ul li .con h5 a {
  color: #000;
  font-size: 24px;
  font-family: var(--main-font);
  line-height: 1.8;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  margin-bottom: 15px;
}
.news-page .sideright .list ul li .con h5:hover,
.news-page .sideright .list ul li .con h5 a:hover {
  color: var(--color);
}
.news-page .sideright .list ul li .con p {
  color: #555;
  font-size: 16px;
  line-height: 2;
}
.news-page .sideright .list ul li .con i {
  color: var(--color);
  font-size: 18px;
}
.news-page .sideright .list ul li .con .divider {
  width: 100%;
  min-height: 1px;
  background-color: rgba(0, 0, 0, 0.04);
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-page .sideright .list ul li .con .news-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #101010;
  font-size: 16px;
  line-height: 1.25em;
  font-weight: 400;
}
.news-page .sideright .list ul li .con .news-info .news-info-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-page .sideright .list ul li .con .news-info .news-info-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-page .sideright .list ul li .con .news-info .news-icon-wrapper {
  margin-right: 7px;
}
.news-page .sideright .list ul li .con .news-info .card-news-service-text,
.news-page .sideright .list ul li .con .news-info .card-news-date-text {
  font-size: 16px;
  line-height: 2;
  color: #555;
}
.news-page .sideright .list ul li .con a.link-btn {
  display: inline-block;
  position: relative;
  padding-bottom: 1px;
  margin-bottom: -1px;
  border-bottom: 1px solid #ccc;
}
.news-page .sideright .list ul li .con a.link-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: var(--color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.news-page .sideright .list ul li .con a.link-btn:hover::before {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .news-page .sideright {
    padding: 0 0 50px 0 !important;
  }
}
@media screen and (max-width: 700px) {
  .news-page .sideright .list ul {
    margin-right: 0;
  }
  .news-page .sideright .list ul li {
    width: 100%;
    padding-right: 0;
  }
  .news-page .sideright .list ul li .con {
    padding: 20px 10px;
  }
  .news-page .sideright .list ul li .con h5,
  .news-page .sideright .list ul li .con h5 a {
    font-size: 20px;
  }
  .news-page .sideright .list ul li .con p {
    font-size: 14px;
  }
  .news-page .sideright .list ul li .con .news-info .card-news-service-text,
  .news-page .sideright .list ul li .con .news-info .card-news-date-text {
    font-size: 14px;
  }
  .news-page .sideright .list ul li .con .news-info .news-info-right {
    font-size: 14px;
  }
}
.newdet-page .section-title2 {
  font-size: 30px;
  font-family: var(--main-font);
  line-height: 1.6;
  color: #000;
  position: relative;
  margin-bottom: 20px;
  margin-top: 50px;
}
.newdet-page p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.newdet-page blockquote {
  border-left: 7px solid var(--color);
  padding: 45px;
  display: block;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  margin: 35px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
.newdet-page blockquote p {
  margin-bottom: 0 !important;
  color: inherit;
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}
.newdet-page blockquote::before {
  content: '\f10e';
  font-family: 'FontAwesome';
  position: absolute;
  right: 40px;
  bottom: 40px;
  font-size: 110px;
  opacity: 0.07;
  line-height: 1;
  color: #000;
}
.newdet-page blockquote a {
  color: inherit;
}
.newdet-page blockquote cite {
  display: inline-block;
  font-size: 16px;
  position: relative;
  padding-left: 48px;
  border-color: inherit;
  line-height: 1;
  margin-top: 22px;
  font-style: normal;
  color: var(--color);
  font-family: var(--main-font);
}
.newdet-page blockquote cite::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 45px;
  height: 1px;
  border-top: 1px solid;
  border-color: inherit;
  color: var(--color);
}
.newdet-page .n-content {
  font-size: 18px;
  line-height: 32px;
  color: #555;
}
.newdet-page .grid-box {
  margin-right: -12px;
}
.newdet-page .column {
  padding: 20px 12px 0;
}
.newdet-page .column:nth-child(1) {
  padding: 20px 12px 0 0;
}
.newdet-page .news-post-comment-wrap {
  display: flex;
  margin-bottom: 60px;
}
.newdet-page .news-post-comment-wrap .news-post-user-comment {
  margin-right: 30px;
  flex: 0 0 auto;
}
.newdet-page .news-post-comment-wrap .news-post-user-comment img {
  border-radius: 100%;
  width: 100px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content {
  margin-right: 26px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content h3 {
  font-size: 18px;
  color: #000;
  font-family: var(--main-font);
}
.newdet-page .news-post-comment-wrap .news-post-user-content h3 span {
  font-size: 12px;
  color: #555;
  font-weight: 400;
  margin-left: 15px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content .news-post-repay {
  font-size: 14px;
  color: #555;
  margin: 0;
  font-weight: 400;
  transition: .5s;
  -webkit-transition: .5s;
}
.newdet-page .news-post-comment-wrap .news-post-user-content .news-post-repay:hover {
  color: var(--color);
}
.newdet-page .s_link {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.newdet-page .s_link .list {
  width: 50%;
  padding: 50px 0;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.newdet-page .s_link .list .img {
  width: 80px;
  height: 80px;
  min-width: 80px;
}
.newdet-page .s_link .list .img img {
  -o-object-fit: cover;
  object-fit: cover;
}
.newdet-page .s_link .list .cont a {
  display: block;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.newdet-page .s_link .list .cont a:hover {
  color: var(--color);
}
.newdet-page .s_link .list .cont .tip {
  font-size: 16px;
  line-height: 2;
  color: #444;
}
.newdet-page .s_link .list .cont .des {
  color: #000;
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
.newdet-page .s_link .list.next {
  padding-right: 0;
  padding-left: 15px;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  border-left: 1px solid #d9d9d9;
}
.newdet-page .s_link .list.next .img {
  margin-left: 20px;
}
.newdet-page .s_link .list.next .cont {
  margin-left: 0;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  text-align: right;
}
.newdet-page .news-comment-section {
  padding-top: 48px;
}
.newdet-page .news-comment-section h3 {
  font-size: 18px;
  color: #000;
  font-family: var(--main-font);
}
.newdet-page .news-comment-section form {
  margin-top: 15px;
}
.newdet-page .news-comment-section form .column {
  padding: 0;
}
.newdet-page .news-comment-section form li input[type="text"],
.newdet-page .news-comment-section form li textarea {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 15px 0;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.newdet-page .news-comment-section form li input[type="text"]:focus,
.newdet-page .news-comment-section form li textarea:focus {
  border-bottom-width: 1px;
  border-color: var(--color);
}
.newdet-page .news-comment-section form li button {
  font-family: var(--main-font);
  display: inline-block;
  height: auto;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 80px;
  background-color: var(--color);
  -webkit-transition: border-color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}
.newdet-page .news-comment-section form li button:hover {
  background: #000;
}
.newdet-page .news-comment-section form li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .newdet-page blockquote {
    padding: 20px 10px;
  }
  .newdet-page .grid-box {
    margin-right: 0;
  }
  .newdet-page .column {
    padding: 10px 0;
    width: 100%;
  }
  .newdet-page .column:nth-child(1) {
    padding: 10px 0;
  }
  .newdet-page .news-post-comment-wrap {
    display: block;
  }
  .newdet-page .news-post-comment-wrap .news-post-user-comment {
    text-align: center;
  }
  .newdet-page .news-post-comment-wrap .news-post-user-content {
    margin: 32px 0 0 0;
  }
  .newdet-page .news-comment-section form .column {
    width: 100%;
  }
  .newdet-page .s_link .list {
    width: 100%;
  }
  .newdet-page .s_link .list.next {
    border: none;
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .s_link {
    margin-top: 20px;
  }
  .newdet-page .s_link .list {
    padding: 20px 0;
  }
}
.contact-page .contact-1 {
  padding: 96px 0;
}
.contact-page .contact-1 .left {
  padding-right: 8%;
}
.contact-page .contact-1 .left h5 {
  color: #000;
  font-size: 40px;
  font-family: var(--main-font);
  line-height: 1.6;
  margin-bottom: 15px;
}
.contact-page .contact-1 .left p {
  font-size: 18px;
  line-height: 32px;
  color: #555;
  margin-bottom: 24px;
}
.contact-page .contact-1 .left ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #555;
  text-decoration: none;
}
.contact-page .contact-1 .left ul li .contact-link-icon {
  margin-right: 20px;
  margin-bottom: 36px;
  width: 60px;
  max-height: 60px;
  min-height: 60px;
  min-width: 60px;
  background-color: var(--color);
  color: #fff;
  font-size: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-page .contact-1 .left ul li .contact-link-icon i,
.contact-page .contact-1 .left ul li .contact-link-icon span {
  background: var(--color);
  color: #fff;
  width: 100%;
  text-align: center;
}
.contact-page .contact-1 .left ul li .contact-link-title {
      margin-bottom: 0px;
    color: #000;
    font-size: 20px;
    font-family: var(--main-font);;
  margin-top: 0px;
}
.contact-page .contact-1 .left ul li .contact-link-text {
  color: #555;
  font-size: 18px;
  line-height: 32px;
}
.contact-page .contact-1 .right {
  text-align: right;
  padding-left: 7%;
}
.contact-page .contact-1 .right .form-wrap {
  position: relative;
  border-radius: 0px 0px 40px 0px;
}
.contact-page .contact-1 .right .form-wrap .form-box {
  padding: 40px;
  background: #fff;
  z-index: 3;
  margin-bottom: 30px;
  margin-right: 30px;
  text-align: left;
  border-radius: 0px 0px 40px;
}
.contact-page .contact-1 .right .form-wrap .form-box::before {
  content: '';
  position: absolute;
  top: 90px;
  right: 10px;
  left: 120px;
  bottom: -20px;
  background: var(--color);
  z-index: -1;
  border-radius: 0px 0px 40px;
}
.contact-page .contact-1 .right .form-wrap .form-box::after {
  content: '';
  width: 50%;
  position: absolute;
  top: -5%;
  bottom: 55%;
  left: -5%;
  background-image: url(../images/dots.png);
  background-repeat: repeat;
  z-index: -1;
}
.contact-page .contact-1 .right .form-wrap .form-box h5 {
  color: #000;
  font-size: 40px;
  line-height: 1.6;
  font-family: var(--main-font);
  margin-bottom: 15px;
}
.contact-page .contact-1 .right .form-wrap .form-box li.wid-100 {
  width: 100%;
}
.contact-page .contact-1 .right .form-wrap .form-box li input,
.contact-page .contact-1 .right .form-wrap .form-box li textarea {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 15px 0;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.contact-page .contact-1 .right .form-wrap .form-box li input:focus,
.contact-page .contact-1 .right .form-wrap .form-box li textarea:focus {
  border-bottom-width: 1px;
  border-color: var(--color);
}
.contact-page .contact-1 .right .form-wrap .form-box li textarea {
  height: 127px;
}
.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary {
  font-family: var(--main-font);
  display: inline-block;
  height: auto;
  padding: 14px 30px;
  border: 1px solid transparent;
  font-size: 16px;
  border-radius: 80px;
  background-color: var(--color);
  -webkit-transition: border-color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}
.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary:hover {
  background: #000;
}
.contact-page .contact-1 .map {
  margin-top: 72px;
}
.contact-page .contact-2 {
  background: #f5f5f5;
  padding: 96px 0;
}
.contact-page .contact-2 .contact-link-icon {
  font-size: 48px;
  color: #d12138;
}
.contact-page .contact-2 .list ul {
  margin: -10px;
}
.contact-page .contact-2 .list ul li {
  padding: 10px;
  text-align: center;
}
.contact-page .contact-2 .list ul li .box {
  padding: 20px;
  background-color: white;
  border-radius: 30px;
}
.contact-page .contact-2 .list ul li .box span.h6 {
  font-size: 18px;
  font-family: var(--main-font);
}
.contact-page .contact-2 .list ul li .box .text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 1.5em;
}
.contact-page .contact-2 .header p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 15px;
}
.contact-page .contact-2 .header .section-title {
  font-size: 36px;
  font-family: var(--main-font);
  line-height: 1.6;
  color: #000;
  position: relative;
  margin-bottom: 20px;
}
.contact-page .contact-2 .header .section-title span {
  color: var(--color);
}
.contact-page .contact-2 .content ul {
  margin-right: -32px;
}
.contact-page .contact-2 .content ul li {
  padding-right: 32px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
}
.contact-page .contact-2 .content ul li .title {
  padding: 30px 30px 30px 80px;
  cursor: pointer;
  position: relative;
  border: none;
  border: 1px solid #fff;
  margin-bottom: 0px;
  background-color: #fff;
}
.contact-page .contact-2 .content ul li .title::after {
  content: "\f27b";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 16px;
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color);
  padding: 9px 14px;
  color: #fff;
}
.contact-page .contact-2 .content ul li .title h6 {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  color: #000;
}
.contact-page .contact-2 .content ul li .accordion-info {
  display: none;
  padding: 20px;
  margin-top: 0px;
  margin-left: 0px;
  background: #fff;
  font-size: 16px;
  line-height: 30px;
  color: #555;
}
.contact-page .contact-2 .content ul li.active .title {
  color: #fff;
  background: var(--color);
  border: 1px solid var(--color);
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.contact-page .contact-2 .content ul li.active .title h6 {
  color: #fff;
}
.contact-page .contact-2 .content ul li.active .title::after {
  background: #fff;
  color: var(--color);
}
@media screen and (max-width: 1366px) {
  .contact-page .contact-1 .right {
    padding-left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .contact-page .contact-1 .right {
    padding-left: 4%;
  }
  .contact-page .contact-2 .content ul li {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-1 .right {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-2 .content ul li {
    width: 100%;
  }
}

.pd1 {
  padding: 62px 0 30px;
}
.pd1 .ev {
  display: block;
  padding: 10px 0 20px;
  position: relative;
  margin-bottom: 110px;
}
.pd1 .ev:nth-of-type(even) .wrap {
  flex-direction: row-reverse;
}
.pd1 .ev:nth-of-type(even) .intr {
  padding-left: 5%;
  padding-right: 0;
}
.pd1 .ev:nth-of-type(even)::after {
  left: auto;
  right: 0;
}
.pd1-wrap {
  padding: 40px 0 0;
}
.pd1 .ev::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 74%;
  height: 100%;
  background: #F8F8F8;
  z-index: -1;
  transition: all ease .8s;
  border-radius: 40px;
}
.pd1 .ev:hover::after {
  width: 89.6%;
  background: #eaeaea;
}
.pd1 .ev:nth-of-type(even)::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.pd1 .ev:nth-of-type(odd)::after {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pd1 .ev .intr {
  width: 47%;
  padding: 60px 5% 60px 0;
}
.pd1 .ev .pic {
  width: 50%;
}
.pd1 .ev .pic img {
  width: 100%;
}
.pd1 .ev h2 {
  font-size: 40px;
  font-family: var(--main-font);
  color: var(--color);
}
.pd1 .ev h2::after {
  content: '';
  display: block;
  width: 37px;
  height: 6px;
  /*background: #D5D5D5;*/
  margin: 0px 0 10px;
}
.pd1 .ev .text {
  color: #666666;
  line-height: 32px;
  max-height: 260px;
  padding-right: 20px;
  overflow-y: auto;
}

.pd2 {
  /*  padding: 40px 0 ;*/
  /*  background: #F5F7FA;*/
  overflow-x: hidden;
  overflow-y: auto;
}
.pd2.content {
  margin: 40px -20px 0;
}
.pd2.content > p{
  margin-left: 20px;
}
.pd2 .ev {
  width: 25%;
  padding: 0 20px;
  margin-bottom: 46px;
  transition: all ease .8s;
}
.zhanwei {
  width: 24%;
}
.pd2 .ev .pic {
  width: 100%;
  padding: 20px 0;
  background: #fff;
  text-align: center;
}
.pd2 .ev .pic img {
  max-width: 90%;
  transition: all ease .8s;
}
.pd2 .ev:hover .pic img {
  transform: scale(1.1);
}
.pd2 .ev .intr {
  padding: 30px 35px;
  background: #f7f7f7;
  color: #FFFFFF;
  position: relative;
}
.pd2 .ev .intr::after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color);
  transition: all ease .3s;
}
.pd2 .ev:hover .intr::after {
  height: 100%;
}
.pd2 .ev .intr h2 {
  font-size: 20px;
  line-height: 1.8;
  font-family: var(--font);
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all ease .3s;
  color: #000;
  position: relative;
  z-index: 2;
}
.pd2 .ev .intr b {
  display: block;
  width: 32px;
  height: 2px;
  /*margin: 10px 0;*/
  transition: all ease .3s;
  /*background: #9C9999;*/
  position: relative;
  z-index: 2;
}
.pd2 .ev .intr p {
  font-size: 16px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #9C9999;
  transition: all ease .3s;
  position: relative;
  z-index: 2;
}
.pd2 .ev:hover .intr h2 {
  color: #fff;
}
.pd2 .ev:hover .intr h2::after {
  background: #FFFFFF;
}
.pd2 .ev:hover .intr p {
  color: #fff;
}


.newproduct-page {
  background-color: #f7f7f7;
  padding: 90px 0;
}

.newproduct-page .desc {
  line-height: 32px;
  max-height: 12em;
  overflow-y: auto;
}
@media (max-width: 1230px) {
  .pd2 .ev .intr {
    padding: 15px;
  }

  .pd2 .ev .intr h2 {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {

  .pd1 .ev .intr {
    width: 100%;
    padding-right: 0;
  }

  .pd1 .ev .pic {
    width: 100%;
  }

  .pd1 .ev h2 {
    font-size: 24px;
  }
}

@media (max-width: 1000px) {
  .pd2 .ev {
    width: 49%;
  }
}

@media (max-width: 500px) {
  .pd2 .ev {
    width: 100%;
  }
}
.project-page{
  padding: 100px 0;
}
.project-page ul{
  margin: -15px;
}
.project-page ul li{
  padding: 15px;
}
.project-page ul li p{
  font-size: 18px;
  text-align: center;
  padding: 5px 10px;
  line-height: 2;
  font-family: var(--main-font);
}
.appdet-page{
  padding: 100px 0;
}
.newdet-page .application-img {
  margin: 50px 0;
}
.newdet-page .application-img ul{
  margin: -10px;
}
.newdet-page .application-img ul li{
  padding: 10px;
}
.newdet-page .application-intro b,
.newdet-page .application-intro strong{
  font-weight: bold;
}
.newdet-page .app-related-pro{
  padding: 50px 0;
}
.newdet-page .app-related-pro ul{
  margin: -10px;
}
.newdet-page .app-related-pro ul li{
  padding: 10px;
}
.newdet-page .app-related-pro ul li p{
  text-align: center;
  padding: 6px 10px;
  font-size: 18px;
}
.newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content .left{
  position: sticky;
  position: -webkit-sticky;
  top:120px;
}
.newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content .right{
  padding-left: 20px;
  padding-bottom: 40px;
}
.newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title{
  font-size: 28px;
}
@media screen and (max-width: 1000px){
  .newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content .left{
    position: relative;
    top: 0;
    width: 100%;
  }
  .newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content .right {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .appdet-page .sidebar-box .sidebar-right .newdet-content{
    padding-right: 0 !important;
  }
}



.appdet-page .sidebar-box .sidebar-right .newdet-content {
    padding-right: 85px;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .category {
    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;
    margin-bottom: 15px;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .category a {
    padding: 0 5px;
    margin-left: 4px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color);
    border: 1px solid var(--color);
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .category a span {
    display: inline-block;
    -webkit-transform: skewX(10deg) skewY(0);
    -moz-transform: skewX(10deg) skewY(0);
    -ms-transform: skewX(10deg) skewY(0);
    transform: skewX(10deg) skewY(0);
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .category .time {
    font-size: 14px;
    margin-left: 12px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title {
    font-size: 35px;
    line-height: 2;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7;
}

.appdet-page .sidebar-box .sidebar-right .newdet-content .content {
    font-size: 16px;
    line-height: 2;
    color: #555;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .content .icon {
    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: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
    color: #555;
    margin-top: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e7e7e7;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .content .icon a {
    font-size: 14px;
    color: #000;
    margin-left: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.appdet-page .sidebar-box .sidebar-right .relate-product {
    margin-top: 40px;
}
.appdet-page .sidebar-box .sidebar-right .relate-product h3 {
    font-size: 30px;
    line-height: 1;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .m-link {
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    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;
    margin-top: 40px;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .m-link a {
    width: 50%;
    padding: 35px 0;
    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;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
    padding-right: 30px;
    border-right: 1px solid #e7e7e7;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
    padding-left: 30px;
}
.appdet-page .sidebar-box .sidebar-right .newdet-content .m-link a .r-text p {
    color: #000;
    font-size: 16px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    max-width: 255px;
}
.gallery-page {
  padding: 138px 0 110px;
}
.gallery-page ul {
  margin: -30px -15px;
}
.gallery-page ul li {
  padding: 30px 15px;
  text-transform: capitalize;
}
.gallery-page ul li .img-box {
  position: relative;
}
.gallery-page ul li .img-box h5 {
  position: absolute;
  left: 50%;
  bottom: 23px;
  width: 90%;
  margin: auto;
  -webkit-transform: translate(-50%, 100px);
  -moz-transform: translate(-50%, 100px);
  -ms-transform: translate(-50%, 100px);
  transform: translate(-50%, 100px);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
}
.gallery-page ul li:hover h5 {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.m-page {
  text-align: right;
  margin-top: 100px;
}
.m-page a,
.m-page span {
  font-size: 20px;
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin-right: 5px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.m-page a:hover,
.m-page span {
  background: var(--color);
  color: white;
}
@media screen and (max-width: 1000px){
  .gallery-page ul.seven li{
    width: 20% !important;
  }
}
@media screen and (max-width: 700px){
  .gallery-page ul.seven li{
    width: 25% !important;
  }
}
@media screen and (max-width: 500px){
  .gallery-page ul.seven li{
    width: 33% !important;
  }
  .gallery-page {
    padding: 50px 0 65px;
  }
  .gallery-page ul{
    margin: 0;
  }
}

.faq-page .faq-2 {
    padding: 70px 0;
}
.faq-page .faq-2 .left {
    width:100%;
    padding-right: 0px;
}
.faq-page .faq-2 .left ul li {
    margin-bottom: 15px;
    border: 1px solid #eee;
}
.faq-page .faq-2 .left ul li:last-child {
    margin-bottom: 0;
}
.faq-page .faq-2 .left ul li h4 {
    display: block;
    text-align: left;
    padding: 15px;
    background: #f7f7f7 none repeat scroll 0 0;
    color: #111;
    border-radius: 0;
    font-family: var(--main-font);
    font-size: 20px;
    cursor: pointer;
}
.faq-page .faq-2 .left ul li h4 span {
    margin-right: 5px;
    color: #ed1c24;
}
.faq-page .faq-2 .left ul li .content {
    padding: 20px 30px;
    display: none;
}
.faq-page .faq-2 .right {
    width: 34%;
    padding-left: 15px;
}
.faq-page .faq-2 .right .box2 {
    padding: 30px;
    background: #edeff2;
}
.faq-page .faq-2 .right .box2 h3.title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 30px;
}
.faq-page .faq-2 .right .box2 .form ul li {
    width: 100%;
    margin-bottom: 20px;
}
.faq-page .faq-2 .right .box2 .form ul li textarea,
.faq-page .faq-2 .right .box2 .form ul li input{
  width: 100%;
  height: 60px;
  border: none;
  padding-left: 10px;
  font-size: 18px;
}
.faq-page .faq-2 .right .box2 .form ul li textarea{
  height: 200px;
  padding: 10px;
}
.faq-page .faq-2 .right .box2 .form ul li input[type="submit"]{
  padding-left: 0;
  background: var(--color);
  color: white;
  transition: 0.3s;
}
.faq-page .faq-2 .right .box2 .form ul li input[type="submit"]:hover{
  background: black;
}
@media screen and (max-width: 1250px){
   .faq-page .faq-2 .left ul li h4 {
        font-size: 16px;
        padding: 12px;
    }
    .faq-page .faq-2 .right .box2 {
        padding: 20px 10px;
    }
    .faq-page .faq-2 .right .box2 h3.title {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 1000px){
  .faq-page .faq-2 {
        padding: 40px 0;
    }
    .faq-page .faq-2 .left {
        width: 100%;
        padding-right: 0;
    }
    .faq-page .faq-2 .right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .faq-page .faq-2 .left ul li h4 {
        font-size: 14px;
        line-height: 2;
    }
}
@media screen and (max-width: 500px){
   .faq-page .faq-2 .left ul li h4 {
        padding: 8px;
    }
}













/* section about */
.main-about .about-intro {
  position: relative;
  z-index: 500;
  background-color: #F1F1F1;
}
.main-about .about-motion {
  width: 100%;
  height: 700vh;
  position: relative;
  padding: 100px 0 0;
  margin-top: -100vh;
}
@media (max-width: 1200px) {
  .main-about .about-motion {
    height: auto;
    margin-top: 0;
  }
}
.about-motion .about-con {
  width: 100%;
  height: 400vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 100px 0 0;
}
.about-motion .about-con .about-wrap {
  height: calc(100vh - 136px);
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  overflow: hidden;
}
.about-motion .about-con .main-tit-wrap {
  width:100%;
  position: absolute;
  padding:150px;
  top: 80px;
  z-index: 1;
}

.about-motion .about-con .main-tit-wrap .about-tit {
  font-size: 28px;
  font-family: var(--font);
}
.about-motion .about-con .main-tit-wrap p{
  font-size: 19px;
  margin-top: 25px;
}
@media (max-width: 1200px) {
  .about-motion .about-con .main-tit-wrap .about-tit {
    font-size: 25px;
  }
  .about-motion .about-con{
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .about-motion .about-con .main-tit-wrap .about-tit {
    font-size: 20px;
    line-height: 1.8;
  }
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list {
    height: 100%;
  }
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .slick-list {
    margin: 0 -12px;
  }
}
.about-motion .about-con .about-list .about-item {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 32px;
  flex-direction: row-reverse;
  position: absolute;
  top: 0;
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .about-item {
    flex-direction: column;
    position: static;
    margin: 0 12px;
    gap: 10px;
  }
}
.about-motion .about-con .about-list .about-item .about-img {
  overflow: hidden;
  width: 50%;
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .about-item .about-img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.about-motion .about-con .about-list .about-item .img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transform: translate(0, 100%);
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .about-item .img-wrap {
    position: relative;
    transform: translate(0);
  }
}
.about-motion .about-con .about-list .about-item:nth-child(1) .img-wrap {
  transform: translate(0, 0);
}
.about-motion .about-con .about-list .about-item .tit-wrap {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.47);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  margin-top: -50px;
  /*transform: translateY(-50%);*/
  text-align: center;
  opacity: 0;
   /*visibility: hidden;*/
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.main-about ul li{
   opacity: 0;
   visibility: hidden;
  transition: opacity 0.5s ease;
}*/
.about-motion .about-con .about-list .about-item .tit-wrap img {
  width: 27px;
  height: 27px;
}
.about-motion .about-con .about-list .about-item:nth-child(1) .tit-wrap {
  opacity: 1;
   visibility: visible;
}
.about-motion.index01 .about-con .about-list .about-item:nth-child(1) .tit-wrap {
  opacity: 1;
}
.about-motion.index02 .about-con .about-list .about-item:nth-child(2) .tit-wrap {
  opacity: 1;
}
.about-motion.index03 .about-con .about-list .about-item:nth-child(3) .tit-wrap {
  opacity: 1;
}
.about-motion.index04 .about-con .about-list .about-item:nth-child(4) .tit-wrap {
  opacity: 1;
}
.about-motion.index05 .about-con .about-list .about-item:nth-child(5) .tit-wrap {
  opacity: 1;
}
.about-motion.index06 .about-con .about-list .about-item:nth-child(6) .tit-wrap {
  opacity: 1;
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .about-item .tit-wrap {
    opacity: 1;
    /*top: 20px;*/
  }
}
.about-motion .about-con .about-list .about-item .tit-wrap .tit {
  /* font-size: 12.5vw; */
  font-size: clamp(56px, 10vw, 160px);
  font-weight: 800;
  letter-spacing: 0;
  font-family: var(--font-en);
  color: #F1F1F1;
}
.about-motion .about-con .about-list .about-item .tit-wrap .txt {
  color: #F1F1F1;
  font-size: 20px;
  font-weight: 700;
  margin-top: -0.7813vw;
}
@media (max-width: 768px) {
  .about-motion .about-con .about-list .about-item .tit-wrap .txt {
    font-size: 14px;
    margin-top: 0;
  }
}
.about-motion .about-con .about-list .about-item .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.about-motion .about-con .about-list .about-item .about-txt {
  overflow: hidden;
   width: 50%;
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  opacity: 0;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .about-item .about-txt {
    width: 100%;
    height: auto;
    position: relative;
    opacity: 1;
    overflow: visible;
  }
}
.about-motion .about-con .about-list .about-item:nth-child(1) .about-txt {
  opacity: 1;
}
.about-motion .about-con .about-list .about-item .about-txt .txt-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 60px;
  word-break: break-all;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-motion .about-con .about-list .about-item .about-txt .txt-wrap img {
  max-height: 253px;
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .about-item .about-txt .txt-wrap {
    position: static;
    align-items: center;
    padding: 0;
  }
}
.about-motion .about-con .about-list .about-item .about-txt .txt-wrap p {
  font-size: clamp(26px, 1.9134vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-list .about-item .about-txt .txt-wrap p {
    margin-top: 80px;
  }
}
.about-motion .about-con .about-index-wrap {
  display: flex;
  gap: 80px;
  align-items: flex-end;
  justify-content: center;
  width: 25.8333vw;
  position: absolute;
  bottom: 35px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .about-motion .about-con .about-index-wrap {
    display: none;
  }
}
.about-motion .about-con .about-index {
  width: 200px;
  height: 230px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .about-motion .about-con .about-index {
    width: 160px;
    height: 180px;
  }
}
.about-motion .about-con .about-index-wrap .curr li {
  display: none;
}
.about-motion.index01 .about-con .about-index-wrap .curr li:nth-child(1) {
  display: block;
}
.about-motion.index02 .about-con .about-index-wrap .curr li:nth-child(2) {
  display: block;
}
.about-motion.index03 .about-con .about-index-wrap .curr li:nth-child(3) {
  display: block;
}
.about-motion.index04 .about-con .about-index-wrap .curr li:nth-child(4) {
  display: block;
}
.about-motion.index05 .about-con .about-index-wrap .curr li:nth-child(5) {
  display: block;
}
.about-motion.index06 .about-con .about-index-wrap .curr li:nth-child(6) {
  display: block;
}
.about-motion .about-con .about-index-wrap .curr li span {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 1440px) {
  .about-motion .about-con .about-index-wrap .curr li span {
    font-size: 20px;
  }
}
.about-motion .about-con .about-index-wrap .curr li span.num {
  font-size: 120px;
  font-size: clamp(120px, 18.8889vh, 120px);
  position: absolute;
  bottom: 0;
  right: calc(100% - 70px);
}
@media (max-width: 1440px) {
  .about-motion .about-con .about-index-wrap .curr li span.num {
    /* font-size: 142px; */
    right: calc(100% - 40px);
  }
}
.about-motion .about-con .about-index-wrap .curr li span.unit {
  position: absolute;
  left: 82px;
  bottom: clamp(63px, 12.963vh, 87px);
}
@media (max-width: 1440px) {
  .about-motion .about-con .about-index-wrap .curr li span.unit {
    left: 57px;
  }
}
.about-motion .about-con .about-index-wrap .slash {
  position: absolute;
  left: 50%;
  transform: translateX(-0.9259vh);
  bottom: clamp(20px, 1.8519vh, 20px);
}
@media (max-width: 1650px) {
  .about-motion .about-con .main-tit-wrap{
    padding-left: 60px;
  }
}
@media (max-width: 1440px) {
  .about-motion .about-con .about-index-wrap .slash {
    bottom: 25px;
  }
}
.about-motion .about-con .about-index-wrap .slash img {
  height: clamp(50px, 11.5741vh, 80px);
}
.about-motion .about-con .about-index-wrap .total {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font-en);
  position: absolute;
  bottom: clamp(23px, 2.1296vh, 23px);
  right: 10px;
}
.about-motion .about-con .slide-dot-wrap {
  position: absolute;
  bottom: 32px;
  left: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  .about-motion .about-con .main-tit-wrap {
    padding: 0;
    top: 0;
    position: relative;
    margin-bottom: 60px;
  }
  .about-motion .about-con .about-wrap {
    height:auto;
    position: relative;
    top: 0;
    overflow: unset;
  }
  .about-motion .about-con .about-list .about-item{
    margin: 0;
    margin-bottom: 60px;
    gap: 0;
  }
  .about-motion .about-con .about-list .about-item:last-child{
    margin-bottom: 0;
  }
  .about-motion .about-con {
    height: auto;
    position: relative;
    padding: 0 15px;
  }
  #index-body .init-1 ul {
    margin: 0 -20px;
  }
}
@media (max-width: 1200px) {
  #index-body .init-2 .h-title {
    margin-bottom: 30px;
  }
}
