@font-face {
  font-family: 'Poppins-Bold';
  src: url(../fonts/Poppins-Bold.ttf) format('truetype'), url(../fonts/Poppins-Bold.eot) format('eot'), url(../fonts/Poppins-Bold.woff) format('woff'), url(../fonts/Poppins-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Light';
  src: url(../fonts/Poppins-Light.ttf) format('truetype'), url(../fonts/Poppins-Light.eot) format('eot'), url(../fonts/Poppins-Light.woff) format('woff'), url(../fonts/Poppins-Light.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Regular';
  src: url(../fonts/Poppins-Regular.ttf) format('truetype'), url(../fonts/Poppins-Regular.eot) format('eot'), url(../fonts/Poppins-Regular.woff) format('woff'), url(../fonts/Poppins-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-BoldItalic';
  src: url(../fonts/Poppins-BoldItalic.ttf) format('truetype'), url(../fonts/Poppins-BoldItalic.eot) format('eot'), url(../fonts/Poppins-BoldItalic.woff) format('woff'), url(../fonts/Poppins-BoldItalic.woff2) format('woff2');
}
textarea::-webkit-input-placeholder {
  color: #cccccc;
}
input::-webkit-input-placeholder {
  color: #cccccc;
}
input::-moz-placeholder {
  color: #cccccc;
}
input:-moz-placeholder {
  color: #cccccc;
}
input:-ms-input-placeholder {
  color: #cccccc;
}
body {
  margin: 0;
  padding: 0;
  --color: #063591;
  --primary: #063591;
  --secondary: #fe7700;
  font-family: 'Poppins-Regular';
  background-color: #111111;
  --font:'Poppins-Bold';
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1460px;
  margin: auto;
  position: relative;
  color: #fff;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
}

#header .nav {
  position: relative;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 24px;
  font-size: 18px;
  color: #fff;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--secondary);
  border-color: transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#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: 18px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 244px;
  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(--secondary);
  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: 16px;
  -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 .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 65px;
}
#header .nav .ui.menu .right .h-search {
  cursor: pointer;
  position: relative;
}
#header .nav .ui.menu .right .h-search input[type='text'] {
  width: 190px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 55px 0 10px;
  font-size: 14px;
  background-color: transparent;
}
#header .nav .ui.menu .right .h-search input[type='submit'] {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../images/search.png") no-repeat;
  background-position: center center;
  height: 100%;
  border: none;
  width: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.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;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#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-weight: bold;
  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: 0 20px 0 15px;
}
.language-box .zhuyu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: 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: 110px;
  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.center h3 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-title h3 {
  font-size: 70px;
  font-family: "Poppins-BoldItalic";
  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: #fff;
}
.home-title h3::before {
  content: "";
  background: url("../images/home-title-icon.png") no-repeat;
  width: 5px;
  height: 60px;
  margin-right: 30px;
  display: block;
}
.home-title span {
  display: block;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.btn-go {
  padding: 15px 30px;
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  position: relative;
  background-color: var(--color);
  border: 1px solid var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
  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;
}
.btn-go span {
  position: relative;
  z-index: 2;
  margin-right: 15px;
}
.btn-go img {
  position: relative;
  z-index: 2;
}
.btn-go:hover {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}
.btn-go::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.btn-go:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  background-color: transparent;
}

.btn-go.black {
  background-color: #000;
  border: 1px solid #000;
}
.btn-go.black:hover{
  background-color: transparent;
  border: 1px solid #fff;
}
.btn-go.black:hover::before {
  background-color: transparent;
}

.submit{
  width: 100%;
  height: 55px;
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  position: relative;
  background-color: var(--color);
  border: 1px solid var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
  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: 30px;
  text-align: center;
}
.submit input[type='submit']{
  position: relative;
  z-index: 2;
  border: none;
  background: none;
  color:#fff;
  width: 100%;
  height: 100%;
}
.submit::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.submit:hover {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}
.submit:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  background-color: transparent;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute !important;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 35px;
  width: 1460px;
  padding: 0 15px 0 25px;
  margin: 0 !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#banner .banner-content ul .slick-dots li {
  width: 5px;
  height: 5px !important;
  background-color: #575959;
  border-radius: 50%;
  margin-right: 25px;
  position: relative;
  overflow: visible;
  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;
}
#banner .banner-content ul .slick-dots li button {
  position: absolute;
  color: #575959;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 18px;
  background: none;
  border: none;
  z-index: 5;
}
#banner .banner-content ul .slick-dots li.slick-active button {
  font-style: italic;
}
#banner .banner-content ul .slick-dots li.slick-active:last-child {
  margin-right: 0;
  margin-left: 50px;
}
#banner .banner-content ul .slick-dots li.slick-active:last-child::before {
  width: 50px;
  height: 1px;
  background-color: #575959;
  content: "";
  display: block;
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translate(-100%, -50%);
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
#banner .banner-content ul .slick-dots .slick-active {
  width: 10px;
  height: 10px !important;
  background-color: #fe7700;
  margin-right: 75px;
}
#banner .banner-content ul .slick-dots li.slick-active + li::before {
  width: 50px;
  height: 1px;
  background-color: #575959;
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .banner-content ul .slick-dots .slick-active::after {
  width: 25px;
  height: 1px;
  background-color: #fe7700;
  content: "";
  display: block;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .banner-content ul .slick-dots li.slick-active:last-child::after {
  left: unset;
  right: 100%;
}
#banner .banner-content ul li {
  position: relative;
  overflow: hidden;
}
#banner .banner-content ul li .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  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;
}
#banner .banner-content ul li .content .left h3 {
  font-size: 80px;
  line-height: 1.2;
  max-width: 850px;
  margin-bottom: 50px;
  font-family: 'Poppins-BoldItalic';
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
@-webkit-keyframes play_big {
  0% {
    width: 65px;
    height: 65px;
    opacity: 0;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
}
@-moz-keyframes play_big {
  0% {
    width: 65px;
    height: 65px;
    opacity: 0;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
}
@keyframes play_big {
  0% {
    width: 65px;
    height: 65px;
    opacity: 0;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
}
@-webkit-keyframes btn_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes btn_rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes btn_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.product-btn {
  display: block;
  font-size: 22px;
  width: 50px;
  height: 50px;
  position: relative;
  text-align: center;
  line-height: 50px;
}
.product-btn span {
  margin-left: 0;
  font-size: 30px;
}
.product-btn .product-border::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}
.product-btn .product-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-animation: btn_rotate 2s linear infinite;
  -moz-animation: btn_rotate 2s linear infinite;
  animation: btn_rotate 2s linear infinite;
}
#index-body .category {
  padding: 25px 0 150px;
  position: relative;
}
#index-body .category .category-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
#index-body .category .home-title {
  margin-bottom: 85px;
}
#index-body .category .category-content {
  overflow: hidden;
  z-index: 5;
  padding: 0;
}
#index-body .category .category-content ul {
  width:calc(100% - 30px);
}
/*#index-body .category .category-content ul .swiper-slide-next .box .box-b .category-b span {
  margin-left: 0;
}
#index-body .category .category-content ul .swiper-slide-next .box .box-b .category-b .category-btn {
  display: none;
}
#index-body .category .category-content ul .swiper-slide-next .box .box-b .category-b img {
  opacity: 1;
}*/
#index-body .category .category-content ul .swiper-slide-active {
  padding-top: 70px;
}
#index-body .category .category-content ul .swiper-slide-active .box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0066ff), to(#001856));
  background-image: -webkit-linear-gradient(top, #0066ff 0%, #001856 100%);
  background-image: -moz-linear-gradient(top, #0066ff 0%, #001856 100%);
  background-image: linear-gradient(to bottom, #0066ff 0%, #001856 100%);
}

#index-body .category .category-content ul .swiper-slide-active .box .box-num {
  top: 40px;
  right:  35px;
  bottom: unset;
  color: #fff;
}
#index-body .category .category-content ul .swiper-slide-active .box .box-b h4 {
  margin-top: 0;
}
#index-body .category .category-content ul .swiper-slide-active .box .box-b .category-b {
  margin-bottom: 60px;
}
#index-body .category .category-content ul .swiper-slide {
  width: 33.3333%;
}
#index-body .category .category-content ul li {
  position: relative;
}
#index-body .category .category-content ul li .box {
  color: #fff;
  padding: 60px 0;
  background-color: #363636;
  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;
  position: relative;
 
}
#index-body .category .category-content ul li .box .box-num {
  font-size: 73px;
  font-family: Poppins-Bold;
  color: #0064fb;
  position: absolute;
  right: 20px;
  bottom: 20px;
  line-height: 1;
}
#index-body .category .category-content ul li .box .box-b{
  padding: 0 45px;
}
#index-body .category .category-content ul li .box .box-b h4 {
  font-size: 35px;
  font-family: 'Poppins-Bold';
  line-height: 1.3;
  margin: 25px 0 20px;
  height: 104px;
  max-width: 360px;
}
#index-body .category .category-content ul li .box .box-b p {
  font-size: 18px;
  font-family: "Poppins-Light";
}
#index-body .category .category-content ul li .box .box-b .category-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
  cursor: pointer;
}
#index-body .category .category-content ul li .box .box-b .category-b img {
  margin-left: 45px;
  opacity: 0;
}
#index-body .category .category-content ul li .box .box-b .category-b span {
  font-size: 22px;
  margin-left: 25px;
  text-transform: uppercase;
}
#index-body .category .category-content ul li .box .box-b .category-b .category-btn {
  font-size: 22px;
  width: 50px;
  height: 50px;
  position: relative;
  text-align: center;
  line-height: 50px;
}
#index-body .category .category-content ul li .box .box-b .category-b .category-btn span {
  margin-left: 0;
  font-size: 30px;
}
#index-body .category .category-content ul li .box .box-b .category-b .category-btn .category-border::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}
#index-body .category .category-content ul li .box .box-b .category-b .category-btn .category-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-animation: btn_rotate 2s linear infinite;
  -moz-animation: btn_rotate 2s linear infinite;
  animation: btn_rotate 2s linear infinite;
}
#index-body .advantage {
  background: url("../images/advantage-bg.jpg") no-repeat;
  background-size: cover;
  padding: 120px 0;
}
#index-body .advantage .advantage-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 .advantage .advantage-content .left {
  max-width: 650px;
}
#index-body .advantage .advantage-content .left ul {
  margin-top: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top: none;
}
#index-body .advantage .advantage-content .left ul li.active {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}
#index-body .advantage .advantage-content .left ul li.active p {
  padding: 35px 40px;
  height: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
      background: #00000094;
}
#index-body .advantage .advantage-content .left ul li.active .title {
  background-color: #ffffff82;
}
#index-body .advantage .advantage-content .left ul li.active .title h4,
#index-body .advantage .advantage-content .left ul li.active .title .btn {
  color: var(--color);
}
#index-body .advantage .advantage-content .left ul li.active .title .btn span {
  display: none;
}
#index-body .advantage .advantage-content .left ul li.active .title .btn span:last-child {
  display: block;
}
#index-body .advantage .advantage-content .left ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .advantage .advantage-content .left ul li .title {
  height: 60px;
  padding-left: 40px;
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
#index-body .advantage .advantage-content .left ul li .title .btn {
  color: var(--color);
  margin-right: 20px;
  font-size: 34px;
}
#index-body .advantage .advantage-content .left ul li .title .btn span {
  display: block;
}
#index-body .advantage .advantage-content .left ul li .title .btn span:last-child {
  display: none;
}
#index-body .advantage .advantage-content .left ul li .title h4 {
  color: #fff;
  font-size: 20px;
  font-family: Poppins-Bold;
}
#index-body .advantage .advantage-content .left ul li p {
  font-size: 18px;
  padding: 0 40px;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-top: none;
}
#index-body .advantage .advantage-content .right {
  margin: 0;
  padding-top: 45px;
  max-width: 700px;
  position: relative;
}
#index-body .advantage .advantage-content .right .adv-page {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}
#index-body .advantage .advantage-content .right .adv-page .next{
  background: none;
  border:none;
  margin-left: 20px;
  line-height: 30px;
}
#index-body .advantage .advantage-content .right .adv-page span {
  font-size: 24px;
  font-family: Poppins-Light;
}
#index-body .advantage .advantage-content .right .adv-page span:first-child {
  font-size: 40px;
  font-family: Poppins-Bold;
  color: var(--color);
}
#index-body .advantage .advantage-content .right ul{
  padding-left: 30px;
}
#index-body .advantage .advantage-content .right ul li{
  position: relative;
}
#index-body .advantage .advantage-content .right ul li .title{
    width: 200px;
    height: 50px;
    line-height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    position: absolute;
    left:-30px;
    bottom:125px;
    transition: all 0.5s;
}
#index-body .advantage .advantage-content .right ul li .title:hover{
  background-color: var(--color);
}
#index-body .advantage .advantage-content .right ul li.swiper-slide-active .title{
    bottom:25px;
}
#index-body .advantage .advantage-content .right ul li .title h4{
    font-size: 18px;
    color:#fff;
}

#index-body .advantage .advantage-content .right .btn-more {
  position: absolute;
  left: 0;
  top: 75px;
  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;
  padding-left: 35px;
  z-index: 5;
}
#index-body .advantage .advantage-content .right .btn-more span {
  font-size: 30px;
  color: #fff;
  font-family: Poppins-Bold;
  margin-right: 50px;
}
#index-body .advantage .advantage-content .right ul .swiper-slide-active {
  padding-top: 100px;
}
#index-body .about {
  padding: 140px 0;
  position: relative;
}
#index-body .about .bg {
  position: absolute;
  top: 0;
  right: 0;
}
#index-body .about .about-content {
  z-index: 5;
}
#index-body .about .about-content .about-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 170px;
}
#index-body .about .about-content .about-t .left {
  max-width: 680px;
}
#index-body .about .about-content .about-t .left .home-title {
  margin-bottom: 35px;
}
#index-body .about .about-content .about-t .left p {
  font-size: 18px;
  line-height: 2;
  opacity: 0.6;
}
#index-body .about .about-content .about-t .left .text {
  font-size: 18px;
  line-height: 2;
  opacity: 0.6;
}
#index-body .about .about-content .about-t .left .text {
  margin: 35px 0 70px;
}
#index-body .about .about-content .about-t .left .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .about .about-content .about-t .left .btn .btn-go {
  margin-right: 25px;
}
#index-body .about .about-content .about-t .left .btn a::first-child .btn-go{
  background-color: transparent;
  border-color:var(--color); 
}
#index-body .about .about-content .about-t .left .btn a:first-child .btn-go:first-child {
  background-color: transparent;
  border: 1px solid var(--color);
}
#index-body .about .about-content .about-t .left .btn a:first-child .btn-go:hover::before {
  background-color: var(--color);
}
#index-body .about .about-content .about-t .right {
  padding-top: 145px;
}
#index-body .about .about-content .about-t .right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .about .about-content .about-t .right ul li:nth-child(2) {
  background-color: #063591;
  margin: 40px 30px 0;
}
#index-body .about .about-content .about-t .right ul li:nth-child(2) h4::after {
  background-color: #fff;
}
#index-body .about .about-content .about-t .right ul li {
  width: 210px;
  height: 255px;
  padding: 45px 35px;
  border: 1px solid var(--color);
}
#index-body .about .about-content .about-t .right ul li h4 {
  font-size: 45px;
  font-family: Poppins-Bold;
}
#index-body .about .about-content .about-t .right ul li h4 span {
  font-size: 14px;
}
#index-body .about .about-content .about-t .right ul li h4::after {
  content: "";
  display: block;
  width: 20px;
  height: 5px;
  background-color: var(--color);
  margin-bottom: 45px;
}
#index-body .about .about-content .about-t .right ul li p {
  font-size: 20px;
}
#index-body .about .about-content .about-b {
  position: relative;
}
#index-body .about .about-content .about-b .content {
  max-width: 600px;
  position: absolute;
  top: 50%;
  left: 110px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .about .about-content .about-b .content h3 {
  font-size: 70px;
  font-family: 'Poppins-BoldItalic';
  line-height: 1.2;
}
#index-body .about .about-content .about-b .content p {
  font-size: 18px;
  margin: 25px 0 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
#index-body .about .about-content .about-b .content p span {
  opacity: 0.6;
}
#index-body .about .about-content .about-b .content p::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f6d046), to(#fe7700));
  background-image: -webkit-linear-gradient(top, #f6d046 0%, #fe7700 100%);
  background-image: -moz-linear-gradient(top, #f6d046 0%, #fe7700 100%);
  background-image: linear-gradient(to bottom, #f6d046 0%, #fe7700 100%);
  width: 10px;
  height: 70px;
  margin-right: 30px;
  display: block;
}
#index-body .about .about-content .about-b .content .btn-go {
  background-color: #000;
}
#index-body .about .about-content .about-b .content .btn-go:hover {
  background-color: transparent;
}
#index-body .product {
  padding: 130px 0 215px;
}
#index-body .product .product-content ul {
  margin: 60px -25px 0;
}
#index-body .product .product-content ul li {
  padding: 0 25px;
}
#index-body .product .product-content ul li .img_box {
  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;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  background-color: #fff;
  height: 330px;
  position: relative;
}
#index-body .product .product-content ul li .img_box .box-hide {
  width: 100%;
  height: 100%;
  background-color:rgb(6 53 145 / 82%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  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;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul li .img_box:hover .box-hide {
  opacity: 1;
}
#index-body .product .product-content ul li h4 {
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul li h4:hover {
  color: var(--color);
}
#index-body .product .product-content .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -60px;
  width: 1260px;
  padding: 0 15px;
  margin: 0 !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .product .product-content .slick-dots li {
  width: 14px;
  height: 14px !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d7b73f), to(#d77a2b));
  background-image: -webkit-linear-gradient(top, #d7b73f 0%, #d77a2b 100%);
  background-image: -moz-linear-gradient(top, #d7b73f 0%, #d77a2b 100%);
  background-image: linear-gradient(to bottom, #d7b73f 0%, #d77a2b 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5px;
  padding: 0 !important;
  opacity: 0.6;
}
#index-body .product .product-content .slick-dots li button {
  display: none;
}
#index-body .product .product-content .slick-dots .slick-active {
  opacity: 1;
}
#index-body .application {
  height: 740px;
  transition: .5s ease;
  position: relative;
}
#index-body .application .bg{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: all .5s ease-in-out;
}
#index-body .application .bg.active{
  opacity: 1;
}
#index-body .application .application-content {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
#index-body .application .application-content .left {
  padding-left: 35px;
}
#index-body .application .application-content .left .app-title::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f6d046), to(#fe7700));
  background-image: -webkit-linear-gradient(top, #f6d046 0%, #fe7700 100%);
  background-image: -moz-linear-gradient(top, #f6d046 0%, #fe7700 100%);
  background-image: linear-gradient(to bottom, #f6d046 0%, #fe7700 100%);
  width: 7px;
  height: 210px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .application .application-content .left .app-title {
  color: #fff;
  max-width: 610px;
  position: relative;
  padding-left: 40px;
}
#index-body .application .application-content .left .app-title h3 {
  font-size: 70px;
  font-family: 'Poppins-BoldItalic';
}
#index-body .application .application-content .left .app-title p {
  font-size: 18px;
  margin: 30px 0 70px;
}
#index-body .application .application-content .right {
  max-width: 630px;
}
#index-body .application .application-content .right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#index-body .application .application-content .right ul li:nth-child(2n) {
  margin-right: 0;
}
#index-body .application .application-content .right ul li:nth-last-child(2),
#index-body .application .application-content .right ul li:last-child {
  margin-bottom: 0;
}
#index-body .application .application-content .right ul li:hover {
  background-color: var(--color);
}
#index-body .application .application-content .right ul li {
  width: 290px;
  height: 120px;
  background-color: rgba(21, 21, 21, 0.6);
  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: 0 25px;
  margin-bottom: 40px;
  margin-right: 50px;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
  cursor: pointer;
}
#index-body .application .application-content .right ul li span {
  font-size: 20px;
  color: #fff;
  margin-left: 25px;
}
#index-body .application .application-content .right ul li .box-bg{
  display: none;
}
#index-body .news {
  padding: 180px 0 160px;
  position: relative;
  overflow: hidden;
}
#index-body .news .bg{
  position: absolute;
  right:0;
  top:-60%;
}
#index-body .news .news-content ul {
  margin-top: 65px;
}
#index-body .news .news-content ul li:hover {
  background-color: var(--color);
  color: #fff;
}
#index-body .news .news-content ul li:hover .app-btn .product-btn .product-border {
  border-color: #fff;
}
#index-body .news .news-content ul li:hover .app-btn .product-btn .product-border::before {
  background-color: #fff;
}
#index-body .news .news-content ul li {
  padding: 45px 35px 0;
  height: 470px;
  background-color: #fff;
  color: #000;
  transition: all 0.5s;
}
#index-body .news .news-content ul li .date {
  font-size: 14px;
  font-family: 'Poppins-Light';
  font-weight: bold;
}
#index-body .news .news-content ul li h4 {
  font-size: 30px;
  font-family: 'Poppins-Bold';
  line-height: 1.2;
  margin: 20px 0 30px;
}
#index-body .news .news-content ul li p {
  font-size: 14px;
  font-family: 'Poppins-Light';
  font-weight: bold;
}
#index-body .news .news-content ul li .app-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}
#index-body .news .news-content ul li .app-btn h5 {
  font-size: 16px;
  margin-left: 15px;
}
#index-body .news .news-content ul li .app-btn .product-btn .product-border {
  border-color: rgba(0, 0, 0, 0.4);
}
#index-body .news .news-content ul li .app-btn .product-btn .product-border::before {
  background-color: #fe7700;
}
#footer {
  position: relative;
}
#footer .footer-userinfo {
  height: 200px;
  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;
}
#footer .footer-userinfo .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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .footer-userinfo .content .left {
  color: #fff;
  font-size: 60px;
  font-family: "Poppins-BoldItalic";
}
#footer .footer-userinfo .content .right .btn-go {
  background-color: #000;
}
#footer .footer-userinfo .content .right .btn-go:hover {
  background-color: transparent;
}
#footer .footer-center {
  background-color: #090909;
}
#footer .footer-center .footer-t {
  padding-top: 65px;
  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;
}
#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: 35px;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list {
  max-width: 280px;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .f-logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list span {
  color: #ffffff;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons .qc-img{
  width: 0;
  height: auto;
  border: 1px solid transparent;
  transition: all 0.5s;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons a {
  margin-bottom: 0;
  background-color: #fff;
  display: block;
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 25px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--color);
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons a.qrcode{
  position: relative;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons a.qrcode .box{
  position: absolute;
  padding: 0;
  background: #fff;
  border-radius:15px;
  left:100%;
  bottom:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  overflow: hidden;
  opacity: 0;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons a.qrcode .box .qc-img{
  width: 100px;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons a.qrcode:hover .box{
  padding: 20px;
  opacity: 1;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons a:last-child {
  margin-right: 0;
}
#footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons a:hover {
  background-color: var(--color);
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list {
  max-width: 360px;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list input::-webkit-input-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list input::-moz-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list input:-moz-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list input:-ms-input-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form input[type="text"] {
  height: 60px;
  background-color: #535353;
  padding: 0 20px;
  font-size: 18px;
  width: 49%;
  margin-bottom: 10px;
  border: none;
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form input[name="mail"] {
  width: 100%;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message {
  position: relative;
  width: 100%;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message textarea::-webkit-input-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message textarea:-moz-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message textarea::-moz-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message textarea:-ms-input-placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message textarea::placeholder {
  color: #fff;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message textarea {
  color: #fff;
  width: 100%;
  background-color: #535353;
  padding: 20px;
  height: 90px;
  border: none;
  font-size: 18px;
}
#footer .footer-center .footer-t .footer-t-gird .contact.t-list form .message input[type='submit'] {
  width: 30px;
  height: 24px;
  background: url("../images/fly.png") no-repeat;
  position: absolute;
  border: none;
  right: 10px;
  bottom: 10px;
}
#footer .footer-center .footer-t .footer-t-gird .quick.t-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .footer-center .footer-t .footer-t-gird .quick.t-list ul li {
  width: 50%;
  margin-bottom: 15px;
}
#footer .footer-center .footer-t .footer-t-gird .quick.t-list ul li:last-child,
#footer .footer-center .footer-t .footer-t-gird .quick.t-list ul li:nth-last-child(2) {
  margin-bottom: 0;
}
#footer .footer-center .footer-t .footer-t-gird .t-list {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#footer .footer-center .footer-t .footer-t-gird .t-list.link span:hover{
  color:var(--secondary);
}
#footer .footer-center .footer-t .footer-t-gird .t-list.quick{
 width: 25%;
}
#footer .footer-center .footer-t .footer-t-gird .t-list p {
  font-size: 30px;
  margin: 50px 0 45px;
  font-family: 'Poppins-BoldItalic';
}
#footer .footer-center .footer-t .footer-t-gird .t-list span {
  font-size: 18px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  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-b p {
  color: rgba(255, 255, 255, 0.4);
  height: 55px;
  font-family: 'Poppins-Light';
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  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 p span {
  margin-right: 10px;
  font-size: 16px;
}
#footer .footer-center .footer-b p img {
  width: 260px;
  height: auto;
  padding-top: 5px;
  opacity: 0.4;
}
@media (max-width: 1600px) {
  .ui.container,
  #banner .banner-content ul .slick-dots {
    width: 1400px;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 50px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
  }
  #index-body .about .about-content .about-t .left {
    max-width: 620px;
  }
}
@media (max-width: 1400px) {
  .ui.container,
  #banner .banner-content ul .slick-dots {
    width: 1200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 10px;
    font-size: 16px;
  }
  #header .nav .ui.menu .right {
    margin-left: 25px;
  }
  .home-title h3 {
    font-size: 54px;
  }
  .home-title h3::before {
    height: 40px;
  }
  #index-body .about .about-content .about-t .left p {
    font-size: 16px;
  }
  #index-body .about .about-content .about-t .left .text{
    font-size: 16px;
  }
  #index-body .about .about-content .about-b .content h3 {
    font-size: 54px;
  }
  #index-body .category .category-content ul li .box .box-b h4 {
    font-size: 36px;
  }
  #index-body .advantage .advantage-content .left {
    max-width: 520px;
  }
  #index-body .advantage .advantage-content .left ul li.active p {
    font-size: 16px;
  }
  #index-body .advantage .advantage-content .right {
    max-width: 580px;
  }
  #index-body .advantage .advantage-content .right .btn-more span {
    font-size: 26px;
    margin-right: 25px;
  }
  #index-body .application .application-content .left {
    padding-left: 0;
  }
  #footer .footer-userinfo .content .left {
    font-size: 44px;
  }
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list {
    max-width: 260px;
  }
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list form input[name="phone"],
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list form input[name="name"] {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .ui.container,
  #banner .banner-content ul .slick-dots {
    width: 1000px;
  }
  #header .nav .ui.menu .right .h-inquire {
    display: none;
  }
  #header .nav .ui.menu .right .h-search input[type='text'] {
    width: 140px;
  }
  #header .nav .ui.menu .right {
    margin-left: 0px;
  }
  .language-box {
    margin: 0 10px;
  }
  .language-box .zhuyu img {
    width: 20px;
  }
  #header .nav .header-icon {
    width: 80px;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 36px;
    max-width: 365px;
  }
  #banner .banner-content ul li .content .right {
    width: 40%;
  }
  #index-body .about .about-content .about-t {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #index-body .about .about-content .about-t .left {
    max-width: 100%;
  }
  #index-body .about .about-content .about-b .content h3 {
    font-size: 40px;
  }
  #index-body .advantage .advantage-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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #index-body .advantage .advantage-content .right {
    max-width: 700px;
  }
  #index-body .advantage .advantage-content .left {
    max-width: 100%;
  }
  #index-body .application .application-content .left .app-title h3 {
    font-size: 54px;
  }
  #index-body .application .application-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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #index-body .application .application-content .left {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 60px;
  }
  #index-body .application .application-content .right {
    max-width: 100%;
  }
  #index-body .application .application-content .right ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #index-body .application .application-content .right ul li {
    margin-right: 0;
  }
  #index-body .application .application-content .left .app-title p {
    font-size: 18px;
    margin: 30px 0 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 {
    width: 50%;
  }
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list {
    max-width: 50%;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block;
  }
  .btn-go {
    padding: 10px 20px;
    font-size: 16px;
  }
  .ui.container {
    width: 700px;
  }
  #index-body .about .about-content .about-b .content h3 {
    font-size: 30px;
  }
  #index-body .about .about-content .about-b .content {
    max-width: 96%;
    width: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #index-body .about .about-content .about-b .content p {
    margin: 25px 0;
  }
  #index-body .about .about-content .about-t {
    margin-bottom: 90px;
  }
  #index-body .advantage .advantage-content .right {
    max-width: 100%;
  }
  #index-body .category .category-content ul li .box .box-b h4 {
    font-size: 30px;
  }
  #index-body .category .category-content ul li .box .box-num {
    font-size: 50px;
  }
  #index-body .category .category-content ul li .box .box-b .category-b span {
    font-size: 18px;
  }
  #index-body .category .category-content ul .swiper-slide-active .box .box-b .category-b {
    margin-bottom: 30px;
  }
  #index-body .category .category-content ul li .box .box-b p {
    font-size: 16px;
  }
  #index-body .application .application-content .left .app-title {
    max-width: 460px;
  }
  #index-body .application .application-content .left .app-title p {
    font-size: 16px;
  }
  #index-body .news .news-content ul li {
    height: auto;
    padding: 45px 35px;
  }
  #footer .footer-userinfo .content .left {
    font-size: 34px;
  }
  #footer .footer-center .footer-b p {
    -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;
    height: auto;
    padding: 20px 0;
  }
  #footer .footer-center .footer-b p span {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 24px;
    max-width: 240px;
    margin-bottom: 15px;
  }
  .home-title h3 {
    font-size: 34px;
  }
  #index-body .about .about-content .about-t .right,
  #index-body .about .about-content .about-b .content p,
  #index-body .advantage,
  #index-body .application,
  #footer .footer-center .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #index-body .about .about-content .about-b .content h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #index-body .about {
    padding: 60px 0;
  }
  #footer .footer-userinfo .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;
  }
  #footer .footer-userinfo .content .left {
    margin-bottom: 30px;
    font-size: 24px;
  }
  #footer .footer-center .footer-t .footer-t-gird .t-list {
    width: 100%;
  }
  #footer .footer-center .footer-t .footer-t-gird .logo.t-list,
  #footer .footer-center .footer-t .footer-t-gird .contact.t-list {
    max-width: 100%;
  }
  #footer .footer-center .footer-b p span {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 18px;
    max-width: 200px;
  }
  #index-body .about .about-content .about-t .left .btn {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .about .about-content .about-t .left .btn .btn-go {
    margin-bottom: 25px ;
  }
  #index-body .about .about-content .about-t {
    margin-bottom: 30PX;
  }
  .home-title h3 {
    font-size: 28px;
  }
  .home-title h3::before {
    margin-right: 20px;
  }
  #index-body .category .category-content ul li .box .box-b h4 {
    font-size: 32px;
  }
  #index-body .category .category-content ul li .box {
    padding: 60px 25px;
  }
  #index-body .news .news-content ul li h4 {
    font-size: 20px;
  }
  #index-body .product,
  #index-body .news {
    padding: 60px 0;
  }
  #footer .footer-center .footer-t .footer-t-gird .logo.t-list .footer-icons {
    display: none;
  }
}

















































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

a.more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
   font-family: 'Poppins-BoldItalic';
  text-transform: uppercase;
  padding: 0 40px;
  position: relative;
  height: 50px;
  line-height: 50px;
  padding-left: 18px;
  color: var(--secondary);
  -webkit-transition: 0.3s 0.6s color;
  -moz-transition: 0.3s 0.6s color;
  transition: 0.3s 0.6s color;
  z-index: 3;
}
a.more:before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -25px;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
  border: 1px solid var(--secondary);
  -webkit-transition: background 0.3s 0.3s , width 0.3s,  -webkit-transform  0.3s 0.6s;
  transition: background 0.3s 0.3s , width 0.3s,  -webkit-transform  0.3s 0.6s;
  -moz-transition: transform  0.3s 0.6s,  background 0.3s 0.3s , width 0.3s,  -moz-transform  0.3s 0.6s;
  transition: transform  0.3s 0.6s,  background 0.3s 0.3s , width 0.3s ;
  transition: transform  0.3s 0.6s,  background 0.3s 0.3s , width 0.3s,  -webkit-transform  0.3s 0.6s,  -moz-transform  0.3s 0.6s;
  z-index: -1;
}
a.more img {
  margin-right: 41px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
a.more:hover {
  color: #fff;
  -webkit-transition: 0.3s 0.6s color;
  -moz-transition: 0.3s 0.6s color;
  transition: 0.3s 0.6s color;
}
a.more:hover:before {
  -webkit-transition: background 0.3s 0.3s  , width 0.3s 0.6s ,  -webkit-transform  0.3s;
  transition: background 0.3s 0.3s  , width 0.3s 0.6s ,  -webkit-transform  0.3s;
  -moz-transition: transform  0.3s ,  background 0.3s 0.3s  , width 0.3s 0.6s ,  -moz-transform  0.3s;
  transition: transform  0.3s ,  background 0.3s 0.3s  , width 0.3s 0.6s ;
  transition: transform  0.3s ,  background 0.3s 0.3s  , width 0.3s 0.6s ,  -webkit-transform  0.3s ,  -moz-transform  0.3s;
  background: var(--secondary);
  width: 100%;
  -webkit-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -ms-transform: rotate(360deg);
  transform: rotateZ(360deg);
}
a.more:hover img {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-filter: brightness(100) grayscale(1);
  filter: brightness(100) grayscale(1);
}
.kongxin {
  line-height: 0.75;
  letter-spacing: 0px;
  -webkit-text-stroke-color:#063591;
  opacity: 1;
  color: transparent!important;
  -webkit-text-stroke-width: 1px;
}
.font-92 {
  font-size: 70px;
  line-height: 1.2;
}
.font-90 {
  font-size: 90px;
  line-height: 1;
}
.font-60 {
  font-size: 60px;
  line-height: 1.4;
  }
.font-50 {
  font-size: 50px;
  font-weight: 700;

}
.font-45 {
  font-size: 45px;
  font-weight: 700;

}
.font-35 {
  font-size: 34px;
}
.font-100 {
  font-size: 100px;
  line-height: 1.2;
}
.yejiao{
  padding-left: 20px;
}
.shouye{
  color: #fff;
    opacity: .5;
    margin-bottom: 20px;
}
.zhengshu{
    letter-spacing: 0;
    opacity: .65;
    color: #fff;
    font: inherit;
     text-align: center;
}

.shouye h1{
  display: inline;
  font-family:"pop";
}
.chanpinfenleiye{
  color: #fff;
}
.chanpinfenleiyemiaoshu{
  color: #fff;
}
.chanpinfenleiyexinwen{
  color: #fff;
  padding: 10px 0;
  font-size: 16px;
line-height: 30px;
}
.jutichanp{
  font-size: 30px;
line-height: 1.4;
}
.inner-banner {
  position: relative;
  height: 500px;
  background: url(../images/inner-banner-bj.jpg) top center no-repeat;
  background-size: cover;
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.5);*/
}
.inner-banner .content {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.inner-banner .content .ui.container {
  text-align: center;
}
.inner-banner .content .ui.container .h2 {
  color: #fff;
  font-family: 'Poppins-BoldItalic';
}
.inner-banner .content .ui.container .h2 em {
  color: var(--secondary);
}
.inner-banner .content .ui.container .mbx {
  color: #fff;
  margin-top: 25px;
}
.inner-page .h3 {
  color: #fff;
  font-family: 'Poppins-BoldItalic';
  
}
.m-page {
  margin: 60px 0;
}
.m-page > div {
  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;
}
.m-page > div span,
.m-page > div a {
  width: 43px;
  height: 43px;
  text-align: center;
  line-height: 43px;
  display: inline-block;
  margin: 0 10px;
  border: 1px solid var(--secondary);
  color: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 20px;
}
.m-page > div span:hover,
.m-page > div a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: var(--secondary);
  color: #000;
}
.m-page > div span {
  background: var(--secondary);
}
.about-page {
  background-image: url(../images/inner-about-222.png);
  background-position-x: right;
  background-position-y: 0%;
  background-repeat: no-repeat;
  padding-bottom: 120px;
}
.about-page .about-1 {
  padding-top: 120px;
}
.about-page .about-1 .ui.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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-page .about-1 .ui.container .left {
  width: 40%;
}
.about-page .about-1 .ui.container .right {
  width: 55%;
}
.about-page .about-1 .ui.container .right a{
  display: block;
  margin-left: 10%;
}
.about-page .about-1 .ui.container .right .h3 {
  color: #fff;
  /*text-transform: uppercase;*/
  font-family: 'Poppins-BoldItalic';
}
.about-page .about-1 .ui.container .right .text {
  margin-top: 45px;
  margin-bottom: 75px;
  padding-left: 10%;
}
.about-page .about-1 .ui.container .right .text p {
  color: rgba(255, 255, 255, 1);
}
.about-page .about-1 .ui.container .right .text p em {
  color: var(--secondary);
}
.about-page .about-2 {
  padding-top: 100px;
}
.about-page .about-2 .ui.container ul.data {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-page .about-2 .ui.container ul.data li {
  display: inline-block;
  position: relative;
  width: 254px;
  height: 105px;
}
.about-page .about-2 .ui.container ul.data li:nth-child(1) {
  width: 206px;
}
.about-page .about-2 .ui.container ul.data li:nth-child(3) {
  width: 179px;
}
.about-page .about-2 .ui.container ul.data li p {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  font-size: 16px;
}
.about-page .about-2 .ui.container ul.data li span {
  font-size: 100px;
   font-family: 'Poppins-BoldItalic';
  position: relative;
  line-height: 105px;
}
.about-page .about-2 .ui.container ul.data li span i {
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: -20px;
}
.about-page .about-3 {
  padding-top: 115px;
}
.about-page .about-3 .ui.container .main {
  width: 100%;
  height: 630px;
  background: url(../images/about-3.png) center center no-repeat;
  position: relative;
}
.about-page .about-3 .ui.container .main .content {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 75px;
  width: 50%;
}
.about-page .about-3 .ui.container .main .h3 {
  color: #fff;
  margin-bottom: 60px;
  font-family: 'Poppins-BoldItalic';
}
.about-page .about-3 .ui.container .main ul.culturelist li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}
.about-page .about-3 .ui.container .main ul.culturelist li.active p {
  display: block;
}
.about-page .about-3 .ui.container .main ul.culturelist li:last-child {
  margin-bottom: 0;
}
.about-page .about-3 .ui.container .main ul.culturelist li .cname {
  color: #FFFFFF;
  font-size: 22px;
  line-height: 40px;
  position: relative;
}
.about-page .about-3 .ui.container .main ul.culturelist li .cname:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 100%;
  position: absolute;
  left: -30px;
  top: 10px;
}
.about-page .about-3 .ui.container .main ul.culturelist li p {
  opacity: 0.5;
  margin-top: 10px;
  color: #fff;
  display: none;
}
.about-page .about-4 {
  padding-top: 166px;
}
.about-page .about-4 .ui.container {
  text-align: center;
}
.about-page .about-4 .ui.container .h3 {
  margin-bottom: 90px;
  font-family: 'Poppins-BoldItalic';
}
.about-page .about-4 .ui.container ul.list {
  margin: 0 -25px;
}
.about-page .about-4 .ui.container ul.list li {
  padding: 0 25px;
}
.about-page .about-4 .ui.container ul.list li.cc1 {
  margin-top: 50px;
}
.about-page .about-4 .ui.container ul.list li .item {
  padding: 20px 40px;
  padding-bottom: 50px;
  text-align: left;
  width: 100%;
  height: 446px;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #000;
}
.about-page .about-4 .ui.container ul.list li .item:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  border-color: #063591;
}
.about-page .about-4 .ui.container ul.list li .item .text {
  position: absolute;
  width: 100%;
  padding: 0 40px;
  height: auto;
  left: 0;
  bottom: 50px;
}
.about-page .about-4 .ui.container ul.list li .item .text .vname {
  color: #fff;
  font-size: 22px;
  line-height: 40px;
}
.about-page .about-4 .ui.container ul.list li .item .text p {
  margin-top: 15px;
  max-height: 150px;
  overflow-y: auto;
}

@-webkit-keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    80% {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        transform: scale(1.6);
        opacity: .3
    }

    to {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@-moz-keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    80% {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        transform: scale(1.6);
        opacity: .3
    }

    to {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes ks {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    80% {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        transform: scale(1.6);
        opacity: .3
    }

    to {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

.about-page .about-5 .play2 {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.about-page .about-5 .play2:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 100%;
    background: 0 0;
    background:var(--secondary);
    left: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1
}

.about-page .about-5 .play2:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 100%;
    background: var(--secondary);
    left: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s
}
.about-page .about-5 {
  margin-top: 175px;
  position: relative;
}
.about-page .about-5>img{
  width: 100%;
  object-fit: cover;
}
.about-page .about-6 {
  padding-top: 90px;
}
.about-page .about-6 .ui.container {
  text-align: center;
}
.about-page .about-6 .ui.container .h4 {
  color: #fff;
  line-height: 1.2;
  margin-bottom: -11px;
      font-family: 'Poppins-BoldItalic';
}
.about-page .about-6 .ui.container ul.honorlist {
  margin: 0 -15px;
  margin-top: 75px;
}
.about-page .about-6 .ui.container ul.honorlist li {
  padding: 0 15px;
}
.font-75 {
  font-size: 74px;
}
@media screen and (max-width: 1400px) {
  .font-75 {
    font-size: 60px;
  }
}
@media screen and (max-width: 1000px) {

  .about-page .about-3 {
    display: none;
  }
  .about-page .about-2 .ui.container ul.data li span {
    font-size: 70px;
  }
  .about-page .about-2 .ui.container ul.data li {
    min-width: 200px!important;
  }
  .about-page .about-6 .ui.container .h4{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-1 .ui.container .left {
    width: 100%;
  }
  .about-page .about-1 .ui.container .right {
    width: 100%;
  }
  .about-page .about-1 .ui.container .right .text {
    padding-left: 0;
  }
  .font-75 {
    font-size: 29px;
  }
}
.pt-160 {
  padding-top: 160px;
}
.fk {
  width: 45px;
  height: 45px;
  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;
  position: relative;
  cursor: pointer;
}
.fk:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
  -moz-transform: translate(-50%, -50%) rotateZ(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotateZ(45deg);
  background: transparent;
  border: 1px solid var(--secondary);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
  height: 100%;
}
.fk:hover:before {
  background: var(--secondary);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.fk:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.fk.slick-prev img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.fk img {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.service-page .service-1 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.service-page .service-1 .top .h3 em {
  color: #063591;
  display: block;
}
.service-page .service-1 .top .navbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.service-page .service-1 .top .navbox .btn {
  width: 40px;
  height: 40px;
  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;
  position: relative;
  cursor: pointer;
}
.service-page .service-1 .top .navbox .btn:hover:before {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: var(--secondary);
}
.service-page .service-1 .top .navbox .btn:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.service-page .service-1 .top .navbox .btn:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
  -moz-transform: translate(-50%, -50%) rotateZ(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotateZ(45deg);
  border: 1px solid var(--secondary);
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
}
.service-page .service-1 .top .navbox .btn img {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.service-page .service-1 .top .navbox .btn.slick-prev {
  margin-right: 30px;
}
.service-page .service-1 .top .navbox .btn.slick-prev img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.service-page .service-1 ul.serlist {
  margin-top: 90px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.service-page .service-1 ul.serlist li {
  padding: 0 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.service-page .service-1 ul.serlist li .text {
  margin-top: 180px;
}
.service-page .service-1 ul.serlist li .text .h4 {
  color: #FFF;
  margin-bottom: 25PX;
   font-family: 'Poppins-BoldItalic';
   font-weight: 700;
   font-size: 26px;
} 
.service-page .service-2 .ui.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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-page .service-2 .ui.container .left {
  width: 58%;
}
.service-page .service-2 .ui.container .right {
  width: 38%;
}
.service-page .service-2 .ui.container .right .h3 {
  text-transform: uppercase;
  color: #fff;
}
.service-page .service-2 .ui.container .right .h3 em {
  color: #063591;
  display: block;
}
.service-page .service-2 .ui.container .right p {
  max-width: 560px;
  margin-top: 40px;
  margin-bottom: 60px;
}
.service-page .service-3 .ui.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: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-page .service-3 .ui.container .h3 {
  color: #fff;
  width: 100%;
  margin-bottom: 40px;
}
.service-page .service-3 .ui.container .h3 em {
  color: #063591;
}
.service-page .service-3 .ui.container .left {
  width: 265px;
  margin-bottom: 65px;
}
.service-page .service-3 .ui.container .right {
  width: -webkit-calc(100% - 320px);
  width: -moz-calc(100% - 320px);
  width: calc(100% - 320px);
}
.service-page .service-3 .ui.container .right ul {
  width: 100%;
}
.service-page .service-3 .ui.container .right ul li {
  padding: 30px 0;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.service-page .service-3 .ui.container .right ul li .h4 {
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Poppins-BoldItalic'; 
}
.service-page .service-4 {
  padding-bottom: 70px;
  position: relative;
}
.service-page .service-4:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1570px;
  background: url(../images/inner-about-22.png) right center no-repeat;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.service-page .service-4 .ui.container .h3 {
  display: inline-;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: center;
}
.service-page .service-4 .ui.container .h3 a {
  height: 75px;
  line-height: 94px;
  padding: 0 40px;
  border-radius: 47px;
  background: #063591;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
   font-family: 'Poppins-BoldItalic';
  font-size: 20px;
  text-transform: uppercase;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
  margin: 0 20px;
}
.service-page .service-4 .ui.container .h3 a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  background: #fe7700;
}
.service-page .service-4 .ui.container .h3 a img {
  width: 22px;
  height: 26px;
  margin-right: 15px;
}
.font-72 {
  font-size: 72px;
}
@media screen and (max-width: 1000px) {
  .service-page .service-3 .ui.container .left {
    display: none;
  }
  .service-page .service-3 .ui.container .right {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .service-page .service-4 .ui.container .h3 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -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;
    text-align: center;
  }
  .service-page .service-4 .ui.container .h3 img {
    display: block;
    margin: 0 auto;
  }
  .service-page .service-4 .ui.container .h3 a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .service-page .service-4 {
    padding-bottom: 100px;
  }
  .pt-160 {
    padding-top: 40px;
  }
  .service-page .service-4 .ui.container .h3 a {
    
    font-size: 16px;

  }
  .service-page .service-2 .ui.container .left {
    width: 100%;
  }
  .service-page .service-2 .ui.container .right {
    width: 100%;
  }
  .service-page .service-1 ul.serlist li .text {
    margin-top: 40px;
  }
}
.advantage-page .main .cateitem {
  padding-bottom: 130px;
  position: relative;
  margin-bottom: 220px;
}
.advantage-page .main .cateitem:nth-child(2n) .cate .text {
  text-align: right;
}
.advantage-page .main .cateitem:nth-child(2n) .cate .text .box {
  text-align: left;
  margin-left: auto;
  margin-right: 0;
  max-width: 350px;
}
.advantage-page .main .cateitem:nth-child(2n) .content ul.advlist button.slick-arrow.slick-prev {
  left: 52%;
}
.advantage-page .main .cateitem:nth-child(2n) .content ul.advlist button.slick-arrow.slick-next {
  left: 58%;
}
.advantage-page .main .cateitem:last-child{
  margin-bottom: 110px;
}
.advantage-page .main .cateitem .cate {
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.advantage-page .main .cateitem .cate .text {
  width: 420px;
  padding-top: 115px;
  text-align: left;
}
.advantage-page .main .cateitem .cate .text .box {
  text-align: left;
  display: inline-block;
  width: auto;
}
.advantage-page .main .cateitem .cate .text .box .h3 {
  display: inline-block;
  width: auto;
  padding-bottom: 35px;
}
.advantage-page .main .cateitem .cate .text .box .h3 em {
  color: var(--secondary);
}
.advantage-page .main .cateitem .cate .imgs {
  width: -webkit-calc(100% - 420px);
  width: -moz-calc(100% - 420px);
  width: calc(100% - 420px);
}
.advantage-page .main .cateitem .content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.advantage-page .main .cateitem .content .navbox {
  position: absolute;
  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;
  bottom: 20px;
  left: 40%;
}
.advantage-page .main .cateitem .content .navbox .fk.slick-prev {
  margin-right: 30px;
}
.advantage-page .main .cateitem .content ul.advlist button.slick-arrow {
  width: 70px;
  height: 70px;
  color: transparent;
  background: transparent;
  position: absolute;
  background-size: 65px;
  border: none;
  z-index: 8;
  bottom: 0px;
}
.advantage-page .main .cateitem .content ul.advlist button.slick-arrow.slick-prev {
  background: url(../images/prev-1.png) center center no-repeat;
  left: 38%;
}
.advantage-page .main .cateitem .content ul.advlist button.slick-arrow.slick-prev:hover {
  background: url(../images/prev-hover.png) center center no-repeat;
}
.advantage-page .main .cateitem .content ul.advlist button.slick-arrow.slick-next {
  left: 44%;
  background: url(../images/next-2.png) center center no-repeat;
}
.advantage-page .main .cateitem .content ul.advlist button.slick-arrow.slick-next:hover {
  background: url(../images/next-hover.png) center center no-repeat;
}
.advantage-page .main .cateitem .content ul.advlist li {
  display: -webkit-box!important;
  display: -webkit-flex!important;
  display: -moz-box!important;
  display: -ms-flexbox!important;
  display: flex!important;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.advantage-page .main .cateitem .content ul.advlist li .imgbox {
  width: 34%;
}
.advantage-page .main .cateitem .content ul.advlist li .text {
  width: -webkit-calc(61% - 220px);
  width: -moz-calc(61% - 220px);
  width: calc(61% - 220px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.advantage-page .main .cateitem .content ul.advlist li .text .num {
  margin-right: 30px;
   font-family: 'Poppins-BoldItalic';
}
@media screen and (max-width: 1000px) {
  .advantage-page .main .cateitem .cate .text {
    padding-top: 0;
    width: 100%;
  }
  .advantage-page .main .cateitem .cate .imgs {
    width: 100%;
  }
  .advantage-page .main .cateitem .content ul.advlist button.slick-arrow {
    display: none!important;
  }
  .advantage-page .main .cateitem:nth-child(2n) .cate {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .advantage-page .main .cateitem .content ul.advlist li .text {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .advantage-page .main .cateitem .content {
    position: relative;
  }
  .advantage-page .main .cateitem {
    margin-bottom: 80px;
  }
  .advantage-page .main .cateitem .content ul.advlist li .imgbox {
    width: 100%;
  }
  .advantage-page .main .cateitem .content ul.advlist li .text {
    width: 100%;
    margin: 40px 0;
  }
}
.product-yd-page .product-yd .ui.container ul.catelist li {
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
}
.product-yd-page .product-yd .ui.container ul.catelist li:nth-child(2n):before{
  content:"";
  position: absolute;
  width: calc(100% + 310px);
  height:100%;
  background:#1e1e1e;
  z-index: -1;
  right: 0;
  top: 80px;
}
.product-yd-page .product-yd .ui.container ul.catelist li .cateitem {
  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: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product-yd-page .product-yd .ui.container ul.catelist li .cateitem .imgbox {
  height: 640px;
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: flex-end;
  z-index: 3;
}
.product-yd-page .product-yd .ui.container ul.catelist li .cateitem .imgbox:before {
  content: "";
  position: absolute;
  width: 50%;
  /*background: var(--secondary);*/
  left: 40%;
  height: 100%;
  z-index: -1;
}
.product-yd-page .product-yd .ui.container ul.catelist li .cateitem .text {
  width: 50%;
  padding-right: 50px;
}
.product-yd-page .product-yd .ui.container ul.catelist li .cateitem .text .btn-go{
  border-color:transparent; 
}
.product-yd-page .product-yd .ui.container ul.catelist li:nth-child(2n) .cateitem .text .btn-go{
  background-color: var(--secondary);
}
.product-yd-page .product-yd .ui.container ul.catelist li:nth-child(2n) .cateitem .text .btn-go:hover{
  background-color:transparent;
  border-color: var(--secondary);
}
.product-yd-page .product-yd .ui.container ul.catelist li:nth-child(odd) .cateitem .text .btn-go:hover{
  border-color: var(--color);
}
.product-yd-page .product-yd .ui.container ul.catelist li .cateitem .text .texts {
  margin-top: 53px;
  margin-bottom: 80px;
  padding-left: 120px;
  position: relative;
  max-height: 242px;
  overflow-y: auto;
}
.product-yd-page .product-yd .ui.container ul.catelist li .cateitem .text .texts:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  left: 0;
  top: 20px;
  background: var(--secondary);
}
.sidebox {
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sidebox .sideleft {
  width: 30%;
  position: sticky;
  top: 120px;
}
.sidebox .sideleft .box {
  padding: 30px 25px;
  margin-bottom: 40px;
}
.sidebox .sideleft .searchbox form {
  position: relative;
  width: 100%;
}
.sidebox .sideleft .searchbox form input[type="text"] {
  width: 100%;
  height: 46px;
  line-height: 46px;
  color: #fff;
  font-size: 18px;
  border: none;
  background: transparent;
}
.sidebox .sideleft .searchbox form input[type="submit"] {
  width: 25px;
  height: 25px;
  border: none;
  background: url(../images/search.png) center center no-repeat;
  background-size: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sidebox .sideleft .cate h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #063591;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Poppins-BoldItalic';
}
.sidebox .sideleft .cate ul.catelist li {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 10px;
  position: relative;
}
.sidebox .sideleft .cate ul.catelist li i{
  color:#fff;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 12px;
  cursor: pointer;
}
.sidebox .sideleft .cate ul.catelist li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  transition: all .5s;
}

.sidebox .sideleft .cate ul.catelist li a span {
  width: 6px;
  height: 6px;
  background: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  margin-right: 20px;
}
.sidebox .sideleft .cate ul.catelist li.active>a,
.sidebox .sideleft .cate ul.catelist li:hover>a{
  color: var(--secondary);
}
.sidebox .sideleft .cate ul.catelist li.active a i,
.sidebox .sideleft .cate ul.catelist li:hover a i{
  background: var(--secondary);
}
.sidebox .sideleft .cate ul.catelist li ul.childen {
  display: block;
}
.sidebox .sideleft .cate ul.catelist li ul.childen li{
  height: 0;
  overflow: hidden;
  margin: 0;
  transition: all .5s;
}
.sidebox .sideleft .cate ul.catelist li ul.childen.show li{
  height: 40px;
  margin-bottom: 10px;
}
.sidebox .sideleft .cate ul.catelist li ul.childen li a {
  padding-left: 25px;
  font-size: 18px;
}
.sidebox .sideleft .formbox .h3 {
  margin-bottom: 20px;
}
.sidebox .sideleft .formbox form {
  position: relative;
}
.sidebox .sideleft .formbox form input[type="text"] {
  height: 60px;
  line-height: 60px;
  width: 100%;
  color: #fff;
  background: #292929;
  padding: 15px ;
  font-size: 18px;
  border: none;
  margin-bottom: 10px;
}
.sidebox .sideleft .formbox form input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form input[type="text"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form textarea {
  width: 100%;
  height: 155px;
  line-height: 2;
  color: #fff;
  background: #292929;
  padding: 15px ;
  font-size: 18px;
  border: none;
}
.sidebox .sideleft .formbox form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.sidebox .sideleft .formbox form input[type="submit"] {
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(../images/fly.png) center center no-repeat;
  background-size: 24px;
  bottom: 10px;
  right: 10px;
  border: none;
}
.sidebox .sideright {
  width: 67%;
}
.sidebox .box {
  width: 100%;
  border: 1px solid #063591;
}
.product-page .sideright .box {
  padding: 40px 50px;
  margin-bottom: 40px;
}
.product-page .sideright .box h1 {
  color: #fff;
  font-weight: 700;
  /*margin-bottom: 35px;*/
}
.product-page .sideright .box .content {
  max-height: 247px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.5);
  padding-right: 18px;
}
.product-page ul.productlist {
  margin: 0 -15px;
  width: 100%;
}
.product-page ul.productlist li {
  padding: 15px;
  margin-bottom: 40px;
}
.product-page ul.productlist li .item:hover .img-box a.hoverbox {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  top: 0;
}

.product-page ul.productlist li .item .img_box {
  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;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  background-color: #fff;
  height: 330px;
  position: relative;
}
.product-page ul.productlist li .item .img_box .box-hide {
  width: 100%;
  height: 100%;
  background-color:rgb(6 53 145 / 82%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  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;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page ul.productlist li .item .img_box:hover .box-hide {
  opacity: 1;
}
.product-page ul.productlist li .item .pname {
  margin-top: 20px;
  text-align: center;
  color: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.product-page ul.productlist li .item .pname:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--secondary);
}
.prodet-page .prodet-1 .ui.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;
}
.prodet-page .prodet-1 .ui.container .left {
  width: 40%;
}
.prodet-page .prodet-1 .ui.container .left img {
  width: 100%;
}
.prodet-page .prodet-1 .ui.container .left .imgs{
  margin-top: 10px;
}
.prodet-page .prodet-1 .ui.container .left .imgs ul{
  margin: 0 -10px;
}
.prodet-page .prodet-1 .ui.container .left .imgs ul .slick-track{
  margin-left: 0;
}
.prodet-page .prodet-1 .ui.container .left .imgs ul li{
  padding: 0 10px;
}
.prodet-page .prodet-1 .ui.container .right {
  width: 55%;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: url(../images/inner-about-2.png) right bottom no-repeat;
  height: auto;
}
.prodet-page .prodet-1 .ui.container .right h1 {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 35px;
      font-family: 'Poppins-BoldItalic';
}
.prodet-page .prodet-1 .ui.container .right .content {
  margin: 35px 0;
  padding: 20px 0;
  color: #fff;
  overflow-y: auto;
  max-height: 318px;
  line-height: 2;
}
.prodet-page .prodet-1 .ui.container .right .content p {
  opacity: 0.5;
}
.prodet-page .prodet-2 {
  padding: 60px 0;
}
.prodet-page .prodet-2 .ui.container .m-link,
.m-link {
  width: 100%;
  height: auto;
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 80px;
}
.prodet-page .prodet-2 .ui.container .m-link a,
.m-link a {
  color: #fff;
  font-size: 20px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.prodet-page .prodet-2 .ui.container .m-link a:hover,
.m-link a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #063591;
}
.prodet-page .prodet-3 .ui.container .main {
  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: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.prodet-page .prodet-3 .ui.container .main .left {
  width: 270px;
}
.prodet-page .prodet-3 .ui.container .main .left ul li {
   font-family: 'Poppins-BoldItalic';
  color: #6e6e6e;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  padding-left: 35px;
  height: 100px;
  line-height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.prodet-page .prodet-3 .ui.container .main .left ul li.active {
  color: #063591;
}
.prodet-page .prodet-3 .ui.container .main .right {
  width: -webkit-calc(100% - 270px);
  width: -moz-calc(100% - 270px);
  width: calc(100% - 270px);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  /*height: 755px;*/
  min-height: 400px;
}
.prodet-page .prodet-3 .ui.container .main .right ul li .content {
  font-size: 18px;
  max-height: 700px;
  overflow-y: auto;
  color: #fff;
  line-height: 2;
  padding: 50px;
}
.prodet-page .prodet-3 .ui.container .main .right ul li .content table td{
  color:#fff !important;
}
.prodet-page .formboxs {
  padding: 50px;
}
.prodet-page .formboxs form .h4 {
  color: #fff;
  margin-bottom: 50px;
}
.prodet-page .formboxs form ul.formlist {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -45px;
}
.prodet-page .formboxs form ul.formlist li {
  padding: 0 45px;
  display: block;
  margin-bottom: 40px;
}
.prodet-page .formboxs form ul.formlist li p {
  color: #fff;
  margin-bottom: 15px;
}
.prodet-page .formboxs form ul.formlist li input[type="text"] {
  width: 100%;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.oem-page {
  /*background-color: #000;*/
  margin-top: 130px;
}
.oem-page .tips_title {
  text-align: center;
  font-size: 60px;
  line-height: 1.2;
  font-family: 'Poppins-BoldItalic';
  font-style: italic;
}
.oem-page .init-1 .container .tips_des {
  text-align: center;
  font-size: 16px;
  margin: 10px auto 0;
  max-width: 1200px;
  line-height: 1.8;
  opacity: 0.5;
}
.oem-page .init-1 .container .content {
  margin-top: 66px;
}
.oem-page .init-1 .container .content .swiper-container .swiper-wrapper .swiper-slide .img img {
  width: 100%;
}
.oem-page .init-1 .container .content .swiper-container .swiper-wrapper .swiper-slide .title {
  font-weight: bold;
  font-size: 22px;
  margin-top: 30px;
  line-height: 40px;
  /*min-height: 3.3em;*/
  font-family: 'Poppins-BoldItalic';
}
.oem-page .init-1 .container .content .swiper-container .swiper-wrapper .swiper-slide .des {
  font-weight: 300;
  font-size: 16px;
  margin-top: 20px;
  line-height: 30px;
  max-height: 90px;
    padding-right: 20px;
margin-bottom: 30px;
overflow: auto;
}
.oem-page .init-2 {
  margin-top: 110px;
  /*margin-bottom: 120px;*/
}
.oem-page .init-2 .container .content {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.oem-page .init-2 .container .content .left {
  width: 42%;
}
.oem-page .init-2 .container .content .left .des {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}
.oem-page .init-2 .container .content .left .img_cont {
  position: relative;
  margin-top: 50px;
}
.oem-page .init-2 .container .content .left .img_cont .img_1 {
  display: block;
  width: 100%;
}
.oem-page .init-2 .container .content .left .img_cont .img_2 {
  height: 86%;
  position: absolute;
  bottom: 30px;
  right: -100px;
}
.oem-page .init-2 .container .content .right {
  width: 47%;
}
.oem-page .init-2 .container .content .right .img {
  display: block;
  width: 100%;
}
.oem-page .init-2 .container .content .right .des {
  margin-top: 60px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
.oem-page .init-2 .container .content .right .list_cont {
  margin-top: 10px;
}
.oem-page .init-2 .container .content .right .list_cont .list {
  margin-top: 36px;
}
.oem-page .init-2 .container .content .right .list_cont .list .title_cont {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.oem-page .init-2 .container .content .right .list_cont .list .title_cont .name {
  font-size: 20px;
  line-height: 36px;
}
.oem-page .init-2 .container .content .right .list_cont .list .title_cont .num {
  font-size: 16px;
  line-height: 30px;
}
.oem-page .init-2 .container .content .right .list_cont .list .jdt {
  margin-top: 10px;
  height: 9px;
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #b7b7b7;
}
.oem-page .init-2 .container .content .right .list_cont .list .jdt div {
  border-radius: 4px;
  background-color: var(--color);
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  transition: all 1.5s;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.oem-page .init-2 .container .content .right .list_cont .list:nth-child(2) .jdt div {
  width: 20%;
}
.oem-page .init-2 .container .content .right .list_cont .list:nth-child(3) .jdt div {
  width: 50%;
}
.oem-page .init-2 .container .content .right .list_cont .list.active .jdt div {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.oem-page .init-3 {
  margin-top: 120px;
}
.oem-page .init-3 .container form {
  max-width: 890px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.oem-page .init-3 .container form .list {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  width: 100%;
}
.oem-page .init-3 .container form .list.w_50 {
  width: -webkit-calc(50% - 18px);
  width: -moz-calc(50% - 18px);
  width: calc(50% - 18px);
}
.oem-page .init-3 .container form .list.text_center {
  text-align: center;
  margin-top: 40px;
}
.oem-page .init-3 .container form .list.list_upload {
  cursor: pointer;
  height: 56px;
}
.oem-page .init-3 .container form .list.list_upload input {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
.oem-page .init-3 .container form .list.list_upload .cont {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #404040;
  padding: 0 16px;
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.oem-page .init-3 .container form .list input[type='text'],
.oem-page .init-3 .container form .list textarea {
  padding: 16px;
  width: 100%;
  background-color: #404040;
  border: none;
}
.oem-page .init-3 .container form .list input::-webkit-input-placeholder, .oem-page .init-3 .container form .list textarea::-webkit-input-placeholder {
  color: #fff;
}
.oem-page .init-3 .container form .list input:-moz-placeholder, .oem-page .init-3 .container form .list textarea:-moz-placeholder {
  color: #fff;
}
.oem-page .init-3 .container form .list input::-moz-placeholder, .oem-page .init-3 .container form .list textarea::-moz-placeholder {
  color: #fff;
}
.oem-page .init-3 .container form .list input:-ms-input-placeholder, .oem-page .init-3 .container form .list textarea:-ms-input-placeholder {
  color: #fff;
}
.oem-page .init-3 .container form .list input::placeholder,
.oem-page .init-3 .container form .list textarea::placeholder {
  color: #fff;
}
.oem-page .init-3 .container form .list .submit_btn {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 36px;
  padding: 12px 60px;
      border: 1px solid #fff;
}
.oem-page .init-4 {
  margin: 110px 0;
}
.oem-page .init-4 .swiper{
  overflow: hidden;
}
.oem-page .init-4 .container .title_list {
  position: relative;
}
.oem-page .init-4 .container .title_list .prev,
.oem-page .init-4 .container .title_list .next {
  position: absolute;
  width: 10px;
  height: 24px;
  top: 82px;
  right: 0;
  font-size: 26px;
  color: #fff;
  z-index: 2;
  cursor: pointer;
}
.oem-page .init-4 .container .title_list .prev {
  left: 0;
}
.oem-page .init-4 .container .title_list .subline {
  width: -webkit-calc(100%);
  width: -moz-calc(100%);
  width: calc(100%);
  position: absolute;
  height: 1px;
  background-color: #fff;
  top: 95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
  padding: 90px 0;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide .cir_cont {
  position: relative;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide .cir_cont .cir {
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide .cir_cont .num {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Poppins-BoldItalic';
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide .cir_cont .text_cont {
  text-align: center;
  opacity: 0;
  position: absolute;
  width: 100%;
  bottom: -webkit-calc(126%);
  bottom: -moz-calc(126%);
  bottom: calc(126%);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 300;
  font-size: 14px;
  line-height: 2;
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  top:-110px;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide .cir_cont .text_cont p {
  padding: 6px 12px;
  background-color: var(--color);
  position: relative;
  top: 20px;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide .cir_cont .text_cont p::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid var(--color);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide:nth-child(2n) .cir_cont .num {
  top: -34px;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide:nth-child(2n) .cir_cont .text_cont {
  top: -webkit-calc(126%);
  top: -moz-calc(126%);
  top: calc(126%);
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide:nth-child(2n) .cir_cont .text_cont p::before {
  display: none;
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide:nth-child(2n) .cir_cont .text_cont p::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid var(--color);
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide:hover .cir_cont .cir,
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide.active .cir_cont .cir {
  background-color: var(--color);
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide:hover .cir_cont .num,
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide.active .cir_cont .num {
  color: var(--color);
}
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide:hover .cir_cont .text_cont,
.oem-page .init-4 .container .title_list .swiper .swiper-wrapper .swiper-slide.active .cir_cont .text_cont {
  opacity: 1;
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide {
  padding: 90px 50px 50px 50px;
  border: 1px solid #fff;
  position: relative;
  height: auto;
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .img {
  max-width: 150px;
  position: absolute;
  bottom: 6px;
  right: 1px;
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(20%, rgba(0, 98, 179, 0.4)), color-stop(rgba(0, 98, 179, 0)), to(rgba(0, 98, 179, 0)));
  background-image: -webkit-linear-gradient(left top, rgba(0, 98, 179, 0.4) 20%, rgba(0, 98, 179, 0), rgba(0, 98, 179, 0));
  background-image: -moz-linear-gradient(left top, rgba(0, 98, 179, 0.4) 20%, rgba(0, 98, 179, 0), rgba(0, 98, 179, 0));
  background-image: linear-gradient(to right bottom, rgba(0, 98, 179, 0.4) 20%, rgba(0, 98, 179, 0), rgba(0, 98, 179, 0));
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont {
  position: relative;
  z-index: 2;
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont .cir {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont .title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  line-height: 36px;
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont .des {
  font-size: 18px;
  margin-top: 20px;
  line-height: 32px;
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide.active .shadow {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide.active .cont .cir {
  background-color: var(--color);
}

.service-page {
  background-color: #111111;
  padding-top: 0;
  padding-bottom: 70px;
}
.service-page .init-1 {
  padding: 140px 0;
}
.service-page .init-1 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-page .init-1 .container .left {
  width: 40%;
}
.service-page .init-1 .container .left .title {
  font-size: 60px;
  line-height: 1.2;
  font-weight:bold;
  font-family: "Poppins-BoldItalic";

}
.service-page .init-1 .container .left .title_2 {
  font-size: 18px;
  line-height: 36px;
  font-weight:bold;
}
.service-page .init-1 .container .left .des {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  opacity: 0.5;
}
.service-page .init-1 .container .left .des p {
  margin-top: 16px;
}
.service-page .init-1 .container .right {
  width: 55%;
  background-color: #ffffff;
  /*padding: 80px 50px 20px 50px;*/
}
.service-page .init-1 .container .right .img {
  position: relative;
}
.service-page .init-1 .container .right .img span {
  display: block;
  overflow: hidden;
}
.service-page .init-1 .container .right .img span img {
  display: block;
  width: 100%;
  height: 100%;
}
.service-page .init-1 .container .right .img .two {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  direction: rtl;
}
.service-page .init-1 .container .right .img .two img {
  width: auto;
  max-width: none;
}
.service-page .init-1 .container .right .img .btn_cont {
  cursor: pointer;
  position: absolute;
  width: 50px;
  z-index: 2;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service-page .init-1 .container .right .img .btn_cont .cir {
  background-color: #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
}
.service-page .init-1 .container .right .img .btn_cont .cir .fa-angle-left {
  margin-right: 6px;
}
.service-page .init-1 .container .right .img .btn_cont .subline {
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 4px;
  height: -webkit-calc(75%);
  height: -moz-calc(75%);
  height: calc(75%);
  background-color: #000000;
}
.service-page .init-1 .container .right .img .btn_cont .subline_2 {
  top: 0;
}
.service-page .init-2 {
  background-image: url(../images/service_1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  /*padding-top: 80px;*/
  padding-bottom: 320px;
  margin-bottom: -160px;
}
.service-page .init-2 .container .tip_title {
  font-weight:bold;
  font-size: 60px;
  font-family: "Poppins-BoldItalic";
}
.service-page .init-2 .container .title_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-page .init-2 .container .title_list .list {
  text-align: left;
  margin: 0 25px;
  margin-top: 30px;
  font-size: 20px;
  line-height: 36px;
  position: relative;
  padding: 4px 12px;
  cursor: pointer;
}
.service-page .init-2 .container .title_list .list p {
  position: relative;
  z-index: 2;
}
.service-page .init-2 .container .title_list .list::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #404040;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.service-page .init-2 .container .title_list .list:hover::before,
.service-page .init-2 .container .title_list .list.active::before {
  background-color: var(--primary);
}
.service-page .init-2 .container .swiper {
  margin: auto;
  margin-top: 70px;
  max-width: 1180px;
  overflow: hidden;
}
.service-page .init-2 .container .swiper .swiper-wrapper .swiper-slide {
  font-size: 20px;
  line-height: 36px;
}
.service-page .init-3 {
  margin-top: -100px;
}
.service-page .init-3 .container {
  position: relative;
  background-color: #404040;
  padding: 70px 100px;
  -webkit-box-shadow: 0 20px 30px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 20px 30px 20px rgba(0, 0, 0, 0.4);
}
.service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .left {
  width: 50%;
  padding-right: 60px;
}
.service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .left img {
  width: 100%;
}
.service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .right {
  padding-top: 30px;
  width: 50%;
}
.service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .right .title {
  font-weight:bold;
  font-size: 56px;
}
.service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .right .des {
  margin-top: 20px;
  font-size: 20px;
  line-height: 36px;
}
.service-page .init-3 .container .next,
.service-page .init-3 .container .prev {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  right: -16px;
  padding: 0;
  text-align: center;
  line-height: 36px;
  font-size: 20px;
  background-color: #2e2e2e;
}
.service-page .init-3 .container .next i,
.service-page .init-3 .container .prev i {
  position: relative;
  z-index: 2;
}
.service-page .init-3 .container .next.swiper-button-disabled,
.service-page .init-3 .container .prev.swiper-button-disabled {
  opacity: 0.4;
}
.service-page .init-3 .container .prev {
  left: -16px;
}
.service-page .init-4 .box{
  background: url(../images/service4-bg.png) no-repeat center top;
  padding: 67px 0 48px;
}
.service-page .init-4 .box .title{
  font-size: 60px;
  line-height: 1;
  /*font-weight: bold;*/
  font-family: "Poppins-BoldItalic";
}
.service-page .init-4 .box .content{
  margin-top: 72px;
}
.service-page .init-4 .box .content ul{
  padding: 0 11.41%;
  margin-right: -75px;
}
.service-page .init-4 .box .content ul li{
  padding-right: 75px;
}
.service-page .init-4 .box .content ul li .download{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}
.service-page .init-4 .box .content ul li .download span{
  font-size: 18px;
  line-height: 32px;
}
.service-page .init-4 .box .content .slick-arrow{
   position: absolute;
  top: 40%;
  width: 30px;
	height: 30px;
  border-radius: 50%;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  transition: .5s;
}
.service-page .init-4 .box .content .slick-prev{
  left: 56px;
  background: rgba(255,255,255,0.2);
}
.service-page .init-4 .box .content .slick-prev::before{
  content: "\f053";
  position: absolute;
  font-family: 'fontAwesome';
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  top: 0;
  left: 0;
  color: var(--black);
}
.service-page .init-4 .box .content .slick-prev:hover{
  background: var(--white);
}
.service-page .init-4 .box .content .slick-next{
  right: 8%;
  background: rgba(255,255,255,0.2);
}
.service-page .init-4 .box .content .slick-next::before{
  content: "\f054";
  position: absolute;
  font-family: 'fontAwesome';
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  top: 0;
  left: 0;
  color: var(--black);
}
.service-page .init-4 .box .content .slick-next:hover{
  background: var(--white);
}

.faq-page .init-1 .container {
  text-align: center;
}
.faq-page .init-1 .container .tip {
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
}
.faq-page .init-1 .container form {
  overflow: hidden;
  height: 64px;
  border-radius: 32px;
  margin: auto;
  margin-top: 40px;
  position: relative;
  max-width: 960px;
  background-color: #ffffff;
}
.faq-page .init-1 .container form input {
  color: #000000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  font-size: 16px;
  padding: 20px 36px;
  padding-right: 80px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}
.faq-page .init-1 .container form .submit_btn {
  width: 24px;
  height: 24px;
  background-image: url(../images/faq_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0;
  right: 32px;
  top: 18px;
}
.faq-page .init-1 .container .des {
  margin-top: 34px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}
.faq-page .init-2 {
  margin-top: 110px;
}
.faq-page .init-2 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.faq-page .init-2 .container .left {
  width: -webkit-calc(100% - 590px);
  width: -moz-calc(100% - 590px);
  width: calc(100% - 590px);
  padding-right: 56px;
}
.faq-page .init-2 .container .left .list {
  margin-top: 44px;
  border: 1px solid #4e4e4e;
}
.faq-page .init-2 .container .left .list .title {
  padding: 16px 12px;
  font-size: 22px;
  line-height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #1a1a1a;
  cursor: pointer;
}
.faq-page .init-2 .container .left .list .title .title_1 {
  margin-right: 14px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.faq-page .init-2 .container .left .list .title.active .title_1 {
  color: var(--primary);
}
.faq-page .init-2 .container .left .list .des {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  padding: 20px 50px;
  display: none;
}
.faq-page .init-2 .container .left .list:first-child {
  margin-top: 0;
}
.faq-page .init-2 .container .left .m-page {
  text-align: left;
}
.faq-page .init-2 .container .right {
  width: 590px;
  padding: 54px 70px 40px 70px;
  background-color: #1a1a1a;
}
.faq-page .init-2 .container .right .tip {
  font-size: 24px;
  line-height: 44px;
  font-weight: bold;
}
.faq-page .init-2 .container .right input[type='text'],
.faq-page .init-2 .container .right textarea {
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  border: none;
  font-weight: 300;
  color: #000000;
}
.faq-page .init-2 .container .right input::-webkit-input-placeholder, .faq-page .init-2 .container .right textarea::-webkit-input-placeholder {
  color: #000000;
}
.faq-page .init-2 .container .right input:-moz-placeholder, .faq-page .init-2 .container .right textarea:-moz-placeholder {
  color: #000000;
}
.faq-page .init-2 .container .right input::-moz-placeholder, .faq-page .init-2 .container .right textarea::-moz-placeholder {
  color: #000000;
}
.faq-page .init-2 .container .right input:-ms-input-placeholder, .faq-page .init-2 .container .right textarea:-ms-input-placeholder {
  color: #000000;
}
.faq-page .init-2 .container .right input::placeholder,
.faq-page .init-2 .container .right textarea::placeholder {
  color: #000000;
}
.faq-page .init-2 .container .right .submit_btn {
  margin-top: 22px;
  width: 100%;
  border-radius: 0;
  text-align: center;
  font-weight: bold;
      border: 1px solid #0062b3;
}

.application-page .container .tips {
  text-align: center;
  
  font-weight: 600;
  text-transform: uppercase;
}
.application-page .container .tips .r {
  color: var(--color);
}
.application-page .container .des {
  text-align: center;
  margin-top: 10px;
}
.application-page .container .content ul {
  margin: 0 -20px;
}
.application-page .container .content ul li {
  margin-top: 50px;
  padding: 0 20px;
}
.application-page .container .content ul li .box {
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.application-page .container .content ul li .box .title {
  font-weight: 500;
  text-align: center;
  
  text-transform: uppercase;
  padding: 10px 0;
}
.application-page .container .content ul li .box .img {
  display: block;
  overflow: hidden;
}
.application-page .container .content ul li .box .img img {
  width: 100%;
}


@media screen and (max-width: 1500px) {
  .oem-page .tips_title {
    font-size: 50px;
  }
  
  .service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .left {
    margin-top: 20px;
    margin: auto;
    max-width: 500px;
    padding-right: 0;
    width: 100%;
  }
  .service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .right {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    text-align: center;
    width: 100%;
  }
  .service-page .init-4 .box .content ul{
    margin-right: -36px;
  }
  .service-page .init-4 .box .content ul li{
    padding-right: 36px;
  }
}





@media screen and (max-width: 1400px) {
  .font-40 {
    font-size: 28px;
  }
  .font-20 {
    font-size: 18px;
line-height: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .faq-page .init-2 .container .right {
    display: none;
  }
  .faq-page .init-2 .container .left {
    padding-right: 0;
    width: 100%;
  }
  .oem-page .init-2 .container .content .left .img_cont .img_2 {
    right: -44px;
    bottom: 10px;
  }
  
  .service-page .init-1 .container .left {
    text-align: center;
    width: 100%;
  }
  .service-page .init-1 .container .right {
    display: none;
    margin-top: 40px;
    width: 100%;
  }
  .service-page .init-4 .box .content ul li .download span{
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .product-page ul.productlist{
    margin: 0;
  }
  .service-page .init-1,
  .service-page .init-2{
    padding: 60px 0;
  }
  .service-page .init-1 .container .left .title{
    font-size: 42px;
  }
  .service-page .init-2{
    margin-bottom: 0;
  }
  .service-page .init-2 .container .tip_title{
    font-size: 38px;
  }
  .service-page .init-4 .box .title{
    font-size: 42px;
  }
  .service-page .init-4 .box .content{
    margin-top: 30px;
  }
  .service-page .init-4 .box .content ul{
    padding: 0 6%;
  }
  .service-page .init-4 .box .content .slick-prev{
    left: 0;
  }
  .service-page .init-4 .box .content .slick-next{
    right: 5%;
  }
  .oem-page .init-2 .container .content .left {
    width: 100%;
  }
  .oem-page .init-2 .container .content .left .img_cont .img_2 {
    display: none;
  }
  .oem-page .init-2 .container .content .right {
    margin-top: 20px;
    width: 100%;
  }
  .product-yd-page .product-yd .ui.container ul.catelist li .cateitem .imgbox {
    width: 100%;
    padding: 40px 0;
    height: auto;
    margin-bottom: 20px;
  }

  .product-yd-page .product-yd .ui.container ul.catelist li:nth-child(2n) .cateitem {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .product-yd-page .product-yd .ui.container ul.catelist li .cateitem .text {
    width: 100%;
    padding-right: 0px;
  }
  .sidebox .sideleft {
    display: none;
  }
  .sidebox .sideright {
    width: 100%;
  }
  .prodet-page .prodet-1 .ui.container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .prodet-page .prodet-3 .ui.container .main .left {
    width: 170px;
  }
  .prodet-page .prodet-3 .ui.container .main .right {
    width: -webkit-calc(100% - 170px);
    width: -moz-calc(100% - 170px);
    width: calc(100% - 170px);
  }
   .prodet-page .prodet-1 .ui.container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-1 .ui.container .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .ui.container .right {
    width: 100%;
    margin-top: 20px;
  }
  .prodet-page .prodet-3 .ui.container .main {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-3 .ui.container .main .left {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .prodet-page .prodet-3 .ui.container .main .left ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .prodet-page .prodet-3 .ui.container .main .left ul li {
    height: 60px;
    font-size: 18px;
    line-height: 60px;
    border-bottom: none;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .prodet-page .prodet-3 .ui.container .main .left ul li:last-child {
    border-right: none;
  }
  .prodet-page .prodet-3 .ui.container .main .right {
    width: 100%;
  }
  .font-30 {
    font-size: 22px;
  }
}
@media screen and (max-width: 700px) {
  
  .service-page .init-1,
  .service-page .init-2,
  .service-page .init-4 .box{
    padding: 30px 0;
  }
  .service-page .init-4 .box .title {
    font-size: 32px;
    line-height: 1.4;
  }
  .service-page .init-4 .box .content .slick-next {
    right: 12%;
  }
  
  .service-page .init-2 {
    background: #191919;
  }
  .service-page .init-2 .container .title_list {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -moz-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
  .service-page .init-3 .container {
    padding: 40px;
  }
  .service-page .init-3 .container .next {
    right: 0;
  }
  .service-page .init-3 .container .prev {
    left: 0;
  }
  .oem-page .init-2 {
    margin-top: 40px;
  }
  .oem-page .init-2 .container .content {
    margin-top: 20px;
  }
  .oem-page .init-3 .container form .list.w_50 {
    width: 100%;
  }
  .oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide {
    padding: 30px 16px;
  }
  .oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .img {
    width: 60px;
    right: 10px;
    bottom: 10px;
  }
  .prodet-page .prodet-2 .ui.container .m-link a {
    font-size: 14px;
    line-height: 28px;
  }
  .prodet-page .prodet-2 .ui.container .m-link {
    padding: 20px;
    height: auto;
  }
 
  .font-30 {
    font-size: 18px;
    line-height: 32px;
  }
  .prodet-page .formboxs form ul.formlist li {
    width: 100%;
  }
  .font-22 {
    font-size: 16px;
    line-height: 30px;
  }
  .prodet-page .formboxs form ul.formlist li input[type="text"] {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-3 .ui.container .main {
    overflow-x: auto;
  }
  .prodet-page .prodet-3 .ui.container .main .left {
    width: fit-content;
  }
  .prodet-page .prodet-3 .ui.container .main .left ul{
    width: 500px;
  }
  .prodet-page .prodet-3 .ui.container .main .right{
    min-height: auto;
  }
  .prodet-page .prodet-3 .ui.container .main .right ul{
    width: 500px;
  }
  .faq-page .init-1 .container .tip {
    font-size: 24px;
    line-height: 44px;
  }
  .faq-page .init-1 .container form {
    height: 54px;
    margin-top: 20px;
  }
  .faq-page .init-1 .container form input {
    font-size: 14px;
    line-height: 2;
    padding: 10px 20px;
  }
  .faq-page .init-1 .container form input:first-child {
    padding-right: 32px;
  }
  .faq-page .init-1 .container form .submit_btn {
    height: 18px;
    right: 12px;
    width: 18px;
  }
  .faq-page .init-1 .container .des {
    line-height: 30px;
    margin-top: 20px;
  }
  .faq-page .init-2 {
    margin-top: 40px;
  }
  .faq-page .init-2 .container .left .list {
    margin-top: 20px;
  }
  .faq-page .init-2 .container .left .list .title {
    font-size: 18px;
    line-height: 32px;
  }
  .faq-page .init-2 .container .left .list .des {
    padding: 20px 30px;
  }
  .faq-page .init-2 .container .left .m-page {
    text-align: center;
  }
  .service-page .init-1 {
    padding-top: 0;
    padding: 40px 0;
  }
  .service-page .init-1 .container .left .title {
    font-size: 24px;
    line-height: 44px;
  }
  .service-page .init-1 .container .left .title_2 {
    font-size: 18px;
    margin-top: 10px;
    line-height: 32px;
  }
  .service-page .init-1 .container .left .des p {
    margin-top: 10px;
  }
  .service-page .init-2 {
    padding-bottom: 40px;
  }
  .service-page .init-2 .container .tip_title {
    font-size: 24px;
    line-height: 44px;
  }
  .service-page .init-2 .container .title_list .list {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
    margin: 0;
    padding: 0 8px;
    width: 100%;
  }
  .service-page .init-2 .container .swiper {
    margin-top: 40px;
  }
  .service-page .init-2 .container .swiper .swiper-wrapper .swiper-slide {
    font-size: 16px;
    line-height: 30px;
  }
  .service-page .init-3 {
    margin-top: 0;
  }
  .service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .right {
    padding-top: 0;
  }
  .service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .right .title {
    font-size: 24px;
    line-height: 44px;
  }
  .service-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .right .des {
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
  }
  .oem-page .tips_title {
    font-size: 24px;
    line-height: 44px;
  }
  .oem-page .init-1 .container .tips_des {
    font-size: 16px;
    line-height: 30px;
  }
  .oem-page .init-1 .container .content {
    margin-top: 20px;
  }
  .oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide {
    text-align: center;
  }
  .oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide .title {
    font-size: 18px;
    margin-top: 14px;
    line-height: 32px;
    min-height: 5.3em;
  }
  
  .oem-page .init-1 .container .content .swiper .swiper-wrapper .swiper-slide .des {
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
  }
  .oem-page .init-2 .container .content {
    margin-top: 10px;
  }
  .oem-page .init-2 .container .content .left .des {
    text-align: center;
  }
  .oem-page .init-2 .container .content .left .img_cont {
    margin-top: 20px;
  }
  .oem-page .init-2 .container .content .right .des {
    margin-top: 20px;
    text-align: center;
  }
  .oem-page .init-2 .container .content .right .list_cont .list .title_cont .name {
    font-size: 16px;
    line-height: 30px;
  }
  .oem-page .init-3 {
    margin-top: 40px;
  }
  .oem-page .init-3 .container form {
    margin-top: 0;
  }
  .oem-page .init-3 .container form .list.text_center {
    margin-top: 20px;
  }
  .oem-page .init-3 .container form .list .submit_btn {
    padding: 6px 40px;
  }
  .oem-page .init-4 {
    margin-top: 40px;
  }
  .oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont .cir {
    margin: auto;
  }
  .oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont {
    text-align: center;
  }
  .oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont .title {
    font-size: 18px;
    line-height: 32px;
    min-height: 3.2em;
  }
  .oem-page .init-4 .container .content_list .swiper .swiper-wrapper .swiper-slide .cont .des {
    font-size: 16px;
    line-height: 30px;
  }
}
.seoPublic > div {
  padding: 80px 0;
}
.seoPublic .h3 {
  color: #fff;
  margin-bottom: 60px;
  font-family: 'Poppins-BoldItalic';

}
.seoPublic .Auxil-about .ui.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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 3;
}
.seoPublic .Auxil-about .ui.container:before{
  content: "";
  position: absolute;
  right: 0;
  bottom: -80px;
  width: 80%;
background: #000;
z-index: -1;
}
.seoPublic .Auxil-about .ui.container .right {
  padding: 0 0 0 5%;
}
.seoPublic .Auxil-about .ui.container .right .h3 {
  margin-bottom: 30px;
  font-family: 'Poppins-BoldItalic';
}
.seoPublic .Auxil-about .ui.container .right .text {
  color: rgba(255, 255, 255, 0.5);
}
.seoPublic .Auxil-about .ui.container .right .text em {
  color: var(--secondary);
}
.seoPublic .Auxil-honor ul {
  margin: 0 -18px;
}
.seoPublic .Auxil-honor ul li {
  padding: 0 18px;
}
.seoPublic .Auxil-honor ul li h4{
  font-size: 22px;
  margin-top: 20px;
  text-align: center;
}
.seoPublic .Auxil-news ul {
  margin: 0 -15px;
}
.seoPublic .Auxil-news ul li {
  padding: 0 15px;
}
.seoPublic .Auxil-news ul li .item a.imgs {
  width: 100%;
  height: 400px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}
.seoPublic .Auxil-news ul li .item .text {
  padding: 40px 20px;
  background: #000;
  text-align: left;
}
.seoPublic .Auxil-news ul li .item .text span.time {
  color: rgba(255, 255, 255, 0.3);
}
.seoPublic .Auxil-news ul li .item .text .h5 {
  color: #FFF;
  margin: 15px 0;
  /*min-height: 6em;*/
}
.seoPublic .Auxil-news ul li .item .text .h5 a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.seoPublic .Auxil-news ul li .item .text .h5 a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--secondary);
}
.seoPublic .Auxil-news ul li .item .text a.more2 {
  
  color: #063591;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 18px;
line-height: 28px;
}
.seoPublic .Auxil-news ul li .item .text a.more2:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--secondary);
}
@media screen and (max-width: 700px) {
  .seoPublic .Auxil-about .ui.container .left {
    width: 100%;
  }

  .seoPublic .Auxil-about .ui.container .right {
    width: 100%;
    padding: 20px 0;
  }
  .seoPublic .Auxil-about .ui.container .right .h3 {
    margin-bottom: 25px;
    font-family: 'Poppins-BoldItalic';
  }
}


.news-page .container .cat_name_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-page .container .cat_name_list .list {
  margin-right: 70px;
  padding: 4px 10px;
  position: relative;
  font-size: 20px;
  line-height: 36px;
}
.news-page .container .cat_name_list .list span {
  position: relative;
  z-index: 2;
  color: #fff;
}
.news-page .container .cat_name_list .list::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #323232;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.news-page .container .cat_name_list .list:hover::before,
.news-page .container .cat_name_list .list.active::before {
  background-color: var(--color);
}
.news-page .container .content {
  margin-top: 70px;
  padding-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -30px;
}
.news-page .container .content .list {
  width: 33.33%;
  padding: 0 30px;
  margin-top: 40px;
}
.news-page .container .content .list .box {
  height: 100%;
  border: 1px solid #ffffff;
}
.news-page .container .content .list .box a {
  display: block;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.news-page .container .content .list .box a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-page .container .content .list .box a:hover {
  color: var(--color);
}
.news-page .container .content .list .box .img {
  position: relative;
  z-index: 2;
  height: 310px;
}
.news-page .container .content .list .box .cont {
  position: relative;
  padding: 36px 30px;
  color: #fff;
}
.news-page .container .content .list .box .cont .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(255,130,0, 0.4)), color-stop(rgba(255,130,0, 0)), to(rgba(255,130,0, 0)));
  background-image: -webkit-linear-gradient(left top, rgba(255,130,0, 0.4), rgba(255,130,0, 0), rgba(255,130,0, 0));
  background-image: -moz-linear-gradient(left top, rgba(255,130,0, 0.4), rgba(255,130,0, 0), rgba(255,130,0, 0));
     background-image: linear-gradient(to right bottom, rgb(6 53 145 / 43%), rgba(255, 130, 0, 0), rgba(255, 130, 0, 0));
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.news-page .container .content .list .box .cont .time {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 2;
}
.news-page .container .content .list .box .cont .title {
  font-size: 24px;
  line-height: 36px;
  margin-top: 16px;
  text-transform: capitalize;
  /*font-weight: bold;*/
  position: relative;
  z-index: 2;
  /*min-height: 6em;*/
  font-family: 'Poppins-BoldItalic';
}
.news-page .container .content .list .box .cont .des {
  font-size: 16px;
  line-height: 30px;
  margin-top: 12px;

}
.news-page .container .content .list:hover .box .cont .shadow {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gxs-4 {
  /*padding-top: 60px;*/
  padding-bottom: 150px;
}
.gxs-4 .ui.container {
  text-align: center;
}
.gxs-4 .ui.container .h3 {
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Poppins-BoldItalic';
  margin-top: 80px;
}
.gxs-4 .ui.container .main ul.productlist {
  margin: 0 -13px;
}
.gxs-4 .ui.container .main ul.productlist li {
  padding: 0 13px;
}
.gxs-4 .ui.container .main ul.productlist li .item:hover .top .imgbox a.hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  top: 0;
}
.gxs-4 .ui.container .main ul.productlist li .item .top {
  height: 403px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gxs-4 .ui.container .main ul.productlist li .item .top .img_box {
  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;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  background-color: #fff;
  height: 330px;
  position: relative;
}
.gxs-4 .ui.container .main ul.productlist li .item .top .img_box .box-hide {
  width: 100%;
  height: 100%;
  background-color:rgb(6 53 145 / 82%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  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;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.gxs-4 .ui.container .main ul.productlist li .item .top .img_box:hover .box-hide {
  opacity: 1;
}
.gxs-4 .ui.container .main ul.productlist li .item .top .bottom {
  height: 50px;
  line-height: 50px;
  color: #fff;
  border-bottom: 2px solid var(--secondary);
  width: 100%;
  display: none;
}
.gxs-4 .ui.container .main ul.productlist li .item .h4 {
  color: #fff;
  margin-top: 30px;
  min-height: 5.6em;
}
.gxs-4 .ui.container .main ul.productlist li .item .h4 a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-4 .ui.container .main ul.productlist li .item .h4 a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--secondary);
}
@media (max-width: 1250px) {
  .news-page .container .content {
    margin: 0 -15px;
    padding-top: 0;
  }
  .news-page .container .content .list {
    padding: 0 15px;
  }
  .news-page .container .cat_name_list {
    display: none;
  }
   .gxs-4 .ui.container .main ul.productlist li .item .top {
    height: auto;
  }
}
@media (max-width: 1000px) {
   .news-page .container .content .list {
    text-align: center;
    width: 50%;
  }
  .news-page .container .content .list .box .img {
    height: 200px;
  }
}
@media (max-width: 700px){
  .gxs-4 .ui.container .main ul.productlist li .item .h4{
    min-height:0;
  }
  .gxs-4{
    padding-bottom:50px;
  }
}
@media (max-width: 500px) {
  .news-page .container .content {
    margin: 0;
  }
  .news-page .container .content .list {
    padding: 0;
    width: 100%;
  }
  .news-page .container .content .list:first-child {
    margin-top: 0;
  }
  .news-page .container .content .list .box .cont {
    padding: 16px;
  }
  .news-page .container .content .list .box .img {
    height: 60vw;
  }
}
.newdet-page .container .title {
  font-size: 30px;
  /*font-weight: bold;*/
  line-height: 1.6;
  text-transform: capitalize;
  color: #fff;
}
.newdet-page .container .time {
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
  color: #ffffff;
}
.newdet-page .container .content {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px dashed #999;
  border-bottom: 1px dashed #999;
  font-family: Poppins !important;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 500px) {
    .newdet-page .container .title {
    font-size: 20px;
    line-height: 36px;
  }
  .prodet-page .prodet-2 .ui.container .m-link a, .m-link a{
    font-size: 18px;
line-height: 32px;
  }
}

.contact-page {
  padding: 0;
}
.contact-page .init-1 {
  padding-top: 110px;
  padding-bottom: 140px;
  position: relative;
  background-image: url(../images/contact_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}
.contact-page .init-1 .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .init-1 .container .left {
  width: 42%;
}
.contact-page .init-1 .container .left .title {
  font-size: 40px;
  /*font-weight: bold;*/
  line-height: 1.2;
   font-family: 'Poppins-BoldItalic';
    color: #fff;

}
.contact-page .init-1 .container .left .title em{
  color: var(--secondary);
}
.contact-page .init-1 .container .left .des {
  font-size: 16px;
  color: #8b8b8b;
  margin-top: 32px;
  line-height: 30px;
}
.contact-page .init-1 .container .left .tip {
  font-size: 16px;
  color: #8b8b8b;
  line-height: 30px;
}
.contact-page .init-1 .container .left .contact_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #ffffff;
}
.contact-page .init-1 .container .left .contact_list .list {
  margin-top: 26px;
  font-size: 16px;
  line-height: 30px;
}
.contact-page .init-1 .container .left .contact_list .list .text {
  margin-top: 10px;
}
.contact-page .init-1 .container .left .contact_list .list.email {
  width: 400px;
}
.contact-page .init-1 .container .left .contact_list .list.address {
  max-width: 350px;
  margin-top: 40px;
}
.contact-page .init-1 .container .left .contact_list .list.share {
  max-width: 350px;
  margin-top: 40px;
}
.contact-page .init-1 .container .left .contact_list .list.share .share_list {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .init-1 .container .left .contact_list .list.share .share_list a {
  width: 34px;
  height: 34px;
  display: inline-block;
  margin-top: 12px;
  margin-right: 12px;
  background-color: #8b8b8b;
  padding: 0;
  border-radius: 0;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
}
.contact-page .init-1 .container .left .contact_list .list.share .share_list a i {
  position: relative;
  z-index: 2;
}
.contact-page .init-1 .container .right {
  width: 58%;
  padding-left: 150px;
  /*padding-right: 230px;*/
}
.contact-page .init-1 .container .right form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-page .init-1 .container .right form input[type='text'],
.contact-page .init-1 .container .right form textarea {
  width: -webkit-calc(50% - 20px);
  width: -moz-calc(50% - 20px);
  width: calc(50% - 20px);
  margin-top: 30px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.16);
  padding: 10px 14px;
  font-size: 16px;
  line-height: 30px;
  border: none;
}
.contact-page .init-1 .container .right form input::-webkit-input-placeholder, .contact-page .init-1 .container .right form textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.contact-page .init-1 .container .right form input:-moz-placeholder, .contact-page .init-1 .container .right form textarea:-moz-placeholder {
  color: #ffffff;
}
.contact-page .init-1 .container .right form input::-moz-placeholder, .contact-page .init-1 .container .right form textarea::-moz-placeholder {
  color: #ffffff;
}
.contact-page .init-1 .container .right form input:-ms-input-placeholder, .contact-page .init-1 .container .right form textarea:-ms-input-placeholder {
  color: #ffffff;
}
.contact-page .init-1 .container .right form input::placeholder,
.contact-page .init-1 .container .right form textarea::placeholder {
  color: #ffffff;
}
.contact-page .init-1 .container .right form textarea {
  width: 100%;
}
.contact-page .init-1 .container .right form .submit_btn {
  width: 100%;
  text-align: center;
  border-radius: 0;
  padding: 8px;
  margin-top: 30px;
  border: 1px solid #ff8200;
}
.contact-page .init-1 .container .right form .submit_btn:hover{
  background: var(--secondary);
  transition: 0.3s all;
}
.contact-page .init-1 .container .right form .submit_btn span {
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: #fff;
}
.contact-page .init-2 {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
@media (max-width: 1500px) {
    .contact-page .init-1 .container .right {
    padding-right: 0;
  }
}
@media (max-width: 1000px) {
  .contact-page .init-1 .container .left {
    margin-top: 40px;
    width: 100%;
  }
  .contact-page .init-1 .container .left .title {
    text-align: center;
  }
  .contact-page .init-1 .container .left .des {
    text-align: center;
  }
  .contact-page .init-1 .container .right {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .contact-page .init-1 {
    padding-top: 0;
    padding: 40px 0;
  }
  .contact-page .init-1 .container .right form input {
    margin-top: 20px;
    width: 100%;
  }
  .contact-page .init-1 .container .right form textarea {
    margin-top: 20px;
    width: 100%;
  }
  .contact-page .init-1 .container .left .title {
    font-size: 24px;
    line-height: 44px;
  }
  .contact-page .init-1 .container .left .des {
    line-height: 30px;
    margin-top: 20px;
  }
  .contact-page .init-1 .container .left .contact_list {
    text-align: center;
  }
  .contact-page .init-1 .container .left .contact_list .list {
    margin-top: 20px;
    width: 100%;
  }
  .contact-page .init-1 .container .left .contact_list .list.email {
    width: 100%;
  }
  .contact-page .init-1 .container .left .contact_list .list.address {
    margin-top: 20px;
  }
  .contact-page .init-1 .container .left .contact_list .list.share {
    margin-top: 20px;
  }
}

.gallery-page .container .content {
  margin: 0 -20px;
  margin-top: -50px;
}
.gallery-page .container .content p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 22px;
}
.gallery-page .container .content .column {
  margin-top: 50px;
  padding: 0 20px;
}
.gallery-page .container .content .column .box a {
  display: block;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-page .container .content .column .box a img {
  width: 100%;
}
.gallery-page .container .content .column .box .text {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
  text-transform: capitalize;
}
.gallery-page .container .content .column .box .text .cir {
  width: 6px;
  height: 6px;
  background-color: var(--color);
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 12px;
}
.gallery-page .container .content .column:hover .box .text {
  opacity: 1;
}
.gallery-page .container .m-page {
  text-align: center;
}
@media (max-width: 500px) {
   .gallery-page .container .content {
    margin: 0;
  }
  .gallery-page .container .content .column {
    margin-top: 20px;
    padding: 0;
  }
  .gallery-page .container .content .column:first-child {
    margin-top: 0;
  }
  .gallery-page .container .content .column .box .text {
    opacity: 1;
  }
}

    .seoPublic .title {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 2em;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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(--secondary);
        color: whitesmoke;
        border: none;
    }

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

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


    .seoPublic .text a: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(--secondary);
        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;
        background: white;
        -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    }

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

    .seoPublic .Auxil-related .list ul li .box .content {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 22px;
        color: #111;
        font-weight: 500;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

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

    .seoPublic .Auxil-related .list ul li .box .content p {
        display: block;
        font-size: 16px;
        color: #888;
        line-height: 1.6;
        font-weight: 400;
        margin: .5em 0;
        height: 4.8em;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .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(--secondary);
        font-size: 16px;
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--secondary);
    }

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

    @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: 15px;
        }
.about-page .about-1{
  padding-top:0px!important;
}
        #cp-Nav .nav div.title {
            font-size: 18px;
            line-height: 32px;
            font-weight: bold;
            padding: 8px 10px;
            background: var(--secondary);
            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;
            font-size: 16px;
line-height: 30px;
        }

       .pt-160{
         padding-top: 40px;
       }
       .inner-banner{
         height: auto;
         padding: 60px 0;

       }
       .inner-banner .content{
         position: relative;
         top: 0;
         transform: none;
       }
    }

















.inner-page .sidebox .sideleft {
  width: 25%;
  position: sticky;
  top: 180px;
}
.inner-page .sidebox .sideleft .widget {
  background: rgba(255,255,255,.16);
  padding: 30px;
  margin-bottom: 30px;
}
.inner-page .sidebox .sideleft .widget form {
  position: relative;
}
.inner-page .sidebox .sideleft .widget form input {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  height: 40px;
  font-size: 16px;
  line-height: 2;
  color: #000;
}
.inner-page .sidebox .sideleft .widget form button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color);
  color: #fff;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  height: 40px;
}
.inner-page .sidebox .sideleft .widget h6 {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 15px;
  font-family: 'Poppins-Bold';
  color: #fff;
}
.inner-page .sidebox .sideleft .widget ul {
  margin-bottom: 0;
  padding: 0;
}
.inner-page .sidebox .sideleft .widget ul li {
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  position: relative;
}
.inner-page .sidebox .sideleft .widget ul li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebox .sideleft .widget ul li i {
  font-size: 14px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px;
}
.inner-page .sidebox .sideleft .widget ul li:hover,
.inner-page .sidebox .sideleft .widget ul li.active {
  color: var(--secondary);
}
.inner-page .sidebox .sideleft .widget ul li ul {
  display: none;
  margin-top: 15px;
}
.inner-page .sidebox .sideleft .widget ul li ul li a {
  padding-left: 0;
  color: #999;
}
.inner-page .sidebox .sideleft .widget ul li ul li a.active{
  color: var(--color);
}
.inner-page .sidebox .sideleft .widget .recent li {
  display: block;
}
.inner-page .sidebox .sideleft .widget .recent li .thum {
  width: 100px;
  overflow: hidden;
  float: left;
}
.inner-page .sidebox .sideleft .widget .recent li a.title {
  display: block;
  margin-left: 115px;
}
.inner-page .sidebox .sideleft .widget .form1 {
  text-align: center;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .widget .form1 textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 15px;
  height: 40px;
  font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
  background: var(--color);
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins-Bold';
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
  background: #000;
}
.inner-page .sidebox .sideright {
  width: 75%;
  padding: 0 10px 50px 50px;
}    
.ap-page {
  padding-top: 100px;
}
.ap-page .sideright .ap-top {
  position: relative;
  transition: transform 0.85s cubic-bezier(0.15, 0.95, 0.4, 1), box-shadow 0.3s;
  transform-style: preserve-3d;
  perspective: 80000px;
}
.ap-page .sideright .ap-top .img {
  position: relative;
  transform-style: preserve-3d;
  transition: all .5s;
}
.ap-page .sideright .ap-top .img img {
  width: 100%;
}
.ap-page .sideright .ap-top .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.ap-page .sideright .ap-top h6 {
  padding: 0 1.6rem 0.7rem;
  position: absolute;
  background: 0 0;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  top: 1.6rem;
  left: 0;
  width: 100%;
  z-index: 10;
  text-transform: uppercase;
}
.ap-page .sideright .ap-top h6::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 2rem;
  background-color: #fff;
}
.ap-page .sideright .ap-top .desc {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 1.6rem;
  bottom: 1.6rem;
  color: #fff;
  z-index: 10;
}
.ap-page .sideright .ap-top .desc h2 {
  font-size: 24px;
  font-family: 'Poppins-Bold';
  line-height: 44px;
}
.ap-page .sideright .ap-top .desc p {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
}
.ap-page .sideright .ap-top:hover .img {
  transform: translateY(-3px);
  box-shadow: 0 15px 80px rgba(0, 0, 0, 0.35);
}
.ap-page .sideright .ap-bottom {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 2;
}
.ap-page .sideright .ap-bottom table td{
  min-width: 300px;
  color:#fff;
}
.ap-page .sideright .ap-bottom h6 {
  font-size: 25px;
  line-height: 1.6;
  color: #002E42;
  text-transform: capitalize;
  font-family: 'Poppins-Bold';
}
.ap-page .sideright .ap-bottom .con {
  font-size: 15px;
  line-height: 1.6;
  color: #002E42;
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.ap-page .sideright .ap-bottom .con p {
  margin-bottom: 15px;
}
.ap-page .sideright .ap-bottom .bottom2 {
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc;
}
.ap-page .sideright .ap-bottom .bottom2 dl {
  margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom2 dl dd {
  font-size: 15px;
  line-height: 1.6;
  color: #002E42;
  margin-bottom: 1rem;
}
.ap-page .sideright .ap-bottom .bottom3 {
  margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul {
  margin-top: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul li {
  margin-bottom: 1.5rem;
}
.ap-page .sideright .ap-bottom .bottom3 ul li h4 {
  font-size: 16px;
  text-transform: capitalize;
  color: #002E42;
  font-family: 'Poppins-Bold';
  line-height: 2;
  padding: 0.8rem 1.2rem;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.ap-page .sideright .ap-bottom .bottom3 ul li h4::after {
  content: "\f107";
  position: absolute;
  top: 0.8em;
  right: 1.5em;
  font-size: 20px;
  font-family: fontAwesome;
}
.ap-page .sideright .ap-bottom .bottom3 ul li .desc {
  padding: 1.6rem 2rem 0.8rem;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1px;
  color: #002E42;
  display: none;
}
.ap-page .sideright .ap-bottom .bottom3 ul li.active h4 {
  background: #e9672e;
  color: #fff;
}
.ap-page .sideright .ap-bottom .bottom3 ul li.active h4::after {
  content: "\f106";
}
.ap-page .sideright .ap-bottom .bottom3 ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1366px) {
  .inner-page .sidebox .sideleft {
    width: 28%;
  }
  .inner-page .sidebox .sideright {
    width: 72%;
  }
  .inner-page .sidebox .sideleft .widget .recent li a.title {
    margin-left: 98px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page .sidebox .sideleft {
    display: none;
  }
  .inner-page .sidebox .sideright {
    width: 100%;
    padding-left: 0;
  }
  .inner-page .sidebox .sideright {
    padding: 0 0 50px 0;
  }
}
@media screen and (max-width: 700px) {
  .ap-page .sideright .ap-top .img img{
    min-height: 250px;
    object-fit: cover;
  }
  .ap-page .sideright .ap-top .desc p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .ap-page .sideright .ap-bottom h6 {
    font-size: 22px;
    line-height: 1.8;
  }
  .ap-page .sideright .ap-bottom .bottom3 ul li h4::after {
    right: 0.5em;
  }
 
}
 .inner-page p {
  color: #fff;
 }
    
 .service-page .service-4 .ui.container p {
      text-align: center;
    padding-top: 50px;
     max-width: 1135px;
    margin: auto;
    line-height: 1.6;
}














/*production-line-page*/

.production-page {
  background-color: #111;
  padding: 120px 0;
}
.production-page .productionBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.production-page .productionBox .production-left {
  width: 315px;
  color: #fff;
  position: sticky;
  top: 200px;
  height: fit-content;
}
.production-page .productionBox .production-left h3 {
  font-size: 30px;
  font-family: 'Poppins-BoldItalic';
  margin-bottom: 25px;
}
.production-page .productionBox .production-left ul {
  margin-bottom: 50px;
}
.production-page .productionBox .production-left ul li {
  width: 100%;
  margin-bottom: 20px;
}
.production-page .productionBox .production-left ul li.active a{
  background-color: var(--color);
}
.production-page .productionBox .production-left ul li a {
  width: 100%;
  display: block;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #292929;
  font-size: 18px;
}
.production-page .productionBox .production-left form input[type='text'] {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #292929;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 0 20px;
  margin-bottom: 20px;
}
.production-page .productionBox .production-left form div {
  position: relative;
}
.production-page .productionBox .production-left form div textarea {
  width: 100%;
  height: 160px;
  background-color: #292929;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 20px;
  resize: none;
}
.production-page .productionBox .production-left form div input[type='submit'] {
  width: 30px;
  height: 24px;
  background: url("../images/fly.png") no-repeat;
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: none;
}
.production-page .productionBox .production-right {
  width: calc(100% - 375px);
  margin-left: 60px;
}
.production-page .productionBox .production-right .production-title {
  font-size: 30px;
  font-family: 'Poppins-BoldItalic';
  color: var(--color);
  margin-bottom: 40px;
  line-height: 1;
}
.production-page .productionBox .production-right .production-content {
  margin-bottom: 60px;
}
.production-page .productionBox .production-right .production-content .production-title {
  margin-bottom: 30px;
}
.production-page .productionBox .production-right .production-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
}
.production-page .productionBox .production-right > ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 55px;
}
.production-page .productionBox .production-right > ul li:last-child {
  margin-bottom: 0;
}
.production-page .productionBox .production-right > ul li:nth-child(odd) .content {
  padding-left: 55px;
}
.production-page .productionBox .production-right > ul li .img_box {
  width: 50%;
}
.production-page .productionBox .production-right > ul li .img_box img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.production-page .productionBox .production-right > ul li .content {
  width: 50%;
}
.production-page .productionBox .production-right > ul li .content p {
  max-width: 450px;
  color: #fff;
  font-size: 18px;
}
.hose-material-page .productionBox .production-right .hose-material-content {
  margin-bottom: 80px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history {
  position: relative;
  margin-top: 60px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history .line {
  width: 100%;
  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%);
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul {
  padding: 0 25px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul .slick-slide:nth-child(odd) .bottom {
  opacity: 0;
  margin-top: 80px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul .slick-slide:nth-child(odd) span {
  top: 60%;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul .slick-slide:nth-child(even) span {
  top: 40%;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul .slick-slide:nth-child(even) .top {
  opacity: 0;
  margin-bottom: 80px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul .slick-slide .bottom,
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul .slick-slide .top  {
  height: 265px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li {
  color: #fff;
  position: relative;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  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%);
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li .top h4 {
  margin-top: 15px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li .bottom h4 {
  margin-bottom: 15px;
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li h4 {
  font-size: 18px;
  font-family: 'Poppins-Bold';
}
.hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li span {
  font-size: 18px;
  font-family: 'Poppins-Bold';
  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%);
}
.material-mixing-page .productionBox .production-right .material-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 55px;
}
.material-mixing-page .productionBox .production-right .production-title {
  line-height: 1;
}
.molding-page .productionBox .production-right .molding-content {
  margin-bottom: 80px;
}
.molding-page .productionBox .production-right .molding-1{
  margin: 120px 0 100px;
}
.molding-page .productionBox .production-right .molding-1 ul{
  display: flex;
  justify-content: space-between;
  margin: 0 -30px;
}
.molding-page .productionBox .production-right .molding-1 ul li{
  padding: 0 30px;
  width: 33.3333333%;
}
.molding-page .productionBox .production-right .molding-1 ul li .img_icon{
  text-align: center;
}
.molding-page .productionBox .production-right .molding-1 ul h3{
  font-size: 24px;
  color: #fff;
  margin: 50px 0 25px;
  text-align: center;
}
.molding-page .productionBox .production-right .molding-1 ul li p{
  font-size: 16px;
  opacity: 0.6;
  height: 90px;
  overflow: auto;
  text-align: center;
  line-height: 1.8;
}
.molding-page .productionBox .production-right .molding-content .molding-history {
  position: relative;
  margin-top: 60px;
}
.molding-page .productionBox .production-right .molding-content .molding-history .line {
  width: 100%;
  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%);
}
.molding-page .productionBox .production-right .molding-content .molding-history ul {
  padding: 0 25px;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul .slick-slide:nth-child(odd) .bottom {
  opacity: 0;
  margin-top: 80px;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul .slick-slide:nth-child(odd) span {
  top: 60%;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul .slick-slide:nth-child(even) span {
  top: 40%;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul .slick-slide:nth-child(even) .top {
  opacity: 0;
  margin-bottom: 80px;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul li {
  color: #fff;
  position: relative;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul li:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  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%);
}
.molding-page .productionBox .production-right .molding-content .molding-history ul li .top h4 {
  margin-top: 15px;
  min-height:50px;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul li .bottom h4 {
  margin-bottom: 15px;
  min-height:50px;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul li h4 {
  font-size: 18px;
  font-family: 'Poppins-Bold';
  max-height: 50px;
}
.molding-page .productionBox .production-right .molding-content .molding-history ul li span {
  font-size: 18px;
  font-family: 'Poppins-Bold';
  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%);
}
.production-line-page {
  color: #fff;
  background-color: #111;
  padding: 110px 0 120px;
}
.production-line-page .flex-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;
}
.production-line-page .h2 {
  font-size: 50px;
  font-family: 'Poppins-BoldItalic';
}
.production-line-page p {
  font-size: 18px;
}
.production-line-page .production-line-1 .right {
  max-width: 690px;
}
.production-line-page .production-line-1 .right .text {
  font-size: 18px;
}
.production-line-page .production-line-1 .right ul {
  margin-top: 45px;
}
.production-line-page .production-line-1 .right ul li.active .title::before {
  content: "\f107";
}
.production-line-page .production-line-1 .right ul li.active .content {
  padding: 35px 50px;
  height: 175px;
}
.production-line-page .production-line-1 .right ul li:last-child {
  margin-bottom: 0;
}
.production-line-page .production-line-1 .right ul li {
  margin-bottom: 40px;
}
.production-line-page .production-line-1 .right ul li .title {
  font-size: 24px;
  font-family: 'Poppins-BoldItalic';
  margin-bottom: 20px;
  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;
  position: relative;
  cursor: pointer;
}
.production-line-page .production-line-1 .right ul li .title::before {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.production-line-page .production-line-1 .right ul li .title h4 {
  margin-left: 35px;
}
.production-line-page .production-line-1 .right ul li .content {
  overflow: hidden;
  height: 0;
  font-size: 18px;
  padding: 0;
  background-color: var(--color);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.production-line-page .production-line-2 {
  height: 520px;
  background: url("../images/production-line-img-2.jpg") no-repeat;
  background-size: cover;
  margin: 135px 0 155px;
  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;
}
.production-line-page .production-line-2 .content {
  max-width: 600px;
  padding-left: 70px;
}
.production-line-page .production-line-2 .content p {
  font-size: 18px;
  margin: 20px 0 50px;
  color: #fff;
}
.production-line-page .production-line-3 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.production-line-page .production-line-3 .right {
  max-width: 670px;
}
.production-line-page .production-line-3 .right p {
  margin: 20px 0 50px;
}
.production-line-page .production-line-4 {
  position: relative;
  margin: 145px 0 205px;
}
.production-line-page .production-line-4 .right {
  max-width: 670px;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--color);
  padding: 50px 90px 50px 100px;
}
.production-line-page .production-line-4 .right p {
  margin: 20px 0 50px;
}
.production-line-page .production-line-5 .left {
  max-width: 670px;
}
.production-line-page .production-line-5 .left .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.production-line-page .production-line-5 .left p {
  margin: 40px 0 60px;
}
.production-line-page .production-line-5 .right {
  max-width: 670px;
}
.production-line-page .production-line-5 .right p:nth-child(2) {
  margin: 65px 0 30px;
}
.production-line-page .production-line-6 {
  margin: 150px 0;
}
.production-line-page .production-line-6 .content{
  width: 100%;
}
.production-line-page .production-line-6 ul {
  width: calc(100% + 40px);
  margin: 0 -20px;
}
.production-line-page .production-line-6 ul li {
  padding: 0 20px;
}
.production-line-page .production-line-6 ul li a{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.production-line-page .production-line-6 ul li a{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production-line-page .production-line-6 ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -100px;
  width: 100%;
  padding: 0 15px;
  margin: 0 !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.production-line-page .production-line-6 ul .slick-dots li {
  width: 14px;
  height: 14px !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d7b73f), to(#d77a2b));
  background-image: -webkit-linear-gradient(top, #d7b73f 0%, #d77a2b 100%);
  background-image: -moz-linear-gradient(top, #d7b73f 0%, #d77a2b 100%);
  background-image: linear-gradient(to bottom, #d7b73f 0%, #d77a2b 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5px;
  padding: 0 !important;
  opacity: 0.6;
}
.production-line-page .production-line-6 ul .slick-dots li button {
  display: none;
}
.production-line-page .production-line-6 ul .slick-dots .slick-active {
  opacity: 1;
}
.inner-title{
  text-align: center;
  margin-bottom: 50px;
}
.inner-title h2{
  font-size: 50px;
  color: #fff;
  font-family: 'Poppins-BoldItalic';
}

@media (max-width: 1600px) {
  .production-line-page .production-line-1 .left{
    width: 48%;
  }
  .production-line-page .production-line-1 .left img{
    width:100%;
    height: 100%;
    object-fit: cover;
  }
  .production-line-page .production-line-1 .right{
    width: 48%;
  }
}
@media (max-width: 1400px) {
  .production-line-page .production-line-1 .right ul li .content {
    font-size: 16px;
  }
  .production-line-page .production-line-3 .left,
  .production-line-page .production-line-5 .left {
    width: 48%;
  }
  .production-line-page .production-line-3 .right,
  .production-line-page .production-line-5 .right {
    width: 48%;
  }
  .production-page .productionBox .production-right .production-title {
    font-size: 26px;
    line-height: 1.4;
  }
  .production-page .productionBox .production-right > ul li .content p {
    max-width: 100%;
    font-size: 16px;
  }
  .production-page .productionBox .production-right > ul li:nth-child(odd) .content {
    padding-left: 0;
  }
  .production-page .productionBox .production-right > ul li .content {
    width: calc(50% - 35px);
  }
}
@media (max-width: 1200px) {
  .production-line-page .h2 {
    font-size: 40px;
  }
  .production-line-page .production-line-4 .left{
    width: 70%;
    height: 480px;
  }
  .production-line-page .production-line-4 .left img{
    width:100%;
    height: 100%;
    object-fit: cover;
  }
  .production-page .productionBox .production-right > ul li {
    flex-direction: column;
  }
  .production-page .productionBox .production-right > ul li .content{
    width: 100%;
  }
  .production-page .productionBox .production-right > ul li .img_box{
    width: 100%;
  }
  .production-page .productionBox .production-right > ul li:nth-child(odd) .content{
    margin-top: 60px;
  }
  .production-page .productionBox .production-right > ul li:nth-child(even) .content{
    margin-bottom: 60px;
  }
  .production-page .productionBox .production-left{
    width: 100%;
    margin-bottom: 60px;
  }
  .production-page .productionBox .production-left form{
    display: none;
  }
  .production-page .productionBox .production-right{
    width: 100%;
    margin-left: 0;
  }
  .production-page .productionBox .production-left ul li{
    width: 25%;
    padding: 0 15px;
  }
  .production-page .productionBox .production-left ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
}
@media (max-width: 1000px) {
  .ap-page .sideright .ap-bottom {
    width: 100%;
    overflow-x: auto;
  }
  .ap-page .sideright .ap-bottom::-webkit-scrollbar {
    height: 5px;
  }
  .service-page .service-2 .ui.container .left,
  .service-page .service-2 .ui.container .right{
    width: 100%;
    margin: 30px 0;
  }
  .production-page .productionBox .production-left{
    position: unset;
  }
  .molding-page .productionBox .production-right .molding-1 ul{
    flex-wrap: wrap;
  }
  .molding-page .productionBox .production-right .molding-1 ul li {
    width: 100%;
    margin: 0 20px;
  }
  .inner-banner{
    margin-top: 120px;
  }
  .production-line-page .flex-content{
    flex-wrap: wrap;
  }
  .production-line-page .production-line-1 .left,
  .production-line-page .production-line-3 .left,
  .production-line-page .production-line-5 .left {
    width: 100%;
    margin-bottom: 60px;
  }
  .production-line-page .production-line-1 .right,
  .production-line-page .production-line-3 .right,
  .production-line-page .production-line-5 .right {
    width: 100%;
  }
  .production-line-page .production-line-4 .right {
    max-width: 500px;
    padding: 40px 60px
  }
  .production-line-page .production-line-4 .right p {
    margin: 20px 0 30px;
  }
  .inner-title h2 {
    font-size: 40px;
  }
   .production-page .productionBox .production-left ul li{
    padding: 0 10px;
  }
  .production-page .productionBox .production-left ul{
    margin: 0 -10px;
  }
}
@media (max-width: 700px) {
  .font-60 {
    font-size: 34px;
  }
  .production-line-page .production-line-2 {
    margin: 65px 0;
  }
  .production-line-page .production-line-2 .content {
    padding: 0 35px;
  }
  .production-line-page .production-line-4{
    margin: 75px 0 105px;
  }
  .production-line-page .production-line-4 .right{
    width: 100%;
    position: unset;
    transform: none;
  }
  .production-line-page .production-line-4 .left{
    width: 100%;
    margin-bottom: 60px;
  }
  .production-line-page .production-line-6 {
    margin: 70px 0;
  }
  .production-line-page {
    color: #fff;
    background-color: #111;
    padding: 70px 0;
  }
  .inner-title h2,
  .production-line-page .h2 {
    font-size: 28px;
  }
  .production-page .productionBox .production-left ul li{
    width: 50%;
  }
}
@media (max-width: 500px) {
  .font-60 {
    font-size: 24px;
  }
  .production-line-page .production-line-1 .right ul li.active .content {
    padding: 25px;
    height: 245px;
  }
  .production-line-page .production-line-4 .right {
    padding: 40px;
  }
  .production-page .productionBox .production-left ul li a{
    font-size: 16px;
  }
  .hose-material-page .productionBox .production-right .hose-material-content .hose-history ul {
    padding: 0;
    width: 100%;
  }
  .production-page .productionBox .production-left ul li {
    width: 100%;
  }
  .hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li h4{
    text-align: center;
  }
  .hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li .top,
  .hose-material-page .productionBox .production-right .hose-material-content .hose-history ul li .bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}










.hl_history {
  padding-bottom: 7rem;
  background: url(../images/hisbg.png) no-repeat left bottom;
  background-size:cover;
  color: #fff;
}
.hl_history .box .banner {
  margin: 1rem 0 4rem;
  position: relative;
}
.hl_history .box .banner .item {
  position: relative;
  text-align: center;
}
.hl_history .box .banner .item .number {
  line-height: 1;
  width: 100%;
  font-weight: bold;
  color: #ffffff14;
  font-size: 22.75rem;
}
.hl_history .box .banner .item .text {
  font-size: 22px;
  line-height: 32px;
  position: absolute;
  top: 44%;
  left: 0;
  width: 100%;
  color: #fff;
}
.hl_history .box .banner .item .text p{
  padding:120px 0; 
}
.hl_history  .button .btn {
  position: absolute;
  z-index: 4;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3.75rem;
  line-height: 3.75rem;
  background: #474747;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.hl_history  .button .btn:hover {
  background: #063591;
}
.hl_history  .button .prev {
  left: 0;
}
.hl_history  .button .next {
  right: 0;
}
.hl_history .box .banner1 {
  position: relative;
  overflow: hidden;
}
.hl_history .box .banner1::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  top: 19px;
  height: 1px;
  background: #ddd;
}
.hl_history .box .banner1 ul li {
  cursor: pointer;
}
.hl_history .box .banner1 ul li .item {
  text-align: center;
}
.hl_history .box .banner1 ul li .item .dian span {
  display: inline-block;
  width: 6px;
  margin-bottom: -9px;
  height: 6px;
  border-radius: 50%;
  background: #999999;
}
.hl_history .box .banner1 ul li .item p {
  margin-top: 0.9375rem;
  font-size: 1rem;
  color: #999;
   
}
.hl_history .box .banner1 ul .slick-current li .item .dian span {
  background: #fe7700;
  -webkit-animation: big 1.5s infinite;
  -moz-animation: big 1.5s infinite;
  animation: big 1.5s infinite;
}
.hl_history .box .banner1 ul .slick-current li .item p {
  color: #fe7700;
}
@-webkit-keyframes big {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
@-moz-keyframes big {
  0% {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -moz-transform: scale(2);
    transform: scale(2);
  }
}
@keyframes big {
  0% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
  }
}
.p90 {
  padding-top: 5.625rem;
}
.font-48 {
    font-size: 48px;
}
@media screen and (max-width: 1000px) {
  .hl_history .box .banner .item .text p{
    max-height: 160px;
    overflow-y: auto;
  }
  .hl_history .box .banner .item{
    width:100%;
    padding: 0 15px;
  }
  .hl_history .box .banner1 .swiper-slide .item p{
    font-size: 18px;
  }
  .hl_history .box .banner .item .number{
    font-size: 260px;
  }
  .hl_history .button .btn{
   display: none;
  }
}
@media screen and (max-width: 700px) {
    .hl_history .box .banner .item .text p{
    max-height: 100px;
    overflow-y: auto;
  }
  .hl_history .box .banner .item .number{
    font-size: 190px;
  }
}
@media screen and (max-width: 500px) {
  .hl_history .box .banner .item .number{
    font-size: 120px;
  }
}

.oem-page .seoPublic{
   padding-bottom: 120px;
  }



/*SEO start*/
#index-body .about .about-content .about-t .left .text h1 {
    display: inline;
}
#footer .footer-center .footer-b p a.foota {
    text-overflow: ellipsis;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    width: 600px;
}
.newdet-page .container .content {
    line-height: 2;
    font-size: 18px;
}
.prodet-page .prodet-2 .ui.container .m-link a, .m-link a {
    color: #bdb8b8;
    font-size: 16px;
}
.gxs-4 .ui.container .h3 {
    margin-bottom: 50px;
    margin-top: 200px;
    font-size: 40px;
    line-height: 2;
}
.gxs-4 .ui.container .main ul.productlist li .item .h4 h3 {
    font-size: 18px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list span {
    line-height: 2;
}
.inner-banner .content .ui.container .h2 {
    padding-top: 100px;
    font-size: 30px;
    line-height: 2;
}
.seoPublic .Auxil-about .ui.container .right .text {
    line-height: 2;
}
.seoPublic .Auxil-news ul li .item .text .h5 h3 {
    text-overflow: ellipsis;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    width: 417px;
}
.product-page .sideright .box .content {
    line-height: 2;
    font-size: 16px;
}
.sidebox .sideleft .cate ul.catelist li {
    line-height: 55px;
}
.product-page ul.productlist li .item .pname {
    line-height: 2;
}
#index-body .advantage .advantage-content .left ul li.active p {
    line-height: 2;
}
#index-body .product .product-content ul li h4 {
    line-height: 2;
}
#index-body .application .application-content .left .app-title p {
    line-height: 2;
}
#index-body .news .news-content ul li h4 {
    font-size: 20px;
    line-height: 1.8;
}
#index-body .news .news-content ul li p {
    font-size: 16px;
    line-height: 2;
}
#banner .banner-content ul li .content .left h3 {
    line-height: 1.4;
    max-width: 955px;
}


@media screen and (max-width: 500px) {
  #footer .footer-center .footer-b p a.foota {
    display: none;
}
.seoIndustry.Auxil-industry {
    display: none;
}
h1.Auxil-h1.font-30.chanpinfenleiye {
    text-align: center;
}
.seoPublic .Auxil-news ul li .item .text .h5 h3 {
    width: 330px;
}
.inner-banner .content .ui.container .h2 {
    padding-top: 0;
}
.product-page .sideright .box .content {
    display: none;
}
.product-page .sideright .box h1 {
    text-align: center;
}
div#cp-Nav {
    padding: 10px 0;
}
.inner-banner .content .ui.container .h2 {
    font-size: 18px;
}
.inner-banner .content .ui.container .mbx {
    font-size: 15px;
}
.prodet-page .prodet-1 .ui.container .right .content {
    max-height: inherit;
    font-size: 14px;
}
#index-body .about .about-content .about-b .content h3 {
    line-height: 1.6;
}

}

/*SEO end*/