/*@font-face {
  font-family: 'NotoSansCJK';
  src: url('../fonts/NotoSansCJK-Light.otf');
  font-weight: 300;
}
@font-face {
  font-family: 'NotoSansCJK';
  src: url('../fonts/NotoSansCJK-DemiLight.otf');
  font-weight: 350;
}
@font-face {
  font-family: 'NotoSansCJK';
  src: url('../fonts/NotoSansCJK-Regular.otf');
  font-weight: 400;
}
@font-face {
  font-family: 'NotoSansCJK';
  src: url('../fonts/NotoSansCJK-Medium.otf');
  font-weight: 500;
}*/
body {
  font-family: "NotoSansCJK";
  /*font-family: 'Source Han Sans SC', sans-serif;*/
  max-width: 1920px;
  --color: #ff9015;
  font-weight: 300;
  margin: 0 auto;
  font-size: 16px;
}
.container {
  width: 1590px;
  padding: 0 15px;
}

.colorF {
  color: #fff;
}
.flex {
  display: flex;
}
.flexWrap {
  display: flex;
  flex-wrap: wrap;
}
.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexAC {
  display: flex;
  align-items: center;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.text-L {
  text-align: left;
}
.text-C {
  text-align: center;
}
.text-R {
  text-align: right;
}
.t_1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.italic {
  font-style: italic;
}
.lightText{
  font-weight: 300;
}
.demiLightText{
  font-weight: 350;
}
.regularText{
  font-weight: 400;
}
.mediumText{
  font-weight: 500;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  left: 0;
  color: white;
  transition: 0.5s;
  background-color: #f8f8f8;
}
#header .nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu {
  width: auto;
  max-width: 1800px;
  margin: 0 auto;
  height: 104px;
}
#header .nav .ui.menu i{
  color: #333333;
}
#header .nav .ui.menu .menu-box {
  width: 60%;
  height: inherit;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 18px;
  -webkit-perspective: 500px;
  perspective: 500px;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  color: #333;
  font-weight: 400;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  perspective: 500px;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-transform: capitalize;
  position: relative;
}
#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 ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#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:hover > ul {
  display: block;
}
#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 .yuy ul {
  right: 0;
  left: auto;
}
#header.active {
  /*background-color: black;*/
  top: 0;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner{
  padding-top: 104px;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.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;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -moz-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  -o-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  -o-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
span.h2 {
  line-height: 70/58;
}
.more {
  height: 50px;
  /*padding: 0 1.1em;*/
  padding: 0 20px;
  min-width: 180px;
  border-top: 1px solid rgba(34, 34, 34, 0.5);
  border-bottom: 1px solid rgba(34, 34, 34, 0.5);
  transition: 0.5s;
  font-size: 16px;
}
.more:hover {
  background-color: var(--color);
  color: #fff;
  border-color: var(--color);
}
.text {
  line-height: 28/18;
  color: #222;
}
.slickBtn {
  font-size: 40px;
}
.slickBtn div {
  margin: 0;
  border-radius: 0;
  background-color: #7a7a7a;
  color: white;
}
.slickBtn div i {
  font-size: 0.5em;
}
.slickBtn div.next {
  margin-left: 0;
}
.slickBtn div:hover {
  background-color: var(--color) !important;
  color: white !important;
}
#banner li {
  position: relative;
}
#banner li .content {
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
#banner li .content .left {
  max-width: 820px;
}
#banner li .content .more {
  border-color: rgba(255, 255, 255, 0.2);
}
#banner li .content .more:hover {
  border-color: var(--color);
}
#index-body .init-1 .bottom {
  position: relative;
}
#index-body .init-1 .bottom ul li span.dots {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
  cursor: pointer;
  cursor: hand;
}
#index-body .init-1 .bottom ul li span.dots:after,
#index-body .init-1 .bottom ul li span.dots:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color);
  animation: ks 2s linear infinite;
  border-radius: inherit;
}
#index-body .init-1 .bottom ul li p.h6{
  position: absolute;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  left: 53px;
  transition: all .3s ease;
}
#index-body .init-1 .bottom ul li.active p.h6{
  opacity: 0;
}
#index-body .init-1 .bottom ul li span.dots:after {
  -webkit-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
#index-body .init-1 .bottom ul li span.dots i {
  transition: 0.5s;
}
#index-body .init-1 .bottom ul li .content {
  width: 450px;
  position: absolute;
  padding: 50px 20px 70px;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}
#index-body .init-1 .bottom ul li:nth-child(1) {
  top: 31%;
  left: 5%;
}
#index-body .init-1 .bottom ul li:nth-child(1) .content {
  left: 150%;
  top: -100%;
}
#index-body .init-1 .bottom ul li:nth-child(2) {
  top: 20%;
  left: 44%;
}
#index-body .init-1 .bottom ul li:nth-child(2) .content {
  left: -100%;
  bottom: 150%;
}
#index-body .init-1 .bottom ul li:nth-child(3) {
  top: 49%;
  left: 55.5%;
}
#index-body .init-1 .bottom ul li:nth-child(3) .content {
  right: -640%;
  top: 150%;
}
#index-body .init-1 .bottom ul li:nth-child(4) {
  top: 33%;
  left: 72%;
}
#index-body .init-1 .bottom ul li:nth-child(4) .content {
  left: -300%;
  bottom: 150%;
}
#index-body .init-1 .bottom ul li:nth-child(5) {
  top: 79%;
  left: 30%;
}
#index-body .init-1 .bottom ul li:nth-child(5) .content {
  bottom: 100%;
  right: 0;
}
#index-body .init-1 .bottom ul li:nth-child(6) {
  top: 65%;
  left: 80.3%;
}
#index-body .init-1 .bottom ul li:nth-child(6) .content {
  top: -50%;
  right: 150%;
}

#index-body .init-1 .bottom ul li.active span.dots i {
  transform: rotate(45deg);
}
#index-body .init-1 .bottom ul li.active .content {
  z-index: 1;
  opacity: 1;
}
#index-body .init-1 .bottom ul li .content .h6{
  font-weight: 400;
  color: #1f1f1f;
}
#index-body .init-1 .bottom ul li .content .text{
  color: #1f1f1f;
}
#index-body .init-2 {
  background-color: #f8f8f8;
}
#index-body .init-2 .left {
  width: 48%;
}
#index-body .init-2 .right {
  width: 52%;
  padding-right: 3%;
  padding-left: 2.5%;
}
#index-body .init-2 .right .top span.h2 {
  margin-left: -22%;
}
#index-body .init-2 .left .swiper ul li{
  position: relative;
}
#index-body .init-2 .left .swiper ul li.swiper-slide-active .content {
  opacity: 1;
}
#index-body .init-2 .left .content {
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: rgba(255, 255, 255, .9);
  height: 50%;
  width: 34%;
  padding: 4%;
  transition: 1.5s;
  opacity: 0;
}
#index-body .init-2 .left .content span.h6 {
  line-height: 4/3;
}
#index-body .init-2 .right .list {
  width: 100%;
}
#index-body .init-2 .right .list .slickRightBox:first-child{
  display: block;
}
#index-body .init-2 .right .list .slickRightBox .swiper{
  padding-bottom: 100px;
}
#index-body .init-2 .right .list .slickRightBox .swiper ul li .box2 a img{
  max-height: 220px;
}
#index-body .init-2 .right .list a.img-box {
  transition: 0.5s;
}
/*#index-body .init-2 .right .list .swiper-slide-active a.img-box {
  opacity: 0;
}*/
#index-body .init-2 .right .list .RegularHeight {
  /*height: 70px;*/
}
#index-body .init-2 .right .list .swiper-slide-active .content {
  opacity: 1;
}
#index-body .init-2 .right .page .line {
  width: 100%;
  height: 2px;
  background-color: #efefef;
  position: relative;
}
#index-body .init-2 .right .page .line i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #3d3d3d;
  width: 20%;
  transition: 0.5s;
}
#index-body .init-2 .right .page .slickBtn div {
  border: 1px solid #e8e8e8;
  background-color: white;
  color: #585858;
}
#index-body .init-2 .right .page .slickBtn div.next {
  border-left: none;
}
#index-body .init-2 .right .list .slickRightBox .swiper-pagination{
  width: 68%;
  top: auto;
  bottom: 40px;
  margin-left: 0;
  height: 2px;
	background: #efefef;

}
#index-body .init-2 .right .list .slickRightBox .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
  background: #3d3d3d;
  opacity: 1;
}
#index-body .init-2 .right .list .slickRightBox .LswiperBtn{
  position: absolute;
  bottom: 0;
  right: 0;
}
#index-body .init-2 .right .list .slickRightBox .LswiperBtn > div{
  width: 5em;
	height: 5em;
	background-color: #ffffff;
	border: solid 1px #e8e8e8;
}
#index-body .init-2 .right .top .link{
  color: #222;
}
#index-body .init-2 .right .top .link:hover{
  color: var(--color);
}
#index-body .init-3{
   background-image: url("../images/init-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
#index-body .init-3 .ui.container {
  max-width: 1280px;
}
#index-body .init-3 .text {
  line-height: 1.8;
}
#index-body .init-3 .number-Plus {
  padding: 0 5%;
}
#index-body .init-3 .number-Plus span.h2 {
  color: var(--color);
}
#index-body .init-3 .number-Plus .line {
  height: 60px;
  width: 1px;
  background-color: #9b9b9b;
  transform: rotate(5deg);
  margin-top: 5px;
}
#index-body .init-3 .play-btn i{
  border: none;
}
#index-body .init-3 .play-btn{
  background-color: rgba(51,51,51,.5)
}
#index-body .init-3 .more{
  color:#222;
}
#index-body .init-3 .more:hover{
  color: #fff;
}
#index-body .init-4 {
  background-color: #f8f8f8;
}
#index-body .init-4 .top .right{
  width: 50%;
}
#index-body .init-4 .content .item{
  width: 204px;
}
#index-body .init-4 .content .item .iconBox{
  width: 204px;
	height: 204px;
	border: solid 1px rgba(51, 51, 51,.3);
  border-radius: 50%;
  margin: auto;
  position: relative;
}
#index-body .init-4 .content .item i{
  font-size: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40%;

}
#index-body .init-4 .bottom{
  border-top: 1px solid #c6c6c6;
  color: #222;
}
#index-body .init-4 .bottom p{
  transition: all .3s linear;
  cursor: pointer;
}
#index-body .init-4 .bottom p:hover{
  color: var(--color);
}


/*#index-body .init-4 li span.h6 em {
  padding: 0 0.7em;
  background-color: #3d3d3d;
  color: white;
}
#index-body .init-4 li .color a.flex {
  background-color: #9a9a9a;
  color: white;
  transition: 0.5s;
}
#index-body .init-4 li .color a.flex:hover {
  background-color: var(--color);
}
#index-body .init-4 li .text {
  line-height: 2;
  color: #222;
}*/
#index-body .init-5 .slickBtn.pos div.prev {
  margin-right: -0.5%;
}
#index-body .init-5 .slickBtn.pos div.next {
  margin-left: -0.5%;
}
#index-body .init-5 .list .slick-track {
  display: flex;
}
#index-body .init-5 .list .slick-track .slick-slide {
  height: auto;
}
#index-body .init-5 .list .slick-track .slick-slide > div,
#index-body .init-5 .list .slick-track .slick-slide li {
  height: 100%;
}
#index-body .init-5 .box {
  padding-left: 17%;
  padding-right: 17%;
  color: white;
  height: 100%;
}
#index-body .init-5 .box span.h3 {
  max-width: 790px;
  margin: 0 auto;
  line-height: 50/36;
}
#index-body .init-5 .box time {
  line-height: 1;
}
#index-body .init-5 .box .text {
  color: inherit;
}
#index-body .init-5 .box .text p{
   display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index-body .init-5 .box .more {
  border-color: rgba(255, 255, 255, 0.5);
}
#index-body .init-5 .box .more:hover {
  border-color: var(--color);
}
#footer {
  background-color: #1f1f1f;
  background-image: url("../images/footer-bg.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 609/1920*100%;
  color: white;
}
#footer .left span.h6 {
  line-height: 1;
}
#footer .left .info {
  line-height: 1.7;
  max-width: 440px;
}
#footer .left #ewm {
  max-width: 150px;
  border: 5px solid white;
}
#footer .left .share {
  max-width: 150px;
}
#footer .left .nav {
  /*max-width: 490px;*/
  width: 80%;
}
#footer .left .nav ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.2em;
  row-gap: 1.5em;
}
#footer .left .nav ul li {
  border-bottom: 1px solid transparent;
}
#footer .left .nav ul li:hover {
  border-color: white;
}
#footer .right .form label {
  border-color: rgba(255, 255, 255, 0.5);
}
#footer .right .form label span {
  border-color: rgba(255, 255, 255, 0.2);
}
#footer .right .form label textarea {
  border-color: rgba(255, 255, 255, 0.2);
}
#footer .right .coy svg {
  max-height: 1.625em;
  width: auto;
  fill: white;
  transition: 0.5s;
}
#footer .right .coy svg:hover {
  fill: var(--color);
}
.form label {
  padding: 0.5em;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.form label span {
  width: 10em;
  padding: 0 0.5em;
  height: 40/16em;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.form label input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1em;
}
.form label textarea {
  width: 100%;
  height: 10.375em;
  background-color: transparent;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5em;
  padding-right: 3.5em;
  margin-top: 0.5em;
}
.form label button {
  font-size: 1.5em;
  width: 2em;
  height: 2em;
  border: none;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
  position: absolute;
  right: 0.33em;
  bottom: 0.33em;
  transition: 0.5s;
}
.form label button:hover {
  background-color: white;
  color: var(--color);
}

@media screen and (max-width: 1800px){
  #index-body .init-2 .right .list .slickRightBox .swiper-pagination{
    width: 60%;
  }
}
@media screen and (max-width: 1700px) {
  #index-body .init-1 .bottom ul li .content {
    width: 350px;
  }
  #index-body .init-2 .left .content {
    width: 40%;
  }
  #index-body .init-5 .slickBtn.pos div.prev {
    left: 0;
  }
  #index-body .init-5 .slickBtn.pos div.next {
    left: auto;
    right: 0;
  }
  /*#index-body .init-2 .right .list .slickRightBox .swiper-pagination{
    max-width: 660px;
  }*/
  .slickBtn {
    font-size: 30px;
  }
  #index-body .init-2 .left .swiper ul li a{
    width: 80%;
  }
}
@media screen and (max-width: 1450px) {
  #index-body .init-2 .left .content{
    width: 55%;
    height: 75%;
  }
    .font-60{
      font-size: 40px;
    }
  #header .nav .h-search {
    margin: 0 25px;
  }
  #index-body .init-1 .bottom ul li:nth-child(5) .content{
    bottom:-85%;
    right: 100%;
  }
  #index-body .init-4 .content .item i{
    right: -20%;
  }
  #index-body .init-2 .right .list .slickRightBox .LswiperBtn>div{
    width: 4em;
    height: 4em;
  }
  #index-body .init-2 .right .list .slickRightBox .LswiperBtn{
    bottom: .5em;
  }
}
@media screen and (max-width: 1250px) {
  #banner{
    padding-top: 0;
  }
  #index-body .init-1 .bottom ul li .content {
    width: 300px;
  }
  #index-body .init-2 .right {
    width: 60%;
  }
  #index-body .init-2 .left {
    width: 40%;
  }
  #index-body .init-1 .bottom ul li .content{
    padding: 20px;
  }
  #index-body .init-2 .right .top{
    flex-wrap: wrap;
  }
  #index-body .init-2 .right .list .slickRightBox .swiper-pagination{
    width: 60%;
  }
  .slickBtn {
    font-size: 20px;
  }
  #footer .box .left .slide {
    width: 100%;
  }
  #footer .box .left .slide:nth-child(2){
    padding-top: 15px;
  }
  #footer .left .share{
    display: none;
  }
  #footer .box .left .slide:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .init-2 .right .top span.h2{
    margin-left: 0;
  }
  #index-body .init-1 .bottom {
    display: none;
  }
  #index-body .init-2 .right {
    width: 100%;
  }
  #index-body .init-2 .left {
    display: none;
  }
  #index-body .init-2 {
    padding: 50px 0;
  }
  #index-body .init-2 .right .list {
    width: 100%;
    margin-left: 0;
  }
  #index-body .init-3 .number-Plus .line {
    display: none;
  }
  #index-body .init-4 .content .item{
    width: 150px;
  }
  #index-body .init-4 .content .item .iconBox{
    width: 150px;
    height: 150px;
  }
  #index-body .init-4 .content .item i {
    right: -10%;
  }
  #index-body .init-4{
    display: none;
  }
}
@media screen and (max-width: 500px) {
  #banner li .content .more {
    display: none;
  }
  #index-body .init-2 .list li .text {
    margin-bottom: 0;
  }
  #index-body .init-2 .list li a.more {
    display: none;
  }
  #index-body .init-3 .number-Plus ul {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  #index-body .init-3 .number-Plus ul li {
    width: 50%;
  }
  #index-body .init-5 .box {
    padding: 5%;
  }
  #index-body .init-5 .slickBtn {
    display: none;
  }
}
.inner-banner {
  color: white;
}
.inner-banner a {
  transition: 0.5s;
}
.inner-banner a:hover {
  color: var(--color);
}
.inner-page .optionsNav a:before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  flex-shrink: 0;
  margin-right: 0.5em;
  background-color: black;
  display: inline-block;
  margin-bottom: 0.1em;
  transition: 0.5s;
}
.inner-page .optionsNav a:hover:before {
  background-color: var(--color);
}
.inner-page .m-page > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 2em;
  height: 2em;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background-color: var(--color);
  color: white;
}
.industries-page .content {
  max-width: 1200px;
  margin: 0 auto;
}
.industries-page .list .img {
  position: relative;
  color: white;
}
.industries-page .list .img span {
  padding: 0 5%;
}
.industries-page .list .img:before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f3f2f1;
}
.industries-page .list .text {
  margin-left: auto;
  padding: 6%;
  background-color: #f3f2f1;
}
.color-page .color-1 .content {
  max-width: 1200px;
  margin: 0 auto;
}
.color-page .color-2 .top form {
  width: 360px;
  margin-left: 1em;
  height: 48/16em;
  border: 1px solid #ebebeb;
}
.color-page .color-2 .top form input {
  width: 100%;
  border: none;
  padding: 0 1.5em;
}
.color-page .color-2 .top form input::placeholder {
  color: #999;
}
.color-page .color-2 .top form button {
  width: 48/16em;
  border: none;
  background-color: transparent;
  transition: 0.5s;
}
.color-page .color-2 .top form button:hover {
  color: white;
  background-color: var(--color);
}
.color-page .color-2 hr {
  margin: 0;
}
.color-page .color-2 .list li {
  padding: 2%;
}
.color-page .color-2 .list li:nth-child(even) {
  box-shadow: 0 0 10vh rgba(0, 0, 0, 0.05);
}
.color-page .color-2 .list li a.img-box {
  width: 25%;
}
.color-page .color-2 .list li span.h6 {
  width: 45%;
}
.color-page .color-2 .list li span.h6 em {
  padding: 0 0.8em;
  color: white;
  background-color: #3d3d3d;
}
.manufacturing-page .text {
  line-height: 1.8;
}
.manufacturing-page .manufacturing-3 .text {
  max-width: 1000px;
  margin: 0 auto;
}
.manufacturing-page .manufacturing-3 .box {
  padding: 5%;
  background-color: #f2f2f2;
}
.about-page .about-2 {
  padding-bottom: 20%;
}
.about-page .about-2 .box {
  max-width: 800px;
}
.about-page .about-2 .text {
  line-height: 1.8;
}
.about-page .about-3 {
  margin-top: -15%;
}
.about-page .about-3 .box {
  padding: 3%;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.about-page .about-3 .box .text {
  line-height: 2;
}
.about-page .about-3 .box .text p {
  margin-top: 1em;
}
.about-page .about-3 .box .text p:first-child {
  margin-top: 0;
}
.about-page .about-4 li {
  max-width: 420px;
  margin: 0 auto;
}
.about-page .about-5 .left .text {
  line-height: 1.8;
  opacity: 0.7;
}
.about-page .about-5 .left .list {
  padding: 0 10%;
}
.about-page .about-5 .left .list .slickBtn {
  font-size: 20px;
}
.about-page .about-5 .left .list .slickBtn .prev {
  left: 0;
}
.about-page .about-5 .left .list .slickBtn .next {
  left: auto;
  right: 0;
}
.about-page .about-5 .right {
  padding: 0 13%;
}
.about-page .about-6 .box {
  padding: 3%;
  background-color: #f2f2f2;
}
.about-page .about-6 .box li {
  margin-top: 2%;
}
.about-page .about-6 .box li:first-child {
  margin-top: 0;
}
.about-page .about-6 .box li span.h6 em {
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  margin-right: 0.5em;
  background-color: white;
}
.history-page .history-3 .list {
  position: relative;
}
.history-page .history-3 .list:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #eee;
}
.history-page .history-3 li {
  width: 48%;
  text-align: right;
  position: relative;
}
.history-page .history-3 li:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid black;
  background-color: white;
  position: absolute;
  top: 10px;
  transform: translateX(-25%);
  left: 104%;
  transition: 0.5s;
}
.history-page .history-3 li span.h3 {
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.history-page .history-3 li:nth-child(even) {
  margin-left: auto;
  text-align: left;
}
.history-page .history-3 li:nth-child(even):before {
  left: -4.4%;
}
.history-page .history-3 li:hover:before {
  background-color: black;
}
.news-page .ui.container {
  max-width: 1000px;
}
.news-page .news-2 ul li {
  margin-top: 10px;
  border-bottom: 1px solid #eee;
  padding: 3%;
  transition: 0.5s;
}
.news-page .news-2 ul li span.tag:before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  background-color: black;
  flex-shrink: 0;
  margin-right: 0.5em;
}
.news-page .news-2 ul li:hover {
  background-color: #dadada;
}
.newdet-page .ui.container {
  max-width: 1000px;
}
.contact-page form input,
.contact-page form textarea {
  background-color: #f2f2f2;
  width: 100%;
  border: none;
  padding: 1em;
  margin-top: 0.5em;
}
.contact-page form button {
  border: none;
}
.contact-page .contact-2 {
  background-color: #f2f2f2;
}
.contact-page .contact-2 .text {
  max-width: 700px;
  margin: 0 auto;
}
.faq-page .ui.container {
  max-width: 1000px;
}
.faq-page .list ul li {
  padding: 3%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.faq-page .list ul li span.h3 i {
  cursor: pointer;
  cursor: hand;
}
.faq-page .list ul li span.h3 i.active {
  transform: rotate(180deg);
}
.faq-page .list ul li .text {
  display: none;
  padding: 3%;
  background-color: #f3f3f3;
}
@media screen and (max-width: 1000px) {
  .about-page .about-5 .right {
    display: none;
  }
  .about-page .about-5 .left .text {
    margin: 2em 0;
  }
  .about-page .about-5 .left .list .slickBtn {
    font-size: 15px;
  }
  .color-page .color-2 .list li {
    flex-wrap: wrap;
  }
  .color-page .color-2 .list li a.img-box {
    width: 100%;
  }
  .color-page .color-2 .list li span.h6 {
    width: 100%;
    margin: 1.5em 0;
  }
}
@media screen and (max-width: 700px) {
  #index-body .init-2 .right .list .slickRightBox .swiper-pagination{
    margin-left: 0;
  }
  #index-body .init-2 .right .list .slickRightBox .LswiperBtn>div{
    width: 3em;
    height: 3em;
  }
  #index-body .init-2 .right .list .slickRightBox .LswiperBtn{
    bottom: 1em;
  }
  .font-36 {
    font-size: 20px;
  }
  .font-40 {
    font-size: 22px;
  }
  .font-48 {
    font-size: 23px;
  }
  .inner-banner {
    padding: 12% 0;
  }
  .optionsNav {
    flex-wrap: wrap;
  }
  .news-page .news-2 ul li {
    flex-wrap: wrap;
  }
  .history-page .history-3 li {
    width: 95%;
    margin-left: auto;
    text-align: left;
  }
  .history-page .history-3 li span.h3 {
    font-size: 18px;
  }
  .history-page .history-3 li:before {
    top: 5px;
    left: -5% !important;
    transform: translateX(-50%);
  }
  .history-page .history-3 .list:before {
    left: 0;
  }
  .about-page .about-6 .box li {
    flex-wrap: wrap;
  }
  .about-page .about-6 .box li .left {
    padding-right: 0;
    width: 100%;
  }
  .about-page .about-6 .box li .right {
    padding-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  .about-page .about-6 .box {
    padding: 6% 3%;
  }
  .industries-page .list .img .img-box,
  .industries-page .list .text {
    width: 100%;
  }
  .font-30 {
    font-size: 18px;
  }
}

#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: #6076f1;
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: #6076f1;
}
#pups_from ul li textarea {
  height: 80px;
}
#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: #6076f1;
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from ul li:last-child {
  margin-bottom: 0;
}

.right_nav_list {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 10;
}
.right_nav_list ul li {
  margin-top: 2px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: #fff;
  background: var(--color);
  border: 1px solid #fff;
}
.right_nav_list ul li .iImg {
  width: 24px;
  height: 32px;
}
.right_nav_list ul li .text {
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
}
.right_nav_list ul li .cont {
  position: absolute;
  left: -150px;
  top: 0;
  width: 150px;
  min-height: 100%;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  overflow: hidden;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.right_nav_list ul li .cont #ewm {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #ccc;
}
.right_nav_list ul li:hover {
  background-color: #000;
}
.right_nav_list ul li:hover .cont {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
.right_nav_list ul li i{
  color: #fff;
}
@media (max-width: 500px) {
  .right_nav_list {
    right: 5px;
    bottom: 150px;
  }
  .right_nav_list ul li {
    width: 38px;
    height: 38px;
    margin-top: 5px;
  }
  .right_nav_list ul li .more_cont {
    font-size: 16px;
  }
  .right_nav_list ul li .iImg {
    width: 16px;
    height: 24px;
  }
}
.product-page .init-2{
  background-color: #f8f8f8;
}
.product-page .init-2 .container .titleC {
    position: relative;
    z-index: 2;
}
.product-page .init-2 .container .titleC .right {
    margin-left: auto;
}
.product-page .init-2 .container .titleC .right .catList {
    font-weight: 300;
    cursor: pointer;
    position: relative;
}
.product-page .init-2 .container .titleC .right .catList .cont {
    position: relative;
    background-color: #f2f2f2;
    padding: 10px 40px 10px 14px;
    min-width: 200px;
}
.product-page .init-2 .container .titleC .right .catList .cont i {
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
    font-size: 16px;
    position: absolute;
    top: 18px;
    right: 10px;
}
.product-page .init-2 .container .titleC .right .catList ul {
    width: 100%;
    background-color: #f2f2f2;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #e9e9e9;
}
.product-page .init-2 .container .titleC .right .catList ul li a {
    display: block;
    padding: 6px 10px;
    border-bottom: 1px solid #e9e9e9;
}
.product-page .init-2 .container .titleC .right .catList ul li a:hover {
    background-color: var(--color);
    color: #fff;
}
.product-page .init-2 .container .catDes {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 4px;
    font-size: 16px;
    line-height: 30px;
}
.product-page .init-2 .container .productList ul {
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}
.product-page .init-2 .container .productList ul li .box {
    padding: 30px 14px 30px;
}
.product-page .init-2 .container .productList ul li .box .img {
    width: 100%;
    display: block;
    margin: auto;
    position: relative;
}
.product-page .init-2 .container .productList ul li .box .img img {
    width: 100%;
}
.product-page .init-2 .container .productList ul li .box .title {
    display: block;
    margin-top: 20px;
    transition: all .3s linear;
}
.product-page .init-2 .container .productList ul li .box .title:hover{
  color: var(--color);
}
.prodet-page .prodet-1 .box .left,.prodet-page .prodet-1 .box .right {
  width: 50%;
}
.prodet-page .prodet-1 .box .left .big-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.prodet-page .prodet-1 .box .left .big {
  width: 82%;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #fff;
  background-color: #ff9015;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-prev {
  left: 20px;
}
.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-next {
  right: 40px;
}
.prodet-page .prodet-1 .box .left .small {
  width: 18%;
}
.prodet-page .prodet-1 .box .left .small ul {
  margin: -5px;
}
.prodet-page .prodet-1 .box .left .small ul li {
  padding: 8px;
}
.prodet-page .prodet-1 .box .left .small .slick-arrow{
  width: 84%;
  border: none;
  background-color: #ff9015;
  /*margin: auto;*/
  margin-left: 8px;
}
.prodet-page .prodet-1 .box .left .small .slick-arrow i {
  color: #fff;
}
.prodet-page .prodet-1 .box .right .content bt{
   padding-bottom: 20px;
   color: #ff9015;
}
.prodet-page .prodet-1 .box .right .content .text {
  line-height: 2;
  max-height: 403px;
  padding-right: 20px;
  margin-top: 43px;
  overflow: auto;
}
.prodet-page .prodet-1 .box .right .content a.msg1 {
  color:#fff;
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  text-align: center;
}
.prodet-page .prodet-1 .box .right .content a.msg1:hover {
  color: white;
  background-color: #000000;
}
.prodet-page .prodet-1 .box .right .content .social-links h4,
.prodet-page .prodet-1 .box .right .content .social-links ul {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-2 {
  padding-top: 100px;
}
.prodet-page .prodet-2 form input,
.prodet-page .prodet-2 form textarea {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  margin-bottom: 17px;
  /*font-style: italic;*/
}
.prodet-page .prodet-2 form textarea {
  height: 170px;
}
.prodet-page .prodet-2 form button {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 400;
   
  color: #FFFFFF;
  background-color: #ff9015;
  border: none;
  padding: 10px 45px;
  text-transform: uppercase;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.prodet-page .prodet-2 form button:hover {
  background-color: #000000;
}
.prodet-page .prodet-2 .options ul {
  position: relative;
}
.prodet-page .prodet-2 .options ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #f2f2f2;
}
.prodet-page .prodet-2 .options ul li {
  width: auto;
  position: relative;
}
.prodet-page .prodet-2 .options ul li + li {
  /*margin-left: 130px;*/
}
.prodet-page .prodet-2 .options ul li a {
  /*padding: 15px 40px;*/
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 2;
  text-transform: uppercase;
}
.prodet-page .prodet-2 .options ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  display: block;
  height: 3px;
  width: 0;
  background-color: #ff9015;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  color: #00aba7;
}
.prodet-page .prodet-2 .options ul li.active a::after {
  width: 100%;
  max-width: 280px;
}
.prodet-page .prodet-2 .ret ul li .content {
  padding-left: 90px;
  padding-right: 90px;
}
.prodet-page .prodet-2 .ret ul li .content.form {
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.prodet-page .prodet-3 {
  padding-top: 100px;
}
.prodet-page .prodet-3 ul li .img img{
  width: 100%;
  border: 1px solid #dbdbdb;
}
.prodet-page .prodet-3 .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #ff9015;
}
.prodet-page .prodet-3 .slick-arrow.slick-prev {
  left: -50px;
}
.prodet-page .prodet-3 .slick-arrow.slick-next {
  right: -50px;
}
@media screen and (max-width: 1200px) {
  .prodet-page .prodet-1 .box .right .content h1 {
    margin: 0;
  }
  .prodet-page .prodet-1 .box .right .content a.msg1 {
    margin-top: 30px;
  }
  .prodet-page .prodet-2 .options ul li + li {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page {
    padding: 60px 0;
  }
  .prodet-page .prodet-1 .box .left {
    width: 100%;
  }
  .prodet-page .prodet-1 .box .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .prodet-page .prodet-2 {
    padding-top: 60px;
  }
  .prodet-page .prodet-3 {
    padding-top: 60px;
  }
  .prodet-page .prodet-2 .ret ul li .content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .prodet-page .prodet-2 .ret ul li .content.form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-1 .box .left .big-small {
    display: block;
  }
  .prodet-page .prodet-1 .box .left .big {
    width: 100%;
    padding: 0;
  }
  .prodet-page .prodet-1 .box .left .small {
    width: 100%;
    margin-top: 10px;
  }
  .prodet-page .prodet-2 form input,
  .prodet-page .prodet-2 form textarea {
    padding: 10px;
  }
  .prodet-page .prodet-2 .options ul li {
    width: 100%;
   }
   .faq-page .container .content ul li .title{
    font-size: 18px!important;
    line-height: 1.8!important;
  }
  .prodet-page .prodet-2 .options ul li + li {
    margin: 0;
  }
  .prodet-page .prodet-2 .ret ul li .content {
    padding-left: 0;
    padding-right: 0;
  }
  .prodet-page .prodet-2 .ret ul li .content.form {
    padding-left: 15px;
    padding-right: 15px;
  }
  .prodet-page .prodet-2 form textarea {
    height: 100px;
  }
}


.cus-page {
  padding: 6% 0;
}
.cus-page .tit {
  line-height: 1.2;
  max-width: 790px;
}
.cus-page .cus-1 .content {
  margin-top: 56px;
}
.cus-page .cus-1 .content .column {
  vertical-align: bottom;
}
.cus-page .cus-1 .content .left {
  padding-right: 7px;
}
.cus-page .cus-1 .content .left .text {
  /*padding-top: 180px;*/
  max-width: 700px;
}
.cus-page .cus-1 .content .right {
  padding-left: 7px;
}
.cus-page .cus-1 .content .right .text {
  padding: 0 0 100px 85px;
}
.cus-page .cus-1 .content .img {
  border-radius: 10px;
}
.cus-page .cus-1 .content .img img {
  width: 100%;
  border-radius: 10px;
}
.cus-page .cus-1 .content .text .con {
  line-height: 44px;
  color: #4B4B4B;
  margin-top: 24px;
}
.cus-page .cus-2 {
  padding-top: 6%;
}
.cus-page .cus-2 .content {
  margin-top: 67px;
}
.cus-page .cus-2 .content .item {
  background: #fff;
  border-radius: 15px;
  padding-bottom: 150px;
  /*min-height: 400px;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cus-page .cus-2 .content .item .tit {
  padding: 12px 50px;
  border-bottom: 1px solid #e1e5e5;
  height: 150px;
    display: flex;
    align-items: center;
}
.cus-page .cus-2 .content .item .con {
  padding: 45px 50px;
  max-width: 770px;
}
.cus-page .cus-2 .content .item .con .des {
  font-size: 30px;
  line-height: 1.6;
}
.cus-page .cus-2 .content .item .icon {
  display: block;
  text-align: left;
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.cus-page .cus-2 .content .item .icon img {
  width: 80px;
  height: 80px;
}
.cus-page .cus-2 .content .item:hover {
  background: #f4f9ff;
}
.cus-page .cus-3 {
  padding-top: 6%;
}
.cus-page .cus-3 .header {
  margin-top: 106px;
}
.cus-page .cus-3 .header .con {
  font-size: 18px;
  line-height: 1.6;
  color: #4B4B4B;
  max-width: 820px;
}
.cus-page .cus-3 .content {
  margin-top: 72px;
}
.cus-page .cus-3 .content ul li {
  width: 21.84%;
}
.cus-page .cus-3 .content ul li .ig {
  width: 100%;
  height: 760px;
  position: relative;
}
.cus-page .cus-3 .content ul li .ig .img-box {
  height: 100%;
}
.cus-page .cus-3 .content ul li .ig .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
.cus-page .cus-3 .content ul li .ig::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(30%, rgba(0, 0, 0, 0.6)), color-stop(60%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
  border-radius: 30px;
}
.cus-page .cus-3 .content ul li .ig .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  color: #fff;
  padding: 40px 60px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
}
.cus-page .cus-3 .content ul li .ig .text .tit {
  margin-bottom: 25px;
}
.cus-page .cus-3 .content ul li .ig .text .con {
  line-height: 1.5;
  margin-bottom: 30px;
}
.cus-page .cus-3 .content ul li.active {
  width: 78.16%;
}
.cus-page .cus-3 .content ul li.active .ig .text {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.cus-page .cus-4 {
  padding-top: 6%;
}
.cus-page .cus-4 .content {
  margin-top: 66px;
}
.cus-page .cus-4 .content .left {
  padding-right: 10px;
  width: 50%;
  height: auto;
}
.cus-page .cus-4 .content .left .img-box {
  border-radius: 10px;
  height: 100%;
}
.cus-page .cus-4 .content .left .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cus-page .cus-4 .content .right {
  padding-left: 10px;
  height: auto;
  width: 50%;
}
.cus-page .cus-4 .content .right .text {
  height: 100%;
  background: #fff;
  border-radius: 10px;
}
.cus-page .cus-4 .content .right .text .tit {
  padding: 43px 50px;
  border-bottom: 1px solid #e1e5e5;
  font-size: 27px;
  line-height: 1.4;
}
.cus-page .cus-4 .content .right .text .con {
  padding: 38px 50px;
  color: #4B4B4B;
  line-height: 1.6;
}
.cus-page .cus-4 .content .right .text .btn {
  padding: 0 50px 50px;
}
.cus-page .cus-4 .content .right .text .btn .more {
  text-transform: capitalize;
  width: 160px;
  height: 50px;
  line-height: 50px;
}
.cus-page .cus-4 .content .right .text:hover {
  background: #f4f9ff;
}
.cus-page .cus-4 .content ul li {
  margin-bottom: 20px;
}
.cus-page .cus-4 .content ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cus-page .cus-4 .content ul li:nth-child(even) .left {
  padding: 0 0 0 10px;
}
.cus-page .cus-4 .content ul li:nth-child(even) .right {
  padding: 0 10px 0 0;
}
.cus-page .cus-4 .content ul li:last-child {
  margin-bottom: 0;
}
.cus-page .cus-5 {
  padding-top: 6%;
}
.cus-page .cus-5 .header {
  margin-top: 93px;
}
.cus-page .cus-5 .header .tit {
  max-width: 500px;
}
.cus-page .cus-5 .header .con {
  color: #4B4B4B;
  line-height: 1.6;
  max-width: 800px;
}
.cus-page .cus-5 .content {
  margin-top: 74px;
  position: relative;
}
.cus-page .cus-5 .content .img-box {
  border-radius: 10px;
}
.cus-page .cus-5 .content .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  color: #fff;
  padding: 20px 56px;
}
.cus-page .cus-5 .content .text .con {
  font-size: 16px;
  line-height: 30px;
  margin: 25px 0 30px;
  max-width: 790px;
}
.cus-page .cus-6 {
  padding-top: 6%;
}
.cus-page .cus-6 .i-title {
  max-width: 936px;
}
.cus-page .cus-6 .content {
  margin-top: 66px;
}
.cus-page .cus-6 .content .item {
  background: #fff;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  padding: 60px 80px;
  text-align: center;
}
.cus-page .cus-6 .content .item .tit {
  font-size: 28px;
  line-height: 1.3;
  margin-top: 50px;
}
.cus-page .cus-6 .content .item .tit em {
  color: #0b183e;
}
.cus-page .cus-7 {
  padding-top: 6%;
}
.cus-page .cus-7 .header {
  margin-top: 93px;
}
.cus-page .cus-7 .header .con {
  color: #4B4B4B;
  max-width: 700px;
}
.cus-page .cus-7 .content {
  margin-top: 66px;
}
.cus-page .cus-8 {
  padding-top: 6%;
}
.cus-page .cus-8 .tab {
  margin-top: 66px;
}
.cus-page .cus-8 .tab ul li {
  display: inline-block;
  line-height: 56px;
  border-radius: 56px;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  background: #fff;
  cursor: pointer;
  margin-right: 20px;
  padding: 0 33px;
}
.cus-page .cus-8 .tab ul li.active {
  background: #0b183e;
  color: #fff;
}
.cus-page .cus-8 .content {
  margin-top: 30px;
}
.cus-page .cus-8 .content .left {
  width: 50%;
  padding-right: 10px;
  height: auto;
}
.cus-page .cus-8 .content .left .img-box {
  border-radius: 10px;
  height: 100%;
}
.cus-page .cus-8 .content .left .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cus-page .cus-8 .content .right {
  padding-left: 10px;
  width: 50%;
  height: auto;
}
.cus-page .cus-8 .content .right .text {
  height: 100%;
  background: #fff;
  border-radius: 10px;
}
.cus-page .cus-8 .content .right .text .tit {
  font-size: 27px;
  line-height: 1.4;
  padding: 43px 50px 39px;
  border-bottom: 1px solid #e1e5e5;
}
.cus-page .cus-8 .content .right .text .con {
  line-height: 1.6;
  padding: 35px 50px;
  color: #4B4B4B;
}
.cus-page .cus-8 .content ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cus-page .cus-8 .content ul li:nth-child(even) .left {
  padding: 0 0 0 10px;
}
.cus-page .cus-8 .content ul li:nth-child(even) .right {
  padding: 0 10px 0 0;
}
.cus-page .cus-9 {
  padding-top: 6%;
}
.cus-page .cus-9 .content {
  margin-top: 66px;
}
.cus-page .cus-9 .content .img-box {
  border-radius: 10px;
}
.cus-page .cus-9 .content .img-box img {
  width: 100%;
}
.cus-page .cus-9 .content .text {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  /*position: absolute;*/
  /*left: 0;
  right: 0;*/
  /*top: 50%;*/
  font-weight: 600;
  /*-webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);*/
  text-align: center;
  z-index: 2;
  margin-top: 10px;
}
.cus-page .cus-9 .content .text span {
  width: 100%;
  display: inline-block;
  position: relative;
  color:#000;
}
/*.cus-page .cus-9 .content .text::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 1px;
  right: 50%;
  margin-right: 50px;
  top: 50%;
  background: #fff;
  z-index: 3;
  filter: alpha(opacity=50);
  -moz-opacity: .5;
  -khtml-opacity: .5;
  opacity: .5;
}
.cus-page .cus-9 .content .text::after {
  content: '';
  position: absolute;
  width: 110px;
  height: 1px;
  left: 50%;
  margin-left: 50px;
  top: 50%;
  background: #fff;
  z-index: 3;
  filter: alpha(opacity=50);
  -moz-opacity: .5;
  -khtml-opacity: .5;
  opacity: .5;
}*/
.cus-page .cus-9 .content .img-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(30%, rgba(0, 0, 0, 0.3)), color-stop(60%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 1440px){
  
  .cus-page .cus-1 .content .left .text {
    padding-top: 100px;
  }
  .cus-page .cus-1 .content .right .text {
    padding: 0 0 60px 40px;
  }
  .cus-page .cus-2 .content .item .tit {
    font-size: 30px;
  }
  .cus-page .cus-3 .header .con {
    max-width: 700px;
  }
  .cus-page .cus-5 .header .con {
    max-width: 660px;
  }
  .cus-page .cus-7 .header .con {
    max-width: 620px;
  }
}
@media screen and (max-width: 1230px){
  
  .cus-page .cus-1 .content .text .con {
    font-size: 18px;
  }
  .cus-page .cus-2 .content .item .tit {
    padding: 30px;
    font-size: 26px;
  }
  .cus-page .cus-2 .content .item .con {
    padding: 30px;
  }
  .cus-page .cus-3 .header .con {
    max-width: 560px;
  }
  .cus-page .cus-3 .content ul li .ig {
    height: 690px;
  }
  .cus-page .cus-4 .content .right .text .tit {
    padding: 30px;
    font-size: 24px;
  }
  .cus-page .cus-4 .content .right .text .con {
    padding: 30px;
  }
  .cus-page .cus-5 .header .con {
    max-width: 469px;
  }
  .cus-page .cus-6 .content .item {
    padding: 40px 36px;
  }
  .cus-page .cus-7 .header .con {
    max-width: 490px;
  }
  .cus-page .cus-8 .content .right .text .tit {
    padding: 30px 30px 26px;
    font-size: 24px;
  }
  .cus-page .cus-8 .content .right .text .con {
    padding: 30px;
  }
}
@media screen and (max-width: 1000px){
  
  .cus-page .cus-1 .content {
    margin-top: 28px;
  }
  .cus-page .cus-1 .content .left {
    width: 100%;
    padding: 0;
  }
  .cus-page .cus-1 .content .left .text {
    padding-top: 30px;
  }
  .cus-page .cus-1 .content .right {
    width: 100%;
  }
  .cus-page .cus-1 .content .right .text {
    padding: 30px 0;
  }
  .cus-page .cus-2 .content {
    margin-top: 30px;
  }
  .cus-page .cus-3 .header {
    margin-top: 30px;
  }
  .cus-page .cus-3 .header .con {
    max-width: 100%;
    margin-top: 20px;
  }
  .cus-page .cus-3 .content {
    margin-top: 30px;
  }
  .cus-page .cus-3 .content ul li .ig .text {
    padding: 20px 30px;
  }
  .cus-page .cus-4 .content {
    margin-top: 30px;
  }
  .cus-page .cus-4 .content ul li .left {
    width: 100%;
    padding: 0 !important;
  }
  .cus-page .cus-4 .content ul li .right {
    width: 100%;
    padding: 0 !important;
  }
  .cus-page .cus-5 .header {
    margin-top: 30px;
  }
  .cus-page .cus-5 .header .con {
    max-width: 100%;
    margin-top: 20px;
  }
  .cus-page .cus-5 .content {
    margin-top: 30px;
  }
  .cus-page .cus-5 .content .text {
    padding: 20px;
  }
  .cus-page .cus-5 .content .text .con {
    margin-bottom: 0;
  }
  .cus-page .cus-6 .content {
    margin-top: 30px;
  }
  .cus-page .cus-7 .header {
    margin-top: 30px;
  }
  .cus-page .cus-7 .header .con {
    max-width: 100%;
    margin-top: 20px;
  }
  .cus-page .cus-7 .content {
    margin-top: 30px;
  }
  .cus-page .cus-8 .tab {
    margin-top: 30px;
  }
  .cus-page .cus-8 .content ul li .left {
    width: 100%;
    padding: 0 !important;
  }
  .cus-page .cus-8 .content ul li .right {
    width: 100%;
    padding: 0 !important;
  }
  .cus-page .cus-9 .content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px){
  
  .cus-page .cus-3 .content ul li .ig {
    height: 580px;
  }
  .cus-page .cus-3 .content ul li .ig .text {
    padding: 20px 15px;
  }
  .cus-page .cus-3 .content ul li .ig .text .tit {
    margin-bottom: 12px;
  }
  .cus-page .cus-3 .content ul li .ig .text .con {
    margin-bottom: 0;
  }
  .cus-page .cus-5 .content .img-box img{
    min-height: 360px;
  }
  .cus-page .cus-8 .tab ul li {
    font-size: 18px;
    padding: 0 20px;
  }
  .cus-page .cus-9 .content .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px){
  #banner li .content .h2{
    padding-top: 20px;
  }
  #banner li .content .regularText {
    line-height: 1.1;
  }
  .pt-35 {
    padding-top: 14px;
  }
  /*.cus-page .tit {
    font-size: 24px;
    line-height: 44px;
  }*/
  .cus-page .cus-1 .content .text .con {
    font-size: 16px;
    line-height: 30px;
  }
  .cus-page .cus-2 .content .item {
    min-height: auto;
    padding-bottom: 100px;
  }
  .cus-page .cus-2 .content .item .tit {
    padding: 15px;
    font-size: 22px;
    line-height: 40px;
  }
  .cus-page .cus-2 .content .item .con {
    padding: 15px;
  }
  .cus-page .cus-2 .content .item .con .des {
    font-size: 16px;
    line-height: 2;
  }
  .cus-page .cus-2 .content .item .icon {
    bottom: 20px;
    left: 15px;
  }
  .cus-page .cus-3 .header .con {
    font-size: 16px;
    line-height: 1.8;
  }
  .cus-page .cus-3 .content ul {
    display: block;
  }
  .cus-page .cus-3 .content ul li {
    width: 100%;
  }
  .cus-page .cus-3 .content ul li .ig {
    height: 520px;
  }
  .cus-page .cus-3 .content ul li .ig .text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: 12px 6px;
  }
  .cus-page .cus-3 .content ul li .ig .text .tit {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .cus-page .cus-3 .content ul li .ig .text .con {
    font-size: 14px;
    line-height: 2;
  }
  .cus-page .cus-3 .content ul li .ig::after {
    height: 100%;
  }
  .cus-page .cus-3 .content ul li.active {
    width: 100%;
  }
  .cus-page .cus-4 .content .right .text .tit {
    padding: 15px;
    font-size: 20px;
  }
  .cus-page .cus-4 .content .right .text .con {
    padding: 15px;
    line-height: 1.8;
  }
  .cus-page .cus-4 .content .right .text .btn {
    padding: 0 15px;
  }
  .cus-page .cus-5 .content .img-box img {
    min-height: 460px;
    object-fit: cover;
  }
  .cus-page .cus-6 .content {
    overflow: hidden;
  }
  .cus-page .cus-6 .content .item {
    padding: 20px 15px;
  }
  .cus-page .cus-6 .content .item .tit {
    margin-top: 12px;
    font-size: 20px;
  }
  .cus-page .cus-8 .tab ul li {
    font-size: 14px;
    padding: 0 15px;
    margin-right: 13px;
    height: 40px;
    line-height: 40px;
  }
  .cus-page .cus-8 .content .right .text .tit {
    padding: 15px;
    font-size: 20px;
    line-height: 1.5;
  }
  .cus-page .cus-8 .content .right .text .con {
    padding: 15px;
    font-size: 14px;
    line-height: 2;
  }
  .cus-page .cus-9 .content {
    margin-top: 20px;
  }
  .cus-page .cus-9 .content .text {
    font-size: 14px;
  }
  .cus-page .cus-5 .content .text .con{
    font-size: 14px;
    line-height: 2;
    margin: 12px 0 0px;
  }
}
.seoPublic .title{
  font-weight: 400;
  font-size: 48px;
  color: #1f1f1f;
}
@media screen and (max-width: 1700px){
  .seoPublic .title{
    font-size: 41px;
  }
}
@media screen and (max-width: 1450px){
  .seoPublic .title{
    font-size: 38px;
  }
}
@media screen and (max-width: 1250px){
  .seoPublic .title{
    font-size: 34px;
  }
}
@media screen and (max-width: 1000px){
  .seoPublic .title{
    font-size: 27px;
  }
}
@media screen and (max-width: 700px){
  .seoPublic .title{
    font-size: 24px;
  }
}

.service-page.manufacturing-4 .service-1 .text {
  max-width: 1600px;
  margin: 20px auto 0;
  text-align: left;
}
.service-page.manufacturing-4 .service-1 .list {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  height: 560px;
  padding: 15px;
}
.service-page.manufacturing-4 .service-1 .list:after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(white));
  background-image: -webkit-linear-gradient(bottom, transparent, white);
  background-image: -moz-linear-gradient(bottom, transparent, white);
  background-image: linear-gradient(to top, transparent, white);
  z-index: 2;
  top: 0;
}
.service-page.manufacturing-4 .service-1 .list .swiper {
  -webkit-transform: rotate3d(1, 0, 0, 15deg);
  -moz-transform: rotate3d(1, 0, 0, 15deg);
  transform: rotate3d(1, 0, 0, 15deg);
  width: 100%;
  height: 100%;
  overflow: unset;
}
.service-page.manufacturing-4 .service-1 .list ul {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  transition-timing-function: linear;
  flex-direction: row;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:20px;
}
.service-page.manufacturing-4 .service-1 .list ul li {
  width: 100%;
  margin: 0 !important
}
.service-page.manufacturing-4 .service-1 .list ul li a.img {
  height: 120px;
  padding: 5%;
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  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.manufacturing-4 .service-1 .list ul li a.img img {
  max-width: 100%;
}
.service-page.manufacturing-4 .service-2 .ui.container {
  width: auto;
  max-width: 1700px;
}
.service-page.manufacturing-4 .service-2 .box {
  height: 700px;
  position: relative;
  border-bottom-left-radius: 80px;
  overflow: hidden;
  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: 5%;
  flex-wrap: wrap;
}
.service-page.manufacturing-4 .service-2 .box .mask i {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page.manufacturing-4 .service-2 .box .mask i.active {
  opacity: 1;
}
.service-page.manufacturing-4 .service-2 .box .content {
  width: 660px;
  border: 1px solid #e5e5e5;
  padding: 4% 3%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background-color: white;
}
.service-page.manufacturing-4 .service-2 .box .content span.tag {
  display: block;
  color: #e60012;
  margin-bottom: .5em;
  font-weight: 500;
}
.service-page.manufacturing-4 .service-2 .box .content .text {
  margin: 1.5em 0;
}
.service-page.manufacturing-4 .service-2 .box .content .slickBtn {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
  -moz-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.service-page.manufacturing-4 .service-2 .box .content .slickBtn .btn{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  color: #565656;
  margin-left: 16px;
  cursor: pointer;
  justify-content: center;
}
.service-page.manufacturing-4 .service-2 .box .content .slickBtn .btn:hover{
  background: #eb630c;
  color: #fff;
}
.service-page.manufacturing-4 .service-2 .box .sPage{
  width: 100%;
  z-index: 2;
}
.service-page.manufacturing-4 .service-2 .box .sPage .swiper-pagination-bullet{
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 1;
}
.service-page.manufacturing-4 .service-2 .box .sPage .swiper-pagination-bullet::before{
  background: #fff;
  content: '';
  position: relative;
  display: block;
  width: 10px;
  border-radius: 50%;
  height: 10px;
  opacity: 1;
  padding: 0;
  
}
.service-page.manufacturing-4 .service-2 .box .sPage .swiper-pagination-bullet.swiper-pagination-bullet-active{
  border: 1px solid #eb630c !important;
}
.service-page.manufacturing-4 .service-2 .box .sPage .swiper-pagination-bullet-active::before{
  background: #eb630c;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide {
  padding: 106px 3%;
  border-bottom-left-radius: 80px;
  background-size: cover;
  position: relative;
  z-index: 1;
  color: white;
  overflow: hidden;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide .bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
}
/*.service-page.manufacturing-4 .service-3 .swiper .swiper-slide:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}*/
.service-page.manufacturing-4 .service-3 .list{
  margin-top: 50px;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide i {
  display: block;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide span.h6 {
  margin-top: 1.4em;
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 44px;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide span.h6_2{
  padding: 0 10px;
  max-width: 340px;
  margin: 1.4em auto 0;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide .text {
  color: inherit;
  margin-top: 1em;
  font-weight: 300;
  max-height: 9em;
  overflow: auto;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide .text::-webkit-scrollbar-thumb {
  background-color:black;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide .content {
  opacity: 0;
  -webkit-transition: .5s;
  position: relative;
  z-index: 2;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide .center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide:hover:before {
  background-color: #eb630c;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide:hover .bg{
  opacity: 1;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide:hover .content {
  opacity: 1;
}
.service-page.manufacturing-4 .service-3 .swiper .swiper-slide:hover .center {
  top: 40%;
  opacity: 0;
}
.service-page.manufacturing-4 .service-3 .sPage{
  margin-top: 60px;
}
.service-page.manufacturing-4 .service-3 .sPage .swiper-pagination-bullet{
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background: rgba(0, 0, 0, 0);
}
.service-page.manufacturing-4 .service-3 .sPage .swiper-pagination-bullet::before{
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background: #f0f0f0;
}
.service-page.manufacturing-4 .service-3 .sPage .swiper-pagination-bullet-active{
  border: 1px solid #eb630c;
}
.service-page.manufacturing-4 .service-3 .sPage .swiper-pagination-bullet-active::before{
  background: #eb630c;
}

@media screen and (max-width: 1500px) {
  .service-page.manufacturing-4 .service-1 .list {
    height: 450px;
  }
  .service-page.manufacturing-4 .service-1 .list ul li a.img {
    height: 90px;
  }
  .service-page.manufacturing-4 .service-2 .box {
    height: 600px;
  }
}

@media screen and (max-width: 1250px) {
  .service-page.manufacturing-4 .service-2 .box {
    height: 500px;
  }
  .service-page.manufacturing-4 .service-3 .swiper .swiper-slide i img {
    max-height: 50px;
  }
  .service-page.manufacturing-4 .service-3 .swiper .swiper-slide {
    padding: 50px 3%;
  }
}

@media screen and (max-width: 1000px) {
  .service-page.manufacturing-4 .service-1 .list {
    height: 300px;
  }
  .service-page.manufacturing-4 .service-1 .list ul li a.img {
    height: 70px;
  }
  .service-page.manufacturing-4 .service-1 .list ul {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-page.manufacturing-4 .service-1 .list ul li {
    width: 25%;
  }
  .service-page.manufacturing-4 .service-2 .box {
    height: 420px;
  }
  .service-page.manufacturing-4 .service-3 .swiper .swiper-slide {
    border-bottom-left-radius: 20px;
  }
}

@media screen and (max-width: 700px) {
  .service-page.manufacturing-4 .service-1 .list {
    height: 200px;
  }
  .service-page.manufacturing-4 .service-1 .list ul li {
    width: 33.33%;
  }
  .service-page.manufacturing-4 .service-1 .list ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-page.manufacturing-4 .service-2 .box .content {
    max-width: 100%;
  }
  .service-page.manufacturing-4 .service-2 .box {
    height: auto;
  }
  .service-page.manufacturing-4 .service-2 .box .content {
    background-color: rgba(255, 255, 255, 0.6);
  }
}

@media screen and (max-width: 500px) {
  .service-page.manufacturing-4 .service-3 .swiper .swiper-slide {
    border-radius: 0;
  }
  .service-page.manufacturing-4 .service-3 .list{
    margin-top: 20px;
  }
  .service-page.manufacturing-4 .service-1 .list ul li {
    width: 50%;
  }
  .service-page.manufacturing-4 .service-1 .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-page.manufacturing-4 .service-3 .sPage{
    margin-top: 20px;
  }
}