@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.eot');
  src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff'), url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff'), url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
body {
  font-family: "Poppins";
  max-width: 1920px;
  --color: #56aab7;
  margin: 0 auto;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1430px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: sticky;
	top:0;
	left:0;
	width:100%;
	background-color:white;
}
#header .nav .ui.menu {
  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: 0 auto;
  height: 90px;
  font-weight: 500;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  height: 100%;
  width: 57%;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 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;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 18px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  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;
  padding: 0 .9em;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a:before {
  content: '';
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a:before {
  opacity: 1;
}
#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: 16px;
  background: #fff;
  top: 100%;
  left: 0;
 width: 210px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
  line-height: normal;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: .5em 1em;
  color: black;
  -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: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 .h-search {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .yuy {
  height: 100%;
  margin-left: 12px;
  position: relative;
}
#header .nav .ui.menu .yuy span {
  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;
  font-size: 18px;
  font-weight: 500;
  color: black;
}
#header .nav .ui.menu .yuy ul {
  position: absolute;
  width: 120px;
  background-color: white;
  top: 100%;
  right: 0;
  font-size: 14px;
  display: none;
}
#header .nav .ui.menu .yuy ul li {
  border-top: 1px solid #eee;
}
#header .nav .ui.menu .yuy ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .yuy ul li a img {
  max-width: 24px;
  margin-right: .5em;
}
#header .nav .ui.menu .yuy ul li a:hover {
  background-color: var(--color);
  color: white;
}
#header .nav .ui.menu .yuy:hover ul {
  display: block;
}
#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 .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .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 .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(even) {
  background: #eee;
}
.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;
}
#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: .5s;
  -moz-transition: .5s;
  transition: .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;
  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: .5s;
  -moz-transition: .5s;
  transition: .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: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-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%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-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%);
  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: .5s;
  -moz-transition: .5s;
  transition: .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);
  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);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-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 {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.text {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.8;
}
a.more {
  font-size: 15px;
  font-weight: 500;
  height: 3.2em;
  line-height: 3.3em;
  padding: 0 3em;
  border-radius: 2em;
  background-color: var(--color);
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: white;
}
a.more:hover {
  background-color: black;
}
#banner {
  position: relative;
  overflow: hidden;
}
#banner li {
  position: relative;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
}
#banner li .content span.h2 {
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.24);
  margin-bottom: .8em;
}
#banner li .content .left {
  max-width: 600px;
}
#banner .proList {
  position: absolute;
  top: 50%;
  right: 0;
  background-color: white;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 28%;
  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;
	transition:.5s;
}
#banner .proList.hidden {
	background-color:transparent;
}
#banner .proList .list {
  width: 100%;
}
#banner .proList .list .slick-list {
  overflow: unset;
}
#banner .proList .list ul {
  position: relative;
  -webkit-transform: translateX(-30%);
  -moz-transform: translateX(-30%);
  -ms-transform: translateX(-30%);
  transform: translateX(-30%);
}
#banner .proList .list ul li {
  display: block !important;
}
#banner .proList .list ul li a {
  display: inline-block;
  position: relative;
  z-index: 1;
}
#banner .proList .list ul li a:before {
  content: '';
  width: 120.5%;
  height: 123%;
  border-radius: 100%;
  background-color: white;
  border: 100px solid var(--color);
  position: absolute;
  left: 45%;
  top: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#banner .proList .list ul li img {
  margin: -25% 0;
}
#banner .proList .number {
  font-size: 18px;
  color: #b3b3b3;
  padding: 0 2.5em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  text-align: center;
  font-family: fantasy;
}
#banner .proList .number li {
  margin: 1.5em 0;
  border-bottom: 3px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  padding: .5em 0;
}
#banner .proList .number li button {
  border: none;
  background-color: transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .proList .number li button:before {
  content: '0';
}
#banner .proList .number li.slick-active {
  border-bottom-color: var(--color);
}
#banner .proList .number li.slick-active button {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  color: black;
}
#index-body .init-1 {
  padding-bottom: 120px;
}
#index-body .init-1 .top {
  padding: 50px 0;
  position: relative;
}
#index-body .init-1 .top ul {
  margin: -10px;
}
#index-body .init-1 .top ul li {
  text-align: center;
  padding: 10px;
}
#index-body .init-1 .top ul li a.icon {
  position: relative;
  display: block;
}
#index-body .init-1 .top ul li a.icon:before {
  content: '';
  width: 120px;
  height: 120px;
  border-radius: 100%;
  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%);
  border: 6px solid #e4e4e4;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .top ul li a.icon img {
  display: block;
  margin: 0 auto;
  max-height: 130px;
}
#index-body .init-1 .top ul li span.h6 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  position: relative;
  margin-top: 1em;
}
#index-body .init-1 .top ul li span.h6:after {
  content: '';
  width: 45%;
  height: 4px;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .top ul li span.h6:before {
  content: '';
  border-top: 10px solid var(--color);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .top ul .slick-current li i.icon:before {
  border-color: var(--color);
}
#index-body .init-1 .top ul .slick-current li span.h6:after,
#index-body .init-1 .top ul .slick-current li span.h6:before {
  opacity: 1;
}
#index-body .init-1 .top ul .slick-current li a.icon:before {
	border-color:var(--color);
}
#index-body .init-1 .top .btn div {
  position: absolute;
  top: 35%;
  cursor: pointer;
  cursor: hand;
  font-size: 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .top .btn div.prev {
  right: 100%;
}
#index-body .init-1 .top .btn div.next {
  left: 100%;
}
#index-body .init-1 .top .btn div:hover {
  color: var(--color);
}
#index-body .init-1 .bottom .box {
  height: 680px;
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
}
#index-body .init-1 .bottom .box .content {
  position: absolute;
  left: 53%;
  bottom: 40%;
}
#index-body .init-1 .bottom .box .content .box2 {
  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;
  width: 500px;
  max-width: 100%;
  padding: 40px;
  border-radius: 4px;
  background-color: white;
	opacity:1;
	transition:.5s;
}
#index-body .init-1 .bottom .box .content.on .box2 {
	opacity:0;
}
#index-body .init-1 .bottom .box .content .img {
  width: 40%;
  padding-right: 5%;
}
#index-body .init-1 .bottom .box .content .img img {
  width: 100%;
}
#index-body .init-1 .bottom .box .content .content2 {
  width: 60%;
}
#index-body .init-1 .bottom .box .content .content2 span.h6 {
  font-weight: 600;
  font-size: 24px;
  color: var(--color);
  display: block;
  line-height: 1.2;
}
#index-body .init-1 .bottom .box .content .content2 .text {
  margin: .5em 0 1em;
}
#index-body .init-1 .bottom .box .content .content2 a.link {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--color);
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .bottom .box .content .content2 a.link:hover {
  color: black;
}
#index-body .init-1 .bottom .box .content i.dots {
  width: 10px;
  height: 10px;
  border-radius: 100%;
	background-color: var(--color);
  display: block;
  position: absolute;
/*   top: 110%; */
  left: 0;
	bottom:-35px;
	cursor:pointer;
	cursor:hand;
}
#index-body .init-1 .bottom .box .content i.dots:before,
#index-body .init-1 .bottom .box .content i.dots:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid var(--color);
  border-radius: inherit;
	-webkit-animation:ks 2s linear infinite;
  -o-animation:ks 2s linear infinite;
  -ms-animation:ks 2s linear infinite;
  -moz-animation:ks 2s linear infinite;
  animation:ks 2s linear infinite;
}
#index-body .init-1 .bottom .box .content i.dots:after {
	-webkit-animation-delay: .6s;
  -o-animation-delay: .6s;
  -ms-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
#index-body .init-1 .bottom ul li.ie2728 .box .content {
	bottom:14%;
}
#index-body .init-1 .bottom ul li.ie2728 .box .content i.dots {
	bottom:auto;
	top:-35px;
}
#index-body .init-1 .bottom ul li.ie2707 .box .content {
	bottom:16%;
}
#index-body .init-1 .bottom ul li.ie2707 .box .content i.dots {
	bottom:auto;
	top:-35px;
}
#index-body .init-1 .bottom ul li.ie2711 .box .content {
	bottom:16%;
	left:45%;
}
#index-body .init-1 .bottom ul li.ie2711 .box .content i.dots {
	bottom:auto;
	top:-35px;
}
#index-body .init-1 .bottom ul li.ie2725 .box .content {
	left:22%;
}
#index-body .init-1 .bottom ul li.ie2726 .box .content {
	left:60%;
	bottom:55%;
}

#index-body .init-2 {
  padding: 80px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url("../images/init-2-bg.jpg");
  color: white;
}
#index-body .init-2 .ui.container {
  max-width: 960px;
}
#index-body .init-2 .text {
  margin-bottom: 1.5em;
	margin-top:1em;
}
#index-body .init-3 {
  padding: 100px 0;
  overflow: hidden;
}
#index-body .init-3 .slide {
  margin-bottom: 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;
}
#index-body .init-3 .slide:last-child {
  margin-bottom: 0;
}
#index-body .init-3 .slide .left {
  width: 51%;
  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;
	position:relative;
	z-index:1;
}
#index-body .init-3 .slide .left .video {
  width: 32%;
  margin-right: -9%;
  position: relative;
  z-index: 1;
  height: 280px;
  background-size: cover;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 12%;
}
#index-body .init-3 .slide .left .video:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
#index-body .init-3 .slide .left .video .play {
  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%);
  color: white;
  font-size: 50px;
  cursor: pointer;
  cursor: hand;
}
#index-body .init-3 .slide .left .img {
  width: 77%;
  height: 660px;
  background-size: cover;
  background-position: center;
  padding: 5%;
}
#index-body .init-3 .slide .left .img .box {
  background-color: white;
  padding: 5%;
  border-radius: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
	transition:.5s;
}
#index-body .init-3 .slide .left .img .pre.on .box {
	opacity:0;
}
#index-body .init-3 .slide .left .img .pre .box {
	opacity:1;
}
#index-body .init-3 .slide .left .img .pre {
	position:relative;
	width:100%;
}
#index-body .init-3 .slide .left .img i.dots {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color);
  position: absolute;
  top: 150%;
  right: 20%;
	cursor:pointer;
	cursor:hand;
}
#index-body .init-3 .slide .left .img i.dots:before,
#index-body .init-3 .slide .left .img i.dots:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
	border: 1px solid var(--color);
	-webkit-animation:ks 2s linear infinite;
  -o-animation:ks 2s linear infinite;
  -ms-animation:ks 2s linear infinite;
  -moz-animation:ks 2s linear infinite;
  animation:ks 2s linear infinite;
}
#index-body .init-3 .slide .left .img .box i.dots:after {
	-webkit-animation-delay: .6s;
  -o-animation-delay: .6s;
  -ms-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
#index-body .init-3 .slide .left .img.ie3 i.dots {
	right:40%;
	top:110%;
}
#index-body .init-3 .slide .left .img .box .bigImg {
  width: 35%;
  padding: 0 1%;
}
#index-body .init-3 .slide .left .img .box .content {
  width: 65%;
}
#index-body .init-3 .slide .left .img .box .content span.h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--color);
  display: block;
  line-height: 1.2;
}
#index-body .init-3 .slide .left .img .box .content .text {
  margin: .6em 0 2em;
}
#index-body .init-3 .slide .left .img .box .content a.link {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color);
}
#index-body .init-3 .slide .right {
  width: 49%;
  padding: 0 7%;
}
#index-body .init-3 .slide .right span.h6 {
  font-weight: 600;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  border-bottom: 2px solid var(--color);
  margin-bottom: 1.5em;
}
#index-body .init-3 .slide .right span.h2 {
  font-size: 60px;
  margin-bottom: .5em;
}
#index-body .init-3 .slide .right span.h2:after {
  content: '';
  width: 0.16666667em;
  height: 0.16666667em;
  border-radius: 100%;
  display: inline-block;
  vertical-align: baseline;
  margin-left: .1em;
  background-color: var(--color);
}
#index-body .init-3 .slide .right .box2 {
  padding-top: 50px;
  padding-left: 30px;
  position: relative;
}
#index-body .init-3 .slide .right .box2:before {
  content: '';
  width: 250%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f9fa), to(transparent));
  background-image: -webkit-linear-gradient(top, #f8f9fa, transparent);
  background-image: -moz-linear-gradient(top, #f8f9fa, transparent);
  background-image: linear-gradient(to bottom, #f8f9fa, transparent);
}
#index-body .init-3 .slide .right a.more {
  margin-top: 2em;
}
#index-body .init-3 .slide:nth-child(even) {
  direction: rtl;
}
#index-body .init-3 .slide:nth-child(even) .left .video {
  margin-right: 0;
  margin-left: -9%;
}
#index-body .init-3 .slide:nth-child(even) .left .img .box {
  direction: ltr;
}
#index-body .init-3 .slide:nth-child(even) .right {
  direction: ltr;
  padding-left: 0;
  padding-right: 15%;
}
#index-body .init-4 {
  padding: 80px 0 100px;
  text-align: center;
  background-color: var(--color);
}
#index-body .init-4 span.h2 {
  font-size: 48px;
  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;
  text-transform: uppercase;
}
#index-body .init-4 span.h2:before,
#index-body .init-4 span.h2:after {
  content: '';
  height: 2px;
  width: 3.20833333em;
  background-color: black;
  margin: 0 .4em;
}
#index-body .init-4 .list {
  margin: 40px 0 60px;
}
#index-body .init-4 .list ul {
  margin: -10px;
}
#index-body .init-4 .list ul li {
  padding: 10px;
}
#index-body .init-4 .list ul li a.img-box {
  display: block;
	padding:10% 10% 20%;
	background-color:white;
}
#index-body .init-4 .list ul li a.img-box em {
  font-size: 15px;
  text-transform: uppercase;
  line-height: 2.8em;
  height: 2.8em;
  border-radius: 1.5em;
  background-color: #353535;
  color: white;
  width: 70%;
  position: absolute;
  bottom: 1.5em;
  left: 15%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .list ul li span.h6 {
  font-weight: 600;
  font-size: 24px;
  color: black;
  display: block;
  margin-top: .6em;
  line-height: 1.2;
}
#index-body .init-4 .list ul li:hover a.img-box em {
  opacity: 1;
}
#index-body .init-4 .line {
  height: 3px;
  width: 60%;
  margin: 0 auto;
  background-color: #ebebeb;
  position: relative;
}
#index-body .init-4 .line i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-5 {
  padding: 100px 0 70px;
}
#index-body .init-5 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .init-5 .box .left {
  width: 51%;
}
#index-body .init-5 .box .left .img {
  height: 100%;
  border-radius: 10px;
  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;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.8);
  background-size: cover;
  background-position: center;
}
#index-body .init-5 .box .left .img .play {
  cursor: pointer;
  cursor: hand;
	display:block;
	position:relative;
}
#index-body .init-5 .box .left .img .play:after,
#index-body .init-5 .box .left .img .play:before {
	content:'';
	border:3px solid rgba(255,255,255,.3);
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border-radius:100%;
	z-index:-1;
	animation:ks 2s linear infinite;
}
#index-body .init-5 .box .left .img .play:before {
	animation-delay:.6s;
}
#index-body .init-5 .box .left .img .play i {
	display:block;
	line-height:1;
}
#index-body .init-5 .box .right {
  width: 49%;
  padding-left: 4%;
  padding-top: 6px;
  padding-bottom: 12px;
}
#index-body .init-5 .box .right span.tag {
  font-weight: 600;
  font-size: 24px;
  color: black;
  display: inline-block;
  line-height: 1.2;
  border-bottom: 2px solid var(--color);
  margin-bottom: 1.5em;
}
#index-body .init-5 .box .right span.h2 {
  font-size: 58px;
}
#index-body .init-5 .box .right .text {
  color: #1e1e1e;
  margin: 2em 0;
}
#index-body .init-5 .list {
  margin-top: 65px;
}
#index-body .init-5 .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .init-5 .list ul li {
  width: auto;
  position: relative;
}
#index-body .init-5 .list ul li span.h5 {
  font-size: 90px;
  font-weight: 600;
  display: block;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px 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;
}
#index-body .init-5 .list ul li span.h6 {
  font-size: 22px;
  position: absolute;
  left: 0;
  width: 100%;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
#index-body .init-5.product {
	background-color:var(--color);
	color:white;
}
#index-body .init-5.product .box .right .text {
	color:inherit;
}
#index-body .init-5.product .box .right span.tag {
	border-bottom-color:white;
	color:inherit;
}
#index-body .init-5.product .box .right a.more {
	background-color:white;
	color:var(--color);
}
#index-body .init-5.product .box .right a.more:hover {
	background-color:black;
	color:white;
}
#index-body .init-6 {
  overflow: hidden;
}
#index-body .init-6 .list {
  padding: 0 18.5%;
  position: relative;
}
#index-body .init-6 .list .slick-list {
  overflow: unset;
}
#index-body .init-6 .list ul {
  margin: -13px;
}
#index-body .init-6 .list ul li {
  padding: 13px;
}
#index-body .init-6 .list ul li .box {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-6 .list ul li a.img-box {
  display: block;
}
#index-body .init-6 .list ul li a.img-box img {
  width: 100%;
}
#index-body .init-6 .list ul li .content {
  max-width: 90%;
  display: block;
  margin-left: auto;
  padding: 0 40px;
  background-color: white;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-6 .list ul li .content span.h6 {
  font-size: 36px;
  color: #232323;
  font-weight: 600;
  line-height: 1.2;
  margin: .8em 0;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-6 .list ul li .content span.h6:hover {
  color: var(--color);
}
#index-body .init-6 .list ul .slick-list li .box {
  padding: 50px 0;
}
#index-body .init-6 .list ul .slick-list .slick-current li .box {
  padding-top: 0;
  padding-bottom: 100px;
}
#index-body .init-6 .list ul .slick-list .slick-current li .box .content {
  opacity: 1;
}
#index-body .init-6 .list .btn div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  cursor: pointer;
  cursor: hand;
}
#index-body .init-6 .list .btn div.prev {
  left: 10%;
}
#index-body .init-6 .list .btn div.next {
  right: 10%;
}
#index-body .init-7 {
  padding: 90px 0 110px;
}
#index-body .init-7 span.h2 {
  font-size: 48px;
  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;
  text-transform: uppercase;
}
#index-body .init-7 span.h2:before,
#index-body .init-7 span.h2:after {
  content: '';
  height: 2px;
  width: 3.20833333em;
  background-color: black;
  margin: 0 .4em;
}
#index-body .init-7 .list {
  margin-top: 50px;
}
#index-body .init-7 .list ul {
  -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
}
#index-body .init-7 .list ul li {
  padding: 50px 8% 60px;
  -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);
  background-color: white;
}
#index-body .init-7 .list ul li time {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8em;
  height: 1.8em;
  padding: 0 1.2em;
  display: inline-block;
  background-color: var(--color);
  color: white;
}
#index-body .init-7 .list ul li span.h6 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  display: block;
  margin: .7em 0 .4em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-7 .list ul li span.h6:hover {
  color: var(--color);
}
#index-body .init-7 .list ul li a.more {
  margin-top: 2em;
  border: 1px solid var(--color);
  color: var(--color);
  background-color: transparent;
}
#index-body .init-7 .list ul li a.more:hover {
  background-color: var(--color);
  color: white;
}
#index-body .init-7 .list ul .slick-slide {
  opacity: 0;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
#index-body .init-7 .list ul .slick-slide.slick-active {
  opacity: 1;
}
#footer {
	position:relative;
	z-index:1;
}
#footer:after {
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-image: url("../images/footer-bg.jpg");
  background-position: left bottom;
  background-size: 33.85416667% auto;
  background-repeat: no-repeat;
	z-index:-1;
}
#footer:before {
	content:'';
	width:100%;
	height:50%;
	position:absolute;
	bottom:0;
	z-index:-2;
	background-color:white;
}
#footer .footer-top {
  position: relative;
  color: white;
  padding: 70px 0;
}
#footer .footer-top:before {
  content: '';
  width: 96%;
  top: 0;
  right: 0;
  position: absolute;
  height: 100%;
  background-color: #2f2f2f;
  border-top-left-radius: 25px;
}
#footer .footer-top .top {
  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;
}
#footer .footer-top .top .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
}
#footer .footer-top .top .title img {
  margin-right: .4em;
}
#footer .footer-top .top >div {
  width: 66%;
}
#footer .footer-top .top form ul {
  margin: -6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer-top .top form ul li {
  padding: 6px;
  width: 100%;
}
#footer .footer-top .top form ul li input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  height: 3.22222222em;
  padding: 0 1.1em;
  background-color: transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-top .top form ul li input[type='submit'] {
  width: 9em;
  text-align: center;
  background-color: var(--color);
  border-color: var(--color);
}
#footer .footer-top .top form ul li input[type='submit']:hover {
  background-color: transparent;
  color: var(--color);
}
#footer .footer-top .top form ul li input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
#footer .footer-top .top form ul li input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
#footer .footer-top .top form ul li input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
#footer .footer-top .top form ul li input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
#footer .footer-top .top form ul li input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
#footer .footer-top .top form ul li input:focus {
  border-color: var(--color);
}
#footer .footer-top .top form ul li:last-child {
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#footer .footer-top .bottom {
  padding-top: 120px;
  margin: -10px;
}
#footer .footer-top .bottom span.h6 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: .3em;
}
#footer .footer-top .bottom .nav {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  font-weight: 300;
  max-width: 460px;
}
#footer .footer-top .bottom .nav li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-top .bottom .nav li:hover {
  color: white;
}
#footer .footer-top .bottom .nav li ul {
	display:none !important;
}
#footer .footer-top .bottom #ewm {
  border: 4px solid white;
}
#footer .footer-top .bottom .slide {
  padding: 10px;
}
#footer .footer-top .bottom .slide:nth-child(3) {
  width: 40%;
  vertical-align: middle;
}
#footer .footer-top .bottom .slide:nth-child(4) {
  width: 10%;
  vertical-align: middle;
}
#footer .footer-bottom {
  font-size: 18px;
  padding: 2.2em 0;
}
#footer .footer-bottom .coy {
  margin-left: 33%;
  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;
}
#footer .footer-bottom .coy svg {
  max-height: 1.5em;
  width: auto;
  display: block;
}
#footer .footer-bottom .coy .share {
  font-size: .6em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer-bottom .coy .share a {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  border: 1px solid #7d7d7d;
  color: #7d7d7d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-bottom .coy .share a:hover {
  color: white;
  background-color: #7d7d7d;
}
@media screen and (max-width: 1600px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li,
  #header .nav .ui.menu .yuy span {
    font-size: 16px;
  }
  span.h2 {
    font-size: 60px;
  }
  a.more {
    font-size: 14px;
  }
  #banner .proList .number {
    font-size: 16px;
  }
  #banner .proList .list ul li a {
    max-width: 280px;
  }
  #banner .proList .list ul li a:before {
    border-width: 60px;
  }
  #index-body .init-1 .top ul li a.icon img {
    max-height: 100px;
  }
  #index-body .init-1 .top ul li a.icon:before {
    width: 90px;
    height: 90px;
  }
  #index-body .init-1 .top ul li span.h6,
  #index-body .init-1 .bottom .box .content .content2 span.h6,
  #index-body .init-4 .list ul li span.h6,
  #index-body .init-5 .box .right span.tag {
    font-size: 20px;
  }
  #index-body .init-1 .bottom .box {
    height: 580px;
  }
  .text {
    font-size: 15px;
  }
  #index-body .init-1 {
    padding-bottom: 60px;
  }
  #index-body .init-3 .slide .left .video {
    height: 220px;
  }
  #index-body .init-3 .slide .left .img {
    height: 500px;
  }
  #index-body .init-3 .slide .right span.h6 {
    font-size: 18px;
  }
  #index-body .init-3 .slide .right span.h2 {
    font-size: 42px;
  }
  #index-body .init-3 .slide .right .box2 {
    padding-top: 30px;
  }
  #index-body .init-3 .slide .right {
    padding: 0 7%;
  }
  #index-body .init-3 .slide {
    margin-bottom: 60px;
  }
  #index-body .init-3 {
    padding: 60px 0;
  }
  #index-body .init-4 span.h2,
  #index-body .init-7 span.h2 {
    font-size: 32px;
  }
  #index-body .init-4 .list {
    margin: 35px 0;
  }
  #index-body .init-4,
  #index-body .init-5,
  #index-body .init-7 {
    padding: 60px 0;
  }
  #index-body .init-5 .box .right span.h2 {
    font-size: 42px;
  }
  #index-body .init-5 .box .left .img {
    font-size: 70px;
  }
  #index-body .init-5 .list ul li span.h5 {
    font-size: 70px;
  }
  #index-body .init-5 .list ul li span.h6 {
    font-size: 18px;
  }
  #index-body .init-5 .list {
    margin-top: 40px;
  }
  #index-body .init-6 .list .btn div {
    font-size: 30px;
  }
  #index-body .init-6 .list ul li .content span.h6,
  #index-body .init-7 .list ul li span.h6,
  #footer .footer-top .top .title {
    font-size: 28px;
  }
  #index-body .init-7 .list ul li time {
    font-size: 14px;
  }
  #index-body .init-7 .list ul li {
    padding: 5%;
  }
  #index-body .init-7 .list ul li a.more {
    margin-top: 1em;
  }
  #footer .footer-top .top .title img {
    max-width: 60px;
  }
  #footer .footer-top .top form ul li input {
    font-size: 16px;
  }
  #footer .footer-top {
    padding: 50px 0;
  }
  #footer .footer-top .bottom {
    padding-top: 60px;
  }
  #footer .footer-top .bottom span.h6 {
    font-size: 24px;
  }
  #footer .footer-top .bottom .nav {
    font-size: 16px;
  }
  #footer .footer-top .bottom .nav {
    max-width: 400px;
  }
  #footer {
    background-size: 25% auto;
  }
  #footer .footer-bottom {
    font-size: 16px;
    padding: 1.5em 0;
  }
  #footer .footer-bottom .coy .share {
    font-size: 12px;
  }
  #footer .footer-top:before {
    width: 99%;
  }
}
@media screen and (max-width: 1250px) {
  .ui.container {
    width: 970px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
  span.h2 {
    font-size: 48px;
  }
  #banner .proList .list ul li a {
    max-width: 220px;
  }
  #banner .proList .number {
    font-size: 14px;
  }
  #index-body .init-1 .top ul li a.icon img {
    max-height: 80px;
  }
  #index-body .init-1 .top ul li a.icon:before {
    width: 70px;
    height: 70px;
  }
  #index-body .init-1 .top ul li span.h6,
  #index-body .init-1 .bottom .box .content .content2 span.h6,
  #index-body .init-4 .list ul li span.h6,
  #index-body .init-5 .box .right span.tag {
    font-size: 18px;
  }
  #index-body .init-1 .bottom .box .content {
    padding: 20px;
    width: 400px;
  }
  #index-body .init-3 .slide .right span.h6 {
    font-size: 16px;
  }
  #index-body .init-3 .slide .left .img .box .content span.h3 {
    font-size: 20px;
  }
  #index-body .init-3 .slide .left .img .box .content .text {
    margin: .5em 0;
  }
  #index-body .init-3 .slide .left .video {
    margin-bottom: 5%;
  }
  #index-body .init-3 .slide .right span.h2,
  #index-body .init-5 .box .right span.h2 {
    font-size: 36px;
  }
  #index-body .init-5 .list ul li span.h5 {
    font-size: 50px;
  }
  #index-body .init-5 .list ul li span.h6 {
    font-size: 16px;
  }
  #index-body .init-6 .list ul li .content span.h6,
  #index-body .init-7 .list ul li span.h6,
  #footer .footer-top .top .title {
    font-size: 24px;
  }
  #footer .footer-top .bottom {
    padding-top: 40px;
  }
  #footer .footer-top .bottom span.h6 {
    font-size: 20px;
  }
  #footer .footer-top .top form ul li input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  span.h2 {
    font-size: 36px;
  }
  a.more {
    line-height: 2.8em;
    height: 2.8em;
    padding: 0 2em;
  }
	#footer:before,#footer:after {
		display:none;
	}
  #banner .proList .list ul li a {
    max-width: 180px;
  }
  #banner .proList .list ul li a:before {
    border-width: 40px;
  }
  #banner .proList .number {
    padding: 0 1.5em;
  }
  #index-body .init-1 .top ul li span.h6,
  #index-body .init-1 .bottom .box .content .content2 span.h6,
  #index-body .init-4 .list ul li span.h6,
  #index-body .init-5 .box .right span.tag {
    font-size: 16px;
  }
  #index-body .init-1 .bottom .box .content {
    left: 15%;
    width: 70%;
  }
  #index-body .init-1 .bottom .box .content i.dots {
    left: 50%;
  }
  #index-body .init-1 .bottom .box {
    height: 460px;
  }
  #index-body .init-3 .slide .left {
    width: 100%;
  }
  #index-body .init-3 .slide .right {
    width: 100%;
    padding: 0 !important;
    margin-top: 30px;
  }
  #index-body .init-3 .slide {
    display: block;
  }
  #index-body .init-3 .slide .right span.h2,
  #index-body .init-5 .box .right span.h2 {
    font-size: 28px;
  }
  #index-body .init-3 .slide .right span.h6 {
    margin-bottom: .5em;
  }
  #index-body .init-5 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-5 .list ul li {
    padding: 10px;
  }
  #index-body .init-6 .list ul li .content {
    padding: 0 15px;
  }
  #index-body .init-6 .list ul li .content span.h6,
  #index-body .init-7 .list ul li span.h6,
  #footer .footer-top .top .title {
    font-size: 20px;
  }
  #footer .footer-top .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
	#footer .footer-top .top >div {
    width: 100%;
    margin-top: 20px;
  }
  #footer .footer-top .bottom .slide:nth-child(1),
  #footer .footer-top .bottom .slide:nth-child(2),
  #footer .footer-top .bottom .slide:nth-child(4) {
    display: none;
  }
  #footer .footer-top .bottom .slide:nth-child(3) {
    width: 100%;
  }
  #footer .footer-top .bottom .nav {
    max-width: none;
  }
  #banner .proList {
    display: none;
  }
  span.h2 {
    font-size: 32px;
  }
  #index-body .init-1 .top {
    padding: 30px 0;
  }
  #index-body .init-3 .slide .right span.h6 {
    font-size: 14px;
  }
  #index-body .init-5 .box .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  #index-body .init-5 .box .left {
    width: 100%;
    height: 260px;
  }
  #index-body .init-5 .box {
    display: block;
  }
  #index-body .init-5 .box .right span.tag {
    margin-bottom: .5em;
  }
  #index-body .init-5 .box .right .text {
    margin: 1em 0;
  }
  #index-body .init-6 .list {
    padding: 0 10%;
  }
  #index-body .init-6 .list .btn div.prev {
    left: 0;
  }
  #index-body .init-6 .list .btn div.next {
    right: 0;
  }
  #index-body .init-7 span.h2:before,
  #index-body .init-7 span.h2:after,
  #index-body .init-4 span.h2:before,
  #index-body .init-4 span.h2:after {
    width: 2em;
  }
  #footer {
    background-image: unset;
  }
  #footer .footer-top:before {
    width: 100%;
  }
  #footer .footer-bottom .coy {
    margin-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #index-body .init-1 .top .btn div.prev {
    right: auto;
    left: 0;
  }
  #index-body .init-1 .top .btn div.next {
    right: 0;
    left: auto;
  }
  #index-body .init-1 .top {
    padding: 30px 15px;
  }
  span.h2 {
    font-size: 28px;
  }
  #index-body .init-1 .bottom .box .content {
    left: 10%;
    width: 80%;
  }
  #index-body .init-1 .bottom .box {
    height: 380px;
  }
  #index-body .init-2 {
    padding: 60px 0;
  }
  #index-body .init-3 .slide .left .img {
    height: 440px;
  }
  #index-body .init-3 .slide .left .video {
    height: 180px;
  }
  #index-body .init-3 .slide .left .img .box {
    padding: 3%;
  }
  #index-body .init-4 span.h2,
  #index-body .init-7 span.h2 {
    font-size: 28px;
  }
  #index-body .init-5 .box .left .img {
    font-size: 50px;
  }
  #footer .footer-top .top form ul li {
    width: 100%;
  }
  #footer .footer-top .top form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-bottom .coy {
    display: block;
  }
  #footer .footer-bottom .coy .share {
    margin-top: 10px;
  }
  #footer .footer-bottom .coy .share a:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  span.h2 {
    font-size: 24px;
  }
  #banner li .content span.h2 {
    margin-bottom: .4em;
  }
  #index-body .init-1 .bottom .box {
    height: auto;
  }
  #index-body .init-1 .bottom .box .content {
    left: 0;
    width: 100%;
    position: static;
    border-radius: 0;
  }
  #index-body .init-3 .slide .left .img {
    width: 100%;
    height: 320px;
  }
  #index-body .init-3 .slide .left .video {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  #index-body .init-3 .slide .left {
    display: block;
  }
  #index-body .init-3 .slide .right .box2 {
    padding-left: 15px;
    padding-top: 15px;
  }
  #index-body .init-7 span.h2:before,
  #index-body .init-7 span.h2:after,
  #index-body .init-4 span.h2:before,
  #index-body .init-4 span.h2:after {
    display: none;
  }
  #index-body .init-5 .box .left {
    height: 220px;
  }
  #index-body .init-6 .list ul li .content {
    position: static;
    left: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    opacity: 1;
  }
  #index-body .init-6 .list ul .slick-list li .box {
    padding: 0 !important;
  }
  #index-body .init-6 .list .btn {
    display: none;
  }
  #index-body .init-6 .list {
    padding: 0;
  }
}

.inner-banner .ui.container {
    text-align: center;
    padding: 78px 0;
    position: relative;
    border-bottom: 1px solid #d3d3d3
}

.inner-banner .ui.container span.getdown {
    position: absolute;
    bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: white;
    left: 50%;
    margin-left: -24px;
    margin-bottom: -24px;
    line-height: 48px;
    cursor: pointer;
    z-index: 1
}

.inner-banner .ui.container span.getdown i {
    font-size: 24px;
    color: #fff
}

.inner-banner .ui.container .title {
    margin-bottom: 15px;
    color: #000;
    font-size: 36px;
    line-height: 1.4;
	font-weight:bold;
}

.inner-banner .ui.container .mbx {
    color: #000;
    font-size: 18px;
    line-height: 32px;
}

.bread-crumbs {
    font-size: 14px;
    margin-top: 7px;
}
.bread-crumbs,
.bread-crumbs a,
.bread-crumbs span {
    color: white;
}
.bread-crumbs a:hover {
    color: #fff;
    text-decoration: underline;
}
.inner-page .sideBar {
    padding: 25px 0 22px;
    background: var(--color);
    display: inline-block;
    width: 100%;
}
.inner-page .sideBar .side-menu {
    position: relative;
    margin-top: 15px;
}
.inner-page .sideBar .side-menu .nowCat {
    background: black url("../images/sidebar-line.png") no-repeat 93% center;
    cursor: pointer;
    width: 226px;
    height: 40px;
    line-height: 40px;
    display: block;
    padding-left: 15px;
    color: white;
    font-size: 16px;
    border: 1px solid white;
    text-transform: capitalize;
}
.inner-page .sideBar .side-menu .cat-list {
    display: none;
    z-index: 111;
    position: absolute;
    width: 100%;
    padding: 10px 0;
    background: black;
    left: 0;
    top: 100%;
}
.inner-page .sideBar .side-menu .cat-list li {
    padding: 6px 12px 6px 16px;
}
.inner-page .sideBar .side-menu .cat-list li a {
    display: block;
    color: white;
    padding: 5px;
}
.inner-page .sideBar .side-menu .cat-list li a:hover {
    color: #fff;
    text-decoration: underline;
}
.inner-page .inner-main-tit {
    text-align: left;
    color: white;
}
.inner-page .inner-main-tit .nowTit {
    font-size: 34px;
    text-transform: capitalize;
}
.inner-page .inner-main-tit .nowTit1{
    font-size: 24px;
    text-transform: capitalize;
}
.about-page .a-tit {
    font-size: 29px;
    color: #000;
    text-transform: uppercase;
}
.about-page .a-txt p {
    color: #000000;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 27px;
}
.about-page .inner-main-box {
    padding: 90px 0 51px;
    background: #fbfbfb;
    line-height: 2;
}

.about-page .inner-main-box .a-tit {
    margin: 47px 0 24px;
}
.about-page .a-factory .swiper-slide img {
    width: 100%;
}
.about-page .a-whyUs {
    padding: 111px 0;
    background: #fbfbfb;
}
.about-page .a-whyUs .a-txt {
    margin: 60px 0 73px;
}
.about-page .a-whyUs .why-list {
    padding: 0!important;
}
.product-page .i-product {
    padding: 11px 0 88px;
}
.product-page .i-product .ui h1{
    font-size:24px;
}
.product-page .i-product .ui p{
    line-height:2;
    font-size:15px;
    margin-bottom:-10px;
}
.product-page .i-product .ui p span {
    font-size: inherit !important;
    font-family: inherit !important;
}
.inner-page .m-page {
    margin-top: 50px;
    text-align: center;
    padding-bottom: 70px
}

.inner-page .m-page a,.inner-page .m-page span {
    margin: 0 13px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    font-weight: 600;
    font-size: 14px;
    color: #301500;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background: rgb(0 0 0/10%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.inner-page .m-page a:after,.inner-page .m-page span:after {
    content: '';
    width: 130%;
    height: 130%;
    position: absolute;
    left: -15%;
    top: -15%;
    border-radius: inherit;
    border: 2px solid #ececec
}

.inner-page .m-page a:hover {
    background-color: #111;
    color: #fff
}

.inner-page .m-page span.current {
    background-color: #111;
    color: #fff
}
.prodet-page .prodetTit {
    margin-bottom: 23px;
    color: #121212;
    font-size: 30px;
    text-transform: capitalize;
    text-align: center;
}
.prodet-page .prodet-pics {
    padding: 59px 0 82px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic {
    width: 40%;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic img {
    margin: 0 auto;
    width: 100%;
    border: 1px solid #eee;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul {
    margin: 15px -5px 0;
    /*   padding: 0 20px; */
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-track {
    margin-left:0;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow {
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    background: black;
    color: transparent;
    z-index: 1;
    border: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow:hover {
    background: var(--color);
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow:after {
    position: absolute;
    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%);
    color: white;
    font-size: 14px;
    font-family: "FontAwesome";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-prev {
    left: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-next {
    right: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-prev:after {
    content: "\f104";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-next:after {
    content: "\f105";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul li {
    padding: 0 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one {
    padding-left: 5%;
    width: 60%;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proName {
    color: #121212;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 2;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proEmail {
    display: inline-block;
    color: #1e1e1e;
    font-size: 17px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proSocial {
    margin: 18px 0 20px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proSocial a {
    margin-right: 6px;
    color: #000;
    font-size: 16px;
    display: inline-block;
    width: 35px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #f2f2f2;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proSocial a:hover {
    background: var(--color);
    color: #fff;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .pdf-box a {
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 40px;
    font-size: 16px;
    background: var(--color);
    color: white;
    text-align: center;
    border-radius: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .pdf-box a i {
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .prodet-thumb .image-gallery:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    clear: both;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .prodet-thumb .image-gallery li {
    padding: 0;
    float: left;
    width: 20%;
    margin-right: 1.5%;
    background: #fafafa;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .prodet-thumb .image-gallery li:nth-of-type(4n) {
    margin-right: 0;
}
.prodet-page .prodet-det-two {
    padding: 122px 0 146px;
    background: #efefef;
    line-height: 2;
}
.prodet-page .recommand-product {
    padding: 31px 0 133px;
}
.prodet-page .recommand-product .i-product {
    padding: 0;
}
.prodetFeedback {
    padding: 44px 0 64px;
    background: #f2f2f2;
}
.prodetFeedback .innerTit {
    font-size: 32px;
    text-transform: uppercase;
    color: #000;
}
.prodetFeedback .ptForm {
    margin-top: 50px;
}
.prodetFeedback .ptForm label {
    font-size: 16px;
    color: #636363;
    font-weight: 500;
    margin-bottom: 0;
}
.prodetFeedback .ptForm input,
.prodetFeedback .ptForm textarea {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    background: none;
    color: #252525;
    font-size: 16px;
    width: 100%;
    outline: none;
    resize: none;
    border: none;
    border-bottom: 1px solid #cccccc;
}
.prodetFeedback .ptForm .fbTop {
    margin-bottom: 62px;
    display: inline-block;
    width: 100%;
}
.prodetFeedback .ptForm .fbTop li {
    float: left;
    width: 31%;
    margin-right: 2%;
}
.prodetFeedback .ptForm .fbTop li:last-child {
    margin-right: 0;
}
.prodetFeedback .ptForm .fbTop li input {
    height: 15px;
    padding: 0 4px;
}
.prodetFeedback .ptForm .fbTop li input:focus {
    height: 43px;
    border-bottom: 3px solid var(--color);
}
.prodetFeedback .ptForm .fbBot {
    margin-bottom: 75px;
}
.prodetFeedback .ptForm .fbBot textarea {
    height: 16px;
    overflow: hidden;
}
.prodetFeedback .ptForm .fbBot textarea:focus {
    height: 55px;
    border-bottom: 3px solid var(--color);
}
.prodetFeedback .ptForm input[type="submit"] {
    cursor: pointer;
    text-align: left;
    padding-left: 31px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 16px;
    width: 203px;
    height: 52px;
    border: none;
    background: var(--color) url("../images/fb-send.png") no-repeat right 10px center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    color: #fff;
}
.prodetFeedback .ptForm input[type="submit"]:hover {
    background-color: #222;
}
.inner-page .about-1 {
    padding-top: 90px
}
.inner-page .about-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: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 30px
}
.inner-page .about-1 .top .left {
	width:40%;
}
.inner-page .about-1 .top .left .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1;
    color: #000
}

.inner-page .about-1 .top .left .title em.t2 {
    margin-left: 10%
}

.inner-page .about-1 .top .left .title em.t3 {
    margin-left: 5%
}
.inner-page .about-1 .top .right {
	width:60%;
}
.inner-page .about-1 .top .right .tit {
    color: #000;
    margin-bottom: 30px
}

.inner-page .about-1 .top .right p {
    color: #767676;
    line-height: 2;
	max-height:330px;overflow:auto;
}

.inner-page .about-1 .imgbox {
    overflow: hidden
}

.inner-page .about-2 {
    padding-top: 100px;
    padding-bottom: 260px
}

.inner-page .about-2 .ui.container img.dec {
    position: absolute;
    left: 0;
    bottom: -320px;
    z-index: 3
}

.inner-page .about-2 .ui.container .left {
/*     padding-right: 125px; */
	width:25%;
}

.inner-page .about-2 .ui.container .left .tit {
    color: #000;
    line-height: 1.4;
    margin-bottom: 60px
}
.inner-page .about-2 .ui.container .right {
	width:75%;
}
.inner-page .about-2 .ui.container .right ul {
    margin: 0 -45px;
    margin-bottom: -100px
}

.inner-page .about-2 .ui.container .right ul li {
    text-align: left;
    padding: 0 45px;
    margin-bottom: 50px
}

.inner-page .about-2 .ui.container .right ul li:nth-child(2n) {
    margin-top: 75px
}

.inner-page .about-2 .ui.container .right ul li .title {
    color: #000;
    margin: 10px 0;
	font-weight:bold;
	font-size:27px;
}

.inner-page .about-3 {
    height: 450px;
    position: relative;
    background: url(../images/about-3-bj.jpg) center center no-repeat;
    background-size: cover;
	background-attachment:fixed;
}

.inner-page .about-3 .play {
    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%)
}

.inner-page .about-4 {
    padding: 100px 0;
	background-color:#f8f8f8;
}

.inner-page .about-4 .ui.container {
    text-align: left
}

.inner-page .about-4 .ui.container .tit {
    font-weight: 700;
    color: #000;
	text-transform: uppercase;
    margin-bottom: 60px;
	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;
}
.inner-page .about-4 .ui.container .tit:after,
.inner-page .about-4 .ui.container .tit:before {
	content:'';
	height: 2px;
   width: 3.20833333em;
   background-color: black;
   margin: 0 .4em;
}

.inner-page .about-4 .ui.container ul {
    margin: 0 -25px
}

.inner-page .about-4 .ui.container ul li {
    padding: 0 25px
}

.inner-page .about-5 {
    padding-top: 50px;
    text-align: center;
    padding-bottom: 120px
}

.inner-page .about-5 .tit {
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
	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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.inner-page .about-5 .tit:after,
.inner-page .about-5 .tit:before {
	content:'';
	height: 2px;
   width: 3.20833333em;
   background-color: black;
   margin: 0 .4em;
}

.inner-page .about-5 .factorybox {
    position: relative;
    padding-bottom: 100px
}

.inner-page .about-5 .factorybox .navbox {
    position: absolute;
    bottom: 0;
    left: 8%;
    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;
    margin: 0 -5px;
    font-size: 24px
}

.inner-page .about-5 .factorybox .navbox em {
    font-weight: 700;
    margin: 0 5px
}

.inner-page .about-5 .factorybox .navbox em.now {
    font-size: 32px;
    color: #000
}

.inner-page .about-5 .factorybox ul.factorylist li {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.inner-page .about-5 .factorybox ul.factorylist .slick-current li {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.inner-page .about-5 .factorybox .slick-dots {
    position: absolute;
    width: 415px;
    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;
    right: 8%;
    bottom: -100px
}

.inner-page .about-5 .factorybox .slick-dots li {
    width: 100%;
    height: 1px;
    background: #aaa;
    padding: 0;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important
}

.inner-page .about-5 .factorybox .slick-dots li button {
    display: none
}

.inner-page .about-5 .factorybox .slick-dots li.slick-active {
    min-width: 150px;
    background: #000
}
.font-45 {
   font-size: 44px;
	font-weight:bold;
}
.font-106 {
   font-size: 106px;
	font-weight:bold;
}
@media screen and (max-width: 768px) {
    .inner-page .sideBar .side-menu {
        float: left;
        margin-top: 10px;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-bPic,
    .prodet-page .prodet-pics .grid.two.column .pro-det-one,
    .prodetFeedback .ptForm .fbTop li {
        width: 100%!important;
        padding-left: 0!important;
        line-height: 2;
    }
    .prodetFeedback .ptForm .fbTop li {
        margin-bottom: 30px;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-det-one .proName {
        font-size: 19px;
        margin-top: 30px;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-bPic {
        padding-right:0;
    }
    .prodet-page .prodet-pics .grid.two.column {
        margin:0 !important;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-det-one .proName, .prodet-page .prodetTit, .contact-page .c-list-box .contactList .c-name {
        font-size:20px;
    }
}

@media screen and (max-width: 1200px){
    .inner-page .inner-main-tit .nowTit {
        font-size: 28px;
    }
    .about-page .a-whyUs {
        padding: 50px 0;
    }
    .about-page .a-tit {
        font-size: 24px;
    }
    .about-page .a-txt p {
        font-size: 14px;
    }
    .product-page .i-product {
        padding: 20px 0;
    }
    .m-page {
        padding: 20px 0;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-det-one .proName,.prodet-page .prodetTit,.contact-page .c-list-box .contactList .c-name {
        font-size: 30px;
    }
    .prodetFeedback .innerTit {
        font-size: 28px;
    }
    .prodetFeedback .ptForm input[type="submit"] {
        font-size: 14px;
    }
    .prodet-page .prodet-det-two {
        padding: 70px 0;
    }

}
@media screen and (max-width: 1000px){
    .inner-page .sideBar .side-menu {
        display: none;
    }
    .inner-page .inner-main-tit .nowTit {
        font-size: 20px;
    }
    .bread-crumbs {
        font-size: 12px;
        line-height: 2;
    }
    .inner-page .sideBar {
        padding: 10px 0;
    }
    .about-page .inner-main-box {
        padding: 50px 0;
        line-height: 2;
    }
    .about-page .a-whyUs .a-txt {
        margin: 30px 0;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-bPic {
        text-align: center;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-bPic img {
        width: auto;
        margin: 0 auto;
    }
    .prodet-page .prodet-det-two {
        padding: 50px 0;
        line-height: 2;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-det-one .pdf-box a {
        font-size: 14px;
    }
    .prodetFeedback .ptForm .fbTop li input {
        height: 44px;
    }
    .prodetFeedback .ptForm .fbBot textarea {
        height: 55px;
    }
    .prodetFeedback .ptForm .fbTop {
        margin-bottom: 20px;
    }
    .prodet-page .prodet-pics .grid.two.column .pro-det-one .proName, .prodet-page .prodetTit, .contact-page .c-list-box .contactList .c-name {
        font-size: 20px;
        line-height: 2;
    }
    .prodetFeedback .innerTit {
        font-size: 20px;
    }
    .prodetFeedback .ptForm label {
        font-size: 14px;
    }
    .prodetFeedback .ptForm .fbTop li {
        margin-bottom: 15px;
    }
    .prodet-page .recommand-product {
        padding: 40px 0;
    }

}

@media screen and (max-width: 700px){
    .inner-page .inner-main-tit .nowTit {
        font-size: 18px;
    }
    .inner-page .inner-main-tit .nowTit1 {
        font-size: 18px;
        line-height: 2;
    }
    table {
        display: inline-block;
        width: 100%;
        overflow-y: auto;
    }
    .prodetFeedback .ptForm .fbBot {
        margin-bottom: 30px;
    }

}

.mt-130 {
    margin-top: 90px;
}
.pt-90 {
    padding-top: 90px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pt-80 {
    padding-top: 80px;
}
.pt-70 {
    padding-top: 70px;
}
.pb-70 {
    padding-bottom: 70px;
}
.font-60 {
    font-size: 60px;
    line-height: 1.2;
}
.font-48 {
    font-size: 48px;
}
.font-40 {
    font-size: 40px;
}
.font-36 {
    font-size: 34px;
}
.font-30 {
    font-size: 30px;
}
.font-24 {
    font-size: 24px;
}
.font-20 {
    font-size: 20px;
}
.font-18 {
    font-size: 18px;
    line-height: 1.7;
}
.font-16 {
    font-size: 16px;
    line-height: 2;
}
.title_subline_c span{
    border-bottom: 1px solid var(--color);
}
.title_subline_c_w span{
    border-bottom: 1px solid #fff;
}
.application-page .container .tips {
    text-align: center;
    font-weight: normal;
    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;
    font-weight: normal;
    text-transform: capitalize;
    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%;
}
/* .news-page {
    background: #f8f8f8;
} */
.news-page .container 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;
    margin: 0 -15px;
}
.news-page .container ul li {
    margin-top: 30px;
    padding: 0 15px;
}
.news-page .container ul li .box {
    height: 100%;
    background-color: #f8f8f8;
    padding: 30px;
}
.news-page .container ul li .box .title {
    font-weight: normal;
    font-size: 24px;
/*     text-transform: uppercase; */
    display: block;
    line-height: 1.8;
	font-weight:bold;
}
.news-page .container ul li .box .title:hover {
    color: var(--color);
}
.news-page .container ul li .box .des {
    line-height: 2;
    margin-top: 14px;
    font-size: 17px;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-page .container ul li .box .time {
    margin-top: 10px;
    /*margin-left: 20px;*/
}
.newdet-page .container .title {
    text-align: center;
/*     text-transform: uppercase; */
    font-weight: normal;
    font-size: 40px;
	font-weight:bold;
}
.newdet-page .container .time_c {
    margin-top: 14px;
    text-align: center;
}
.newdet-page .container .time_c .list {
    display: inline-block;
    margin: 0 8px;
}
.newdet-page .container .time_c .list img {
    vertical-align: middle;
    width: 16px;
}
.newdet-page .container .time_c .list span {
    vertical-align: middle;
    margin-left: 2px;
    position: relative;
    top: 1px;
    color: #999;
}
.newdet-page .container .content {
    margin-top: 50px;
	padding-bottom:40px;
	border-bottom:1px solid #555;
}
.m-link {
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 2;;
}
.m-link a {
    margin-top: 6px;
    display: inline-block;
}
.m-link a:hover {
    color: var(--color);
    text-decoration: underline;
}

@media (max-width: 1500px) {
    .font-60 {
        font-size: 50px;
    }
    .font-48 {
        font-size: 38px;
    }
    .font-40 {
        font-size: 30px;
    }
}
@media (max-width: 1000px) {
    .news-page .container ul {
        margin: 0 -5px;
    }
    .news-page .container ul li {
        padding: 0 5px;
        margin-top: 10px;
        text-align: center;
    }
    .news-page .container ul li .box {
        padding: 15px;
    }
    .news-page .container ul li .box .time {
        margin-left: 0;
    }
}
@media (max-width: 500px) {
    .pt-90 {
        padding-top: 40px;
    }
    .pb-90 {
        padding-bottom: 40px;
    }
    .pt-80 {
        padding-top: 40px;
    }
    .pb-70 {
        padding-bottom: 40px;
    }
    .pt-70 {
        padding-top: 40px;
    }
    .font-60 {
        font-size: 30px;
    }
    .font-48 {
        font-size: 24px;
        line-height: 2;
    }
    .font-40 {
        font-size: 24px;
        line-height: 2;
    }
    .font-36 {
        font-size: 24px;
        line-height: 2;
    }
    .font-30 {
        line-height: 2;
        font-size: 20px;
    }
    .font-24 {
        font-size: 18px;
        line-height: 2;
    }
    .font-20 {
        font-size: 18px;
        line-height: 2;
    }
    .application-page .container .content ul {
        margin: 0;
    }
    .application-page .container .content ul li {
        margin-top: 30px;
        padding: 0;
    }
    .news-page .container ul {
        margin: 0;
    }
    .news-page .container ul li {
        padding: 0;
        margin-top: 20px;
    }
    .newdet-page .container .content {
        margin-top: 20px;
    }
    .m-link {
        margin-top: 20px;
    }
}
.font-60 {
  font-size: 40px;
  line-height: 1.1;
}
.faq-page .box {
  padding: 10.472% 0 7.069%;
  position: relative;
  z-index: 1;
}
.faq-page .box span.bj {
  color: var(--color);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 300;
  text-transform: uppercase;
}
.faq-page .box .title {
  width: 44%;
  margin-top: 3px;
	font-weight:bold;
}
.faq-page .box .content {
  margin-top: 46px;
}
.faq-page .box .content ul {
  margin-bottom: -24px;
}
.faq-page .box .content ul li {
  padding-bottom: 24px;
}
.faq-page .box .content ul li .ig {
  background-color: #f8f8f9;
  border-radius: 50px;
  padding: 24px 41px 28px 50px;
  position: relative;
}
.faq-page .box .content ul li .ig .tit {
  font-size: 20px;
  line-height: 1.5;
  font-family: 'Etelka';
  padding-right: 50px;
}
.faq-page .box .content ul li .ig .tit i {
  width: 41px;
  height: 41px;
  border-radius: 100%;
  background: #000;
  cursor: pointer;
  position: absolute;
  display: block;
  right: 41px;
  top: 22px;
}
.faq-page .box .content ul li .ig .tit i::after,
.faq-page .box .content ul li .ig .tit i::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #fff;
  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%);
}
.faq-page .box .content ul li .ig .tit i:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-page .box .content ul li .ig .con {
  font-size: 17px;
  line-height: 1.7;
  margin: 17px 0 32px;
  max-width: 1103px;
  display: none;
}
.faq-page .box .content ul li .ig.active .tit i {
  background: var(--color);
}
.faq-page .box .content ul li .ig.active .tit i::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.faq-page .box::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  top: -43px;
  right: 0;
  font-size: 457px;
  line-height: 1;
	font-weight:bold;
/*   font-family: 'Gabo'; */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
  background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1680px) {
  .faq-page .box .title {
    width: 36%;
  }
}
@media screen and (max-width: 1440px) {
  .faq-page .box .title {
    width: 41%;
  }
}
@media screen and (max-width: 1280px) {
  .faq-page .box .title {
    width: 46%;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 25px;
  }
}
@media screen and (max-width: 1100px) {
  .faq-page .box .title {
    width: 51%;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .font-60 {
    font-size: 50px;
  }
  .faq-page .box::after {
    display: none;
  }
  .faq-page .box .title {
    width: 61%;
  }
  .faq-page .box .content ul li .ig {
    padding: 24px 20px 28px 30px;
  }
  .faq-page .box .content ul li .ig .tit i {
    right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .font-60 {
    font-size: 40px;
  }
  .faq-page .box .title {
    width: 70%;
  }
  .faq-page .box .content ul li .ig {
    padding: 20px 10px 20px 20px;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 20px;
  }
  .faq-page .box .content ul li .ig .tit i {
    right: 10px;
    top: 15px;
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .box span.bj {
    font-size: 16px;
  }
  .font-60 {
    font-size: 30px;
    line-height: 1.3;
  }
  .faq-page .box .title {
    width: 85%;
  }
  .faq-page .box .content {
    margin-top: 20px;
  }
  .faq-page .box .content ul li .ig .tit {
    font-size: 18px;
    padding-right: 40px;
  }
  .faq-page .box .content ul li .ig .tit i {
    width: 30px;
    height: 30px;
  }
  .faq-page .box .content ul li .ig .con {
    font-size: 14px;
    line-height: 2;
    margin: 10px 0;
  }
}
.product-page .product-1 {
    padding-top: 130px;
    padding-bottom: 100px;
    position: relative
}

.product-page .product-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: 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;
    position: relative
}

.product-page .product-1 .ui.container .left {
    position: relative;
    padding-left: 230px;
    z-index: 0;
    height: 570px;
    display: flex;
    align-items: flex-end
}

.product-page .product-1 .ui.container .left .title {
    color: #000;
    position: absolute;
    left: -100px;
    top: 78px;
    -webkit-transform: rotateZ(-90deg);
    -moz-transform: rotateZ(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotateZ(-90deg);
	font-size:60px;
}

.product-page .product-1 .ui.container .left .imgs {
    background: #fff;
    max-width: 510px;
    width: 100%
}

.product-page .product-1 .ui.container .left .imgs ul li img {
    width: 100%
}

.product-page .product-1 .ui.container .right {
    padding-left: 70px
}

.product-page .product-1 .ui.container .right ul li p {
    max-height: 150px;
    overflow-y: scroll;
    margin-bottom: 15px;
    margin-top: 15px
}

.product-page .product-1 .ui.container .bottom {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.product-page .product-1 .btn {
    position: absolute;
    width: 40px;
    bottom: 30%;
    margin-top: -40px;
    border: 1px solid #aaa;
    transition: .3s all;
    color: #000;
    font-size: 28px;
    height: 80px;
    line-height: 80px;
    z-index: 99;
    text-align: center;
    cursor: pointer
}

.product-page .product-1 span.btn.slick-prev {
    left: 140px
}

.product-page .product-1 span.btn.slick-next {
    right: 140px
}

.product-page .product-1 span.btn:hover {
    transition: .3s all;
    color: #fff;
    background: #aaa
}

.product-page .product-1 .ui.container .bottom ul {
    margin: 0 -15px;
    width: 50%
}

.product-page .product-1 .ui.container .bottom ul.small1 {
    width: 16%
}

.product-page .product-1 .ui.container .bottom ul li {
    padding: 0 15px;
    text-align: center
}

.product-page .product-1 .ui.container .bottom ul li img {
    width: 100%
}

.product-page .product-1 .ui.container .bottom ul li .tit {
    margin-top: 15px;
    padding: 0 20px
}
.product-2 {
	padding-top:60px;
	margin-top:60px;
	background-color:var(--color);
	color:white;
}
.product-2.productYd {
	background-color:transparent;
	color:black;
	margin-top:0;
}
.product-2 .title {
	margin-bottom:1em;
	color:white !important;
}
.product-2 ul {
    margin: -20px
}

.product-2 ul li {
    padding: 20px;
    text-align: center;
}

.product-2 ul li .item:hover .img-box .hoverbox {
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    top: 0
}

.product-2 ul li .item .img-box {
    position: relative
}
.product-2 ul li .item .img-box a {
	display:block;
	position:relative;
	padding:10% 10% 20%;
	border:1px solid #eee;
	background-color:white;
}
.product-2 ul li .item .img-box a em {
  font-size: 15px;
  text-transform: uppercase;
  line-height: 2.8em;
  height: 2.8em;
  border-radius: 1.5em;
  background-color: #353535;
  color: white;
  width: 70%;
  position: absolute;
  bottom: 1.5em;
  left: 15%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-2 ul li .item .img-box a:hover em {
	opacity:1;
}

.product-2 ul li .item .img-box .hoverbox {
    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: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    top: -100%;
    left: 0
}

.product-2 ul li .item .pname {
    margin-top: 20px;
    line-height: 2;
	font-weight: 600;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.product-2 ul li .item .pname:hover {
    color: #000
}

.prodet-1 {
    padding: 80px 0 0
}

.prodet-1 .ui.container #gallery {
    width: 100%;
    overflow: hidden
}

.prodet-1 .ui.container #gallery ul .slick-current li {
    opacity: 1;
    -webkit-transform: 1;
    -moz-transform: 1;
    -ms-transform: 1;
    transform: 1
}

.prodet-1 .ui.container #gallery ul .slick-current li img {
    width: 550px
}

.prodet-1 .ui.container #gallery ul li {
    opacity: .5;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    min-height: 360px;
    display: -webkit-box!important;
    display: -webkit-flex!important;
    display: -moz-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px
}

.prodet-1 .ui.container #gallery ul li img {
    width: 194px
}
.prodet-page .m-link {
	color:#a0a0a0;
	padding-bottom:.5em;
	border-bottom:1px solid #333;
}
.prodet-page .m-link a {
	transition:.5s;
}
.prodet-page .m-link a:hover {
	color:black;
}
.prodet-2 {
    padding: 80px 0
}

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

.prodet-2 .ui.container .left {
    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
}

.prodet-2 .ui.container .left .navbox {
    width: 165px;
    max-height: 604px;
    overflow-y: scroll;
    padding-right: 20px;
    padding-top: 50px;
    overflow: auto
}
.prodet-2 .ui.container .left li video {
	display:block;
	width:100%;
}
.prodet-2 .ui.container .left .navbox li {
    width: 100%;
    height: 90px;
    line-height: 60px;
    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;
    border-radius: 20px;
    margin-bottom: 51px;
    padding: 5px 20px !important;
	cursor:hand;
	cursor:pointer;
}

.prodet-2 .ui.container .left .navbox li img {
/*     max-width: 40px */
	max-height:70px;
	width:auto;
}

.prodet-2 .ui.container .left .navbox li.active {
    background: #fff;
    box-shadow: inset -1px 1px 6px 2px rgb(0 0 0/9%)
}

.prodet-2 .ui.container .left .imgbox {
    width: -webkit-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: calc(100% - 200px)
}

.prodet-2 .ui.container .right h1 {
    color: #000;
    margin-bottom: 20px;
	font-weight:bold;
}

.prodet-2 .ui.container .right ul.conlist {
    border-top: 1px solid #000;
    margin-bottom: 60px
}

.prodet-2 .ui.container .right ul.conlist li {
    padding: 15px 0;
    border-bottom: 1px solid #000
}

.prodet-2 .ui.container .right ul.conlist li .title {
    color: #000;
    position: relative;
    width: 100%;
		    font-weight: 600;
}

.prodet-2 .ui.container .right ul.conlist li .title i {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 16px
}

.prodet-2 .ui.container .right ul.conlist li .content {
    padding: 15px 0;
    display: none
}

.prodet-2 .ui.container .right a.more3 {
    width: 100%;
    height: 60px;
    line-height: 60px;
	border-radius:30px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    background: var(--color);
    display: block;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}

.prodet-2 .ui.container .right a.more3:hover {
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    background: black
}

.pro .m-link {
    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: 30px 0;
    color: #767676;
    font-size: 18px
}

.pro .m-link a:hover {
    color: #000
}

.prodet-3 .title {
    color: #000;
    margin-bottom: 1em;
}

.prodet-3 form {
    width: 100%
}

.prodet-3 form ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -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 -30px
}

.prodet-3 form ul li {
    width: 100%;
    padding: 0 30px
}

.prodet-3 form ul li:nth-child(5) {
    width: 100%;
    text-align: center;
    margin-top: 80px
}

.prodet-3 form ul li.wid30 {
    width: 33.33%;
    margin-bottom: 60px
}

.prodet-3 form ul li input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    background: 0 0;
    color: #000;
    border: none;
    border-bottom: 1px solid #000
}

.prodet-3 form ul li textarea {
    width: 100%;
    height: 140px;
    line-height: 2;
    font-size: 18px;
    color: #000;
    border: none;
    border-bottom: 1px solid #000
}

.prodet-3 form ul li input[type=submit] {
    width: 100%;
    max-width: none;
    line-height: 60px;
    height: 60px;
	border-radius:30px;
    color: #fff;
    background: #3c3c3c;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    font-weight: 700;
    font-size: 22px;
    border: none
}

.prodet-3 form ul li input[type=submit]:hover {
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
    background: #56aab7
}

.prodet-5 .title {
    color: #000
}

.prodet-5 ul.newslist {
    margin: 0 -50px;
    margin-top: 60px
}

.prodet-5 ul.newslist li {
    padding: 0 50px;
    text-align: left
}

.prodet-5 ul.newslist li span.time {
    color: #000;
    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
}

.prodet-5 ul.newslist li .title {
    margin-top: 10px;
    min-height: 7em;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    font-size: 22px!important;
    line-height: 40px!important
}

.prodet-5 ul.newslist li .title a:hover {
    color: var(--color)
}

.font-80 {
    font-size: 80px
}

.font-45 {
    font-size: 44px
}

@media screen and (max-width: 1400px) {
    .font-45 {
        font-size:30px
    }

    .inner-page .about-2 .ui.container .right ul {
        margin: 0 -25px
    }

    .inner-page .about-2 .ui.container .right ul li {
        padding: 0 25px
    }

    .product-page .product-1 .ui.container .left {
        position: relative;
        padding-left: 150px
    }

    .font-18 {
        font-size: 16px;
        line-height: 30px
    }

    .font-80 {
        font-size: 52px
    }

    .product-page .product-1 .ui.container .left .title {
        left: -40px;
        top: 20px
    }

    .product-2 ul {
        margin: 0 -40px
    }

    .product-2 ul li {
        padding: 0 40px
    }

    .prodet-1 .ui.container #gallery ul .slick-current li img {
        width: 300px
    }

    .font-30 {
        font-size: 20px;
        line-height: 36px
    }
    .font-106 {
        font-size: 60px
    }

    .product-page .product-1 .btn {
        display: none!important
    }
}

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

    .inner-page .about-2 .ui.container img.dec {
        display: none
    }

    .inner-page .about-2 .ui.container .right ul li {
        margin-bottom: 20px
    }

    .inner-page .about-2 .ui.container .left {
        padding-right: 40px
    }

    .product-page .product-1 .ui.container .bottom {
        display: none
    }

    .product-page .product-1 .ui.container .left {
        display: none
    }

    .product-page .product-1 .ui.container .right {
        padding-left: 20px;
        width: 100%!important
    }
}

@media screen and (max-width: 700px) {
    .inner-page .about-1 {
        padding-top:50px
    }

    .inner-page .about-1 .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .inner-page .about-1 .top .left {
        width: 100%
    }

    .inner-page .about-1 .top .right {
        width: 100%
    }

    .inner-page .about-1 .top {
        margin-bottom: 0
    }

    .font-106 {
        font-size: 50px
    }

    .inner-page .about-2 .ui.container .left {
        width: 100%
    }

    .inner-page .about-2 .ui.container .right {
        width: 100%
    }

    .inner-page .about-2 .ui.container .right ul li:nth-child(2n) {
        margin-top: 20px
    }

    .inner-page .about-2 {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .prodet-2 .ui.container .left {
        width: 100%
    }

    .prodet-2 .ui.container .right {
        width: 100%
    }

    .product-page .product-1 {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .product-2 ul li {
        margin-bottom: 20px
    }

    .prodet-3 form ul li.wid30 {
        width: 100%
    }
    .prodet-1 .ui.container #gallery ul li img {
        width: 100%
    }

    .prodet-1 .ui.container #gallery ul .slick-current li img {
        width: 100%
    }

    .prodet-1 {
        padding: 0
    }
}
    .seoPublic {
        word-break: break-word;
    }
    .seoPublic .title {
        font-size: 48px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 2em;
  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;
  text-transform: uppercase;
    }
.seoPublic .title:before,
.seoPublic .title:after {
  content: '';
  height: 2px;
  width: 3.20833333em;
  background-color: black;
  margin: 0 .4em;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .seoPublic .text a {
        color: var(--color);
    }

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

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

    .seoPublic .Auxil-through a {
        display: inline-block;
        line-height: 40px;
        height: 40px;
        padding: 0 25px;
        font-size: 14px;
        color: black;
        border: 1px solid #eee;
        background: #f8f8f8;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100%;
    }

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

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

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

    .seoPublic .Auxil-related .list ul li .box {
        display: block;
        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(--color);
    }

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

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

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

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

        .seoPublic .Auxil-about .box .right div.title,
        .seoPublic .Auxil-related .list ul li .box .content div.h3 {
            font-size: 20px;
        }

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

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

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

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

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

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

        #cp-Nav {
            display: block;
        }

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

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

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

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

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

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

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

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

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

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

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

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

        .seoPublic > div {
            padding: 30px 0;
        }
        .seoPublic .Auxil-about .box .right .text {
            max-height: none;
        }
    }
.advantages-page{
    position: relative;
    z-index: 1;
    padding: 7.877% 0 11.1112%;
}
.advantages-page::after{
    content: attr(data-text);
    position: absolute;
    z-index: -1;
    top: -30px;
    right: 0;
    font-size: 316px;
    line-height: 1;
    background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(240,241,243,.5)),to(rgba(240,241,243,0)));
    background-image: -webkit-linear-gradient(top,rgba(240,241,243,.5),rgba(240,241,243,0));
    background-image: -moz-linear-gradient(top,rgba(240,241,243,.5),rgba(240,241,243,0));
    background-image: linear-gradient(to bottom,rgba(240,241,243,.5),rgba(240,241,243,0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.advantages-page .header span{
    color: var(--color);
    font-weight: bold;
}
.advantages-page .header .title{
    margin-top: 10px;
	font-weight:bold;
}
.advantages-page .content{
    padding-top: 4%;
}
.advantages-page .content ul li{
    padding-bottom: 7.33%;
    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;
}
.advantages-page .content ul li .img{
    width: 55%;
    padding: 0 18px 18px 0;
    position: relative;
    z-index: 1;
}
.advantages-page .content ul li .img .play {
  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%);
  color: white;
	background-color:var(--color);
  font-size: 50px;
	width:1.5em;
	height:1.5em;
	border-radius:100%;
  cursor: pointer;
  cursor: hand;
	display:flex;
	align-items:center;
	justify-content:center;
}
.advantages-page .content ul li .img::after{
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 192px;
    height: 183px;
    background-color: var(--color);
}
.advantages-page .content ul li .text{
    width: 45%;
    padding-left: 90px;
}
.advantages-page .content ul li .text .top {
    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;
}
.advantages-page .content ul li .text .top span{
    font-size: 95px;
    line-height: 1;
    color: var(--color);
/*     font-family: 'Etelka'; */
    display: inline-block;
    position: relative;
	font-weight:bold;
	min-width:.7em;
	text-align:center;
}
.advantages-page .content ul li .text .top span::after {
    content: '';
    width: 79px;
    height: 95px;
    background: url(../images/ad-bg.png) no-repeat;
    position: absolute;
    bottom: 10px;
    left: 0px;
}
.advantages-page .content ul li .text .top em {
    font-size: 36px;
    line-height: 1.2;
    padding-left: 5px;
    position: relative;
    z-index: 1;
	font-weight:bold;
}
.advantages-page .content ul li .text .con{
    font-size: 18px;
    line-height: 1.8;
	padding-top: 30px;
    color: rgba(0,0,0,0.8);
}
.advantages-page .content ul li:last-child{
    padding-bottom: 0;
}
.advantages-page .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;
}
.advantages-page .content ul li:nth-child(odd) .img img{
    border-radius: 230px 0px 0px 230px;
}
.advantages-page .content ul li:nth-child(even) .img{
    padding: 0 0 19px 24px;
}
.advantages-page .content ul li:nth-child(even) .img img{
    border-radius: 0px 230px 230px 0px;
}
.advantages-page .content ul li:nth-child(even) .img::after{
    left: 0;
    right: initial;
}
.advantages-page .content ul li:nth-child(even) .text{
    padding: 0 70px 0 0;
}
strong,
b{
    font-weight: bold;
}
@media screen and (max-width: 1680px) {
    .advantages-page:after{
        font-size: 220px;
        top: -22px;
    }
}
@media screen and (max-width: 1000px) {
    .advantages-page:after{
        display: none;
    }
    .advantages-page .content ul li .img{
        width: 100%;
    }
    .advantages-page .content ul li .text{
        width: 100%;
        padding: 20px 0 0 0;
    }
    .advantages-page .content ul li:nth-child(even) .text{
        padding: 20px 0 0 0;
    }
}
@media screen and (max-width: 700px) {
    .advantages-page .content ul li .text .top em{
        font-size: 30px;
        line-height: 1.3;
    }
}
@media screen and (max-width: 500px) {
    .advantages-page .content ul li .text .top em{
        font-size: 24px;
        line-height: 1.3;
    }
    .advantages-page .content ul li .text .con{
        font-size: 16px;
        line-height: 1.8;
    }
}
.font-72 {
    font-size: 72px;
}
.contact-page {
    padding-top: 13.073%;
    position: relative;
    z-index: 1;
}
.contact-page .ui.container {
    max-width: 1558px;
}
.contact-page .contact-1 ul {
    margin: -15px;
}
.contact-page .contact-1 ul li {
    padding: 15px;
    text-align: center;
}
.contact-page .contact-1 ul li .tit {
/*     font-family: 'Etelka'; */
    line-height: 1.3;
	font-weight:bold;
    margin: 19px 0 11px;
}
.contact-page .contact-1 ul li p {
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.53);
}
.contact-page .contact-2 {
    padding-top: 6%;
}
.contact-page .contact-2 .title {
	font-weight:bold;
}
.contact-page .contact-2 .form {
    margin-top: 80px;
}
.contact-page .contact-2 .form ul {
    margin: -15px;
}
.contact-page .contact-2 .form ul li {
    padding: 15px;
}
.contact-page .contact-2 .form ul li input,
.contact-page .contact-2 .form ul li textarea {
    width: 100%;
    line-height: 24px;
    padding: 20px;
    border-radius: 32px;
    border: 1px solid #bfbfbf;
    font-size: 18px;
    font-weight: 300;
    padding-left: 100px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact-page .contact-2 .form ul li input::-webkit-input-placeholder, .contact-page .contact-2 .form ul li textarea::-webkit-input-placeholder {
    color: #000;
}
.contact-page .contact-2 .form ul li input:-moz-placeholder, .contact-page .contact-2 .form ul li textarea:-moz-placeholder {
    color: #000;
}
.contact-page .contact-2 .form ul li input::-moz-placeholder, .contact-page .contact-2 .form ul li textarea::-moz-placeholder {
    color: #000;
}
.contact-page .contact-2 .form ul li input:-ms-input-placeholder, .contact-page .contact-2 .form ul li textarea:-ms-input-placeholder {
    color: #000;
}
.contact-page .contact-2 .form ul li input::placeholder,
.contact-page .contact-2 .form ul li textarea::placeholder {
    color: #000;
}
.contact-page .contact-2 .form ul li input:focus,
.contact-page .contact-2 .form ul li textarea:focus {
    border-color: var(--color);
}
.contact-page .contact-2 .form ul li textarea {
    height: 236px;
    resize: vertical;
}
.contact-page .contact-2 .form ul li .box {
    position: relative;
}
.contact-page .contact-2 .form ul li .box label {
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    position: absolute;
    left: 1px;
    top: 0;
    border-radius: 100%;
    background: #bfbfbf;
    display: block;
	z-index:1;
}
.contact-page .contact-2 .form ul li .box label img {
    display: inline-block;
    vertical-align: middle;
}
.contact-page .contact-2 .form ul li input[type="submit"] {
    margin-top: 40px;
    padding: 0 66px 0 67px;
    line-height: 55px;
    height: 55px;
    border-radius: 28px;
    background: var(--color);
    color: #fff;
    font-size: 19px;
    width: auto;
    border: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact-page .contact-2 .form ul li input[type="submit"]:hover {
    background: #222;
}
.contact-page .contact-2 .form ul li.wid-100 {
    width: 100%;
}
.contact-page .contact-2 .form ul li:nth-child(5) .box label::after {
    content: '';
    border-left: 18px solid #bfbfbf;
    border-bottom: 18px solid #bfbfbf;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 18px solid transparent;
    border-right: 18px solid transparent;
}
.contact-page .contact-3 {
    padding-top: 5.1045%;
}
.contact-page .contact-3 iframe {
	border:none;
}
.contact-page::after {
    content: attr(data-text);
    position: absolute;
    z-index: -1;
    top: -43px;
    right: 0;
    font-size: 457px;
    line-height: 1;
    font-family: 'Gabo';
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 241, 243, 0.5)), to(rgba(240, 241, 243, 0)));
    background-image: -webkit-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
    background-image: -moz-linear-gradient(top, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
    background-image: linear-gradient(to bottom, rgba(240, 241, 243, 0.5), rgba(240, 241, 243, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	font-weight:bold;
}
@media screen and (max-width: 1440px) {
    .contact-page::after {
        font-size: 300px;
        top: -20px;
    }
}
@media screen and (max-width: 1100px) {
    .contact-page::after {
        font-size: 260px;
    }
}
@media screen and (max-width: 1000px) {
    .contact-page::after {
        display: none;
    }
    .contact-page .contact-2 .form {
        margin-top: 30px;
    }
    .contact-page .contact-2 .form ul li .box label {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .contact-page .contact-2 .form ul li input,
    .contact-page .contact-2 .form ul li textarea {
        padding: 12px;
        padding-left: 70px;
    }
    .font-72 {
        font-size: 60px;
    }
}
@media screen and (max-width: 700px) {
    .font-72 {
        font-size: 50px;
    }
    .contact-page .contact-2 .form ul li {
        width: 100%;
    }
    .contact-page .contact-2 .form ul li input,
    .contact-page .contact-2 .form ul li textarea {
        font-size: 14px;
        padding-left: 60px;
    }
    .contact-page .contact-2 .form ul li input[type="submit"] {
        margin-top: 0;
    }
}
.prodet-page .init-4 {
    background-color: #f5f5f5
}
.prodet-page .init-4 .tips p {
	display:flex;
	justify-content:center;
	align-items:center;
}
.prodet-page .init-4 .tips p:after,
.prodet-page .init-4 .tips p:before {
	content:'';
	width:2em;
	height:4px;
	background-color:black;
	margin:0 .5em;
}
.prodet-page .init-4 .container {
    font-weight: 500;
    text-transform: capitalize
}

.prodet-page .init-4 .container .content {
    margin: 30px -15px 0
}

.prodet-page .init-4 .container .content .slick .slick-track {
    margin-left: 0
}

.prodet-page .init-4 .container .content .slick li {
    padding: 0 15px
}

.prodet-page .init-4 .container .content .slick li .box .img {
    display: block;
    overflow: hidden;
    background-color: #fff;
	padding:10% 10% 20%;
	position:relative;
}
.prodet-page .init-4 .container .content .slick li .box .img em {
  font-size: 15px;
  text-transform: uppercase;
  line-height: 2.8em;
  height: 2.8em;
  border-radius: 1.5em;
  background-color: #353535;
  color: white;
  width: 70%;
  position: absolute;
  bottom: 1.5em;
  left: 15%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
	text-align:center;
}
.prodet-page .init-4 .container .content .slick li .box .img:hover em {
	opacity:1;
}

.prodet-page .init-4 .container .content .slick li .box .img img {
    width: 100%
}

.prodet-page .init-4 .container .content .slick li .box .text {
    display: block;
    margin-top: 16px;
    line-height: 2
}

.prodet-page .init-4 .container .content .slick li .box .text:hover {
    color: #da251c
}
.image-gallery li {
	padding:0 !important;
	display:block;
}
.prodet-2 .ui.container .left .imgbox li {
	display:none;
}
.image-gallery li i,
.image-gallery li span {
	display:none !important;
}
.btnFlex {
	display:flex;
	justify-content:space-between;
}
.btnFlex a {
	width:48% !important;
}
.cordless-1 {
	background-color:#f7f7f7;
	padding:90px 0;
	text-align:center;
}
.cordless-1 .text {
	margin:1em auto 3em;
}
.cordless-1 ul {
	display:flex;
	gap:6px;
}
.cordless-1 ul li,.cordless-1 ul img {
	width:100%;
}
.cordless-1 span.h6 {
	font-size:30px;
	font-weight:bold;
	margin-top:1.2em;
	display:block;
}
.application-page .options {
	display:flex;
	justify-content:center;
	gap:10px;
	flex-wrap:wrap;
}
.application-page .options a.active {
	background-color:black;
}
@media screen and (max-width: 1000px) {
	.inner-page .about-1 .top {
		flex-wrap:wrap;
	}
	.inner-page .about-2 .ui.container .left,.inner-page .about-1 .top .left {
		width:100%;
	}
	.inner-page .about-2 .ui.container .right,.inner-page .about-1 .top .right {
		width:100%;
	}
	.inner-page .about-2 .ui.container .right ul li .title {
		font-size:22px;
	}
}