@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');
}
@font-face {
  font-family: 'Poppins-Light';
  src: url(../fonts/Poppins-Light.ttf) format('truetype'), url(../fonts/Poppins-Light.eot) format('eot'), url(../fonts/Poppins-Light.woff) format('woff'), url(../fonts/Poppins-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Bold';
  src: url(../fonts/Poppins-Bold.ttf) format('truetype'), url(../fonts/Poppins-Bold.eot) format('eot'), url(../fonts/Poppins-Bold.woff) format('woff'), url(../fonts/Poppins-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Medium';
  src: url(../fonts/Poppins-Medium.ttf) format('truetype'), url(../fonts/Poppins-Medium.eot) format('eot'), url(../fonts/Poppins-Medium.woff) format('woff'), url(../fonts/Poppins-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-SemiBold';
  src: url(../fonts/Poppins-SemiBold.ttf) format('truetype'), url(../fonts/Poppins-SemiBold.eot) format('eot'), url(../fonts/Poppins-SemiBold.woff) format('woff'), url(../fonts/Poppins-SemiBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Futura';
  src: url(../fonts/Futura.ttf) format('truetype'), url(../fonts/Futura.eot) format('eot'), url(../fonts/Futura.woff) format('woff'), url(../fonts/Futura.woff2) format('woff2');
}
textarea::-webkit-input-placeholder {
  color: #cccccc;
}
input::-webkit-input-placeholder {
  color: #cccccc;
}
input::-moz-placeholder {
  color: #cccccc;
}
input:-moz-placeholder {
  color: #cccccc;
}
input:-ms-input-placeholder {
  color: #cccccc;
}
.font-bold{
  font-family: var(--font);
}
body {
  font-family: 'Poppins-Regular';
  margin: 0;
  padding: 0;
  --color: #024699;
  --font: 'Poppins-SemiBold';
}
.ui.container {
  padding: 0 15px;
  width: 1780px;
  margin: auto;
  position: relative;
}
::-webkit-scrollbar-thumb {
  background: var(--color);
}
@keyframes wolInLeft{
  0%{
    opacity: 0;
    transform: translateX(-2000px);
  }
  100%{
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes wolInRight{
  0%{
    opacity: 0;
    transform: translateX(2000px);
  }
  100%{
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes wolInUp{
  0%{
    opacity: 0;
    transform: translateY(2000px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}
.wol-fadeInLeft{
 animation: wolInLeft 1s;
}
.wol-fadeInRight{
 animation: wolInRight 1s;
}
.wol-fadeInUp{
 animation: wolInUp 1s;
}
.header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.header.active,
.header.inner-header{
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.header.inner-header .nav,
.header.active .nav{
  height: 90px;
}
.header.inner-header .nav .ui.menu .menu-box ul.menu > li:hover,
.header.active .nav .ui.menu .menu-box ul.menu > li:hover{
  border-color: var(--color);
}
.header.active .nav .logo .logo1,
.header.inner-header  .nav .logo .logo1{
  display: none;
}
.header.active .nav .logo .logo2,
.header.inner-header  .nav .logo .logo2{
   display: block;
}
.header.active .nav .ui.menu .menu-box ul.menu > li,
.header.inner-header .nav .ui.menu .menu-box ul.menu > li,
.header.active .language-box .zhuyu i,
.header.inner-header .language-box .zhuyu i{
  color: #000;
}
.header.active .language-box .zhuyu .globe1,
.header.inner-header .language-box .zhuyu .globe1{
  display: none;
}
.header.active .language-box .zhuyu .globe2,
.header.inner-header .language-box .zhuyu .globe2{
  display: block;
}
.header.active .nav .ui.menu .right .h-guide,
.header.inner-header .nav .ui.menu .right .h-guide{
  filter: none;
}
.header.active .nav .ui.menu .right .h-search,
.header.inner-header .nav .ui.menu .right .h-search{
  filter: invert(1);
}
.header .nav .ui.menu .right .h-search{
  filter: invert(0);
  transition: all 0.5s;
}
.header .nav .logo .logo1{
  display: block;
}
.header .nav .logo .logo2{
   display: none;
}
.header .nav {
  position: relative;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 60px;
  transition: all 0.5s;
}
.header .language-box .zhuyu .globe1{
  display: block;
}
.header .language-box .zhuyu .globe2{
  display: none;
}
.header .nav .ui.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
  width: 78%;
}
.header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
.header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
.header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 60px;
  font-size: 20px;
  color: #fff;
  -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;
  border-bottom: 1px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-family: ;
}
.header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: #fff;
  -webkit-transition: .5s border;
  -moz-transition: .5s border;
  transition: .5s border;
}
.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;
  min-width: 180px;
  width:auto;
  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: 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%;
  min-width: 180px;
  width:auto;
  -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 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .nav .ui.menu .right .h-guide {
  -webkit-filter: invert(1);
  filter: invert(1);
  cursor: pointer;
}
.header .nav .ui.menu .right .h-search{
  margin:0 25px;
  cursor: pointer;
}
.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
.search-box form input {
  background: none;
  outline: none;
  border: none;
}
.search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
.search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
.search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
table {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
      word-break: keep-all;
}
table td:first-child {
  color: #2d2d2d;
}
table td:last-child {
  color: #666;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
      line-height: 28px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-family: var(--font);
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.language-box .yuan {
  width: 15px !important;
  height: 15px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 15px;
}
.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 i {
  font-size: 20px;
  color: #fff;
}
.language-box .zhuyu img {
  width: 100%;
  height: 100%;
  margin-right: 10px;
}
.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: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 1px 15px;
  line-height: 2;
  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;
}
.home-title h3 {
  font-size: 70px;
  font-family: var(--font);
  color: #fff;
  font-style: italic;
  line-height: 1;
}
.home-title h4 {
  font-size: 46px;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--font);
  font-style: italic;
}
.btn-go {
  width: 185px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color);
  font-size: 20px;
  font-family: 'Poppins-SemiBold';
  border: none;
  background: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-go:hover {
  background: var(--color);
  color: #fff;
}
.submit {
  width: 200px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins-SemiBold';
  border: none;
  background: url("../images/btn-bg.png") no-repeat;
  background-size: 100% 100%;
}
#fp-nav ul li {
  width: 12px!important;
  height: 12px!important;
  background-color: #c1c2cb;
  border-radius: 50%;
}
#fp-nav ul li a.active span,
#fp-nav ul li a:hover span {
  width: 6px !important;
  height: 6px !important;
  background-color: var(--color);
  margin:0 !important;
  opacity: 1;
}
#fp-nav ul li a span {
  background-color: transparent;
  opacity: 0;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes banner_bg_big {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-moz-keyframes banner_bg_big {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes banner_bg_big {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes play_big_1 {
  0% {
    width: 90px;
    height: 90px;
  }
  100% {
    width: 120px;
    height: 120px;
  }
}
@-moz-keyframes play_big_1 {
  0% {
    width: 90px;
    height: 90px;
  }
  100% {
    width: 120px;
    height: 120px;
  }
}
@keyframes play_big_1 {
  0% {
    width: 90px;
    height: 90px;
  }
  100% {
    width: 120px;
    height: 120px;
  }
}
@-webkit-keyframes play_big_2 {
  0% {
    width: 70px;
    height: 70px;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
@-moz-keyframes play_big_2 {
  0% {
    width: 70px;
    height: 70px;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
@keyframes play_big_2 {
  0% {
    width: 70px;
    height: 70px;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
.more {
  display: block;
  width: 70px;
  height: 70px;
  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;
  background-color: #fff;
  border-radius: 50%;
}
.more span {
  font-size: 34px;
  color: var(--color);
  margin-top: 5px;
}
.more.blue {
  background-color: var(--color);
}
.more.blue span {
  color: #fff;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
  height: 100vh;
}
#banner .banner-content ul li .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding-left: 30px;
  z-index: 10;
}
#banner .banner-content ul li .content h2 {
  font-size: 70px;
  max-width: 1060px;
  font-family: var(--font);
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 40px;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: banner_bg_big 5s ease-in-out infinite;
  -moz-animation: banner_bg_big 5s ease-in-out infinite;
  animation: banner_bg_big 5s ease-in-out infinite;
}
.sell-product {
  padding-top: 95px;
  position: relative;
  color: #000;
}
.sell-product #wonder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.sell-product .waves {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../images/product-bg.jpg") no-repeat;
  background-size: cover;
}
.sell-product .waves canvas {
  height: 100vh !important;
}
.sell-product .text{
  position: absolute;
  left:30px;
  top:75%;
  font-size: 300px;
  text-transform: uppercase;
  color:#ececed;
  font-family: 'Poppins-Bold';
}
.sell-product .sell-product-t {
  position: relative;
  z-index: 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;
}
.sell-product .sell-product-t .home-title h4,
.sell-product .sell-product-t .home-title h3 {
  color: #000;
}
.sell-product .sell-product-t .home-title .btn {
  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-top: 35px;
  transition: color .5s;
}
.sell-product .sell-product-t .home-title .btn:hover h5{
  color: var(--color);
}
.sell-product .sell-product-t .home-title .btn span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(2, 70, 153, 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;
}
.sell-product .sell-product-t .home-title .btn span::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color);
  border-radius: 50%;
}
.sell-product .sell-product-t .home-title .btn h5 {
  font-size: 20px;
  margin-left: 20px;
  text-transform: uppercase;
  margin-bottom: -3px;
}

.sell-product .sell-product-t .box{
  max-width: 60%;
  margin-left:auto;
}
.sell-product .sell-product-t ul {
  margin: 0 -25px;
}
.sell-product .sell-product-t ul li {
  padding: 0 25px;
}
.sell-product .sell-product-t ul li:hover h4 {
  color: var(--color);
}
.sell-product .sell-product-t ul li:hover .img_box {
  background-color: var(--color);
}
.sell-product .sell-product-t ul li h4 {
  font-size: 16px;
  color: #000;
  line-height: 28px;
  margin-top: 15px;
  -webkit-transition: color .5s;
  -moz-transition: color .5s;
  transition: color .5s;
  text-align: center;
}
.sell-product .sell-product-t ul li .img_box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
@-webkit-keyframes border_1_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes border_1_rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes border_1_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes border_2_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-moz-keyframes border_2_rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes border_2_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.sell-product .sell-product-content {
  padding: 0 50px;
  max-width: 1270px;
  margin-top: -40px;
  z-index: 100;
}
.sell-product .sell-product-content ul li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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;
}
.sell-product .sell-product-content ul li .left {
  position: relative;
  width: 490px;
  height: 490px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 25px;
}
.sell-product .sell-product-content ul li .left .border-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: border_1_rotate 40s .3s linear infinite;
  -moz-animation: border_1_rotate 40s .3s linear infinite;
  animation: border_1_rotate 40s .3s linear infinite;
}
.sell-product .sell-product-content ul li .left .border-2 {
  position: absolute;
  left: 35px;
  top: 35px;
  z-index: 2;
  -webkit-animation: border_2_rotate 40s .3s linear infinite;
  -moz-animation: border_2_rotate 40s .3s linear infinite;
  animation: border_2_rotate 40s .3s linear infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.sell-product .sell-product-content ul li .left .img_box {
  display: block;
  position: relative;
  z-index: 15;
  background-color: #fff;
  height: 385px;
  width: 385px;
  border-radius: 50%;
  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;
}
.sell-product .sell-product-content ul li .right {
  max-width: 400px;
  margin-left: 70px;
}
.sell-product .sell-product-content ul li .right h4 {
  font-size: 26px;
  font-family: var(--font);
  margin-bottom: 20px;
  line-height: 36px;
}
.sell-product .sell-product-content ul li .right p {
  font-size: 18px;
  text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
display: -webkit-box;
    line-height: 30px;
}
.sell-product .sell-product-content .sell-product-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border: none;
  opacity: 0.5;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
}
.sell-product .sell-product-content .sell-product-btn:hover {
  opacity: 1;
}
.sell-product .sell-product-content .prev {
  left: 0;
}
.sell-product .sell-product-content .next {
  right: 0;
}
.about {
  position: relative;
  background: url("../images/about-bg.jpg") no-repeat;
  background-size: cover;
  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;
}
.about .about-content {
  position: absolute;
  left: 50%;
  top: 58%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1380px;
}
.about .about-content .about-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;
  padding-right: 30px;
}
.about .about-content .about-t .left {
  position: relative;
  margin-top: -20px;
}
.about .about-content .about-t .left .about-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 590px;
}
.about .about-content .about-t .left .about-title .btn {
  display: block;
  width: 70px;
  height: 70px;
  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;
  background-color: #fff;
  border-radius: 50%;
}
.about .about-content .about-t .left .about-title .btn span {
  font-size: 34px;
  color: var(--color);
  margin-top: 5px;
}
.about .about-content .about-t .left > p,
.footnanchen {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  font-family: 'Poppins-Light';
  max-width: 590px;
  line-height: 1.8;
  margin: 10px 0 40px;
}
.about .about-content .about-t .left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about .about-content .about-t .left ul li {
  color: #fff;
  margin-right: 80px;
}
.about .about-content .about-t .left ul li:last-child {
  margin-right: 0;
}
.about .about-content .about-t .left ul li h4 {
  font-size: 50px;
  font-family: 'Poppins-Medium';
  text-align: center;
}
.about .about-content .about-t .left ul li h4 span {
  font-size: 16px;
}
.about .about-content .about-t .left ul li p {
  font-size: 18px;
  font-family: 'Poppins-Light';
  text-align: center;
}
.about .about-content .about-t .right {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.about .about-content .about-t .right::before {
  content: "";
  display: block;
  position: absolute;
  right: -30px;
  top: -20px;
  width: 350px;
  height: 220px;
  background-color: var(--color);
}
.about .about-content .about-t .right > img {
  position: relative;
  z-index: 2;
}
.about .about-content .about-t .right::after {
  content: "";
  display: block;
  position: absolute;
  width: 250px;
  height: 165px;
  background-color: var(--color);
  left: -20px;
  bottom: -30px;
}
.about .about-content .about-t .right .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}
.about .about-content .about-t .right .play::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-animation: play_big_2 infinite 1s 1s ease-in-out;
  -moz-animation: play_big_2 infinite 1s 1s ease-in-out;
  animation: play_big_2 infinite 1s 1s ease-in-out;
  z-index: 5;
}
.about .about-content .about-t .right .play::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  -webkit-animation: play_big_1 infinite 1s 1s ease-in-out;
  -moz-animation: play_big_1 infinite 1s 1s ease-in-out;
  animation: play_big_1 infinite 1s 1s ease-in-out;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 2;
}
.about .about-content .about-b {
  margin-top: 115px;
}
.about .about-content .about-b ul {
  margin: 0 -46px;
}
.about .about-content .about-b ul li {
  padding: 0 46px;
}
.strength {
  background: url("../images/strength-bg.jpg") no-repeat;
  background-size: cover;
}
.strength .strength-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.strength .strength-content .home-title {
  margin-bottom: 55px;
}
.strength .strength-content .home-title h4,
.strength .strength-content .home-title h3 {
  color: #000;
}
.strength .strength-content ul {
  max-width: 900px;
}
.strength .strength-content ul li {
  cursor: pointer;
  position: relative;
  height: 330px;
}
.strength .strength-content ul li:hover > .box ,
.strength .strength-content ul li.active > .box {
  background-color: var(--color);
}
.strength .strength-content ul li:hover > .box h4,
.strength .strength-content ul li.active  > .box h4 {
  color: #fff;
}
.strength .strength-content ul li:hover > .box p ,
.strength .strength-content ul li.active  > .box p {
  opacity: 1;
  color: #fff;
}
.strength .strength-content ul li:hover > .box .more,
.strength .strength-content ul li.active  > .box .more  {
  background-color: #fff;
  opacity: 1;
}
.strength .strength-content ul li:hover > .box .more span,
.strength .strength-content ul li.active  > .box .more span {
  color: var(--color);
}
.strength .strength-content ul li .box {
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 55px 30px 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.strength .strength-content ul li .box h4 {
  font-size: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-family: var(--font);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.strength .strength-content ul li .box p {
  font-size: 14px;
  font-family: 'Poppins-Light';
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 20px 0 25px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 28px;
}
.strength .strength-content ul li .box .more {
  background-color: var(--color);
  opacity: 0.4;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.strength .strength-content ul li .box .more span {
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.strength .strength-content ul li .box:hover .bg {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}
.strength .strength-content ul li .box:hover .hide_box {
  opacity: 1;
  z-index: 5;
}
.news {
  background: url('../images/news-bg.jpg') no-repeat;
  background-size: cover;
}
.news .news-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1450px;
}
.news .news-content .left {
  width: 50%;
}
.news .news-content .right {
  position: relative;
}

.news .news-content .right .line {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.news .news-content .right ul {
  width: 730px;
}
.news .news-content .right ul .slick-current li {
  opacity: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.news .news-content .right ul .slick-current li::before {
  opacity: 1;
}
.news .news-content .right ul .slick-current li .box {
  padding-top: 60px;
}
.news .news-content .right ul .slick-current li .box .title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.news .news-content .right ul .slick-current li .box .title .date {
  opacity: 1;
}
.news .news-content .right ul .slick-current li .box p {
  height: 75px;
}
.news .news-content .right ul .slick-current + .slick-slide li {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.news .news-content .right ul .slick-current + .slick-slide li .box .title {
  margin-top: 60px;
}
.news .news-content .right ul li {
  height: 180px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-left: 45px;
  opacity: 0.4;
}
.news .news-content .right ul li::before {
  content: "";
  display: block;
  background-color: var(--color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  opacity: 0;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.news .news-content .right ul li .box {
  width: 730px;
}
.news .news-content .right ul li .box h2 {
  font-size: 90px;
  position: absolute;
  left: 55px;
  top: 5px;
  color: transparent;
  font-family: 'Poppins-Bold';
  line-height: 1;
   background: linear-gradient(to bottom, rgba(2, 70, 153,.6) 0%, rgba(2, 70, 153, 0) 60%);
  -webkit-background-clip: text;
  background-clip: text;
}
.news .news-content .right ul li .box .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 45px;
  padding-left: 5px;
  padding-right: 15px;
}
.news .news-content .right ul li .box .title h4 {
  font-size: 23px;
  font-family: 'Poppins-SemiBold';
  position: relative;
  z-index: 5;
      line-height: 36px;
}
.news .news-content .right ul li .box .title .date {
  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;
  opacity: 0;
  position: relative;
  z-index: 5;
}
.news .news-content .right ul li .box .title .date span {
  font-size: 14px;
  font-family: 'Poppins-Light';
  color: var(--color);
  white-space: nowrap;
}
.news .news-content .right ul li .box .title span:last-child {
  margin-left: 35px;
}
.news .news-content .right ul li .box p {
  font-size: 16px;
  font-family: 'Poppins-Light';
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 0;
  overflow: hidden;
  line-height: 28px;
}
#footer {
  background: url('../images/footer-bg.jpg') no-repeat;
  background-size: cover;
}
#footer .footer-t .f-logo {
  margin: 0 auto;
  display: block;
}
#footer .footer-t .link-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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 35px 0 60px;
}
#footer .footer-t .link-icon i {
  font-size: 20px;
  color: #fff;
  margin: 0 12px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .link-icon i:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  color: var(--color);
}
#footer .footer-t ul {
  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;
}
#footer .footer-t ul li:nth-child(2) {
  height: 365px;
  max-width: 510px;
}
#footer .footer-t ul li {
  background-color: rgba(2, 70, 153, 0.5);
  max-width: 455px;
  height: 325px;
  color: #fff;
  margin: 0 13px;
  padding: 60px;
  border-radius: 5px;
}
#footer .footer-t ul li h3 {
  font-family: 'Poppins-Medium';
  font-size: 30px;
  text-transform: uppercase;
}
#footer .footer-t ul li h4 {
  font-family: 'Poppins-Light';
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#footer .footer-t ul li p {
  font-family: 'Poppins-Light';
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 2;
  opacity: 0.8;
}
#footer .footer-t ul li p:last-child {
  margin-bottom: 0;
}
#footer.inner-footer .footer-b {
  position: unset;
  bottom:  unset;
  left:  unset;
  transform: none;
  margin-top: 70px;
}
#footer .footer-b {
  position: absolute;
  bottom: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .footer-b .left .quick-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Poppins-Bold';
  margin-bottom: 15px;
}
#footer .footer-b .left .quick-links a {
  font-size: 20px;
  color: #b8b8b8;
  margin-right: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .6s;
  -moz-transition: color .6s;
  transition: color .6s;
}
#footer .footer-b .left .quick-links a::before {
  content: '-';
  display: block;
  color: #b8b8b8;
  font-size: 20px;
  margin-right: 2px;
  -webkit-transition: color .6s;
  -moz-transition: color .6s;
  transition: color .6s;
}
#footer .footer-b .left .quick-links a:last-child {
  margin-right: 0;
}
#footer .footer-b .left .quick-links a:hover,
#footer .footer-b .left .quick-links a:hover::before {
  color: var(--color);
}
#footer .footer-b .left .copyright {
  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;
}
#footer .footer-b .left .copyright span {
  font-size: 16px;
  color: #b8b8b8;
  font-family: 'Poppins-Light';
  margin-right: 10px;
}
#footer .footer-b .left .copyright .color-change {
  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;
}
#footer .footer-b .left .copyright .color-change img {
  width: 250px;
  opacity: 0.6;
  height: auto;
  padding-top: 2px;
  margin-right: 10px;
}
#footer .footer-b .left .copyright .color-change span {
  color: var(--color);
  border-left: 1px solid #b8b8b8;
  line-height: 1;
  padding-left: 10px;
  margin-right: 0;
}
#footer .footer-b .right .qc-img {
  border: 4px solid #fff;
  border-radius: 5px;
}
#footer .footer-b .right .qc-img img,
#footer .footer-b .right .qc-img canvas {
  width: 85px;
  height: 85px;
}
@media (max-width: 1800px) {
  .ui.container {
    width: 1600px;
  }
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  .header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 40px;
  }
  #footer .footer-t ul li {
    padding: 45px;
  }
  #footer .footer-t ul li h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  .header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 25px;
    font-size: 18px;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 50px;
    max-width: 860px;
  }
  .home-title h3 {
    font-size: 54px;
  }
  .home-title h4 {
    font-size: 30px;
  }
  .about .about-content .about-t .left {
    margin-right: 60px;
  }
  .about .about-content .about-t .left ul li {
    color: #fff;
    margin-right: 30px;
  }
  .sell-product .sell-product-content ul li .left {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
  .sell-product .sell-product-content {
    margin-top: -50px;
  }
  #footer .footer-t ul li h3 {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  .header .nav {
    padding: 0 30px;
  }
  .header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 15px;
    font-size: 16px;
  }
  .header .nav .ui.menu {
    width: 82%;
  }
  .header .nav .ui.menu .right .h-guide {
    margin-left: 25px;
  }
  .about .about-content .about-b {
    margin-top: 40px;
  }
  .about .about-content .about-t .left ul li h4 {
    font-size: 40px;
  }
  .about .about-content .about-t {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sell-product .sell-product-content {
    margin-top: 50px;
  }
  .sell-product .sell-product-content ul li .left {
    width: 310px;
    height: 310px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .sell-product .sell-product-content ul li .left .border-2 {
    width: 280px;
    height: 280px;
    left: 15px;
    top: 15px;
  }
  .sell-product .sell-product-content ul li .left .img_box {
    width: 260px;
    height: 260px;
  }
  .news .news-content .right ul {
    width: 580px;
  }
  #footer .footer-t ul li p {
    font-size: 14px;
    line-height: 1.6;
  }
  #footer .footer-t ul li h4 {
    font-size: 16px;
  }
  #footer .footer-t ul li h3 {
    font-size: 20px;
  }
  #footer .footer-b .left .quick-links a {
    font-size: 18px;
    margin-right: 30px;
  }
  #footer .footer-b .left .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  .header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner {
    margin-top: 120px;
  }
  .sell-product .sell-product-t .box {
    max-width: 100%;
    margin-left: 0;
  }
  .sell-product .text{
    display: none;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 38px;
    max-width: 100%;
  }
  #banner .banner-content ul li {
    height: auto;
  }
  .about .about-content,
  .sell-product .sell-product-content,
  .strength .strength-content,
  .news .news-content,
  #footer .footer-b {
    position: relative;
    left: unset;
    top: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  .about .about-content .about-t .left {
    margin-top: 0;
  }
  .about .about-content .about-t .left ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .about .about-content .about-b {
    margin-top: 80px;
  }
  .about {
    padding: 60px 0;
  }
  .about .about-content .about-t {
    -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;
    padding-right: 0;
  }
  .about .about-content .about-t .left {
    margin-right: 0;
    width: 100%;
    margin-bottom: 60px;
  }
  .sell-product .sell-product-t {
    -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;
  }
  .sell-product .sell-product-t ul {
    margin-top: 40px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .sell-product .sell-product-t ul li {
    margin-left: 0;
  }
  .sell-product .sell-product-content .sell-product-btn {
    display: none;
  }
  .sell-product {
    padding: 60px 0;
  }
  .sell-product .sell-product-content ul li {
    -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;
  }
  .sell-product .sell-product-content ul li .right {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .strength {
    padding: 60px 0;
  }
  .strength .strength-content ul {
    max-width: 100%;
  }
  .news {
    padding: 120px 0;
  }
  .news .news-content {
    -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;
  }
  .news .news-content .right ul li .box {
    width: 100%;
    color: #fff;
  }
  #footer {
    padding: 100px 0 0;
  }
  #footer .footer-t ul {
    -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 ul li {
    height: auto !important;
    margin: 15px 0;
    max-width: 455px !important;
  }
  #footer .footer-b {
    margin-top: 60px;
  }
  #footer .footer-b .left .quick-links {
    display: none;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  .news .news-content .left {
    width: 100%;
  }
  #banner .banner-content ul li .content h2 {
    font-size: 24px;
  }
  .home-title h3 {
    font-size: 44px;
  }
  .home-title h4 {
    font-size: 24px;
  }
  .about .about-content .about-t .left .about-title .btn {
    width: 50px;
    height: 50px;
  }
  .about .about-content .about-t .left .about-title .btn span {
    font-size: 24px;
  }
  .sell-product .sell-product-t ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sell-product .sell-product-t ul li {
    width: 50%;
    margin: 20px 0;
    text-align: center;
  }
  .sell-product .sell-product-t ul li .img_box {
    margin: auto;
  }
  .sell-product .sell-product-content ul {
    margin: 0 -15px;
  }
  .sell-product .sell-product-content ul li {
    padding: 0 15px;
  }
  .sell-product .sell-product-content {
    padding: 0 15px;
    max-width: 100%;
  }
  .strength,
  .news .news-content .right .line,
  .news .news-content .right ul li::before {
    display: none;
  }
  .news .news-content .right ul {
    width: 100%;
  }
  .news .news-content .right ul li {
    padding: 0 15px;
  }
  .news .news-content .right ul li .box .title .date span {
    color: #fff;
  }
  .news .news-content .right ul .slick-current li .box .title {
    border-color: rgba(255, 255, 255, 0.6);
  }
  .news .news-content .right ul li .box .title .date {
    display: none;
  }
  .news .news-content .right ul .slick-current li .box .title .date {
    display: block;
  }
  .news {
    padding: 75px 0;
  }
  .news .news-content .right ul .slick-current li .box {
    padding-top: 0;
  }
  #footer .footer-b {
    -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-b .left {
    margin-bottom: 30px;
  }
  #footer .footer-b .left .copyright span {
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  #footer .footer-b .left .copyright .color-change {
    margin: auto;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .content h2 {
    margin-bottom: 0;
  }
  #banner .banner-content ul li .content a {
    display: none;
  }
  .about .about-content .about-t .left ul {
    -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;
  }
  .about .about-content .about-t .left ul li {
    margin: 15px 0;
  }
  .about .about-content .about-t .right::before,
  .about .about-content .about-t .right::after,
  .about .about-content .about-b {
    display: none;
  }
  .sell-product .sell-product-t ul li {
    width: 100%;
  }
  .home-title h3 {
    font-size: 36px;
  }
}












/*inner-page*/


.inner-banner {
  background-size: cover;
  background-attachment: fixed;
  max-height: 465px;
  height: auto;
  position: relative;
  margin-top: 90px;
}

.inner-page .category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.inner-page .category-list .item {
    color: #222;
    position: relative
}

.inner-page .category-list .item .category-name {
  display: block;
  width: fit-content;
  padding: 4px 8px;
  margin: 16px 6px;
  border: 1px solid #7e7e7e;
  border-radius: 5px;
  transition: .3s;
  font-size: 20px;
}

.inner-page .category-list .item.active .category-name {
    border-color: var(--color);
    background-color: var(--color);
    color: #fff
}

.inner-page .category-list .item .category-name:hover {
    border: 1px solid var(--color);
    background-color: var(--color);
    color: #fff
}


.inner-banner .ui.container {
  max-width: 1318px;
  position: relative;
}
.inner-banner .mbx {
  padding: 12% 0;
  color: white;
}
.inner-banner .mbx h2 {
  font-size: 24px;
  line-height: 2;
  font-family: var(--font);
  color: white;
  position: relative;
  font-style: italic;
}
.inner-banner .mbx h2::after {
  content: "";
  position: absolute;
  left: -170px;
  top: -195px;
  width: 350px;
  height: 325px;
  background: url(../images/circle-left.png) no-repeat center;
}
.inner-banner .mbx ul {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 19px;
  margin-top: 57px;
}
.inner-banner .mbx ul li {
  font-size: 18px;
  font-family: var(--font);
  margin-right: 70px;
  line-height: 2;
}
.inner-banner .mbx ul li a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  padding-bottom: 23px;
}
.inner-banner .mbx ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 3px;
  background: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.inner-banner .mbx ul li a:hover::after {
  width: 100%;
}
.inner-banner .mbx ul li:last-child {
  margin-right: 0;
}
.inner-banner .mbx ul li.active a::after {
  width: 100%;
}
.inner-banner .mbx .search-box {
  margin-top: 80px;
}
.inner-banner .mbx .search-box form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  border-radius: 35px;
}
.inner-banner .mbx .search-box form input {
  background-color: white;
  border: none;
  font-size: 16px;
  height: 70px;
  border-right: 1px solid #b9b9b9;
  color: black;
  padding-left: 30px;
}
.inner-banner .mbx .search-box form input.inp1 {
  border-radius: 35px 0 0 35px;
}
.inner-banner .mbx .search-box form button {
  border-radius: 0 35px 35px 0;
  background-color: white;
  color: black;
  border: none;
  width: 135px;
  font-size: 16px;
}
.inner-footer {
  padding: 200px 0 100px !important;
}
.inner-page .ui.container,
.seoPublic .ui.container {
  max-width: 1500px;
}


.seoPublic .Auxil-related .list ul li a,
.app-related-pro ul li a{
  display: block;
  position: relative;
}
.seoPublic .Auxil-related .list ul li a.img_box,
.app-related-pro ul li a.img_box{
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  border-radius: 50px 0px 50px 50px;
  overflow: hidden;
  margin-bottom: 30px;
  display: block;
  position: relative;
}
.seoPublic .Auxil-related .list ul li a .icon-plus,
.app-related-pro ul li a .icon-plus{
    position: absolute;
    right: 0;
    top: 0;
    width: 49px;
    height: 48px;
    background-color: var(--color);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transform-origin: right top;
    border-radius: 24px 0 24px 24px;
    transition: .3s
}

.seoPublic .Auxil-related .list ul li a .icon-plus img,
.app-related-pro ul li a .icon-plus img{
    width: auto
}

.seoPublic .Auxil-related .list ul li:hover a .icon-plus,
.app-related-pro ul li:hover a .icon-plus{
    transform: scale(1.306)
}













.about-page h2.title {
  font-size: 40px;
  font-family: var(--font);
  font-style: italic;
  line-height: 2;
  padding-bottom: 10px;
}
.about-page .about-1 {
  padding-top: 135px;
  padding-bottom: 85px;
}
.about-page .about-1 .left {
  width: 30%;
}
.about-page .about-1 .left ul {
  margin-top: 14px;
}
.about-page .about-1 .left ul li {
  margin-bottom: 45px;
}
.about-page .about-1 .left ul li h2 {
  font-size: 64px;
  font-family: var(--font);
  font-style: italic;
}
.about-page .about-1 .left ul li h2 span{
  font-size: 24px;
  vertical-align: top;
  margin-left: 7px;
}
.about-page .about-1 .left ul li p {
  font-size: 16px;
  font-weight: 300;
  padding-left: 80px;
  position: relative;
  margin-top: -25px;
  line-height: 2;
}
.about-page .about-1 .left ul li p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 58px;
  height: 1px;
  background: black;
}
.about-page .about-1 .right {
  width: 70%;
  line-height: 2;
  font-weight: 300;
  font-size: 20px;
  padding-left: 105px;
  max-height: 765px;
  overflow-y: auto;
  margin-top: 30px;
}
.about-page .about-1 .right p {
  font-size: 20px;
  margin-bottom: 20px;
}
.about-page .about-1 .right p:last-child {
  margin-bottom: 0;
}
.about-page .about-2 .top {
  position: relative;
}
.about-page .about-2 .top .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-page .about-2 .top .play:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border: 5px solid rgba(255,255,255,.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
}
.about-page .about-2 .top .play:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    transform: translate(-50%,-50%);
    border: 5px solid rgba(255,255,255,.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    animation-delay: .4s;
}
.about-page .about-2 .bottom {
  background: #023991;
  padding: 36px 0;
}
.about-page .about-2 .bottom .ui.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-2 .bottom .ui.container .left {
  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;
}
.about-page .about-2 .bottom .ui.container .left h3 {
  font-size: 40px;
  font-family: var(--font);
  font-style: italic;
  color: white;
  margin-left: 30px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}
.about-page .about-2 .bottom .ui.container .right {
  background: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  width: 174px;
  height: 60px;
  border-radius: 30px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
}
.about-page .about-2 .bottom .ui.container .right:hover {
  background: black;
  color: white;
}
.about-page .about-3 {
  padding-top: 170px;
  padding-bottom: 88px;
}
.about-page .about-3 .left {
  padding-right: 108px;
}
.about-page .about-3 .left .content {
  margin-top: 30px;
}
.about-page .about-3 .left .content p {
  font-size: 18px;
  line-height: 2;
  font-weight: 300;
  margin-bottom: 45px;
}
.about-page .about-3 .right ul li {
  margin-bottom: 50px;
}
.about-page .about-3 .right ul li h4 {
  position: relative;
  font-size: 20px;
  font-family: var(--font);
  font-style: italic;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 15px;
  cursor: pointer;
  padding-right: 50px;
}
.about-page .about-3 .right ul li h4 img {
  margin-right: 15px;
}
.about-page .about-3 .right ul li h4 .fa {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  border-radius: 100%;
  color: var(--color);
  border: 1px solid var(--color);
  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;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-page .about-3 .right ul li h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 110px;
  height: 3px;
  background: var(--color);
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  transition: 0.5;
}
.about-page .about-3 .right ul li .content {
  display: none;
}
.about-page .about-3 .right ul li .content .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin: 22px 0 22px;
}
.about-page .about-3 .right ul li.active .fa {
  background: var(--color);
  color: white;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.about-page .about-4 {
  background: url(../images/factory-01.jpg) no-repeat center;
  color: white;
  padding: 120px 0 120px;
}
.about-page .about-4 .tab {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid white;
  color: white;
  font-size: 24px;
  margin-top: 60px;
  margin-bottom: 50px;
  font-weight: 300;
}
.about-page .about-4 .tab li {
  margin-right: 40px;
  line-height: 2;
}
.about-page .about-4 .tab li a {
  position: relative;
  padding-bottom: 5px;
}
.about-page .about-4 .tab li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0%;
  height: 3px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: var(--color);
}
.about-page .about-4 .tab li:last-child {
  margin-right: 0;
}
.about-page .about-4 .tab li.active a::after,
.about-page .about-4 .tab li:hover a::after {
  width: 100%;
}
.about-page .about-4 .content .box {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  /*max-width: 520px;*/
  min-height: 210px;
}
.about-page .about-4 .content .box p {
  margin-bottom: 30px;
}
.about-page .about-4 .content .more {
  width: 125px;
  height: 60px;
  font-size: 18px;
  background: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
  color: black;
  padding: 0;
  display: block;
  text-align: center;
  line-height: 60px;
  margin-top: 60px;
}
.about-page .about-4 .content .more::before,
.about-page .about-4 .content .more::after {
  content: none;
}
.about-page .about-4 .content .more:hover {
  background: var(--color);
  color: white;
}
.about-page .about-5 {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
  background: #f9f9f9;
}
 
.about-page .about-5 p {
  font-weight: 300;
  line-height: 2;
  max-width: 880px;
  margin: 5px auto 50px;
}
.about-page .about-5 ul {
  margin: -18px;
}
.about-page .about-5 ul li {
  padding: 18px;
}
.about-page .about-5 ul .slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: white;
  border: none;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
}
.about-page .about-5 ul .slick-arrow button{
  display: none;
}
.about-page .about-5 ul .slick-prev{
  left: -60px;
}
.about-page .about-5 ul .slick-prev::after{
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 30px;
}
.about-page .about-5 ul .slick-next{
  right: -60px;
}
.about-page .about-5 ul .slick-next::after{
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 30px;
}
.about-page .about-6 {
  background: url(../images/history-bg.jpg) no-repeat center;
  background-position: center bottom;
  padding: 65px 0 230px;
  overflow: hidden;
}
.about-page .about-6 ul {
  margin-right: -40px;
}
.about-page .about-6 ul li {
  position: relative;
  padding-right: 40px;
  padding-left: 30px;
}
.about-page .about-6 ul li h4 {
  font-size: 35px;
  font-family: var(--font);
  line-height: 2;
}
.about-page .about-6 ul li .text {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  min-height: 80px;
}
.about-page .about-6 ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  /*-webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);*/
  width: 26px;
  height: 197px;
  background: url(../images/history-arrow.png) no-repeat center;
}
.about-page .about-6 .slick-list {
  padding: 60px 0;
}


.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;
}

.contact-page {
  padding-top: 138px;
}
.contact-page .title {
  font-size: 50px;
  font-family: var(--font);
  line-height: 2;
}
.contact-page .contact-1 form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .contact-1 form input {
  width: 46%;
  font-size: 18px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  height: 63px;
  margin-bottom: 30px;
}
.contact-page .contact-1 form p {
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 20px;
  color:#ccc;
}
.contact-page .contact-1 form textarea {
  width: 100%;
  height: 177px;
  font-size: 18px;
  padding: 18px 8px;
  border: 1px solid #dbdbdb;
}
.contact-page .contact-1 form input[type="submit"] {
  background: var(--color);
  color: white;
  border: none;
  width: 186px;
  height: 57px;
  margin-top: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.contact-page .contact-1 form input[type="submit"]:hover {
  background: black;
}
.contact-page .contact-2 {
  padding: 110px 0;
}
.contact-page .contact-2 .left {
  width: 60%;
  padding-right: 60px;
}
.contact-page .contact-2 .left .text {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  margin: 8px 0 42px;
}
.contact-page .contact-2 .left .content .box:first-child {
  margin-bottom: 50px;
}
.contact-page .contact-2 .left .content h4 {
  font-size: 20px;
  font-family: var(--font);
  margin-bottom: 13px;
}
.contact-page .contact-2 .left .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .contact-2 .left .content ul li {
  font-size: 18px;
  line-height: 2;
  font-family: var(--font);
  width: 33%;
  margin-bottom: 16px;
}
.contact-page .contact-2 .left .content ul li.add {
  width: 75%;
}
.contact-page .contact-2 .right {
  width: 40%;
}
.contact-page .contact-2 .right img {
  display: block;
  margin-left: auto;
}
.news-page {
  padding: 90px 0;
}
.news-page .newsList {
  margin-bottom: 90px;
  padding-right: 70px;
}
 
.newdet-page {
  padding: 138px 0 80px;
}
.newdet-page .newdet-1 h1 {
  font-size: 30px;
  font-family: var(--font);
  line-height: 2;
}
.newdet-page .newdet-1 .time {
  font-size: 14px;
  margin: 35px 0 20px;
}
.newdet-page .newdet-1 .time span {
  margin-right: 20px;
  display: inline-block;
}
.newdet-page .newdet-1 .content {
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  padding: 50px 0 60px;
  font-size: 18px;
  line-height: 2;
}
.newdet-page .newdet-2 {
  overflow: hidden;
  padding-top: 150px;
}
.newdet-page .newdet-2 h2 {
  font-size: 50px;
  font-family: var(--font);
  font-style: italic;
  margin-bottom: 60px;
}
.newdet-page .newdet-2 ul {
  margin: -28px;
}
.newdet-page .newdet-2 ul li {
  padding: 28px;
}
.newdet-page .newdet-2 ul li .img-box {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.newdet-page .newdet-2 ul li .img-box img {
  display: block;
  margin: auto;
}
.newdet-page .newdet-2 ul li h4 {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
  line-height: 2;
}
.newdet-page .newdet-2 ul li:hover .img-box {
  -webkit-box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.15);
}
.newdet-page .newdet-2 ul .slick-arrow{
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: none;
  background: white;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.newdet-page .newdet-2 ul .slick-prev{
  left: 0;
  transform: translate(-50%,-50%);
}
.newdet-page .newdet-2 ul .slick-prev::after{
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 24px;
}
.newdet-page .newdet-2 ul .slick-next{
  right: 0;
  transform: translate(50%,-50%);
}
.newdet-page .newdet-2 ul .slick-next::after{
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 24px;
}
.m-link {
  margin-top: 25px;
  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;
  font-size: 16px;
  /*-webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;*/
  line-height: 2;
}
.m-link .next {
  text-align: right;
}
.m-link a:hover {
  text-decoration: underline;
}
.advantages-page {
  padding-top: 138px;
   background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(15%, white), color-stop(15%, #faf7f7), color-stop(35%, #faf7f7), color-stop(35%, white), color-stop(77%, white), color-stop(77%, #faf7f7), to(white));
  background: -webkit-linear-gradient(white 0%, white 15%, #faf7f7 15%, #faf7f7 35%, white 35%, white 77%, #faf7f7 77%, white 100%);
  background: -moz-linear-gradient(white 0%, white 15%, #faf7f7 15%, #faf7f7 35%, white 35%, white 77%, #faf7f7 77%, white 100%);
  background: linear-gradient(white 0%, white 15%, #faf7f7 15%, #faf7f7 35%, white 35%, white 77%, #faf7f7 77%, white 100%);
}
.advantages-page ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 200px;
}
.advantages-page ul li .text {
  width: 54% !important;
  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;
  padding-right: 48px;
}
.advantages-page ul li .text h3 {
  font-size: 40px;
  font-family: var(--font);
  font-style: italic;
  margin-bottom: 40px;
}
.advantages-page ul li .text .content {
  font-size: 25px;
  line-height: 50px;
}
.advantages-page ul li .img {
  width: 46% !important;
}
.advantages-page ul li:nth-child(2n) .text {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-left: 96px;
  padding-right: 0;
}
.advantages-page ul li:nth-child(2n) .img {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.service-page .service-1 {
  padding: 88px 0 70px;
}
.service-page .service-1 ul {
  margin: -20px;
}
.service-page .service-1 ul li {
  padding: 20px;
}
.service-page .service-1 ul li .box {
  background: white;
  -webkit-box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 13px 44px 5px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 75px 55px;
  height:520px;
}
.service-page .service-1 ul li .box .icon {
  height: 60px;
}
.service-page .service-1 ul li .box .icon img {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
.service-page .service-1 ul li .box h4 {
  font-size: 25px;
  font-family: var(--font);
  margin: 20px 0 26px;
  line-height: 2;
}
.service-page .service-1 ul li .box .text {
  font-size: 16px;
  line-height: 2;
}
.service-page .service-1 ul li .box:hover .icon img {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.service-page .service-2 {
  background-color: #fafafa;
  padding: 75px 0 0px;
}
.service-page .service-2 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service-page .service-2 .top .text {
  width: 60%;
  padding-right: 60px;
}
.service-page .service-2 .top .text h3 {
  font-size: 43px;
  font-family: var(--font);
  font-style: italic;
  margin-bottom: 25px;
}
.service-page .service-2 .top .text h5{
  font-size: 25px;
  line-height: 40px;
}
.service-page .service-2 .top .text .content {
  font-size: 18px;
  line-height: 1.9;
  margin-top: 50px;
  overflow: auto;
  height: 400px;
}
.service-page .service-2 .top .text .content p:not(:last-child) {
  margin-bottom: 30px;
}
.service-page .service-2 .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/*.service-page .service-2 .bottom .text {
  width: 60%;
  padding-left: 80px;
}*/
.service-page .service-2 .bottom .text .content {
  font-size: 18px;
  line-height: 1.8;
}
.service-page .service-2 .bottom .text .content p:not(:last-child) {
  margin-bottom: 20px;
}
.service-page .service-3 {
  padding: 80px 0;
  overflow: hidden;
}
.service-page .service-3 h2 {
  font-size: 43px;
  font-family: var(--font);
  font-style: italic;
  margin-bottom: 45px;
  line-height: 2;
}
.service-page .service-3 .text {
  margin: -50px;
}
.service-page .service-3 .text h4 {
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 2;
}
.service-page .service-3 .text .column {
  padding: 50px;
}
.service-page .service-3 .text .content {
  /*font-weight: 300;*/
}
.service-page .service-3 .imgbox {
  margin-top: 50px;
}
.service-page .service-3 ul {
  margin: -15px;
}
.service-page .service-3 ul li {
  padding: 15px;
}
.service-page .service-3 ul .slick-arrow{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  border: none;
  background: white;
}
.service-page .service-3 ul .slick-prev{
  left: -50px;
}
.service-page .service-3 ul .slick-next{
  right: -50px;
}
.service-page .service-3 ul .slick-next::after,
.service-page .service-3 ul .slick-prev::after{
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 26px;
}
.service-page .service-3 ul .slick-next::after{
  content: "\f105";
}
.service-page .service-4 {
  background-color: #fafafa;
  padding-bottom: 100px;
  padding-top: 100px;
}
.service-page .service-4 h2 {
  font-size: 43px;
  font-family: var(--font);
  font-style: italic;
  text-align: center;
  line-height: 2;
}
.service-page .service-4 p.text {
  margin: 30px auto 30px;
  text-align: center;
  font-size: 18px;
  line-height: 2;
  max-width: 1050px;
}
/*.service-page .service-4 ul.grid-box {
  margin: -35px;
}
.service-page .service-4 ul.grid-box .column {
  padding: 35px;
}*/
.service-page .service-4 ul li .box {
  position: relative;
}
.service-page .service-4 ul li .box .column{
  vertical-align: middle;
}
.service-page .service-4 ul li .box .content {
  /*position: absolute;
  left: 15px;
  bottom: 15px;
  background-color: white;
  max-width: 365px;*/
  padding: 9px;
  vertical-align: middle;
}
.service-page .service-4 ul li .box .content h4 {
  font-size: 20px;
  font-family: var(--font);
  margin-bottom: 20px;
  line-height: 2;
}
.service-page .service-4 ul li .box .content .text {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  margin: 45px 0 45px;
}
.service-page .service-4 ul li .box .content .text p{
  margin-bottom: 8px;
  font-weight: 500;
}
.service-page .service-4 .honor ul{
  margin: -15px;
}
.service-page .service-4 .honor ul li{
  padding: 15px;
}
.service-page .service-4 ul.grid-box .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  margin-top: 50px;
}
.service-page .service-4 ul.grid-box .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #878787;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 6px;
  padding: 0;
}
.service-page .service-4 ul.grid-box .slick-dots li button {
  display: none;
}
.service-page .service-4 ul.grid-box .slick-dots li.slick-active {
  background-color: var(--color);
}
.solution-page {
  padding-top: 138px;
}
.solution-page .solution-1 h1 {
  font-size: 40px;
  font-family: var(--font);
  font-style: italic;
  text-align: center;
  line-height: 2;
}
.solution-page .solution-1 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 50px 0 70px;
}
.solution-page .solution-1 ul li {
  margin: 0 20px;
}
.solution-page .solution-1 .content {
  font-size: 18px;
  line-height: 56px;
  margin: auto;
  text-align: center;
  max-width: 1000px;
}
.solution-page .box-list {
  margin-top: 100px;
}
.solution-page .box-list ul li {
  position: relative;
}
.solution-page .box-list ul li .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;*/
  color: white;
}
.solution-page .box-list ul li .content .ui.container {
  /*margin: 0;*/
  height: 100%;
}
.solution-page .box-list ul li .content .box {
  max-width: 720px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.solution-page .box-list ul li:nth-child(1) .content .box{
  max-width: 765px;
}
.solution-page .box-list ul li:nth-child(3) .content .box{
  max-width: 640px;
}
.solution-page .box-list ul li .content h2 {
  font-size: 60px;
  font-family: var(--font);
  font-style: italic;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  line-height: 2;
}
.solution-page .box-list ul li .content h2:hover {
  color: var(--color);
}
.solution-page .box-list ul li .content .text {
  font-size: 16px;
  line-height: 2;
}
.solution-page .box-list ul li:nth-child(2n) .content {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}
.solution-page .box-list ul li:nth-child(2n) .content .box{
  margin-left: auto;
}
.solution-page .box-list ul li:last-child .content .box{
  max-width: 800px;
}
.soldet-page {
  padding: 138px 0 100px;
}
.soldet-page .soldet-1 h1 {
  font-size: 40px;
  font-family: var(--font);
  font-style: italic;
  margin: 85px 0 50px;
}
.soldet-page .soldet-1 .content {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}
.soldet-page .soldet-2 {
  padding-top: 85px;
}
.soldet-page .soldet-2 h2 {
  font-size: 40px;
  font-family: var(--font);
  font-style: italic;
  margin-bottom: 70px;
}
.soldet-page .soldet-2 ul {
  margin: -18px;
}
.soldet-page .soldet-2 ul li {
  padding: 18px;
}
.soldet-page .soldet-2 ul li .img-box {
  border: 1px solid #dbdbdb;
  height: 293px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.soldet-page .soldet-2 ul li .img-box img {
  display: block;
  margin: auto;
  /*height: 100%;*/
  object-fit: cover;
  -o-object-fit: cover;
}
.soldet-page .soldet-2 ul li h4 {
  font-size: 14px;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-top: 20px;
}
.soldet-page .soldet-2 ul li:hover h4 {
  color: var(--color);
}
.soldet-page .soldet-2 ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #d4d4d4;
  color: white;
  text-align: center;
  line-height: 30px;
  border: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
}
.soldet-page .soldet-2 ul .slick-arrow:hover {
  background-color: var(--color);
}
.soldet-page .soldet-2 ul .slick-prev::after {
  content: "\f104";
  font-family: FontAwesome;
  font-size: 20px;
}
.soldet-page .soldet-2 ul .slick-next {
  right: 0;
}
.soldet-page .soldet-2 ul .slick-next::after {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 20px;
}
.soldet-page .soldet-2 ul .slick-track{
  margin-left: 0;
}
.sale-page {
  padding-top: 138px;
}
.sale-page .title {
  font-size: 40px;
  font-family: var(--font);
  font-style: italic;
}
.sale-page .sale-1 {
  padding-bottom: 150px;
}
.sale-page .sale-1 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.sale-page .sale-1 .top .left {
  width: 46%;
}
.sale-page .sale-1 .top .right {
  width: 54%;
  padding-left: 45px;
}
.sale-page .sale-1 .top .right .content {
  font-size: 17px;
  line-height: 2;
  color: #666666;
  margin-top: 30px;
}
.sale-page .sale-1 .top .right .content p:not(:last-child) {
  padding-bottom: 25px;
}
.sale-page .sale-1 .center .right {
  width: 46%;
  padding-left: 0;
  padding-right: 60px;
}
.sale-page .sale-1 .center .right .content {
  padding-left: 0;
}
.sale-page .sale-1 .center .left {
  width: 54%;
  padding-left: 45px;
}
.sale-page .sale-1 .bottom {
  margin-top: 100px;
}
.sale-page .sale-1 .bottom ul {
  margin: -15px;
}
.sale-page .sale-1 .bottom ul li {
  padding: 15px;
}
.sale-page .sale-1 .bottom ul li a {
  display: block;
  -webkit-box-shadow: 0px 4px 12px rgba(133, 133, 133, 0.13);
  box-shadow: 0px 4px 12px rgba(133, 133, 133, 0.13);
  height: 81px;
}
.sale-page .sale-1 .bottom ul li a img {
  display: block;
  margin: auto;
  max-height: 81px;
  width: auto;
}
.sale-page .sale-2 {
  position: relative;
}
.sale-page .sale-2 .ui.container {
  margin-top: 10%;
}
.sale-page .sale-2 .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: white;
}
.sale-page .sale-2 .content .text {
  font-size: 18px;
  line-height: 2;
  font-weight: 300;
  margin: 40px 0 90px;
  max-width: 680px;
}
.sale-page .sale-2 .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.sale-page .sale-2 .content ul li {
  margin-right: 100px;
}
.sale-page .sale-2 .content ul li h3 {
  font-size: 30px;
  font-family: var(--font);
  font-style: italic;
}
.sale-page .sale-2 .content ul li p {
  font-size: 30px;
  font-family: var(--font);
  font-style: italic;
}
.sale-page .sale-2 .content ul li:last-child {
  margin-right: 0;
}
.sale-page .sale-3 {
  padding: 150px 0;
}
.sale-page .sale-3 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.sale-page .sale-3 .box .left {
  width: 60%;
  padding-right: 45px;
}
.sale-page .sale-3 .box .left ul {
  margin-top: 90px;
}
.sale-page .sale-3 .box .left ul li {
  position: relative;
  font-size: 18px;
  line-height: 2;
  font-weight: 300;
  margin-bottom: 55px;
}
.sale-page .sale-3 .box .left ul li:last-child {
  margin-bottom: 0;
}
.sale-page .sale-3 .box .left ul li::after {
  content: "01";
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 70px;
  font-family: var(--font);
  font-style: italic;
  opacity: 0.27;
  z-index: -1;
}
.sale-page .sale-3 .box .left ul li:nth-child(2)::after {
  content: "02";
  left: 70px;
}
.sale-page .sale-3 .box .left ul li:nth-child(3)::after {
  content: "03";
  left: 140px;
}
.sale-page .sale-3 .box .left ul li:nth-child(4)::after {
  content: "04";
  left: 210px;
}
.sale-page .sale-3 .box .left ul li:nth-child(5)::after {
  content: "05";
  left: 280px;
}
.sale-page .sale-3 .box .left ul li:nth-child(6)::after {
  content: "06";
  left: 350px;
}
.sale-page .sale-3 .box .right {
  width: 40%;
  position: relative;
}
.sale-page .sale-3 .box .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sale-page .sale-3 .box .right .content {
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 100%;
  padding: 0 45px;
  color: white;
}
.sale-page .sale-3 .box .right .content p {
  font-size: 25px;
}
.sale-page .sale-3 .box .right .content a.contact {
  display: inline-block;
  font-size: 18px;
  border-radius: 25px;
  color: black;
  background-color: white;
  width: 148px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  margin-top: 30px;
}
.sale-page .sale-3 .box .right .content a.contact:hover {
  background-color: black;
  color: white;
}


.search-page .slideRight ul li{
  font-size: 16px;
  display: inline-block;
  padding: 0 15px;
  margin-bottom: 20px;
}
.search-page .slideRight .item .right a:hover,
.search-page .slideRight ul li a:hover{
  text-decoration: underline;
}
.search-page .slideRight .item .right a{
  font-size: 16px;
  display: inline-block;
  /*width: 40%;*/
}
.search-page .slideRight .item .right ul li .box{
  display: inline-block;
  width: 48%;
}
.inner-page .sideLeft {
  width: 30%;
  padding-right: 30px;
}
.inner-page .sideLeft .box {
  padding: 30px;
  background: #f7f7f7;
}
.inner-page .sideLeft .box h3 {
  display: block;
  padding: 40px 25px;
  background: var(--color);
  font-size: 28px;
  font-family: var(--font);
  color: white;
}
.inner-page .sideLeft .box .list ul li {
  margin-top: 6px;
  padding: 10px 20px;
  border-left: 4px solid var(--color);
  font-size: 18px;
  line-height: 32px;
  color: black;
  background: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.inner-page .sideLeft .box .list ul li i{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 10px;
  cursor: point;
}
.inner-page .sideLeft .box .list ul li img {
    max-width: 80px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
}
.inner-page .sideLeft .box .list ul li:hover {
  background: var(--color);
  color: white;
}
.inner-page .sideLeft .img {
    display: block;
    margin-top: 40px;
    padding: 60px 5%;
    text-align: center;
    color: #fff;
    background-size: 100%;
    background-repeat: no-repeat;
}
.inner-page .sideLeft .img h4 {
  display: block;
  font-size: 24px;
  font-family: var(--font);
  line-height: 1;
}
.inner-page .sideLeft .img p {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin: 25px 0 45px;
}
.inner-page .sideLeft .img a.more {
  line-height: 36px;
  height: 36px;
  padding: 0 32px;
  border: 1px solid white;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: inline-block;
  color: #fff;
}
.inner-page .sideLeft .img a.more:hover {
  background: var(--color);
  color: white;
}
.inner-page .sideRight {
  width: 100%;
}
.inner-page .fenlei {
  color: var(--color);
  line-height: 2;
  font-family: var(--font);
}
.inner-page .sideRight .content {
  line-height: 2;
}
.product-page {
  padding: 90px 0 60px;
}
.product-page .nav-list{
  margin-bottom: 60px;
}
.product-page .nav-list .list1{
  display: flex;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  justify-content: space-between;
}
.product-page .nav-list .list1 li{
  position: relative;
  font-size: 18px;
  padding-bottom: 10px;
}
.product-page .nav-list .list1 li::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--color);
  transition: 0.5s;
  opacity: 0;
}
.product-page .nav-list .list1 li:hover::after,
.product-page .nav-list .list1 li.active::after{
  opacity: 1;
}
.product-page .nav-list .list2{
  margin-top: 20px;
}
.product-page .nav-list .list2 .item{
  display: none;
  
}
.product-page .nav-list .list2 .item ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-page .nav-list .list2 .item ul li{
  font-size: 18px;
  padding: 5px 15px;
  transition: 0.5s;
}
.product-page .nav-list .list2 .item ul li:hover{
  color: var(--color);
}


.product-page .productList {
    margin-bottom: 60px
}

.product-page .productList ul {
    margin: -20px
}

.product-page .productList ul li {
    padding: 20px;
    width: 50%
}

.product-page .productList ul li a.more {
    line-height: 45px;
    height: 45px;
    padding: 0 20px;
    border-radius: 4px;
    background: var(--color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.product-page .productList ul li a.more i {
    margin-left: 22px;
    font-size: 70%;
    transform: translateY(0)
}

.product-page .productList ul li a.more:hover {
    background: #111
}

.productList ul {
    margin: -15px
}

.productList ul li {
    padding: 15px
}

.productList ul li .box2 {
    display: flex;
    background-color: #f6f6f6;
    border-radius: 20px;
    padding: 25px
}
.productList ul li.no_recommend .box2 .icon-plus{
  display: none !important;
}
.productList ul li .box2 .box-right {
    max-width: 365px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 30px;
}

.productList ul li .box2 h5 {
    font-size: 18px;
    line-height: 32px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin-bottom: 40px
}

.productList ul li .box2 h5 a {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: unset
}

.productList ul li:hover .box2 h5 {
    color: var(--color)
}

.productList ul li .box2 a.img {
    display: block;
    position: relative;
    max-width: 365px
}

.productList ul li .box2 a.img .icon-plus {
    position: absolute;
    right: 0;
    top: 0;
    width: 49px;
    height: 48px;
    background-color: var(--color);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transform-origin: right top;
    border-radius: 24px 0 24px 24px;
    transition: .3s
}

.productList ul li .box2 a.img .icon-plus img {
    width: auto
}

.productList ul li:hover .box2 a.img .icon-plus {
    transform: scale(1.306)
}

.productList ul li .box2 a.img img {
    width: 100%
}

.productList ul li .box2 .text {
    margin-bottom: 20px;
    font-size: 15px;
    color: #757575
}

.productList ul li .box2 .text p {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative
}

.productList ul li .box2 .text p:before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("/template/en/images/icon-2-1.png") center center no-repeat;
    position: absolute;
    left: 0;
    top: 4px
}

.productList ul li .box2 .text p:last-child {
    margin-bottom: 0
}

.productList ul li .box2 a.more {
    line-height: 40px;
    height: 40px;
    padding-right: 20px;
    padding-left: 15px;
    font-size: 12px;
    background: #2b3e4b;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.productList ul li .box2 a.more:hover {
    background: var(--base-color)
}

.productList ul li .box2:after {
    content: '';
    width: 100%;
    bottom: -5px;
    right: -20px;
    height: 8px;
    display: block;
    position: absolute;
    border-top-left-radius: 4px;
    background: var(--base-color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.productList ul li .box2:hover:after {
    bottom: 0
}

.productList ul li .box2 .text {
    display: none
}

.productList ul li .box2:after {
    display: none
}

.productList ul li .box2 {
    transition: all .8s ease
}

.productList ul li .box2 .p-logo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2
}

.product-page .productList ul li:hover .p-logo img {
    transform: scale3d(1,1,1);
    transition: all .8s ease
}

.productList ul li .box2 .p-logo img {
    padding-top: 15px;
    padding-left: 15px;
    max-width: 150px
}




.prodet-page {
  position: relative;
}
.prodet-page .prodet-1 {
  background: #eee;
}
.prodet-page .prodet-1 .box {
  margin: -15px;
}
.prodet-page .prodet-1 .right {
  padding: 15px;
}
.prodet-page .prodet-1 .right .small{
  text-align: left;
  margin-top: 40px;
}
.prodet-page .prodet-1 .right .txtcontent{
  line-height: 2;
  max-height: max-content;
  overflow: auto;
}
.prodet-page .prodet-1 .right .txtcontent ul li{
  padding: 20px 0;
}

.prodet-page .prodet-1 .right .txtcontent ul li.active em{
  display: block;
}

.prodet-page .prodet-1 .right .txtcontent ul li+li{
  border-top: 1px solid #000;
}
.prodet-page .prodet-1 .right .txtcontent ul li strong{
  display: block;
  font-size: 22px;
  font-family: arial;
  padding: 0 20px;
  position: relative;
  cursor: pointer;
}

.prodet-page .prodet-1 .right .txtcontent ul li strong::before{
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 0;
}

.prodet-page .prodet-1 .right .txtcontent ul li.active strong::before{
  content: "\f107";
}

.prodet-page .prodet-1 .right .txtcontent ul li em{
  font-size: 16px;
  margin-top: 15px;
  padding: 0 20px;
  display: none;
  line-height: 2;
}

.prodet-page .prodet-1 .left {
  padding: 15px;
}
.prodet-page .prodet-1 .left .gallery-thumb {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}
.prodet-page .prodet-1 .left .gallery-thumb ul {
  margin: -4px;
}
.prodet-page .prodet-1 .left .gallery-thumb ul .slick-track{
  margin-left: 0;
}
.prodet-page .prodet-1 .left .gallery-thumb ul li {
  padding: 4px;
}
.prodet-page .prodet-1 .left .gallery-thumb ul li a {
  background: #ededed;
  display: block;
}
.prodet-page .prodet-1 .left .big {
  width: 100%;
  display: inline-block;
  position: relative;
}
.prodet-page .prodet-1 .left .big .play{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.prodet-page .prodet-1 .small ul {
  margin: -30px;
}
.prodet-page .prodet-1 .small ul li {
  padding: 30px;
}
.prodet-page .prodet-1 .small img {
  border: 1px solid #dadada;
  cursor: pointer;
}
.prodet-page .prodet-1 a.contact {
  display: inline-block;
  width: 200px;
  line-height: 50px;
  text-align: center;
  color: #FFFFFF;
  background-color: #093a95;
  border-radius: 25px;
  margin-right: 20px;
  transition: .5s ease;
  margin-bottom: 20px;
}
.prodet-page .prodet-1 a.contact:hover{
  box-shadow: 0 0 10px rebeccapurple;
}
.prodet-page .prodet-1 .share {
  display: inline-block;
}
.prodet-page .prodet-1 .share a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
}
.prodet-page .prodet-1 .share a + a {
  margin-left: 15px;
}
.prodet-page .prodet-1 .share a:nth-child(1) {
  color: #FFFFFF;
  background-color: #00aced;
}
.prodet-page .prodet-1 .share a:nth-child(2) {
  color: #FFFFFF;
  background-color: #3b5999;
}
.prodet-page .prodet-1 .share a:nth-child(3) {
  color: #FFFFFF;
  background-color: #cb2027;
}

.prodet-page .prodet-2{
  background-color: #f3f3f3;
  line-height: 32px;
}
.prodet-page .prodet-2 table{
  table-layout: fixed;
}
.prodet-page .prodet-2 h3{
  font-size: 24px;
    font-family: var(--font);
    background: var(--color);
    color: white;
    padding: 15px;
    text-transform: capitalize;
}
.prodet-page .prodet-2 strong{
  font-size: 24px;
  display: block;
  /*background: var(--color);*/
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color)), to(rgba(12, 65, 149, 0.1)));
  background: -webkit-linear-gradient(left, var(--color) 50%, rgba(12, 65, 149, 0.1));
  background: -moz-linear-gradient(left, var(--color) 50%, rgba(12, 65, 149, 0.1));
  background: linear-gradient(to right, var(--color) 50%, rgba(12, 65, 149, 0.1));
  color: white;
  padding: 15px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.prodet-page .prodet-2 strong span{
  font-size: inherit !important;
}
.prodet-page .prodet-2 table tr:first-child{
  font-family: var(--font);
  color: #093a95;
  font-size: 20px;
}

.prodet-page .prodet-3 ul {
  margin: -18px;
}
.prodet-page .prodet-3 ul li {
  padding: 18px;
}
.prodet-page .prodet-3 img {
  border: 1px solid #dadada;
}


.prodet-page .prodet-3 .arrow {
  font-size: 20px;
  width: 37px;
  height: 44px;
  line-height: 44px;
  background-color: #e3e3e3;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.prodet-page .prodet-3 .arrow_l {
  left: -60px;
}
.prodet-page .prodet-3 .arrow_r {
  right: -60px;
}



.prodet-page .prodet-4 .grid-box{
  margin: -15px;
}
.prodet-page .prodet-4 .left{
  padding: 15px;
}

.prodet-page .prodet-4 .right{
  padding: 15px;
}

.prodet-page .prodet-4 .right .text{
  margin-top: 50px;
}

.prodet-page .prodet-4 table td,
.prodet-page .prodet-4 table th{
  border: none;
  padding: 15px 5px;
}

.prodet-page .prodet-4 table tr{
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.prodet-page .prodet-4 table tr td:nth-child(1){
  width: 30%!important;
}
.prodet-page .prodet-4 table tr td:nth-child(2){
  width: 30%!important;
}
.prodet-page .prodet-4 table tr td:nth-child(3){
  width: 40%!important;
}

.prodet-page .prodet-5 video{
  width: 100%;
}
.prodet-page .prodet-5 .play {
  width: 96px;
  height: 96px;
  line-height: 96px;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.71);
  cursor: pointer;
  cursor: hand;
}
.prodet-page .prodet-5 .play img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: 5px;
}
.prodet-page .prodet-5 .play::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.25);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.news-page {
  padding: 80px 0;
}
.news-page .sidebar-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.news-page .sidebar-box .sidebar-left {
  border-left: 1px solid #e7e7e7;
}
.news-page .sidebar-box .sidebar-left .inner {
  margin: 0 0 0 auto;
  padding-left: 0px;
}
.news-page .sidebar-box .sidebar-right .news-list {
  padding-right: 85px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li {
  margin-bottom: 75px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li:last-child {
  margin-bottom: 0;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .n-img {
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .n-img img {
  width: 100%;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category {
  padding: 0 5px;
  margin-left: 4px;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  -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;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category:hover {
  background: var(--primary);
  color: #fff;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .category 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);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content h4 {
  font-size: 35px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 15px;
  font-family: 'DINCond';
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content h4:hover {
  color: var(--primary);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time {
  font-size: 14px;
  color: #aaa;
  font-family: var(--font);
  text-transform: uppercase;
  padding-top: 12px;
  margin-bottom: 20px;
  position: relative;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  border-top: 1px solid #aaa;
  left: 0;
  top: 0;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .time span {
  color: #000;
  margin-left: 10px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 80%;
  height: 1px;
  border-top: 1px solid #e7e7e7;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font);
  background: #000;
  padding: 15px 35px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more:hover::after {
  width: 100%;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.news-page .sidebar-box .sidebar-right .news-list ul li .content .link .more::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.news-page .sidebar-box .sidebar-left .inner {
    margin: 0 0 0 auto;
    padding-left: 0;
}
/*.inner-page.news-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}*/
.inner-page.news-page .sidebar-box .sidebar-left {
  width: 28%;
  padding-left: 20px;
}

.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 1;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  font-family: var(--font);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 14px;
  color: #555555;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/icon-search-black.png) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li {
  padding: 4px 0;
  font-size: 16px;
  line-height: 2;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active a {
  color: var(--primary);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:first-child {
  padding-top: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  color: #000000;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover {
  color: var(--primary);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 7px 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 18px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--primary);
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 1;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(/eastrongroup/2022/08/04/news.jpg) no-repeat center center;
  padding: 215px 40px 55px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  font-family: var(--font);
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  color: #90b6df;
  display: block;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font);
  background: #000;
  padding: 12px 30px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--primary));
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: -1;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li {
    width: 100%;
    padding: 30px 40px;
    border-bottom: 1px dashed #ccc;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content {
    display: flex;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center {
    font-size: 24px;
    color: #272727;
    text-transform: uppercase;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .left.txt-center span {
    background-color: var(--color);
    color: #fff;
    font-size: 28px;
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 6px 0;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right {
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid #ccc;
    color: #2b2b2b;
}
.inner-page.news-page h1, .inner-page.news-page h2, .inner-page.news-page h3 {
    font-family: var(--font);
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right h3 a {
    font-size: 22px;
    font-family: var(--font);
    line-height: 2;
    color: #000;
    transition: 0.5s;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right p {
    line-height: 2;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right a {
    font-size: 16px;
    color: var(--color);
    transition: all .5s ease;
    text-transform: capitalize;
}
.inner-page.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li:hover a {
  font-family: var(--font);
}

.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box {
  display: flex;
  max-height: 350px;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img {
  width: 45%;
}
.inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .box .box-img img {
  object-fit: cover;
  max-height: 350px;
}
.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}
.inner-page .sidebar-box{
  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-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content {
    padding-right: 85px;
}
.newdet-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;
}
.newdet-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;
}
.newdet-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);
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .category .time {
    font-size: 14px;
    margin-left: 12px;
    color: #aaa;
    font-family: var(--font);
    text-transform: uppercase;
    position: relative;
}
.newdet-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-family: var(--font);
    border-bottom: 1px solid #e7e7e7;
}

.newdet-page .sidebar-box .sidebar-right .newdet-content .content {
    font-size: 16px;
    line-height: 2;
    color: #555;
}
.newdet-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;
}
.newdet-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;
}
.newdet-page .sidebar-box .sidebar-right .relate-product {
    margin-top: 40px;
}
.newdet-page .sidebar-box .sidebar-right .relate-product h3 {
    font-size: 30px;
    line-height: 1;
}
.newdet-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;
}
.newdet-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;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.left {
    padding-right: 30px;
    border-right: 1px solid #e7e7e7;
}
.newdet-page .sidebar-box .sidebar-right .newdet-content .m-link a.right {
    padding-left: 30px;
}
.newdet-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;
}
.history-page{
  padding: 100px 0;
}
.history-page ul li{
  border-bottom: 1px solid #eee;
  padding: 50px 0;
}
.history-page ul li .title{
    width: 20% !important;
    color: var(--color);
}
.history-page ul li .content{
  width: 80% !important;
  font-size: 18px;
}
.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-family: var(--font);
}
.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 a{
  display: flex;
  justify-content: center;
  padding: 35px;
}
.newdet-page .app-related-pro ul li p{
  text-align: center;
  padding: 6px 10px;
  font-family: var(--font);
  font-size: 18px;
}
.newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content .right{
  padding-left: 20px;
}
.newdet-page.appdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title{
  font-size: 28px;
}

.baseMbx {
  padding: 25px 0;
}
.baseMbx .text {
  color: #777777;
}
.baseCateNav {
  margin-top: 50px;
  overflow: hidden;
}
.baseCateNav ul {
  border-bottom: 1px solid #d6d6d6;
}
.baseCateNav li {
  display: inline-block;
  padding: 20px 0;
  position: relative;
}
.baseCateNav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  border-left: 1px solid #d6d6d6;
}
.baseCateNav li a {
  display: inline-block;
  color: #777777;
  position: relative;
}
.baseCateNav li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  border-bottom: 3px solid transparent;
  border-radius: 3px;
}
.baseCateNav li.active a {
  font-family: var(--font);
  color: var(--color);
}
.baseCateNav li.active a::before {
  border-color: var(--color);
}
.baseCateNav.wAuto ul {
  margin-right: -25px;
}
.baseCateNav.wAuto li {
  width: auto;
  padding: 0;
  margin: 0;
  margin-right: 25px;
  margin-bottom: 25px;
}
.baseCateNav.wAuto li::before {
  display: none;
}
.baseCateNav.wAuto li a::before {
  display: none;
}
@media screen and (max-width: 1600px) {
  .service-page .service-1 ul li .box h4{
    font-size: 22px;
    margin: 15px 0 10px;
  }
  .inner-banner{
    min-height: unset;
  }
  .inner-banner .mbx .search-box{
    margin-top: 30px;
  }
  .inner-banner .ui.container {
    max-width: 1170px;
  }
  .inner-banner .mbx h2{
    font-size: 46px;
  }
  .inner-banner .mbx ul{
    flex-wrap: wrap;
  }
  .inner-banner.product .mbx ul{
    margin-top: 10px;
  }
  .inner-banner .mbx ul li{
    margin-bottom: 15px;

  }
  .inner-banner .mbx ul li a{
    padding-bottom: 0;
  }
  .about-page .about-1 .left ul li h2 {
    font-size: 64px;
  }
  .about-page .about-5 {
    padding-top: 110px;
  }
  .solution-page .box-list ul li .content h2{
    font-size: 44px;
  }
}
@media screen and (max-width: 1550px){
  #fullpage .i-about{
    padding-bottom: 80px;
  }
  #fullpage .i-product{
    padding-top: 150px;
  }
}
@media screen and (max-width: 1400px) {
  .inner-banner .ui.container {
    max-width: 1000px;
  }
  .inner-banner .mbx h2 {
    font-size: 34px;
    line-height: 1.6;
  }
  .inner-banner .mbx ul {
    margin-top: 30px;
  }
  .service-page .service-2 .top .text h3,
  .about-page h2.title {
    font-size: 34px;
  }
  .about-page .about-1 .right {
    font-size: 18px;
    padding-left: 35px;
  }
  .about-page .about-1 .right p {
    font-size: 18px;
    margin-bottom: 26px;
  }
  .about-page .about-1 .left ul li h2 {
    font-size: 50px;
  }
  .inner-page .ui.container,
  .seoPublic .ui.container {
    max-width: 1218px;
  }
  .about-page .about-2 .bottom .ui.container .left h3 {
    font-size: 32px;
  }
  .about-page .about-6 ul {
    margin-right: -50px;
  }
  .about-page .about-6 ul li {
    padding-right: 50px;
  }
  .advantages-page ul li {
    margin-bottom: 90px;
  }
  .sale-page .sale-2 .ui.container {
    margin-top: 12%;
  }
  .inner-banner .mbx h2:after {
    left: -120px;
    top: -140px;
    width: 250px;
    height: 270px;
    background-size: contain;
  }
  .inner-banner .mbx ul li{
    margin-bottom: 3px;
  }
  .inner-banner .mbx .search-box form input {
    width: 20%;
  }
  .service-page .service-1 ul li .box {
    padding: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .inner-banner .mbx h2{
    padding-left: 0px;
  }
  .inner-banner .mbx .font-16.mt-48{
    margin-top: 25px;
    line-height: 2;
  }
  .inner-banner .mbx h2:after { 
    left: -36px;
    top: -95px;
    width: 196px;
    height: 195px; 
    background-size: contain;
    display: none;
  }
  .inner-banner .mbx ul li {
    font-size: 17px;
    margin-right: 36px;
  }
  .inner-banner .mbx h2 {
    font-size: 36px;
    line-height: 30px;
  }
  .history-page ul li .title h5{
    font-size: 30px;
  }
  .about-page .about-3 {
    padding-top: 85px;
    padding-bottom: 70px;
  }
  .advantages-page ul li .text h3 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .advantages-page ul li .text .content {
    font-size: 22px;
    line-height: 36px;
  }
  .sale-page .title {
    font-size: 32px;
  }
  .sale-page .sale-2 .content .text {
    margin: 40px 0 50px;
  }
  .solution-page .solution-1 h1 {
    font-size: 30px;
  }
  .solution-page .box-list ul li .content h2 {
    font-size: 46px;
  }
  .service-page .service-1 ul li .box {
    padding: 50px 20px;
  }
  .service-page .service-3 {
    padding: 70px 0;
  }
  .service-page .service-1 ul li .box .text {
    line-height: 1.6;
  }
  .font-48 {
      font-size: 36px;
  }
}
@media screen and (max-width: 1250px){
   .news-page,
  .newdet-page {
    padding: 60px 0;
  }
  .news-page .newsList {
    margin-bottom: 50px;
  }
  .about-page .about-4 .tab li {
    font-size: 20px;
    line-height: 1.4;
  }
  .about-page .about-4 .tab {
    padding-bottom: 10px;
  }
  .about-page .about-4 .tab li a {
    padding-bottom: 7px;
  }
  .about-page .about-4{
    background-size: cover;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-2 .det1{
    width: 100%;
    overflow-x: auto;
  }
  .prodet-page .prodet-2 table {
    table-layout: initial;
  }
  .prodet-page .prodet-2 table tr td{
    min-width: 180px;
  }
  .inner-page.news-page .sidebar-box .sidebar-left,
  .inner-page .sideLeft{
    display: none;
  }
  .product-page .productList ul li{
    width: 100% !important;
  }
  .inner-page .sidebar-box .sidebar-right,
  .inner-page .sideRight{
    width: 100%;
  }
  .history-page ul li .content,
  .history-page ul li .title{
    width: 100% !important;
  }
  .prodet-page .prodet-1 .left {
    width: 100%!important;
  }
  .prodet-page .prodet-1 .right {
    width: 100%!important;
  }
  .prodet-page .prodet-1 a.contact {
    width: 150px;
    margin-right: 10px;
  }
  .prodet-page .prodet-1 .small ul {
    margin: -15px;
  }
  .prodet-page .prodet-1 .small ul li {
    padding: 15px;
  }

  .prodet-page .prodet-3 .arrow{
    display: none;
  }
  .about-page .about-1 .left ul {
    display: none;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-page .about-1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about-page .about-2 .bottom .ui.container .left h3 {
    font-size: 27px;
  }
  .about-page .about-3 .left {
    padding-right: 30px;
  }
  .about-page .about-3 .left .content p {
    margin-bottom: 25px;
  }
  .about-page .about-4 .content .box {
    max-width: 100%;
  }
  .advantages-page ul li:nth-child(2n) .text {
    padding-left: 30px;
  }
  .advantages-page ul li .text {
    padding-right: 30px;
  }
  .sale-page .sale-1 .top .left {
    display: none;
  }
  .sale-page .sale-1 .top .right {
    width: 100%;
    padding-left: 0;
  }
  .sale-page .sale-2 .content .text {
    margin: 15px 0 24px;
    max-width: 100%;
  }
  .sale-page .sale-2 .content ul li {
    margin-right: 60px;
  }
  .sale-page .sale-2 .content ul li h3,
  .sale-page .sale-2 .content ul li p {
    font-size: 26px;
  }
  .sale-page .sale-3 {
    padding: 95px 0;
  }
  .sale-page .sale-3 .box{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sale-page .sale-3 .box .left {
    width: 100%;
  }
  .sale-page .sale-3 .box .right {
    /*display: none;*/
    width: 100%;
    height: 400px;
    margin-top: 40px;
  }
  .sale-page .sale-3 .box .right > img{
    object-fit: cover;
  }
  .sale-page .sale-3 .box .right .content{
    padding: 0 15px;
  }
  .solution-page .box-list ul li .content h2 {
    font-size: 35px;
  }
  .service-page .service-1 {
    padding: 50px 0 60px;
  }
  .service-page .service-2 .top .text {
    width: 100%;
    padding-right: 0;
  }
  .service-page .service-2 .top .img {
    display: none;
  }
  .service-page .service-2 .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-2 .bottom .text {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .service-page .service-4 ul.grid-box .column .box .content {
    max-width: 260px;
    padding: 20px;
  }
  .inner-banner .mbx ul{
    display: none;
  }
  .service-page .service-1 ul li {
    width: 100% !important;
  }
  .service-page .service-1 ul li .box{
    height: auto;
  }
   
  .contact-page .contact-2 .left {
    width: 100%;
  }
  .contact-page .contact-2 .right {
    display: none;
  }
  .inner-banner {
    margin-top: 120px;
  }
  .font-48 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .inner-banner .mbx ul {
    display: none;
  }
   .newdet-page .sidebar-box .sidebar-right .newdet-content h1.n-title{
     font-size: 20px;
   }
   .newdet-page .sidebar-box .sidebar-right .newdet-content{
     padding-right: 0;
   }
  .about-page h2.title {
    font-size: 28px;
  }
  .inner-banner {
    height: auto;
    background-attachment: unset;
  }
  .inner-banner .mbx h2 {
    font-size: 28px;
  }
  .inner-banner .mbx .search-box form input{
    padding-left: 10px;
  }
  .news-page .newsList{
    padding-right: 0;
  }
  .about-page .about-2 .top .play {
    width: 80px;
  }
  .about-page .about-2 .bottom .ui.container .left h3 {
    font-size: 22px;
    margin-left: 15px;
  }
  .about-page .about-2 .bottom .ui.container a.right {
    height: 45px;
  }
  .about-page .about-3 .left {
    width: 100%;
  }
  .about-page .about-3 .right {
    width: 100%;
  }
  .about-page .about-3 .left .content {
    margin-top: 15px;
  }
  .about-page .about-5 {
    padding-top: 55px;
    padding-bottom: 50px;
  }
  .advantages-page ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .advantages-page ul li .text {
    width: 100% !important;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 !important;
  }
  .advantages-page ul li .img {
    width: 100% !important;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }
  .advantages-page ul li .text .content {
    font-size: 18px;
    line-height: 30px;
  }
  .solution-page,
  .sale-page,
  .advantages-page {
    padding-top: 51px;
  }
  .sale-page {
    margin-top: 40px;
  }
  .sale-page .sale-1 {
    padding-bottom: 56px;
  }
  .sale-page .sale-2 {
    display: none;
  }
  .solution-page .solution-1 h1 {
    font-size: 26px;
  }
  .solution-page .box-list ul li .content h2 {
    font-size: 26px;
  }
  .solution-page .solution-1 .content {
    line-height: 34px;
  }
  .soldet-page .soldet-2 h2,
  .soldet-page .soldet-1 h1 {
    font-size: 34px;
  }

  .service-page .service-3 .text {
    margin: -20px;
  }
  .service-page .service-3 .text .column {
    width: 100%;
    padding: 20px;
  }
  .service-page .service-3 h2,
  .service-page .service-4 h2 {
    font-size: 30px;
  }
  .service-page .service-2 .top .text h3 {
    font-size: 24px;
    line-height: 2;
  }
   
   
   
  .contact-page .title,
  .newdet-page .newdet-2 h2 {
    font-size: 34px;
  }
  .newdet-page {
    padding: 56px 0 80px;
  }
  .contact-page .contact-2 .left .content ul li {
    width: 50%;
  }
  .contact-page .contact-2 .left .content ul li.add {
    width: 100%;
  }
  .contact-page {
    padding-top: 60px;
  }
  .contact-page .contact-2 {
    padding: 50px 0;
  }
  .service-page .service-4 ul li .box .column{
    width: 100%;
  }
  .service-page .service-4 ul li .box .column:nth-child(1) img{
    width: 100%;
  }
  .service-page .service-4 ul li .box .content{
    padding: 30px 0;
  }
   
  .m-link{
    font-size: 18px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .m-link .next{
    text-align: left;
    margin-top: 10px;
    width: 100%;
  }
  .sale-page .sale-1 .top .right{
    padding-right: 0;
  }
}

@media screen and (max-width: 630px){
  .inner-banner .mbx .search-box form{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .inner-banner .mbx .search-box form button,
  .inner-banner .mbx .search-box form input{
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 35px;
  }
  .inner-banner .mbx .search-box form input.inp1{
    border-radius: 35px;
  }
  .inner-banner .mbx .search-box{
    margin-top: 20px;
    z-index: 2;
    position: relative;
  }
}
@media screen and (max-width: 500px) {
  .font-36 {
    font-size: 20px;
    line-height: 2;
  }
  .inner-page h1.fenlei {
    font-size: 20px !important;
    line-height: 34px !important;
}
.product-page {
    padding: 30px 0 60px !important;
}
.inner-page .category-list,
.inner-banner .mbx h2.singxc,
.seoIndustry.Auxil-industry {
    display: none !important;
}
  .productList ul li .box2 {
    flex-direction: column;
  }
  .productList ul li .box2 .box-right {
    padding-left: 0;
    margin-top: 30px;
  }
  .gallery-page ul{
    margin: 0;
  }
  .product-page ul.list-box li.cat-one .img{
    margin-bottom: 50px;
  }
  .inner-banner .mbx h2 {
    font-size: 18px;
  }
  .newdet-page .newdet-1 h1{
    font-size: 20px;
  }
  .sale-page .title{
    text-align: center;
  }
  .about-page .about-3 .left{
    padding-right: 0;
  }
  .sale-page .sale-1 .bottom{
    margin-top: 45px;
  }
  .about-page .about-3 .left .content p,
  .about-page .about-1 .right p{
    font-size: 16px;
    line-height: 2;
  }
  .about-page .about-1 .right{
    max-height: 390px;
    overflow: auto;
  }
   
  .about-page .about-4 .content .box,
  .service-page .service-3 .text .content,
  .service-page .service-1 ul li .box .text,
  .about-page .about-6 ul li .text,
  .about-page .about-5 p,
  .about-page .about-3 .right ul li .content .text{
    line-height: 2;
  }
  .about-page .about-2 .bottom .ui.container .left h3{
    font-size: 18px;
  }
  .sale-page .sale-3 .box .left ul {
    margin-top: 30px;
  }
  .sale-page .sale-3 .box .left ul li{
    margin-bottom: 30px;
  }
  .about-page .about-4 .tab{
    margin-top: 10px;
  }
  .about-page .about-2 .bottom .ui.container .left {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-page .about-2 .bottom .ui.container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-4 {
    padding: 70px 0 40px;
  }
  .about-page h2.title {
    font-size: 20px;
    line-height: 2;
  }
  .about-page .about-6 {
    padding-top: 10px;
  }
  .advantages-page ul li .text h3 {
    font-size: 24px;
  }
   
  .sale-page .sale-3 .box .left {
    padding-right: 0;
  }
  .sale-page .sale-3 .box .left ul li:nth-child(4)::after {
    left: 70px;
  }
  .sale-page .sale-3 .box .left ul li:nth-child(5)::after {
    left: 0px;
  }
  .sale-page .sale-3 .box .left ul li:nth-child(6)::after {
    left: 70px;
  }
  .sale-page .sale-3 {
    padding: 44px 0;
  }
  .service-page .service-3 .text h4,
  .service-page .service-2 .top .text h5 {
    font-size: 20px;
    line-height: 2;
  }
  .service-page .service-4 p.text,
  .service-page .service-2 .bottom .text .content,
  .service-page .service-2 .top .text .content{
    line-height: 2;
  }
  .sale-page .title,
  .service-page .service-3 h2, 
  .service-page .service-4 h2 {
    font-size: 24px;
  }
  .solution-page .box-list ul li > img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .solution-page .box-list ul li .content h2 {
    font-size: 22px;
  }
  .soldet-page .soldet-2 h2,
  .soldet-page .soldet-1 h1 {
    font-size: 24px;
  }
  
  .sale-page .sale-3 .box .right .content p,
  .newdet-page .newdet-1 .content,
  .sale-page .sale-3 .box .left ul li,
  .sale-page .sale-1 .top .right .content{
    font-size: 16px;
    line-height: 2;
  }
  .sale-page .sale-3 .box .right .content a.contact{
    height: 42px;
    line-height: 42px;
  }
   
  .newdet-page .newdet-2 h2 {
    font-size: 26px;
  }
   
  .contact-page .title, .newdet-page .newdet-2 h2 {
    font-size: 24px;
  }
  .contact-page .contact-1 form textarea,
  .contact-page .contact-1 form p,
  .contact-page .contact-1 form input{
    font-size: 18px;
  }
  .contact-page .contact-2 .left{
    padding-right: 0;
  }
  .contact-page .contact-2 .left .content ul li,
  .contact-page .contact-1 form input {
    width: 100%;
  }
  .about-page .about-2 .bottom .ui.container .right,
  #footer .wrap .left .bottom .f-footer ul{
    display: none;
  }
  
  .soldet-page{
    padding-top: 60px;
  }
  .inner-banner .mbx h2:after{
    top: -105px;
    left: -20px;
    width: 180px;
    height: 186px;
  }
  .about-page h2.title{
    padding-bottom: 0;
  }
  .solution-page .solution-1 ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .solution-page .solution-1 ul li{
    width: 33%;
    text-align: center;
    margin: 0;
    margin-bottom: 15px;
  }
  .sale-page .sale-3 .box .right h2{
    text-align: left;
  }
  
  .about-page .about-2 .bottom{
    padding: 16px 0 5px;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li{
    padding: 30px 0;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content{
    flex-wrap: wrap;
  }
  .inner-page.news-page .sidebar-box .sidebar-right .list.newsList ul.grid-box.three li .content .right{
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border: none;
  }
  .about-page .about-4 .tab {
      flex-direction: column;
      border: none;
      margin-bottom: 0;
  }
  .about-page .about-4 .tab li {
    margin-bottom: 30px;
  }
  .about-page .about-4 .tab li:hover a::after {
    width: 0;
  }
  .about-page h2.title {
    margin-bottom: 30px;
  }
}

.xinwnebt{
    font-size: 18px;
    line-height: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 300px;
    display: inline-block;
  }
  .xinwennr{
    font-size: 16px;
    line-height: 2;
  }
  .shouyehl h1{
   display: inline;
  }
  .dhkintlhide{
    font-size: 30px;
    font-family: var(--font);
    font-style: italic;
    line-height: 2;
    margin-bottom:150px;
    margin-top: -120px;
  }
  .tgbhyjukm{
    font-size: 16px;
    line-height: 2;
  }
  .tgbhyjukm span{
   font-family: var(--font);
  }

.pro3-page ul.list-box li.cat-one.active{
  display: block;
}
.pro3-page .dhkintlhide {
  margin-bottom: 75px;
  margin-top: -80px;
}
.dhkintslhide{
  font-size: 14px;
  line-height: 2;
}

.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(--font);
}


.seoPublic .title {
    font-size: 32px;
    font-family: var(--font);
    line-height: 1.4;
    margin-bottom: 2em;
}

.seoPublic > div {
    padding: 60px 0;
}

.seoPublic > div:nth-child(odd) {
    background: #fafafa;
}

.seoPublic .Auxil-about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.seoPublic .Auxil-about .box .left {
    width: 40%;
}

.seoPublic .Auxil-about .box .left .img {
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: block;
}

.seoPublic .Auxil-about .box .right {
    width: 60%;
    padding-left: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.seoPublic .Auxil-about .box .right div.h3 {
    font-size: 24px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1em;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-height: 400px;
    overflow: auto;
}

.seoPublic .Auxil-honor .list ul {
    margin: -10px;
}

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

.seoPublic .Auxil-honor .list ul li a {
    display: block;
}

.seoPublic .Auxil-honor .list ul li a img {
    width: 100%;
}

.seoPublic .Auxil-news .list ul {
    margin: -13px;
}

.seoPublic .Auxil-news .list ul li {
    padding: 13px;
}

.seoPublic .Auxil-news .list ul li a.img-box {
    display: block;
    height: 240px;
    background-size: cover;
    background-position: center center;
}

.seoPublic .Auxil-news .list ul li .content {
    margin-top: 30px;
}

.seoPublic .Auxil-news .list ul li .content div.h6 {
    font-size: 22px;
    line-height: 34px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-news .list ul li .content div.h6:hover {
    color: var(--color);
}

.seoPublic .Auxil-news .list ul li .content time {
    font-size: 14px;
    margin-top: .5em;
    display: block;
}

.seoPublic .Auxil-news .list ul li .content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    margin: 1em 0;
}

.seoPublic .Auxil-news .list ul li .content a.link {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.seoPublic .Auxil-news .list ul li .content a.link:hover {
    border-color: var(--color);
    color: var(--color);
}

.seoPublic .Auxil-form .form ul {
    margin: -10px;
}

.seoPublic .Auxil-form .form ul li {
    padding: 10px;
}

.seoPublic .Auxil-form .form ul li input,
.seoPublic .Auxil-form .form ul li textarea {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-form .form ul li textarea {
    height: 100px;
}

.seoPublic .Auxil-form .form ul li input:focus,
.seoPublic .Auxil-form .form ul li textarea:focus {
    border-color: var(--color);
}

.seoPublic .Auxil-form .form ul li.wid-100 {
    width: 100%;
}

.seoPublic .Auxil-form .form ul li input[type="submit"] {
    width: auto;
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--color);
    color: whitesmoke;
    border: none;
}

.seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
    background: #222;
}

.seoPublic .seoIndustry .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.seoPublic .text a {
    color: inherit;
}

.seoPublic .text a:hover {
    text-decoration: underline;
}

.seoPublic .Auxil-through {
    padding: 15px 0;
    background: none !important;
}

.seoPublic .Auxil-through a {
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    font-size: 14px;
    color: black;
    border: 1px solid #eee;
    background: #f8f8f8;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-through a:hover {
    background: var(--color);
    color: white;
}

.seoPublic .Auxil-related .list ul {
    margin: -20px -25px;
}

.seoPublic .Auxil-related .list ul li {
    padding: 20px 25px;
}
.seoPublic .Auxil-related .list ul li a{
    display: block;
  }
.seoPublic .Auxil-related .list ul li .img{
    background-color: #f6f6f6;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 50px 0px 50px 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }
.seoPublic .Auxil-related .list ul li .img .icon-plus {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 49px;
    height: 48px;
    background-color: var(--color);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transform-origin: right top;
    border-radius: 24px 0px 24px 24px;
    transition: 0.3s;
  }
.seoPublic .Auxil-related .list ul li .slide-box:hover .img .icon-plus{
    transform: scale(1.306);
  }
 .seoPublic .Auxil-related .list ul li .slide-box .title {
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
  }
.seoPublic .Auxil-related .list ul li .slide-box:hover .title{
    color: var(--color);
  }

@media screen and (max-width: 1400px) {
    .seoPublic .title {
        font-size: 28px;
        margin-bottom: 1.5em;
    }

    .seoPublic .Auxil-about .box .right div.title{
        font-size: 20px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea,
    .seoPublic .Auxil-about .box .right .text,
    .seoPublic .Auxil-news .list ul li .content p,
    .seoPublic .seoIndustry .text {
        font-size: 14px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 18px;
    }

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

    .seoPublic .Auxil-related .list ul {
        margin: -15px;
    }
}

@media screen and (max-width: 1000px) {
    .seoPublic .title {
        font-size: 24px;
        margin-bottom: 1em;
    }

    #cp-Nav {
        display: block;
    }

    #cp-Nav .nav {
        padding: 0 15px;
    }

    #cp-Nav .nav div.title {
        font-size: 18px;
        font-family: var(--font);
        padding: 8px 10px;
        background: var(--color);
        border-radius: 5px;
        color: white;
    }

    #cp-Nav .nav i.mask {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 230;
        background: rgba(0, 0, 0, 0.2);
    }

    #cp-Nav .nav > ul {
        display: none;
    }

    #cp-Nav .nav ul {
        position: fixed;
        top: 10%;
        max-height: 80%;
        left: 5%;
        width: 90%;
        padding: 20px;
        border-radius: 5px;
        background: white;
        z-index: 300;
        font-size: 16px;
        overflow: auto;
    }

    #cp-Nav .nav ul ul {
        padding: 0 10px;
        font-size: 14px;
        position: static;
        max-height: none;
        width: 100%;
        margin: 10px 0;
    }

    #cp-Nav .nav ul li a {
        display: block;
        padding: 5px 0;
        line-height: 28px;
    }

    .seoPublic .Auxil-about .box {
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .seoPublic .Auxil-about .box .left {
        width: 100%;
        padding: 0;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 300px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 18px;
    }

    .seoPublic > div {
        padding: 30px 0;
    }
    .seoPublic .Auxil-about .box .right .text {
        max-height: none;
    }
}

.contact-page.pro{
  padding:80px 0;
}


@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;
  }
}
.support-page .title{
  font-family: var(--font);
}
.support-1 {
  padding-top: 100px;
}
.support-1 .desc {
  max-width: 800px;
  margin: auto;
}
.support-1 .list ul {
  margin-right: -35px;
}
.support-1 .list li {
  padding-right: 35px;
  margin-bottom: 35px;
}
.support-1 .list .box {
  position: relative;
  overflow: hidden;
}
.support-1 .list .box .text {
  background-color: #f0f7ff;
  padding: 0 20px 40px;
}
.support-1 .list .box .text i {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  margin: -50px auto 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.support-1 .list .box .text i img {
  vertical-align: middle;
}
.support-1 .list .box .text p {
  color: #777777;
}
.support-2 {
  padding: 130px 0;
}
.support-2 .box {
  padding: 70px 80px;
  border: 1px solid #c6c6c6;
}
.support-2 .form ul {
  margin: -12px;
}
.support-2 .form li {
  padding: 12px;
}
.support-2 .form li:last-child{
  text-align: center;
}
.support-2 .form li.wid-100 {
  width: 100%;
}
.support-2 .form input,
.support-2 .form textarea {
  padding: 20px;
  width: 100%;
  font-size: 18px;
  background-color: #f7f9ff;
  border: none;
}
.support-2 .form input[type='submit'] {
  padding: 15px;
  font-size: 24px;
  font-family: var(--font);
  max-width: 290px;
  color: #FFFFFF;
  background-color: var(--color1);
}
.support-2 .form textarea {
  height: 280px;
}
@media (max-width: 1024px) {
  .support-1 {
    padding-top: 60px;
  }
  .support-2 {
    padding: 60px 0;
  }
  .support-2 .box {
    padding: 35px;
  }
  .support-2 .form input,
  .support-2 .form textarea {
    padding: 15px;
    font-size: 16px;
  }
  .support-2 .form textarea {
    height: 200px;
  }
  .support-2 .form input[type='submit'] {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .support-2 .box {
    padding: 15px;
  }
  .support-2 .form input,
  .support-2 .form textarea {
    padding: 10px;
    font-size: 14px;
  }
  .support-2 .form textarea {
    height: 150px;
  }
}
@media (max-width: 500px) {
  .support-2 .form input[type='submit'] {
    font-size: 16px;
    max-width: 100%;
  }
}
.video-page .page-title .title{
  font-family: var(--font);
}
.video-1 {
  padding: 90px 0;
}
.video-1 + .video-1 {
  padding-top: 0;
}
.video-1 .list ul {
  margin: -35px -15px;
}
.video-1 .list li {
  padding: 35px 15px;
}
.video-1 .list .name {
  padding: 30px;
  background-color: #f0f7ff;
}
.video-1 .list .img .play {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 1240px) {
  .video-1 .list .name {
    padding: 15px;
  }
}
@media (max-width: 1024px) {
  .video-1 {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .video-1 .list ul {
    margin: -15px;
  }
  .video-1 .list li {
    padding: 15px;
  }
}
.faq-page .title{
  font-family: var(--font);
}
.faq-1 {
  padding-top: 100px;
}
.faq-1 .left {
  vertical-align: middle;
}
.faq-1 .right {
  padding-left: 55px;
  vertical-align: middle;
}
.faq-1 .right .title{
  font-family: var(--font);
}
.faq-1 .right .text {
  color: #777777;
}
.faq-2 {
  padding: 120px 0 150px;
}
.faq-2 .title{
  font-family: var(--font);
}
.faq-2 .desc {
  color: #777777;
}
.faq-2 .list {
  margin-top: 50px;
}
.faq-2 .list li {
  padding: 20px 50px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.faq-2 .list li:not(.active) {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq-2 .list li:not(:last-child) {
  margin-bottom: 27px;
}
.faq-2 .list li.active {
  background-color:#f0f7ff;
}
.faq-2 .list li.active .name i {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.faq-2 .list li .name{
  font-family: var(--font);
}
.faq-2 .list li .name i {
  float: right;
  margin-top: 5px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.faq-2 .list li .text {
  margin-top: 15px;
  padding-top: 15px;
  color: #777777;
  border-top: 1px solid #cacaca;
  display: none;
}
@media (max-width: 1024px) {
  .faq-1 {
    padding-top: 60px;
  }
  .faq-1 .left {
    width: 100%!important;
  }
  .faq-1 .right {
    width: 100%!important;
    padding: 0;
    margin-top: 40px;
  }
  .faq-2 {
    padding: 60px 0;
  }
  .faq-2 .list li {
    padding: 15px 25px;
  }
}
.download-page .title{
  font-family: var(--font);
}
.download-1 {
  margin-top: 90px;
}
.download-1 .box {
  padding: 50px 50px 70px;
  background-color: #f0f7ff;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.download-1 ul {
  margin: 0 -20px;
}
.download-1 li {
  padding: 0 20px;
}
.download-1 li label {
  display: inline-block;
  margin-left: 25px;
  margin-bottom: 10px;
}
.download-1 li input,
.download-1 li select {
  width: 100%;
  height: 48px;
  padding: 0 25px;
  font-size: 18px;
  border: none;
}
.download-1 li select {
  background: #FFFFFF url(../images/arrow_down.png) no-repeat right 1rem center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.download-2 .list ul {
  margin: -10px;
}
.download-2 .list li {
  padding: 10px;
}
.download-2 .list li > div {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 48px;
  padding-right: 22px;
  line-height: 44px;
  background-color: #f1f1f1;
  overflow: hidden;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.download-2 .list li > div:hover {
  background-color: #f0f7ff;
}
.download-2 .list li > div:hover .btn {
  opacity: 1;
}
.download-2 .list li img {
  vertical-align: middle;
}
.download-2 .list li .icon {
  float: left;
}
.download-2 .list li .name {
  padding-left: 65px;
  line-height: 1.5;
  margin-top: 10px;
}
.download-2 .list li .btn {
  float: right;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.download-2 {
  padding: 120px 0 100px;
}
@media (max-width: 1024px) {
  .download-1 {
    margin-top: 60px;
  }
  .download-1 li {
    margin-bottom: 15px;
    width: 100%!important;
  }
  .download-1 .box {
    padding: 45px;
  }
  .download-2 {
    padding: 60px 0;
  }
  .download-2 .list li {
    width: 100%!important;
  }
}
@media (max-width: 500px) {
  .download-1 .box {
    padding: 20px;
  }
  .download-2 .list li > div {
    padding: 15px;
  }
  .download-2 .list li .name {
    padding-left: 50px;
  }
}

.box-right a p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 14px;
    line-height: 2;
}