@font-face {
  font-family: 'Syne';
  src: url('../fonts/Syne-Regular.eot');
  src: url('../fonts/Syne-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Syne-Regular.woff2') format('woff2'), url('../fonts/Syne-Regular.woff') format('woff'), url('../fonts/Syne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('../fonts/Syne-Bold.eot');
  src: url('../fonts/Syne-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Syne-Bold.woff2') format('woff2'), url('../fonts/Syne-Bold.woff') format('woff'), url('../fonts/Syne-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'MicrogrammaD-BoldExte';
  src: url('../fonts/MicrogrammaD-BoldExte.eot');
  src: url('../fonts/MicrogrammaD-BoldExte.eot?#iefix') format('embedded-opentype'), url('../fonts/MicrogrammaD-BoldExte.woff2') format('woff2'), url('../fonts/MicrogrammaD-BoldExte.woff') format('woff'), url('../fonts/MicrogrammaD-BoldExte.ttf') format('truetype');
  font-weight: bold;
  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: normal;
  font-display: swap;
}

.header.inner .nav .ui.menu .logo img {
  filter: brightness(0);
}

.header.inner .nav .ui.menu .menu-box ul.menu > li {
  color: #000000;
}

.header.inner .nav .ui.menu .h-search {
  border-color: rgba(0, 0, 0, 0.64);
}

.header.inner .nav .ui.menu .h-search img {
  filter: brightness(0);
}

.header.inner::after {
  content: "";
  display: block;
  border-bottom: 1px solid #cccccc;
  margin-top: 10px;
}

body {
  font-family: "Poppins";
  max-width: 1920px;
  --color: #dab38d;
  --font: "Syne";
  font-weight: normal;
  margin: 0 auto;
}

.font1 {
  font-family: var(--font);
}

.container {
  width: 100%;
  max-width: 1530px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.baseBtn {
  display: inline-block;
  padding: 0 15px;
  min-width: 192px;
  height: 54px;
  line-height: 54px;
  border-radius: 27px;
  background-color: var(--color);
  text-align: center;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.baseBtn span {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #000000), color-stop(#c1935f), color-stop(#ffd67d), to(#c49964));
  background: -webkit-linear-gradient(left, #000000 50%, #c1935f, #ffd67d, #c49964);
  background: -moz-linear-gradient(left, #000000 50%, #c1935f, #ffd67d, #c49964);
  background: linear-gradient(90deg, #000000 50%, #c1935f, #ffd67d, #c49964);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.baseBtn.on,
.baseBtn:hover {
  background-color: #000000;
}
.baseBtn.on span,
.baseBtn:hover span {
  background-position: 100% 0!important;
}
.baseBtn2 {
  display: inline-block;
  padding: 0 15px;
  min-width: 192px;
  height: 54px;
  line-height: 54px;
  border-radius: 27px;
  background-color: #000000;
  text-align: center;
}
.baseBtn2 span {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(#c1935f), color-stop(#ffd67d), to(#c49964));
  background: -webkit-linear-gradient(left, #ffffff 50%, #c1935f, #ffd67d, #c49964);
  background: -moz-linear-gradient(left, #ffffff 50%, #c1935f, #ffd67d, #c49964);
  background: linear-gradient(90deg, #ffffff 50%, #c1935f, #ffd67d, #c49964);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.baseBtn2:hover span {
  background-position: 100% 0;
}
.text-white {
  color: #FFFFFF;
}
.header {
  z-index: 21;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.header.default {
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}
.header.default.fixed {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.header.default .nav {
  background-color: var(--color);
}
.header.default .nav .ui.menu {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header.default .nav .ui.menu .logo {
  width: 70px;
}
.header.default .nav .ui.menu .menu-box ul.menu > li > a::before {
  border-color: #FFFFFF;
}
.header.default .nav .ui.menu .msg {
  background-color: #000000;
}
.header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}
.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: 0;
  margin-right: auto;
}
.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 {
  margin: 0 10px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
.header .nav .ui.menu .menu-box ul.menu > li:hover > a::before {
  width: 100%;
  opacity: 1;
}
.header .nav .ui.menu .menu-box ul.menu > li > a {
  padding: 15px 0;
  min-width: 135px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .nav .ui.menu .menu-box ul.menu > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 1px solid var(--color);
  width: 0;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.header .nav .ui.menu .menu-box ul.menu > li > a::after {
  content: "\e768";
  font-family: 'iconfont';
  font-weight: normal;
  opacity: .55;
}
.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: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
.header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
.header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
.header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
.header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
.header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
.header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
.header .nav .ui.menu .h-search {
  font-size: 0;
  width: 34px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
.header .nav .ui.menu .h-search img {
  vertical-align: middle;
}
.header .nav .ui.menu .msg {
  cursor: pointer;
}
.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 ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -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;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -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;
  left: 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;
  right: 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;
  right: 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 {
  right: 0;
}
#mobile.active:before {
  left: 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: 1250px) {
  .header {
    display: none;
  }
  #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;
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#banner .bg {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: -1;
}
#banner .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba( 0, 0, 0, 0.4);
}
#banner .bg::after {
  content: "";
  position: absolute;
  height: 15%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, #212322));
  background-image: -webkit-linear-gradient(transparent, #212322 80%);
  background-image: -moz-linear-gradient(transparent, #212322 80%);
  background-image: linear-gradient(transparent, #212322 80%);
}
#banner .bg img {
  opacity: 0;
}
#banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 40%;
}
#banner h2 {
  line-height: 1;
  font-weight: bold;
  color: #FFFFFF;
  text-transform: uppercase;
}
#banner h2 span {
  display: block;
  color: var(--color);
}
#banner p {
  color: #FFFFFF;
}
#banner .baseBtn span {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(#c1935f), color-stop(#ffd67d), to(#c49964));
  background: -webkit-linear-gradient(left, #ffffff 50%, #c1935f, #ffd67d, #c49964);
  background: -moz-linear-gradient(left, #ffffff 50%, #c1935f, #ffd67d, #c49964);
  background: linear-gradient(90deg, #ffffff 50%, #c1935f, #ffd67d, #c49964);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.yuy {
  height: auto;
}
.yuy > span {
  color: #FFFFFF;
}
.yuy > span img {
  width: 30px;
}
.home-1 {
  padding-top: 1.5em;
  position: relative;
  z-index: 10;
}
.home-1 .text {
  opacity: .65;
}
.home-1 .Tit {
  line-height: 1.2;
}
.home-1 .Tit span {
  color: var(--color);
}
.home-1 .desc::before {
  content: "";
  display: block;
  width: 60px;
  border-bottom: 1px solid #000;
  opacity: .62;
}
.home-1 .list li {
  transition: .3s ease;
}
.home-1 .list li.line {
  margin: auto 0;
  width: 1px;
  height: 50px;
  background-color: #000000;
  opacity: .33;
}
.home-1 .list li .num {
  line-height: 1;
  font-family: 'MicrogrammaD-BoldExte';
}
.home-1 .list li:hover {
  color: #ea0029;
}
/*.home-2 .Tit {
  line-height: .9;
}
.home-2 > div:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.home-2 > div:nth-of-type(3) {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.home-2 .box {
  padding: 7em 3em 6em;
}
.home-2 ul {
  height: 100%;
}
.home-2 ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}*/
@-webkit-keyframes ro {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes ro {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ro {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.home-3 {
  position: relative;
  z-index: 10;
}
.home-3 .Tag {
  color: var(--color);
}
.home-3 .Tit {
  line-height: .9;
}
.home-3 .box {
  position: relative;
}
.home-3 .box::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: var(--color);
  border-radius: 28px;
  background-image: url(../images/home3-bg.png);
  background-size: 85% auto;
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.home-3 .box .icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
}
.home-3 .box .icon img {
  opacity: .5;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.home-3 .box .icon::before,
.home-3 .box .icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  border: 2px dashed #4e4e4e;
  opacity: .23;
  -webkit-animation: ro 10s linear infinite;
  -moz-animation: ro 10s linear infinite;
  animation: ro 10s linear infinite;
}
.home-3 .box .icon::after {
  top: 10%;
  bottom: 10%;
  left: 10%;
  right: 10%;
  border-color: #000000;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
  animation-direction: reverse;
}
.home-3 .box .dot {
  margin: auto;
  width: 25px;
  height: 25px;
  background-color: #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 4px 2px 21px rgba(134, 134, 134, 0.41);
  box-shadow: 4px 2px 21px rgba(134, 134, 134, 0.41);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-3 .box .dot::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin-left: 7px;
  margin-top: 7px;
  border-radius: inherit;
  background-color: var(--color);
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.home-3 .box .name {
  line-height: 1.25;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.home-3 .box .text {
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.home-3 .box:hover::before {
  opacity: 1;
}
.home-3 .box:hover .icon img {
  opacity: 1;
}
.home-3 .box:hover .icon::after {
  opacity: 1;
}
.home-3 .box:hover .dot {
  background-color: rgba(255, 255, 255, 0.3);
}
.home-3 .box:hover .dot::after {
  background-color: #2b2b2b;
}
.home-3 .box:hover .name {
  opacity: 1;
}
.home-3 .box:hover .text {
  opacity: 1;
}
.home-3 .line {
  width: 100%;
  top: 202px;
  border-bottom: 2px solid #4e4e4e;
  opacity: .2;
}
#footer {
  color: #FFFFFF;
  background-color: #080808;
  position: relative;
  z-index: 2;
}
#footer .Tag {
  color: var(--color);
}
#footer .Tit {
  line-height: 1.2;
}
#footer .form {
  border-bottom: 1px solid #5b5b5b;
}
#footer .form li {
  position: relative;
}
#footer .form li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  border-left: 1px solid #292828;
}
#footer .form li:last-of-type {
  position: absolute;
  top: 0;
  right: 0;
}
#footer .form input {
  padding: 0 5px;
  width: 100%;
  height: 54px;
  border: 0;
  background-color: transparent;
}
#footer .form input::-webkit-input-placeholder {
  font-weight: bold;
}
#footer .form input:-moz-placeholder {
  font-weight: bold;
}
#footer .form input::-moz-placeholder {
  font-weight: bold;
}
#footer .form input:-ms-input-placeholder {
  font-weight: bold;
}
#footer .form input::placeholder {
  font-weight: bold;
}
#footer .form input[name="content"] {
  padding-right: 200px;
}
#footer .form button {
  border: 0;
}

#footer .form button span {
  background: transparent;
  -webkit-text-fill-color: unset;
}

#footer .form button:hover {
  background-color: #ea0029;
  color: #FFFFFF;
}

#footer .foot-center > div {
  max-width: 320px;
}
#footer .foot-center li {
  opacity: .55;
}
#footer .foot-bottom {
  border-top: 1px solid #464646;
}
img.login {
  height: 18px;
}
#ewm {
  width: 133px;
  border: 5px solid #FFFFFF;
}
#goback {
  cursor: pointer;
}
.fixed-box {
  background-color: #212322;
  margin-bottom: 180px;
  --top: 90px;
  position: relative;
  z-index: 11;
}
.fixed-box .tab_card {
  position: absolute;
  z-index: 1;
  left: 5%;
  top: 0;
  line-height: 47px;
  min-width: 320px;
  background-color: #dab38d;
  border-radius: 10px 10px 0 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.fixed-box .tab_card::before,
.fixed-box .tab_card::after {
  content: "";
  position: absolute;
  top: 8px;
  border-bottom: 39px solid #dab38d;
}
.fixed-box .tab_card::before {
  right: 100%;
  border-left: 15px solid transparent;
}
.fixed-box .tab_card::after {
  left: 100%;
  border-right: 15px solid transparent;
}
.fixed-box .panel {
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-transform: translateY(var(--top));
  -moz-transform: translateY(var(--top));
  -ms-transform: translateY(var(--top));
  transform: translateY(var(--top));
}
.fixed-box .panel:nth-child(2) {
  -webkit-transform: translateY(-webkit-calc(var(--top) * 2));
  -moz-transform: translateY(-moz-calc(var(--top) * 2));
  -ms-transform: translateY(calc(var(--top) * 2));
  transform: translateY(calc(var(--top) * 2));
}
.fixed-box .panel:nth-child(3) {
  -webkit-transform: translateY(-webkit-calc(var(--top) * 3));
  -moz-transform: translateY(-moz-calc(var(--top) * 3));
  -ms-transform: translateY(calc(var(--top) * 3));
  transform: translateY(calc(var(--top) * 3));
}
.fixed-box .box {
  height: 100%;
  position: relative;
  border-radius: 50px 50px 0 0;
}
.fixed-box .box .content {
  width: 100%;
  left: 0;
  bottom: 20%;
}
.fixed-box .box .content .left {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, var(--color)), color-stop(80%, transparent));
  background-image: -webkit-linear-gradient(left, var(--color) 40%, transparent 80%);
  background-image: -moz-linear-gradient(left, var(--color) 40%, transparent 80%);
  background-image: linear-gradient(to right, var(--color) 40%, transparent 80%);
}
.fixed-box .box .content .left .tit {
  line-height: 1;
}
.fixed-box .box .content .left .txt {
  max-width: 530px;
}
.fixed-box .box .content a.link {
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.fixed-box .box .content a.link:hover {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.fixed-box .box2 .content {
  bottom: 30%;
}
.fixed-box .box3 {
  border-radius: 50px;
}
.fixed-box .box3 .content {
  bottom: 10%;
}
@media (max-width: 1900px) {
  .header .nav .ui.menu .menu-box ul.menu > li > a {
    min-width: auto;
  }
}
@media (max-width: 1700px) {
  .home-3 .line {
    top: 190px;
  }
}
@media (max-width: 1450px) {
  .header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 14px;
  }
  .home-3 .line {
    top: 184px;
  }
}
@media (max-width: 1250px) {
  .home-3 .line {
    top: 174px;
  }
}
@media (max-width: 1000px) {
  #banner .content {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .home-3 .line {
    top: 169px;
  }
  .home-1 .desc {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .home-1 .left .btns {
    display: none;
  }
  .home-1 .right .btns {
    display: block;
  }
  .home-1 .list li.line {
    display: none;
  }
  .home-1 .list li {
    width: 50%;
  }
  .home-1 .list li > div {
    text-align: center;
  }
  /*.home-2 ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .home-2 ul li {
    padding-top: 22%;
  }*/
  .hide-1000 {
    display: none;
  }
  #footer .foot-center > div {
    max-width: 100%;
  }
  .fixed-box {
    margin-bottom: 0;
  }
  .fixed-box .panel {
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .fixed-box .box .content {
    bottom: 50%!important;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }
  .fixed-box .tab_card {
    min-width: auto;
    display: none;
  }
  .fixed-box .box {
    border-radius: 25px 25px 0 0;
  }
  .fixed-box .box3 {
    border-radius: 25px;
  }
  .fixed-box .box .content .right {
    display: none;
  }
  #footer .form li {
    width: 50%;
  }
  #footer .form li:nth-of-type(3) {
    width: 100%;
  }
  #footer .form li:last-of-type {
    width: 100%;
    position: static;
  }
  #footer .form input[name="content"] {
    padding-right: 5px;
  }
  .baseBtn {
    min-width: auto;
    height: 45px;
    line-height: 45px;
  }
}
@media (max-width: 700px) {
  .home-3 .line {
    top: 163px;
  }
}
@media (max-width: 500px) {
  #footer .form li {
    width: 100%;
  }
}



.footer-form {
  margin-top: -1em;
  color: white;
}
.footer-form .form input {
  width: 100%;
  padding: 1.66666667em 2em;
  border-radius: 3em;
  background-color: white;
  border: none;
  color: black;
}
.footer-form .form input::-webkit-input-placeholder {
  color: black;
}
.footer-form .form input:-moz-placeholder {
  color: black;
}
.footer-form .form input::-moz-placeholder {
  color: black;
}
.footer-form .form input:-ms-input-placeholder {
  color: black;
}
.footer-form .form input::placeholder {
  color: black;
}
.footer-form .form input[type="submit"] {
  background-color: var(--color);
  color: white;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
.footer-form .form input[type="submit"]:hover {
  background-color: white;
  color: var(--color);
}
.footer-form .form li.wid-100 {
  grid-column: span 3;
}
.footer-form.contact .text {
  color: inherit;
}
.footer-form.contact .form input::-webkit-input-placeholder {
  color: var(--color);
}
.footer-form.contact .form input:-moz-placeholder {
  color: var(--color);
}
.footer-form.contact .form input::-moz-placeholder {
  color: var(--color);
}
.footer-form.contact .form input:-ms-input-placeholder {
  color: var(--color);
}
.footer-form.contact .form input::placeholder {
  color: var(--color);
}
.footer-form.contact input[type="submit"] {
  border: 1px solid white;
  background-color: transparent;
  color: white;
}




.more em {
  min-width: 8.88888889em;
  height: 3em;
  border-radius: 3em;
  padding: 0 1.33333333em;
  border: 1px solid #bdbec0;
  color: #5e5e5e;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more i {
  width: 3em;
  height: 3em;
  border-radius: 100%;
  background-color: #1c1c1c;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-left: -1em;
}
.more.white em {
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}
.more.white i {
  background-color: white;
  color: var(--color);
}
.more:hover em {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.more:hover i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
span.tag {
  color: #dab38d;
}
span.h2 {
  line-height: 1;
}



.inner-banner .mbx span {
  color: var(--color);
}
.inner-banner .mbx {
  font-size: 0;
}
.inner-banner .mbx * {
  font-size: 16px;
}
.inner-banner .mbx a:after {
  content: '\e7de';
  font-family: 'iconfont';
  font-size: .5em;
  margin: 0 1em;
  color: var(--color);
  position: relative;
  top: -.2em;
}
.inner-page {
  border-radius: 1em;
  margin: -1em 0;
  -o-box-shadow: 0 0 0.7em rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0 0 0.7em rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 0.7em rgba(0, 0, 0, 0.2);
  background-color: white;
  position: relative;
  z-index: 3;
}
.inner-page .ProductBox {
  padding: 1em 1em 2em;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 1;
  height: 100%;
}
.inner-page .ProductBox:before {
  content: '';
  width: 100%;
  height: 42%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #f2f2f2;
}
.inner-page .ProductBox a.img-box {
  max-width: 54%;
  margin: 0 auto;
  -webkit-box-reflect: below 0px linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.2));
}
.inner-page .ProductBox .btn a {
  width: 10em;
  padding: 0 1em;
  height: 2.71428571em;
  -webkit-transition: .5s all,color 0s;
  -moz-transition: .5s all,color 0s;
  transition: .5s all,color 0s;
  border: 1px solid transparent;
}
.inner-page .ProductBox .btn a:first-child {

}
.inner-page .ProductBox .btn a:last-child {
  background-color: var(--color);
  color: white;
}
.inner-page .ProductBox .btn a:hover {
  background-color: black !important;
  border-color: black !important;
  color: white !important;
}
.inner-page .ProductBox:hover {
  background-color: var(--color);
  color: white;
}
.inner-page .ProductBox:hover span.tag {
  color: inherit;
}
.inner-page .ProductBox:hover .btn a:first-child {
  border-color: white;
  background-color: white;
  color: var(--color);
}
.inner-page .ProductBox:hover .btn a:last-child {
  background-color: transparent;
  color: white;
  border-color: white;
}
.inner-page .m-page > div {
  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;
  gap: .5em;
}
.inner-page .m-page > div a,
.inner-page .m-page > div span {
  height: 2.25em;
  width: 2.25em;
  border-radius: .3em;
  border: 1px solid #d4d4d4;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page > div a:hover,
.inner-page .m-page > div span.current {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.inner-page .relatedPro .box {
  height: 100%;
  border: 1px solid #c8c8c8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .relatedPro .box a.img-box {
  padding: 7%;
  border-radius: inherit;
}
.inner-page .relatedPro .box .btn {
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.inner-page .relatedPro .box .btn a {
  height: 2.71428571em;
  min-width: 2.71428571em;
  padding: 0 1.42857143em;
  border-radius: 1.42857143em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .relatedPro .box .btn a:first-child {
  padding: 0;
  background-color: #ccc;
}
.inner-page .relatedPro .box .btn a:first-child i {
  font-size: 1.5em;
}
.inner-page .relatedPro .box .btn a:last-child {
  background-color: var(--color);
  color: white;
  margin-top: -2.71428571em;
  opacity: 0;
}
.inner-page .relatedPro .box .btn a:last-child:hover {
  background-color: black;
}
.inner-page .relatedPro .box:hover {
  border-color: var(--color);
}
.inner-page .relatedPro .box:hover .btn a:last-child {
  opacity: 1;
}
.inner-page .relatedPro .slick li {
  height: 100%;
  padding-bottom: 1.35714286em;
}
.inner-page .relatedPro .slickDots li {
  margin: 0 1.2em;
  background-color: #ccc;
  border: none;
}
.inner-page .relatedPro .slickDots li.slick-active {
  background-color: var(--color);
}
.inner-page span.h2 em {
  color: var(--color);
}
.inner-page .slickBtn {
  font-size: 30px;
}
.inner-page .slickBtn div {
  background-color: #1c1c1c;
}
.inner-page .slickBtn div.next {
  margin-left: .5em;
}
.inner-page .slickBtn div:hover,
.inner-page .slickBtn div.prev {
  background-color: var(--color);
}
.inner-page .honor .slickBtn div {
  border: 1px solid black;
  background-color: black;
}
.inner-page .honor .slickBtn div.prev {
  background-color: transparent;
  color: black;
}
.inner-page .honor .slickBtn div:hover {
  background-color: var(--color);
  color: white !important;
  border-color: var(--color);
}
.inner-page .honor .slick-track {
  align-items: center;
}
.inner-page .news-cat {
  line-height: 1;
}
.inner-page .news-cat a {
  padding: .8em 2.5em;
  border-radius: 2em;
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .news-cat a.active,
.inner-page .news-cat a:hover {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.product-page .top .text {
  color: #171717;
  max-height: 280px;
  overflow: auto;
  line-height: 1.8;
}
.prodet-page .prodet-1 .left .small .slick-track {
  display: block;
}
.prodet-page .prodet-1 .left .small .arrows {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: black;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .left .small .slick-track .slick-slide>div,
.prodet-page .prodet-1 .left .small .slick-track .slick-slide {
  height: auto;
  width: 100%;
}
.prodet-page .prodet-1 .left .small .arrows:hover {
  background-color: var(--color);
}
.prodet-page .prodet-1 .left .small ul {
  margin: -0.5em 0;
}
.prodet-page .prodet-1 .left .small ul li {
  padding: .5em 0;
}
/*.prodet-page .prodet-1 .left .big {
  -webkit-box-reflect: below -15% linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
}*/
.prodet-page .prodet-1 .right h1 {
  line-height: 1.2;
}
.prodet-page .prodet-2 .top {
  border-bottom: 1px solid #cdcdcd;
}
.prodet-page .prodet-2 .top span {
  height: 3.36363636em;
  padding-left: .8em;
  padding-right: 2.45454545em;
  border-top-left-radius: 0.72727273em;
  border-top-right-radius: 0.72727273em;
  background-color: var(--color);
  color: white;
}
.prodet-page .prodet-2 .top i.plus {
  width: 1em;
  height: 1em;
  margin: 0 1em;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.prodet-page .prodet-2 .top i.plus:before,
.prodet-page .prodet-2 .top i.plus:after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: black;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.prodet-page .prodet-2 .top i.plus:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.prodet-page .prodet-2 .content table {
  color: black;
}
.prodet-page .prodet-2 .content table tbody {
  table-layout: fixed;
}
.prodet-page .prodet-2 .content table tr td {
  padding: 1em;
  border-color: #dcdcdc;
}

.prodet-page .prodet-2 .list {
  -webkit-filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.09));
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.09));
}
.prodet-page .prodet-2 .list li {
  height: 100%;
}
.prodet-page .prodet-2 .list .box {
  background-color: white;
  height: 100%;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  justify-content: flex-start;
}
/*.prodet-page .prodet-2 .list .box .text {
  margin-top: auto;
}*/
.prodet-page .prodet-2 .list .box i {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.prodet-page .prodet-2 .list .box i img {
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .list .box i:before,
.prodet-page .prodet-2 .list .box i:after {
  content: '';
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background-color: var(--color);
  position: absolute;
  z-index: -1;
}
.prodet-page .prodet-2 .list .box i:before {
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.prodet-page .prodet-2 .list .box i:after {
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%) scale(0.6);
  -moz-transform: translate(-50%, 50%) scale(0.6);
  -ms-transform: translate(-50%, 50%) scale(0.6);
  transform: translate(-50%, 50%) scale(0.6);
}
.prodet-page .prodet-2 .list .box:hover {
  background-color: var(--color);
  color: white;
}
.prodet-page .prodet-2 .list .box:hover i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.prodet-page .prodet-2 .list .box:hover .text {
  color: inherit;
}
.prodet-page .prodet-3 {
  background-color: #f7f7f7;
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
}
.prodet-page .prodet-3 .form ul li input,
.prodet-page .prodet-3 .form ul li textarea {
  width: 100%;
  padding: 1em 2em;
  background-color: white;
  border: none;
}
.prodet-page .prodet-3 .form ul li textarea {
  height: 14.44444444em;
}
.prodet-page .prodet-3 .form ul li button {
  height: 2.75em;
  width: 10em;
  padding: 0 1em;
  max-width: 100%;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border: none;
}
.prodet-page .prodet-3 .form ul li button:hover {
  background-color: black;
}
.prodet-page .prodet-4 span.h2 em {
  color: var(--color);
}
.construction-page .construction-1 .text {
  width: 90%;
  max-width: 1250px;
  margin-top: -10%;
  padding: 3.5%;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.09);
}
.construction-page .construction-2 .list i {
  width: 3.46153846em;
  height: 3.46153846em;
  border-radius: 100%;
  background-color: var(--color);
  -webkit-box-shadow: -0.1em -0.1em 0.2em rgba(255, 121, 45, 0.2);
  box-shadow: -0.1em -0.1em 0.2em rgba(255, 121, 45, 0.2);
  position: relative;
  z-index: 1;
  color: var(--color);
}
.construction-page .construction-2 .list i:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: -0.2em;
  top: -0.08em;
  border-radius: inherit;
  background-color: white;
  -webkit-box-shadow: inset -0.2em -0.08em 0.2em rgba(255, 121, 45, 0.2);
  box-shadow: inset -0.2em -0.08em 0.2em rgba(255, 121, 45, 0.2);
}
.construction-page .construction-2 .list span {
  line-height: 1.2;
}
.construction-page .construction-3 {
  background-color: #f8f8f8;
}
.construction-page .construction-3 .relatedPro .img-box {
  background-color: #f8f8f8;
}
.construction-page .construction-3 .relatedPro .img-box img {
  mix-blend-mode: darken;
}
/*.industrial-page .industrial-1 .left .img {
  width: 140%;
}*/
.industrial-1 .right {
  position: relative;
  z-index: 1;
}
.industrial-page .industrial-1 .right span.h2 {
  max-width: 640px;
}
.app-page .industrial-1 .right span.h2 {
  width: 100%;
}
.industrial-page .industrial-1 .right .info {
  max-width: 640px;
}
.industrial-page .industrial-1 .right .info li {
  padding: .3em .5em;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.industrial-page .industrial-1 .right .info li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(white), to(var(--color)));
  background-image: -webkit-linear-gradient(right, white, var(--color));
  background-image: -moz-linear-gradient(right, white, var(--color));
  background-image: linear-gradient(to left, white, var(--color));
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.industrial-page .industrial-1 .right .info li:hover {
  color: white;
}
.industrial-page .industrial-1 .right .info li:hover:before {
  opacity: 1;
}
.industrial-page .industrial-1 .right .dots p {
  margin-bottom: .3em;
}
.industrial-page .industrial-1 .right .dots p i {
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color);
}
.industrial-page .industrial-1 .box:not(.flex-drr) .left {
  direction: rtl;
}
.industrial-page .industrial-3 .box {
  width: 100%;
  position: relative;
}
.industrial-page .industrial-3 .box li {
  height: 100%;
  padding-top: 1.33333333em;  
}
.industrial-page .industrial-3 .box:before {
  content: '';
  width: 150%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 10%;
  top: 0;
  background-color: #f8f8f8;
}
.industrial-page .industrial-3 .box .box2 {
  border: 1px solid #b5b5b5;
  height: 100%;
  position: relative;
  background-color: white;
}
.industrial-page .industrial-3 .box .box2 span.num {
  width: 2.66666667em;
  height: 3.05555556em;
  background-color: var(--color);
  color: white;
  margin-top: -1.33333333em;
}
.industrial-page .industrial-3 .box .box2 span.h6 {
  line-height: 1.2;
}
.industrial-page .industrial-3 .box .box2 > i {
  height: 3.45em;
}
.industrial-page .industrial-3 .box .box2 > i img {
  max-height: 100%;
}
.industrial-page .industrial-3 .box .box2 .border i {
  position: absolute;
  background-color: var(--color);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  width: 0;
  height: 0;
}
.industrial-page .industrial-3 .box .box2 .border i:nth-child(1) {
  height: 1px;
  left: 0;
  top: -1px;
}
.industrial-page .industrial-3 .box .box2 .border i:nth-child(2) {
  width: 1px;
  right: -1px;
  top: 0;
}
.industrial-page .industrial-3 .box .box2 .border i:nth-child(3) {
  height: 1px;
  right: 0;
  bottom: -1px;
}
.industrial-page .industrial-3 .box .box2 .border i:nth-child(4) {
  width: 1px;
  left: -1px;
  bottom: 0;
}
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(1),
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(3) {
  width: 100%;
}
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(2),
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(4) {
  height: 100%;
}
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(1) {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(2) {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(3) {
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  transition-delay: .6s;
}
.industrial-page .industrial-3 .box .box2:hover .border i:nth-child(4) {
  -webkit-transition-delay: .9s;
  -moz-transition-delay: .9s;
  transition-delay: .9s;
}
.solar-page .solar-1 .content {
  margin-left: auto;
  margin-right: 2%;
  margin-top: -22%;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  padding: 3.5%;
}
.solar-page .solar-2 .list ul {
  padding: 0 1%;
}
.solar-page .solar-2 .list ul li {
  margin: 0 -5%;
  padding-top: 110%;
}
.solar-page .solar-2 .list ul li:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #989898;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.solar-page .solar-2 .list ul li:after {
  content: '';
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  background-color: white;
  height: 100%;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.solar-page .solar-2 .list ul li .content {
  width: 100%;
  padding: 0 15%;
  font-size: 10px;
}
.solar-page .solar-2 .list ul li .content span.num {
  line-height: .8;
  margin-bottom: -0.3em;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(var(--color)));
  background-image: -webkit-linear-gradient(bottom, white, var(--color));
  background-image: -moz-linear-gradient(bottom, white, var(--color));
  background-image: linear-gradient(to top, white, var(--color));
}
.solar-page .solar-2 .list ul li .content i.icon {
  height: 2em;
  display: block;
}
.solar-page .solar-2 .list ul li .content i.icon img {
  max-height: 100%;
}
.solar-page .solar-2 .list ul li:hover:before {
  border-color: var(--color);
}
.solar-page .solar-2 .list.active li:after {
  width: 0;
}
.solar-page .solar-2 .list.active li:nth-child(2):after {
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  transition-delay: .5s;
}
.solar-page .solar-2 .list.active li:nth-child(3):after {
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  transition-delay: 1s;
}
.solar-page .solar-2 .list.active li:nth-child(4):after {
  -webkit-transition-delay: 1.5s;
  -moz-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
/*.app-page .left .img {
  width: 130%;
}*/
.app-page .slide:nth-child(even) .left {
  direction: rtl;
}
/*.app-page .slide:nth-child(even) .right {
  text-align: right;
  direction: rtl;*/
}
.app-page .slide:nth-child(even) .right * {
  direction: ltr;
}
.about-page .about-1 span.h6 {
  line-height: 1.2;
}
.about-page .about-1 .text em {
  color: var(--color);
}
.about-page .about-1 .bottom {
  margin-top: -15%;
}
.about-page .about-1 .bottom img {
  z-index: -1;
  position: relative;
}
.about-page .about-1 .bottom .pos {
  bottom: 13%;
  width: 100%;
}
.about-page .about-1 .bottom .pos .play-btn {
  position: relative;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
  margin-left: auto;
  font-size: inherit;
  left: auto;
}
.about-page .about-2 {
  position: relative;
}
.about-page .about-2:before {
  content: '';
  width: 100%;
  height: 20%;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-page .about-2 .list ul li .box {
  padding: 8%;
  background-color: white;
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  position: relative;
  background-repeat: no-repeat;
  background-position: center right -10%;
  background-size: 35% auto;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 100%;
}
.about-page .about-2 .list ul li .box:before,
.about-page .about-2 .list ul li .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
.about-page .about-2 .list ul li .box:before {
  background-image: unset;
}
.about-page .about-2 .list ul li .box:after {
  opacity: 0;
  background-color: transparent;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-2 .list ul li .box i.icon {
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .list ul li .box i.icon:before,
.about-page .about-2 .list ul li .box i.icon:after {
  content: '';
  width: 2em;
  height: 2em;
  border-radius: 100%;
  position: absolute;
  background-color:#ea0029;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .list ul li .box i.icon:before {
  width: .5em;
  height: .5em;
  left: -0.25em;
  top: -0.25em;
}
.about-page .about-2 .list ul li .box i.icon:after {
  right: -0.5em;
  top: -0.5em;
  display: none;
}
.about-page .about-2 .list ul li .box .content {
  margin-left: auto;
}
.about-page .about-2 .list ul li .box .content span.h6 {
  line-height: 1;
}
.about-page .about-2 .list ul li .box .content span.h6 sub {
  vertical-align: bottom;
  line-height: .8;
  display: inline-block;
}
.about-page .about-2 .list ul li .box .content hr {
  margin: .2em 0;
  opacity: .3;
}
.about-page .about-2 .list ul li .box:hover {
  color: white;
  background-color: var(--color);
}
.about-page .about-2 .list ul li .box:hover:after {
  opacity: .2;
}
.about-page .about-2 .list ul li .box:hover i.icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-2 .list ul li .box:hover i.icon:before {
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.about-page .about-2 .list ul li .box:hover i.icon:after {
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.about-page .about-3 {
  position: relative;
}
.about-page .about-3:after,
.about-page .about-3:before {
  content: '';
  width: 100%;
  height: 25vh;
  margin-left: auto;
  display: block;
  position: -webkit-sticky;
  position: sticky;
}
.about-page .about-3:before {
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(white));
  background-image: -webkit-linear-gradient(bottom, transparent, white);
  background-image: -moz-linear-gradient(bottom, transparent, white);
  background-image: linear-gradient(to top, transparent, white);
  top: 0;
}
.about-page .about-3:after {
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(white));
  background-image: -webkit-linear-gradient(top, transparent, white);
  background-image: -moz-linear-gradient(top, transparent, white);
  background-image: linear-gradient(to bottom, transparent, white);
}
.about-page .about-3 .img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  padding-top: 10%;
}
.about-page .about-3 .img img {
  position: -webkit-sticky;
  position: sticky;
  bottom: -15%;
  max-width: 61.09375%;
}
.about-page .about-3 .box .left {
  top: 25%;
  position: -webkit-sticky;
  position: sticky;
  padding-bottom: 25%;
}
.about-page .about-3 .box .right {
  position: relative;
}
.about-page .about-3 .box .right .year {
  line-height: .8;
  position: -webkit-sticky;
  position: sticky;
  top: 40%;
  color: var(--color);
}
.about-page .about-3 .box .right .year svg {
  position: absolute;
  left: 1.2em;
  top: 60%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  z-index: -1;
}
.about-page .about-3 .box .right .year svg .circle1 {
  stroke: var(--color);
  stroke-dasharray: 566;
  stroke-dashoffset: 566;
}
.about-page .about-3 .box .right .list li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .box .right .list li .year {
  margin-right: 1em;
  color: #ddd;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 2.733em;
}
.about-page .about-3 .box .right .list li .content {
  padding: 7% 0;
  border-top: 2px solid #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .box .right .list li.active {
  opacity: 1;
}
.about-page .about-3 .box .right .list li.active .year {
  color: var(--color);
}
.about-page .about-3 .box .right .list li.active .content {
  border-top-color: var(--color);
}
/*.about-page .about-4 .list ul:last-child {
  direction: rtl;
}*/
.about-page .about-5 {
  background-repeat: no-repeat;
  background-position: center top 33%;
  background-size: contain;
}
.about-page .about-5 .list ul {
  -webkit-filter: drop-shadow(0 3px 24px rgba(0, 0, 0, 0.13));
  filter: drop-shadow(0 3px 24px rgba(0, 0, 0, 0.13));
}
.about-page .about-5 .list ul li,
.about-page .about-5 .list ul .box {
  height: 100%;
}
.about-page .about-5 .list ul .box {
  background-color: white;
  overflow: hidden;
}
.about-page .about-5 .list ul .content {
  padding: 8%;
}
.about-page .about-5 .list ul .content a.link i {
  color: var(--color);
}
.faq-page span.h6 {
  padding: 1em 1.6em;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page span.h6 i {
  width: 1em;
  height: 1em;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}
.faq-page span.h6 i:after,
.faq-page span.h6 i:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--color);
  position: absolute;
  left: 0;
  top: 50%;
}
.faq-page span.h6 i:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq-page .text {
  padding: 1.5em 3em 0;
}
.faq-page li.active span.h6 {
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.07);
}
.faq-page li.active span.h6 i:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.projects-page .projects-1 .bottom ul.font-30 {
  margin: -1em;
}
.projects-page .projects-1 .bottom ul.font-30 li {
  padding: 1em;
  height: 100%;
  position: relative;
  margin-bottom: .5em;
}
.projects-page .projects-1 .bottom ul.font-30 li a {
  height: 95%;
  position: relative;
}
.projects-page .projects-1 .bottom ul.font-30 li a img {
  height: 100%;
  object-position: center;
  object-fit: cover;
  width: 100%;
}
.projects-page .projects-1 .bottom ul.font-30 .slick-track {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.projects-page .projects-1 .bottom ul.font-30 .slick-track .slick-slide {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}.projects-page .projects-1 .bottom ul.font-30 .slick-track .slick-slide > div:last-child {
  margin-top: auto;
}
.projects-page .projects-1 .bottom .content {
  width: 80%;
  padding: 4% 5%;
  background-color: rgba(255, 255, 255, 0.95);
  /*margin-top: -15%;*/
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: absolute;
  left: 10%;
  bottom: 20px;
  /*margin-bottom: 20px;*/
}
.projects-2 .map {
  position: relative;
}
.projects-2 .map li {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.projects-2 .map li i {
  width: 100%;
  position: absolute;
  padding-top: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.projects-2 .map li i:before,
.projects-2 .map li i:after {
  content: '';
  width: 150%;
  height: 150%;
  position: absolute;
  left: -25%;
  top: -25%;
  border-radius: 100%;
  background-color: rgba(221, 168, 138, 0.6);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.projects-2 .map li i:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.projects-2 .map li span {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.projects-2 .map li .pre {
  zoom: .4;
  display: inline-flex;
  margin: 0 auto;
}
.projects-2 .map li:nth-child(1) {
  left: 18%;
  top: 29%;
}
.projects-2 .map li:nth-child(1) .pre {
  zoom: .6;
}
.projects-2 .map li:nth-child(2) {
  left: 18%;
  top: 50%;
}
.projects-2 .map li:nth-child(3) {
  left: 21.5%;
  top: 39%;
}
.projects-2 .map li:nth-child(3) .pre {
  zoom: .7;
}
.projects-2 .map li:nth-child(4) {
  left: 24%;
  top: 58%;
}
.projects-2 .map li:nth-child(5) {
  left: 25%;
  top: 67%;
}
.projects-2 .map li:nth-child(6) {
  left: 28%;
  top: 84%
}
.projects-2 .map li:nth-child(7) {
  left: 32%;
  top: 70%;
}
.projects-2 .map li:nth-child(8) {
  left: 46%;
  top: 62%;
}
.projects-2 .map li:nth-child(8) .pre {
  zoom: .3;
}
.projects-2 .map li:nth-child(9) {
  left: 47.5%;
  top: 38%;
}
.projects-2 .map li:nth-child(10) {
  left: 49%;
  top: 31%;
}
.projects-2 .map li:nth-child(11) {
  left: 50%;
  top: 63%;
}
.projects-2 .map li:nth-child(12) {
  left: 52%;
  top: 33%;
}
.projects-2 .map li:nth-child(13) {
  left: 52%;
  top: 41%
}
.projects-2 .map li:nth-child(14) {
  left: 55%;
  top: 24%;
}
.projects-2 .map li:nth-child(15) {
  left: 56%;
  top: 36%;
}
.projects-2 .map li:nth-child(16) {
  left: 57%;
  top: 42%;
}
.projects-2 .map li:nth-child(17) {
  left: 54%;
  top: 51%;
}
.projects-2 .map li:nth-child(17) .pre {
  zoom: .6;
}
.projects-2 .map li:nth-child(18) {
  left: 55%;
  top: 76%;
}
.projects-2 .map li:nth-child(19) {
  left: 54%;
  top: 84%;
}
.projects-2 .map li:nth-child(20) {
  left: 64%;
  top: 37%;
}
.projects-2 .map li:nth-child(21) {
  left: 66%;
  top: 48%;
}
.projects-2 .map li:nth-child(22) {
  left: 69%;
  top: 54%;
}
.projects-2 .map li:nth-child(23) {
  left: 77%;
  top: 45%;
}
.projects-2 .map li:nth-child(23) .pre {
  zoom: .6;
}
.projects-2 .map li:nth-child(24) {
  left: 77%;
  top: 57%;
}
.projects-2 .map li:nth-child(25) {
  left: 75.5%;
  top: 64%;
}
.projects-2 .map li:nth-child(26) {
  left: 81.5%;
  top: 59%;
}
.projects-2 .map li:nth-child(27) {
  left: 80%;
  top: 66%;
}
.projects-2 .map li:nth-child(28) {
  left: 85%;
  top: 79%;
}
.projects-page .projects-3 .list {
  -webkit-filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.1));
}
.projects-page .projects-3 .list ul:last-child {
  direction: rtl;
}
.projects-page .projects-3 .list ul a.img-box {
  padding: 8% 10%;
  background-color: white;
}
.technology-page .technology-1 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
.technology-page .technology-1 .right {
  width: 60%;
  margin-right: -15%;
}
.technology-page .technology-1 .right img {
  width: 100%;
}
.esg-page .esg-2 .boxBorder {
  background-color: white;
  margin-top: -10%;
  position: relative;
  z-index: 1;
}
.esg-page .esg-2 .boxBorder .list li {
  padding: 3% 2% 2%;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.16);
  background-color: white;
}
.esg-page .esg-2 .boxBorder .list li .box {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.esg-page .esg-2 .boxBorder .list li .box i {
  height: 1em;
}
.esg-page .esg-2 .boxBorder .list li .box i img {
  max-height: 100%;
}
.esg-page .esg-2 .boxBorder .list li .box .info {
  line-height: 1.57142857;
  color: #3a3a3a;
}
.esg-page .esg-2 .boxBorder .list li .box .info p {
  margin-top: 1.42857143em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.esg-page .esg-2 .boxBorder .list li .box .info p em{
  color: var(--color);
}
.esg-page .esg-2 .boxBorder .list li .box .info p em i{
  color: #000;
}
.esg-page .esg-2 .boxBorder .list li .box .info p:before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color);
  margin-right: .8em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: .4em;
}
.esg-page .esg-2 .boxBorder .list li:hover .box {
  -webkit-transform: translateY(-23%);
  -moz-transform: translateY(-23%);
  -ms-transform: translateY(-23%);
  transform: translateY(-23%);
}
.esg-page .esg-2 .boxBorder .number {
  position: relative;
  color: white;
  font-size: 0;
  text-align: center;
}
.esg-page .esg-2 .boxBorder .number:before {
  content: '';
  width: 100%;
  height: 180%;
  border-radius: inherit;
  z-index: -1;
  background-color: var(--color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.esg-page .esg-2 .boxBorder .number span.h6 {
  line-height: 1.2;
}
.esg-page .esg-2 .boxBorder .number span.h6 sub {
  vertical-align: bottom;
}
.esg-page .esg-2 .boxBorder .number hr {
  background-color: white;
}
.esg-page .esg-2 .boxBorder .number p {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.esg-page .esg-2 .boxBorder .number li:hover p {
  -webkit-transform: translateY(120%);
  -moz-transform: translateY(120%);
  -ms-transform: translateY(120%);
  transform: translateY(120%);
}
.onestop-page .onestop-1 .box .left {
  position: relative;
  z-index: 1;
}
.onestop-page .onestop-1 .box .left:before {
  content: '';
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 70px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.09);
  border-radius: inherit;
}
.onestop-page .onestop-1 .box .right {
  width: 70%;
  margin-right: -20%;
}

.onestop-page .onestop-1 .box:nth-child(even) .right {
  margin-right: 0;
  margin-left: -20%;
}

.onestop-page .onestop-1 .box:nth-child(even) .left:before {
  right: auto;
  left: -10%;
}

.onestop-page .onestop-2 {
  padding-bottom: 26.04166667%;
  position: relative;
  z-index: 1;
}
.onestop-page .onestop-2 .list li {
  max-width: 200px;
  width: 100%;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.onestop-page .onestop-2 .list li.icon {
  width: auto;
}
.onestop-page .onestop-2 .list li span.border {
  padding-top: 100%;
  display: block;
  width: 100%;
  border-radius: 100%;
  position: relative;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-2 .list li span.border:after {
  content: '';
  width: 100%;
  height: 100%;
  border: .4em solid black;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
}
.onestop-page .onestop-2 .list li span.border:before {
  content: '';
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
  border: 1px solid black;
  z-index: -1;
  position: absolute;
  border-radius: inherit;
}
.onestop-page .onestop-2 .list li span.bl {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background-color: var(--color);
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-2 .list li span.bl:after,
.onestop-page .onestop-2 .list li span.bl:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: inherit;
  border-radius: inherit;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  zoom: .5;
}
.onestop-page .onestop-2 .list li span.bl:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.onestop-page .onestop-2 .list li .box i {
  height: 0;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-2 .list li .box i img {
  max-height: 100%;
}
.onestop-page .onestop-2 .list li .box span.h6 {
  line-height: 1.2;
}
.onestop-page .onestop-2 .list li .content {
  position: absolute;
  top: 100%;
  margin-top: 2em;
  background-color: var(--color);
  color: white;
  width: 45.83333333vw;
  border-radius: 0.5em;
  text-align: left;
  padding: 1.2em;
  left: 0;
  display: none;
}
.onestop-page .onestop-2 .list li .content span.line {
  border-bottom: 0.375em solid var(--color);
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  position: absolute;
  bottom: 100%;
}
.onestop-page .onestop-2 .list li .content span.line:before {
  content: '';
  height: 1em;
  width: 2px;
  background-color: var(--color);
  bottom: .3em;
  left: 50%;
  margin-left: -1px;
  position: absolute;
}
.onestop-page .onestop-2 .list li .content span.h6 {
  line-height: 1.2;
}
.onestop-page .onestop-2 .list li .content .text {
  color: inherit;
}
.onestop-page .onestop-2 .list li:nth-child(1) span.line {
  left: 10%;
}
.onestop-page .onestop-2 .list li:nth-child(3) .content {
  left: -10%;
}
.onestop-page .onestop-2 .list li:nth-child(3) .content span.line {
  left: 12.5%;
}
.onestop-page .onestop-2 .list li:nth-child(5) .content {
  left: -20%;
}
.onestop-page .onestop-2 .list li:nth-child(5) .content span.line {
  left: 15%;
}
.onestop-page .onestop-2 .list li:nth-child(7) .content {
  left: auto;
  right: -20%;
}
.onestop-page .onestop-2 .list li:nth-child(7) .content span.line {
  left: auto;
  right: 15%;
}
.onestop-page .onestop-2 .list li:nth-child(9) .content {
  left: auto;
  right: -10%;
}
.onestop-page .onestop-2 .list li:nth-child(9) .content span.line {
  left: auto;
  right: 12.5%;
}
.onestop-page .onestop-2 .list li:nth-child(11) .content {
  left: auto;
  right: 0;
}
.onestop-page .onestop-2 .list li:nth-child(11) .content span.line {
  left: auto;
  right: 10%;
}
.onestop-page .onestop-2 .list li.active span.border {
  opacity: 0;
}
.onestop-page .onestop-2 .list li.active span.bl {
  opacity: 1;
}
.onestop-page .onestop-2 .list li.active .box {
  color: white;
}
.onestop-page .onestop-2 .list li.active .box i {
  height: 1em;
}
.onestop-page .onestop-2 .list li.active .content {
  display: block;
}
.onestop-page .onestop-3 .list ul li {
  border: 2px solid #ebebeb;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-3 .list ul li .content {
  padding: 3% 6% 3%!important;
}
.onestop-page .onestop-3 .list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.onestop-page .onestop-3 .list ul li > i {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: #f8f8f8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-3 .list ul li > i img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-3 .list ul li span.h5 {
  line-height: 1.2;
}
.onestop-page .onestop-3 .list ul li span.h6 {
  color: #636363;
}
.onestop-page .onestop-3 .list ul li .text {
  line-height: 1.5625;
}
.onestop-page .onestop-3 .list ul li .text i {
  color: black;
  font-weight: bold;
}
.onestop-page .onestop-3 .list ul li:hover {
  border-color: var(--color);
}
.onestop-page .onestop-3 .list ul li:hover > i {
  background-color: var(--color);
}
.onestop-page .onestop-3 .list ul li:hover > i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.manufacturing-page .manufacturing-1 .text {
  color: #616161;
  line-height: 1.66666667;
}
.manufacturing-page .manufacturing-1 .list {
  font-size: 0;
}
.manufacturing-page .manufacturing-1 .list li {
  padding: 10% 10% 6%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-color: var(--color);
  border: 1px solid #c1c1c1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: white;
}
.manufacturing-page .manufacturing-1 .list li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: white;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.manufacturing-page .manufacturing-1 .list li i.icon {
  height: 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.manufacturing-page .manufacturing-1 .list li span.h6 {
  line-height: 1;
}
.manufacturing-page .manufacturing-1 .list li:hover {
  color: black;
}
.manufacturing-page .manufacturing-1 .list li:hover:before {
  opacity: 1;
}
.manufacturing-page .manufacturing-1 .list li:hover i.icon {
  -webkit-filter: unset;
  filter: unset;
}
.manufacturing-page .manufacturing-2 .list .slick-track .slick-slide > div {
  height: auto;
}
.manufacturing-page .manufacturing-2 .list ul {
  margin: -1em;
}
.manufacturing-page .manufacturing-2 .list ul li {
  padding: 1em;
}
.distributor-page .distributor-1 span.h5 {
  color: #4e4e4e;
  line-height: 1.2;
}
.distributor-page .distributor-1 .list ul li .box {
  -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.09);
}
.distributor-page .distributor-1 .list ul li .box i.icon {
  height: 5.85714286em;
  margin-top: -2.92857143em;
}
.distributor-page .distributor-2 {
  padding: 13% 0 17%;
  color: white;
}
.distributor-page .distributor-3 {
  margin-top: -10%;
}
.distributor-page .distributor-3 .list {
  background-color: white;
}
.distributor-page .distributor-3 .list ul li {
  margin-bottom: 1em;
  padding: 1.3em;
  padding-left: 3em;
  border-radius: 2.66666667em;
  border: 1px solid #c1c1c1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.distributor-page .distributor-3 .list ul li i.mask {
  content: '';
  background-image: url("../images/distributor-3.png");
  background-repeat: no-repeat;
  background-position: center right 20%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 100%;
  height: 100%;
}
.distributor-page .distributor-3 .list ul li:last-child {
  margin-bottom: 0;
}
.distributor-page .distributor-3 .list ul li span.h6 i {
  width: 2.53333333em;
  height: 2.53333333em;
  border-radius: 100%;
  position: relative;
  background-color: var(--color);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 1;
}
.distributor-page .distributor-3 .list ul li span.h6 i:after,
.distributor-page .distributor-3 .list ul li span.h6 i:before {
  content: '';
  width: .6em;
  height: 0.13333333em;
  background-color: white;
  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%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.distributor-page .distributor-3 .list ul li span.h6 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);
}
.distributor-page .distributor-3 .list ul li .text {
  display: none;
  color: inherit;
}
.distributor-page .distributor-3 .list ul li .text p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.distributor-page .distributor-3 .list ul li .text p:before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color);
  margin-right: 1em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: .4em;
}
.distributor-page .distributor-3 .list ul li:hover {
  color: white;
  background-color: var(--color);
  border-color: var(--color);
}
.distributor-page .distributor-3 .list ul li:hover i.mask {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  opacity: .5;
}
.distributor-page .distributor-3 .list ul li:hover span.h6 i {
  background-color: white;
}
.distributor-page .distributor-3 .list ul li:hover span.h6 i:after,
.distributor-page .distributor-3 .list ul li:hover span.h6 i:before {
  background-color: var(--color);
}
.distributor-page .distributor-3 .list ul li.active i.mask {
  opacity: 0;
}
.distributor-page .distributor-3 .list ul li.active span.h6 i:after {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.news-page .list ul li {
  border: 1px solid #e3e3e3;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .list ul li time {
  padding: 0 3%;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .list ul li time:before {
  content: '';
  border-left: 1em solid var(--color);
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -0.5em;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .list ul li time:after {
  content: '';
  width: 3em;
  left: 100%;
  height: 1px;
  background-color: #666;
  position: absolute;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .list ul li time em {
  line-height: 1;
}
.news-page .list ul li .content {
  padding: 0 5%;
}
.news-page .list ul li:hover {
  -webkit-box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
}
.news-page .list ul li:hover time {
  background-color: var(--color);
  color: white;
}
.news-page .list ul li:hover time:before {
  opacity: 1;
}
.news-page .list ul li:hover time:after {
  background-color: var(--color);
}
.newdet-page .newdet-1 span.tag2 i {
  color: var(--color);
}
.newdet-page .newdet-1 .text {
  line-height: 1.8;
}
.newdet-page .newdet-1 .m-link span {
  display: block;
  color: var(--color);
}
.newdet-page .newdet-1 .m-link span a {
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .newdet-1 .m-link span a:hover {
  color: var(--color);
}
.contact-page .contact-1 .info li {
  margin-bottom: 1em;
}
.contact-page .contact-1 .info li i {
  color: var(--color);
  font-size: 1.2em;
  line-height: 1;
}
.contact-page .contact-1 .info li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-1 iframe {
  height: 100%;
  border: none;
  background-color: #999;
}
@media screen and (max-width: 1450px) {
  .projects-2 .map {
    zoom: .6;
  }
  .onestop-page .onestop-2 .list li {
    max-width: 150px;
  }

}
@media screen and (max-width: 1250px) {
  .onestop-page .onestop-2 .list li .content {
    display: block;
    position: static;
    width: 100%;
    margin-top: 0;
  }
  .onestop-page .onestop-2 .list li .content span.line {
    display: none;
  }
  .onestop-page .onestop-2 .list li {
    width: 100%;
    max-width: none;
  }
  .onestop-page .onestop-2 .list li .box,
  .onestop-page .onestop-2 .list li .bl,
  .onestop-page .onestop-2 .list li span.border {
    display: none;
  }
  .onestop-page .onestop-2 .list li.icon {
    display: none;
  }
  .onestop-page .onestop-2 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
  .onestop-page .onestop-2 {
    padding-bottom: 15%;
  }
  .projects-2 .map {
    zoom: .5;
  }
  .solar-page .solar-2 .list ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .inner-page .slickBtn {
    font-size: 20px;
  }
  .technology-page .technology-1 .left {
    position: static;
  }
  .industrial-page .industrial-1 .left .img {
    width: 100%;
  }
  .solar-page .solar-1 .content {
    width: 100%;
    margin-top: 30px;
    padding: 0;
  }
  .solar-page .solar-2 .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-2 .map {
    zoom: .3;
  }
  .product-page .product-1 .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .font-32 {
    font-size: 24px;
  }
  .onestop-page .onestop-1 .box .right {
    margin-right: 0;
  }
  .onestop-page .onestop-1 .box .left:before {
    display: none;
  }
  .news-page .list ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: .5em;
  }
  .news-page .list ul li time {
    width: 20%;
  }
  .news-page .list ul li .content {
    width: 80%;
  }
  .news-page .list ul li .img-box {
    width: 100%;
    margin-bottom: .5em;
  }
  .news-page .list ul li time:after {
    display: none;
  }
  .esg-page .esg-2 .boxBorder .list li {
    width: 100%;
  }
  .esg-page .esg-2 .boxBorder .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .esg-page .esg-2 .boxBorder .list li:hover .box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .esg-page .esg-2 .boxBorder .number {
    padding-left: 5%;
    padding-right: 5%;
  }
  .about-page .about-3 .box .left {
    position: static;
  }
  .about-page .about-3 .box .right .year svg {
    width: 30vw;
  }
  .app-page .left .img {
    width: 100%;
  }
  .app-page .slide:nth-child(even) .right {
    text-align: left;
  }
  .app-page .slide:nth-child(even) .right span.tag {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .contact-page .contact-1 iframe {
    height: 250px;
  }
  .construction-page .construction-2 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .app-page .industrial-1 .right span.h2 {
    width: 100%;
  }
  .about-page .about-4 .list ul:last-child,
  .projects-page .projects-3 .list ul:last-child {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .footer-form .form ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-form .form ul li.wid-100 {
    grid-column: span 1;
  }
  .footer-form .form input {
    padding: 1em;
  }
  .distributor-page .distributor-3 .list ul li {
    padding: 1em;
    border-radius: 1em;
  }
  .distributor-page .distributor-1 .list ul li .box i.icon {
    zoom: .5;
  }
  .construction-page .construction-1 .text {
    width: 100%;
    margin-top: 0;
  }
  .about-page .about-2 .list ul li .box i.icon {
    zoom: .7;
  }
  .font-22 {
    font-size: 16px;
  }
  .esg-page .esg-2 .boxBorder .number ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .industrial-page .industrial-3 .box {
    width: 100%;
  }
  .projects-2 .map {
    zoom: .2;
  }
  .solar-page .solar-2 .list ul,
  .product-page .product-1 .list ul {
    grid-template-columns: 1fr;
  }
  .solar-page .solar-2 .list ul li {
    padding: 0;
    margin: 10px 0;
  }
  .solar-page .solar-2 .list ul li:after,
  .solar-page .solar-2 .list ul li:before {
    display: none;
  }
  .solar-page .solar-2 .list ul li .content {
    position: static;
    width: 100%;
    padding: 5%;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border: 1px solid #999;
    border-radius: 10px;
  }
  .news-page .list ul li time {
    display: none;
  }
  .news-page .list ul li .content {
    width: 100%;
  }
  .esg-page .esg-2 .boxBorder .number ul li {
    width: 100%;
  }
  .about-page .about-3 .box .right .year em {
    font-size: 1em;
  }
  .about-page .about-3 .box .right .year svg {
    width: 20vw;
  }
  .distributor-page .distributor-3 .list {
    padding: 1em;
  }
}








.product-page .init-1 .container {
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
}
.product-page .init-1 .container .swiper .swiper-slide .box .img {
    display: block;
}
.product-page .init-1 .container .swiper .swiper-slide .box .text {
    margin-top: 16px;
    text-align: center;
    display: block;
    font-weight: bold;
}
.product-page .init-1 .container .swiper .swiper-slide .box .text:hover {
    color: var(--color);
}
.product-page .init-2 .container .fl-list {
    display: inline-block;
    position: relative;
    width: 370px;
    border: solid 1px #474747;
    text-align: left;
    padding: 20px 40px 20px 28px;
    cursor: pointer;
    color: #474747;
    font-weight: 600;
}
.product-page .init-2 .container .fl-list span {
    display: block;
    position: relative;
}
.product-page .init-2 .container .fl-list span em {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product-page .init-2 .container .fl-list span i {
    position: absolute;
    line-height: 1;
    font-size: 30px;
    top: -4px;
    right: -20px;
}
.product-page .init-2 .container .fl-list ul {
    background-color: #fff;
    padding-right: 4px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 2;
    -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);
    opacity: 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
}
.product-page .init-2 .container .fl-list ul li {
    font-size: 14px;
    padding: 10px;
    line-height: 2;
    position: relative;
}
.product-page .init-2 .container .fl-list ul li a {
    display: block;
}
.product-page .init-2 .container .fl-list ul li a:hover {
    color: var(--color);
}
.product-page .init-2 .container .fl-list:hover > ul {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}


.product-page .init-2 .container .fl-list ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}

.product-page .init-2 .container .fl-list ul li:hover ul {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.product-page .init-2 .container .product-search {
    margin-left: 50px;
    border: solid 1px #474747;
}
.product-page .init-2 .container .product-search form {
    height: 64px;
    width: 365px;
    position: relative;
    font-weight: bold;
}
.product-page .init-2 .container .product-search form .text {
    width: -webkit-calc(25%);
    width: -moz-calc(25%);
    width: calc(100% - 75px);
    border: none;
    padding: 10px 24px;
}
.product-page .init-2 .container .product-search form .btn {
    width: 75px;
    background-color: var(--color);
    border: none;
    border-radius: 0;
    -o-background-size: 30px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}
.product-page .init-2 .container .product-search form .btn:hover {
    background-color: var(--color);
}

.product-page .init-3 .container .des{
    font-size: 14px;
    line-height: 2;
    margin-top: 40px;
}
.product-page .init-3 .container .des table{
    border: none;
}
.product-page .init-3 .container .des table tr{
    background: #fff;
}
.product-page .init-3 .container .des table tr td{
    border: 1px solid #ccc;
}
.product-page .init-3 .container .des table tbody > tr > td:first-child{
    background: #f6f6f6;
    min-width: 100px;
}
.product-page .init-3 .container .cat_des{
    max-height: 320px;
    margin-top: 20px;
    color: rgba(0, 0, 0, .5);
    font-size: 18px;
    line-height: 2;
    padding-right: 4px;
    overflow-y: auto;
    font-weight: 500;
}


.product-page .init-3 .container .content ul > p{
    font-size: 20px;
    margin: 60px 20px 0;
    letter-spacing: 0;
}

.product-page .init-3 .container .content ul li .box {
  height: 100%;
    cursor: pointer;
}
.product-page .init-3 .container .content ul li .box .img {
    display: block;
    border: solid 1px #dadada;
    font-size: 0;
}
.product-page .init-3 .container .content ul li .box .img img {
    width: 100%;
}
.product-page .init-3 .container .content ul li .box .title {
    margin-top: 20px;
    font-weight: 600;
}
.product-page .init-3 .container .content ul li .box .title:hover{
    color: var(--color);
}
.product-page .init-3 .container .content ul li .box .title2{
    color: #5f5f5f;
    margin-top: 10px;
    font-weight: 500;
    line-height: 2;
}
.product-page .init-3 .container .content ul li .box .slick-track{
    margin-left: 0;
}
.product-page .init-3 .container .content ul li .box .smallImg{
    margin-top: 10px;
    font-size: 0;
}
.product-page .init-3 .container .content ul li .box .smallImg .grid-box{
    margin: 0 -5px;
}
.product-page .init-3 .container .content ul li .box .smallImg .imgl{
    padding: 0 5px;
}
.product-page .init-3 .container .content ul li .box .smallImg .imgl .box{
    border: solid 1px #dadada;
}
.product-page .init-3 .container .content ul li .content_cont {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 30;
}
.product-page .init-3 .container .content ul li .content_cont .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.product-page .init-3 .container .content ul li .content_cont .content_c {
    max-width: 100%;
    background-color: #fff;
    position: absolute;
    width: 1580px;
    padding-top: 70px;
    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%);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .close {
    z-index: 2;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 46px;
    font-weight: bold;
    text-align: center;
    line-height: 46px;
    width: 46px;
    height: 46px;
    cursor: pointer;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .close:hover {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top {
    padding: 0 40px;
    padding-bottom: 50px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    width: 380px;
    height: 388px;
    border: 1px solid #eee;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle {
    position: relative;
    width: 110px;
    padding-left: 10px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper {
    height: 354px;
    width: 100%;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper ul{
    padding: 0;
    margin: 0;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li {
    padding: 0;
    margin: 0;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a {
    display: block;
    border: 1px solid #eee;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a img {
    background-color: #f5f5f5;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
    position: absolute;
    bottom: -34px;
    left: 10px;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    background-color: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn:hover {
    background-color: #212122;
    color: #fff;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .next {
    left: 50px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
    width: -webkit-calc(-390%);
    width: -moz-calc(-390%);
    width: calc(100% - 490px);
    padding-left: 40px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .title {
    font-weight: 600;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
    color: #5f5f5f;
    font-weight: 500;
    margin-top: 20px;
    max-height: 160px;
    overflow-y: auto;
    padding-right: 4px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
    margin-top: 20px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
    margin-top: 10px;
    font-weight: 700;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
    margin-left: 14px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right table {
    width: 100% !important;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 30px;
    font-weight: 500;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #212122;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-left: 10px;
    border: 1px solid #212122;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a:hover {
    background-color: #fff;
    color: #212122;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
    display: none;
    padding: 20px 30px 30px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list {
    margin-top: 10px;
    position: relative;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: #d9d9d9;
    top: 10px;
    left: 0;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list input {
    width: 100%;
    border: none;
    background-color: #f5f5f5;
    padding: 14px 12px;
    font-size: 14px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
    width: 190px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 10px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    margin-left: 30px;
    justify-content: center;
    color: #fff;
    line-height: 1.3;
    padding: 11px 24px;
    background-color: var(--color);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn .img{
    width: 14px;
    height: 14px;
    margin-left: 12px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover {
    background-color: #000;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover .img{
    transform: rotate(45deg);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
    width: 390px;
}

@media (max-width: 1500px) {
    .product-page .init-3 .container .des table tr td{
        min-width: 120px;
    }
    .product-page .init-3 .container .des table tbody>tr>td:first-child{
        min-width: 120px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
        height: 300px;
        width: 300px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
        width: 540px;
    }
}
@media (max-width: 1250px) {
    .product-page .init-3 .container .content ul li .content_cont .content_c .phone_cont {
        overflow-y: auto;
        max-height: 500px;
        padding-right: 10px;

    }
    .product-page .init-3 .container .content ul li .content_cont .content_c {
        width: 970px;
        padding-top: 40px;
     }
     .wdcp{
         height: 180px;
     }
     #innerMobileBanner .banner1 .mbx{
         line-height: 2;
    }
    #innerMobileBanner .banner1 .imgC .text{
        line-height: 44px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
        display: none !important;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top {
        text-align: center;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
        width: 340px;
        height: 340px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
        display: none;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
        max-height: 200px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
        width: 50%;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
        margin-left: 0;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
        width: auto;
    }
}
@media (max-width: 1000px) {
    .product-page .init-3 .container .content ul li .content_cont .content_c {
        width: 700px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .slick {
        height: 354px;
    }
    .product-page .init-1 {
        display: none;
    }
    .product-page .init-2 {
        display: none;
    }
    .youenyj, .Auxil-industry {
      display: none !important;
    }
}
@media (max-width: 700px) {
    .product-page .init-3 .container .content ul li .content_cont .content_c {
        width: 96%;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
        width: -webkit-calc(-10%);
        width: -moz-calc(-10%);
        width: calc(100% - 110px);
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c {
        padding-right: 10px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top {
        padding: 20px 0 20px 20px;
    }
}
@media (max-width: 500px) {

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
        text-align: center;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
        margin-left: 0;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
        padding: 20px 0 20px 16px;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
        width: 100%;
    }
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
        display: none;
    }
}


.home-2 {
  background-position: top center;
  background-repeat: no-repeat;
}

.homeFloorGuide {
    background-color: #302f2f;
}

@media screen and (min-width: 769px) {
  /*.home-1 {
    margin-bottom: 200vh;
  }

  .home-2 {
    display: flex;
    z-index: 0;
    position: fixed;
    inset: 0;
  }*/

  .home-2 {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
  }

  @keyframes bgSlideVertical {
      0% {
          background-position-y: 0;
      }

      100% {
          background-position-y: 5000%;
      }
  }

  .homeFloorGuideMain {
    align-self: center;
    width: 47.5vw;
    text-align: center;
  }

  .homeFloorGuideSub {
    width: 26.25vw;
    min-height: 59.6875vw;
    background-size: 100%;
    background-repeat: repeat-y;
    animation-duration: 750s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: bgSlideVertical;
  }

  .homeFloorGuideSlide01 {
    background-image: url(/unforklift/2026/01/31/floorguide_1.jpg);
    animation-direction: reverse;
  }

  .homeFloorGuideSlide02 {
    background-image: url(/unforklift/2026/01/31/floorguide_2.jpg);
  }
}


@media screen and (max-width: 768px) {
  .home-2 {
    padding-top: 120px;
  }

  @keyframes homeFloorGuideNarrowAnim {
      0% {
          background-position-x: 0;
      }

      100% {
          background-position-x: 500%;
      }
  }

  .homeFloorGuideMain {
      padding-inline: 7.2vw;
  }

  .homeFloorGuideSlide02 {
    height: 206px;
    margin-top: 56px;
    background-image: url(../images/floorguide_row.jpg);
    background-size: cover;
    background-repeat: repeat-x;
    animation-duration: 240s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: homeFloorGuideNarrowAnim;
  }
}







.case-page{
  padding: 100px 0;
  border-top-left-radius: 30px;
  background: #fff;
  margin-top: -60px;
}

.case-page .inner-sub{
  z-index: 1;
}

.casedet-page{
  padding: 100px 0;
}

.casedet-page .inner-sub{
  z-index: 1;
}

.casedet-page .container{
  width: 100%;
}
.case-page .container ul{
 margin: 0 -15px;
}

.case-page .container ul >p {
  font-size: 16px;
  letter-spacing: 0;
}

.case-page .container ul li{
  margin-top: 20px;
  padding: 0 15px;
}

.case-page .container ul li img{
  width: 100%;
}

.case-page .container ul li p{
    font-size: 18px;
    text-align: center;
    padding: 5px 10px;
    line-height: 2;
}


.case_cont .case_left {
  width: 22%;
  position: sticky;
  top: 40px
}

.case_cont .case_left .widget {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px
}

.case_cont .case_left .widget form {
  position: relative;
  font-size: 0;
}

.case_cont .case_left .widget form input {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #ffffff;
  margin-bottom: 0;
  height: 40px;
  font-size: 16px;
  line-height: 2
}

.case_cont .case_left .widget form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  background-color: var(--color);
  color: #fff;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  height: 40px
}

.case_cont .case_left .widget h6 {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 700;
  color: #000
}

.case_cont .case_left .widget ul {
  margin-bottom: 0;
  padding: 0
}

.case_cont .case_left .widget ul li {
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  overflow: hidden
}

.case_cont .case_left .widget ul li a {
  padding-left: 20px;
  line-height: 28px
}

.case_cont .case_left .widget ul li:last-child {
  margin-bottom: 0
}

.case_cont .case_left .widget ul li i {
  font-size: 14px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px
}

.case_cont .case_left .widget ul li:hover,
.case_cont .case_left .widget ul li.active {
  color: var(--color)
}

.case_cont .case_left .widget ul li ul {
  display: none;
  margin-top: 15px
}

.case_cont .case_left .widget ul li ul li a {
  padding-left: 0;
  color: #999
}

.case_cont .case_left .widget ul li ul li a.active {
  color: var(--color)
}

.case_cont .case_left .widget .recent li {
  display: block
}

.case_cont .case_left .widget .recent li .thum {
  width: 100px;
  overflow: hidden;
  float: left
}

.case_cont .case_left .widget .recent li a.title {
  display: block;
  margin-left: 15px;
  overflow: hidden;
}

.case_cont .case_left .widget .form1 {
  text-align: center
}

.case_cont .case_left .widget .form1 input[type=text],
.case_cont .case_left .widget .form1 textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #FFFFFF;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 2
}

.case_cont .case_left .widget .form1 input[type=text] {
  height: 40px;
}

.case_cont .case_left .widget .form1 input[type=submit] {
  background: var(--color);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.case_cont .case_left .widget .form1 input[type=submit]:hover {
  background: #000
}

.case_cont .case_right {
  width: 78%;
  padding: 0 0 50px 50px
}


.case_cont .case_right .ap-top {
  position: relative;
  transition: transform .85s cubic-bezier(.15, .95, .4, 1), box-shadow .3s;
  transform-style: preserve-3d;
  perspective: 80000px
}

.case_cont .case_right .ap-top .img {
  transition: transform .85s cubic-bezier(.15, .95, .4, 1), box-shadow .3s;
  position: relative;
  transform-style: preserve-3d;
  transition: all .5s
}

.case_cont .case_right .ap-top .img img {
  width: 100%
}

.case_cont .case_right .ap-top .img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2)
}

.case_cont .case_right .ap-top h6 {
  padding: 0 1.6rem .7rem;
  position: absolute;
  background: 0 0;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  top: 1.6rem;
  left: 0;
  width: 100%;
  z-index: 10;
  text-transform: uppercase
}

.case_cont .case_right .ap-top h6:after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 2rem;
  background-color: #fff
}

.case_cont .case_right .ap-top .desc {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 15px 1.6rem;
  bottom: 0;
  color: #fff;
  background: var(--color);
  z-index: 10
}

.case_cont .case_right .ap-top .desc h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6
}

.case_cont .case_right .ap-top .desc p {
  font-size: 16px;
  line-height: 2
}

.case_cont .case_right .ap-top:hover .img {
  transform: translateY(-3px);
  box-shadow: 0 15px 80px rgba(0, 0, 0, .35)
}


.case_cont .case_right .ap-bottom {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2
}

.case_cont .case_right .ap-bottom h6 {
  font-size: 25px;
  line-height: 1.6;
  color: #002e42;
  text-transform: capitalize;
  font-weight: 700
}

.case_cont .case_right .ap-bottom .con {
  font-size: 15px;
  line-height: 1.6;
  color: #002e42;
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem
}

.case_cont .case_right .ap-bottom .con p {
  margin-bottom: 15px
}

.case_cont .case_right .ap-bottom .bottom2 {
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc
}

.case_cont .case_right .ap-bottom .bottom2 dl {
  margin-top: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom2 dl dd {
  font-size: 15px;
  line-height: 1.6;
  color: #002e42;
  margin-bottom: 1rem
}

.case_cont .case_right .ap-bottom .bottom3 {
  margin-top: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom3 ul {
  margin-top: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom3 ul li {
  margin-bottom: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom3 ul li h4 {
  font-size: 16px;
  text-transform: capitalize;
  color: #002e42;
  font-weight: 700;
  line-height: 2;
  padding: .8rem 1.2rem;
  padding-right: 40px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, .1);
  position: relative
}

.case_cont .case_right .ap-bottom .bottom3 ul li h4:after {
  content: "\f107";
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 20px;
  font-family: fontAwesome
}

.case_cont .case_right .ap-bottom .bottom3 ul li .desc {
  padding: 1.6rem 2rem .8rem;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .1px;
  color: #002e42;
  display: none
}

.case_cont .case_right .ap-bottom .bottom3 ul li.active h4 {
  background: #1955a0;
  color: #fff
}

.case_cont .case_right .ap-bottom .bottom3 ul li.active h4:after {
  content: "\f106"
}

.case_cont .case_right .ap-bottom .bottom3 ul li:last-child {
  margin-bottom: 0
}
.case_cont .case_right .init-1{
  padding-right: 160px;
}
.case_cont .case_right .init-1 .img_cont{
  min-height: 100px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
}
.case_cont .case_right .init-1 .img_cont img{
  width: 100%;
  height: 100%;
}
.case_cont .case_right .init-1 .img_cont .text{
  position: absolute;
  bottom: 40px;
  width: 100%;
  left: 0;
  padding: 0 40px;
  font-weight: bold;
}
.case_cont .case_right .init-1 .img_cont .text span{
  border-bottom: 4px solid #fff;
  padding-bottom: 10px;
  display: inline-block;
}
.case_cont .case_right .init-1 .text_cont{
  color: #222222;
  margin-top: 30px;
} 
.case_cont .case_right .init-2{
  margin-top: 60px;
}
.case_cont .case_right .init-2 .top{
  position: relative;
}
.case_cont .case_right .init-2 .top::before{
  content:'';
  position: absolute;
  bottom: 1px;
  left: 45px;
  width: calc(100% - 90px);
  height: 1px;
  background: #c4c4c6;
}
.case_cont .case_right .init-2 table{
  border: none;
}
.case_cont .case_right .init-2 table tbody{
  display: block;
}

.case_cont .case_right .init-2 table tr{
  display: block;
  width: 100% !important;
}
.case_cont .case_right .init-2 table tr td{
  border: none;
  padding: 0;
}
.case_cont .case_right .init-2 .top{
  margin: 0 -45px;
}
.case_cont .case_right .init-2 .top .slick-track{
  display: flex;
  flex-wrap: wrap;
}
.case_cont .case_right .init-2 .top .slick-track .slick-slide{
  height: auto;
}
.case_cont .case_right .init-2 .top .slick-track .slick-slide > div{
  height: 100%;
}
.case_cont .case_right .init-2 .top .slick-track .slick-slide > div > td{
  height: 100% !important;
  position: relative;
}
.case_cont .case_right .init-2 .top .slick-track .slick-slide > div > td::before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 45px;
  width: 18px;
  height: 3px;
  background: #767677;
  transition: all .5s;
}
.case_cont .case_right .init-2 .top .slick-track .slick-slide.slick-current td{
  color: #000;
}
.case_cont .case_right .init-2 .top .slick-track .slick-slide.slick-current td::before{
  width: calc(100% - 90px);
  background: #0256bf;
}


.case_cont .case_right .init-2 .top table tr td{
  padding: 0 45px;
  font-weight: bold;
  padding-bottom: 30px;
  color: rgba(0, 0, 0, .5);
}

.case_cont .case_right .init-2 .bottom{
  margin-top: 20px;
}

.case_cont .case_right .init-3{
  margin-top: 50px;
}

.case_cont .case_right .init-3 .tips{
  font-family: 'EurostileBla';
}
.case_cont .case_right .init-3 .swiper{
  margin-top: 40px;
}
.case_cont .case_right .init-3 .swiper .swiper-wrapper{
  display: flex;
  align-items: center;
}
.case_cont .case_right .init-3 .swiper .img_c{
  border-radius: 16px;
  overflow: hidden;
}
.case_cont .case_right .init-3 .swiper .img_c img{
  width: 100%;
}
.case_cont .case_right .init-3 .swiper .img_c video{
  display: block;
  width: 100%;
}
.case_cont .case_right .init-4{
  margin-top: 50px;
}
.case_cont .case_right .init-4 .tips{
  font-family: 'EurostileBla';
  margin-top: 60px
}
.case_cont .case_right .init-4 .swiper{
  margin-top: 50px;
}
.case_cont .case_right .init-4 .swiper .swiper-slide{
  height: auto;
}
.case_cont .case_right .init-4 .swiper .swiper-slide .box{
  height: 100%;
}
.case_cont .case_right .init-4 .swiper .swiper-slide a{
  display: block;
}
.case_cont .case_right .init-4 .swiper .swiper-slide .box{
  background: #fff;
  padding: 30px 50px;
  border-radius: 16px;
}
.case_cont .case_right .init-4 .swiper .swiper-slide a img{
  display: block;
  width: 100%;
}
.case_cont .case_right .init-4 .swiper .swiper-slide .text{
  font-family: 'EurostileBla';
  text-align: center;
  margin-top: 10px;
}



@media screen and (max-width:1500px) {
  .casedet-page{
    padding-left: 0;
  }
  .case_cont .case_right .init-1{
    padding-right: 0;
  }
  .casedet-page .container{
    width: 1200px;
  }
  
  .case_cont .case_left {
    width: 28%
  }

  .case_cont .case_right {
    width: 72%
  }

  .case_cont .case_left .widget .recent li a.title {
    margin-left: 98px
  }
  
}

@media screen and (max-width:1250px) {
  .casedet-page .container{
    width: 970px;
  }
  .case_cont .case_right .init-4 .swiper .swiper-slide .box{
    padding: 20px 16px;
  }
}

@media screen and (max-width:1000px) {
  .case-page{
    margin-top: 0;
  }
  .casedet-page{
    margin-top: 0;
  }
  .case_cont .case_left {
    display: none
  }

  .case_cont .case_right {
    width: 100%;
    padding-left: 0
  }

  .case_cont .case_right {
    padding: 0 0 50px
  }
  .casedet-page .container{
    width: 700px;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .case_cont .case_right .ap-top .img img {
    min-height: 250px;
    object-fit: cover
  }

  .case_cont .case_right .ap-top .desc p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
  }

  .case_cont .case_right .ap-bottom h6 {
    font-size: 22px;
    line-height: 1.8
  }

  .case_cont .case_right .ap-bottom .bottom3 ul li h4:after {
    right: .5em
  }
}

@media (max-width: 500px) {
  .casedet-page{
    padding: 40px 0;
  }
  .case-page{
    padding: 40px 0;
  }
  .case_cont .case_right .ap-bottom .bottom3 ul li .desc{
    padding: 20px 10px;
  }
  .case_cont .case_right .init-1 .img_cont .text{
    font-size: 20px;
    bottom: 10px;
    padding: 0 10px;
  }
   .case_cont .case_right .init-1 .img_cont .text span{
     padding-bottom: 4px;
     border-bottom: 2px solid #fff;
   }
   .case_cont .case_right .init-1 .text_cont{
     margin-top: 10px;
   }
   .case_cont .case_right .init-2 .top .slick-track .slick-slide.slick-current td{
     padding-bottom: 10px;
   }
   .case_cont .case_right .init-3 .swiper{
     margin-top: 20px;
   }
   .case_cont .case_right .init-4{
     margin-top: 20px;
   }
   .case_cont .case_right .init-4 .swiper{
     margin-top: 20px;
   }
}













.prodet2-1 .slick-vertical .slick-slide {
    border: 0;
}

.prodet2-1 .play {
    font-size: 20px;
    width: 3em;
    height: 3em;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background-color: var(--color);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    cursor: hand;
}


.prodet2-1 .play:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    z-index: -1;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite
}

.prodet2-1 .play:before {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s
}



.prodet2-1 .big {
    width: 60%;
    margin-left: 15%;
}

.prodet2-1 .small {
    width: 10%;
    top: 50%;
    right: 0;
    font-size: 0;
    transform: translateY(-50%);
}

.prodet2-1 .small ul {
    margin: -8px;
}

.prodet2-1 .small li {
    padding: 8px;
}

.prodet2-1 .small li .img-box {
  background-color: #FFFFFF;
  border: 1px solid #ccc;
}

.prodet2-1 .small span.arrow {
  position: absolute;
  left: calc(50% - 1em);
  transform: rotate(90deg);
  font-size: 14px;
  width: 2em;
  height: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
  background-color: var(--color);
  color: #FFFFFF;
  cursor: pointer;;
}

.prodet2-1 .small span.arrow.arrow_l {
  bottom: 102%;
}

.prodet2-1 .small span.arrow.arrow_r {
  top: 102%;
}

.prodet2-1 .cate {
    left: 15%;
    top: 15%;
    font-size: 8.17vw;
    line-height: 1;
    width: 70%;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    color: #9b9b9b;
    opacity: .18;
}

.prodet2-2 {
    margin-top: -1em;
}

.prodet2-2 .box {
    border-top: 1px solid rgba(163,163,163,.25);
    border-bottom: 1px solid rgba(163,163,163,.25);
}

.prodet2-2 .left > div {
    height: 100%;
}

.prodet2-2 .left .cate {
    color: var(--color);
}

.prodet2-2 .left .name {
    line-height: 1.1;
}

.prodet2-2 .left .msgbtn {
    line-height: 3em;
    height: 3em;
    color: #ffffff;
    background-color: var(--color);
    border-radius: 1.5em;
    transition: .5s ease;
}

.prodet2-2 .left .msgbtn:hover {
  background-color: #000000;
  color: #ffffff;
}

.prodet2-2 .right {
    border-left: 1px solid rgba(163,163,163,.25);
}

.prodet2-2 .right > div + div {
    border-top: 1px solid rgba(163,163,163,.25);
}


.prodet2-2 .right .social-links a {
    width: 2em;
    height: 2em;
    line-height: 2em;
    border-radius: 1em;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
}

.prodet2-3 .tag a {
    line-height: 3em;
    height: 3em;
    color: #ffffff;
    background-color: var(--color);
    border-radius: 1.5em;
}

.prodet2-3 .tag a.active {
    color: #a4a4a4;
    background-color: #dedede;
}

.prodet2-3 .bar .left ul {
    margin: -5px;
}

.prodet2-3 .bar .left li {
    padding: 5px;
}

.prodet2-3 .bar .left li .plus {
    width: 4em;
    height: 4em;
    line-height: 4em;
    text-align: center;
    color: #ffffff;
    background-color: var(--color);
    border-radius: 50%;
    opacity: 0;
}

.prodet2-3 .bar .left li.active .plus {
    opacity: 1;
}




.slser {
    background-color: var(--color);
    border-radius: 5px;
}
.slser input {
    height: 40px;
    padding: 0 10px;
    border: 0;
}
.slser input[type="text"] {
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px 0 0 5px;
    
}
.slser input[type="submit"] {
    width: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000000;
    flex-shrink: 0;
    border-radius: 0 5px 5px 0;
}
.slcat ul li a {
    background-color: #dab38d;
    border-radius: 5px;
}
.slcat ul li li a {
    background-color: #eee;
}
.slcat ul li a.active {
    background-color: #ea0029;
}

.slcat ul li ul {
    display: none;
}

.slcat ul li a.active + ul {
    display: block;
}


@media (min-width:1001px) {
  .product-page .init-3 .left {
    position: sticky;
    top: 100px;
  }
}

@media (max-width:1000px) {
  .product-page .init-3 .left {
    display: none;
  }
}







.rc .content {
  width: 100%;
  left: 0;
  bottom: 10%;
}
.rc .content .left {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, var(--color)), color-stop(80%, transparent));
  background-image: -webkit-linear-gradient(left, var(--color) 40%, transparent 80%);
  background-image: -moz-linear-gradient(left, var(--color) 40%, transparent 80%);
  background-image: linear-gradient(to right, var(--color) 40%, transparent 80%);
}
.rc .content .left .tit {
  line-height: 1;
}
.rc .content .left .txt {
  max-width: 530px;
}
.rc .content a.link {
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.rc .content a.link:hover {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}


table tbody {
  min-width: 1000px;
}

table td,
table th {
    word-break: normal;
    padding: 5px;
    max-width: 160px;
    height: 60px!important;
}


@media (max-width:1000px) {
  table td,
  table th {
    max-width: unset;
  }
}






#download_from {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	max-height: 80%;
	width: 500px;
	max-width: 90%;
	-o-box-shadow: 0 0 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: 22;
	background: white;
	padding: 30px;
	overflow: auto
}

#download_from h4 {
	font-size: 18px;
	color: #222;
	text-transform: capitalize;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	padding: 15px 20px;
	background: #f5f5f5;
	-moz-box-shadow: 0 0 5px rgba(0,0,0,.1);
	-o-box-shadow: 0 0 5px rgba(0,0,0,.1);
	box-shadow: 0 0 5px rgba(0,0,0,.1);
}

#download_from form {
	margin-top: 40px;
}

#download_from i.close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 10px;
	background: #eee;
	cursor: pointer;
	cursor: hand;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

#download_from i.close:after,#download_from i.close:before {
	content: '';
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	width: 70%;
	height: 2px;
	margin-top: -1px;
	background: black;
	position: absolute;
	top: 50%;
	left: 15%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

#download_from i.close:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

#download_from i.close:hover {
	background: var(--color);
}

#download_from i.close:hover:after,#download_from i.close:hover:before {
	background: white;
}

#download_from form ul li {
	margin-bottom: 10px;
	position: relative
}

#download_from form ul li label {
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
}

#download_from form ul li label em {
	color: red;
	margin-right: 2px
}

#download_from form ul li input,#download_from form ul li textarea {
	width: 100%;
	line-height: 24px;
	padding: 6px 15px;
	border: 1px solid #eee;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	transition: .5s;
	font-size: 16px
}

#download_from form ul li input:focus,#download_from form ul li textarea:focus {
	border-color: var(--color)
}

#download_from form ul li input.err,#download_from form ul li textarea.err {
	border-color: red
}

#download_from form ul li textarea {
	height: 80px
}

#download_from form ul li input[type="submit"] {
	width: auto;
	padding: 6px 40px;
	display: inline-block;
	background: var(--color);
	color: white;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

#download_from form ul li input[type="submit"]:hover {
	opacity: .7
}

#download_from form ul li:last-child {
	margin-bottom: 0
}

.home-1 .text h1 {
  display: inline;
}
.youenyj {
  font-size: 16px;
}
.seoPublic .seoIndustry .text h3 {
  color: var(--color);
  font-size: 24px;
  font-weight: 700;
  padding-top: 20px;
}
.seoPublic .seoIndustry .text h4 {
  font-weight: 700;
  padding-top: 10px;
  font-size: 18px;
}