body {
  font-family: "Arial";
  max-width: 1920px;
  --color: #182541;
  --color2: #c20011;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1650px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 45px;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  max-width: 1920px;
  margin: 0 auto;
}
#header .nav .ui.menu {
  margin: 0 auto;
  height: 100px;
}
#header .nav .ui.menu .logo a {
  position: relative;
  display: block;
}
#header .nav .ui.menu .logo a img {
  transition: .5s;
}
#header .nav .ui.menu .logo a img.pos {
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
}
#header.active .nav .ui.menu .logo a img {
  opacity: 0;
}
#header.active .nav .ui.menu .logo a img.pos {
  opacity: 1;
}
#header .nav .ui.menu .box {
  width: 61%;
  position: relative;
  height: 100%;
}
#header .nav .ui.menu .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #e9ecf3;
  z-index: -1;
  -webkit-transform: skewX(-28deg);
  -moz-transform: skewX(-28deg);
  -ms-transform: skewX(-28deg);
  transform: skewX(-28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  height: 100%;
}
#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 {
  -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;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: #008cd6;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-style: italic;
}
#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;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  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 {
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .msg {
  height: 100%;
  position: relative;
  color: white;
}
#header .nav .ui.menu .msg:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #008cd6;
  -webkit-transform: skewX(-28deg);
  -moz-transform: skewX(-28deg);
  -ms-transform: skewX(-28deg);
  transform: skewX(-28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  z-index: -1;
}
#header.active {
  top: 0;
  /*background-color: white;*/
  background-color: #e9ecf3;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#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;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 2;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
span.h2 {
  line-height: 1.3;
}
.posLine i {
  width: 4px;
  height: 320px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  -webkit-transform: skewX(-28deg);
  -moz-transform: skewX(-28deg);
  -ms-transform: skewX(-28deg);
  transform: skewX(-28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  margin-left: 9%;
}
.posLine i.full-2 {
  background-color: rgba(150, 185, 255, 0.8);
}
.posLine i.full-3 {
  background-color: #2856eb;
}
i.bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 0;
  background-position: center top;
  background-size: cover !important;
}
span.tag {
  line-height: .8;
}
span.tag:before {
  content: '';
  width: 1em;
  height: 2em;
  background-color: var(--color2);
  -webkit-transform: skewX(-28deg);
  -moz-transform: skewX(-28deg);
  -ms-transform: skewX(-28deg);
  transform: skewX(-28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  margin-right: 1.2em;
}
.more {
  height: 2.5em;
  padding: 0 .5em;
  background-color: white;
  border-radius: 1.25em;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more em {
  padding: 0 1em;
}
.more i {
  width: 1.66666667em;
  height: 1.66666667em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover {
  background-color: var(--color2);
  color: white;
}
.more:hover i {
  background-color: white;
  color: var(--color2);
}
.text {
  line-height: 1.8;
}
@-webkit-keyframes lz {
  form {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-moz-keyframes lz {
  form {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes lz {
  form {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.moveText {
  line-height: .8;
  max-width: 100%;
}
.moveText .flex-i {
  -webkit-animation: lz 20s linear infinite;
  -moz-animation: lz 20s linear infinite;
  animation: lz 20s linear infinite;
}
.moveText em {
  margin-right: 1em;
  white-space: nowrap;
}
#banner {
  position: relative;
}
#banner li {
  position: relative;
}
#banner li img {
  position: relative;
  z-index: -2;
}
#banner li .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
}
#banner li .content .left {
  max-width: 1100px;
}
#banner li .content .left .text {
  max-width: 500px;
}
#banner .posLine i {
  z-index: 2;
}
#banner .posLine i:nth-child(1) {
  top: 0;
  left: 18%;
}
#banner .posLine i:nth-child(2) {
  top: 55%;
  left: -4%;
}
#banner .posLine i:nth-child(3) {
  top: 18%;
  left: 69%;
}
#banner .posLine i:nth-child(4) {
  top: 17%;
  left: 93%;
}
#banner .posLine i:nth-child(5) {
  top: 56%;
  left: 80%;
  height: 10.41666667vw;
}
#index-body .init-1 {
  position: relative;
  color: white;
}
#index-body .init-1 .slick-track {
  display: block;
  transform: unset !important;
}
#index-body .init-1 i.bg {
  top: -37%;
  height: 180%;
  z-index: 0;
  background-size: 100% auto !important;
}
#index-body .init-1 .dots {
  line-height: 1;
  position: relative;
  -webkit-transform: skewX(28deg);
  -moz-transform: skewX(28deg);
  -ms-transform: skewX(28deg);
  transform: skewX(28deg);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  margin-left: -2.5em;
}
#index-body .init-1 .dots:before {
  content: '';
  height: -webkit-calc(100% - 1em);
  height: -moz-calc(100% - 1em);
  height: calc(100% - 1em);
  width: 1px;
  position: absolute;
  left: 0;
  top: .5em;
  background-color: white;
}
#index-body .init-1 .dots li {
  -webkit-transform: skewX(-28deg);
  -moz-transform: skewX(-28deg);
  -ms-transform: skewX(-28deg);
  transform: skewX(-28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  opacity: .5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
}
#index-body .init-1 .dots li i {
  width: 1.5em;
  height: 1px;
  background-color: white;
  position: relative;
  margin-right: .5em;
}
#index-body .init-1 .dots li i:before {
  content: '';
  border-left: .5em solid white;
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .dots li.active {
  opacity: 1;
}
#index-body .init-1 .dots li.active i:before {
  opacity: 1;
}
#index-body .init-1 .imgList .img .span span {
  position: absolute;
  white-space: nowrap;
  height: 2.88888889em;
  padding: 0 1.66666667em;
  background-color: var(--color2);
  border-radius: 1.44444444em;
}
#index-body .init-1 .imgList .img .span span i {
  position: absolute;
  height: 0.66666667em;
  width: 0.66666667em;
  border-radius: 100%;
  background-color: var(--color2);
}
#index-body .init-1 .imgList .img .span span i:after,
#index-body .init-1 .imgList .img .span span i:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  background-color: var(--color2);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
#index-body .init-1 .imgList .img .span span i:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
#index-body .init-1 .imgList .img .span span:nth-child(1) {
  left: 0;
  top: 0;
}
#index-body .init-1 .imgList .img .span span:nth-child(1) i {
  top: 150%;
  left: 60%;
}
#index-body .init-1 .imgList .img .span span:nth-child(2) {
  right: 0;
  top: 5%;
}
#index-body .init-1 .imgList .img .span span:nth-child(2) i {
  top: 150%;
  left: 50%;
}
#index-body .init-1 .imgList .img .span span:nth-child(3) {
  left: 10%;
  bottom: 20%;
}
#index-body .init-1 .imgList .img .span span:nth-child(3) i {
  left: 120%;
  top: 40%;
}
#index-body .init-1 .imgList .img .span span:nth-child(4) {
  left: 63%;
  bottom: 21%;
}
#index-body .init-1 .imgList .img .span span:nth-child(4) i {
  right: 115%;
  top: 40%;
}
#index-body .init-1 .contentList .text {
  max-height: 340px;
  overflow: auto;
}
#index-body .init-1 .posLine i:nth-child(1) {
  left: 0;
  top: 50%;
}
#carousel {
  width: 100%;
  height: 35vw;
  perspective: 100vw;
  perspective-origin: 50% 50%;
  cursor: grab;
  user-select: none;
  position: relative;
  touch-action: manipulation;
    translate: none;
    rotate: none;
    scale: none;
}
#carousel * {
  cursor: grab;
  user-select: none;
  touch-action: manipulation;
    translate: none;
    rotate: none;
    scale: none;
}
#carousel .perspective {
  transform-origin: center center;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  transform: rotateX(-15deg) rotateZ(-10deg) translateZ(-35vw);
}
#carousel ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transform-style: preserve-3d;
  margin: 0;
  padding: 0;
  list-style: none;
}

#carousel ul li {
  position: absolute;
  top: 60%;
  left: 30%;
  width: 40%;
  transform-style: preserve-3d;
  transform-origin: center center;
}
#carousel ul li a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#carousel ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  filter: blur(5px);
  transition: .5s;
}
#carousel ul li.active img {
  filter: blur(0);
}



#index-body .init-2 {
  position: relative;
  z-index: 1;
  color: white;
}
#index-body .init-2 i.bg {
  width: 100%;
  height: 130%;
  position: absolute;
  background-size: 100% auto !important;
  top: 0;
  z-index: -1;
}
#index-body .init-2 .box .left hr {
  background-color: white;
  max-width: 700px;
}
#index-body .init-2 .box .left .text {
  max-width: 700px;
}
#index-body .init-2 .box .left .list span.h6 {
  line-height: 1;
}
#index-body .init-2 .box .left .list span.h6:before {
  content: '';
  width: 1em;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
#index-body .init-2 .box .left .list span.h5 {
  line-height: 1;
}
#index-body .init-2 .box .left .list span.h5 sub {
  vertical-align: baseline;
}
#index-body .init-2 .box .right {
  position: -webkit-sticky;
  position: sticky;
  top: 20%;
}
#index-body .init-2 .box .right img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 3s cubic-bezier(0.2, 1, 0.2, 1),color .1s linear,opacity .5s ease 0s;
  transform: translate3d(-23.43vw, 23.43vw, 0) scale(0.8) rotate(-15deg) skew(-20deg);
}
#index-body .init-2 .box .right img[data-show="1"] {
  opacity: 1;
  transform: translateZ(0) scale(1) rotate(0) skew(0);
  position: static;
}
#index-body .init-2 .posLine i {
  z-index: -1;
}
#index-body .init-2 .posLine i:nth-child(1) {
  left: -5%;
  top: 67%;
}
#index-body .init-2 .posLine i:nth-child(2) {
  left: 70%;
  top: 18%;
}
#index-body .init-2 .posLine i:nth-child(3) {
  left: 45%;
  top: 53%;
}
#index-body .init-3 {
  position: relative;
  z-index: 1;
}
#index-body .init-3 i.bg {
  width: 100%;
  height: 180%;
  position: absolute;
  top: -42%;
  z-index: -1;
  background-size: 100% auto !important;
}
#index-body .init-3 span.moveText {
  color: white;
}
#index-body .init-3 .list {
  padding-right: 26.6%;
  margin-right: -10%;
  overflow: hidden;
  -webkit-transform: skewX(-28deg);
  -moz-transform: skewX(-28deg);
  -ms-transform: skewX(-28deg);
  transform: skewX(-28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}
#index-body .init-3 .list .slick-list {
  overflow: unset;
}
#index-body .init-3 .list .slick-list .slick-slide {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .list .slick-list .slick-slide.slick-active ~ div:not(.slick-active) .box i.mask {
  opacity: 0;
}
#index-body .init-3 .list .box {
  height: 12.4em;
  overflow: hidden;
  position: relative;
  background-color: var(--color);
  z-index: 1;
}
#index-body .init-3 .list .box i.mask {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  width: 175%;
  height: 100%;
  -webkit-transform: skewX(28deg);
  -moz-transform: skewX(28deg);
  -ms-transform: skewX(28deg);
  transform: skewX(28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .list .box i.mask:before {
  content: '';
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(var(--color)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, var(--color), transparent);
  background-image: -moz-linear-gradient(bottom, var(--color), transparent);
  background-image: linear-gradient(to top, var(--color), transparent);
}
#index-body .init-3 .list .box .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5% 15%;
  -webkit-transform: skewX(28deg);
  -moz-transform: skewX(28deg);
  -ms-transform: skewX(28deg);
  transform: skewX(28deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  color: white;
}
#index-body .init-3 .list .box .content span {
  line-height: 1.2;
}
#index-body .init-3 .list .box .content span,
#index-body .init-3 .list .box .content .text {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  will-change: transform;
}
#index-body .init-3 .page .line {
  height: 7px;
  border-radius: 4px;
  background-color: #7183a6;
  width: 100%;
  position: relative;
}
#index-body .init-3 .page .line i {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: white;
  border-radius: 100%;
  z-index: 1;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#index-body .init-3 .page a.more {
  white-space: nowrap;
  background-color: var(--color);
  color: white;
}
#index-body .init-3 .page a.more i {
  background-color: white;
  color: var(--color);
}
#index-body .init-3 .page a.more:hover {
  background-color: var(--color2);
  color: white;
}
#index-body .init-3 .posLine i:nth-child(1) {
  height: 800px;
  top: -13%;
  right: 6%;
  background-color: #1aa3fc;
  width: 6px;
}
#index-body .init-4 {
  position: relative;
  z-index: 1;
  color: white;
}
#index-body .init-4 i.bg,
#index-body .init-4:after {
  width: 100%;
  height: 140%;
  position: absolute;
  top: 0;
  z-index: -1;
  background-size: 100% auto !important;
  background-position: left top ;
  background-repeat: no-repeat;
}
#index-body .init-4:after {
  content: '';
  top: 30%;
  z-index: -2;
  background-color: #111f4d;
}
#index-body .init-4 span.h2 {
  line-height: .9;
  letter-spacing: -0.04em;
  margin-left: -0.3em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#index-body .init-4 .text {
  max-width: 810px;
}
#index-body .init-4 .form label {
  background-color: white;
  height: 2em;
  width: 100%;
}
#index-body .init-4 .form label:first-child {
  width: 40%;
}
#index-body .init-4 .form label input {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 0 1em;
  color: black;
}
#index-body .init-4 .form label input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
#index-body .init-4 .form label input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
#index-body .init-4 .form label input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
#index-body .init-4 .form label input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
#index-body .init-4 .form label input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
#index-body .init-4 .form label span.cat {
  padding: 0 1.2em;
  background-color: var(--color2);
  color: white;
}
#index-body .init-4 .form label button {
  border: none;
  background-color: transparent;
  width: 2.57142857em;
  color: black;
}
#index-body .init-4 .form label input[type="submit"] {
  width: 100%;
  height: 100%;
  background-color: var(--color2);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .form label input[type="submit"]:hover {
  background-color: black;
}
#index-body .init-4 .form label.lang span {
  height: 100%;
  width: 100%;
  color: rgba(0, 0, 0, 0.7);
}
#index-body .init-4 .form label.lang span img {
  max-width: 3.11111111em;
}
#index-body .init-4 .form label.lang dl {
  width: 100%;
  /*margin-top: 10px;*/
  border-radius: 8px;
  top: 100%;
  background-color: white;
  position: absolute;
  color: black;
  z-index: 1;
  display: none;
  max-height: 300px;
  overflow: auto;
}
#index-body .init-4 .form label.lang dl dd {
  padding: .5em 1em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .form label.lang dl dd:hover {
  background-color: var(--color2);
  color: white;
}
#index-body .init-4 .form label.lang:hover dl {
  display: block;
}
#index-body .init-4 .list {
  overflow: hidden;
  position: relative;
}
#index-body .init-4 .smallImg .catslide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
}
#index-body .init-4 .list .slide.active,
#index-body .init-4 .smallImg .catslide.active {
  position: static;
  opacity: 1;
  z-index: 1;
}
#index-body .init-4 .list ul {
  padding: 0 5%;
}
#index-body .init-4 .list ul span.h6 {
  line-height: 1.2;
}
#index-body .init-4 .list ul .slick-list {
  overflow: unset;
}
#index-body .init-4 .list ul .slick-slide {
  -webkit-transform: scale(0.52) translateX(120%);
  -moz-transform: scale(0.52) translateX(120%);
  -ms-transform: scale(0.52) translateX(120%);
  transform: scale(0.52) translateX(120%);
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
  opacity: .5;
  position: relative;
  z-index: 1;
  -webkit-transform-origin: center top;
  -moz-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
}
#index-body .init-4 .list ul .slick-slide.slick-active {
  -webkit-transform: scale(0.75) translateX(25%);
  -moz-transform: scale(0.75) translateX(25%);
  -ms-transform: scale(0.75) translateX(25%);
  transform: scale(0.75) translateX(25%);
  z-index: 2;
}
#index-body .init-4 .list ul .slick-slide.slick-current {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}
#index-body .init-4 .list ul .slick-slide.slick-current + div {
  -webkit-transform: scale(0.75) translateX(-25%);
  -moz-transform: scale(0.75) translateX(-25%);
  -ms-transform: scale(0.75) translateX(-25%);
  transform: scale(0.75) translateX(-25%); 
  z-index: 2;
}
#index-body .init-4 .list ul .slick-slide.slick-current + div ~ div {
  -webkit-transform: scale(0.52) translateX(-120%);
  -moz-transform: scale(0.52) translateX(-120%);
  -ms-transform: scale(0.52) translateX(-120%);
  transform: scale(0.52) translateX(-120%);
  z-index: 1;
}
#index-body .init-4 .smallImg {
  position: relative;
}
#index-body .init-4 .smallImg .slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .smallImg .slide.active {
  opacity: 1;
  z-index: 1;
  position: static;
}
#index-body .init-4 .arrows {
  position: relative;
  z-index: 2;
  margin-bottom: 1em;
}
#index-body .init-4 .arrows .slickBtn {
  font-size: inherit;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .5em;
}
#index-body .init-4 .arrows .slickBtn div {
  background-color: transparent;
  border: 1px solid white;
  margin: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .arrows .slickBtn div i {
  font-size: .6em;
}
#index-body .init-4 .arrows .slickBtn div:hover {
  background-color: var(--color2);
}
#index-body .init-4 .arrows .page {
  line-height: 1;
  margin-top: 1em;
}
#index-body .init-4 .arrows .page em {
  font-size: 1.66666667em;
  line-height: .85;
  margin: 0;
}
#index-body .init-4 .list2 span.h3 {
  line-height: 1.2;
}
#index-body .init-4 .list2 .slick-list {
  overflow: unset;
}
#index-body .init-4 .list2 .slick-list .slick-track {
  transform: unset !important;
}
#index-body .init-4 .list2 li {
  width: 100%;
}
#index-body .init-4 .list2 li .ui.container {
  margin: 0 auto;
}
#index-body .init-4 .list2 .pre span.h6 {
  width: auto;
  white-space: nowrap;
  color: #0a1539;
  opacity: .7;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  line-height: 1;
  margin-top: -1em;
}
#index-body .init-4 .list2 .img img {
  margin: 0 auto;
}
#index-body .init-4 .box {
  padding: 3%;
  margin-left: auto;
  margin-right: 0;
}
#index-body .init-5 {
  position: relative;
  z-index: 1;
  color: white;
  padding-bottom: 17%;
}
#index-body .init-5:after {
  content: '';
  width: 100%;
  height: 18%;
  right: 0;
  bottom: -1px;
  background-color: #1a1c25;
  position: absolute;
  clip-path: polygon(0 100%,100% 0,100% 100%);
  z-index: -1;
}
#index-body .init-5 i.bg {
  width: 100%;
  height: 115%;
  position: absolute;
  top: 0;
  z-index: -1;
  background-size: auto 100%;
}
#index-body .init-5 span.h2 {
  line-height: .9;
  letter-spacing: -0.04em;
  text-indent: .3em;
  margin-left: -0.3em;
}
#index-body .init-5 .text {
  max-width: 810px;
}
#index-body .init-5 .list {
  -webkit-transform: skewY(-9deg);
  -moz-transform: skewY(-9deg);
  -ms-transform: skewY(-9deg);
  transform: skewY(-9deg);
  padding: 15% 30%;
  margin: -15% auto;
  max-width: 1920px;
  overflow: hidden;
}
#index-body .init-5 .list .slick-list {
  overflow: unset;
}
#index-body .init-5 .list li {
  -webkit-transform: skewY(9deg);
  -moz-transform: skewY(9deg);
  -ms-transform: skewY(9deg);
  transform: skewY(9deg);
}
#index-body .init-5 .list li .play {
  background-color: white;
  font-size: 35px;
}
#index-body .init-5 .list li .play i {
  border-left-color: #1a3771;
}
#index-body .init-5 .list li .content {
  max-width: 60%;
  margin-left: auto;
  display: block;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-5 .list li .content a.more {
  background-color: var(--color);
  color: white;
}
#index-body .init-5 .list li .content a.more i {
  background-color: white;
  color: black;
}
#index-body .init-5 .list li .content a.more:hover {
  background-color: var(--color2);
}
#index-body .init-5 .list .slick-current li .content {
  opacity: 1;
}
#index-body .init-5 .posLine i {
  z-index: -1;
}
#index-body .init-5 .posLine i:nth-child(1) {
  left: 37%;
  top: 25%;
}
#index-body .init-5 .posLine i:nth-child(2) {
  left: 73%;
  top: 0;
}
#index-body .init-5 .posLine i:nth-child(3) {
  left: 94%;
  top: 1%;
}
#index-body .init-5 .posLine i:nth-child(4) {
  left: 77%;
  top: 61%;
  background-color: #1aa3fc;
}
#index-body .init-6 {
  position: relative;
  z-index: 2;
  color: white;
}
#index-body .init-6 i.bg {
  position: absolute;
  height: 200%;
  top: 0;
  right: 0;
  -webkit-transform: skewY(-13deg);
  -moz-transform: skewY(-13deg);
  -ms-transform: skewY(-13deg);
  transform: skewY(-13deg);
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  background-color: #1a1c25;
  z-index: -1;
}
#index-body .init-6 .box {
  padding: 3%;
  background-color: white;
  color: black;
}
#index-body .init-6 .box .tag {
  --color2: var(--color);
}
#index-body .init-6 .box a.more {
  background-color: var(--color);
  color: white;
}
#index-body .init-6 .box a.more i {
  background-color: white;
  color: var(--color);
}
#index-body .init-6 .box a.more:hover {
  background-color: var(--color2);
}
#index-body .init-6 .box .list ul li {
  color: #182541;
  border-bottom: 1px solid #7f7f7f;
}
#index-body .init-6 .box .list ul li:last-child {
  margin-bottom: 0;
}
#index-body .init-6 .box .list ul li time {
  white-space: nowrap;
}
#index-body .init-6 .box .list ul li .cat {
  height: 2em;
  padding: 0 1em;
  border-radius: 1em;
  background-color: var(--color);
  color: white;
}
#index-body .init-6 .posLine i:nth-child(1) {
  left: 91%;
  top: -5%;
  z-index: -1;
  background-color: #1aa3fc;
}
#footer {
  position: relative;
  z-index: 1;
  background-color: #1a1c25;
  color: white;
  /*overflow: hidden;*/
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% auto;
}
#footer i.bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: 19.32291667% auto !important;
  background-position: left bottom 25%;
  background-repeat: no-repeat;
  z-index: -1;
}
#footer.index span.h2 {
  margin-bottom: -3em;
  transform: translateY(-3em)
}
#footer .footer-top span.h5 {
  line-height: 1;
}
#footer .footer-top .phone {
  line-height: 1;
}
#footer .footer-top .phone strong {
  vertical-align: baseline;
  line-height: .8;
  margin-right: 0.27692308em;
}
#footer .footer-top .list span.tag {
  color: rgba(255, 255, 255, 0.5);
}
#footer .footer-top .list .paddingLeft {
  padding-left: 2.2em;
}
#footer .footer-top .list .text {
  max-width: 570px;
}
#footer .footer-top a.link {
  height: 5.66666667em;
  border-radius: 3em;
  background-color: var(--color2);
  color: white;
  padding: 0 1.33333333em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-top a.link i {
  width: 2.53333333em;
  height: 2.53333333em;
  border: 1px solid white;
  border-radius: 100%;
}
#footer .footer-top a.link:hover {
  background-color: var(--color);
}
#footer .footer-center .box .text {
  max-width: 420px;
  color: inherit;
  line-height: 1.4;
  opacity: .5;
}
#footer .footer-center .box span.h6 {
  opacity: .5;
}
#footer .footer-center .box .nav {
  width: 500px;
  max-width: 100%;
}
#footer .footer-center .box .nav li {
  margin-bottom: .5em;
}
#footer .footer-center .box .nav ul ul {
  display: none;
}
#footer .footer-center .box .nav li:last-child {
  margin-bottom: 0;
}
#footer .footer-center .box .nav li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-center .box .nav li a:before {
  content: '';
  width: 1em;
  height: 1px;
  margin-right: .5em;
  background-color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-center .box .nav li a:hover {
  color: var(--color2);
}
#footer .footer-center .box .nav li a:hover:before {
  background-color: var(--color2);
}
#footer .footer-bottom .coy {
  border-top: 1px solid #1a1c25;
  color: rgba(255, 255, 255, 0.5);
}
#footer .footer-bottom .coy svg {
  max-height: 1.625em;
  width: auto;
  display: block;
  fill: rgba(255, 255, 255, 0.5);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-bottom .coy svg:hover {
  fill: white;
}
#footer .footer-bottom .coy a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-bottom .coy a:hover {
  color: white;
}
#footer .posLine i {
  z-index: -1;
}
#footer .posLine i.full-2 {
  background-color: #1aa3fc;
}
#footer .posLine i:nth-child(1) {
  left: -5%;
  top: 0;
}
#footer .posLine i:nth-child(2) {
  left: 45%;
  top: -8%;
}
#footer .posLine i:nth-child(3) {
  left: 67%;
  top: 21%;
}
#footer .posLine i:nth-child(4) {
  left: -3%;
  bottom: 0;
}
#footer .posLine i:nth-child(5) {
  left: 44%;
  bottom: 0;
}
#footer .posLine i:nth-child(6) {
  right: 0;
  top: 69%;
}
@media screen and (max-width: 1700px) {
  #header {
    top: 20px;
  }
  .zexinelectric{
    display: none!important;
  }
  .posLine i {
    height: 220px;
  }
  em.font-em-40 {
    font-size: 3em;
  }
  #index-body .init-3 .posLine i:nth-child(1) {
    height: 600px;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav .ui.menu .box {
    width: 80%;
  }
  em.font-em-40 {
    font-size: 2em;
  }
  #index-body .init-2 .box .left .list span.h5 em {
    font-size: 1.5em;
  }
  #index-body .init-3 .posLine i:nth-child(1) {
    height: 400px;
  }
}
@media screen and (max-width: 1250px) {
  #index-body .init-1 i.bg {
    top: -37%;
  }
  .posLine i {
    height: 180px;
  }
  #index-body .init-3 .posLine i:nth-child(1) {
    height: 320px;
  }
  #index-body .init-5 .list li .content {
    max-width: 100%;
  }
  span.tag:before {
    height: 1.4em;
  }
  #footer .footer-top a.link {
    height: 4em;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .init-1 .dots {
    display: none;
  }
  em.font-em-40 {
    font-size: 1.5em;
  }
  #index-body .init-4 span.h2,
  #index-body .init-5 span.h2 {
    text-indent: 0;
    margin-left: 0;
  }
  .posLine i {
    zoom: .7;
  }
  #index-body .init-4 i.bg {
    background-size: 100% 100% !important;
    background-position: center top;
  }
}
@media screen and (max-width: 700px) {
  #index-body .init-4 .form label {
    height: 3em;
  }
  #index-body .init-4 .form label button {
    font-size: 1.5em;
  }
  #index-body .init-4 .smallImg {
    margin-top: 5%;
  }
  #index-body .init-5 .list {
    padding: 15%;
  }
  .font-em-8 {
    font-size: 1em;
  }
  #footer .footer-top .list .share {
    font-size: 20px;
  }
  #index-body .init-4 .form label span.cat {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  #footer .footer-top a.link {
    min-height: 4em;
    height: auto;
    padding: 1em;
  }
  #footer .footer-top .phone {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-top .phone strong {
    line-height: 1.4;
  }
  #index-body .init-4 .list ul {
    padding: 0 10%;
  }
  #index-body .init-4 .smallImg .slickList {
    width: 75%;
  }
  #index-body .init-1 .imgList .img {
    zoom: .5;
  }
  #index-body .init-1 i.bg {
    top: -33%;
  }
  .posLine i {
    zoom: .5;
  }
  #index-body .init-6 .box .list ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-6 .box .list ul li .title {
    width: 100%;
    margin-top: 1em;
  }
}
.inner-banner {
  color: white;
  z-index: 3;
  position: relative;
  overflow: hidden;
}
.inner-banner .ui {
  z-index: 1;
}
.inner-banner .mbx {
  max-width: 50%;
  margin-left: auto;
}
.inner-banner .mbx a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-banner .mbx a:hover {
  color: var(--color2);
}
.inner-banner i.bg {
  width: 100%;
  height: 30.2929vw;
  top: 100%;
  margin-top: -30.2929vw;
  z-index: -2;
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
  -webkit-clip-path: polygon(0 30.2929vw, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 30.2929vw, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  background-color: var(--color);
  background-repeat: no-repeat;
  background-size: 100% auto !important;
  background-position: center top !important;
}
.inner-banner.contact i.bg {
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png") !important;
  background-color: #dfe5ee !important;
  background-repeat: repeat !important;
  background-size: auto !important;
}
.inner-banner.contact .mbx {
  color: black;
}
.inner-banner .posLine i {
  z-index: -1;
}
.inner-banner .posLine i:nth-child(1) {
  left: 35%;
  top: 10%;
}
.inner-banner .posLine i:nth-child(2) {
  left: 75%;
  top: 30%;
}
.inner-page {
  z-index: 2;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
  background-color: white;
}
.inner-page i.bg {
  width: 100%;
  height: 90vw;
  top: -31vw;
  z-index: -3;
  -webkit-clip-path: polygon(0 30.2929vw, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 30.2929vw, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  background-color: var(--color);
  background-repeat: no-repeat;
  background-size: 100% auto !important;
  background-position: center top !important;
}
.inner-page .bgfull {
  position: relative;
  color: white;
  z-index: 1;
}
.inner-page .bgfull:not(.pb-200) {
  padding-bottom: 30.2929vw;
}
.inner-page .bgfull:not(.pb-200):after {
  content: '';
  width: 100%;
  height: 30.2929vw;
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-clip-path: polygon(0 30.2929vw, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 30.2929vw, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
  background-color: white;
  z-index: -1;
}
.inner-page .bgfull:not(.pb-200) i.bg {
  background-color: var(--color2);
  bottom: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 60% 100%);
  clip-path: polygon(0 0, 0% 100%, 60% 100%);
  z-index: -2;
  width: 100%;
  height: 20vw;
  top: auto;
}
.inner-page .bgfull:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -2;
  background-color: var(--color);
}
.inner-page hr.smallLine {
  height: .15em;
  width: 2em;
  background-color: var(--color2);
  display: block;
  margin-left: 0;
  margin-right: auto;
}
.inner-page .posLine i {
  z-index: -1;
}
.inner-page .posLine i.full-4 {
  background-color: var(--color2);
}
.inner-page .posLine i:nth-child(1) {
  left: -3%;
  top: -5%;
}
.inner-page .posLine i:nth-child(2) {
  left: 30%;
  top: 0%;
}
.inner-page .posLine i:nth-child(3) {
  left: 40%;
  top: 20%;
}
.inner-page .posLine i:nth-child(4) {
  left: 65%;
  top: -10%;
}
.inner-page .posLine i:nth-child(5) {
  right: 0;
  left: auto;
  top: 10%;
}
.inner-page .dotsP p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.inner-page .dotsP p:before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color2);
  margin-right: .5em;
  margin-top: .6em;
}
.inner-page .titleLine {
  border-left: 0.3em solid var(--color);
  padding-left: .5em;
}
.inner-page .m-page {
  text-align: center;
  margin-top: 3em;
}
.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 a,
.inner-page .m-page span {
  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;
  width: 2em;
  height: 2em;
  border: 1px solid var(--color);
}
.inner-page .m-page span.current {
  background-color: var(--color);
  color: white;
}
.inner-page .m-page a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover {
  color: white;
  background-color: var(--color2);
  border-color: var(--color2);
}
.inner-page .slickBtn {
  font-size: 25px;
}
.service-page .service-2 li {
  border: 1px solid rgba(0, 54, 131, 0.8);
  border-right: none;
}
.service-page .service-2 li:first-child {
  border-left: none;
}
.service-page .service-2 a {
  height: 320px;
  position: relative;
  color: white;
  z-index: 1;
}
.service-page .service-2 a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 a .content {
  padding: 5%;
  width: 100%;
}
.service-page .service-2 a .content i {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  border: 1px solid white;
}
.service-page .service-2 a:hover:before {
  opacity: .3;
}
.service-page .service-3 {
  color: white;
  background-image: linear-gradient(to top,var(--color) 40%,transparent)
}
.service-page .service-3 li {
  position: relative;
}
.service-page .service-3 li:before {
  content: '';
  left: 1em;
  height: -webkit-calc(100% - 3em);
  height: -moz-calc(100% - 3em);
  height: calc(100% - 3em);
  position: absolute;
  width: 1px;
  top: 2.5em;
  background-color: rgba(120, 132, 139, 0.5);
}
.service-page .service-3 li:last-child:before {
  display: none;
}
.service-page .service-3 li span.num {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.service-page .service-3 li span.h6 {
  margin-top: .3em;
}
.service-page .service-4 li {
  background-color: white;
  border-top: 10px solid var(--color);
  border-bottom: 10px solid var(--color2);
  padding: 5%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.service-page .service-4 li .phone {
  color: var(--color);
}
.service-page .service-4 li a.link {
  height: 5.66666667em;
  border-radius: 3em;
  background-color: var(--color2);
  color: white;
  padding: 0 1.33333333em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-4 li a.link i {
  width: 2.53333333em;
  height: 2.53333333em;
  border: 1px solid white;
  border-radius: 100%;
}
.service-page .service-4 li a.link:hover {
  background-color: var(--color);
}


.about-page .text table tr {
  background-color: transparent !important;
}
.about-page .text table td {
  width: 30% !important;
  padding: 1em;
  border: none;
  position: relative;
}
.about-page .text table td:before {
  content: '';
  background-color: var(--color);
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 99%;
}
.about-page .text table td:first-child {
  font-weight: bold;
}
.about-page .text table td:last-child {
  width: 70% !important;
}
.about-page .text table td:last-child:before {
  background-color: #a2a2a2;
  height: 1px;
}
.about-page .about-3 {
  min-height: 61vw;
}
.about-page .about-3:before {
  content: '';
  width: 100%;
  height: 30.2929vw;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 30.2929vw, 0 100%, 100% 0%, 0% 0%);
  clip-path: polygon(0 30.2929vw, 0 100%, 100% 0%, 0% 0%);
  pointer-events: none;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
  background-color: white;
  z-index: -1;
}
.about-page .about-3:after {
  background-color: #dfe5ee !important;
}
.about-page .about-4 {
  color: black;
}
.about-page .about-4:before {
  background-color: #dfe5ee !important;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.about-page .about-4 .text {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-5 {
  color: black;
}
.about-page .about-5:before {
  background-color: white !important;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.about-page .about-5 .text {
 
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-5 .list {

  margin-left: auto;
  margin-right: auto;
}
.contact-page .bgfull {
  color: black;
}
.contact-page .bgfull:before {
  background-color: #dfe5ee !important;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.contact-page .bgfull:after {
  background-color: #1a1c25 !important;
  background-image: none !important;
  bottom: -1px !important;
}
.contact-page span.h2 {
  line-height: 1.4;
}
.contact-page .ui.container {
  max-width: 1200px;
}
.contact-page .phone {
  padding: 3% 5%;
  background-color: black;
  color: white;
}
.contact-page .phone strong {
  line-height: 1.2;
}
.contact-page .form {
  text-align: left;
  padding: 5%;
  background-color: white;
}
.contact-page .form label {
  border-left: 5px solid var(--color);
  padding-left: .5em;
  line-height: 1;
  font-weight: bold;
}
.contact-page .form label span {
  color: var(--color2);
}
.contact-page .form input,
.contact-page .form textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .form input:focus,
.contact-page .form textarea:focus {
  border-color: var(--color);
}
.contact-page .form textarea {
  height: 200px;
}
.contact-page .form button {
  border: none;
  min-width: 200px;
  background-color: var(--color);
  color: white;
}
.contact-page .form button:hover {
  background-color: var(--color2);
}
.contact-page .map iframe {
  width: 100%;
  border: none;
  background-color: #eee;
  display: block;
}
.machine-page .ui.container {
  max-width: 1200px;
}
.machine-page .machine-2 {
  color: black;
}
.machine-page .machine-2:before {
  display: none;
}
.machine-page .machine-2 .text table {
  background-color: white;
}
.machine-page .machine-2 .text table tr {
  background-color: transparent !important;
}
.machine-page .machine-2 .text table tr td {
  padding: 1em;
  border: 1px solid #ccc;
}
.machine-page .machine-2 .text table tr td:first-child {
  background-color: var(--color) !important;
  color: white;
}
.inner-page .sidebar-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
}
.inner-page .sidebar-content .sidebar-nav {
  width: 23%;
  position: sticky;
  top: 120px;
}
.inner-page .sidebar-content .sidebar-nav form {
  position: relative;
}
.inner-page .sidebar-content .sidebar-nav form input[type=text] {
  width: 100%;
  height: 70px;
  border-radius: 18px;
  background: 0 0;
  padding: 0 25px;
  font-size: 18px;
  color: #000;
  border: 1px solid var(--color);
}
.inner-page .sidebar-content .sidebar-nav form input[type=submit] {
  width: 30px;
  height: 30px;
  background: url(../images/icon-search.png) no-repeat center center;
  right: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
}
.inner-page .sidebar-content .sidebar-nav h2 {
  font-size: 24px;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin: 50px 0 25px;
  font-weight: 700;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li {
  position: relative;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a {
  text-transform: capitalize;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 18px 0 18px 25px;
  font-size: 18px;
  color: #000;
  border-bottom: 2px solid #fff;
  position: relative;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a:hover {
  color: var(--color);
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a:hover span {
  background: var(--color);
  color: #fff;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box a span {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 5px;
  background: #fff;
  font-size: 18px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  width: 50px;
  text-align: center;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box a {
  color: var(--color);
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box a span {
  background: var(--color);
  color: #fff;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box {
  position: relative;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box i {
  font-size: 20px;
  color: #000;
  height: 75px;
  line-height: 75px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 10px 0 0;
  position: absolute;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 3;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box i {
  color: var(--color);
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .nav-box i:before {
  content: "\e767";
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .nav-box:hover i {
  color: var(--color);
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .children {
  display: none;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .children {
  display: block;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .children li a {
  display: block;
  padding: 12px 0 12px 25px;
  font-size: 16px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li .children li a:hover {
  color: var(--color);
}
.inner-page .sidebar-content .sidebar-nav .sidebar-nav-list > li.active .children li.active a {
  color: var(--color);
}
.inner-page .sidebar-content .sidebar-nav .related {
  margin: 40px 0;
}
.inner-page .sidebar-content .sidebar-nav .related-list {
  margin-bottom: 60px;
}
.inner-page .sidebar-content .sidebar-nav .related-list li {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .related-img {
  display: block;
  max-width: 102px;
  border-radius: 5px;
  overflow: hidden;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .related-img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.inner-page .sidebar-content .sidebar-nav .related-list li .related-img img {
  width: 100%;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content {
  padding-left: 15px;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content h4 {
  max-width: 230px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content h4:hover {
  color: var(--color);
}
.inner-page .sidebar-content .sidebar-nav .related-list li .content p {
  font-size: 14px;
  line-height: 1;
  color: #9a9a9a;
  margin-top: 5px;
}
.inner-page .sidebar-content .sidebar-nav .related-list li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info {
  margin-bottom: 47px;
  padding: 80px 30px 85px;
  border-radius: 5px;
  background: url(../images/by.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info h5 {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 30px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info p {
  font-size: 16px;
  line-height: 2;
  color: #fff;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info .info-tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  margin: 25px 0 28px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info .info-tel img {
  margin-right: 20px;
}
.inner-page .sidebar-content .sidebar-nav .sidebar-info .icon a {
  margin: 0 14px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.inner-page .sidebar-content .sidebar-box {
  width: 95%;
 
}
.inner-page .sidebar-content .sidebar-box .img-scroll .slick-track {
  margin-left: 0;
}
.inner-page .sidebar-content .sidebar-box .img-scroll ul {
  margin: -5px;
}
.inner-page .sidebar-content .sidebar-box .img-scroll ul li {
  padding: 5px;
}
.product-page .bgfull {
  color: black;
}
.product-page .bgfull:before {
  background-color: #dfe5ee !important;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.product-page .bgfull:after {
  background-color: white !important;
  bottom: -1px !important;
}
.product-page span.tag {
  font-size: 16px;
  color: var(--color);
  display: block;
  margin-bottom: 0;
}
.product-page span.tag:before {
  content: '';
  width: 1em;
  height: 2px;
  background: var(--color);
  display: inline-block;
  margin-right: 0.5em;
}
.product-page h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
.product-page h1 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}
.oox {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
.lash h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  text-align: center;
}
.product-page .content {
  margin-top: 35px;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #3e3c3c;

  word-break: break-word;
}
.product-page .text .content {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #3e3c3c;
}
.product-page .content:after {
  content: '';
  display: block;
  clear: both;
}
.product-page .content .slick.fr {
  padding-left: 5%;
  padding-bottom: 5%;
}
.product-page .product-list {
  margin-top: 70px;
}
.product-page .product-list .slide {
  margin-bottom: 70px;
}
.product-page .product-list .slide:last-child {
  margin-bottom: 0;
}
.product-page .product-list .slide .left {
  padding-right: 30px;
}
.product-page .product-list .slide .left .slick {
  padding: 50px;
  display: block;
  width: 100%;
}
.product-page .product-list .slide .left .slick a {
  display: block !important;
}
.product-page .product-list .slide .right h3 {
  font-size: 42px;
  font-weight: 700;
  padding-bottom: .5em;
  border-bottom: 1px solid #003683;
}
.product-page .product-list .slide .right h3.title {

  padding-right: 80px;
}
.product-page .product-list .slide .right h3.title i {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: var(--color);
  position: absolute;
  right: 0;
  bottom: -35px;
}
.product-page .product-list .slide .right h4 {
  font-size: 18px;
  color: var(--color);
  font-weight: 700;
}
.product-page .product-list .slide .right .box2 {
  margin-top: 20px;
}
.product-page .product-list .slide .right .text {
  margin-top: 10px;
  font-size: 18px;
  color: #3e3c3c;
  opacity: .73;
  font-weight: 300;
  word-break: break-word;
  max-height: 5.4em;
  overflow: auto;
}
.product-page .product-list .slide .right .slick {
  margin: -10px;
  padding-top: 20px;
}
.product-page .product-list .slide .right .slick a {
  display: block;
  padding: 10px;
}
.product-page .product-list .slide .right .slick a img {
  border: 4px solid #158dd4;
  border-radius: 100%;
}
.product-page .product-list .slide .right .faqList h5 i.fa {
  float: right;
  margin-left: 0.5em;
}
.product-page .pro_init_1 {
  padding-top: 80px;
}
.product-page .pro_init_1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product-page .pro_init_1 .container .left {
  width: 49%;
  overflow: hidden;
}
.product-page .pro_init_1 .container .left .smallImg {
  width: 22.6%;
  float: left;
}
.product-page .pro_init_1 .container .left .smallImg .slick-track {
  display: block;
}
.product-page .pro_init_1 .container .left .smallImg .slick-track .slick-slide>div {
  height: auto;
}
.product-page .pro_init_1 .container .left .smallImg ul {
  margin: -10px;
}
.product-page .pro_init_1 .container .left .smallImg ul li {
  padding: 10px;
}
.product-page .pro_init_1 .container .left .smallImg ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-page .pro_init_1 .container .left .smallImg ul li a img {
  display: block;
  border: 1px solid #dcdcdc;
}
.product-page .pro_init_1 .container .left .bigImg {
  width: 77.4%;
  padding-left: 4%;
  display: inline-block;
}
.product-page .pro_init_1 .container .left .bigImg ul li {
  padding: 1px;
}
.product-page .pro_init_1 .container .left .bigImg ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.product-page .pro_init_1 .container .left .bigImg img {
  border: 1px solid #dcdcdc;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow {
  width: 40px;
  height: 40px;
  background: #fffef9;
  color: transparent;
  font-size: 0;
  border: none;
  opacity: .8;
  cursor: pointer;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev {
  left: 12px;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev:after {
  background-image: url("/template/en/images/banner-btn-l.png");
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next {
  right: 12px;
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next:after {
  background-image: url("/template/en/images/banner-btn-r.png");
}
.product-page .pro_init_1 .container .left .bigImg .slick-arrow:hover {
  background: var(--primary);
}
.product-page .pro_init_1 .container .left .big_img {
  width: 100%;
  display: block;
}
.product-page .pro_init_1 .container .left .big_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-page .pro_init_1 .container .right {
  width: 46%;
}
.product-page .pro_init_1 .container .right .sub_img {
  width: 36px;
  margin-bottom: 15px;
}
.product-page .pro_init_1 .container .right .text_1 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 32px;
  color: #a8a8a8;
  font-weight: 500;
}
.product-page .pro_init_1 .container .right .text_2 {
  font-size: 42px;
  line-height: 1.4;
  color: #121212;
 
}
.product-page .pro_init_1 .container .right .shangxia a {
  display: block;
}
.product-page .pro_init_1 .container .right .cont_list {
  margin-top: 20px;
}
.product-page .pro_init_1 .container .right .cont_list .list {
  position: relative;
}
.product-page .pro_init_1 .container .right .cont_list .list .title {
  font-size: 18px;
  padding: 25px 0;
  padding-right: 30px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  -o-transition: all 0.5s;
}
.product-page .pro_init_1 .container .right .cont_list .list .title span {
  color: #4a4a4a;
  font-weight: 700;
  text-transform: uppercase;
}
.product-page .pro_init_1 .container .right .cont_list .list .title i {
  width: 20px;
  position: absolute;
  top: 22px;
  right: 0;
  font-size: 30px;
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  -o-transition: all 0.5s;
}
.product-page .pro_init_1 .container .right .cont_list .list .content {
  font-size: 18px;
  color: #3f3f3f;
  line-height: 2;
  max-height: 300px;
  overflow: auto;
  padding-right: 10px;
}
.product-page .pro_init_1 .container .right .cont_list .list .content::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.product-page .pro_init_1 .container .right .cont_list .list.active .title {
  border-bottom: 1px solid #d6d6d6;
}
.product-page .pro_init_1 .container .right .cont_list .list.active .title i {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.product-page .pro_init_1 .container .right .cont_list .list:last-child .title {
  border-bottom: 1px solid #d6d6d6;
}
.product-page .pro_init_1 .container .right .cont_list .list .content ul li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.product-page .pro_init_1 .container .right .cont_list .list .content ul li h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-page .pro_init_1 .container .right .cont_list .list .content ul li .con {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 17px;
  line-height: 1.6;
}
.product-page .pro_init_1 .container .right .cont_list .list .content ul li:last-child {
  margin-bottom: 0;
}
.product-page .pro_init_1 .container .right .more {
  margin-top: 30px;
  padding: 0 2em;
  background-color: var(--color);
  color: white;
}
.product-page .pro_init_1 .container .right .more:hover {
  background-color: var(--color2);
}
.product-page .pro_init_1 .container .right .more_cont {
  margin-top: 55px;
  border-color: #000;
  color: #000;
}
.product-page .pro_init_1 i.bg {
  background-color: var(--color) !important;
}
.product-page .pro_init_1:after {
  background-color: white !important;
  background-image: url(../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png) !important;
}
.product-page .prodet-2 {
  z-index: 1;
}
.product-page .prodet-2 .options ul {
  border-bottom: 1px solid #d2d2d2;
}
.product-page .prodet-2 .options ul li {
  margin-right: 100px;
  font-size: 36px;
  font-weight: 700;
  color: #121212;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0 10px 10px;
  cursor: pointer;
  line-height: 1.4;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-family: var(--font-en);
}
.product-page .prodet-2 .options ul li:after {
  content: '';
  height: 3px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: var(--primary);
}
.product-page .prodet-2 .options ul li:hover,
.product-page .prodet-2 .options ul li.active {
  color: #373330;
}
.product-page .prodet-2 .options ul li:hover:after,
.product-page .prodet-2 .options ul li.active:after {
  width: 100%;
}
.product-page .prodet-2 .ret {
  margin-top: 50px;
}
.product-page .prodet-2 .ret .content {
  font-size: 18px;
  line-height: 32px;
}
.product-page .prodet-2 .ret .content dl dd {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.product-page .prodet-2 .ret .content dl dd h4 {
  font-size: 30px;

  line-height: 1.2;

  margin-bottom: 10px;
}
.product-page .prodet-2 .ret .content dl dd .con {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 18px;
  line-height: 1.8;
}
.news-page .bgfull {
  color: black;
}
.news-page .bgfull:before {
  background-color: #dfe5ee !important;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.news-page .bgfull:after {
  background-color: #1a1c25 !important;
  background-image: unset !important;
  bottom: -1px !important;
}
.news-page .ui.container {
  max-width: 1200px;
}
.news-page .list ul li {
  color: #182541;
  border-bottom: 1px solid #7f7f7f;
}
.news-page .list ul li:last-child {
  margin-bottom: 0;
}
.news-page .list ul li time {
  white-space: nowrap;
}
.news-page .list ul li .cat {
  height: 2em;
  padding: 0 1em;
  border-radius: 1em;
  background-color: var(--color);
  color: white;
}
.download-page .bgfull {
  color: black;
}
.download-page .bgfull:before {
  background-color: #dfe5ee !important;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.download-page .bgfull:after {
  background-color: #1a1c25 !important;
  background-image: unset !important;
  bottom: -1px !important;
}
.download-page .list .h6 {
  margin-top: 1em;
}
.download-page .list .h6 i {
  font-size: 1.5em;
  color: var(--color2);
  line-height: 1;
}
.project-page .ui.container,
.faq-page .ui.container {
  max-width: 1200px;
}
.project-page .bgfull,
.faq-page .bgfull {
  color: black;
}
.project-page .bgfull:before,
.faq-page .bgfull:before {
  background-color: #dfe5ee !important;
  background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.project-page .bgfull:after,
.faq-page .bgfull:after {
  background-color: #1a1c25 !important;
  background-image: unset !important;
  bottom: -1px !important;
}
.project-page .init-1 {
  padding-top: 120px;
  padding-bottom: 80px;
}
.project-page .init-1 .container .left {
  font-weight: 600;
  text-transform: uppercase;
}
.project-page .init-1 .container .list {
  width: 33.33%;
}
.project-page .init-2 .container .content ul {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.project-page .init-2 .container .content ul li {
  margin-bottom: -1px;
  border-bottom: 1px solid #ccc;
}
.project-page .init-2 .container .content ul li .box {
  height: 100%;
}
.project-page .init-2 .container .content ul li .box .content {
  padding: 10px;
}
.project-page .init-2 .container .content ul li .box .content .text p:before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color);
  margin-right: .5em;
  margin-top: .2em;
  display: inline-block;
}
.project-page .init-2 .container .content ul li .box .font-32 {
  font-weight: 600;
}
.project-page .init-2 .container .content ul li .box .img {
  width: 280px;
  flex-shrink: 0;
}
.project-page .init-2 .container .content ul li .box:hover {
  background-color: #f7f7f7;
}
.project-page .init-2 .container .content ul li .box:hover .font-32 {
  color: #008cd6;
}
.project-page .init-2 .container .pageC {
  padding: 40px 0;
  background-color: #fff;
}
.faq-page .list {
  margin-top: 60px;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}
.faq-page .list ul li {
  padding: 35px 30px;
  border-bottom: 1px solid #e7e7e7;
  line-height: 1.6;
}
.faq-page .list ul li h6 {
  font-weight: 600;
  padding-right: 80px;
  position: relative;
}
.faq-page .list ul li h6 i {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 1px solid #c3c3c3;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.faq-page .list ul li h6 i:after,
.faq-page .list ul li h6 i:before {
  content: '';
  width: 20px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.faq-page .list ul li h6 i:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-page .list ul li h6 i.active {
  background: #000;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.faq-page .list ul li h6 i.active:after,
.faq-page .list ul li h6 i.active:before {
  background-color: white;
}
.faq-page .list ul li .text {
  margin-top: 20px;
  color: #a5a5a5;
  display: none;
  line-height: 40px;
}
@media screen and (max-width: 1250px) {
  .contact-page .map iframe {
    height: 360px;
  }
  .about-page .text table tbody,
  .machine-page .machine-2 .text table tbody {
    min-width: auto !important;
    white-space: normal !important;
  }
  .service-page .service-2 a {
    height: 240px;
  }
  .service-page .service-2 a:before {
    opacity: .3;
  }
  .slickDots {
    font-size: 10px;
  }
  .inner-page .sidebar-content .sidebar-box {
    width: 100%;
    padding-left: 0;
  }
  .inner-page .sidebar-content .sidebar-nav {
    display: none;
  }
  .product-page .prodet-2 .options ul li {
    font-size: 20px;
    margin-right: 2em;
  }
  .product-page .prodet-2 .ret .content {
    font-size: 14px;
  }
  .product-page .pro_init_1 .container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .product-page .pro_init_1 .container .right {
    width: 100%;
    margin-top: 40px;
  }
  .product-page .pro_init_1 .container .left {
    width: 100%;
  }
  .project-page .init-1 {
    padding-top: 60px;
  }
  .faq-page .list ul li h6 i {
    zoom: .5;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .list ul li {
    padding: 20px;
  }
  .Auxil-industry{
    display: none!important;
  }
  .news-page h1 {
    font-size: 20px;
  }
  .news-page .list ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .news-page .list ul li .title {
    margin-top: 1em;
  }
  .product-page .prodet-2 .ret .content dl dd h4 {
    font-size: 18px;
  }
  .product-page .prodet-2 .ret .content dl dd .con {
    font-size: 14px;
  }
  .product-page .pro_init_1 .container .right .text_2 {
    font-size: 24px;
  }
  .product-page .product-list .slide .left {
    width: 100%;
    padding: 0;
  }
  .product-page .product-list .slide .right {
    width: 100%;
    margin-top: 30px;
  }
  .product-page .product-list .slide .right .text {
    max-height: none;
  }
  .service-page .service-2 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-2 ul li {
    width: 100%;
  }
  .service-page .service-2 a {
    height: 180px;
  }
  .inner-banner .mbx {
    max-width: none;
    text-align: left;
    color: white !important;
  }
  .inner-banner span.tag {
    margin-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .product-page .prodet-2 .options {
    display: none;
  }
  .product-page .prodet-2 .ret {
    margin-top: 0;
  }
  .product-page .prodet-2 .ret .slide {
    display: block !important;
  }
}
.seoPublic .bgfull {
  color: black;
}
.seoPublic>div.bgfull:before {
  background-color: transparent !important;
}
.seoPublic>div:nth-child(odd).bgfull:after {
  background-color: #dfe5ee !important;
}
.seoPublic>div:nth-child(even).bgfull:before {
  background-color: #dfe5ee !important;
  background-image: url(../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png) !important;
}
.seoPublic>div:last-child.bgfull:after {
  background-color: #1a1c25 !important;
  background-image: unset !important;
}
.seoPublic>div:nth-child(odd) {
    background: transparent !important;
}

#banner .video-container { 
 position: relative;
}
#banner .video-container::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color:rgb(3 39 78 / 50%);

}

@media screen and (max-width: 1000px) {
  #index-body .init-1 i.bg,
  #index-body .init-2 i.bg,
  #index-body .init-3 i.bg {
    background-size: cover !important;
  }
  #banner .video-container video {
    height: 80vh;
  }
}

.zexindianqi{
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #003683;
}

.seoPublic .Auxil-about .box .right div.h3{
  margin-top: 30px;
  line-height: 30px;
}

.zexinelectric{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 399px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 3px 2px;
}

.seoPublic .text a{
  color: #666;
}

.font-90{
  font-size: 47px;
}

.text h1{
  display: initial;
}