@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat-Regular.eot') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.woff2') format('woff2'), url('../fonts/Montserrat-Light.ttf') format('truetype'), url('../fonts/Montserrat-Light.eot') format('embedded-opentype'), url('../fonts/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.ttf') format('truetype'), url('../fonts/Montserrat-Medium.eot') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.ttf') format('truetype'), url('../fonts/Montserrat-Bold.eot') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype'), url('../fonts/Montserrat-SemiBold.eot') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'WalkwayExpandBlack';
  src: url('../fonts/WalkwayExpandBlack.woff2') format('woff2'), url('../fonts/WalkwayExpandBlack.ttf') format('truetype'), url('../fonts/WalkwayExpandBlack.eot') format('embedded-opentype'), url('../fonts/WalkwayExpandBlack.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Montserrat';
  max-width: 1920px;
  --color: #1b2185;
  margin: 0 auto;
  font-weight: normal;
  --font: 'WalkwayExpandBlack';
}
.container {
  width: 1630px;
}
.lh-1 {
  line-height: 1;
}
.lh-2 {
  line-height: 1.2;
}
.lh-3 {
  line-height: 1.3;
}
.lh-4 {
  line-height: 1.4;
}
.lh-5 {
  line-height: 1.5;
}
.lh-6 {
  line-height: 1.6;
}
.lh-7 {
  line-height: 1.7;
}
.lh-8 {
  line-height: 1.8;
}
.lh-9 {
  line-height: 1.9;
}
.lh-10 {
  line-height: 2;
}

.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
.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;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#header.active {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  height: 85px;
}
#header .nav .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#header .nav .menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .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 .menu .menu-box ul.menu > li {
  font-size: 14px;
  font-weight: 600;
  color: black;
  margin-right: 35px;
  -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 .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .menu .menu-box ul.menu > li > a {
  padding: 0 10px;
  line-height: 80px;
  display: block;
  border-bottom: 6px solid transparent;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#header .nav .menu .menu-box ul.menu > li > a:hover {
  border-color: var(--color);
}
#header .nav .menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 300px;
  width: auto;
  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 .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 .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .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 .right .h-search {
  cursor: pointer;
  margin-right: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  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;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#header .nav .right .h-search img {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#header .nav .right .h-search:hover {
  background: var(--color);
  border-color: var(--color);
}
#header .nav .right .h-search:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.language-box .zhuyu {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  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;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.language-box .zhuyu span {
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.language-box .zhuyu:hover {
  background: var(--color);
  border-color: var(--color);
}
.language-box .zhuyu:hover span {
  color: white;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  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.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#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;
}
.white {
  color: white;
}
.more {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 12px;
  height: 48px;
  background-color: var(--color);
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}
.more.white:hover {
  border-color: white;
}
.more.white:hover span,
.more.white:hover i {
  color: white;
}
.more:hover {
  border-color: var(--color);
  background-color: transparent;
}
.more:hover span,
.more:hover i {
  color: var(--color);
}
.more span {
  font-size: 18px;
  color: white;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
}
.more i {
  font-size: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.more2 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 45px;
  background-color: var(--color);
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
}
.more2.white:hover {
  border-color: white;
}
.more2.white:hover span,
.more2.white:hover i {
  color: white;
}
.more2:hover {
  border-color: var(--color);
  background-color: transparent;
}
.more2:hover span,
.more2:hover i {
  color: var(--color);
}
.more2 span {
  font-size: 16px;
  color: white;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 300;
}
.h-title {
  font-size: 90px;
  line-height: 1.2;
  position: relative;
  font-weight: 500;
  z-index: 5;
  color: #333333;
}
.h-title h3 {
  margin-left: -10px;
  text-transform: uppercase;
}
@-webkit-keyframes scale_play {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes scale_play {
  0% {
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes scale_play {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}
.tit-font {
  font-family: var(--font);
}
.tit-semi{
  font-weight: 600;
}
.tit-hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.tit-hover:hover {
  color: var(--color);
}
.tit-medium {
  font-weight: 500;
}
.txt-light {
  font-weight: 300;
}
.txt-color {
  color: var(--color);
}
.line {
  background: -webkit-gradient(linear, left top, right top, from(rgba(172, 172, 172, 0)), to(#acacac));
  background: -webkit-linear-gradient(left, rgba(172, 172, 172, 0) 0%, #acacac 100%);
  background: -moz-linear-gradient(left, rgba(172, 172, 172, 0) 0%, #acacac 100%);
  background: linear-gradient(to right, rgba(172, 172, 172, 0) 0%, #acacac 100%);
}
#banner {
  position: relative;
  z-index: 1;
  margin-top: 85px;
}
#banner .content {
  width: 100%;
}
#banner .content ul li .kuai {
  width: 65%;
  height: 130px;
  background-color: #f6f6f6;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 10;
  -webkit-clip-path: polygon(0 0, 67% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 67% 0, 100% 100%, 0% 100%);
}
#banner .content ul li .container {
  position: absolute;
  height: 100%;
  z-index: 10;
}
#banner .content ul li .container .box {
  padding-top: 15%;
}
#banner .content ul li .container .box h2 {
  font-family: var(--font);
  font-size: 60px;
}
#banner .content .btn {
  position: absolute;
  right: 160px;
  bottom: 85px;
  width: 130px;
  height: 130px;
  cursor: pointer;
}
#banner .content .btn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 175px;
  height: 175px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-animation: scale_play 2s ease-in-out infinite;
  -moz-animation: scale_play 2s ease-in-out infinite;
  animation: scale_play 2s ease-in-out infinite;
}
#banner .content .btn i {
  font-size: 40px;
  background-color: white;
  border-radius: 50%;
  width: 100%;
  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;
}
#index-body .homepage-1 {
  padding: 100px 0 80px;
  background-color: #f6f6f6;
}
#index-body .homepage-1 .top .line {
  width: 220px;
  height: 3px;
}
#index-body .homepage-1 .bottom {
  margin-top: 65px;
  padding: 0 6%;
}
#index-body .homepage-1 .bottom ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .homepage-1 .bottom ul li .img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  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;
  border: 2px solid #c0c0c0;
}
#index-body .homepage-2 {
  padding: 115px 0 135px;
}
#index-body .homepage-2 .bottom {
  padding-left: 160px;
}
#index-body .homepage-2 .bottom ul {
  margin: 0 -15% 0 -8px;
}
#index-body .homepage-2 .bottom ul li {
  padding: 0 8px;
}
#index-body .homepage-2 .bottom ul li .box {
  height: 400px;
  background-color: #f6f6f6;
  padding: 40px;
  position: relative;
}
#index-body .homepage-2 .bottom ul li .box .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: absolute;
  left: 50%;
  top: 200%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-2 .bottom ul li .box .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
  margin: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-2 .bottom ul li .box .img img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#index-body .homepage-2 .bottom ul li .box h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-2 .bottom ul li .box:hover h4,
#index-body .homepage-2 .bottom ul li .box:hover .img {
  opacity: 0.6;
}
#index-body .homepage-2 .bottom ul li .box:hover .btn {
  top: 50%;
}
#index-body .homepage-3 .left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#index-body .homepage-3 .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .homepage-3 .right .h-title h3 {
  font-size: 60px;
}
#index-body .homepage-3 .right ul li {
  padding: 0 15px;
  border-radius: 35px;
  height: 35px;
  border: 1px solid var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
}
#index-body .homepage-3 .right ul li span {
  font-size: 16px;
  margin-left: 15px;
}
#index-body .homepage-4 {
  padding: 135px 0;
}
#index-body .homepage-4 .line {
  width: 100%;
  height: 3px;
}
#index-body .homepage-4 .h-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
#index-body .homepage-4 .content ul {
  margin: 0 -20px;
}
#index-body .homepage-4 .content ul li {
  padding: 0 20px;
}
#index-body .homepage-4 .content ul li .img {
  height: 150px;
  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;
}
#index-body .homepage-5 {
  background: url('../images/vector.png') no-repeat;
  background-position: 0 80%;
  padding-bottom: 125px;
}
#index-body .homepage-5 .left .h-title h3 {
  line-height: 1;
}
#index-body .homepage-5 .left .line {
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(196, 198, 223, 0)), to(#c4c6df));
  background: -webkit-linear-gradient(left, rgba(196, 198, 223, 0) 0%, #c4c6df 100%);
  background: -moz-linear-gradient(left, rgba(196, 198, 223, 0) 0%, #c4c6df 100%);
  background: linear-gradient(to right, rgba(196, 198, 223, 0) 0%, #c4c6df 100%);
}
#index-body .homepage-5 .right ul li {
  margin-bottom: 60px;
}
#index-body .homepage-5 .right ul li:last-child {
  margin-bottom: 0;
}
#index-body .homepage-5 .right ul li .box {
  padding: 45px 50px 0 40px;
  height: 225px;
  border-radius: 25px;
  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;
  background-color: #b2b2b2;
  transition: all 0.5s;
}
#index-body .homepage-5 .right ul li .box:hover{
  background-color: var(--color);
}
#index-body .homepage-5 .right ul li .box .text {
  width: -webkit-calc(100% - 115px);
  width: -moz-calc(100% - 115px);
  width: calc(100% - 115px);
  padding-right: 55px;
}
#index-body .homepage-5 .right ul li .box .text p {
  font-weight: 300;
}
#index-body .homepage-5 .right ul li .box .img {
  width: 115px;
  height: 115px;
  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;
  border-radius: 50%;
  background-color: transparent;
  filter: brightness(0) invert(1);
  transition: all 0.5s;
}
#index-body .homepage-5 .right ul li .box:hover .img {
  background-color: white;
  filter: brightness(1) invert(0);
}
#index-body .homepage-6 {
  padding: 135px 0;
}
#index-body .homepage-6 .top .h-title h3 {
  font-size: 60px;
}
#index-body .homepage-6 .bottom {
  padding-left: 160px;
}
#index-body .homepage-6 .bottom ul {
  margin: 0 -13% 0 -30px;
}
#index-body .homepage-6 .bottom ul li {
  padding: 0 30px;
}
#index-body .homepage-6 .bottom ul li:hover .box::before {
  opacity: 0;
}
#index-body .homepage-6 .bottom ul li:hover .box i {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#index-body .homepage-6 .bottom ul li:hover .box i img{
  -webkit-transform:  scale(0.5);
  -moz-transform:  scale(0.5);
  -ms-transform:  scale(0.5);
  transform: scale(0.5);
}
#index-body .homepage-6 .bottom ul li:hover .box h4 {
  opacity: 0;
}
#index-body .homepage-6 .bottom ul li:hover .box .text {
  top: 0;
}
#index-body .homepage-6 .bottom ul li .box {
  overflow: hidden;
  border-radius: 25px;
  display: block;
  transition: all 0.5s;
}
#index-body .homepage-6 .bottom ul li:hover .box{
  border-top-right-radius: 0;
}
#index-body .homepage-6 .bottom ul li .box::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(27, 33, 133, 0.8)), to(rgba(27, 33, 133, 0)));
  background: -webkit-linear-gradient(bottom, rgba(27, 33, 133, 0.8) 0%, rgba(27, 33, 133, 0) 100%);
  background: -moz-linear-gradient(bottom, rgba(27, 33, 133, 0.8) 0%, rgba(27, 33, 133, 0) 100%);
  background: linear-gradient(to top, rgba(27, 33, 133, 0.8) 0%, rgba(27, 33, 133, 0) 100%);
  z-index: 3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-6 .bottom ul li .box .img {
  width: 100%;
  display: block;
  height: 480px;
}
#index-body .homepage-6 .bottom ul li .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition:all 0.5s;
}
#index-body .homepage-6 .bottom ul li .box h4 {
  position: absolute;
  bottom: 20px;
  left: 0;
  text-align: center;
  width: 100%;
  padding: 0 30px;
  z-index: 5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-6 .bottom ul li .box i {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: white;
  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;
  right: -20px;
  top: -20px;
  -webkit-transform: scale(0.33);
  -moz-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 10;
}
#index-body .homepage-6 .bottom ul li .box i img{
  filter: brightness(0);
}
#index-body .homepage-6 .bottom ul li .box .text {
  position: absolute;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0 25px;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .homepage-7 {
  padding-bottom: 130px;
}
#index-body .homepage-7 .top .h-title h3 {
  font-size: 96px;
  line-height: 0.8;
}
#index-body .homepage-7 .top .btn span {
  width: 55px;
  height: 55px;
  background-color: #adadad;
  border-radius: 50%;
  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;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
#index-body .homepage-7 .top .btn span:hover {
  background-color: var(--color);
}
#index-body .homepage-7 .top .btn span i {
  font-size: 30px;
  color: white;
}
#index-body .homepage-7 .bottom .left .list {
  font-weight: 500;
  font-size: 20px;
  opacity: 0.6;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 35px;
  cursor: pointer;
}
#index-body .homepage-7 .bottom .left .list.active {
  opacity: 1;
}
#index-body .homepage-7 .bottom .left .list:last-child {
  margin-bottom: 0;
}
#index-body .homepage-7 .bottom .right {
  width: -webkit-calc(100% - 180px);
  width: -moz-calc(100% - 180px);
  width: calc(100% - 180px);
}
#index-body .homepage-7 .bottom .right ul {
  display: none;
}
#index-body .homepage-7 .bottom .right ul.active {
  display: block;
}
#index-body .homepage-7 .bottom .right .img {
  width: 57.8%;
  border-radius: 25px;
  overflow: hidden;
}
#index-body .homepage-7 .bottom .right .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .homepage-7 .bottom .right .text {
  padding-left: 90px;
  width: 42.2%;
}
#footer {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#footer .top {
  padding-top: 75px;
}
#footer .top .topup {
  position: absolute;
  top: 0;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background-color: #666666;
  border-radius: 50%;
  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;
  cursor: pointer;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .top .topup:hover {
  background-color: var(--color);
}
#footer .top .topup i {
  font-size: 20px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#footer .top .box form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
#footer .top .box form input[type='text'] {
  width: 24%;
  height: 45px;
  border: none;
  padding: 0 15px;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: white;
  font-family: 'Montserrat-Light';
  text-transform: uppercase;
  margin-right: 20px;
}
#footer .top .box form input[name='content'] {
  width: -webkit-calc(52% - 40px);
  width: -moz-calc(52% - 40px);
  width: calc(52% - 40px);
  margin-right: 0;
}
#footer .top .box form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#footer .top .box form .submit {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
}
#footer .top .box form .submit:hover input[type='submit'] {
  background-color: var(--color);
}
#footer .top .box form .submit:hover i {
  color: white;
}
#footer .top .box form .submit i {
  font-size: 20px;
  color: black;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .top .box form .submit input[type='submit'] {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  background-color: white;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .center {
  padding: 45px 15px 75px;
}
#footer .center ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .center ul li.form h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
#footer .center ul li.form form {
  width: 415px;
  position: relative;
}
#footer .center ul li.form form input[type='text'] {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 0 15px;
  height: 60px;
  width: 100%;
  margin-bottom: 15px;
  font-weight: 600;
}
#footer .center ul li.form form input[type='submit'] {
  background: url('../images/submit.png') no-repeat;
  border: none;
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 41px;
}
#footer .center ul li.form form input::-webkit-input-placeholder,
#footer .center ul li.form form textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
#footer .center ul li.form form textarea {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 15px;
  height: 175px;
  width: 100%;
  font-weight: 600;
}
#footer .center ul li.form form ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
#footer .center ul li.form form ul li {
  padding: 0 5px;
}
#footer .center ul li.form .share {
  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;
}
#footer .center ul li.form .share a {
  color: #fff;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  width: 55px;
  height: 55px;
  background-color: var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}
#footer .center ul li.form .share a i {
  font-size: 26px;
}
#footer .center ul li.link span {
  margin-bottom: 18px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .center ul li.link span:last-child {
  margin-bottom: 0;
}
#footer .center ul li.link span:hover {
  color: var(--color);
}
#footer .center ul li.contact {
  width: 450px;
  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;
}
#footer .center ul li.contact .list {
  margin-bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 270px;
}
#footer .center ul li.contact .list #ewm canvas,
#footer .center ul li.contact .list #ewm img{
  width: 120px;
  height: 120px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border: 8px solid white;
}
#footer .center ul li.contact .list span{
  line-height: 1.8;
}
#footer .center ul li.contact .list:first-child {
  margin-right: 50px;
}
#footer .center ul li.contact .list:nth-child(3) {
  margin-bottom: 0;
  padding-right: 50px;
}
#footer .center ul li h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
#footer .center ul li span {
  font-size: 16px;
  color: #b2aeae;
  display: block;
  margin-bottom: 10px;
}
#footer .bottom {
  padding-bottom: 40px;
}
#footer .bottom .container span {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
}
#footer .bottom .container span.copyright a {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .bottom .container span.copyright a:hover {
  color: var(--color);
}
#footer .bottom .container span img {
  width: 250px;
  height: auto;
  padding-top: 4px;
  opacity: 0.8;
}
@media screen and (max-width: 1700px) {
  #banner .content ul li .container .box {
    padding-top: 5%;
    width: 75%;
  }
  .h-title,
  #index-body .homepage-7 .top .h-title h3 {
    font-size: 60px;
  }
  #index-body .homepage-3 .right .h-title h3 {
    font-size: 45px;
  }
}
@media screen and (max-width: 1450px) {
  #banner .content ul li .container .box h2 {
    font-size: 45px;
  }
  #index-body .homepage-6 {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 1250px) {
  #banner {
    margin-top: 40px;
  }
  #banner .content ul li .container .box h2 {
    font-size: 36px;
  }
  #banner .content ul li .container .box {
    padding-top: 7%;
    width: 100%;
  }
  #banner .content ul li .container .box p {
    margin: 15px 0;
  }
  #banner .content ul li .container .img {
    max-width: 50%;
  }
  #index-body .homepage-3 .right .h-title h3 {
    font-size: 35px;
  }
  #index-body .homepage-5 .right {
    width: 50%;
  }
  #index-body .homepage-6 .top .h-title h3,
  .h-title,
  #index-body .homepage-7 .top .h-title h3 {
    font-size: 40px;
  }
  #footer .center ul li.link {
    display: none;
  }
  #index-body .homepage-7 .bottom .right .text {
    padding-left: 30px;
  }
  #banner .content .btn {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .homepage-6 .top .h-title h3,
  .h-title,
  #index-body .homepage-7 .top .h-title h3 {
    font-size: 30px;
  }
  #banner .content ul li .container .img,
  #banner .content ul li .kuai {
    display: none;
  }
  #banner .content ul li .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #banner .content ul li .container .box {
    padding-top: 0;
    width: 100%;
  }
  #index-body .homepage-1 .bottom {
    padding: 0;
  }
  #index-body .homepage-1 .bottom ul li {
    width: 50%;
    margin: 15px 0;
    text-align: center;
  }
  #index-body .homepage-2 .bottom,
  #index-body .homepage-6 .bottom {
    padding: 0 15px !important;
  }
  #index-body .homepage-2 .bottom ul,
  #index-body .homepage-6 .bottom ul {
    margin: 0 -15px;
  }
  #index-body .homepage-2 .bottom ul li,
  #index-body .homepage-6 .bottom ul li {
    padding: 0 15px;
  }
  #index-body .homepage-3 .left {
    width: 100%;
    margin-bottom: 60px;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
  #index-body .homepage-3 .right {
    width: 100%;
    padding: 0;
  }
  #index-body .homepage-2 {
    padding: 85px 0;
  }
  #index-body .homepage-4 {
    padding: 85px 0;
  }
  #index-body .homepage-5 .left {
    width: 100%;
    margin-bottom: 60px;
  }
  #index-body .homepage-5 .right {
    width: 100%;
  }
  #index-body .homepage-7 .top .btn {
    display: none;
  }
  #index-body .homepage-7 .bottom .left {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  #index-body .homepage-7 .bottom .left .list {
    margin-bottom: 0;
    margin-right: 15px;
  }
  #index-body .homepage-7 .bottom .right {
    width: 100%;
    margin-top: 35px;
  }
  #footer .center ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .center ul li.contact {
    width: 100%;
  }
  #footer .center ul li.form {
    width: 100%;
    margin-top: 40px;
  }
  #footer .center ul li.form form {
    width: 100%;
  }
  #footer .center ul li.form .share {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .center ul li.form .share a {
    margin: 0 15px;
  }
  #footer .center ul li.contact .list {
    max-width: 100%;
    width: 50%;
  }
  #footer .center ul li.contact .list:nth-child(3) {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }
  #footer .center ul li.contact .list:first-child {
    margin-right: 0;
  }
  #footer .bottom .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .bottom .container span {
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  #banner .content ul li .container .box a.more {
    display: none;
  }
  #banner .content ul li .container .box p {
    margin-bottom: 0;
  }
  #banner .content ul li .container .box h2 {
    font-size: 30px;
  }
  .h-title h3 {
    margin-left: 0;
  }
  #index-body .homepage-6 .bottom ul li .box .text h5 {
    font-size: 24px;
  }
  #index-body .homepage-6 .bottom ul li .box h4 {
    font-size: 24px;
  }
  #index-body .homepage-7 .bottom .right .img {
    width: 100%;
  }
  #index-body .homepage-7 .bottom .right .text {
    width: 100%;
    margin-top: 40px;
  }
  #index-body .homepage-5 {
    padding-bottom: 85px;
  }
  #index-body .homepage-7 .bottom .right .text {
    padding-left: 0;
  }
  #index-body .homepage-7 .bottom .right h4 {
    font-size: 20px;
  }
  #index-body .homepage-7 {
    padding-bottom: 70px;
  }
  #footer .center {
    padding: 45px 15px;
  }
  #footer .center ul li.form h3 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  #banner .content ul li .container .box h2 {
    font-size: 24px;
  }
  #index-body .homepage-1 .top .line {
    display: none;
  }
  #index-body .homepage-3 .right ul li {
    margin-right: 0;
  }
  #index-body .homepage-3 .right ul li span {
    font-size: 13px;
  }
  #index-body .homepage-3 .right .play {
    margin-top: 30px;
  }
  #index-body .homepage-5 .right ul li .box .img {
    width: 55px;
    height: 55px;
  }
  #index-body .homepage-5 .right ul li .box .img img {
    max-width: 35px;
  }
  #index-body .homepage-5 .right ul li .box .text {
    width: -webkit-calc(100% - 55px);
    width: -moz-calc(100% - 55px);
    width: calc(100% - 55px);
    padding-right: 20px;
  }
  #index-body .homepage-5 .right ul li .box .text h4 {
    font-size: 20px;
  }
  #index-body .homepage-5 .right ul li .box {
    padding: 45px 25px;
    height: auto;
  }
  #footer .center ul li.contact .list {
    width: 100%;
  }
  #footer .center ul li.form form ul li {
    width: 100%;
  }
  #footer .center ul li.form .share {
    margin-top: 25px;
  }
  #footer .center ul li.form .share a {
    margin: 0 10px;
  }
}




































.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-title {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}
.inner-banner {
  padding: 10% 0;
  position: relative;
  margin-top: 85px;
}
.inner-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-banner .container {
  position: relative;
  text-align: center;
}
.inner-banner .container h2 {
  font-size: 90px;
  line-height: 1;
  font-family: var(--font);
  text-transform: uppercase;
  margin-bottom: 45px;
  position: relative;
}
.inner-banner .container h2::before {
  content: '';
  display: block;
  width: 338px;
  height: 157px;
  background: url('../images/ellipse.png') no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.inner-banner .container .mbx {
  font-size: 18px;
}
.inner-page {
  padding: 185px 0;
}
.about-page .about-1 ul li {
  padding: 0 15px;
  border-radius: 35px;
  height: 35px;
  border: 1px solid var(--color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
}
.about-page .about-1 ul li span {
  font-size: 16px;
  margin-left: 15px;
}
.about-page .about-1 .bottom{
  height: 780px;
}
.about-page .about-1 .bottom .img1{
  width: 22.5%;
  height: 100%;
}
.about-page .about-1 .bottom .img1 img{
  height: calc((100% - 20px)/2);
}
.about-page .about-1 .bottom .img2 {
  width: 77.5%;
  position: relative;
  height: 100%;
}
.about-page .about-1 .bottom .img2 .play{
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
}
.about-page .about-history {
  padding: 130px 0;
}
.about-page .about-history .content .left {
  width: 46.3%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.about-page .about-history .content .right {
  width: 53.7%;
  max-height: 767px;
  overflow: hidden;
}
.about-page .about-history .content .right ul li .title {
  width: 100%;
  cursor: pointer;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.about-page .about-history .content .right ul li.active .text {
  padding: 30px 0 95px;
  max-height: 800px;
}
.about-page .about-history .content .right ul li .text {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.about-page .about-history .content .right ul li .text .list {
  padding-bottom: 30px;
  padding-left: 60px;
  position: relative;
}
.about-page .about-history .content .right ul li .text .list::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color);
  position: absolute;
  top: 6px;
  left: 0;
}
.about-page .about-history .content .right ul li .text .list::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--color);
  position: absolute;
  top: 6px;
  left: 5px;
  opacity: 0.6;
}
.about-page .about-history .content .right ul li .text .list:last-child {
  padding-bottom: 0;
}
.about-page .about-history .content .right ul li .text .list:last-child::after {
  height: 36px;
}
.about-page .about-2 .top .right span::after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 10px;
}
.about-page .about-2 .center ul {
  margin-right: -22%;
}
.about-page .about-2 .center ul li .box .title{
  height: 38px;
}
.about-page .about-2 .center ul li .box {
  border-radius: 25px;
  background-color: #f5f5f5;
  padding: 60px 40px;

}
.about-page .about-2 .center ul li .box .text{
  height: 115px;
  overflow-y: auto;
}
.about-page .about-2 .img {
  width: 86.8%;
  margin-left: auto;
}
.about-page .about-honor {
  padding: 135px 0;
  overflow: hidden;
}
.about-page .about-honor .bg {
  bottom: 0;
  left: 0;
}
.about-page .about-honor .list.list-r {
  margin-left: auto;
  padding-bottom: 13%;
  max-width: 780px;
}
.about-page .about-honor .list.list-l {
  position: absolute;
  left: 50px;
  top: 20%;
  max-width: 900px;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
}
.about-page .about-honor .list.list-l img {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-10deg);
  -moz-transform: rotateY(-10deg);
  transform: rotateY(-10deg);
  -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.2) 100%);
  box-reflect: below 10px linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.2) 100%);
}
.about-page .about-honor .list.list-l .btn::before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: auto;
}
.about-page .about-honor .list .btn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid var(--color);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-bottom: 15px;
}
.about-page .about-3 {
  padding: 130px 35px 0;
}
.about-page .about-3 ul li .img{
  border-radius: 15px;
  overflow: hidden;
  display: block;
}
.honor-page ul {
  margin: -27px -22px;
}
.honor-page ul li {
  padding: 27px 22px;
  width: 33.333333%;
}
.factory-page ul {
  margin: -35px -23px;
}
.factory-page ul li {
  padding: 35px 23px;
  width: 33.333333%;
}
.factory-page ul li .img {
  border-radius: 25px;
  overflow: hidden;
  display: block;
}
.faq-page ul li {
  background-color: #f5f5f5;
  border-radius: 25px;
  padding: 50px 35px;
  margin-bottom: 35px;
}
.faq-page ul li:last-child {
  margin-bottom: 0;
}
.faq-page ul li.active .text {
  padding-top: 55px;
  max-height: 300px;
}
.faq-page ul li .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}
.faq-page ul li .title h4 {
  font-size: 30px;
  font-weight: 600;
  width: -webkit-calc(100% - 55px);
  width: -moz-calc(100% - 55px);
  width: calc(100% - 55px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.faq-page ul li .title h4 em {
  font-size: 36px;
  color: var(--color);
  margin-right: 15px;
}
.faq-page ul li .title i {
  font-size: 46px;
  font-weight: 600;
  line-height: 0.8;
}
.faq-page ul li .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 0;
  max-height: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.faq-page ul li .text span {
  font-size: 36px;
  color: var(--color);
  margin-right: 25px;
  font-weight: 600;
  line-height: 1.2;
}
.faq-page ul li .text p {
  font-size: 26px;
  line-height: 1.6;
  width: -webkit-calc(100% - 60px);
  width: -moz-calc(100% - 60px);
  width: calc(100% - 60px);
}
.client-cooperation-page .cooperation-2 {
  padding: 175px 0;
}
.client-cooperation-page .cooperation-3 ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 95px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 105px;
}
.client-cooperation-page .cooperation-3 ul li:last-child {
  margin-bottom: 0;
}
.client-cooperation-page .cooperation-3 ul li .left .img {
  background-color: #f5f5f5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px;
}
.client-cooperation-page .cooperation-3 ul li .right {
  width: 42%;
}
.client-cooperation-page .cooperation-3 ul li .right .list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.client-cooperation-page .cooperation-3 ul li .right .list:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.client-cooperation-page .cooperation-3 ul li .right .list h5 {
  text-decoration: underline;
}
.client-cooperation-page .cooperation-3 ul li .right .list .imgs img {
  margin-right: 35px;
}
.client-cooperation-page .cooperation-3 ul li .right .list .imgs img:last-child {
  margin-right: 0;
}
.client-cooperation-page .cooperation-4 {
  padding: 135px 0;
  overflow: hidden;
}
.client-cooperation-page .cooperation-4 ul li {
  position: relative;
}
.client-cooperation-page .cooperation-4 ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25px;
  width: 100%;
  height: 2px;
  background-color: var(--color);
}
.client-cooperation-page .cooperation-4 ul li .box {
  position: relative;
}
.client-cooperation-page .cooperation-4 ul li .box span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color);
  font-size: 20px;
  color: white;
  margin: 0 auto;
}
.client-cooperation-page .cooperation-4 ul li .box img {
  margin: 50px auto 35px;
}
.client-cooperation-page .cooperation-4 ul li .box h4 {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 1700px) {
  .inner-banner .container h2 {
    font-size: 60px;
  }
  .inner-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1450px) {
  .about-page .about-history .content .right ul li.active .text {
    padding: 30px 0 75px;
  }
  .about-page .about-honor .list.list-r,
  .about-page .about-honor .list.list-l {
    max-width: 50%;
  }
  .client-cooperation-page .cooperation-2,
  .client-cooperation-page .cooperation-4 {
    padding: 125px 0;
  }
}
@media screen and (max-width: 1250px) {
  .inner-banner {
    margin-top: 40px;
  }
  .inner-banner .container h2,
  .inner-title {
    font-size: 40px;
  }
  .about-page .about-history .content .right {
    max-height: 900px;
  }
  .about-page .about-history .content .right ul li .text .list {
    padding-bottom: 15px;
  }
  .about-page .about-2 .center ul {
    margin-right: -20px;
  }
}
@media screen and (max-width: 1000px) {
  .client-cooperation-page .cooperation-3 ul li .right .list .imgs img {
    margin-right: 10px;
}
  .inner-banner .container h2,
  .inner-title {
    font-size: 30px;
  }
  .about-page .about-1 .bottom{
    height: 380px;
  }
  .about-page .about-honor .list img {
    max-width: 70%;
  }
  .about-page .about-2 .top .right {
    width: 100%;
    margin-top: 60px;
  }
  .about-page .about-history .content .right {
    max-height: unset;
    height: auto;
    width: 100%;
    padding-left: 0;
    margin-top: 60px;
  }
  .about-page .about-history .content .left {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
  .about-page .about-history {
    padding: 80px 0;
  }
  .about-page .about-1 .bottom .img3 .play img {
    max-width: 55px;
  }
  .inner-page {
    padding: 85px 0;
  }
  .about-page .about-honor {
    padding: 85px 0;
  }
  .about-page .about-2 .img {
    width: 100%;
    margin-left: 0;
  }
  .honor-page ul li {
    width: 50%;
  }
  .factory-page ul li {
    width: 50%;
  }
  .faq-page ul li .title h4 {
    font-size: 24px;
  }
  .faq-page ul li .text p {
    font-size: 18px;
  }
  .faq-page ul li .title h4 em,
  .faq-page ul li .text span {
    font-size: 26px;
  }
  .faq-page ul li.active .text {
    padding-top: 25px;
  }
  .client-cooperation-page .cooperation-3 ul li .left .img {
    padding: 20px;
    max-width: 200px;
  }
  .client-cooperation-page .cooperation-3 ul li {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .client-cooperation-page .cooperation-3 ul li .right {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner .container h2,
  .inner-title {
    font-size: 24px;
  }
  .about-page .about-1 .text,
  .about-page .about-1 ul {
    padding: 0;
  }
  .about-page .about-2 .center ul {
    margin-right: -9px;
  }
  .about-page .about-honor .list img {
    max-width: 60%;
  }
  .about-page .about-3 {
    padding: 90px 35px 0;
  }
  .inner-banner .container h2::before {
    display: none;
  }
  .inner-banner .container h2 {
    margin-bottom: 15px;
  }
  .client-cooperation-page .cooperation-1 .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .client-cooperation-page .cooperation-1 .img {
    width: 100%;
  }
  .client-cooperation-page .cooperation-4 ul li .box h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .about-page .about-1 .bottom{
    height: auto;
  }
  .about-page .about-1 .bottom .img2 .play img{
    max-width: 60px;
  }
  .about-page .about-1 ul li {
    margin-right: 0;
  }
  .about-page .about-1 ul li span {
    font-size: 14px;
  }
  .about-page .about-1 .bottom .img1,
  .about-page .about-1 .bottom .img3 {
    width: 100%;
  }
  .about-page .about-1 .bottom .img2 {
    width: 100%;
    margin: 30px 0;
  }
  .about-page .about-1 .bottom .img2{
    padding-left: 0;
  }
  .about-page .about-2 .top .right span::after {
    width: 35px;
  }
  .about-page .about-honor {
    display: none;
  }
  .honor-page ul li {
    width: 100%;
  }
  .factory-page ul li {
    width: 100%;
  }
  .faq-page ul li .title h4 em,
  .faq-page ul li .text span {
    display: none;
  }
  .faq-page ul li .title h4 {
    font-size: 18px;
  }
  .faq-page ul li .text p {
    width: 100%;
  }
}
.news-page .top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 35px;
}
.news-page .top ul li {
  font-size: 20px;
  font-weight: 500;
  margin-right: 45px;
  opacity: 0.6;
}
.news-page .top ul li.active {
  opacity: 1;
}
.news-page .top ul li:last-child {
  margin-right: 0;
}
.news-page .bottom ul {
  margin: -75px -20px;
}
.news-page .bottom ul li {
  width: 33.33333333333%;
  padding: 75px 20px;
}
.news-page .bottom ul li a.more2 {
  background-color: #999;
}
.news-page .bottom ul li a.more2:hover {
  background-color: var(--color);
}
.news-page .bottom ul li a.more2:hover span {
  color: white;
}
.newdet-page .Auxil-through {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 70px;
}
.recommended-products ul {
  margin: -5px;
}
.recommended-products ul li {
  width: 50%;
  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;
  padding: 5px;
}
.recommended-products ul li:first-child {
  width: 100%;
}
.recommended-products ul li:first-child .box {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.recommended-products ul li .box {
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 145px 100px 115px;
}
.recommended-products ul li .box .btn{
  opacity: 0;
  transition: all 0.5s;
}
.recommended-products ul li .box:hover .btn{
  opacity: 1;
}
.recommended-products ul li:nth-child(n+2) .box{
  flex-direction: column;
}
.recommended-products ul li:nth-child(n+2) .box .left,.recommended-products ul li:nth-child(n+2) .box .right{
  width: 100%;
}
@media screen and (max-width: 1450px) {
  .recommended-products ul li .box {
    padding: 70px;
  }
  .recommended-products ul li {
    width: 100%;
  }
  .recommended-products ul li .box .left {
    width: 100%;
    margin-bottom: 60px;
  }
  .recommended-products ul li .box .right {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .news-page .bottom ul {
    margin: -25px -20px;
  }
  .news-page .bottom ul li {
    width: 50%;
    padding: 25px 20px;
  }
  .recommended-products ul li .box .right img {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .recommended-products ul li .box {
    padding:60px 30px;
  }
  .recommended-products ul li .box .left {
     margin-bottom: 15px;
  }
  .recommended-products ul li:first-child .box .btn img{
    max-width: 45px;
  }
}
@media screen and (max-width: 500px) {
  .news-page .bottom ul li {
    width: 100%;
  }
}
.manufacturing-page .manufacturing-1 .bottom ul {
  margin: -60px -90px;
}
.manufacturing-page .manufacturing-1 .bottom ul li {
  padding: 60px 90px;
  width: 25%;
  position: relative;
}
.manufacturing-page .manufacturing-1 .bottom ul li:nth-child(4) .jt,
.manufacturing-page .manufacturing-1 .bottom ul li:nth-child(8) .jt {
  display: none;
}
.manufacturing-page .manufacturing-1 .bottom ul li .jt {
  position: absolute;
  top: 165px;
  right: 0;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.manufacturing-page .manufacturing-1 .bottom ul li .box .img {
  background-color: var(--color);
  border-radius: 35px;
  width: 100%;
}
.manufacturing-page .manufacturing-1 .bottom ul li .box span {
  font-size: 18px;
  background-color: #e1e1e1;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color);
  font-weight: 700;
  margin: auto;
}
.manufacturing-page .manufacturing-2 {
  padding: 200px 0;
}
.manufacturing-page .manufacturing-2 ul {
  margin: 0 -70px;
}
.manufacturing-page .manufacturing-2 ul li {
  padding: 0 70px;
  position: relative;
}
.manufacturing-page .manufacturing-2 ul li:nth-child(2)::before,
.manufacturing-page .manufacturing-2 ul li:nth-child(3)::before {
  content: '';
  width: 1px;
  height: 150px;
  background-color: rgba(27, 33, 133, 0.2);
  position: absolute;
  left: 0;
  bottom: -25px;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
.manufacturing-page .manufacturing-2 ul li:nth-child(3)::after {
  content: '';
  width: 1px;
  height: 150px;
  background-color: rgba(27, 33, 133, 0.2);
  position: absolute;
  right: 0;
  bottom: -25px;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
.manufacturing-page .manufacturing-3 .bottom .img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
.quality-page .quality-1 .left {
  background-color: #1b2185;
  padding: 135px 45px 0;
}
.quality-page .quality-1 .left .btn span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #767ab6;
  border-radius: 50%;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.quality-page .quality-1 .left .btn span i {
  font-size: 20px;
}
.quality-page .quality-1 .left .btn span:hover {
  color: var(--color);
  background-color: white;
}
.quality-page .quality-1 .left .bot .line {
  width: 30%;
  height: 3px;
}
.quality-page .quality-1 .right ul li {
  height: 660px;
}
.quality-page .quality-1 .right ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.r-d-page .r-d-1 ul li {
  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;
  padding-bottom: 85px;
  margin-bottom: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.r-d-page .r-d-1 ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1700px) {
  .manufacturing-page .manufacturing-2 {
    padding: 120px 0;
  }
  .manufacturing-page .manufacturing-2 ul {
    margin: 0 -50px;
  }
  .manufacturing-page .manufacturing-2 ul li {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1450px) {
  .manufacturing-page .manufacturing-2 ul {
    margin: 0 -35px;
  }
  .manufacturing-page .manufacturing-2 ul li {
    padding: 0 35px;
  }
  .manufacturing-page .manufacturing-1 .bottom ul {
    margin: -60px;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li {
    padding: 60px;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li .jt {
    top: 145px;
  }
  .quality-page .quality-1 .right ul li {
    height: 600px;
  }
}
@media screen and (max-width: 1250px) {
  .manufacturing-page .manufacturing-1 .bottom ul li {
    width: 33.33333333%;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li:nth-child(4) .jt {
    display: block;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li:nth-child(6) .jt,
  .manufacturing-page .manufacturing-1 .bottom ul li:nth-child(3) .jt {
    display: none;
  }
  .manufacturing-page .manufacturing-2 ul li {
    padding: 0 20px;
  }
  .manufacturing-page .manufacturing-2 ul {
    margin: 0 -20px;
  }
  .quality-page .quality-1 .left {
    padding: 85px 45px;
  }
  .quality-page .quality-1 .right ul li {
    height: 450px;
  }
}
@media screen and (max-width: 1000px) {
  .manufacturing-page .manufacturing-1 .top p,
  .manufacturing-page .manufacturing-3 .top p {
    width: 100%;
    margin-top: 30px;
  }
  .manufacturing-page .manufacturing-1 .bottom ul {
    margin: -30px;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li {
    padding: 30px;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li .jt {
    top: 110px;
    max-width: 30px;
  }
  .manufacturing-page .manufacturing-2 .top .left {
    margin-bottom: 30px;
  }
  .manufacturing-page .manufacturing-2 .top .left p {
    margin-top: 30px;
  }
  .manufacturing-page .manufacturing-2 .top .left p br {
    display: none;
  }
  .manufacturing-page .manufacturing-2 ul li {
    padding: 0 20px;
    width: 50%;
    margin: 15px 0;
  }
  .manufacturing-page .manufacturing-2 ul {
    margin: 0;
  }
  .manufacturing-page .manufacturing-2 ul li:nth-child(2)::before,
  .manufacturing-page .manufacturing-2 ul li:nth-child(3)::before,
  .manufacturing-page .manufacturing-2 ul li:nth-child(3)::after {
    display: none;
  }
  .quality-page .quality-1 .top p {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .manufacturing-page .manufacturing-1 .bottom ul li {
    width: 50%;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li:nth-child(2n) .jt {
    display: none;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li:nth-child(3) .jt {
    display: block;
  }
  .manufacturing-page .manufacturing-2 {
    padding: 80px 0;
  }
  .quality-page .quality-1 .bottom .left {
    width: 100%;
  }
  .quality-page .quality-1 .bottom .right {
    width: 100%;
  }
  .quality-page .quality-1 .right ul li {
    height: auto;
  }
  .quality-page .quality-2 .left {
    width: 100%;
  }
  .quality-page .quality-2 .right {
    width: 100%;
    margin-top: 30px;
  }
  .r-d-page .r-d-1 ul li .left {
    width: 100%;
  }
  .r-d-page .r-d-1 ul li .left h2 br {
    display: none;
  }
  .r-d-page .r-d-1 ul li .right {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .manufacturing-page .manufacturing-1 .bottom ul li .box .img {
    border-radius: 10px;
  }
  .manufacturing-page .manufacturing-1 .bottom ul li .jt {
    top: 80px;
  }
}
.industries-page .industries-1 .img {
  margin-right: -80px;
}
.industries-page .industries-2 {
  margin-top: 105px;
}
.industries-page .industries-2 ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.industries-page .industries-2 ul li .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  -webkit-filter: brightness(0.6);
  filter: brightness(0.6);
  height: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.industries-page .industries-2 ul li.active {
  margin-bottom: 100px;
}
.industries-page .industries-2 ul li.active .bg {
  height: 100%;
}
.industries-page .industries-2 ul li.active .box .img {
  right: 35px;
}
.industries-page .industries-2 ul li.active .box .title {
  padding-left: 55px;
  padding-right: 45px;
  color: white;
}
.industries-page .industries-2 ul li.active .box .title .icon {
  display: none;
}
.industries-page .industries-2 ul li.active .box .text {
  padding-top: 45px;
  max-height: 450px;
  padding: 45px 100px 0 60px;
  opacity: 1;
}
.industries-page .industries-2 ul li .box {
  position: relative;
  z-index: 5;
  padding: 75px 0 105px;
  overflow: hidden;
}
.industries-page .industries-2 ul li .box .img {
  right: -200%;
  bottom: 35px;
  position: absolute;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.industries-page .industries-2 ul li .box .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 12%;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.industries-page .industries-2 ul li .box .title .icon {
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  filter: brightness(0.8);
}
.industries-page .industries-2 ul li .box .title h4 {
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}
.industries-page .industries-2 ul li .box .title i {
  font-size: 70px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.industries-page .industries-2 ul li .box .text {
  padding: 0;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.industries-det-page .img {
  padding: 65px 0;
  position: relative;
}
.industries-det-page .img::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 63%;
  height: 100%;
  background: #f6f6f6;
}
.provided-solutions .bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}
.provided-solutions .bottom ul li {
  width: 25%;
  padding: 5px;
}
.provided-solutions .bottom ul li .box {
  padding: 60px 40px 0;
  height: 345px;
  background-color: #f6f6f6;
  border-radius: 20px;
  text-align: center;
}
.provided-solutions .bottom ul li .box img {
  margin: auto;
}
.related-products ul li .box {
  padding: 60px 35px;
  height: 580px;
  background-color: #f6f6f6;
}
.related-products ul li .box h4 {
  font-size: 20px;
  font-weight: 600;
}
.related-products ul li .box a.img-box {
  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;
  height: 400px;
}
.related-products ul li .box a.img-box img {
  width: fit-content;
  max-width: 70%;
  height: fit-content;
}
.related-products ul li .box a.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.related-products ul li .box a.btn:hover i {
  background-color: var(--color);
}
.related-products ul li .box a.btn span {
  font-size: 20px;
  font-weight: 600;
  margin-right: 15px;
}
.related-products ul li .box a.btn i {
  font-size: 20px;
  background-color: #cccccc;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1700px) {
  .industries-page .industries-2 ul li .box .title h4,
  .industries-page .industries-2 ul li .box .title i {
    font-size: 50px;
  }
}
@media screen and (max-width: 1250px) {
  .industries-page .industries-2 ul li .box {
    padding: 75px 0;
  }
  .industries-page .industries-2 ul li .box .title h4,
  .industries-page .industries-2 ul li .box .title i {
    font-size: 40px;
  }
  .industries-page .industries-2 ul li .box .title .icon {
    max-width: 45px;
  }
  .industries-det-page .industries-det-1 .text {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .industries-page .industries-2 ul li .box {
    padding: 45px 0;
  }
  .industries-page .industries-2 ul li .box .title h4,
  .industries-page .industries-2 ul li .box .title i {
    font-size: 30px;
  }
  .industries-page .industries-2 ul li .box .title .icon {
    left: 15px;
  }
  .industries-page .industries-1 .text {
    width: 100%;
    margin-bottom: 50px;
  }
  .industries-page .industries-1 .img {
    width: 100%;
    margin-right: 0;
  }
  .provided-solutions .top .text {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .industries-page .industries-2 ul li.active .box .text {
    padding: 30px 30px 0;
    max-height: 800px;
  }
  .industries-page .industries-2 ul li.active .box .title {
    padding-left: 30px;
    padding-right: 30px;
  }
  .industries-page .industries-2 ul li .box .title h4,
  .industries-page .industries-2 ul li .box .title i {
    font-size: 24px;
  }
  .industries-page .industries-2 ul li.active {
    margin-bottom: 35px;
  }
  .provided-solutions .bottom ul li .box {
    padding: 30px 20px;
    height: auto;
  }
  .provided-solutions .bottom ul li .box p {
    line-height: 1.6;
  }
  .industries-page .industries-2 ul li.active .box .img {
    max-width: 50px;
    bottom: 50px;
  }
}
@media (max-width: 500px) {
    .industries-page .industries-2 ul li.active .box .img {
    bottom: 30px;
  }
  .industries-page .industries-2 ul li .box .title .icon {
    display: none;
  }
  .industries-page .industries-2 ul li .box .title {
    padding-left: 0;
  }
  .industries-page .industries-2 ul li .box .title h4 {
    width: -webkit-calc(100% - 50px);
    width: -moz-calc(100% - 50px);
    width: calc(100% - 50px);
  }
  .industries-page .industries-2 ul li .box {
    padding: 25px 0;
  }
  .industries-page .industries-2 ul li .bg {
    border-radius: 10px;
  }
}

.slick-slider:not(.slick-vertical) .slick-track .slick-slide>div{
  height: auto;
}
.contact-page .contact-1 .top {
  padding: 0 6%;
}

.contact-page .contact-1 .top h2 {
  line-height: 1;
}
.contact-page .contact-1 .top .text .list h5 {
  width: 145px;
}
.contact-page .contact-1 .top .text .list div{
  width: calc(100% - 145px);
}
.contact-page .contact-1 .top .text .list p {
  border-bottom: 2px solid #000;
  line-height: 1;
  width: fit-content;
}

.contact-page .contact-1 form {
  width: 100%;
  padding: 0 50px;
}
.contact-page .contact-1 form ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.contact-page .contact-1 form ul li {
  width: 33.33333%;
  padding: 0 20px;
}
.contact-page .contact-1 form ul li label{
    font-size: 20px;
    margin-bottom: 60px;
    display: block;
    font-weight: 600;
}
.contact-page .contact-1 form ul li input[type='text'] {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
}
.contact-page .contact-1 form ul li:nth-last-child(2){
  margin-top: 95px;
}
.contact-page .contact-1 form ul li textarea {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  height: 130px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
}
.contact-page .contact-1 form ul li input::-webkit-input-placeholder,
.contact-page .contact-1 form ul li textarea::-webkit-input-placeholder {
  color: #000;
}
.contact-page .contact-1 form ul li:nth-child(4),
.contact-page .contact-1 form ul li:nth-child(5) {
  width: 100%;
}
.contact-page .contact-1 form ul li .submit {
  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;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 75px;
  color: black;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.contact-page .contact-1 form ul li .submit:hover {
  color: var(--color);
}
.contact-page .contact-1 form ul li .submit input[type='submit'] {
  background-color: transparent;
  border: none;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-page .contact-1 form ul li .submit i {
  font-size: 30px;
  margin-left: 15px;
}
@media screen and (max-width: 1450px) {
  .contact-page .contact-1 .top .text {
    width: 60%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page{
    padding-left: 0;
    padding-right: 0;
  }
  .contact-page .contact-1 > div:last-child,
  .contact-page .contact-1{
    padding: 0;
  }
  .contact-page .contact-1 form ul li label {
    margin-bottom: 10px;
  }
  .contact-page .contact-1 .top .text {
    width: 100%;
    margin-top: 60px;
  }
  .contact-page .contact-1 form ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .contact-page .contact-1 .top {
    padding: 0;
  }
  .contact-page .contact-1 form {
    padding: 0;
  }
  .contact-page .contact-1 form ul li textarea,
  .contact-page .contact-1 form ul li .submit {
    margin-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .contact-page .contact-1 .top .text .list h5 {
    width: 55px;
  }
}
.product-page {
  padding-bottom: 180px;
}
.product-page .product-1 {
  position: relative;
  padding: 180px 0 0;
}
.product-page .product-1 .pro_img {
  position: absolute;
  left: 50%;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.product-page .product-1 .content {
  padding: 0 8%;
}
.product-page .product-1 .pro_list {
  padding: 0 30px;
}
.product-page .product-1 .pro_list ul {
  margin: -10px;
  width: 100%;
}
.product-page .product-1 .pro_list ul li {
  width: 25%;
  padding: 10px;
}
.product-page .product-1 .pro_list ul li .img-box{
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background-color: #dadbe6;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.product-page .product-2 {
  padding: 170px 0 140px;
}
.product-page .product-2 .left{
  overflow: hidden;
}
.product-page .product-2 .left .text {
  padding-bottom: 80px;
}
.product-page .product-2 .left .img {
  height: auto;
}
.product-page .product-2 .right ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px 0 65px;
  display: none;
}
.product-page .product-2 .right ul li.cur{
  display: block
}
.product-page .product-2 .right ul li:last-child {
  padding-bottom: 0;
}
.product-page .product-2 .right ul li.active .text {
  padding-top: 30px;
  max-height: 450px;
   overflow-y: auto;
}
.product-page .product-2 .right ul li .title {
  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;
}
.product-page .product-2 .right ul li .title h4 {
  font-size: 40px;
  font-weight: 600;
  width: -webkit-calc(100% - 50px);
  width: -moz-calc(100% - 50px);
  width: calc(100% - 50px);
  text-transform: uppercase;
  line-height: 1;
}
.product-page .product-2 .right ul li .title i {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin-top: -10px;
  cursor: pointer;
}
.product-page .product-2 .right ul li .text {
  font-size: 18px;
  opacity: 0.6;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1700px) {
  .product-page .product-2 .right ul li .title h4 {
    font-size: 30px;
  }
  .product-page .product-1 .pro_img {
    max-width: 360px;
  }
}
@media screen and (max-width: 1250px) {
  .product-page .product-1 {
    padding: 140px 0 0;
  }
  .product-page .product-1 .pro_img {
    max-width: 280px;
    top: 5%;
  }
  .product-page .product-2 .right ul li .text {
    font-size: 14px;
  }
  .product-page .product-2 .right ul li {
    padding: 25px 0 35px;
  }
}
@media screen and (max-width: 1000px) {
  .product-page {
    padding: 120px 0;
  }
  .product-page .product-1 .pro_list ul li {
    width: 33.333333%;
  }
  .product-page .product-2 {
    padding: 80px 0;
  }
  .product-page .product-2 .left {
    width: 100%;
    margin-bottom: 60px;
  }
  .product-page .product-2 .left .img {
    height: auto;
  }
  .product-page .product-2 .left .text {
    width: 100%;
  }
  .product-page .product-2 .right {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .product-page .product-1 .pro_list ul li {
    width: 50%;
  }
  .product-page .product-2 .right ul li .title h4 {
    font-size: 25px;
  }
  .product-page .product-1 .pro_img {
    max-width: 80%;
    top: 0;
    position: relative;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
    margin: 0 auto 60px;
  }
  .product-page .product-1 {
    padding: 0;
  }
  .product-page .product-1 .content {
    padding: 0;
  }
  .product-page {
    padding: 80px 0;
  }
}
@media (max-width: 500px) {
  .product-page .product-1 .pro_list ul li {
    width: 100%;
  }
  .product-page .product-2 .right ul li .title i {
    font-size: 40px;
    margin-top: -6px;
  }
  .product-page .product-2 .right ul li .title h4 {
    font-size: 20px;
    line-height: unset;
  }
}


