@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.eot');
  src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-black.eot');
  src: url('../fonts/montserrat-black.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-black.woff2') format('woff2'), url('../fonts/montserrat-black.woff') format('woff'), url('../fonts/montserrat-black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
body {
  font-family: "Montserrat";
  max-width: 1920px;
  --color: #034d94;
  font-weight: 500;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1630px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.font-w-600 {
  font-weight: 600;
}
.bc {
  color: var(--color);
}

#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header.active .nav {
  background-color: #333333;
}
#header.bg .nav {
  background-color: #333333;
}
#header .nav {
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 93px;
}
#header .nav .ui.menu .logo {
  margin-left: 0;
  margin-right: 0;
  background-color: var(--color);
}
#header .nav .ui.menu .right {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 0;
}
#header .nav .ui.menu .menu-box {
  margin-left: 0;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-weight: normal;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#034d94), to(transparent));
  background-image: -webkit-linear-gradient(#034d94, transparent);
  background-image: -moz-linear-gradient(#034d94, transparent);
  background-image: linear-gradient(#034d94, transparent);
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::before {
  opacity: 1;
}
#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;
}
#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: 0;
  width: 180px;
  min-width: 100%;
  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 {
  color: #FFFFFF;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .p-search input,
#header .nav .ui.menu .p-search button {
  color: #FFFFFF;
  border: 0;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu .p-search input {
  padding-left: 20px;
  width: 110px;
  border-radius: 20px 0 0 20px;
}
#header .nav .ui.menu .p-search button {
  font-size: 16px;
  width: 55px;
  border-radius: 0 20px 20px 0;
}
.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
.search-box form input {
  background: none;
  outline: none;
  border: none;
}
.search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
.search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
.search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  right: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  right: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active:before {
  left: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -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;
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#banner .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#banner .bg img {
  opacity: 0;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30%;
}
#banner h2 {
  color: #FFFFFF;
}
#banner p {
  color: #FFFFFF;
}
#banner .down {
  left: 79%;
  top: 89%;
}
.yuy > span {
  font-weight: normal;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.yuy ul {
  left: auto;
  right: 0;
}
.baseBtn {
  height: 2.6em;
  border-radius: 1.3em;
  padding-left: 1em;
  padding-right: .45em;
  min-width: 9.3em;
}
.baseBtn span {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.baseBtn span.btn_icon {
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  text-align: center;
  border-radius: 50%;
}
.baseBtn.baseBtn1 {
  color: #333333;
  background-color: #FFFFFF;
}
.baseBtn.baseBtn1 span.btn_icon {
  color: #FFFFFF;
  background-color: #333333;
}
.baseBtn.baseBtn1:hover span.btn_icon {
  background-color: var(--color);
}
.baseBtn.baseBtn2 {
  background-color: #333333;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.baseBtn.baseBtn2 span.btn_text {
  color: #FFFFFF;
}
.baseBtn.baseBtn2 span.btn_icon {
  color: #333333;
  background-color: #FFFFFF;
}
.baseBtn.baseBtn2.on,
.baseBtn.baseBtn2:hover {
  background-color: var(--color);
}
.baseBtn.baseBtn2.on span.btn_icon,
.baseBtn.baseBtn2:hover span.btn_icon {
  color: var(--color);
}
@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .2;
  }
  to {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .2;
  }
  to {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .2;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
.downBtn {
  color: #FFFFFF;
}
.downBtn span.btn_icon {
  width: 2.2em;
  height: 2.2em;
  border: 1px solid currentcolor;
  border-radius: 50%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  position: relative;
}
.downBtn span.btn_icon::before,
.downBtn span.btn_icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 1px solid currentcolor;
  -webkit-animation: ks 1.5s linear infinite;
  -moz-animation: ks 1.5s linear infinite;
  animation: ks 1.5s linear infinite;
}
.downBtn span.btn_icon::after {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.baseTit {
  line-height: 1.1;
}
[no-click] {
  pointer-events: none;
}
.home-1 img {
  vertical-align: middle;
}
.home-2 .tag {
  right: 0;
  top: 0;
}
.home-2 .content {
  line-height: 1.8;
}
.home-3 .arrows span.arrow {
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  background-color: #f5f5f5;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.home-3 .arrows span.arrow:hover {
  color: #FFFFFF;
  background-color: #000000;
}

@media (min-width:1001px) {
  .home-3 .left {
    position: sticky;
    top: 120px;
  }
}

.home-3 .left ul {
  margin-left: -10em;
  background-color: #f5f5f5;
}
.home-3 .left li {
  position: relative;
  z-index: 1;
  padding-left: 10em;
  cursor: pointer;
}
.home-3 .left li::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-3 .left li.active::before {
  width: 110%;
}
.home-3 .left li.active .icon {
  opacity: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.home-3 .left li.active .name {
  color: #FFFFFF;
}
.home-3 .left li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.home-3 .left li > div {
  min-height: 5.5em;
}
.home-3 .left li .icon {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-3 .left li .name {
  color: #666666;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-3 .right .item {
  top: 0;
  opacity: 0;
  -webkit-transform: translateY(5em);
  -moz-transform: translateY(5em);
  -ms-transform: translateY(5em);
  transform: translateY(5em);
  -webkit-transition: opacity .5s ease,-webkit-transform .5s ease;
  transition: opacity .5s ease,-webkit-transform .5s ease;
  -moz-transition: opacity .5s ease,transform .5s ease,-moz-transform .5s ease;
  transition: opacity .5s ease,transform .5s ease;
  transition: opacity .5s ease,transform .5s ease,-webkit-transform .5s ease,-moz-transform .5s ease;
}
.home-3 .right .item.active {
  position: static;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}
.home-3 .right .box {
  background-color: #f5f5f5;
}
.home-3 .right .box .text {
  color: #666666;
  line-height: 1.5;
  min-height: 6em;
}
.home-3 .right .box .btn {
  display: inline-block;
  line-height: 2em;
  border-radius: 1em;
  border: 1px solid rgba(3, 77, 148, 0.2);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-3 .right .box .btn:hover {
  color: #FFFFFF;
  background-color: var(--color);
  border-color: var(--color);
}
.home-4 .slick-list {
  overflow: visible;
  /*padding-right: 65%;*/
}
.home-4 .list li .box {
  background-color: #FFFFFF;
  border-radius: 1em;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.home-4 .list li .box .icon {
  margin-left: auto;
}
.home-4 .list li .box .icon img {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-4 .list li .box .name {
  line-height: 1.6;
  min-height: 3.2em;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-4 .list li .box .text {
  line-height: 1.7;
  min-height: 8.5em;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-4 .list li .box:hover {
  background-color: var(--color);
}
.home-4 .list li .box:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.home-4 .list li .box:hover .name {
  color: #FFFFFF;
}
.home-4 .list li .box:hover .text {
  color: #FFFFFF;
}
.home-4 .list .line {
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
}
.home-4 .list .line em {
  display: block;
  height: 100%;
  width: 0;
  background-color: var(--color);
  -webkit-transition: .5s linear;
  -moz-transition: .5s linear;
  transition: .5s linear;
}
.home-4 .list span.arrow {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  background-color: #eee;
  border-radius: 50%;
  cursor: pointer;
  transition: .5s ease;
}
.home-4 .list span.arrow:hover {
  color: #FFFFFF;
  background-color: var(--color);
}
.home-5 .top {
  background-color: #FFFFFF;
  border-radius: 1em;
}
.home-5 .bottom {
  background-color: #FFFFFF;
  border-radius: 1em;
}
.home-5 .bottom .text {
  color: #666666;
}
.home-5 .bottom .slickBtn div {
  width: 3em;
  height: 3em;
  background-color: transparent;
  color: #000000;
  border: 1px solid currentcolor;
  opacity: .3;
}
.home-5 .bottom .slickBtn div:hover {
  opacity: 1;
}
.home-5 .right .box {
  border-radius: 1em;
}
.home-5 .right .box > div {
  width: 90%;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.home-5 .right .box .name {
  color: #FFFFFF;
}
.home-6 {
  color: #FFFFFF;
}
.home-6 .img {
  margin-top: -3%;
}
.home-7 .desc {
  color: #666666;
}
.home-7 .slickBtn div {
  width: 3em;
  height: 3em;
  background-color: transparent;
  color: #000000;
  border: 1px solid currentcolor;
  opacity: .3;
}
.home-7 .slickBtn div:hover {
  opacity: 1;
}
.home-8 .slick-list {
  overflow: visible;
  padding-right: 60%;
}
.home-8 .list .box::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  background-color: #f1f3f4;
  border-radius: 1em;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-8 .list .box .name {
  line-height: 1.5;
  min-height: 4.5em;
}
.home-8 .list .box .text {
  line-height: 2;
  min-height: 8em;
  color: #666666;
  opacity: 0;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: 1.5s ease;
  -moz-transition: 1.5s ease;
  transition: 1.5s ease;
}
.home-8 .list .box .btns {
  opacity: 0;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: 1.5s ease;
  -moz-transition: 1.5s ease;
  transition: 1.5s ease;
}
.home-8 .list .box .btn {
  display: inline-block;
  line-height: 2em;
  border-radius: 1em;
  border: 1px solid rgba(3, 77, 148, 0.2);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-8 .list .box .btn:hover {
  color: #FFFFFF;
  background-color: var(--color);
  border-color: var(--color);
}
.home-8 .list .slick-current .box::before {
  height: 100%;
  background-color: #f1faff;
}
.home-8 .list .slick-current .box .text {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.home-8 .list .slick-current .box .btns {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.home-9 {
  color: #FFFFFF;
}
.home-9 .box {
  padding: 1.35em 1em;
  border-radius: .32em;
}
.home-9 .text {
  line-height: 1.7;
}
.home-9 .form ul {
  margin: -6px;
}
.home-9 .form li {
  padding: 6px;
}
.home-9 .form li > div {
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 28.5px;
}
.home-9 .form input {
  width: 100%;
  padding: 0 20px;
  height: 66px;
  border-radius: 23.5px;
  border: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000000;
  background-color: #FFFFFF;
}
.home-9 .form span.filename {
  position: absolute;
  height: 66px;
  line-height: 22px;
  border-radius: 23.5px;
  padding: 0 20px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  color: #000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-9 .form button {
  height: 66px;
  width: 66px;
  border-radius: 23.5px;
  border: 0;
  font-size: 20px;
  color: #000000;
  background-color: #FFFFFF;
}
#footer {
  background-color: #212121;
  color: #FFFFFF;
}
#footer span.line {
  border-bottom: 1px solid currentColor;
}
#footer .list a {
  display: block;
  position: relative;
  padding-left: 20px;
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#footer .list a::before {
  content: "\e613";
  font-family: 'iconfont';
  position: absolute;
  left: 0;
  top: .5em;
  font-size: .6em;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
#footer .list a:hover {
  color: var(--color);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#footer .list a:hover::before {
  opacity: 1;
}
#footer .social-links a {
  width: 1.83em;
  height: 1.83em;
  border: 2px solid currentcolor;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}
#footer .footer-bottom {
  background-color: var(--color);
}
.qrcode {
  border: 3px solid transparent;
  border-radius: 12px;
  background-color: #737373;
}
#ewm {
  border-radius: 12px;
  border: 12px solid #FFFFFF;
}
#flexbar {
  position: fixed;
  z-index: 222;
  right: 2.5%;
  top: 30%;
}
#flexbar .icon {
  position: relative;
  width: 3em;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(115, 115, 115, 0.3);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
#flexbar .info {
  font-weight: normal;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: var(--color);
  padding: .5em 1.5em;
  line-height: 2;
  border-radius: 1.5em;
  margin-right: 1em;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transform: rotate3d(0, 1, 0, 90deg);
  -moz-transform: rotate3d(0, 1, 0, 90deg);
  transform: rotate3d(0, 1, 0, 90deg);
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#flexbar li {
  position: relative;
  z-index: 0;
  cursor: pointer;
}
#flexbar li:hover {
  z-index: 1;
}
#flexbar li:hover .icon {
  background-color: var(--color);
}
#flexbar li:hover .info {
  right: 100%;
  opacity: 1;
  -webkit-transform: rotate3d(0, 1, 0, 0deg);
  -moz-transform: rotate3d(0, 1, 0, 0deg);
  transform: rotate3d(0, 1, 0, 0deg);
}
@media (max-width: 1700px) {
  #header .nav .ui.menu .p-search input {
    width: 90px;
  }
  #header .nav .ui.menu .p-search button {
    width: 40px;
  }
  img.login {
    height: 18px;
  }
}
@media (max-width: 1450px) {
  #header .nav .ui.menu .p-search {
    display: none;
  }
  #header .nav .ui.menu .h-search {
    display: block;
  }
  .home-9 .form li {
    width: 50%;
  }
  .home-9 .form li:last-of-type {
    width: 100%;
  }
}
@media (max-width: 1250px) {
  /*.home-4 .slick-list {
    padding-right: 55%;
  }*/
  .home-8 .slick-list {
    padding-right: 50%;
  }
  .home-8 .list .box::before {
    height: 100%;
    background-color: #f1faff;
  }
  .home-8 .list .box .text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .home-8 .list .box .btns {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #ewm {
    border-width: 5px;
  }
  img.login {
    height: 16px;
  }
}
@media (max-width: 1000px) {
  #banner .down {
    display: none;
  }
  #banner .content {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .home-2 .tag {
    position: static;
  }
  .home-3 .left ul {
    margin-left: 0;
    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;
  }
  .home-3 .left li {
    width: 50%;
    padding-left: 0;
  }
  .home-3 .left li.active::before {
    width: 100%;
  }
  .home-3 .left li .icon {
    width: 50px;
  }
  .home-3 .left li > div {
    min-height: 4em;
  }
  .home-3 .left li {
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  /*.home-4 .slick-list {
    padding-right: 35%;
  }*/
  .home-8 .slick-list {
    padding-right: 0;
  }
  .home-9 .box {
    padding: 1em;
  }
  #flexbar {
    display: none;
  }
  .hide-1000 {
    display: none;
  }
  #footer .social-links a {
    border-width: 1px;
  }
}
@media (max-width: 700px) {
  #banner li.pre {
    height: 350px;
  }
  #banner li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-4 .slick-list {
    padding-right: 0;
  }
  .home-9 .box {
    padding: 1em .5em;
  }
}
@media (max-width: 500px) {
  .home-3 .left li {
    width: 100%;
  }
  .home-9 .form li {
    width: 100%;
  }
}
.inner-banner {
  padding-top: 700px;
}
.inner-banner .content {
  width: 100%;
  left: 0;
  top: 43%;
}
.inner-banner .name {
  color: #FFFFFF;
}
.inner-banner .mbx {
  color: #FFFFFF;
}
.inner-banner .mbx i {
  color: var(--color);
}
.inner-banner .down {
  left: 75%;
  top: 75%;
}
@media (max-width: 1000px) {
  .inner-banner {
    padding-top: 50%;
  }
  .inner-banner .content {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .inner-banner .down {
    display: none;
  }
}
@media (max-width: 700px) {
  .inner-banner {
    padding-top: 70%;
  }
}
.about-1 .year {
  line-height: 1.1;
  font-weight: 900;
}
.about-1 .logo {
  margin-top: -4.5%;
  margin-left: 10%;
  width: 100%;
}
.about-1 .content {
  line-height: 1.75;
}
.about-1 .rz img {
  vertical-align: middle;
}
.about-2 {
  background-color: var(--color);
}
.about-2 .left {
  background-color: #fff;
  position: relative;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.about-2 .left .sec_left_cont {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: -webkit-sticky;
  position: sticky;
}
.about-2 .left .sec_left_cont .all_block {
  height: 100vh;
  padding-top: 12vh;
}
.about-2 .right::before {
  content: '';
  width: 35px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: inset 20px 0 15px -6px rgba(27, 31, 45, 0.2);
  box-shadow: inset 20px 0 15px -6px rgba(27, 31, 45, 0.2);
  z-index: 10;
}
.about-2 .wid-100.flex {
  position: absolute;
  bottom: 5vh;
  right: 0;
}

@media (min-width:1001px) {
  .about-2 .wid-100.flex {
    width: auto;
    
  }
}

/*.about-2 .morebtn {
  position: absolute;
  bottom: 5vh;
  right: 46px;
}*/

.about-3 {
  color: #FFFFFF;
}
.about-3 .box {
  margin-bottom: -300px;
}
.about-3 .right li {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.about-3 .right li .name {
  cursor: pointer;
}
.about-3 .right li .name i::before {
  content: "\e7b9";
  font-family: "iconfont";
}
.about-3 .right li .name.active i::before {
  content: "\e7b8";
}
.about-3 .right li .content {
  color: #eef7ff;
  display: none;
}
.about-4 .arrows {
  font-size: 13px;
}
.about-4 .arrows span.arrow {
  width: 4em;
  height: 4em;
  line-height: 4em;
  text-align: center;
  color: #FFFFFF;
  background-color: #666666;
  border-radius: 50%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.about-4 .arrows span.arrow:hover {
  background-color: #0876ff;
}
.about-4 .slick-list {
  overflow: visible;
}
.about-5 .slick-track {
  display: block;
}
.about-5 .slick-vertical .slick-slide {
  border: 0;
}
.about-5 .left {
  background-color: var(--color);
  color: #FFFFFF;
}
.about-5 .list {
  padding: .65em 2.6em .65em .75em;
}
.about-5 .list ul {
  margin: -0.2em -0.3em;
}
.about-5 .list li {
  padding: .2em .3em;
}
.about-5 .list .img {
  border-radius: 1em;
  border: 1px solid rgba(51, 51, 51, 0.3);
  overflow: hidden;
}
.sec_nav li a {
  display: table;
  padding-left: 72px;
  position: relative;
  line-height: 36px;
  outline: none;
}
.sec_nav li a .bul {
  font-size: 0;
  width: 24px;
  height: 24px;
  left: 0;
  top: 6px;
  position: absolute;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.sec_nav li a .bul::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--color);
  position: absolute;
  left: 24px;
  top: 12px;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.sec_nav li a .bul svg path {
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.sec_nav li a .span_normal {
  font-weight: 600;
  padding: 2px 0;
}
.sec_nav li a .span_bold {
  width: 100%;
  position: absolute;
  top: -2px;
  left: 72px;
  font-weight: 600;
  color: var(--color);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  background-color: #fff;
  padding: 2px 0;
}
.sec_nav li a.active .bul::before,
.sec_nav li a:hover .bul::before {
  width: 40px;
}
.sec_nav li a.active .bul svg path,
.sec_nav li a:hover .bul svg path {
  fill: var(--color);
  stroke: var(--color);
}
.sec_nav li a.active .span_bold,
.sec_nav li a:hover .span_bold {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.imges__main {
  width: 100%;
  position: relative;
}
.imges__main.bg_1 {
  background-color: #ffffff;
}
@media (max-width: 1700px) {
  .about-3 .box {
    margin-bottom: -244px;
  }
}
@media (max-width: 1450px) {
  .about-3 .box {
    margin-bottom: -220px;
  }
}
@media (max-width: 1250px) {
  .about-3 .box {
    margin-bottom: -178px;
  }
}
@media (max-width: 1000px) {
  .about-2 {
    padding-left: 0;
  }
  .about-2 .left {
    background-color: var(--color);
  }
  .about-2 .left .sec_left_cont {
    height: auto;
    position: static;
    padding: 0 5%;
  }
  .about-2 .left .sec_left_cont .all_block {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-2 .right::before {
    display: none;
  }
  .about-2 .Tit {
    color: #FFFFFF;
  }
  .about-2 .desc * {
    color: #FFFFFF;
  }
  .about-2 .sec_nav {
    display: none;
  }
  .about-2 .wid-100.flex {
    position: static;
  }
  .about-2 .imges_box {
    padding: 0 5%;
  }
  .about-3 {
    margin-bottom: 0;
  }
  .about-3 .img {
    display: none;
  }
  .about-3 .box {
    margin-bottom: 0;
  }
  .about-5 .left > div {
    padding: 0 5%;
  }
  .about-5 .list {
    padding: 60px 5%;
  }
}
.honor-1 .text {
  max-width: 1000px;
  margin: auto;
  line-height: 1.7;
}
.honor-2 .left {
  background-color: #212121;
}
.honor-2 .left > div {
  height: 100%;
  margin-top: -20%;
}
.honor-2 .right {
  background-color: var(--color);
  color: #FFFFFF;
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
  position: relative;
}
.honor-2 .right::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 33%;
  left: -9%;
  top: 40%;
  background-color: var(--color);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 95%);
  clip-path: polygon(100% 0, 0% 100%, 100% 95%);
}
.honor-3::before {
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color);
}
@media (max-width: 1000px) {
  .honor-2 .left > div {
    margin-top: -10%;
  }
  .honor-2 .right {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .honor-2 .right::after {
    display: none;
  }
  .honor-2 .right > div {
    padding: 60px 5%;
  }
  .honor-3::before {
    display: none;
  }
}
.capability-1 .text {
  max-width: 1350px;
  margin: auto;
  line-height: 1.7;
}
.capability-2 .list .box {
  background-color: var(--color);
  border-radius: 1em;
  height: 100%;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.capability-2 .list .box .text {
  color: #FFFFFF;
}
.capability-2 .list .box:hover {
  background-color: var(--color);
}
.capability-3 {
  max-width: 1760px;
  background-color: var(--color);
  color: #FFFFFF;
}
.capability-3 .text {
  line-height: 1.7;
}
@-webkit-keyframes moy {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-moz-keyframes moy {
  from {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes moy {
  from {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.capability-4 .box {
  padding-top: 650px;
}
.capability-4 li {
  background-color: #000000;
  border-left: 1px solid #FFFFFF;
  width: 9%;
  position: relative;
  -webkit-transition: width .3s ease;
  -moz-transition: width .3s ease;
  transition: width .3s ease;
}
.capability-4 li i {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 1px;
  -webkit-animation: moy 5s linear infinite;
  -moz-animation: moy 5s linear infinite;
  animation: moy 5s linear infinite;
}
.capability-4 li i::before,
.capability-4 li i::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  display: block;
  width: 5px;
  height: 30%;
  background-color: #FFFFFF;
}
.capability-4 li i::after {
  top: 60%;
}
.capability-4 li .box {
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.capability-4 li.active {
  width: 55%;
}
.capability-4 li.active .box {
  opacity: 1;
}
.capability-4 li:nth-of-type(1) {
  border-left: 0;
}
.capability-4 li:nth-of-type(1) i {
  display: none;
}
.capability-4 li:nth-of-type(2) i,
.capability-4 li:nth-of-type(5) i {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.capability-4 li:nth-of-type(3) i {
  -webkit-animation-delay: .7s;
  -moz-animation-delay: .7s;
  animation-delay: .7s;
}
.capability-5 {
  background-color: #f1f1f1;
}
.capability-5 .list .name {
  color: var(--color);
}
.capability-6::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  background-color: #f1f1f1;
}
.capability-6 .text {
  max-width: 1410px;
  margin: auto;
  line-height: 1.7;
}
.capability-6 .top {
  margin-left: auto;
  background-color: var(--color);
  -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}
.capability-6 .bottom {
  background-color: var(--color);
  color: #FFFFFF;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.capability-7 {
  background-color: #f1f1f1;
}
.capability-7 .name {
  color: #666666;
}
@media (max-width: 1700px) {
  .capability-4 .box {
    padding-top: 530px;
  }
}
@media (max-width: 1450px) {
  .capability-4 .box {
    padding-top: 440px;
  }
}
@media (max-width: 1250px) {
  .capability-4 .box {
    padding-top: 350px;
  }
}
@media (max-width: 1000px) {
  .capability-3 {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (max-width: 700px) {
  .capability-4 li {
    width: 100%;
    border: 0;
  }
  .capability-4 li.active {
    width: 100%;
  }
  .capability-4 .box {
    opacity: 1;
    padding-top: 62%;
  }
  .capability-4 li i {
    display: none;
  }
  .capability-6 .top {
    background-color: transparent;
  }
  .capability-6 .bottom {
    width: 100%;
  }
}
.factory-1 .name {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.factory-1 .name i::before {
  content: "\e7b9";
  font-family: "iconfont";
}
.factory-1 .name.active i::before {
  content: "\e7b8";
}
.faq-page li {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.faq-page .icon {
  width: 1.1em;
  height: 1.1em;
  line-height: 1.1em;
  text-align: center;
  color: #FFFFFF;
  background-color: #666666;
  position: relative;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.faq-page .icon::before {
  content: "";
  width: 80%;
  height: 70%;
  background-color: #666666;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 15%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.faq-page .name {
  cursor: pointer;
}
.faq-page .name .icon {
  margin-top: .2em;
}
.faq-page .name i {
  margin-left: auto;
}
.faq-page .name i::before {
  content: "\e7b9";
  font-family: "iconfont";
}
.faq-page .name.active .icon {
  background-color: #0876ff;
}
.faq-page .name.active .icon::before {
  background-color: #0876ff;
}
.faq-page .name.active i::before {
  content: "\e7b8";
}
.faq-page .name.active + .content .icon {
  background-color: #0876ff;
}
.faq-page .name.active + .content .icon::before {
  background-color: #0876ff;
}
/*.faq-page .content {
  display: none;
}*/
.faq-page .content .text {
  margin-top: .3em;
}
@media (max-width: 700px) {
  .faq-page .icon {
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
  }
  .faq-page .name .icon {
    margin-top: 0;
  }
}
.contact-1 li span {
  border-bottom: 3px solid currentColor;
}
.contact-2 {
  max-width: 1760px;
  margin-left: auto;
}
.contact-3 {
  color: #FFFFFF;
  padding: 1.1em 0;
  /*padding: 2.9em 0 1.1em;*/
  /*margin-top: -1.4em;*/
}
.contact-3 .form input,
.contact-3 .form textarea,
.contact-3 .form label {
  width: 100%;
  border: 0;
  color: #000000;
}
.contact-3 .form input,
.contact-3 .form textarea,
.contact-3 .form .file {
  background-color: #FFFFFF;
  padding: 15px 10px;
}
.contact-3 .form textarea[name="type"] {
  height: 100%;
}
.contact-3 .form input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.contact-3 .form input[type="checkbox"] {
  width: 22px;
  height: 22px;
  background-color: transparent;
}
.contact-3 .form .file > div {
  display: inline-block;
}
.contact-3 .form .file span {
  color: #FFFFFF;
  background-color: var(--color);
  line-height: 32px;
  height: 32px;
  border-radius: 16px;
  padding: 0 14px;
  display: block;
}
.contact-3 .form button {
  font-size: 30px;
  width: 57px;
  height: 57px;
  border: 0;
  color: var(--color);
  background-color: #FFFFFF;
}
@media (max-width: 1700px) {
  .contact-3 {
    padding: 1em 0;
    margin-top: 0;
  }
}
.news-page li {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news-page li .box {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news-page li .box .day {
  line-height: 1;
  color: #0876ff;
}
.news-page li .box .morebtn {
  position: absolute;
  display: block;
  width: 4em;
  height: 4em;
  text-align: center;
  line-height: 4em;
  color: #FFFFFF;
  background-color: #0876ff;
  border-radius: 50%;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news-page li:hover {
  background-color: #f2f2f2;
}
.news-page li:hover .box {
  border-bottom: 1px solid #000000;
}
.news-page li:hover .box .morebtn {
  opacity: 1;
}
@media (max-width: 1000px) {
  .news-page li .box {
    padding-left: 0;
    padding-right: 0;
  }
  .news-page li .box .morebtn {
    position: static;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}
.newdet-1 .icon {
  font-size: 0;
}
.newdet-1 .box {
  color: #FFFFFF;
  background-color: var(--color);
  border-radius: 1em;
}
.newdet-3 .box {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.product-1 .img {
  width: 35%;
  left: 0;
  top: -14%;
}
.product-1 .box > div:nth-of-type(1) {
  width: 27%;
  background-color: #001e3a;
}
.product-1 .box > div:nth-of-type(2) {
  width: 35%;
  color: #FFFFFF;
  background-color: var(--color);
}
.product-1 .box > div:nth-of-type(3) {
  width: 30%;
}
.product-1 .box .content {
  line-height: 1.8;
  min-height: 23.4em;
  max-height: 23.4em;
  overflow-y: auto;
}

.product-1 .box .content::-webkit-scrollbar-thumb {
  background-color: #000000;
}

.basePro {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.basePro .img {
  overflow: hidden;
  background-color: #f5f5f5;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.basePro .img img {
  width: 100%;
}
.basePro .img .name {
  z-index: -1;
  font-size: 8.5vw;
  line-height: 1;
  word-break: break-all;
  font-weight: 900;
  color: var(--color);
  width: 100%;
  text-align: center;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.basePro .content {
  position: relative;
  background-color: #FFFFFF;
  -webkit-transition: margin-top 0.5s ease;
  -moz-transition: margin-top 0.5s ease;
  transition: margin-top 0.5s ease;
}
.basePro .content .size {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.basePro .content p {
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.basePro .btn {
  margin-top: -80px;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.basePro .btn a {
  display: block;
  line-height: 80px;
  height: 80px;
  color: #FFFFFF;
  background-color: var(--color);
  padding-left: 92px;
  padding-right: 54px;
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.basePro:hover {
  -webkit-box-shadow: 0 8px 24px rgba(51, 51, 51, 0.21);
  box-shadow: 0 8px 24px rgba(51, 51, 51, 0.21);
}
.basePro:hover .img {
  background-color: transparent;
}
.basePro:hover .img .name {
  top: 20%;
  opacity: 1;
}

@keyframes my {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.basePro:hover .img img {
  animation: my 1s ease;
}


.basePro:hover .content {
  margin-top: -120px;
}
.basePro:hover .content .size {
  color: var(--color);
}
.basePro:hover .content p {
  opacity: 1;
}
.basePro:hover .btn {
  margin-top: 0;
  opacity: 1;
}
@media (max-width: 1700px) {
  .product-1 .box .content {
    min-height: 19.8em;
    max-height: 19.8em;
  }
}
@media (max-width: 1450px) {
  .product-1 .box .content {
    min-height: 14.4em;
    max-height: 14.4em;
  }
}
@media (max-width: 1250px) {
  .product-1 .box .content {
    min-height: 10.8em;
    max-height: 10.8em;
  }
}
@media (max-width: 1000px) {
  .product-1 .img {
    display: none;
  }
  .product-1 .box > div:nth-of-type(2) > div {
    padding: 60px 5%;
  }
  .basePro:hover .content {
    margin-top: 0;
  }
  .basePro .btn {
    margin-top: 0;
    opacity: 1;
  }
  .basePro .btn a {
    line-height: 40px;
    height: 40px;
    width: 100%;
    padding: 0;
    text-align: center;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .basePro:hover .img {
    background-color: #f5f5f5;
  }
  .basePro .img .name {
    display: none;
  }
}
#pro-flex-slide {
  position: fixed;
  left: 0;
  top: 120px;
  z-index: 99;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#pro-flex-slide.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#pro-flex-slide li .icon {
  width: 1em;
  height: 1em;
  background-color: #dedede;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#pro-flex-slide li .icon img {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#pro-flex-slide li .name {
  position: absolute;
  z-index: -1;
  left: 1em;
  top: 0;
  height: 1em;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: var(--color);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#pro-flex-slide li:hover .icon {
  background-color: var(--color);
}
#pro-flex-slide li:hover .icon img {
  opacity: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#pro-flex-slide li:hover .name {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.prodet-1 .box {
  background-color: #0959a6;
  color: #FFFFFF;
  border-radius: 38px;
  position: relative;
}
.prodet-1 .box::before {
  content: "";
  position: absolute;
  width: 48%;
  height: 60%;
  top: 40%;
  left: 50%;
  background-color: #FFFFFF;
  -webkit-clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
  clip-path: polygon(35% 0%, 100% 0%, 65% 100%, 0% 100%);
}
.prodet-1 .left img {
  width: 100%;
}
.prodet-1 .arrows {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.prodet-1 .arrows span {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid currentcolor;
  opacity: .3;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.prodet-1 .arrows span:hover {
  opacity: 1;
}
.prodet-2 .box {
  background-color: #f5f5f5;
  border-radius: 43px;
}
.prodet-2 .tit span {
  min-width: 310px;
  display: inline-block;
  border-top: 3px solid currentcolor;
}
.prodet-2 .content {
  line-height: 1.85;
}
.prodet-2 div.h4 {
  color: #FFFFFF;
  background-color: var(--color);
}
.prodet-2 .custxt li {
  padding: 1em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.prodet-2 .bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.prodet-2 .mask {
  background-color: var(--color);
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.prodet-3 .list li .box {
  height: 100%;
  border-radius: 14px;
  background-color: #f5f5f5;
}
@media (max-width: 1000px) {
  .prodet-1 .left .imgs {
    width: 70%;
    margin: auto;
  }
  .prodet-1 .box::before {
    display: none;
  }
  .prodet-1 .left {
    position: relative;
  }
  .prodet-1 .arrows {
    position: static;
  }
  .prodet-1 .arrows span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .prodet-1 .arrows span.arrow_l {
    left: 0;
  }
  .prodet-1 .arrows span.arrow_r {
    right: 0;
  }
}
@media (max-width: 700px) {
  .prodet-1 .box {
    border-radius: 14px;
  }
  .prodet-2 .box {
    border-radius: 14px;
  }
}
@media (max-width: 500px) {
  .prodet-1 .left .imgs {
    width: 100%;
  }
}
.technology-1 .left {
  background-color: var(--color);
  color: #FFFFFF;
}
.technology-1 .left > div {
  padding-left: 20%;
}
.technology-1 .left .text {
  line-height: 1.7;
}
.technology-2 .left {
  background-color: var(--color);
  color: #FFFFFF;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.technology-2 .right .line {
  border-bottom: 1px solid var(--color);
}
.technology-2 .right .line::before {
  content: "";
  display: block;
  width: 65%;
  border-bottom: 6px solid var(--color);
}
.technology-2 .right .section3 .box {
  background-color: #666666;
  color: #FFFFFF;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.technology-2 .right .section3 .box:hover {
  background-color: var(--color);
}
.technology-2 .right .section4 .img img {
  width: 100%;
}
.technology-2 .right .section4 .img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/technology2-mask.png);
  background-size: auto 100%;
}
.technology-2 .right .section4 .img .name {
  width: 90%;
  left: 5%;
  top: 5%;
  color: #FFFFFF;
}
.technology-3 {
  background-color: #f5f5f5;
}
.technology-3 .text {
  max-width: 1240px;
  margin: auto;
}
.baseBox .mask {
  overflow: hidden;
}
.baseBox .mask::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color);
  position: absolute;
  z-index: -1;
  left: 100%;
  top: 0;
  -webkit-clip-path: polygon(45% 0%, 100% 0%, 55% 100%, 0% 100%);
  clip-path: polygon(45% 0%, 100% 0%, 55% 100%, 0% 100%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.baseBox .img {
  border: 1px solid rgba(51, 51, 51, 0.1);
}
.baseBox .img img {
  width: 100%;
}
.baseBox .name {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.baseBox:hover .mask::before {
  left: 0;
  opacity: 1;
}
.baseBox:hover .name {
  color: var(--color);
}
@media (max-width: 1000px) {
  .technology-1 .left > div {
    padding-left: 5%;
    padding-right: 5%;
  }
  .technology-2 .left {
    position: static;
  }
  .technology-2 .left > div {
    padding-left: 5%;
    padding-right: 5%;
  }
  .technology-2 .left .img {
    display: none;
  }
  .technology-2 .right > div {
    padding-left: 5%;
    padding-right: 5%;
  }
}



canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.m-page {
  text-align: center;
}

.m-page span,
.m-page a {
  margin: 0 6px;
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4em;
  text-align: center;
  background-color: #f5f5f5;
  color: #cccccc;
}

.m-page span.current {
  color: #FFFFFF;
  background-color: var(--color);
}


.cusbtn {
  right: 5%;
  top: 5%;
  z-index: 1;
}


.custom-3d iframe {
  border: 0;
}

@media (max-width:1000px) {
  .custom-3d iframe {
    height: 400px!important;
  }
}

@media (max-width:700px) {
  .custom-3d iframe {
    height: 300px!important;
  }
}


.seoPublic .Auxil-news .list ul li .content {
  margin-top: 0;
}