body {
  font-family: "Arial";
  max-width: 1920px;
  --color: #0041ce;
  font-weight: normal;
  background-color: #3c3c3c;
  background-image: -webkit-radial-gradient(at 80% 50%, #292929, transparent);
  background-image: -moz-radial-gradient(at 80% 50%, #292929, transparent);
  background-image: radial-gradient(at 80% 50%, #292929, transparent);
  color: white;
  margin: 0 auto;
}
.container {
  width: 1650px;
}
.container2 {
  max-width: 1550px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.body-overflow-box.active {
  -webkit-filter: blur(20px);
  filter: blur(20px);
}
.body-overflow-box.active ~ #sideBar-share {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-filter: blur(20px);
  filter: blur(20px);
}
.cloudBG {
  position: relative;
  z-index: 1;
}

.pt-300{
  padding-top: 300px;
}
.cloudBG canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
  overflow: hidden;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 25px;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  height: 105px;
  background-color: #5e5e61;
}
#header .nav .logo img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-box {
  margin-right: auto;
  width: 39%;
  height: 100%;
}
#header .nav .menu-box > div {
  height: 100%;
}
#header .nav .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 .menu-box ul.menu > li {
  color: rgba(255, 255, 255, 0.8);
  -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 .menu-box ul.menu > li:hover {
  color: white;
}
#header .nav .menu-box ul.menu > li:first-child {
  display: none;
}
#header .nav .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;
}
#header .nav .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 .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 .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .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 form {
  width: 15em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 3em;
  padding-left: 1em;
  padding-right: 1.2em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav form input {
  width: 100%;
  border: none;
  background-color: transparent;
}
#header .nav form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
#header .nav form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
#header .nav form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
#header .nav form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
#header .nav form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
#header .nav form button {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 1em;
}
#header .nav form:focus-within {
  border-color: white;
}
#header .nav .line {
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}
#header .nav .yuy span {
  color: rgba(255, 255, 255, 0.3);
}
#header .nav .yuy span span {
  width: 1.36363636em;
  height: 1.36363636em;
  border-radius: 100%;
}
#header .nav .more {
  height: 2.81818182em;
  min-width: 10em;
  background-color: white;
  color: #061f24;
}
#header .nav .more:hover {
  background-color: var(--color);
  color: white;
}
#header.active {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  top: 0;
}
#header.active.active2 {
  top: 25px;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
#header.active.active2 .nav .logo img {
  -webkit-filter: unset;
  filter: unset;
}
#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;
}
.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;
}
#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;
}
.more {
  background-color: var(--color);
  height: 2.75em;
  padding: 0 1em;
  min-width: 10em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover {
  background-color: white;
  color: var(--color);
}
#pups_from {
  color: black;
  border-radius: 15px !important;
}
.text {
  line-height: 1.33333333;
}
#sideBar-share {
  position: fixed;
  left: 0;
  width: 80px;
  text-align: center;
  height: 100vh;
  z-index: 10;
  top: 0;
  background-color: #3f3f3f;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.nofull {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  line-height: .8;
  margin-bottom: -0.1em;
}
span.h2 {
  line-height: 1.1;
}
span.h2 span {
  opacity: .2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.link {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.link em {
  line-height: 1;
  position: relative;
  padding-bottom: .1em;
}
.link em:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: white;
}
.link img {
  display: block;
  margin-top: .1em;
}
.link:hover em:after {
  width: 0;
}
.wow-wrap {
  -webkit-filter: opacity(0) blur(2px);
  filter: opacity(0) blur(2px);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -webkit-filter 1s ease-out;
  transition: -webkit-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -webkit-filter 1s ease-out;
  -moz-transition: transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), filter 1s ease-out, -moz-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93);
  transition: transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), filter 1s ease-out;
  transition: transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), filter 1s ease-out, -webkit-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -moz-transform 1.5s cubic-bezier(0.17, 0.67, 0.14, 0.93), -webkit-filter 1s ease-out;
}
i .wow-wrap {
  line-height: 1;
}
/* 方向感 */
.wow-wrap[data-wow-type="up"] {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
.wow-wrap[data-wow-type="down"] {
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.wow-wrap[data-wow-type="left"] {
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.wow-wrap[data-wow-type="right"] {
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}
.wow-wrap[data-wow-type="scale"] {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
/* 激活状态（柔和进入） */
.wow-wrap.wow-active {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-filter: none;
  filter: none;
  display:inline;
}
#banner li {
  position: relative;
  overflow: hidden;
}
#banner li video {
  border: none;
  background-color: #222;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#banner li .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left,black,transparent);
  background-size: 3px 3px;
  opacity: .5;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  opacity: 0;
  -webkit-transition: 1s .5s;
  -moz-transition: 1s .5s;
  transition: 1s .5s;
}
#banner .slick-current li .content {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition-delay: 1.5s;
  -moz-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
#banner .slickBtn div {
  width: 2.5em;
  height: 2.5em;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
}
#banner .slickBtn div.prev {
  right: auto;
  left: 5%;
}
#banner .slickBtn div.next {
  left: auto !important;
  right: 5%;
}
#index-body .init-1 .box {
  padding: 2% 4%;
  background-color: #6f6f6f;
  margin-top: -3%;
}
#index-body .init-1 .box li .content {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
#index-body .init-1 .box li .icon {
  opacity: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .box li .icon i {
  width: 1em;
  height: 1em;
}
#index-body .init-1 .box li .icon i img {
  max-width: 1em;
  max-height: 1em;
}
#index-body .init-1 .box li:hover .content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#index-body .init-1 .box li:hover .icon {
  opacity: 0;
  top: 0;
}
#index-body .init-2 .box .slide i {
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color);
  position: relative;
  display: block;
}
#index-body .init-2 .box .slide i:before,
#index-body .init-2 .box .slide i:after {
  content: '';
  width: 300%;
  height: 300%;
  position: absolute;
  left: -100%;
  top: -100%;
  border-radius: 100%;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  background-color: inherit;
  -webkit-filter: opacity(0.4);
  filter: opacity(0.4);
}
#index-body .init-2 .box .slide i:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
#index-body .init-2 .box .slide .content {
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 240px;
  background-color: var(--color);
  color: white;
  text-align: center;
  margin-left: 2em;
  margin-bottom: 2em;
  opacity: 0;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
}
#index-body .init-2 .box .slide .content span.h6 {
  padding: 1em .5em .5em;
  display: block;
}
#index-body .init-2 .box .slide li {
  cursor: pointer;
  cursor: hand;
}
#index-body .init-2 .box .slide li.active {
  z-index: 1;
}
#index-body .init-2 .box .slide li.active .content {
  z-index: 1;
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
#index-body .init-2 .box .slide li.rtl .content {
  margin-bottom: auto;
  margin-top: 2em;
  top: 100%;
  bottom: auto;
  right: 100%;
  left: auto;
  margin-right: 2em;
  margin-left: auto;
}
#index-body .init-2 .box .slide li:nth-child(1) {
  left: 6%;
  top: 83%;
}
#index-body .init-2 .box .slide li:nth-child(2) {
  left: 31%;
  top: 46%;
}
#index-body .init-2 .box .slide li:nth-child(3) {
  left: 36%;
  top: 56%;
}
#index-body .init-2 .box .slide li:nth-child(4) {
  left: 50%;
  top: 35%;
}
#index-body .init-2 .box .slide li:nth-child(5) {
  left: 66%;
  top: 25%;
}
#index-body .init-2 .box .slide li:nth-child(6) {
  left: 86%;
  top: 26%;
}
#index-body .init-2 .box .slide dl {
  bottom: 5%;
  right: 10px;
}
#index-body .init-2 .box .slide dl dd {
  max-width: 110px;
  border-radius: 100%;
  display: block;
  overflow: hidden;
}
#index-body .init-2 .big .slide2 {
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: .5s;
  width: 100%;
}
#index-body .init-2 .big .slide2.active {
  opacity: 1;
  z-index: 1;
  position: static;
}
#index-body .init-2 .big .slide2 li>div {
  padding: 3%;
  background-color: #505050;
}
#index-body .init-2 .big .slide2 li .wow-wrap,
#index-body .init-2 .big .slide2 li img {
  height: 100%;
  max-height: 250px;
}
#index-body .init-2 .list .arrows {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .list .arrows:hover {
  opacity: 1;
}
#index-body .init-2 .list ul {
  margin-right: -2px;
}
#index-body .init-2 .list li {
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}
#index-body .init-2 .list li i {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  padding-bottom: 1em;
  position: relative;
}
#index-body .init-2 .list li i:after {
  content: '';
  width: 100%;
  height: 0.66666667em;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/icon-bl.png");
  background-size: auto 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .list li span.h6 {
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .list .slick-current li i {
  opacity: 1;
}
#index-body .init-2 .list .slick-current li span.h6 {
  opacity: 0;
}
#index-body .init-2 .line {
  height: 5px;
  background-color: #626262;
}
#index-body .init-2 .line i {
  position: absolute;
  height: 100%;
  left: 0;
  background-color: var(--color);
  top: 0;
  z-index: 1;
  width: 0;
}
#index-body .init-2 .line i:before {
  content: '';
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid white;
  border-radius: 100%;
  width: 17px;
  height: 17px;
  background-color: inherit;
  position: absolute;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
#index-body .init-3 {
  position: relative;
}
#index-body .init-3 .list span.h6 {
  line-height: 1;
}
/*#index-body .init-3 .map li {
  opacity: .2;
}
#index-body .init-3 .map li.active {
  opacity: 1;
}*/
#index-body .init-3 .map li i {
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: #0072d1;
  position: relative;
}
#index-body .init-3 .map li i:before,
#index-body .init-3 .map li i:after {
  content: '';
  width: 300%;
  height: 300%;
  position: absolute;
  left: -100%;
  top: -100%;
  border-radius: 100%;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  background-color: inherit;
  -webkit-filter: opacity(0.4);
  filter: opacity(0.4);
}
#index-body .init-3 .map li i:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
#index-body .init-3 .map li .child {
  width:410px;
 
 
  position: absolute;
  bottom: 110%;
  right: 110%;
  display: none;
}
/*#index-body .init-3 .map li.active:hover .child {*/
#index-body .init-3 .map li:hover .child {
  display: block;
}
#index-body .init-3 .map li:nth-child(1) {
  left: 15%;
  top: 35%;
}
#index-body .init-3 .map li:nth-child(2) {
  left: 35%;
  top: 20%;
}
#index-body .init-3 .map li:nth-child(3) {
  left: 58%;
  top: 55%;
}
#index-body .init-3 .map li:nth-child(4) {
  left: 75%;
  top: 35%;
}
#index-body .init-3 .map li:nth-child(5) {
  left: 87%;
  top: 51%;
}
#index-body .init-3 .map li:nth-child(6) {
  left: 75%;
  top: 70%;
}
#index-body .init-3 .map li:nth-child(7) {
  left: 30%;
  top: 74%;
}
#index-body .init-3 .map li:nth-child(8) {
  left: 53%;
  top: 76%;
}
#index-body .init-3 .map li:nth-child(9) {
  left: 23%;
  top: 49%;
}
#index-body .init-3 .map li:nth-child(10) {
  left: 58%;
  top: 43%;
}
#index-body .init-3 .map li:nth-child(11) {
  left: 84%;
  top: 82%;
}
#index-body .init-3 .map li:nth-child(12) {
  left: 47%;
  top: 63%;
}
#index-body .init-3 .map li:nth-child(13) {
  left: 79%;
  top: 50%;
}
#index-body .init-3 .map li:nth-child(14) {
  left: 47%;
  top: 50%;
}
#index-body .init-3 .map li:nth-child(15) {
  left: 58%;
  top: 68%;
}
#index-body .init-3 .map li:nth-child(16) {
  left: 69%;
  top: 63%;
}
#index-body .init-3 .map li:nth-child(17) {
  left: 67%;
  top: 51%;
}
#index-body .init-3 .map li:nth-child(18) {
  left: 28%;
  top: 86%;
}
#index-body .init-3 .map li:nth-child(19) {
  left: 85%;
  top: 73%;
}
#index-body .init-3 .map li:nth-child(20) {
  left: 47%;
  top: 63%;
}
#index-body .init-3 .area {
  width: 160px;
  border-top-left-radius: .5em;
  border-bottom-left-radius: .5em;
  background-color: #333;
  z-index: 2;
  right: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .init-3 .area li {
  padding: 1em;
  border-top-left-radius: .5em;
  border-bottom-left-radius: .5em;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .area li.active {
  background-color: var(--color);
}
#index-body .init-4 {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}
#index-body .init-4 .maskbg {
  background-repeat: no-repeat;
  background-position: right top 35%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  background-size: 36.04166667% auto;
}
#index-body .init-4 .text {
  max-width: 580px;
}
#index-body .init-4 .list ul {
  gap: 1em;
}
#index-body .init-4 .list li {
  background-color: #3b3b3b;
  padding: 0.7em;
  cursor: pointer;
  cursor: hand;
}
#index-body .init-4 .list li:after {
  content: '';
  width: 1em;
  height: 2px;
  background-color: #595959;
  top: 50%;
  margin-top: -1px;
  left: 100%;
  position: absolute;
}
#index-body .init-4 .list li:before {
  content: '';
  border-left: 0.22em solid #595959;
  border-top: 0.22em solid transparent;
  border-bottom: 0.22em solid transparent;
  left: 100%;
  top: 50%;
  margin-left: .5em;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}
#index-body .init-4 .list li i {
  width: 1em;
  height: 1em;
}
#index-body .init-4 .list li i img {
  max-width: 1em;
  max-height: 1em;
}
#index-body .init-4 .list li .mask {
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
  border-radius: inherit;
}
#index-body .init-4 .list li:hover .mask {
  opacity: 1;
}
#index-body .init-4 .list li:nth-child(5):after {
  top: 100%;
  width: 2px;
  height: 1em;
  margin-top: auto;
  margin-left: -1px;
  left: 50%;
}
#index-body .init-4 .list li:nth-child(5):before {
  top: 100%;
  left: 50%;
  margin-top: .5em;
  margin-left: auto;
  -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);
}
#index-body .init-4 .list li:nth-child(n+6) {
  grid-row: 2;
}
#index-body .init-4 .list li:nth-child(n+6):after {
  left: auto;
  right: 100%;
}
#index-body .init-4 .list li:nth-child(n+6):before {
  left: auto;
  right: 100%;
  margin-right: .5em;
  margin-left: auto;
  -webkit-transform: translate(50%, -50%) rotateY(180deg);
  -moz-transform: translate(50%, -50%) rotateY(180deg);
  transform: translate(50%, -50%) rotateY(180deg);
}
#index-body .init-4 .list li:last-child:after,
#index-body .init-4 .list li:last-child:before {
  display: none;
}
#index-body .init-4 .list li:nth-child(6) {
  grid-column: 5;
}
#index-body .init-4 .list li:nth-child(7) {
  grid-column: 4;
}
#index-body .init-4 .list li:nth-child(8) {
  grid-column: 3;
}
#index-body .init-4 .list li:nth-child(9) {
  grid-column: 2;
}
#index-body .init-4 .list li:nth-child(10) {
  grid-column: 1;
}
#index-body .init-5 {
  background-color: var(--color);
  position: relative;
}
#index-body .init-5:not(.nobg):before {
  content: '';
  width: 3.64583333vw;
  height: 23%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: skewX(-45deg);
  -moz-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
  background-color: #343434;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}
#index-body .init-5 canvas {
  opacity: .5;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
#index-body .init-5 .list ul {
  margin: -0.5em -1em;
}
#index-body .init-5 .list ul .slick-slide > div {
  height: auto;
}
#index-body .init-5 .list ul li {
  padding: .5em 1em;
}
#index-body .init-5 .list ul li .box {
  background-color: white;
  overflow: hidden;
}
#index-body .init-5 .list ul li .box a.lang {
  max-width: 60px;
  border: 2px solid white;
  -webkit-box-shadow: 2px 4px 18px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 4px 18px rgba(0, 0, 0, 0.3);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  bottom: 93%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-5 .list ul li .box a.lang img {
  width: 100%;
}
#index-body .init-5 .list ul li .box .content {
  padding: 1.25em 1.875em;
  color: black;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: inherit;
  z-index: 1;
}
#index-body .init-5 .list ul li .box .content .text {
  line-height: 1.4;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 2.8em;
}
#index-body .init-5 .list ul li .box .content:after,
#index-body .init-5 .list ul li .box .content:before {
  content: '';
  width: 100%;
  height: 150%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-5 .list ul li .box .content:after {
  background-color: inherit;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
#index-body .init-5 .list ul li .box .content:before {
  background-color: #e30e1b;
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  left: -40%;
}
#index-body .init-5 .list ul li .box:hover .content {
  margin-top: -1.4em;
}
#index-body .init-5 .list ul li .box:hover .content a.lang {
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}
#index-body .init-5 .list ul li .box:hover .content .text {
  height: 4.2em;
  -webkit-line-clamp: 3;
}
#index-body .init-5 .list ul li .box:hover .content:after {
  -webkit-transform: skewY(-6deg);
  -moz-transform: skewY(-6deg);
  -ms-transform: skewY(-6deg);
  transform: skewY(-6deg);
}
#index-body .init-5 .list ul li .box:hover .content:before {
  -webkit-transform: skewY(9deg);
  -moz-transform: skewY(9deg);
  -ms-transform: skewY(9deg);
  transform: skewY(9deg);
}
#index-body .init-5 .slickDots li {
  width: 5.6em;
  height: 0.5em;
  border-radius: 2px;
  background-color: white;
  opacity: .2;
  border: none;
  padding: 0 !important;
  margin: 0 .9em !important;
}
#index-body .init-5 .slickDots li.slick-active {
  opacity: 1;
}
#index-body .init-6 hr {
  width: 5.52083333vw;
  height: 3px;
  background-color: var(--color);
  margin-left: auto;
  margin-right: auto;
}
#index-body .init-6 .text {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
#index-body .init-6 .list {
  max-height: 242px;
  overflow: hidden;
}
#index-body .init-6 .list ul {
  row-gap: 1em;
  -webkit-column-gap: 1.33333333em;
  -moz-column-gap: 1.33333333em;
  column-gap: 1.33333333em;
}
#footer span.nofull {
  font-size: 9.58333333vw;
  padding-left: .35em;
}
#footer .form {
  background-color: #0143d0;
  position: relative;
  z-index: 1;
}
#footer .form label {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  height: 3.66666667em;
  padding: 0 1em;
}
#footer .form label input {
  border: none;
  background-color: transparent;
  width: 100%;
}
#footer .form label input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#footer .form label input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#footer .form label input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#footer .form label input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#footer .form label input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#footer .form button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #0039b4;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .form button:hover {
  background-color: black;
}
#footer span.h6 {
  line-height: 1;
}
#footer .wid-50 span.h6 {
  line-height: 1.5;
}
#footer .link:before {
  content: '';
  width: .5em;
  height: .5em;
  background-color: white;
  border-radius: 100%;
}
#footer .footer-top .box .slide hr {
  max-width: 80px;
  margin-left: 0;
  margin-right: auto;
}
#footer .footer-top .box .slide .nav {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.77777778;
}
#footer .footer-top .box .slide .nav ul ul {
  display: none;
}
#footer .footer-top .box .slide .nav a:hover {
  color: white;
}
#footer .footer-top .box .slide .news {
  padding: 1em;
  background-color: #1f1f1f;
}
#footer .footer-top .box .slide .news time {
  line-height: 1;
}
#footer .footer-top .box .slide:last-child {
  padding: 0 3%;
  max-width: 500px;
}
#footer .footer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-info .text {
  max-width: 340px;
  line-height: 1.77777778;
}
#footer .footer-bottom svg {
  max-height: 1.55555556em;
  width: auto;
  display: block;
  fill: white;
}
#footer .footer-bottom .wow-wrap {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
#footer .footer-bottom .wow-wrap.wow-active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media screen and (min-width: 1920px) {
  #sideBar-share {
    height: 100%;
  }
  #banner li video {
    height: auto;
    max-height: 100vh;
  }
  #footer span.nofull {
    font-size: 184px;
  }
}
@media screen and (max-width: 1800px) {
  .ui.container {
    max-width: 90%;
  }
  .ui.container2 {
    max-width: 85%;
  }
  #sideBar-share {
    width: 5%;
  }
  #index-body .init-3 .area {
    width: 8%;
  }
}
@media screen and (max-width: 1600px) {
  #index-body .init-2 .box .slide dl dd {
    max-width: 70px;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav form {
    width: 11em;
  }
  #header .nav {
    zoom: .8;
    height: 90px;
  }
  #index-body .init-5 .list ul li .box a.lang {
    max-width: 40px;
  }
  .footer-info .logo img {
    max-width: 150px;
  }
}
@media screen and (max-width: 1250px) {
  .ui.container {
    max-width: none !important;
  }
  #sideBar-share {
    display: none;
  }
  #index-body .init-2 .box .slide .content {
    zoom: .7;
  }
  #footer .form button {
    padding: 1em;
  }
  #footer span.nofull {
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .init-1 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
  #index-body .init-1 ul li {
    width: 45%;
  }
  #index-body .init-1 .box li .icon {
    position: static;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  #index-body .init-1 .box li .content {
    opacity: 1;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    margin-top: 3%;
  }
  #index-body .init-2 .box .slide li .content {
    display: none !important;
  }
  #index-body .init-3 .right {
    display: none;
  }
  #index-body .init-3 .area {
    display: none;
  }
  #index-body .init-4 .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #index-body .init-4 .list ul li:nth-child(2n+2):after {
    top: 100%;
    width: 2px;
    height: 1em;
    margin-top: auto;
    margin-left: -1px;
    left: 50%;
  }
  #index-body .init-4 .list ul li:nth-child(2n+2):before {
    top: 100%;
    left: 50%;
    margin-top: .5em;
    margin-left: auto;
    margin-right: auto;
    -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);
  }
  #index-body .init-4 .list ul li:nth-child(3),
  #index-body .init-4 .list ul li:nth-child(7) {
    grid-row: 2;
  }
  #index-body .init-4 .list ul li:nth-child(3):after,
  #index-body .init-4 .list ul li:nth-child(7):after {
    left: auto;
    right: 100%;
  }
  #index-body .init-4 .list ul li:nth-child(3):before,
  #index-body .init-4 .list ul li:nth-child(7):before {
    left: auto;
    right: 100%;
    margin-right: .5em;
    margin-left: auto;
    -webkit-transform: translate(50%, -50%) rotateY(180deg);
    -moz-transform: translate(50%, -50%) rotateY(180deg);
    transform: translate(50%, -50%) rotateY(180deg);
  }
  #index-body .init-4 .list ul li:last-child:after,
  #index-body .init-4 .list ul li:last-child:before {
    display: none;
  }
  #index-body .init-4 .list ul li:nth-child(5):after {
    width: 1em;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 100%;
    position: absolute;
  }
  #index-body .init-4 .list ul li:nth-child(5):before {
    border-left: 0.22em solid #595959;
    border-top: 0.22em solid transparent;
    border-bottom: 0.22em solid transparent;
    left: 100%;
    top: 50%;
    margin-left: .5em;
    margin-top: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
  }
  #index-body .init-4 .list ul li:nth-child(9):after {
    width: 1em;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 100%;
    position: absolute;
  }
  #index-body .init-4 .list ul li:nth-child(9):before {
    border-left: 0.22em solid #595959;
    border-top: 0.22em solid transparent;
    border-bottom: 0.22em solid transparent;
    left: 100%;
    top: 50%;
    margin-left: .5em;
    margin-top: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
  }
  #index-body .init-4 .list ul li:nth-child(3) {
    grid-column: 2;
  }
  #index-body .init-4 .list ul li:nth-child(4) {
    grid-column: 1;
  }
  #index-body .init-4 .list ul li:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }
  #index-body .init-4 .list ul li:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }
  #index-body .init-4 .list ul li:nth-child(7) {
    grid-column: 2;
    grid-row: 4;
  }
  #index-body .init-4 .list ul li:nth-child(8) {
    grid-column: 1;
    grid-row: 4;
  }
  #index-body .init-4 .list ul li:nth-child(9) {
    grid-column: 1;
    grid-row: 5;
  }
  #index-body .init-4 .list ul li:nth-child(10) {
    grid-column: 2;
    grid-row: 5;
  }
  #index-body .init-5 .slickArrow img {
    max-width: 20px;
  }
  #footer .footer-top .box .slide {
    display: none;
  }
  #footer .footer-top .box .slide:last-child {
    display: block;
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .init-2 .box {
    zoom: .5;
  }
  #index-body .init-2 .list li span.h6 {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  #index-body .init-1 ul {
    gap: 20px;
  }
  #index-body .init-5 .slickDots {
    zoom: .5;
  }
}
.inner-banner {
  position: relative;
}
.inner-banner span.h2 {
  line-height: 1;
}
.inner-banner hr {
  max-width: 106px;
  height: 3px;
  background-color: var(--color);
  margin-left: 0;
  margin-right: auto;
}
.inner-banner.sustainability {
  z-index: 2;
}
.inner-banner.sustainability .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}
.inner-page {
  position: relative;
  z-index: 1;
  background-color: #3f3e3e;
}
.inner-page ~ #footer > span.nofull {
  background-color: #3f3e3e;
}
.inner-page i.bgmask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.inner-page i.bgmask:before {
  content: '';
  width: 100%;
  display: block;
  position: sticky;
  top: 0;
  z-index: -1;
  background-image: url('../images/inner-mask.png');
  background-position: top right;
  background-size: 60.20833333% auto;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-388px);
  -moz-transform: translateY(-388px);
  -ms-transform: translateY(-388px);
  transform: translateY(-388px);
  min-height: 180vh;
  pointer-events: none;
}
.inner-page:after {
  content: '';
  width: 36.45833333vw;
  height: 36.45833333vw;
  background-image: -webkit-radial-gradient(circle, rgba(0, 0, 0, 0.3), transparent);
  background-image: -moz-radial-gradient(circle, rgba(0, 0, 0, 0.3), transparent);
  background-image: radial-gradient(to circle, rgba(0, 0, 0, 0.3), transparent);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -30%);
  -moz-transform: translate(50%, -30%);
  -ms-transform: translate(50%, -30%);
  transform: translate(50%, -30%);
  border-radius: 100%;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  z-index: -2;
  pointer-events: none;
}
.inner-page .titLink em {
  padding: .5em 1em;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.inner-page .titLink em:after,
.inner-page .titLink em:before {
  content: '';
  border-left: 0.65em solid #4c4c4c;
  border-top: 0.65em solid #4c4c4c;
  border-right: 0.65em solid transparent;
  border-bottom: 0.65em solid transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.inner-page .titLink em:after {
  border-width: 0.35em;
  border-left-color: var(--color);
  border-top-color: var(--color);
}
.inner-page .titLink:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.inner-page .play {
  left: auto;
  top: auto;
  right: 5%;
  bottom: 8%;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
  background-color: white;
}
.inner-page .play i {
  border-left-color: var(--color);
}
.inner-page .play:before,
.inner-page .play:after {
  border: 1px solid white;
  background-color: transparent;
}
.inner-page .aboutPublic span.h2 {
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}
.inner-page .aboutPublic .text {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.inner-page .aboutPublic .navLink {
  max-width: 1470px;
  margin-left: auto;
  margin-right: auto;
}
.inner-page .aboutPublic .navLink a {
  height: 2.44444444em;
  padding: 0 1em;
  border-radius: 1.22222222em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .aboutPublic .navLink a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, from(#1a62fe), to(var(--color)));
  background-image: -webkit-linear-gradient(left, #1a62fe, var(--color));
  background-image: -moz-linear-gradient(left, #1a62fe, var(--color));
  background-image: linear-gradient(to right, #1a62fe, var(--color));
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .aboutPublic .navLink a.active,
.inner-page .aboutPublic .navLink a:hover {
  border-color: transparent;
}
.inner-page .aboutPublic .navLink a.active:before,
.inner-page .aboutPublic .navLink a:hover:before {
  opacity: 1;
}
.inner-page.noBack {
  background-image: none;
  overflow: hidden;
}
.inner-page.noBack:before {
  display: none;
}
.inner-page.noBack:after {
  height: 100%;
  width: 100%;
  -webkit-transform: translate(50%, 0);
  -moz-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
}
.product-page .left {
  padding-top: 1em;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.product-page .left .nav li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: .2em;
}
.product-page .left .nav li:hover,
.product-page .left .nav li.active {
  border-bottom-color: transparent;
}
.product-page .left .nav a {
  padding: 1.94444444em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .left .nav a em {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .left .nav a em:after {
  content: '';
  width: 100%;
  height: 0.66666667em;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/icon-bl.png");
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .left .nav a:hover,
.product-page .left .nav a.active {
  background-color: var(--color);
}
.product-page .left .nav a:hover em,
.product-page .left .nav a.active em {
  padding-bottom: 1.33333333em;
}
.product-page .left .nav a:hover em:after,
.product-page .left .nav a.active em:after {
  opacity: 1;
}
.product-page .right .slide {
  padding: 1em;
  background-color: #4c4c4c;
}
.product-page .right .slide .big li,
.product-page .right .slide .big li .img,
.product-page .right .slide .big li .wow-wrap,
.product-page .right .slide .big li img {
  height: 100%;
}
.product-page .right .slide hr {
  background-color: white;
}
.prodet-page .border {
  padding: 1em;
  background-image: -webkit-radial-gradient(at 100% 50%, transparent, #4c4c4c);
  background-image: -moz-radial-gradient(at 100% 50%, transparent, #4c4c4c);
  background-image: radial-gradient(at 100% 50%, transparent, #4c4c4c);
}
.prodet-page .prodet-1 .left img {
  width: 100%;
}
.prodet-page .prodet-1 .btn a {
  background-color: #616161;
  padding: .4em 1.5em;
}
.prodet-page .prodet-1 .btn a:hover {
  background-color: var(--color);
  color: white;
}
.prodet-page .prodet-2 .titLink em:after {
  border-top-color: #545454;
  border-left-color: #545454;
}
.prodet-page .prodet-2 .text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.prodet-page .prodet-2 .text table tr {
  background-color: transparent !important;
}
.prodet-page .prodet-2 .text table tr td {
  border-color: #666 !important;
  padding: 1em !important;
}
.prodet-page .prodet-2 .options span {
  opacity: .5;
}
.prodet-page .prodet-2 .options span.active {
  opacity: 1;
}
.prodet-page .prodet-2 .ret {
  background-color: #505050;
}
.prodet-page .prodet-2 .ret .slide {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
  z-index: -1;
}
.prodet-page .prodet-2 .ret .slide.active {
  position: static;
  opacity: 1;
  z-index: 1;
}
.projects-page .box .title .link {
  top: 100%;
  width: 100%;
  z-index: 3;
  background-color: white;
  color: black;
  margin-top: 1em;
  display: none;
}
.projects-page .box .title .link:before {
  content: '';
  border-left: .5em solid transparent;
  border-right: .5em solid transparent;
  border-bottom: .8em solid white;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.projects-page .box .title .link:after {
  content: '';
  width: 100%;
  height: 1em;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.projects-page .box .title .link a {
  padding: .7em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.projects-page .box .title .link a:hover {
  background-color: var(--color);
  color: white;
}
.projects-page .box .title .link img {
  max-width: 38px;
}
.projects-page .box .title .hand:hover .link {
  display: block;
}
.projects-page .box hr {
  width: 3px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.1);
}
.projects-page .box .list table {
  width: auto;
  overflow: unset;
}
.projects-page .box .list table th {
  padding: 1.1em 0;
  opacity: .5;
}
.projects-page .box .list table td {
  padding: 1.41666667em 0;
}
.projects-page .box .list table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1.25em;
  -moz-column-gap: 1.25em;
  column-gap: 1.25em;
  background-color: transparent !important;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.projects-page .box .list table tr:after {
  content: '';
  width: 200%;
  height: 100%;
  position: absolute;
  left: -50%;
  bottom: 0;
  background-color: transparent;
  border-bottom: 1px solid #575757;
  z-index: -2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.projects-page .box .list table tr td,
.projects-page .box .list table tr th {
  border: none;
}
.projects-page .box .list table tr td:nth-child(1),
.projects-page .box .list table tr th:nth-child(1) {
  width: 31% !important;
}
.projects-page .box .list table tr td:nth-child(2),
.projects-page .box .list table tr th:nth-child(2) {
  width: 33% !important;
}
.projects-page .box .list table tr td:nth-child(3),
.projects-page .box .list table tr th:nth-child(3) {
  width: 16% !important;
}
.projects-page .box .list table tr td:nth-child(4),
.projects-page .box .list table tr th:nth-child(4) {
  width: 20% !important;
  padding-left: 5%;
}
.projects-page .box .list table tr .more {
  min-width: auto;
  border-radius: 3em;
  background-color: white;
  color: black;
}
.projects-page .box .list table tr .more:hover {
  background-color: var(--color);
  color: white;
}
.projects-page .box .list table tr .img {
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  pointer-events: none;
}
.projects-page .box .list table tr .img img {
  width: 100%;
}
.projects-page .box .list table tr:not(:first-child):hover {
  z-index: 2;
}
.projects-page .box .list table tr:not(:first-child):hover:after {
  opacity: 1;
  background-color: #575757;
}
.projects-page .box .list table tr:not(:first-child):hover .img {
  opacity: 1;
}
#dialog {
  position: fixed;
  background-color: white;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1200px;
  max-width: 96%;
  height: 96vh;
  color: black;
  z-index: -2;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#dialog.active {
  z-index: 21;
  opacity: 1;
}
#dialog dialog {
  width: 100%;
  height: 100%;
  max-height: 100%;
  border: none;
  overflow: auto;
  padding: 0;
  display: block;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: absolute;
  left: 0;
  top: 0;
}
#dialog dialog.active {
  opacity: 1;
  z-index: 1;
  position: static;
}
#dialog dialog span.close {
  width: 2em;
  height: 2em;
  background-color: #ddd;
  border-radius: 100%;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#dialog dialog span.close:hover {
  background-color: var(--color);
  color: white;
}
#dialog dialog .title {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}
#dialog dialog .img {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
#dialog dialog .img img {
  width: 80%;
}
#dialog dialog .img .prev,
#dialog dialog .img .next {
  color: var(--color);
}
#dialog dialog .list li {
  border-left: 6px solid var(--color);
}
#dialog dialog .list li span.h6 {
  color: #232323;
  line-height: 1.2;
}
#dialog dialog .list li span.h2 {
  color: var(--color);
}
#dialog dialog span.h7 {
  color: #232323;
}
#dialog dialog span.h7:after {
  content: '';
  display: block;
  height: 0.25em;
  width: 100%;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), to(#868686));
  background-image: -webkit-linear-gradient(right, transparent, #868686);
  background-image: -moz-linear-gradient(right, transparent, #868686);
  background-image: linear-gradient(to left, transparent, #868686);
  max-width: 100px;
}
#dialog dialog .text {
  line-height: 1.6;
  color: #232323;
}
#dialog dialog .text.dots p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
  -webkit-align-items: self-start;
  -moz-box-align: self-start;
  -ms-flex-align: self-start;
  align-items: self-start;
  gap: .5em;
}
#dialog dialog .text.dots p:before {
  content: '';
  width: 0.66666667em;
  height: 0.66666667em;
  border-radius: 100%;
  background-color: var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: .5em;
}
#dialog dialog .dialogFt {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background-color: white;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}
#dialog dialog .dialogFt .more {
  color: white;
}
#dialog dialog .dialogFt .more:hover {
  background-color: black;
}
#dialog.personnel {
  width: 1620px;
  height: auto;
}
#dialog.personnel span.close {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid black;
  background-color: transparent;
  line-height: 1;
}
#dialog.personnel span.h3 {
  line-height: 1.2;
}
.about-page .about-1 .img .play {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-page .about-1 .img .play:after,
.about-page .about-1 .img .play:before {
  background-color: white;
}
.about-page .about-1 .list {
  max-width: 1510px;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-1 .list p {
  color: rgba(255, 255, 255, 0.5);
}
.about-page .about-2 .right .icon {
  max-width: 650px;
  text-align: center;
}
.about-page .about-2 .right .icon li.sj {
  margin-top: 2.4em;
  position: relative;
  z-index: -1;
}
.about-page .about-2 .right .icon li.sj:before {
  content: '';
  border-left: 1em solid #5f5f5f;
  border-top: .6em solid transparent;
  border-bottom: .6em solid transparent;
  width: 0;
  height: 0;
  display: block;
}
.about-page .about-2 .right .icon li.sj:after {
  content: '';
  width: 10em;
  height: .25em;
  position: absolute;
  background-color: #5f5f5f;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-page .about-4 span.h3 {
  font-size: 4.42708333vw;
  padding-left: .9em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}
.about-page .about-4 span.h3 i {
  width: 0.29411765em;
  height: 0.29411765em;
  border-radius: 100%;
  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));
  margin: 0 0.29411765em;
}
.about-page .about-4 .list li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-page .about-4 .list li i img {
  max-width: 1em;
  max-height: 1em;
}
.about-page .about-4 .list li:before {
  content: '';
  width: 50%;
  height: 100%;
  background-image: -webkit-radial-gradient(at 50% 100%, #516c75, transparent);
  background-image: -moz-radial-gradient(at 50% 100%, #516c75, transparent);
  background-image: radial-gradient(at 50% 100%, #516c75, transparent);
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.about-page .about-4 .list li:hover {
  background-color: #484848;
}
.about-page .about-4 .list li:hover:before {
  opacity: 1;
}
.about-page .about-4 .list li .left {
  padding: 0 10%;
}
.about-page .about-5 .text {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-5 .slickBtn div {
  width: 2.8em;
  height: 2.8em;
  background-color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .slickBtn div img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .slickBtn div.prev {
  left: -1.4em;
  right: auto;
}
.about-page .about-5 .slickBtn div.prev img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.about-page .about-5 .slickBtn div.next {
  right: -1.4em;
  left: auto !important;
}
.about-page .about-5 .slickBtn div:hover {
  background-color: var(--color);
}
.about-page .about-5 .slickBtn div:hover img {
  -webkit-filter: none;
  filter: none;
}
.founder-page .founder-2 .right span.h2 {
  padding: .5em 0 .7em;
  position: relative;
}
.founder-page .founder-2 .right span.h2:before {
  content: '';
  width: 2em;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(var(--color)));
  background-image: -webkit-linear-gradient(bottom, transparent, var(--color));
  background-image: -moz-linear-gradient(bottom, transparent, var(--color));
  background-image: linear-gradient(to top, transparent, var(--color));
  -webkit-transform: skewX(-30deg);
  -moz-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  transform: skewX(-30deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}
.founder-page .founder-2 .right .text p {
  margin-top: 1.2em;
}
.local-page .local-2 .left {
  background-color: #4e4e4e;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.local-page .local-2 .left .top {
  margin-top: -8%;
}
.local-page .local-2 .left .head img {
  display: block;
  margin: 0 auto;
}
.local-page .local-2 .left span.h6 {
  line-height: 1.2;
}
.local-page .local-2 .left .localCountry a {
  height: 2.44444444em;
  padding: 0 1em;
  border-radius: 1.22222222em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.local-page .local-2 .left .localCountry a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, from(#1a62fe), to(var(--color)));
  background-image: -webkit-linear-gradient(left, #1a62fe, var(--color));
  background-image: -moz-linear-gradient(left, #1a62fe, var(--color));
  background-image: linear-gradient(to right, #1a62fe, var(--color));
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.local-page .local-2 .left .localCountry a:hover {
  border-color: transparent;
}
.local-page .local-2 .left .localCountry a:hover:before {
  opacity: 1;
}
.local-page .local-2 .left .localCountry .slick-current a {
  border-color: transparent;
}
.local-page .local-2 .left .localCountry .slick-current a:before {
  opacity: 1;
}
.local-page .local-2 .left hr {
  background-color: white;
}
.local-page .local-2 .left .bottom .text {
  line-height: 1.77777778;
}
.local-page .local-2 .right iframe {
  height: 590px;
  border: none;
  background-color: #eee;
}
.history-page .history-2 .list .year span {
  font-size: 28vw;
  color: transparent;
  line-height: .8;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, from(#1a62fe), to(var(--color)));
  background-image: -webkit-linear-gradient(left, #1a62fe, var(--color));
  background-image: -moz-linear-gradient(left, #1a62fe, var(--color));
  background-image:linear-gradient(to right, #c1c1c1, #5a5a5a);
  text-indent: -0.05em;
}
.history-page .history-2 .list .year .img {
  max-width: 410px;
}
.history-page .history-2 .list .year .img img {
  border: 12px solid white;
  /*border-radius: 12px;*/
  border-radius: 100%;
  background-color: white;
}
.history-page .history-2 .list .text {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.history-page .history-2 .slickBtn div {
  width: 3em;
  height: 3em;
  background-image: -webkit-gradient(linear, left top, right top, from(#1a62fe), to(var(--color)));
  background-image: -webkit-linear-gradient(left, #1a62fe, var(--color));
  background-image: -moz-linear-gradient(left, #1a62fe, var(--color));
  background-image: linear-gradient(to right, #1a62fe, var(--color));
}
.history-page .history-2 hr {
  background-color: white;
}
.history-page .history-2 .list2 {
  line-height: 1;
}
.history-page .history-2 .list2 ul {
  padding-right: 9%;
}
.history-page .history-2 .list2 li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.history-page .history-2 .list2 li i {
  max-width: 3em;
  border-radius: 100%;
  margin-bottom: 3%;
  overflow: hidden;
  margin-top: -1.5em;
  transition: .5s;
  transform: scale(.7);
}
.history-page .history-2 .list2 .slick-slide {
  transition: .5s;
}
.history-page .history-2 .list2 .slick-slide.slick-cloned {
  opacity: 0;
}
.history-page .history-2 .list2 .slick-slide:not(.slick-active),
.history-page .history-2 .list2 .slick-slide:not(.slick-cloned).prev1[data-slick-index="20"] {
  opacity: 0;
}
.history-page .history-2 .list2 .slick-slide:not(.slick-cloned).prev1 {
  opacity: 1;
}
.history-page .history-2 .list2 .slick-slide.slick-current li i {
  transform: scale(1);
}
.history-page .history-2 .list2 .slick-slide.next1 li i {
  opacity: 0;
}
.history-page .history-2 .list2 .slick-list {
  overflow: unset;
}
.history-page .history-2 .list2 .slick-current li {
  opacity: 1;
}
.brand-page .brand-2 .line {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.brand-page .brand-3 .text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.brand-page .brand-3 .text strong {
}
.brand-page .brand-4 .img {
  width: 5.4em;
  height: 5.4em;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -1%;
  position: relative;
  z-index: 1;
}
.brand-page .brand-4 .img:before {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#474646), to(transparent));
  background-image: -webkit-linear-gradient(bottom, #474646, transparent);
  background-image: -moz-linear-gradient(bottom, #474646, transparent);
  background-image: linear-gradient(to top, #474646, transparent);
  z-index: -1;
  pointer-events: none;
}
.brand-page .brand-4 .img .logo {
  width: 2.8em;
  height: 2.8em;
  border-radius: 100%;
  
}
.brand-page .brand-4 .img .logo img {
  display: block;
  max-width: 1.23333333em;
}
.brand-page .brand-4 .img .icon {
  width: 6.83333333em;
  height: 6.83333333em;
  border: 0.36666667em solid white;
  border-radius: 100%;
}
.brand-page .brand-4 .img .icon li {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#aac7ff), to(#6c99ff));
  background-image: -webkit-linear-gradient(bottom, #aac7ff, #6c99ff);
  background-image: -moz-linear-gradient(bottom, #aac7ff, #6c99ff);
  background-image: linear-gradient(to top, #aac7ff, #6c99ff);
  position: absolute;
  z-index: 1;
}
.brand-page .brand-4 .img .icon li img {
  display: block;
}
.brand-page .brand-4 .img .icon li:nth-child(1) {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
  -moz-transform: translate(-50%, -70%);
  -ms-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);
}
.brand-page .brand-4 .img .icon li:nth-child(2) {
  top: 62%;
  left: 0;
  -webkit-transform: translateX(-47%);
  -moz-transform: translateX(-47%);
  -ms-transform: translateX(-47%);
  transform: translateX(-47%);
}
.brand-page .brand-4 .img .icon li:nth-child(3) {
  top: 62%;
  right: 0;
  -webkit-transform: translateX(47%);
  -moz-transform: translateX(47%);
  -ms-transform: translateX(47%);
  transform: translateX(47%);
}
.brand-page .brand-4 .img .dots {
  width: 4em;
  height: 4em;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  -webkit-animation: xz 20s linear infinite;
  -moz-animation: xz 20s linear infinite;
  animation: xz 20s linear infinite;
}
.brand-page .brand-4 .img .dots i {
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  background-color: #77a1ff;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.brand-page .brand-4 .img .dots i:nth-child(1) {
  left: 6%;
  top: 26%;
}
.brand-page .brand-4 .img .dots i:nth-child(2) {
  left: 94%;
  top: 26%;
  background-color: #0143d0;
}
.brand-page .brand-4 .img .dots i:nth-child(3) {
  left: 50%;
  top: 100%;
  background-color: #e50000;
}
.brand-page .brand-4 .list {
  position: relative;
  z-index: 2;
}
.brand-page .brand-4 .list:before {
  content: '';
  width: 70%;
  position: absolute;
  height: 25%;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 1px dashed #848484;
  border-bottom: none;
  border-radius: 2px;
  z-index: -1;
}
.brand-page .brand-4 .list:after {
  content: '';
  height: 92%;
  position: absolute;
  left: 50%;
  bottom: 100%;
  border-left: 1px dashed #848484;
  z-index: -1;
}
.brand-page .brand-4 .list li {
  border: 1px solid #848484;
  background-color: #565656;
  padding: 2.5% .5%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.brand-page .brand-4 .list li:hover {
  border-style: dashed;
}
@-webkit-keyframes xz {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-moz-keyframes xz {
  from {
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes xz {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -moz-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    -moz-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.personnel-page .personnel-2 span.tag {
  line-height: 1.2;
}
.personnel-page .personnel-2 a.link {
  width: 2em;
  height: 2em;
  border-radius: 1em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.personnel-page .personnel-2 a.link:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, from(#1a62ff), to(#0041ce));
  background-image: -webkit-linear-gradient(left, #1a62ff, #0041ce);
  background-image: -moz-linear-gradient(left, #1a62ff, #0041ce);
  background-image: linear-gradient(to right, #1a62ff, #0041ce);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.personnel-page .personnel-2 li:hover a.link {
  border-color: transparent;
  width: 3.33333333em;
}
.personnel-page .personnel-2 li:hover a.link:before {
  opacity: 1;
}
.personnel-page .personnel-2 dialog.box {
  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%);
}
.personnel-page .personnel-2 ul {
  margin: -1em;
}
.personnel-page .personnel-2 ul li {
  padding: 1em 1.5em;
}
.personnel-page .personnel-2 ul li .img {
  border-radius: 100%;
}
.personnel-page .personnel-2 ul li .img img {
  transform: scale(1.01);
}
.milestones-page span.h3 {
  line-height: 1;
}
.milestones-page span.h2:after {
  content: '';
  width: 1.66666667em;
  height: 4px;
  background-color: var(--color);
  margin-top: .7em;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.milestones-page .text {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.sustainability-page {
  z-index: auto;
}
.sustainability-page .sustainability-1 {
  position: relative;
  z-index: 2;
}
.sustainability-page .sustainability-1 span.h2 {
  line-height: 1.33333333;
}
.sustainability-page .sustainability-1 .box2 {
  background-color: #ededed;
}
.sustainability-page .sustainability-1 .box2 span.h5 {
  padding: 1em;
  background-color: var(--color);
  color: white;
}
.sustainability-page .sustainability-1 .box2 .list {
  color: black;
  -webkit-filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}
.sustainability-page .sustainability-1 .box2 .list .box3 {
  background-color: white;
}
.sustainability-page hr {
  background-color: white;
}
.sustainability-page .sustainability-2 span.num {
  width: 1.94444444em;
  height: 1.94444444em;
  border-radius: 100%;
  background-color: var(--color);
}
.sustainability-page .sustainability-2 .text {
  line-height: 1.33333333;
  margin-bottom: auto;
}
.sustainability-page .sustainability-2 .content {
  height: 100%;
}
.sustainability-page .sustainability-2 .list ul {
  row-gap: 1em;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}
.solution-page {
  z-index: auto;
}
.solution-page .solution-1 {
  z-index: 2;
  position: relative;
}
.solution-page .solution-1 .box .img {
  height: 810px;
}
.solution-page .solution-1 .box .img2 {
  height: 690px;
}
.solution-page .solution-1 .box .right {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.solution-page .solution-1 .box .right hr {
  background-color: white;
  margin: auto 0;
}
.solution-page .solution-1 .box .right .slide {
  cursor: pointer;
  cursor: hand;
}
.solution-page .solution-1 .box .right .slide.active {
  height: 100%;
}
.solution-page .solution-1 .box .right .slide:first-child.active {
  margin-top: 0;
}
.solution-page .solution-1 .box .right .slide:first-child.active .content {
  padding-top: 0;
}
.solution-page .solution-1 .box .right .slide:last-child.active {
  margin-bottom: 0;
}
.solution-page .solution-1 .box .right .slide:last-child.active .content {
  padding-bottom: 0;
}
.solution-page .solution-1 .box .right .slide span.tag {
  line-height: 1;
}
.solution-page .solution-1 .box .right .slide span.h5 {
  line-height: 1;
}
.solution-page .solution-1 .list ul {
  row-gap: 1.5em;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
.solution-page .solution-1 .list ul li {
  background-color: #484848;
  padding: 1.5em 1em;
}
.solution-page .solution-1 .list ul li i {
  width: 1em;
  height: 1em;
}
.solution-page .solution-1 .list ul li i img {
  max-width: 1em;
  max-height: 1em;
  display: block;
}
.solution-page .solution-1 .list ul li span.h6 {
  line-height: 1.2;
}
.solution-page .solution-2 .box img {
  width: 100%;
}
.solution-page .solution-2 .box span.h6 {
  position: absolute;
  padding: .8em;
  background-color: var(--color);
  color: white;
  width: 100%;
  top: 53%;
  right: 0;
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: rotate(-41deg);
  -moz-transform: rotate(-41deg);
  -ms-transform: rotate(-41deg);
  transform: rotate(-41deg);
}
.solution-page .solution2-2 li {
  height: 100%;
}
.solution-page .solution2-2 .box {
  background-color: #5b5b5b;
  height: 100%;
}
.contact-page .contact-1 .info {
  background-color: #4f4f4f;
}
.contact-page .contact-1 .ret {
  height: 100%;
}
.contact-page .contact-1 iframe {
  height: 100%;
  width: 100%;
  border: none;
  background-color: #eee;
}
.contact-page .contact-1 .navLink {
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 1.5em;
  background-color: #2a2a29;
  color: white;
  line-height: 1.2;
}
.contact-page .contact-1 .navLink a {
  height: 2.55555556em;
  width: 7.77777778em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .navLink a.active,
.contact-page .contact-1 .navLink a:hover {
  background-color: var(--color);
}
.contact-page .contact-2 .list li {
  background-color: #4f4f4f;
}
.contact-page .contact-2 .list li .head i {
  border-radius: 100%;
  overflow: hidden;
}
.contact-page .contact-2 .list li .head i img {
  max-width: 2em;
  max-height: 2em;
}
.contact-page .contact-2 .list li .text {
  line-height: 1.4;
  min-height: 2.8em;
}
.contact-page .contact-2 .list li hr {
  background-color: white;
}
.contact-page .contact-2 .list li .info {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page .contact-2 .list li .info p {
  margin-top: .7em;
}
.news-page .nav {
  padding: 0 10%;
}
.news-page .nav a {
  opacity: .5;
}
.news-page .nav a.active {
  opacity: 1;
}
.news-page .list .slide {
  position: relative;
}
.news-page .list .slide:before {
  content: '';
  width: 80%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #4a4a4a;
  border-radius: inherit;
}
.news-page .list .slide time {
  color: #a5a5a5;
  line-height: 1;
}
.news-page .list .slide time em {
  color: white;
}
.news-page .list .slide .text {
  line-height: 1.5;
}
.newdet-page .text {
  line-height: 1.77777778;
}
.newdet-page .text table tr {
  background-color: transparent !important
}
.newdet-page hr {
  background-color: white;
}
.newdet-page .m-link a {
  height: 1.88888889em;
  padding: 0 2.44444444em;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .m-link a:hover {
  background-color: #666;
}
@media screen and (min-width: 1920px) {
  .about-page .about-4 span.h3 {
    font-size: 85px;
  }
}
@media screen and (max-width: 1700px) {
  .inner-page:after {
    -webkit-transform: translate(0, -30%);
    -moz-transform: translate(0, -30%);
    -ms-transform: translate(0, -30%);
    transform: translate(0, -30%);
  }
  .solution-page .solution-1 .box .img2 {
    height: 560px;
  }
  .solution-page .solution-1 .box .img {
    height: 700px;
  }
}
@media screen and (max-width: 1450px) {
  .solution-page .solution-1 .box .img2 {
    height: 500px;
  }
  .solution-page .solution-1 .box .img {
    height: 600px;
  }
  .projects-page .box .list table tr td:nth-child(4),
  .projects-page .box .list table tr th:nth-child(4) {
    padding-left: 0;
  }
  .projects-page .box .list table tr td:nth-child(4) img,
  .projects-page .box .list table tr th:nth-child(4) img {
    max-width: 40px;
  }
  .local-page .local-2 .left .head img {
    max-width: 110px;
  }
  .history-page .history-2 .list .year .img {
    max-width: 180px;
  }
  .brand-page .brand-4 .list:after {
    height: 86%;
  }
  .about-page .about-2 .right .icon i img {
    max-width: 90px;
  }
}
@media screen and (max-width: 1250px) {
  .about-page .about-4 span.h3 {
    padding-left: 0;
  }
  .about-page .about-1 .list p img {
    max-width: 24px;
    max-height: 24px;
  }
  .about-page .about-2 .right .icon i img {
    max-width: 80px;
  }
  .brand-page .brand-4 .img .icon li img {
    zoom: .7;
  }
  .history-page .history-2 .list .year .img {
    max-width: 160px;
  }
  .history-page .history-2 .list .year .img img {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  .local-page .local-2 .right iframe {
    height: 460px;
  }
  .milestones-page .title i {
    max-width: 50px;
  }
  .solution-page .solution-1 .box .img2 {
    height: 460px;
  }
  .solution-page .solution-1 .box .img {
    height: 540px;
  }
  .solution-page .solution-1 .list ul li.grid-span {
    grid-column: span 3;
  }
}
@media screen and (max-width: 1000px) {
  .sustainability-page .sustainability-2 .list ul {
    gap: 0.5em;
  }
  .inner-page .aboutPublic .navLink {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .inner-page .aboutPublic .navLink a {
    width: 32%;
  }
  .solution-page .solution-1 .box .img2,
  .solution-page .solution-1 .box .img {
    height: 260px;
  }
  table tbody {
    white-space: normal;
  }
  .projects-page .box hr {
    height: 40px;
  }
  .projects-page .box .list table tr td:nth-child(3),
  .projects-page .box .list table tr th:nth-child(3) {
    width: 20% !important;
  }
  .product-page .left {
    display: none;
  }
  .product-page .right,
  .prodet-2 {
    width: 100%;
  }
  .product-page .right .icon i img,
  .prodet-2 .icon i img {
    max-width: 42px;
  }
  .local-page .local-2 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .local-page .local-2 .box .left {
    width: 100%;
  }
  .local-page .local-2 .box .right {
    width: 100%;
  }
  .local-page .local-2 .right iframe {
    height: 280px;
  }
  .local-page .local-2 {
    margin-top: 5%;
  }
  .history-page .history-2 .list {
    width: 78%;
  }
  .history-page .history-2 .slickBtn.op-0 {
    display: none;
  }
  .history-page .history-2 .list .year .img {
    max-width: 120px;
  }
  .contact-page .contact-1 .ret {
    height: 240px;
  }
  .brand-page .brand-2 .icon {
    width: 50% !important;
  }
  .brand-page .brand-4 .list:after {
    height: 78%;
  }
  #dialog.personnel dialog {
    height: 80vh;
    padding-right: 5px;
  }
  #dialog.personnel dialog .box {
    padding-top: 3em;
  }
  #dialog.personnel span.close {
    margin-left: auto;
    width: 2em !important;
  }
}
@media screen and (max-width: 700px) {
  .font-36 {
    font-size: 18px;
  }
  .font-48 {
    font-size: 24px;
  }
  .font-32 {
    font-size: 16px;
  }
  .font-42 {
    font-size: 22px;
  }
  .about-page .about-5 .slickBtn div.prev {
    left: 0;
  }
  .about-page .about-5 .slickBtn div.next {
    right: 0;
  }
  .brand-page .brand-4 .img {
    display: none;
  }
  .brand-page .brand-4 .list {
    margin-top: 5%;
  }
  .brand-page .brand-4 .list:before,
  .brand-page .brand-4 .list:after {
    display: none;
  }
  .brand-page .brand-4 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .brand-page .brand-4 .list ul li {
    width: 100%;
  }
  .contact-page .contact-2 .list ul {
    grid-template-columns: 1fr;
  }
  .contact-page .contact-2 .list ul .info i {
    max-width: 18px;
  }
  .contact-page .contact-2 .list li .head i {
    font-size: 40px;
  }
  .history-page .history-2 .list .year .img img {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border-width: 4px;
  }
  .history-page .history-2 .list .year .img {
    position: static;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    margin: 15px auto;
  }
  .history-page .history-2 .list .year span {
    font-size: 25vw;
  }
  .history-page .history-2 .list {
    width: 65%;
  }
  .milestones-page .title i {
    max-width: 40px;
  }
  .personnel-page .personnel-2 ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .personnel-page .personnel-2 ul li {
    width: 50%;
  }
  .projects-page .ui.container .box div.list table tbody {
    min-width: auto;
  }
  .projects-page .ui.container .box div.list table tbody tr {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .projects-page .ui.container .box div.list table tbody tr td {
    width: 100%!important;
    text-align: left;
    padding: 10px 0;
  }
  .projects-page .box .list table tr .img {
    display: none;
  }
  .solution-page .solution-1 .list ul li.grid-span {
    grid-column: span 2;
  }
  .projects-page .box .list table tr:first-child {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .solution-page .solution-1 .list ul li.grid-span {
    grid-column: span 1;
  }
  .inner-page .aboutPublic .navLink a {
    width: 48%;
  }
  .solution-page .solution-2 .box span.h6 {
    zoom: .6;
  }
  #dialog dialog .dialogFt {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .projects-page .box .title .link img {
    max-width: 32px;
  }
  .projects-page .box .title .link {
    zoom: .9;
  }
  .projects-page .box .title i img {
    max-width: 26px;
  }
  .news-page .nav {
    padding: 0;
  }
  .local-page .local-2 .left .bottom {
    padding: 0;
  }
  .local-page .local-2 .left .bottom li .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .local-page .local-2 .left .bottom li .flex .slide {
    width: 100%;
  }
  .honor-page .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .history-page .history-2 .list {
    width: 100%;
  }
  .history-page .history-2 .slickBtn {
    display: none;
  }
  .about-page .about-5 .slickBtn div {
    zoom: .7;
  }
  .about-page .about-2 .right .icon i img {
    max-width: 60px;
  }
  .about-page .about-2 .right .icon li.sj {
    margin-top: 1.6em;
  }
}

.m-page>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:1em;
  flex-wrap: wrap;
}
.m-page>div a,
.m-page>div span {
  width: 2.4em;
  height: 2.4em;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
}
.m-page>div a:hover,
.m-page>div span.current {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.cursor-follower {
  position: fixed;
  left: 0;
  top: 0;
  width: .6em;
  height: .6em;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: var(--color);
  opacity: 0;
  border-radius: 100%;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
  /*mix-blend-mode: difference;*/
  z-index: 24;
}
.cursor-follower:after,
.cursor-follower:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  z-index: -1;
  background-color: inherit;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.cursor-follower:before {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.cursor-follower.active {
  opacity: 1;
}
table {
  overflow: unset !important;
}
.layui-layer-content {
  color: black;
}
@media screen and (max-width: 700px) {
  table {
    overflow: auto !important;
  }
}