@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url(../fonts/Montserrat-SemiBold.ttf) format('truetype'), url(../fonts/Montserrat-SemiBold.eot) format('eot'), url(../fonts/Montserrat-SemiBold.woff) format('woff'), url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat-Regular';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Cambria-Bold';
  src: url(../fonts/Cambria-Bold.ttf) format('truetype'), url(../fonts/Cambria-Bold.eot) format('eot'), url(../fonts/Cambria-Bold.woff) format('woff'), url(../fonts/Cambria-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Ebrima';
  src: url(../fonts/Ebrima.ttf) format('truetype'), url(../fonts/Ebrima.eot) format('eot'), url(../fonts/Ebrima.woff) format('woff'), url(../fonts/Ebrima.woff2) format('woff2');
}
textarea::-webkit-input-placeholder {
  color: #848484;
}
input::-webkit-input-placeholder {
  color: #848484;
}
input::-moz-placeholder {
  color: #848484;
}
input:-moz-placeholder {
  color: #848484;
}
input:-ms-input-placeholder {
  color: #848484;
}
.font-bold {
    font-family:'Montserrat-SemiBold';
}
body {
  font-family: 'Ebrima';
  margin: 0;
  padding: 0;
  --color: #3dbdff;
  --font: 'Montserrat-SemiBold';
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
 #seo_public_from h4{
  font-size:36px;
  font-family:'Cambria-bold';
  color:#333;
  font-weight: unset;
 }
.ui.container {
  padding: 0 15px;
  margin: 0 auto;
  width: 1700px;
  position: relative;
}
.topup{
  position:fixed;
  right:2%;
  bottom:10%;
  width: 60px;
  height: 60px;
  background-color:var(--color);
  border-radius: 50%;
  font-size: 24px; 
  text-align: center;
  line-height: 60px;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  transition: background-color 0.5s;
}
.topup:hover{
  background-color:#222;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
#header .nav {
  position: relative;
  height: 100px;
  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 {
  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: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-radius: 10px;
}
#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: 55px;
  font-size: 18px;
  color: #333;
  font-family: 'Montserrat-Regular';
  font-weight: bold;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 2px solid transparent;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
  -webkit-transition: .5s all;
  -moz-transition: .5s all;
  transition: .5s all;
  border-color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .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;
}
#header .nav .ui.menu .right .h-inquiry {
  margin-left: 30px;
  margin-right: 20px;
  cursor: pointer;
}
#header .nav .ui.menu .right .h-search form {
  position: relative;
}
#header .nav .ui.menu .right .h-search form input[type='text'] {
  width: 250px;
  height: 40px;
  font-size: 14px;
  border-radius: 35px;
  background-color: #f7f7f7;
  border: none;
  padding: 0 50px 0 25px;
  font-family: 'Montserrat-Regular';
}
#header .nav .ui.menu .right .h-search form input[type='submit'] {
  width: 24px;
  height: 24px;
  background: url("../images/search.png") no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
}
.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;
  width: 50%;
}
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;
}
.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: 1.8;
}
#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:'Montserrat-SemiBold';
  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 {
  margin-left: 95px;
}
.language-box .zhuyu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box .zhuyu span {
  font-size: 18px;
  color: #000;
  font-family: var(--font);
  margin: 0 10px 0 15px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: 0px;
  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: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  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: 48px;
  font-family: 'Cambria-Bold';
  color:#333;
  text-align: center;
  text-transform: uppercase;
}
.home-title p {
  font-size: 18px;
  color:#666;
  max-width: 1200px;
  text-align: center;
}
.btn-go {
  width: 180px;
  height: 55px;
  background-color: #fff;
  border-radius: 35px;
  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 10px 0 20px;
  border: none;
  font-size: 16px;
  color:#333;
  font-family: var(--font);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
}
.btn-go span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color);
  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;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-go span img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-go:hover {
  background-color: var(--color);
  color: #fff;
}
.btn-go:hover span {
  background-color: #fff;
}
.btn-go:hover span img {
  -webkit-filter: none;
  filter: none;
}
.btn-go.blue {
  background-color: var(--color);
  color: #fff;
}
.btn-go.blue span {
  background-color: #fff;
}
.btn-go.blue span img {
  -webkit-filter: none;
  filter: none;
}
.btn-go.blue:hover {
  background-color: #fff;
  color: #000;
}
.btn-go.blue:hover span {
  background-color: var(--color);
}
.btn-go.blue:hover span img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#banner {
  margin-top: 100px;
}
#banner .banner-content {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  position: absolute;
  left: 50%;
  bottom: 330px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner .banner-content ul li .content h4 {
  max-width: 800px;
  font-size: 60px;
  color:#333;
  line-height: 1.3;
  font-family: 'Cambria-Bold';
}
#banner .banner-content ul li .content h4 span {
  color: var(--color);
}
#banner .banner-content ul li .content p {
  font-size: 18px;
  color:#333;
  max-width: 800px;
  margin: 20px 0 40px;
  line-height: 1.8;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .banner-content ul .slick-dots {
  width: 1700px;
  position: absolute;
  left: 50%;
  bottom: 70px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#banner .banner-content ul .slick-dots .slick-active {
  background-color: var(--color);
  border-radius: 35px;
}
#banner .banner-content ul .slick-dots li {
  width: 180px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.4);
}
#banner .banner-content ul .slick-dots li button {
  display: none;
}
#banner .banner-content ul .slick-dots li:last-child {
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
#banner .banner-content ul .slick-dots li:first-child {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
@-webkit-keyframes player_big1 {
  0% {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@-moz-keyframes player_big1 {
  0% {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@keyframes player_big1 {
  0% {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@-webkit-keyframes player_big2 {
  0% {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    width: 140px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@-moz-keyframes player_big2 {
  0% {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    width: 140px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@keyframes player_big2 {
  0% {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    width: 140px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.2);
  }
}
#index-body .our-product {
  margin: 120px 0 100px;
}
#index-body .our-product .product-t {
  margin: 45px 0;
  border-bottom: 4px solid #eee;
}
#index-body .our-product .product-t .container {
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
}
#index-body .our-product .product-t ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .our-product .product-t ul li.active::after {
  background-color: var(--color);
}
#index-body .our-product .product-t ul li {
  text-align: center;
  font-size: 20px;
  color:#333;
  cursor: pointer;
}
#index-body .our-product .product-t ul li.active{
  color:var(--color);
}
#index-body .our-product .product-t ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: transparent;
  margin-top: 15px;
  border-radius: 35px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .our-product .product-content ul {
  margin: 0 -20px;
}

#index-body .our-product .product-content ul .slick-slide li {
  height: 505px;
  padding: 0 20px;
}
#index-body .our-product .product-content ul .slick-slide li:hover .box .text {
  height: 100%;
  padding-top: 130px;
}
#index-body .our-product .product-content ul .slick-slide li:hover .box .text h4 {
  line-height: 1.7;
}
#index-body .our-product .product-content ul .slick-slide li .box {
  width: 100%;
  height: 100%;
  position: relative;
}
#index-body .our-product .product-content ul .slick-slide li .box .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#index-body .our-product .product-content ul .slick-slide li:hover .box .img img {
  transform: scale(1.1);
}
#index-body .our-product .product-content ul .slick-slide li .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all .5s;
}
#index-body .our-product .product-content ul .slick-slide li .box .text {
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.4);
}
#index-body .our-product .product-content ul .slick-slide li .box .text .btn-go.blue {
  background-color: var(--color);
  color: #fff;
  height: 45px;
  width: 165px;
  padding: 0 10px;
}
#index-body .our-product .product-content ul .slick-slide li .box .text .btn-go.blue span {
  background-color: #fff;
  width: 30px;
  height: 30px;
}
#index-body .our-product .product-content ul .slick-slide li .box .text .btn-go.blue:hover {
  background-color: #fff;
  color: #333;
}
#index-body .our-product .product-content ul .slick-slide li .box .text .btn-go.blue:hover span {
  background-color: var(--color);
}
#index-body .our-product .product-content ul .slick-slide li .box .text h4 {
  line-height: 120px;
  font-size: 24px;
  font-family: 'Cambria-bold';
  color:#333;
  text-align: center;
  padding:0 15px;
}
#index-body .our-product .product-content ul .slick-slide li .box .text p {
  font-size: 16px;
  color:#666;
  text-align: center;
  margin: 20px 0 80px;
  padding: 0 50px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.8;
}
#index-body .our-product .product-content ul .slick-slide li .box .text a {
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#index-body .our-product .product-content ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}
#index-body .our-product .product-content ul .slick-dots li {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9edeff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0 8px;
}
#index-body .our-product .product-content ul .slick-dots li button {
  display: none;
}
#index-body .our-product .product-content ul .slick-dots .slick-active {
  width: 10px;
  height: 10px;
  background-color: var(--color);
}
#index-body .our-about {
  padding: 100px 0 120px;
  background: url("../images/about-bg.jpg") no-repeat;
  background-size: cover;
}
#index-body .our-about .home-title {
  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-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}
#index-body .our-about .home-title p {
  margin: 25px auto 60px;
  color:#666;
}
#index-body .our-about .about-content 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;
}
#index-body .our-about .about-content ul li {
  margin: 0 100px;
  text-align: center;
}
#index-body .our-about .about-content ul li i {
  text-align: center;
}
#index-body .our-about .about-content ul li h4 {
  font-size: 20px;
  color:#333;
  text-align: center;
  margin: 20px 0 0;
}
#index-body .our-about .about-content ul li h4 {
  font-size: 48px;
  font-family: 'Cambria-Bold';
}
#index-body .our-about .about-content ul li h4 span{
  font-size: 22px;
  font-family: 'Ebrima';
  opacity: 1;
}
#index-body .our-about .about-content ul li span {
  font-size: 18px;
  color:#666;
  text-align: center;
}
#index-body .our-about .about-b {
  margin-top: 60px;
}
#index-body .our-about .about-b .left {
  height: 710px;
  background-color: rgba(255, 255, 255, 0.6);
  width: 60%;
  position: absolute;
  top: 0;
  z-index: 5;
  left: 15px;
  padding: 75px 70px;
}
#index-body .our-about .about-b .left .home-title {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#index-body .our-about .about-b .left ul li {
  border-left: 1px dashed var(--color);
  padding-bottom: 30px;
}
#index-body .our-about .about-b .left ul li:last-child {
  border-left: none;
}
#index-body .our-about .about-b .left ul li h3 {
  font-size: 20px;
  font-family: 'Cambria-Bold';
  color: var(--color);
  margin-bottom: 25px;
  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;
  line-height: 0.8;
}
#index-body .our-about .about-b .left ul li h3::before {
  width: 15px;
  height: 15px;
  content: "";
  display: block;
  background-color: var(--color);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-right: 10px;
}
#index-body .our-about .about-b .left ul li p {
  font-size: 16px;
  color:#666;
  padding-left: 25px;
  line-height: 1.8;
}
#index-body .our-about .about-b .right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
}
#index-body .our-about .about-b .right .btn {
  width: 91px;
  height: 91px;
  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%);
  display: block;
}
#index-body .our-about .about-b .right .btn .play {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
#index-body .our-about .about-b .right .btn .play img {
  position: relative;
  z-index: 5;
}
#index-body .our-about .about-b .right .btn .play::before {
  content: "";
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.6);
  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%);
  display: block;
  border-radius: 50%;
  z-index: 3;
  -webkit-animation: player_big1 1s infinite ease-in-out;
  -moz-animation: player_big1 1s infinite ease-in-out;
  animation: player_big1 1s infinite ease-in-out;
}
#index-body .our-about .about-b .right .btn .play::after {
  content: "";
  width: 140px;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.2);
  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%);
  display: block;
  border-radius: 50%;
  -webkit-animation: player_big2 1s infinite ease-in-out;
  -moz-animation: player_big2 1s infinite ease-in-out;
  animation: player_big2 1s infinite ease-in-out;
}
#index-body .our-inquiry {
  height: 400px;
  background: url("../images/inquiry-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;
}
#index-body .our-inquiry .container {
  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;
}
#index-body .our-inquiry .container .left {
  max-width: 800px;
}
#index-body .our-inquiry .container .left .home-title {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#index-body .our-inquiry .container .left .home-title h3 {
  margin-bottom: 20px;
}
#index-body .our-inquiry .container .left .home-title h3,
#index-body .our-inquiry .container .left .home-title p {
  text-align: left;
  line-height: 1.8;
}
#index-body .our-inquiry .container .right {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#index-body .our-inquiry .container .right p{
  font-size: 16px;
  color:#999;
  padding-left: 25px;
  margin-top: 20px;
}
#index-body .our-inquiry .container .right form {
  height: 80px;
  background-color: #fff;
  border-radius: 70px;
  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;
  padding-right: 10px;
}
#index-body .our-inquiry .container .right form input[type='text'] {
  width: 160px;
  height: 25px;
  font-size: 18px;
  font-family: 'Ebrima-Regular';
  color:#999;
  border: none;
  background-color: transparent;
  padding: 0 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
#index-body .our-inquiry .container .right form input[name='name'] {
  border-left: none !important;
}
#index-body .our-inquiry .container .right form .btn-go {
  position: relative;
  overflow: hidden;
  margin-left: 160px;
}
#index-body .our-inquiry .container .right form .btn-go input[type='submit'] {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: none;
  background-color: transparent;
}
#index-body .our-news {
  padding: 120px 0 30px;
}
#index-body .our-news .news-content {
  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;
}
#index-body .our-news .news-content .left {
  max-width: 740px;
}
#index-body .our-news .news-content .right {
  max-width: 850px;
  height: 590px;
}
#index-body .our-news .news-content .right .home-title {
  margin-bottom: 40px;
}
#index-body .our-news .news-content .right .home-title h3 {
  text-align: left;
  line-height: 0.8;
}
#index-body .our-news .news-content .right ul li.active h4 span {
  background-color: var(--color);
}
#index-body .our-news .news-content .right ul li.active .box {
  padding-bottom: 35px;
  height: 145px;
}
#index-body .our-news .news-content .right ul li:last-child {
  margin-bottom: 0;
}
#index-body .our-news .news-content .right ul li {
  padding-left: 45px;
  margin-bottom: 40px;
}
#index-body .our-news .news-content .right ul li h4 {
  font-size: 20px;
  color:#333;
  font-family: Cambria-Bold;
  position: relative;
  margin-bottom: 30px;
  line-height: 1.8;
}
#index-body .our-news .news-content .right ul li h4 span {
  display: block;
  position: absolute;
  left: -45px;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #1f2032;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
}
#index-body .our-news .news-content .right ul li .box {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  height: 1px;
  overflow: hidden ;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0;
}
#index-body .our-news .news-content .right ul li .box p {
  font-size: 18px;
  color:#666;
  margin-bottom: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.6;
  line-height: 1.8;
}
#index-body .our-news .news-content .right ul li .box .box-b {
  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;
}
#index-body .our-news .news-content .right ul li .box .box-b > span {
  font-size: 14px;
  color:#999;
}
#index-body .our-news .news-content .right ul li .box .box-b 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;
}
#index-body .our-news .news-content .right ul li .box .box-b a span {
  font-size: 16px;
  font-family: 'Montserrat-SemiBold';
  margin-right: 10px;
  color: var(--color);
}
#footer {
  background: url('../images/footer-bg.jpg') no-repeat;
  background-size: cover;
  padding-top: 275px;
}
#footer .footer-center .footer-t {
  padding-top: 90px;
}
#footer .footer-center .footer-t .footer-t-gird {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 60px;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list {
  max-width: 450px;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list span {
  font-family: 'Ebrima';
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list span em {
  opacity: 0.6;
}
#footer .footer-center .footer-t .footer-t-gird .qcode.t-list {
  max-width: 400px;
}
#footer .footer-center .footer-t .footer-t-gird .qcode.t-list span {
  font-family: 'Ebrima';
  color:#666;
  font-size: 16px;
  margin: 35px 0;
  line-height: 1.8;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.link span {
  opacity: 0.6;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.link span:hover {
  color: var(--color);
}
#footer .footer-center .footer-t .footer-t-gird .t-list {
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#footer .footer-center .footer-t .footer-t-gird .t-list h2 {
  font-size: 48px;
  color:#333;
  font-family: Cambria-Bold;
  text-transform: uppercase;
  line-height: 0.8;
}
#footer .footer-center .footer-t .footer-t-gird .t-list .footer-icons {
  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: 15px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list .footer-icons a {
  margin-bottom: 0;
  display: block;
  margin-right: 45px;
  color: var(--color);
  font-size: 20px;
  transition: all 0.5s;
}
#footer .footer-center .footer-t .footer-t-gird .t-list .footer-icons a:hover{
  color: #222;
}
#footer .footer-center .footer-t .footer-t-gird .t-list .footer-icons a:last-child {
  margin-right: 0;
}
#footer .footer-center .footer-t .footer-t-gird .t-list .qc-img {
  width: 90px;
  height: auto;
  border: 5px solid #fff;
}
#footer .footer-center .footer-t .footer-t-gird .t-list p {
  font-size: 20px;
  color:#333;
  font-family: 'Montserrat-SemiBold';
  margin-bottom: 35px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list span {
  font-size: 18px;
  color:#666;
  font-family: 'Montserrat-SemiBold';
  margin-bottom: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-center .footer-t .footer-t-gird .t-list span:last-child {
  margin-bottom: 0;
}
#footer .footer-center .footer-b {
  width: 100%;
}
#footer .footer-center .footer-b .footer-b-content {
  color: #fff;
  height: 80px;
  border-top: 1px solid #ffffff;
  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-center .footer-b .footer-b-content span {
  font-size: 14px;
}
#footer .footer-center .footer-b .footer-b-content span img {
  width: 220px;
  height: auto;
  padding-top: 6px;
  margin-left: 10px;
}
@media (max-width: 1700px) {
  .ui.container,
  #banner .banner-content ul .slick-dots {
    width: 1400px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 30px;
  }
  .language-box {
    margin-left: 50px;
  }
  #banner .banner-content ul li .content {
    bottom: 200px;
  }
  #index-body .our-product .product-content ul .slick-slide li .box .text h4 {
    font-size: 22px;
    line-height: 1.8;
  }
  #banner .banner-content ul .slick-dots li {
    width: 120px;
  }
  #index-body .our-product .product-content ul .slick-slide li .box .text p {
    margin: 20px 0 40px;
  }
  #index-body .our-news .news-content .left {
    width: 45%;
  }
  #index-body .our-news .news-content .right {
    width: 50%;
  }
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list,
  #footer .footer-center .footer-t .footer-t-gird .qcode.t-list {
    max-width: 300px;
  }
}
@media (max-width: 1400px) {
  .ui.container,
  #banner .banner-content ul .slick-dots {
    width: 1200px;
  }
  .home-title h3 {
    font-size: 36px;
  }
  #banner .banner-content ul li .content h4 {
    max-width: 700px;
    font-size: 50px;
    line-height: 1.3;
    font-family: 'Cambria-Bold';
  }
  #banner .banner-content ul li .content {
    bottom: 120px;
  }
  #banner .banner-content ul .slick-dots {
    bottom: 35px;
  }
  #index-body .our-about .home-title p {
    padding: 0 15px;
  }
  #index-body .our-about .about-b .left {
    width: 55%;
    height: 760px;
    padding: 75px 70px;
  }
  #index-body .our-inquiry .container {
    -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;
  }
  #index-body .our-inquiry .container .left .home-title {
    margin-bottom: 30px;
  }
  #index-body .our-inquiry .container .left .home-title h3,
  #index-body .our-inquiry .container .left .home-title p {
    text-align: center;
  }
  #index-body .our-news .news-content .left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #header .nav .ui.menu .right .h-search form input[type='text'] {
    width: 180px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
    font-size: 16px;
  }
  #index-body .our-product .product-t {
    margin-top: 30px;
  }
}
@media (max-width: 1200px) {
  .ui.container,
  #banner .banner-content ul .slick-dots {
    width: 1000px;
  }
  #banner .banner-content ul li .content h4 {
    max-width: 540px;
    font-size: 34px;
  }
  #banner .banner-content ul li .content {
    bottom: 85px;
  }
  #banner .banner-content ul .slick-dots li {
    width: 60px;
    height: 4px;
  }
  #header .nav .header-icon {
    width: 150px;
  }
  .language-box {
    margin: 0 15px;
  }
  #header .nav .ui.menu .right .h-inquiry {
    display: none;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 15px;
  }
  #index-body .our-about .about-content ul li {
    margin: 0 50px;
  }
  #index-body .our-about .about-b .left {
    position: relative;
    width: 100%;
    left: 0;
    margin-bottom: 60px;
  }
  #index-body .our-about .about-b .right {
    width: 100%;
    text-align: center;
  }
  #index-body .our-news .news-content .left {
    display: none;
  }
  #index-body .our-news .news-content .right {
    width: 100%;
    max-width: 100%;
  }
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list,
  #footer .footer-center .footer-t .footer-t-gird .qcode.t-list {
    max-width: 240px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list span {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block;
  }
  .ui.container {
    width: 700px;
  }
  .home-title h3 {
    font-size: 30px;
  }
  #banner .banner-content ul li .content {
    top: 50%;
    bottom: unset;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #banner .banner-content ul li .content p {
    font-size: 16px;
    margin: 20px 0;
  }
  #banner .banner-content ul li .content h4 {
    max-width: 360px;
    font-size: 28px;
  }
  #index-body .our-about .about-content ul li h4 em {
    font-size: 36px;
    font-family: 'Cambria-Bold';
  }
  #index-body .our-about .about-content ul li {
    margin: 0 25px;
  }
  #index-body .our-inquiry .container .right form .btn-go {
    margin-left: 20px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list,
  #footer .footer-center .footer-t .footer-t-gird .qcode.t-list {
    max-width: 45%;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner .banner-content ul li .content h4 {
    margin-bottom: 15px;
    line-height: 1.8;
  }
  #banner .banner-content ul li .content p {
    display: none;
  }
  #index-body .our-about .about-content,
  #index-body .our-inquiry,
  #index-body .our-about .about-b .left {
    display: none;
  }
  #index-body .our-about .about-b .left {
    height: auto;
    padding: 50px 25px;
  }
  #index-body .our-news {
    padding: 0px 0 30px;
  }
  #footer .footer-center .footer-b .footer-b-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;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list,
  #footer .footer-center .footer-t .footer-t-gird .qcode.t-list {
    max-width: 100%;
    margin: 20px 0;
  }
  #footer .footer-center .footer-t .footer-t-gird {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list .qc-img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list .qc-img canvas {
    height: 100%;
    width: 100px;
  }
  #footer .footer-center .footer-b .footer-b-content span {
    text-align: center;
  }
  #banner .banner-content ul li {
    height: 250px;
  }
  #banner .banner-content ul li > img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-title h3 {
    font-size: 24px;
  }
  #index-body .our-product {
    margin: 60px 0;
  }
}





































/*inner-page*/

.inner-banner {
  background-color: #f4fbff;
  padding: 90px 0;
  margin-top: 100px;
}
.inner-banner .name {
  font-size: 36px;
  font-family: 'Cambria-Bold';
}
.inner-banner .mbx{
  font-size: 16px;
}
.mbx span {
  color: #3dbdff;
}
@media (max-width: 1000px) {
  .inner-banner {
    padding: 60px 0;
    margin-top: 120px;
  }
  .inner-banner .name {
    font-size: 24px;
  }

div#seo_other {
    display: none;
}




}
.innerTag {
  color: #3dbdff;
}
.innerTit {
  color:#333;
  font-family: 'Cambria-bold';
}

.base_data ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.base_data li .box {
  width: 186px;
  height: 186px;
  margin: auto;
  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;
  position: relative;
}
.base_data li .box .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.base_data li .box .dot::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -webkit-calc(50% - 5px);
  top: -moz-calc(50% - 5px);
  top: calc(50% - 5px);
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background-color: #000000;
}
.base_data li .box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/data-box.png) no-repeat center;
  background-size: 100% 100%;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.base_data li .box > div.num {
  font-size: 36px;
  color: #3dbdff;
  font-family: var(--font);
}
.base_data li .box > div:last-child {
  font-weight: 500;
}
.base_data li .p {
  margin-top: 20px;
  font-size: 20px;
  font-family: var(--font);
  font-weight: 400;
}
.base_data li:nth-child(2) .box .dot {
  -webkit-animation: rotate2 10s linear infinite;
  -moz-animation: rotate2 10s linear infinite;
  animation: rotate2 10s linear infinite;
}
.base_data li:nth-child(2) .box .dot::before {
  left: -webkit-calc(50% - 5px);
  left: -moz-calc(50% - 5px);
  left: calc(50% - 5px);
  top: -5px;
}
.base_data li:nth-child(2) .box::before {
  -webkit-animation: rotate2 10s linear infinite;
  -moz-animation: rotate2 10s linear infinite;
  animation: rotate2 10s linear infinite;
}
.about-page .about-1 {
  padding-right: 11%;
}
.about-page .about-1 .left {
  padding-right: 4%;
  vertical-align: middle;
}
.about-page .about-1 .left .play {
  color: #FFFFFF;
  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: 145px;
  height: 145px;
  line-height: 145px;
  text-align: center;
  cursor: pointer;
}
.about-page .about-1 .left .play:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/play-icon2.png) no-repeat center;
  background-size: 100% 100%;
  animation: rotate 5s linear infinite;
}
.about-page .about-1 .right {
  padding-left: 4%;
  vertical-align: middle;
}
.about-page .about-1 .right .Tit::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 128px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.about-page .about-1 .right .text {
  line-height: 1.8;
  max-height: 14.4em;
  overflow-y: auto;
}
.about-page .about-1 .right .about-1-content {
  margin-top: 60px;
}
.about-page .about-1 .right .about-1-content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin: 0 -50px
}
.about-page .about-1 .right .about-1-content ul li {
  text-align: center;
}
.about-page .about-1 .right .about-1-content ul li i {
  text-align: center;
}
.about-page .about-1 .right .about-1-content ul li h4 {
  font-size: 20px;
  text-align: center;
  margin: 20px 0 0;
}
.about-page .about-1 .right .about-1-content ul li h4 {
  font-size: 48px;
  color:#333;
  font-family: 'Cambria-Bold';
}
.about-page .about-1 .right .about-1-content ul li h4 span{
  font-size: 22px;
  font-family: 'Ebrima';
  opacity: 1;
}
.about-page .about-1 .right .about-1-content ul li span {
  font-size: 18px;
  color:#666;
  text-align: center;
}
.about-page .about-1 .right .list {
  margin-top: 80px;
  margin-left: -10%;
}
.about-page .about-1 .right .base_data ul {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-1 .right .base_data ul li {
  width: auto;
}
.about-page .about-1 .right .pro_list {
  margin-top: 80px;
  margin-left: -10%;
}
.about-page .about-1 .right .pro_list ul {
  margin: -30px;
}
.about-page .about-1 .right .pro_list li {
  padding: 30px;
}
.about-page .about-1.on .right .Tit::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.about-page .about-2 {
  padding: 120px 0;
}
.about-page .about-2 .right {
  position: relative;
}
.about-page .about-2 .right > ul li {
  margin-bottom: 45px;
  padding-right: 65px;
}
.about-page .about-2 .right > ul li img {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .right .slick-slide {
  position: relative;
}
.about-page .about-2 .right .slick-current.slick-center {
  z-index: 1;
}
.about-page .about-2 .right .slick-current.slick-center li img {
  -webkit-transform: translate(0, 45px);
  -moz-transform: translate(0, 45px);
  -ms-transform: translate(0, 45px);
  transform: translate(0, 45px);
}
.about-page .about-2 .right .dots {
  position: absolute;
  left: 30px;
  right: 65px;
  bottom: 5%;
}
.about-page .about-2 .right .dots li {
  margin: 0 3px;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000000;
  display: inline-block;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  cursor: pointer;
}
.about-page .about-2 .right .dots li button {
  display: none;
}
.about-page .about-2 .right .dots li.slick-active {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.about-page .about-2 .list {
  padding: 100px 0;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.about-page .about-2 .list ul {
  margin: -15px;
}
.about-page .about-2 .list li {
  padding: 15px;
}
.about-page .about-2 .list li img {
  display: block;
  margin: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .list li:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.about-page .about-2 .list span.arrow {
  font-size: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.about-page .about-2 .list span.arrow.arrow_l {
  left: 0;
}
.about-page .about-2 .list span.arrow.arrow_r {
  right: 0;
}
.about-page .about-3 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-3 li .box {
  color: #FFFFFF;
  background-color: #eee;
  padding: 15% 10%;
  height: 100%;
}
.about-page .about-3 li .box .name {
  font-size: 30px;
  font-family: 'Cambria-bold';
  line-height: 3;
  color: #3dbdff;
}
.about-page .about-3 li .box .name span {
  line-height: 1.5;
  display: inline-block;
  vertical-align: bottom;
}
.about-page .about-3 li .box .text {
  line-height: 1.8;
}
.about-page .about-3 li:nth-child(2) .box {
  background-color: #f5f5f5;
}
.about-page .about-4 {
  padding-top: 90px;
}
.about-page .about-4 .text {
  line-height: 1.8;
}
.about-page .about-4 .list ul {
  margin: -20px;
}
.about-page .about-4 .list li {
  padding: 20px;
}
.about-page .about-5 {
  padding: 170px 0 120px;
  background: url(../images/about-5-bg.jpg) no-repeat left 40% top;
}
.about-page .about-5 .text {
  line-height: 1.8;
}
.about-page .about-5 .left {
  padding-top: 60px;
  padding-left: 100px;
  position: relative;
}
.about-page .about-5 .left img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
}
.about-page .about-5 .left img:last-child {
  position: relative;
  z-index: 1;
}
.about-page .about-5 .right {
  margin-top: 100px;
}
.about-page .about-6 {
  padding: 120px 0;
  background: url(../images/about-6-bg.jpg) no-repeat center;
  background-attachment: fixed;
  color: #FFFFFF;
}
.about-page .about-6 ul {
  margin: -45px;
}
.about-page .about-6 li {
  padding: 45px;
}
.about-page .about-6 li .num {
  font-size: 89px;
  font-family: var(--font);
  color: #3dbdff;
}
.about-page .about-6 li .text {
  line-height: 1.8;
}
.about-page .about-7 {
  padding: 130px 0;
}
.about-page .about-7 span.arrow {
  font-size: 16px;
  display: inline-block;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  line-height: 45px;
  text-align: center;
  border: 1px solid currentcolor;
  opacity: .5;
  cursor: pointer;
}
.about-page .about-7 span.arrow:hover {
  opacity: 1;
}
.about-page .about-7 .list {
  margin-top: 80px;
}
.about-page .about-7 .list li {
  padding-right: 50%;
  position: relative;
}
.about-page .about-7 .list li .content {
  position: absolute;
  width: 70%;
  right: 50px;
  top: 50%;
  padding: 20px;
  background: rgb(255 255 255 / 90%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page .about-7 .list li .content .name {
  font-size: 24px;
  font-family: 'Cambria-bold';
  color:#333;
}
.about-page .about-7 .list li .content .text {
  margin-top: 15px;
  line-height: 1.8;
}
@media (max-width: 1600px) {
  .about-page .about-1 {
    padding-right: 5%;
  }
  .about-page .about-3 li .box .name {
    font-size: 24px;
  }
  .about-page .about-3 li .box {
    padding: 10% 5%;
  }
}
@media (max-width: 1400px) {
  .about-page .about-1 {
    padding-right: 15px;
  }
  .about-page .about-1 .left {
    padding-right: 0;
  }
  .about-page .about-1 .right .list {
    margin-left: 0;
  }
  .about-page .about-1 .right .text {
    max-height: 10.8em;
  }
  .innerTit {
    font-size: 32px;
  }
  .about-page .about-2 .left {
    margin-top: 0;
  }
  .about-page .about-5 .right {
    margin-top: 0;
  }
  .about-page .about-6 ul {
    margin: -25px;
  }
  .about-page .about-6 li {
    padding: 25px;
  }
  .about-page .about-6 li .num {
    font-size: 60px;
  }
  .about-page .about-7 .list li .content .name {
    font-size: 24px;
  }
  .about-page .about-1 .right .about-1-content ul{
    flex-wrap: wrap;
  }
  .about-page .about-1 .right .about-1-content ul li{
    width: 50%;
    margin: 10px 0;
  }
  .about-page .about-1 .right .about-1-content {
    margin-top: 30px;
  }
  .about-page .about-1 .right .about-1-content ul li h4 {
    font-size: 38px;
    line-height: 1;
    margin: 10px 0;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 .right .about-1-content ul li{
    margin: 20px 0;
  }
  .about-page .about-1 {
    padding: 60px 0;
  }
  .about-page .about-1 .box {
    max-width: 700px;
    margin: auto;
    padding: 0 15px;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-1 .right .Tit::before {
    display: none;
  }
  .about-page .about-1 .right .text {
    max-height: unset;
  }
  .about-page .about-1 .right .list {
    margin-top: 40px;
  }
  .about-page .about-2 {
    padding-top: 60px;
  }
  .about-page .about-2 .left {
    width: 100%;
    padding: 0;
  }
  .about-page .about-2 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-2 .right .dots {
    left: 0;
  }
  .about-page .about-2 .list {
    padding: 60px 0;
  }
  .about-page .about-3 ul {
    display: block;
  }
  .about-page .about-3 li {
    width: 100%!important;
  }
  .about-page .about-3 li .box {
    padding: 60px 5%;
  }
  .about-page .about-3 li .box .name {
    line-height: normal;
  }
  .about-page .about-3 li .box .text {
    margin-top: 20px;
  }
  .about-page .about-4 {
    padding-top: 60px;
  }
  .about-page .about-5 {
    padding: 120px 0 60px;
  }
  .about-page .about-5 .left {
    width: 100%;
  }
  .about-page .about-5 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-6 {
    padding: 60px 0;
  }
  .about-page .about-6 ul {
    margin: -15px;
  }
  .about-page .about-6 li {
    padding: 15px;
    width: 50%!important;
  }
  .about-page .about-6 li .num {
    font-size: 40px;
  }
  .about-page .about-7 {
    padding: 60px 0;
  }
  .about-page .about-7 .list {
    margin-top: 40px;
  }
}
@media (max-width: 700px) {
  .innerTit {
    font-size: 24px;
  }
  .about-page .about-3 li .box .name {
    font-size: 20px;
  }
  .about-page .about-5 .left {
    padding-top: 40px;
    padding-left: 50px;
  }
  .about-page .about-2 .right > ul li img {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .about-page .about-2 .right .slick-current.slick-center li img {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .about-page .about-2 .right > ul li {
    margin-bottom: 0;
    padding-right: 0;
  }
  .about-page .about-2 .right .dots {
    right: 0;
  }
  .about-page .about-7 .list ul {
    margin: -15px;
  }
  .about-page .about-7 .list li {
    padding-right: 0;
    padding: 15px;
  }
  .about-page .about-7 .list li .content {
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .about-page .about-1 .right .about-1-content ul li {
    width: 100%;
  }
  .about-page .about-6 li {
    width: 100%!important;
  }
}
.app-page {
  padding-bottom: 120px;
}
.app-page .app-1 {
  padding: 90px 0;
}
.app-page .app-1 .text {
  line-height: 1.8;
  margin-top: 20px;
}
.app-page .app-2 + .app-2 {
  margin-top: 170px;
}
.app-page .app-2:not(:last-child) .box {
  border-bottom: 1px solid #8a8a8a;
}
.app-page .app-2 .box {
  padding-bottom: 55px;
}
.app-page .app-2 .left {
  width: 40%;
  vertical-align: middle;
}
.app-page .app-2 .right {
  width: 60%;
  padding-left: 50px;
  vertical-align: middle;
}
.app-page .app-2 .right .name {
  font-size: 30px;
  font-family: var(--font);
}
.app-page .app-2 .right .text {
  line-height: 1.8;
  margin-top: 15px;
}
.app-page .app-2 .right .list {
  margin-top: 40px;
}
.app-page .app-2 .right .list ul {
  margin: -19px;
}
.app-page .app-2 .right .list li {
  padding: 19px;
}
@media (max-width: 1000px) {
  .app-page .app-1 {
    padding: 60px 0;
  }
  .app-page .app-2 .left {
    width: 100%;
    text-align: center;
  }
  .app-page .app-2 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .app-page .app-2 + .app-2 {
    margin-top: 60px;
  }
  .app-page {
    padding-bottom: 60px;
  }
  .app-page .app-2 .right .name {
    font-size: 24px;
  }
  .app-page .app-2 .right .list ul {
    margin: -10px;
  }
  .app-page .app-2 .right .list li {
    padding: 10px;
  }
}
.case-page {
  padding: 120px 0;
}
.case-page ul {
  margin: -45px -17px;
}
.case-page li {
  padding: 45px 17px;
}
.case-page li .name {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}
.case-page li .name a{
   -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.case-page li .name:hover > a{
  color: #000;
  background-size: 100% 1px;
}
@media (max-width: 1000px) {
  .case-page {
    padding: 60px 0;
  }
  .case-page li .name {
    font-size: 16px;
  }
  .case-page ul {
    margin: -15px;
  }
  .case-page li {
    padding: 15px;
  }
}
.trends-page .trends-1 {
  margin-top: 200px;
}
.trends-page .trends-2 {
  margin-top: 120px;
}
.trends-page .trends-2 .left {
  width: 45%;
  vertical-align: middle;
  padding-right: 5%;
}
.trends-page .trends-2 .right {
  width: 55%;
  position: relative;
  vertical-align: middle;
}
.trends-page .trends-2 .right .Tit {
  font-size: 30px;
  font-family: var(--font);
  position: relative;
}
.trends-page .trends-2 .right .Tit::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 128px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.trends-page .trends-2 .right .text span {
  font-weight: 400;
  font-style: italic;
}
.trends-page .trends-2 .right .list {
  margin: 40px 0 40px -20%;
  padding: 40px 80px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.trends-page .trends-2 .right .list ul {
  margin: -15px;
}
.trends-page .trends-2 .right .list li {
  padding: 15px;
}
.trends-page .trends-2 .right .list li > div {
  display: inline-block;
  padding-left: 70px;
}
.trends-page .trends-2 .right .list i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.trends-page .trends-2 .right .list .num {
  font-size: 32px;
  font-family: var(--font);
}
.trends-page .trends-2.on .right .Tit::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.trends-page .trends-3 {
  margin-top: 120px;
}
.trends-page .trends-3.row .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;
}
.trends-page .trends-3.row .box .right {
  padding-left: 0;
  padding-right: 10%;
  text-align: right;
}
.trends-page .trends-3.row .box .right .name::before {
  left: 104%;
  right: auto;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.trends-page .trends-3 .box {
  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;
}
.trends-page .trends-3 .box .left {
  width: 53%;
}
.trends-page .trends-3 .box .left img {
  width: 100%;
}
.trends-page .trends-3 .box .left ul.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 5%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.trends-page .trends-3 .box .left ul.slick-dots li {
  margin: 0 3px;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000;
  display: inline-block;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  cursor: pointer;
}
.trends-page .trends-3 .box .left ul.slick-dots li button {
  display: none;
}
.trends-page .trends-3 .box .left ul.slick-dots li.slick-active {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.trends-page .trends-3 .box .right {
  width: 47%;
  padding-left: 10%;
}
.trends-page .trends-3 .box .right .name {
  font-size: 30px;
  font-family: var(--font);
  position: relative;
}
.trends-page .trends-3 .box .right .name::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 170px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
}
.trends-page .trends-3.on .box .right .name::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.trends-page .trends-4 {
  padding: 140px 0;
}
.trends-page .trends-4 .Tit {
  font-size: 30px;
  font-family: var(--font);
}
.trends-page .trends-4 .form {
  max-width: 1080px;
  margin: 50px auto 0;
}
.trends-page .trends-4 .form ul {
  margin: -10px;
}
.trends-page .trends-4 .form li {
  padding: 10px;
}
.trends-page .trends-4 .form li.wid-100 {
  width: 100%;
}
.trends-page .trends-4 .form input,
.trends-page .trends-4 .form textarea {
  width: 100%;
  padding: 15px 30px;
  font-size: 14px;
  border: 1px solid #d2d2d2;
}
.trends-page .trends-4 .form input[type="submit"] {
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #000000;
   font-family:'Montserrat-SemiBold';
  letter-spacing: 1px;
  width: auto;
  border: 1px solid #000;
  transition: .5s ease;
}
.trends-page .trends-4 .form input[type="submit"]:hover {
  background-color: transparent;
  color: #000;
}
@media (max-width: 1400px) {
  .about-page .about-1 .right .pro_list {
    margin-left: 0;
  }
  .trends-page .trends-2 .right .list {
    padding: 20px 40px;
  }
  .trends-page .trends-2 .right .list .num {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 .right .pro_list {
    margin-top: 40px;
  }
  .about-page .about-1 .right .pro_list ul {
    margin: -15px;
  }
  .about-page .about-1 .right .pro_list li {
    padding: 15px;
  }
  .trends-page .trends-1 {
    margin-top: 60px;
  }
  .trends-page .trends-2 {
    margin-top: 90px;
  }
  .trends-page .trends-2 .right .Tit::before {
    display: none;
  }
  .trends-page .trends-2 .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .trends-page .trends-2 .right {
    width: 100%;
    margin-top: 40px;
  }
  .trends-page .trends-2 .right .Tit {
    font-size: 24px;
  }
  .trends-page .trends-2 .right .list {
    margin: 20px 0 20px;
  }
  .trends-page .trends-3 {
    margin-top: 90px;
  }
  .trends-page .trends-3 .box {
    display: block;
  }
  .trends-page .trends-3 .box .left {
    width: 100%;
  }
  .trends-page .trends-3 .box .right {
    width: 100%;
    text-align: left!important;
    padding: 0!important;
    margin-top: 40px;
  }
  .trends-page .trends-3 .box .right .name::before {
    display: none;
  }
  .trends-page .trends-3 .box .right .name {
    font-size: 24px;
  }
  .trends-page .trends-4 {
    padding: 90px 0;
  }
  .trends-page .trends-4 .Tit {
    font-size: 24px;
  }
}









/* inner */

#about_list h3 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.4;
}
#about_list h3 b {
  font-size: 24px;
  line-height: 44px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
@media screen and (max-width: 1500px) {
  #about_list h3 {
    font-size: 40px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 500px) {
  #about_list h3 {
    font-size: 30px;
    line-height: 1.6;
  }
  .xinyuehide {
    display: none !important;
  }
}


@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}



.pro_box {
  position: relative;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box h4 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 5%;
}
.pro_box .img .img2{
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  transition: .5s ease;
}
.pro_box .img:hover .img2{
  opacity: 1;
}
.pro_box .link_btn {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 5%;
  opacity: 0;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #c0bbb7;
  margin: 0 5px;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a .alert {
  position: absolute;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  line-height: 24px;
  padding: 0 10px;
  border-radius: 4px;
  color: #FFFFFF;
  background: #333333;
  opacity: 0;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a .alert::after {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 5px solid #333333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pro_box .link_btn a img {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a:hover {
  background: #3dbdff;
  border-color: #3dbdff;
}
.pro_box .link_btn a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.pro_box .link_btn a:hover .alert {
  bottom: -webkit-calc(100%  + 10px);
  bottom: -moz-calc(100%  + 10px);
  bottom: calc(100%  + 10px);
  opacity: 1;
}
.pro_box:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.pro_box:hover .link_btn {
  opacity: 1;
}


.news_box {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
}
.news_box .img {
  width: 55%;
  position: relative;
}
.news_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news_box .img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news_box .img::after {
  content: url(../images/plus_icon.png);
  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%);
  color: #FFFFFF;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news_box .img:hover::before {
  opacity: 1;
}
.news_box .img:hover::after {
  opacity: 1;
}
.news_box .mml-text {
  width:100%;
}
.news_box .mml-text h4{
  font-family:'Cambria-bold';
  color:#333;
}
.news_box .mml-text time {
  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: #999;
  font-size:16px;
  font-family: 'Ebrima-regular';
}
.news_box .mml-text time img {
  display: inline-block;
  margin-right: 10px;
}

@media screen and (max-width: 1000px) {
  .news_box .img {
    width: 100%;
  }
  .news_box .mml-text {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
}

@media screen and (max-width: 700px) {
  .news_box {
    padding: 15px;
  }
}

.btn1 {
  display: inline-block;
  width: 160px;
  height: 50px;
  line-height: 50px!important;
  text-align: center;
  color: #FFFFFF;
  background: #3dbdff;
  font-family: var(--font);
}

.btn1:hover {
    background: #000;
}

h2.about {
  font-size: 40px;
  line-height: 1.6;
  font-family: var(--font);
  position: relative;
}
h2.about::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 120px;
  line-height: .6;
  color: #a28d64;
  opacity: .1;
}
.contact-us {
  background: url(../images/contact_bg.png) no-repeat center;
  padding: 90px 0;
  position: relative;
}
.contact-us h2 {
  font-size: 48px;
  line-height: 1.8;
  color: #FFFFFF;
  font-family: var(--font);
}
.contact-us .left {
  width: 50%;
}
.contact-us .right {
  width: 50%;
  padding-left: 100px;
}
.contact-us .form input {
  height: 55px;
  width: 100%;
  padding: 0 20px;
  font-size: 16px;
  border: none;
}
.contact-us .form ul {
  margin: -15px;
}
.contact-us .form ul li {
  padding: 15px;
}
.contact-us .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-1 {
  padding: 60px 0;
  background: url(../images/contact.jpg) no-repeat left 75% center;
  position: relative;
  overflow: hidden;
}
.contact-page .contact-1 .img {
  content: url(/bag-manufacturers/2023/09/04/1.png);
  position: absolute;
  bottom: 0;
  right: -3%;
  width: 33%;
}
.contact-page .contact-1 h2 {
  font-size: 36px;
  color:#333;
  line-height: 1.4;
  font-family: 'Cambria-bold';
}
.contact-page .contact-1 .left {
  width: 50%;
}
.contact-page .contact-1 .right {
  width: 50%;
  padding-left: 100px;
}
.contact-page .contact-1 .right ul {
 /* max-width: 350px;*/
  margin-top: 140px;
}
.contact-page .contact-1 .right ul li {
  padding-left: 130px;
  position: relative;
}
.contact-page .contact-1 .right ul li:not(:last-child) {
  margin-bottom: 60px;
  line-height: 2;
}
.contact-page .contact-1 .right ul li i {
  width: 100px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-page .contact-1 .form {
  background: #FFFFFF;
  padding: 80px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.contact-page .contact-1 .form input,
.contact-page .contact-1 .form textarea {
  width: 100%;
  border: 1px solid #cecac7;
}
.contact-page .contact-1 .form input {
  height: 50px;
}
.contact-page .contact-1 .form textarea {
  height: 135px;
}
.contact-page .contact-1 .form ul {
  margin: -20px -10px;
}
.contact-page .contact-1 .form ul li {
  padding: 20px 10px;
}
.contact-page .contact-1 .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 {
  padding: 100px 0;
  line-height: 2;
}
.contact-page .contact-2 h2 {
  font-size: 48px;
  font-family: var(--font);
}
h2.inner {
  font-size: 40px;
  line-height: 1.4;
  font-family: var(--font);
}
.customization-page .customization-1 {
  padding: 140px 0;
  background: url(../images/customization_1_bg.jpg) no-repeat center right;
}
.customization-page .customization-1 h4 {
  font-family: var(--font);
}
.customization-page .customization-1 .left {
  width: 50%;
  padding-right: 100px;
}
.customization-page .customization-1 .left ul li {
  padding-left: 100px;
  position: relative;
  overflow: hidden;
}
.customization-page .customization-1 .left ul li i {
  position: absolute;
  left: 0;
  top: 0;
}
.customization-page .customization-1 .left ul li p {
  margin-bottom: 50px;
}
.customization-page .customization-1 .left ul li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 33px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #3dbdff;
}
.customization-page .customization-1 .right {
  width: 50%;
}
.customization-page .customization-2 {
  background: url(../images/customization_2_bg.jpg) no-repeat center;
  background-size: cover;
  color: #FFFFFF;
  padding: 120px 0 170px;
}
.customization-page .customization-2 .box {
  padding: 0 5%;
  position: relative;
}
.customization-page .customization-2 .box::before {
  content: url(../images/yh.png);
  position: absolute;
  left: 0;
  top: 0;
}
.customization-page .customization-2 h4 {
  font-size: 36px;
}
.customization-page .customization-2 p {
  line-height: 2;
}
.customization-page .customization-3 {
  padding: 70px 0;
}
.customization-page .customization-3 li h4 {
  line-height: 80px;
  text-align: center;
  color: #FFFFFF;
  background: #a28d64;
}
.customization-page .customization-3 li .mml-text {
  padding: 20px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.customization-page .customization-3 li .mml-text p {
  min-height: 144px;
}
.customization-page .customization-3 li:hover .mml-text {
  background: #d0c6b1;
}
.side_bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
}
.side_bar .side_left {
  width: 75%;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 60px;
}
.side_bar .side_left .content {
  line-height: 2;
}
.side_bar .side_left .lixinpro1 {
  font-size: 26px;
   font-family:'Montserrat-SemiBold';
  line-height: 1.6;
  color: #a28d64;
  margin-bottom: 10px;
}
.side_bar .side_left .lixinpro2 {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
.side_bar .side_right {
  width: 25%;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-right: 60px;
}
.side_bar .side_right::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  left: -500px;
  background: #f9f9f9;
}
.side_bar .side_right .content{
  position: sticky;
  top: 120px;
}
.side_bar .side_right h2 {
  font-size: 30px;
  line-height: 1.6;
  font-family: 'Cambria-bold';
}
.side_bar .side_right .search form {
  position: relative;
}
.side_bar .side_right .search input {
  width: 100%;
  height: 58px;
  border: 1px solid #eee;
  font-size: 16px;
  color:#999;
  font-family: 'Ebrima-regular';
  padding-left: 15px;
  line-height: 30px;
  padding-right: 58px;
}
.side_bar .side_right .search button {
  width: 58px;
  height: 58px;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: transparent;
}
.side_bar .side_right .category ul li a{
  display: block;
}
.side_bar .side_right .category ul li a {
  margin-bottom: 20px;
}
.side_bar .side_right .category ul li ol li{
  list-style-type: disc;
  margin-left: 20px;
}
.side_bar .side_right .hot_pro ul li:not(:last-child) {
  margin-bottom: 30px;
}
.side_bar .side_right .hot_pro .img {
  width: 25%;
  vertical-align: middle;
}
.side_bar .side_right .hot_pro .img img {
  background: #FFFFFF;
  border: 1px solid #c0bbb7;
}
.side_bar .side_right .hot_pro .mml-text {
  width: 75%;
  vertical-align: middle;
  line-height: 1.8;
}
.side_bar .side_right .hot_pro .mml-text .start i {
  color: #f9595f;
}
.side_bar .side_right .ins .img {
  position: relative;
}
.side_bar .side_right .ins .img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.side_bar .side_right .ins .img::after {
  content: "\f16d";
  font-family: FontAwesome;
  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%);
  font-size: 20px;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.side_bar .side_right .ins .img:hover::before {
  opacity: 1;
}
.side_bar .side_right .ins .img:hover::after {
  opacity: 1;
}
.product-page {
  overflow: hidden;
}
.product-page .product_list ul {
  margin: -15px;
}
.product-page .product_list ul li {
  padding: 15px;
}
.product-page .product_list .fenleih1 {
    font-size: 30px;
    color:#333;
    font-family: 'Cambria-Bold';
    line-height: 1.6;
    font-weight: 600;
}
.product-page .product_list ul li h3.product_name {
  line-height: 32px;
  color:#333;
  font-family: 'Cambria-bold';
}
.product-page .pro_box {
  border: 1px solid #c0bbb7;
}

@media screen and (max-width: 500px) {
  .product-page .product_list ul{
    margin: -5px;
  }
  
  .product-page .product_list ul li{
    width: 100%!important;
    padding: 5px;
  }
}


.news-page .news_list ul li:not(:last-child) {
  margin-bottom: 90px;
}
.newdet-page time {
  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: rgba(0, 0, 0, 0.5);
  font-family: var(--font);
}
.newdet-page time img {
  display: inline-block;
  margin-right: 10px;
}
.newdet-page .share {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.newdet-page .share h4 {
  display: inline-block;
  vertical-align: middle;
}

.newdet-page .share div{
  display: inline-block;
}

.newdet-page .share a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
  font-size: 24px;
  line-height: 44px;
}
.faq-page {

  padding: 100px 0;

}

.faq-page ul li {

  margin-bottom: 20px;

  padding: 15px;

  border: 1px solid #eee;

  background: #f8f8f8;

}

.faq-page ul li h4 {

  font-size: 20px;

  font-family: 'Cambria-bold';

  color:#333;

  margin-bottom: 10px;

}

.faq-page ul li .content {

  padding-top: 10px;

  border-top: 1px solid #eee;

  font-size: 18px;

  color:#666;

  line-height: 1.6;

}

.faq-page ul li:last-child {

  margin-bottom: 0;

}


.inner-page .m-page {
  text-align: right;
  float: none;
  margin: 30px -5px 0;
}
.inner-page .m-page a,
.inner-page .m-page span {
  display: inline-block;
  text-align: center;
  width: 45px;
  height: 35px;
  font-size: 16px;
  line-height: 36px;
  border-radius: 5px;
  color: #333;
  font-weight: 500;
  -moz-box-shadow: 0 2px 10px 0 #d8dde6;
  -o-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 5px;
}

.inner-page .m-page span,
.inner-page .m-page a:hover {
  background: #3dbdff none repeat scroll 0 0;
  color: #fff;
}



.map{
  margin-bottom: -30px;
}

.amap-logo{
  display: none!important;
}




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

  h2.about::before{
    font-size: 100px;
  }


  .side_bar .side_left{
    padding-left: 30px;
  }
  .side_bar .side_right{
    padding-right: 30px;
  }



  .customization-page .customization-1 .left{
    padding-right: 30px;
  }
  .customization-page .customization-1 .left ul li p{
    margin-bottom: 30px;
  }


  .contact-page .contact-1 .form{
    padding: 30px;
  }

  .contact-page .contact-1 .right{
    padding-left: 50px;
  }

  .contact-page .contact-1 .right ul{
    margin-top: 60px;
  }

  .contact-page .contact-1 .right ul li{
    padding-left: 100px;
  }
}


@media screen and (max-width: 1000px) {
  
  .contact-us .left{
    width: 100%;
    padding: 0;
  }

  .contact-us .right{
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }

  .contact-us{
    background-size: cover;
  }

  h2.about::before{
    display: none;
  }




  .side_bar .side_left{
    width: 100%;
    padding: 0;
  }

  .side_bar .side_right{
    display: none;
  }


  .customization-page .customization-1{
    background: transparent;
  }
  
  .customization-page .customization-1 .left{
    width: 100%;
    padding: 0;
  }

  .customization-page .customization-1 .right{
    display: none;
  }

  .customization-page .customization-1{
    padding: 0;
  }

  .customization-page .customization-3 ul li{
    width: 50%!important;
  }


  .contact-page .contact-1 .left{
    width: 100%;
  }

  .contact-page .contact-1 .right{
    width: 100%;
    padding: 0;
  }

  .contact-page .contact-1{
    background: transparent;
  }

  .contact-page .contact-1 .right ul{
    max-width: initial;
  }
}


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

  .contact-us h2{
    font-size: 30px;
  }

  h2.inner{
    font-size: 24px;
    line-height: 44px;
  }

  .customization-page .customization-2{
    padding: 60px 0;
  }

  .contact-page .contact-1 h2{
    font-size: 24px;
    line-height: 44px;
  }

  .contact-page .contact-2 h2{
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  .contact-us .form input{
    height: 40px;
    font-size: 14px;
  }

  .customization-page .customization-3 ul li{
    width: 100%!important;
  }
}


.gl-page ul{
  margin: -15px;
}

.gl-page ul li{
  padding: 15px;
}

.amap-copyright{
  display: none!important;
}


@media screen and (max-width: 1000px) {
  .newdet-page .share a{
    font-size: 18px;
    line-height: 32px;
  }
}






/* mask */
#mask {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 999;
  display: none;
}

#mask .slick-track {
  margin-left: 0;
}

#mask .mask-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

#mask .mask-close {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 30px;
  color: #000;
  cursor: pointer;
  font-size: 18px;
}

#mask .mask-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}

#mask .mask-inner .item{
  width: 80%;
  margin: auto;
  max-height: 100%;
  overflow-y: auto;
}

#mask .mask-inner .item .box{
  padding: 40px;
  background-color: white;
  position: relative;
  box-shadow: 0 0 10px #ccc;
}

#mask .mask-inner .item .box .left{
  padding: 20px;
}
#mask .mask-inner .item .box .left ul.mask-big-slick{
  box-shadow: 0 0 10px #ccc;
}
#mask .mask-inner .item .box .right{
  padding: 20px;
}

#mask .mask-inner .item .box .right .content {
  line-height: 1.5;
  max-height: 15em;
  overflow-y: auto;
}

#mask .mask-inner .item .box .right .small-slick{
  margin: -15px;
	overflow-y: auto;
	display:-webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

#mask .mask-inner .item .box .right ul.mask-small-slick .slick-current li img{
  box-shadow: 0 0 15px #666;
}

#mask .mask-inner .item .box .right ul.mask-small-slick li{
  padding: 15px;
}



@media screen and (max-width: 1000px) {
  #mask .mask-inner .item .box .right .name{
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  #mask .mask-close{
    right: 0;
    top: 0;
  }
  #mask .mask-inner .item .box{
    padding: 0;
  }
  #mask .mask-inner .item .box .left{
    width: 100%!important;
  }
  #mask .mask-inner .item .box .right{
    width: 100%!important;
  }
  #mask .mask-inner .item .box .right .name{
    font-size: 20px;
  }

  #mask .mask-inner .item .box .right .content{
    max-height: 9em;
  }
}



.prodet-4 ul{
  margin: -15px;
}
.prodet-4 ul li{
  padding: 15px;
}




/* pop_form */
#pop_from {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 80%;
    width: 900px;
    max-width: 90%;
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 222;
    background: white;
    overflow: auto;
    border-radius: 5px;
}
#pop_from .left {
    vertical-align: middle;
}
#pop_from .right {
    padding: 5%;
    vertical-align: middle;
}
#pop_from .right .Tit {
    font-size: 25px;
    font-family: var(--font);
}

#pop_from .right .form {
    margin: auto;
}
#pop_from .right .form input{
    margin-bottom: 20px;
    padding: 8px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #b2b2b2;
}
#pop_from .right .form input[type="submit"] {
    border: none;
    color: #fff;
    background-color: #000;
    font-size: 14px;
    text-transform: uppercase;
    width: auto;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 0;
}

#pop_from .right .p {
    color: #7b7b7b;
}
#pop_from .right .p a {
    color: #3dbdff;
    border-bottom: 1px solid #3dbdff;
}
#pop_close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

@media (max-width: 1000px){
    #pop_from .left {
        display: none;
    }
    #pop_from .right {
        width: 100%!important;
    }
}
/* end */





/* 鼠标效果 */
#cursor {
	position: fixed;
	mix-blend-mode: normal;
    left: -47px;
    top: -47px;
    width: 94px;
    height: 94px;
	z-index: 100;
	pointer-events: none;
}

#cursor .follow {
	background-color:rgb(195 167 134 / 65%);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: -2px;
	top: -2px;
	transform: scale(.2);
	transition: transform 0.45s ease,opacity 0.3s ease;
	opacity: 0;
	border-radius: 50%;
}

#cursor.visible .follow {
	transform: scale(1);
    opacity: 1;
}


#cursor .dot {
  	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	transform: translateY(-50%);
	color: #3dbdff;
}
#cursor i {
    top: 0;
    color: #fff;
    font-size: 21px;
    opacity: 0;
    position: absolute;
}
#cursor i {
    transition: transform .2s ease, opacity .2s ease;
}
#cursor i.fa-angle-left {
	top: -9px;
	transform: translateX(17px);
	left: 23px;
}
#cursor i.fa-angle-right {
	top: -9px;
	transform: translateX(-17px);
	right: 27px;
}
#cursor.visible i {
	transition: transform 0.45s ease,opacity 0.3s ease,color 0.3s ease
}
#cursor.visible i.fa-angle-left,
#cursor.visible i.fa-angle-right,
#cursor.visible:before,
#cursor.visible .color-circle,
#cursor.visible span {
	transform: scale(1);
	opacity: 1
}

#cursor.visible.pointer-down .follow {
	transform: scale(.15)
}

#cursor.visible.pointer-down i {
	color: inherit!important
}

#cursor.visible.pointer-down i.fa-angle-left {
	transform: translateX(-10px)
}

#cursor.visible.pointer-down i.fa-angle-right {
	transform: translateX(10px)
}
/* end */

.p06-1-s5 {
    padding-bottom: 160px
}

.p06-1-s5 .mml-row>ul>li {
    margin-top: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center
}

.p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -moz-box-pack: start;
    justify-content: flex-start;
    padding-left: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    -moz-box-flex: 1;
    flex: 1 1 auto
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
    padding-right: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    -moz-box-flex: 1;
    flex: 1 1 auto
}

.p06-1-s5 h2 {
    margin-bottom: 30px
}

.p06-1-s5 p {
    margin-top: 20px
}

.p06-1-s5 .img-wrap {
    max-width: 822px;
    width: 54%
}

.p06-1-s5 .text {
    max-width: 593px;
}
.p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap .text {
    margin-left: 120px;
    margin-right: auto;
}
.p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap .text {
    margin-right: 120px;
    margin-left: auto;
}
.p06-1-s5 .text h2{
  font-size: 36px;
  color:#333;
  font-family: 'Cambria-bold';
}
.p06-1-s5 .text p{
  font-size: 18px;
  color:#666;
  line-height: 1.8;
}
.p06-1-s5 .swiper-pagination {
    position: absolute;
    margin-top: 0
}

.p06-1-s5 .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px
}

@media (max-width:1200px) {
    .p06-1-s2 .small {
        margin-top: 0;
        max-width: 100%
    }

    .p06-1-s4 .text {
        margin: 0
    }
}
@media (max-width:1000px) {
  .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap .text {
    margin: 0;
  }
  .p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap .text {
    margin: 0;
  }
}
@media (max-width:960px) {
    .p06-1-s2 .tab {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -moz-box-pack: center;
        justify-content: center
    }

    .p06-1-s2 .tab li {
        width: -webkit-calc(50% - 2px);
        width: -moz-calc(50% - 2px);
        width: calc(50% - 2px);
        margin-bottom: 2px
    }
}

@media (max-width:768px) {
    .p06-1-s1 {
        padding: 40px 0
    }

    .p06-1-s4 .text {
        padding: 10px
    }

    .p06-1-s5 {
        padding-bottom: 40px
    }

    .p06-1-s5 .mml-row>ul>li {
        margin-top: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -moz-box-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .img-wrap,
    .p06-1-s5 .mml-row>ul>li:nth-child(even) .img-wrap {
        width: 100%
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text-wrap,
    .p06-1-s5 .mml-row>ul>li:nth-child(even) .text-wrap {
        margin-top: 20px;
        padding: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -moz-box-pack: center;
        justify-content: center
    }

    .p06-1-s5 .mml-row>ul>li:nth-child(odd) .text,
    .p06-1-s5 .mml-row>ul>li:nth-child(even) .text {
        max-width: 100%;
        text-align: center
    }
}

@media (max-width:540px) {
    .p06-1-s2 .tab li {
        width: 100%
    }
}









/*product3-page*/
.product3-page .product3-page-1{
  display: flex;
  justify-content: space-between;
  padding: 100px 15px;
}
.product3-page .product3-page-1 .left{
  max-width:700px;
}
.product3-page .product3-page-1 .right{
  width: calc(100% - 700px);
  padding-left: 90px;
}
.product3-page .product3-page-1 .right .content{
  max-height: 400px;
  overflow-y: auto;
}
.product3-page .product3-page-1 .right .more{
  height: 50px;
  width: 180px;
  line-height: 50px;
  background-color: var(--color);
  transition: all 0.5s;
  margin-top: 30px;
  border: none;
}
.product3-page .product3-page-1 .right .Auxil-through{
  margin-top:30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product3-page .product3-page-1 .right .Auxil-through a{
  font-size: 20px;
  transition: color .5s;
}
.product3-page .product3-page-1 .right .Auxil-through a:hover{
  color: var(--color);
}
.product3-page .product3-page-1 .right .more span{
  color: #FFF;
  font-size: 18px;
  font-family: var(--font);
}
.product3-page .product3-page-1 .right .more:hover{
  background-color: #000;
}
.product3-page .product3-page-1 .right ul li{
  font-size:18px;
  color:#666;
  margin-bottom: 30px;
}
.product3-page .product3-page-1 .right ul li:last-child{
  margin-bottom: 0;
}
.product3-page .product3-page-1 .right ul li strong{
  font-size: 26px;
  font-family: 'Cambria-bold';
  color: #333 !important;
}
.product3-page .product3-page-1 .right ul li span{
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5) !important;
}
.product3-page .product3-page-1 .right .btn-go{
  margin-top: 55px;
}
.product3-page .product3-page-1 .right h4{
  font-size: 16px;
  font-family: 'Hind-Medium';
}
.product3-page .product3-page-1 .right h1{
  font-size: 30px;
  font-family: 'Cambria-bold';
  margin-bottom: 40px;
  padding-top: 55px;
}
.product3-page .product3-page-1 .right p{
  font-size: 16px;
  font-family: 'Hind-Medium';
}
.product3-page-2 .title{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.product3-page-2 .det3{
  padding-bottom: 100px;
  font-size: 18px;
}
.product3-page-2 .title h4{
  font-size: 24px;
  font-family: var(--font);
  background-color: var(--color);
  color:#fff;
  padding: 10px 50px;
}
.product3-page-2 ul li{
  padding: 0 10px 30px;
  line-height: 1.8;
}
.product3-page-2 ul li .img_box{
  background: #f5f5f5;
  padding: 30px; 
  display: block;
}
.product3-page-2 ul li h4{
  font-size: 22px;
  font-family: 'Hind-Medium';
  margin-top: 15px;
  transition: all 0.5s;
}
.product3-page-2 ul li:hover h4{
  color:var(--blue);
}
.product3-page .product3-page-1 .left .left-big ul li{
  height: auto;
  padding: 1px;
}
.product3-page .product3-page-1 .left .left-big ul li .box{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.product3-page .product3-page-1 .left .left-big ul li .box img{
  width:100%;
  height: 100%;
  object-fit: cover;
}
.product3-page .product3-page-1 .left .left-small{
  margin-top: 40px;
  position: relative;
}
.product3-page .product3-page-1 .left .left-small ul{
  margin: 0 -10px;
}
.product3-page .product3-page-1 .left .left-small ul .slick-track{
  margin-left: 0;
}
.product3-page .product3-page-1 .left .left-small ul li{
  height: 160px;
  padding: 0 10px;
}
.product3-page .product3-page-1 .left .left-small ul li .box{
  height: 100%;
  width: 100%;
  transition: all .5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product3-page .product3-page-1 .left .left-small ul li .box img{
  width: 100%;
}
.product3-page .product3-page-1 .left .left-small button{
  background: none;
  border: none;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
}
.product3-page .product3-page-1 .left .left-small .left-small-prev{
  left: 0;
}
.product3-page .product3-page-1 .left .left-small .left-small-next{
  right: 0;
}
.product3-page .product3-page-1 .left .left-small button i{
  font-size: 28px;
  color: #8c8c8c;
}
.product3-page .product3-page-1 .left .left-small button:hover i{
  color: var(--color);
}
.product3-page .product3-page-1 .right .det1{
  margin: 40px 0;
}
.product3-page .product3-page-1 .right .det1 h4{
  font-size: 30px;
  font-family: 'Hind-SemiBold';
}
.product3-page .product3-page-1 .right .det1 p{
  font-size: 18px;
  font-family: 'Hind-Medium';
}
.product3-page .product3-page-1 .right .det2 h4{
  font-size: 30px;
  font-family: 'Hind-SemiBold';
}
.product3-page .product3-page-1 .right .det2 p{
  font-size: 18px;
  font-family: 'Hind-Medium';
}
.pro-form {
  background: url("../images/product-bg.jpg") no-repeat;
  background-size: 100% 100%;
  height: 650px;
}
.pro-form .pro-content .pro-form-title{
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pro-form .pro-content .pro-form-title h3{
  font-size: 36px;
  font-family: 'Hind-SemiBold';
}
.pro-form .pro-content .pro-form-title span {
    width: 20px;
    height: 1px;
    background-color: #000;
}
.pro-form .pro-content form{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pro-form .pro-content form input[type='text']{
  width:48%;
  height: 80px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-right: 4%;
  padding: 0 15px;
  font-size: 18px;
  font-family: 'Hind-Medium';
  margin-bottom: 30px;
}
.pro-form .pro-content form input[type='text']:nth-child(2n){
  margin-right: 0;
  font-size: 18px;
}
.pro-form .pro-content form textarea{
  width:48%;
  height: 150px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-right: 4%;
  font-size: 18px;
  padding: 20px 15px 0;
  font-family: 'Hind-Medium';
}
.pro-form .pro-content form input[type='submit']{
  width:225px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 18px;
  font-family: 'Hind-Medium';
  background-color: var(--color);
  color:#fff;
  transition: all 0.5s;
  border: none;
  margin-right: auto;
}
.pro-form .pro-content form input[type='submit']:hover{
  background-color: var(--primary);
}
.pro-form .pro-content form textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.pro-form .pro-content form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.pro-form .pro-content form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.pro-form .pro-content form input:-moz-placeholder {
  color:  rgba(0, 0, 0, 0.6);
}
.pro-form .pro-content form input:-ms-input-placeholder {
  color:  rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1600px) {
  .product3-page .product3-page-1 .left{
    max-width: 50%;
  }
  .product3-page .product3-page-1 .right{
    width: 50%;
  }
}
@media screen and (max-width: 1400px) {
  .product3-page .product3-page-1 .right h1 {
    font-size: 26px;
    margin-bottom: 30px;
    padding-top: 0;
  }
  .product3-page .product3-page-1 .right ul li strong {
    font-size: 26px;
  }
  .product3-page .product3-page-1 .right .more{
    margin-top: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .product3-page .product3-page-1 .right ul li span{
    font-size: 16px;
  }
  .product3-page-2 ul li h4 {
    font-size: 20px;
  }
  .product3-page .product3-page-1 .right ul li strong {
    font-size: 22px;
  }
  .product3-page .product3-page-1 .right {
    padding-left: 45px;
  }
  .product3-page-2 .title h4 {
    font-size: 20px;
    padding: 10px 20px;
  }
  .inner-page.about-page{
    padding: 60px 0 !important;
  }
}
@media screen and (max-width: 1000px) {
  .product3-page .product3-page-1 .left{
    max-width: 100%;
  }
  .product3-page .product3-page-1 .right{
    width: 100%;
    padding-left: 0;
    margin-top: 60px;
  }
  .inner-page.about-page {
    padding: 0px 0 !important;
  }
  .product3-page .product3-page-1 .left .left-small ul li {
    height: auto;
  }
  .product3-page .product3-page-1{
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .product3-page .product3-page-1 {
    padding: 60px 15px;
  }
}








    .seoPublic .title {
        font-size: 36px;
        color:#333;
        font-family: 'Cambria-bold';
        line-height: 1.4;
        margin-bottom: 1em;
    }

    .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: -15px;
    }
     .seoPublic .Auxil-honor .list ul .slick-track{
       margin-left: 0;
     }
    .seoPublic .Auxil-honor .list ul li {
        padding: 15px;
    }

    .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: 1.4;
        -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: 1.4;
        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;
        font-size: 16px;
        font-family: var(--font);
    }

    .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: var(--color);
    }

    .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 .box {
        display: block;
    }

    .seoPublic .Auxil-related .list ul li .box a.img-box {
        display: block;
    }

    .seoPublic .Auxil-related .list ul li .box .content {
        display: block;
        text-align: left;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 24px;
        height: 65px;
        font-family: 'Cambria-bold';
        color:#333;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin: 35px 0 15px;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content p {
        display: block;
        font-size: 18px;
        color: #666;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        line-height: 1.8;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color);
        font-size: 16px;
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more i {
        margin-left: 5px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
        color: white;
        background: var(--color);
    }

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

        .seoPublic .Auxil-about .box .right div.title,
        .seoPublic .Auxil-related .list ul li .box .content div.h3 {
            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,
        .seoPublic .Auxil-related .list ul li .box .content p {
            font-size: 14px;
        }

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

        .seoPublic .Auxil-related .list ul li .box .content a.more {
            font-size: 14px;
            line-height: 34px;
            height: 34px;
            padding: 0 15px;
        }

        .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-weight: bold;
            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;
        }
    }
    
  /*seo*/
  .wow.fadeInUp.yongd {
    margin: 25px auto 60px;
    color: #666;
    font-size: 18px;
    max-width: 1200px;
    text-align: center;
    line-height: 2;
}
.wow.fadeInUp.yongd h1 {
    display: inline;
}
.font-18.wow.fadeInUp.mb-120 {
    line-height: 2;
}
p.font-18.mb-20 {
    line-height: 2;
}
h3.font-18.txt-center.product_name {
    line-height: 1.8;
}
@media screen and (max-width: 1000px){
  .seoIndustry.Auxil-industry,
  a.yongdawa {
    display: none !important;
  }
}
.seoPublic .seoIndustry .text a {
    color: #666;
}
._text.font-18.mt-30 {
    line-height: 2;
}
p._text.font-18.mt-15.mb-15 {
    line-height: 1.8;
}