@font-face {
  font-family: "Lexend Deca";
  src: url("../fonts/LexendDeca-Bold.woff2") format("woff2"), url("../fonts/LexendDeca-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend Deca";
  src: url("../fonts/LexendDeca-Medium.woff2") format("woff2"), url("../fonts/LexendDeca-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend Deca";
  src: url("../fonts/LexendDeca-Regular.woff2") format("woff2"), url("../fonts/LexendDeca-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend Deca";
  src: url("../fonts/LexendDeca-Light.woff2") format("woff2"), url("../fonts/LexendDeca-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.flex-box{
    display: flex;
}
.al-center{
    align-items: center;
}
.al-end{
    align-items: flex-end;
}
.al-start{
    align-items: flex-start;
}
.jc-center{
    justify-content: center;
}
.jc-start{
    justify-content: flex-start;
}
.jc-end{
    justify-content: flex-end;
}
.jc-space-between{
    justify-content: space-between;
}
.flex-wrap{
    flex-wrap: wrap;
}
.t-ani {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#Pop_UpsBtn {
  display: none !important;
}
#ewm canvas,
#ewm img {
  width: 100%;
  display: block;
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from1 {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from1 h4 {
  font-size: calc(0.2085vw + 14px);
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from1 form {
  margin-top: 40px;
}
#pups_from1 i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from1 i.close::after,
#pups_from1 i.close::before {
  content: "";
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from1 i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from1 i.close:hover {
  background: #041e32;
}
#pups_from1 i.close:hover::before,
#pups_from1 i.close:hover::after {
  background: white;
}
#pups_from1 ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from1 ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from1 ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from1 ul li input,
#pups_from1 ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: calc(0.1055vw + 14px);
}
#pups_from1 ul li input:focus,
#pups_from1 ul li textarea:focus {
  border-color: #041e32;
}
#pups_from1 ul li textarea {
  height: 80px;
}
#pups_from1 ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: #041e32;
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from1 ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from1 ul li:last-child {
  margin-bottom: 0;
}
.right_nav_list {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 10;
}
.right_nav_list ul li {
  margin-top: 2px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: #fff;
  background: #041e32;
  border: 1px solid #fff;
  border-radius: 10px;
}
.right_nav_list ul li .iImg {
  width: 24px;
  height: 32px;
}
.right_nav_list ul li .text {
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: calc(0.525vw + 14px);
}
.right_nav_list ul li .cont {
  position: absolute;
  left: -150px;
  top: 0;
  width: 150px;
  min-height: 100%;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  overflow: hidden;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.right_nav_list ul li .cont #ewm {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #ccc;
}
.right_nav_list ul li:hover {
  background-color: #000;
}
.right_nav_list ul li:hover .cont {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
@media (max-width: 500px) {
  .right_nav_list {
    right: 5px;
    bottom: 150px;
  }
  .right_nav_list ul li {
    width: 38px;
    height: 38px;
    margin-top: 5px;
  }
  .right_nav_list ul li .more_cont {
    font-size: calc(0.1055vw + 14px);
  }
  .right_nav_list ul li .iImg {
    width: 16px;
    height: 24px;
  }
}
iframe {
  display: block;
  width: 100%;
}
#Pop_UpsBtn {
  z-index: 20;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: #041e32;
  color: white;
  right: 2%;
  bottom: 40%;
  font-size: calc(0.525vw + 14px);
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#Pop_UpsBtn:hover {
  background: #889aff;
}
*::-webkit-scrollbar-thumb {
  background-color: #222;
}
b,
strong {
  font-weight: bold;
}
html,
body {
  position: relative;
  max-width: 1920px;
  margin: auto;
  --color:#041e32;
}
body {
  overflow-x: hidden;
  position: relative;
  font-family: "Lexend Deca";
  font-weight: 400;
  margin: 0 auto;
  color: #C3D3E2;
  font-size: calc(0.1055vw + 14px);
  background-color: #041e32;
}
#ewm img,
#ewm canvas {
  display: block;
  width: 100%;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100%;
  height: auto;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
}
table tbody td,
table tbody th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tbody tr {
  width: auto !important;
  height: auto !important;
}
table tbody tr:nth-child(even) {
  background: #eee;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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;
  -o-object-fit: contain;
  object-fit: contain;
  width: 220px;
}
#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%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-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: calc(0.315vw + 14px);
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content .h3 i {
  font-size: calc(0.1055vw + 14px);
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
  filter: brightness(0);
}
#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%);
  -o-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;
  border: 1px solid #fff;
}
#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: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.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%) rotate(45deg);
  -o-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%) rotate(-45deg);
  -o-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;
}
.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;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 18;
}
#header::after{
    -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;

  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top:0;
  left: 0;
  background: url(../images/hhh66.jpg) no-repeat center; 
  background-size: cover;
}
#header.active::after{
   width: 100%;
}
#header a {
  display: block;
}
#header img {
  display: block;
  width: 100%;
}
#header > .nav {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background-color: transparent;
}
#header > .nav .f-top {
  background-color: #c10015;
  color: #fff;
  padding: 12px 0;
}
#header > .nav .f-top .container {
  display: flex;
}
#header > .nav .f-top .share {
  margin-left: auto;
}
#header > .nav .f-top .share li {
  margin-left: 20px;
}
#header > .nav .f-top .share li a {
  font-size: calc(0.1055vw + 14px);
  font-weight: 400;
}
#header > .nav > .menu {
  padding: 32px 0;
}
#header > .nav > .menu .menu-box {
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: rgba(8, 16, 36, 0.26);
  padding: 11px 12px;
  border-radius: 34px;
  position: relative;
  border: 1px solid #00c0ff;
}
#header > .nav > .menu .menu-box .left {
  position: relative;
}
#header > .nav > .menu .menu-box .left .logo {
  position: relative;
  display: block;
  z-index: 1;
}
#header > .nav > .menu .menu-box .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#header > .nav > .menu .menu-box .menu_c {
  text-align: center;
  z-index: 2;
  display: flex;
  align-items: center;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container {
  z-index: 2;
  width: 100%;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu {
  width: 100%;
  padding: 0;
  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;
  text-align: left;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
  display: inline-block;
  position: relative;
  margin-left: 50px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.menu-item-has-children > a::after {
  margin-left: 0;
  content: "\e768";
  position: relative;
  font-family: "iconfont" !important;
  top: 3px;
  left: 0;
  font-size: calc(0.315vw + 14px);
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:first-child {
  margin-left: 0;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > a::before,
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.active > a::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > .sub-menu {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 4px 0 4px 0;
  text-align: left;
  line-height: 1.2;
  position: relative;
  font-weight: bold;
  font-size: calc(0.2085vw + 14px);
  color: #fff;
  text-transform: capitalize;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a i {
  font-size: 12px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  bottom: 2px;
  left: -14px;
  top: 50%;
  margin-top: -1px;
  background-color: #fff;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  width: auto;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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;
  -o-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;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-radius: 2px;
  background-color: #061726;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item {
  color: #fff;
  position: relative;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item a {
  white-space: nowrap;
  font-size: calc(0.1055vw + 14px);
  padding: 8px 12px;
  text-align: left;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(189, 189, 189, 0);
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover > a {
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  color: #fff;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item .sub-menu {
  left: 100%;
  top: 0;
  min-width: 120px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover .sub-menu {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
#header > .nav > .menu .menu-box .search {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: calc(0.2085vw + 14px);
  color: #333333;
}
#header > .nav > .menu .menu-box .right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
#header > .nav > .menu .menu-box .right .hh3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 46px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 23px;
  font-weight: 400;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
  transition: 1.5s;
  position: relative;
  overflow: hidden;
}
#header > .nav > .menu .menu-box .right .hh3 span {
  position: relative;
  z-index: 2;
}
#header > .nav > .menu .menu-box .right .hh3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2e36ff 0%, #00c0ff 100%);
  clip-path: inset(100% 0% 0% 0%);
  transition: 0.5s ease-in-out;
  z-index: 0;
}
#header > .nav > .menu .menu-box .right .hh3:hover::after {
  clip-path: inset(0% 0% 0% 0%);
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC i {
  margin-left: 6px;
}
#header > .nav > .menu .menu-box .right .lang_cont .lang {
  padding-top: 5px;
}
#header > .nav > .menu .menu-box .right .open_btn {
  font-size: calc(0.1055vw + 14px);
  font-weight: 400;
  cursor: pointer;
  text-align: center;
  color: #fff;
  margin-left: 26px;
  background-color: #c10015;
  min-width: 150px;
  padding: 10px;
}
#header > .nav > .menu .menu-box .right .open_btn p {
  position: relative;
}
#header > .nav > .menu .menu-box .right .open_btn .img {
  width: 19px;
  height: 19px;
  margin-left: 10px;
}
#header > .nav > .menu .menu-box .right .open_btn:hover {
  background-color: #000;
}
#header > .nav .lang_cont {
  display: inline-block;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
#header > .nav .lang_cont:hover .lang {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
#header > .nav .lang_cont .lang {
  overflow-y: auto;
  max-height: 400px;
  width: 150px;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-bottom: 3px solid #333333;
}
#header > .nav .lang_cont .lang li a {
  display: block;
  background: #f7f7f7;
  padding: 5px 10px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: left;
}
#header > .nav .lang_cont .lang li a:hover {
  background-color: #000;
  color: #fff;
}
#header > .nav .lang_cont .lang li a:hover em {
  color: #fff;
}
#header > .nav .lang_cont .lang li a img {
  display: inline;
  width: 20%;
  margin-top: 4px;
}
#header > .nav .lang_cont .lang li a em {
  display: inline;
  font-size: calc(0.1055vw + 14px);
  margin-left: 10px;
  color: #000;
}
@keyframes ks2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
.colorF {
  color: #fff;
}
.flex {
  display: flex;
}
.flexWrap {
  display: flex;
  flex-wrap: wrap;
}
.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexAC {
  display: flex;
  align-items: center;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.text-L {
  text-align: left;
}
.text-C {
  text-align: center;
}
.text-R {
  text-align: right;
}
.t_1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.italic {
  font-style: italic;
}
.container {
  width: 1525px;
  padding: 0 15px;
}
#banner {
  position: relative;
}
#banner .swiper-main {
  position: relative;
}
#banner .swiper-main .left {
  max-width: 870px;
  position: absolute;
  top: 50%;
  left: 11%;
  width: 100%;
  transform: translateY(-50%);
}
#banner .swiper-main .left .bb1 {
  line-height: 1.5;
  color: #ffffff;
  background: linear-gradient(0deg, #b3c8e0 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#banner .swiper-main .left .bb2 {
  font-weight: 400;
  color: #ffffff;
  line-height: 25px;
  margin-top: 30px;
  margin-bottom: 116px;
}
#banner .swiper-main .left .banner-btn {
  display: flex;
  align-items: center;
}
#banner .swiper-main .left .bb3-m {
  position: relative;
}
#banner .swiper-main .left .bb3-m:hover .bb31 span {
  left: calc(100% - -1*50px);
}
#banner .swiper-main .left .bb31 {
  position: relative;
  z-index: 2;
  transform-origin: center;
  clip-path: inset(0px 0px 0px 0px);
}
#banner .swiper-main .left .bb3 {
  width: 193px;
  height: 50px;
  background: linear-gradient(90deg, #00c0ff 1%, #2e36ff 100%);
  border-radius: 25px;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 21px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#banner .swiper-main .left .bb3 span {
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
}
#banner .swiper-main .left .bb3 div {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#banner .swiper-main .left .bb32 {
  display: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-left: 21px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
#banner .swiper-main .left .bb4 {
  background: url(../images/play1.png) no-repeat center;
  background-size: cover;
  width: 194px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 23px;
  padding-right: 16px;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 19px;
}
.rs-button.style3 .rs-btn {
  /* padding: 10px 0; */
  --baseSize: 50px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
  /* border: 1px solid #fff; */
  padding: 10px 11px 10px 10px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00C0FF 1%, #2E36FF 100%);
}
.rs-button.style3 .rs-btn .rs-icon {
  background: #fff;
  height: 32px;
  width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s ease 0s, right 0.5s;
  position: relative;
  right: 0;
}
.rs-button.style3 .rs-btn .rs-icon svg {
  width: 16px;
  height: 16px;
}
.rs-button.style3 .rs-btn .rs-icon svg path {
  /* fill: pink; */
  transition: all 0.3s ease 0s;
}
.rs-button.style3 .rs-btn .rs-icon i {
  color: #fff;
  font-size: calc(0.1055vw + 14px);
  transition: all 0.3s ease 0s;
}
.rs-button.style3 .rs-btn .rs-btn-text {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.5s ease 0s, right 0.5s;
  padding: 0 20px;
  z-index: 9;
  font-size: calc(0.1055vw + 14px);
}
.rs-button.style3 .rs-btn.icon-sty-yes .rs-btn-text {
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
}
.rs-button.style3 .rs-btn.icon-sty-yes:hover .rs-btn-text {
  transform: translate3d(calc(-1 * var(--baseSize)), 0, 0) !important;
  transform-style: preserve-3d;
}
.rs-button.style3 .rs-btn:hover .rs-icon {
  right: calc(-100% - -1 * var(--baseSize));
}
.rs-button.style3 .rs-btn.btn-row-reverse.icon-sty-yes:hover .rs-btn-text {
  transform: translate3d(var(--baseSize), 0, 0) !important;
}
.rs-button.style3 .rs-btn.btn-row-reverse .rs-icon {
  right: unset;
  left: 0;
}
.rs-button.style3 .rs-btn.btn-row-reverse:hover .rs-icon {
  left: calc(-100% - -1 * var(--baseSize));
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes rain-line {
  0% {
    top: -20%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes rain-line {
  0% {
    top: -20%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes parent-morphine {
  0%,
  100% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  14% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  28% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}
@keyframes parent-morphine {
  0%,
  100% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  14% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  28% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}
@-webkit-keyframes morphine {
  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@keyframes morphine {
  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
#index-body {
  position: relative;
  z-index: 2;
}
#index-body .sy-all-btn2 {
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: relative;
}
#index-body .sy-all-btn2 img {
  position: relative;
  z-index: 1;
}
#index-body .sy-all-btn2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2e36ff 0%, #00c0ff 100%);
  border-radius: 50%;
  clip-path: inset(100% 0% 0% 0%);
  transition: 0.5s ease-in-out;
  z-index: 0;
}
#index-body .sy-all-btn2:hover::after {
  clip-path: inset(0% 0% 0% 0%);
}
#index-body .bb3-m {
  position: relative;
}
#index-body .bb3-m:hover .bb31 {
  clip-path: inset(0px 100% 0px 0px);
}
#index-body .bb31 {
  position: relative;
  z-index: 2;
  transform-origin: center;
  clip-path: inset(0px 0px 0px 0px);
}
#index-body .bb3 {
  width: 193px;
  height: 50px;
  background: linear-gradient(90deg, #00c0ff 1%, #2e36ff 100%);
  border-radius: 25px;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 21px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#index-body .bb3 div {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#index-body .bb32 {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-left: 21px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
#index-body .sy-all-tap {
  display: flex;
  align-items: center;
  font-weight: 300;
  color: #ffffff;
}
#index-body .sy-all-tap span {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}
#index-body .sy-all-h {
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  background: linear-gradient(0deg, #b3c8e0 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index-body .sy-1 .carousel-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
#index-body .sy-1 .container {
  position: relative;
}
#index-body .sy-1 .carousel-item {
  position: absolute;
  bottom: 1%;
  left: 0;
  
  transform: translateY(99%);
  width: 100%;
  background: #052742;
  border-radius: 34px;
  font-size: 40px;
  color: white;
  display: flex;
  /*overflow: hidden;*/
  align-items: center;
  justify-content: space-between;
  transform-origin: bottom center;
}
#index-body .sy-1 .carousel-item .sy1-img-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
#index-body .sy-1 .carousel-item .sy1-r-bg {
  position: absolute;
  right: 0;
  top: 0%;
  transform: translate(10%, -60%);
}
#index-body .sy-1 .carousel-item .sy1-r {
  max-width: 600px;
  position: relative;
}
#index-body .sy-1 .carousel-item .sy1-r .sy1-p {
  line-height: 1.2;
}
#index-body .sy-1 .carousel-item:first-of-type {
  transform: translateY(0%);
}
#index-body .sy-2 {
  position: relative;
}
#index-body .sy-2 .sy2-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  opacity: 0.7;
}
#index-body .sy-2 .container {
  display: flex;
  position: relative;
  z-index: 3;
}
#index-body .sy-2 .container .sy2-l {
  max-width: 820px;
}
#index-body .sy-2 .container .sy2-l .sy2-text {
  font-weight: 300;
  color: #f3faff;
  line-height: 30px;
}
#index-body .sy-2 .container .sy2-r {
  overflow: hidden;
}
#index-body .sy-2 .container .sy2-r img {
  border-radius: 20px;
}
#index-body .sy-3 {
  position: relative;
  z-index: 3;
}
#index-body .sy-3 .sy3-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(40%);
  opacity: 0.7;
}
#index-body .sy-3 .container .sy-all-tap {
  justify-content: center;
}
#index-body .sy-3 .container .sy-all-h {
  text-align: center;
}
#index-body .sy-3 .container .sy3-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 42px;
  position: relative;
  z-index: 2;
}
#index-body .sy-3 .container .sy3-c {
  background: rgba(8, 16, 36, 0.26);
  position: relative;
  border-radius: 30px;
  /*overflow: hidden;*/
}
#index-body .sy-3 .container .sy3-c > img {
  transition: all 0.5s;
}
#index-body .sy-3 .container .sy3-c .sy3-text1 {
  font-weight: 400;
  color: #ffffff;
}
#index-body .sy-3 .container .sy3-c .sy3-text2 {
  font-weight: 300;
  color: #c3d4e3;
  max-width: 360px;
}
#index-body .sy-3 .container .sy3-c .sy3-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: relative;
}
#index-body .sy-3 .container .sy3-c .sy3-btn img {
  position: relative;
  z-index: 1;
}
#index-body .sy-3 .container .sy3-c .sy3-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2e36ff 0%, #00c0ff 100%);
  border-radius: 50%;
  clip-path: inset(100% 0% 0% 0%);
  transition: 0.5s ease-in-out;
  z-index: 0;
}
#index-body .sy-3 .container .sy3-c .sy3-btn:hover::after {
  clip-path: inset(0% 0% 0% 0%);
}
#index-body .sy-3 .container .sy3-c:hover img {
  transform: rotateY(180deg);
}
#index-body .sy-4 {
  position: relative;
}
#index-body .sy-4 .sy4-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
#index-body .sy-4 .sy4-bg img {
  height: 100%;
}
#index-body .sy-4 .container .sy-all-tap {
  justify-content: center;
}
#index-body .sy-4 .container .sy4-p {
  font-weight: 400;
  color: #e5f4ff;
}
#index-body .sy-4 .container .sy4-btn {
  display: flex;
  justify-content: center;
}
#index-body .sy-5 .sy5-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#index-body .sy-5 .sy5-bottom {
  display: flex;
  justify-content: space-between;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c {
  height: 571px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c:last-of-type {
  margin-right: 0;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c > img {
  height: 571px;
  object-fit: cover;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c .sy5-b-c-t {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  clip-path: inset(100% 0 0 0);
  transform: translateY(-40px);
}
#index-body .sy-5 .sy5-bottom .sy5-b-c .sy5-b-c-t .sy5-p {
  padding: 8px 22px;
  background-color: rgba(34, 37, 44, 0.6);
  border-radius: 16px;
  font-weight: 300;
  color: #ffffff;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c .sy5-b-c-b {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  clip-path: inset(100% 0 0 0);
  transform: translateY(-40px);
}
#index-body .sy-5 .sy5-bottom .sy5-b-c .sy5-b-c-b .sy-all-btn2 {
  flex: 0 0 45px;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c .sy5-b-c-b .sy5-b-c-b-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: rgba(0, 9, 34, 0.41);
  border-radius: 10px;
  border: 1px solid #a3a3a3;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c .sy5-b-c-b .sy5-p1 {
  font-weight: 400;
  color: #ffffff;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c .sy5-b-c-b .sy5-p2 {
  font-weight: 400;
  color: #ffffff;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c:hover {
  width: 627px;
  flex: 0 0 627px;
}
#index-body .sy-5 .sy5-bottom .sy5-b-c:hover .sy5-b-c-t {
  transition: all 0.5s ease-in-out 0.6s;
  clip-path: inset(0 0 0 0);
  transform: translateY(0px);
}
#index-body .sy-5 .sy5-bottom .sy5-b-c:hover .sy5-b-c-b {
  transition: all 0.5s ease-in-out 0.6s;
  clip-path: inset(0 0 0 0);
  transform: translateY(0px);
}
#index-body .sy-6 {
  position: relative;
}
#index-body .sy-6 .sy6-bg {
  position: absolute;
  right: -147px;
  top: -172px;
}
#index-body .sy-6 .sy6-bg1 {
  position: absolute;
  left: 0;
  top: -200px;
  opacity: 0.7;
}
#index-body .sy-6 .container .sy-all-tap {
  justify-content: center;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c {
  background: rgba(8, 16, 36, 0.26);
  border-radius: 20px;
  max-width: 940px;
  margin: 0 auto;
  display: block;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 {
  display: flex;
  justify-content: space-between;
  align-self: center;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1-bg{

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-l {
  font-weight: 300;
  color: #ffffff;
  width: 94%;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r1{
  font-size: calc(0.315vw + 14px);
  color: #fff;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r {
  width: 12px;
  position: relative;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
  transform-origin: center;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 2px;
  background: #fff;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c2 {
  display: none;
  font-weight: 300;
  color: #ffffff;
  opacity: 0.8;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c.active .sy-6-m-c1-r::after {
  transform: rotate(90deg);
}
#index-body .sy-7 {
  position: relative;
}
#index-body .sy-7 .sy7-bg {
  position: absolute;
  right: 0;
  bottom: -600px;
  opacity: 0.7;
}
#index-body .sy-7 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#index-body .sy-7 .container .sy7-r {
  max-width: 600px;
}
#index-body .sy-7 .container .sy7-r .sy7-h {
  font-weight: 500;
  color: #c2d3e2;
  line-height: 1.2;
  background: linear-gradient(0deg, #b3c8e0 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index-body .sy-7 .container .sy7-r .f-input {
  width: 100%;
  height: 60px;
  background: rgba(8, 16, 36, 0.26);
  border-radius: 20px;
  border: none;
  padding-left: 23px;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #c2d3e2;
}
#index-body .sy-7 .container .sy7-r .f-input::placeholder {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #c2d3e2;
}
@keyframes ripple1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
}
@keyframes ripple2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
  }
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#footer {
  background: url(../images/f-banner.jpg) no-repeat center bottom;
  background-size: cover;
  position: relative;
  z-index: 2;
}
#footer #ewm2 {
  width: 100px;
  height: 100px;
  border: 6px solid white;
  border-radius: 10px;
}
#footer .f-head {
  display: grid;
  gap:calc(0.9385vw + 14px);
    grid-template-columns: 1028fr 461fr;
  /*justify-content: space-between;*/
  /*flex-wrap: wrap;*/
}
#footer .f-head .f-c {
  display: flex;
  align-items: center;
  justify-content: center;
  /*min-height: 152px;*/
  background: rgba(8, 16, 36, 0.26);
  border-radius: 20px;
  padding-top: calc(2.6555vw + 14px);
  padding-bottom: calc(2.6555vw + 14px);
}
#footer .f-head .f-c{
  /*margin-right: calc(2.4955vw + 14px);*/
}
#footer .f-head .f-c:last-child{
 margin-right: 0;
}
#footer .f-head .f-c .f-c-t {
  font-weight: 300;
  color: #ffffff;
}
#footer .f-head .f-c3 .f-c-t {
  max-width: 400px;
}
#footer .f-h {
  padding-top: 100px;
}
#footer .f-h .f-h1 {
  font-weight: bold;
  color: #ffffff;
}
#footer .f-h .f-h2 {
  font-weight: 400;
  color: #ffffff;
  line-height: 25px;
}
#footer .f-h .f-h-p {
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
}
#footer .f-h form {
  display: flex;
  height: 77px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#footer .f-h form input,
#footer .f-h form textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: normal;
}
#footer .f-h form .f-put1 {
  width: 192px;
  height: 66px;
  background: rgba(166, 168, 172, 0.15);
  border-radius: 10px;
  padding-left: 14px;
  font-weight: 500;
  font-size: calc(0.2085vw + 14px);
  color: #ffffff;
}
#footer .f-h form .f-put2 {
  width: 582px;
}
#footer .f-h form .f-put3 {
  width: 193px;
  height: 63px;
  background: #0c79ce;
  border-radius: 10px;
  font-weight: 400;
  font-size: calc(0.2085vw + 14px);
  color: #e3e2de;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
}
#footer .f-h form .f-put3 span {
  position: relative;
  z-index: 2;
}
#footer .f-h form .f-put3::after {
  content: "";
  background: #000000;
  border-radius: 0 0 50% 50%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  transition: all 0.5s ease-in-out;
}
#footer .f-h form .f-put3:hover::after {
  height: 200%;
}
#footer .f-line {
  height: 1px;
  background: #0a2b45;
}
#footer .top {
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .top .one2 h4 {
  font-weight: 400;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  margin-bottom: 26px;
}
#footer .top .one2 .logo {
  padding-left: 40px;
}
#footer .top .one2 ul #li5 {
  margin-top: 144px;
}
#footer .top .one2 ul li {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 25px;
  line-height: 1;
  font-weight: 300;
  font-size: calc(0.2085vw + 14px);
  color: #c3d4e3;
  display: flex;
  align-items: center;
  position: relative;
}
#footer .top .one2 ul li::before {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  background: #fff;
  left: -12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#footer .top .one2 ul li:hover {
  color: #fff;
}
#footer .top .one2 ul li:hover::before {
  width: 5px;
}
#footer .top .one5 {
  display: flex;
  align-items: flex-end;
}
#footer .top .one1 {
  max-width: 385px;
}
#footer .top .one1 .f-map {
  height: 297px;
  background-color: pink;
  margin-top: 49px;
}
#footer .top .one1 .share {
  display: flex;
}
#footer .top .one1 .share a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
#footer .top .one1 .share li {
  margin-right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
}
#footer .top .one1 .share li i {
  transition: all 0.5s;
  font-size: calc(0.415vw + 14px);
}
#footer .top .one1 .share li:hover {
  background: linear-gradient(90deg, #fff 0%, #fff 100%);
}
#footer .top .one1 .share li:hover i {
  color: transparent;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  background-clip: text;
}
#footer .top .one1 #ewm {
  width: 174px;
  height: 174px;
  border: 4px solid #fff;
  margin-bottom: 17px;
}
#footer .top h3 {
  font-weight: 600;
  font-size: calc(0.2085vw + 14px);
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
}
#footer .top .f-kl {
  margin-bottom: 29px;
  width: 169px;
  height: 1px;
  background: rgba(255, 255, 255, 0.66);
  position: relative;
}
#footer .top .f-kl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 3px;
  background: #ffffff;
}
#footer .top .two .tw-flex,
#footer .top .three .tw-flex {
  display: flex;
}
#footer .top .two ul,
#footer .top .three ul {
  font-size: calc(0.1055vw + 14px);
  line-height: 25px;
}
#footer .top .two ul li,
#footer .top .three ul li {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.9;
  margin-bottom: 25px;
  font-weight: 300;
  font-size: calc(0.2085vw + 14px);
  color: #c3d4e3;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
}
#footer .top .two ul li::before,
#footer .top .three ul li::before {
  content: "";
  width: 0px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: -12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#footer .top .two ul li:hover,
#footer .top .three ul li:hover {
  color: #fff;
}
#footer .top .two ul li:hover::before,
#footer .top .three ul li:hover::before {
  width: 5px;
}
#footer .top .foot-h {
  position: relative;
}
#footer .top .foot-h::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #fff;
  opacity: 0.58;
  left: 0;
  bottom: -13px;
}
#footer .bottom {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer .bottom svg,
#footer .bottom .svg {
  height: 30px;
  width: auto;
  fill: #fff;
  position: relative;
  top: 4px;
}
#footer .bottom span {
  color: #fff;
}
#footer .bottom img {
  width: 300px;
  vertical-align: middle;
}
#footer .bottom .b-l {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#footer .bottom .b-l p {
  margin-left: 60px;
}
@media (max-width: 1800px) {
  .container {
    width: 1600px;
  }
}
@media (max-width: 1600px) {
  #index-body .i-init3 .wrap .left {
    padding-right: 50px;
  }
  #index-body .i-init3 .wrap .right ul li .img {
    width: 370px;
    height: 370px;
  }
}
@media (max-width: 1500px) {
  .container {
    width: 1200px;
  }
}
@media (max-width: 1400px) {
  #index-body .i-init3 .wrap .left {
    padding-left: 25px;
  }
  #index-body .i-init3 .wrap .right ul li .img {
    width: 290px;
    height: 290px;
  }
  #index-body .i-init3 .wrap .left span {
    font-size: 84px;
  }
  #index-body .i-init3::after {
    width: 26%;
  }
  #index-body .i-init3 .wrap .right {
    padding-right: 35px;
  }
}
@media (max-width: 1250px) {
  #nav-height {
    display: none !important;
  }
}
@media (max-width: 1250px) {
  .container {
    width: 970px;
  }
}
@media (max-width: 1200px) {
  #index-body .i-init3 {
    padding: 50px 0;
  }
  #index-body .i-init3 .wrap .right ul li h5 {
    font-size: calc(0.315vw + 14px);
  }
  #index-body .i-init3 .wrap .right ul li .img {
    width: 260px;
    height: 260px;
  }
  #index-body .i-init3 .wrap .right .slick-list {
    padding-right: 24%;
  }
  #index-body .i-init3 .wrap .right a.next {
    right: 12%;
    top: 46%;
  }
  #index-body .i-init3::after {
    width: 15%;
  }
  #index-body .i-init3 .wrap .left span {
    font-size: 70px;
    line-height: 1;
  }
  #index-body .i-title {
    font-size: 26px;
  }
  #index-body .i-init3 .wrap .left {
    padding-right: 0;
  }
}
@media (max-width: 1000px) {
  .container {
    width: 700px;
  }
  #index-body .i-init3 .wrap .right .slick-list {
    padding-right: 0;
  }
  #index-body .i-init3 .wrap .right ul .slick-slide {
    transform: scale(1);
  }
  #index-body .i-init3 .wrap .right a.next {
    right: 1%;
    top: 35%;
  }
}
@media (max-width: 700px) {
  #footer #ewm2 {
    margin-top: 15px;
  }
  .hide-700 {
    display: none !important;
  }
  .container {
    width: 100%;
  }
  #index-body .i-init3 .wrap .left {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  #index-body .i-init3 .wrap .right {
    width: 100%;
    padding-right: 0;
  }
  #index-body .idnexService .box .item {
    width: 50%;
  }
  #index-body .i-init3 .wrap .right a.next {
    display: none !important;
  }
}
@media (max-width: 500px) {
  #index-body .i-init3 .wrap .right ul li .img {
    width: 215px;
    height: 215px;
  }
}
@media (max-width: 1450px) {
  #footer .f-head .f-c {
    width: 100%;
    background-color: transparent;
    min-height: auto;
    justify-content: flex-start;
    margin-bottom: 15px;
    padding: 15px;
  }
  #index-body .sy-1 .carousel-item .sy1-img {
    height: 450px;
  }
  #index-body .sy-2 .container .sy2-l {
    max-width: 600px;
  }
}
@media (max-width: 1250px) {
  #index-body .sy-2 .container {
    flex-wrap: wrap-reverse;
  }
  #index-body .sy-2 .container .sy2-l {
    max-width: none;
  }
  #index-body .sy-1 .carousel-item {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  #index-body .sy-2 .container .sy2-r {
    margin: 0;
    margin-bottom: 20px;
  }
  #index-body .sy-1 .carousel-item .sy1-r {
    max-width: none;
    text-align: center;
  }
  #index-body .sy-1 .carousel-item .sy1-r .sy1-btn {
    display: flex;
    justify-content: center;
  }
}
.show-1250 {
  display: none;
}
@media (max-width: 1250px) {
  .show-1250 {
    display: block;
  }
  .hide-1250 {
    display: none;
  }
  #index-body .sy-3 .container .sy3-main {
    column-gap: 20px;
  }
  #index-body .sy-1 .carousel-item .sy1-img {
    height: auto;
  }
}
@media (max-width: 1000px) {
  #footer .f-head {

    grid-template-columns: 1fr ;

}
  #footer .f-head .f-c{
    margin-right: 0;
  }
  #index-body .sy-3 .container .sy3-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  #index-body .sy-3 .container .sy3-main {
    grid-template-columns: 1fr;
  }
}
#inner-banner {
  height: 300px;
  position: relative;
  margin-bottom: calc(6.77vw + 20px);
  /*overflow: hidden;*/
}
#inner-banner .color1 {
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: 100%;
  height: 120%;
  background-color: rgba(9, 134, 201, 0.9);
  border-radius: 9999px;
  -webkit-filter: blur(40px);
  filter: blur(40px);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-animation: round_translate2 12s linear infinite;
  -moz-animation: round_translate2 12s linear infinite;
  animation: round_translate2 12s linear infinite;
}
#inner-banner .color2 {
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: 100%;
  height: 120%;
  background-color: rgba(19, 70, 159, 0.9);
  border-radius: 9999px;
  -webkit-filter: blur(40px);
  filter: blur(40px);
  -webkit-transform: translate(0, -70%);
  -moz-transform: translate(0, -70%);
  -ms-transform: translate(0, -70%);
  transform: translate(0, -70%);
  -webkit-animation: round_translate1 12s linear infinite 0.2s;
  -moz-animation: round_translate1 12s linear infinite 0.2s;
  animation: round_translate1 12s linear infinite 0.2s;
}
#inner-banner .color3 {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 100%;
  height: 120%;
  background-color: rgba(61, 35, 155, 0.9);
  border-radius: 9999px;
  -webkit-filter: blur(40px);
  filter: blur(40px);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-animation: round_translate3 12s linear infinite;
  -moz-animation: round_translate3 12s linear infinite;
  animation: round_translate3 12s linear infinite;
}
#inner-banner .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
#inner-banner .mbx h2 {
  font-weight: 500;
  color: #f9f9f9;
}
#inner-banner .mbx p {
  font-weight: 300;
  color: #f9f9f9;
}
@media (max-width: 1250px) {
  #inner-banner {
    height: 200px;
  }
}
@keyframes round_translate1 {
  0% {
    right: 75%;
  }
  74.99% {
    opacity: 1;
  }
  75% {
    right: -25%;
    top: 100%;
    opacity: 0;
  }
  75.05% {
    right: 100%;
    opacity: 0;
  }
  75.1% {
    opacity: 1;
  }
  100% {
    right: 75%;
  }
}
@keyframes round_translate2 {
  0% {
    right: 40%;
  }
  64.99% {
    opacity: 1;
  }
  65% {
    right: -30%;
    opacity: 0;
  }
  65.05% {
    right: 100%;
    opacity: 0;
  }
  65.1% {
    opacity: 1;
  }
  100% {
    right: 40%;
  }
}
@keyframes round_translate3 {
  0% {
    right: 0%;
  }
  9.99% {
    opacity: 1;
  }
  10% {
    right: -25%;
    opacity: 0;
  }
  10.05% {
    right: 100%;
    opacity: 0;
  }
  10.1% {
    opacity: 1;
  }
  100% {
    right: 0;
  }
}
.inner-page .sy-all-btn2 {
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.inner-page .bb3-m {
  position: relative;
}
.inner-page .bb3-m:hover .bb31 {
  clip-path: inset(0px 100% 0px 0px);
}
.inner-page .bb3-m:hover .bb32 {
  clip-path: inset(0px 0px 0px 0px);
}
.inner-page .bb31 {
  position: relative;
  z-index: 2;
  transform-origin: center;
  clip-path: inset(0px 0px 0px 0px);
}
.inner-page .bb3 {
  width: 193px;
  height: 50px;
  background: linear-gradient(90deg, #00c0ff 1%, #2e36ff 100%);
  border-radius: 25px;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 21px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.inner-page .bb3 div {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-page .bb32 {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-left: 21px;
  padding-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.inner-page .inner-all-h {
  font-weight: 500;
  color: #e9f4ff;
  line-height: 1.2;
  background: linear-gradient(0deg, #b3c8e0 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inner-page .inner-all-tap {
  font-weight: 300;
  color: #c3d3e2;
}
.about-page .about-1 {
  position: relative;
  z-index: 2;
}
.about-page .about-1 .container {
  position: relative;
}
.about-page .about-1 .container .about-1-img {
  border-radius: 20px;
}
.about-page .about-1 .container .about-1-play {
  position: absolute;
  top: 50%;
  left: 50%;
  /*transform: translate(-50%, -50%);*/
  margin-left: -31px;
  margin-top: -31px;
  width: 62px;
  height: 62px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-page .about-1 .container .about-1-play .about-1-c {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -61px;
  margin-top: -61px;
  z-index: 2;
  height: 122px;
  width: 122px;
  background: url(../images/about-3.png);
  animation: spin 15s linear infinite;
  transform-origin: center center;
}
.about-page .about-1 .container .about-1-play .play-img {
  width: 62px;
  height: 62px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-page .about-1 .container .about-1-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 156px;
  height: 156px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  z-index: -1;
}
.about-page .about-2 {
  position: relative;
}
.about-page .about-2 .about-2-bg {
  position: absolute;
  left: 50%;
  top: -50%;
  transform: translateX(-50%);
}
.about-page .about-2 .container-about-2 {
  display: flex;
  justify-content: space-between;
}
.about-page .about-2 .container .about-2-l {
  max-width: 815px;
}
.about-page .about-2 .container .about-2-l .about-2-h1 {
  font-weight: 300;
  color: #c3d3e2;
  line-height: 30px;
  height: 367px;
  overflow-y: auto;
}
.about-page .about-2 .container .about-2-r img {
  border-radius: 20px;
}
.about-page .about-2 .container .i-1-4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-page .about-2 .container .i-1-4 li span {
  display: block;
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  transition: all 0.5s;
}
.about-page .about-2 .container .i-1-4 li span em {
  font-weight: bold;
  font-size: 48px;
  color: #ffffff;
}
.about-page .about-2 .container .i-1-4 li div {
  font-weight: 300;
  font-size: calc(0.2085vw + 14px);
  color: #c3d3e2;
}
.about-page .about-2 .container .i-1-4 li:hover span {
  background: linear-gradient(270deg, #02bbff 0%, #2c35f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-page .about-3 {
  position: relative;
  z-index: 2;
}
.about-page .about-3 .container .about-3-m {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 41px;
}
.about-page .about-3 .container .about-3-m .about-3-c {
  background: rgba(8, 16, 36, 0.26);
  border-radius: 30px;
}
.about-page .about-3 .container .about-3-m .about-3-c .about-3-c-h {
  font-weight: 400;
  color: #ffffff;
}
.about-page .about-3 .container .about-3-m .about-3-c .about-3-c-p {
  font-weight: 300;
  color: #c3d4e3;
  line-height: 28px;
  height: 120px;
  overflow-y: auto;
  position: relative;
  z-index: 2;
}
.about-page .about-4 {
  position: relative;
  z-index: 1;
}
.about-page .about-4 .about-4-bg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
}
.about-page .about-4 .container {
  z-index: 2;
  position: relative;
}
.about-page .about-4 .container .swiper-about {
  position: relative;
  height: 709px;
}
.about-page .about-4 .container .about-history {
  height: 709px;
  overflow-y: auto;
  position: relative;
}
.about-page .about-4 .container .about-history .about-history-m {
  display: flex;
  height: calc(709px / 4);
}
.about-page .about-4 .container .about-history .about-history-m > div {
  flex: 1;
}
.about-page .about-4 .container .about-history .about-history-m .about-history-c {
  display: flex;
  justify-content: space-between;
}
.about-page .about-4 .container .about-history .about-history-c2 {
  margin-top: 68px;
}
.about-page .about-4 .container .about-history .about-history-c1 {
  margin-top: 44px;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) {
  position: relative;
  text-align: right;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n)::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #06adfe;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 4;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-dot {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  z-index: 5;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-dot::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  opacity: 0.2;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  margin-left: -18px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: scale(0.5);
  transition: all 0.5s;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n):hover .about-dot::after {
  transform: scale(1);
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-history-c1 {
  margin-right: 20px;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-history-c2 {
  width: 219px;
  height: 41px;
  background: url(../images/about-4-l.png);
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-history-c {
  display: flex;
  justify-content: flex-end;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
  position: relative;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1)::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #06adfe;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 4;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-dot {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  z-index: 5;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-dot::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  opacity: 0.2;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  margin-left: -18px;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: scale(0.5);
  transition: all 0.5s;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1):hover .about-dot::after {
  transform: scale(1);
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-history-c1 {
  margin-left: 20px;
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-history-c2 {
  width: 219px;
  height: 41px;
  background: url(../images/about-4-r.png);
}
.about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-history-c {
  flex-direction: row-reverse;
  justify-content: start;
}
.about-page .about-4 .container .about-history .about-history-c-h {
  font-weight: 500;
  color: #e9f4ff;
}
.about-page .about-4 .container .about-history .about-history-c-p {
  font-weight: 300;
  color: #c3d4e3;
  max-width: 300px;
}
.about-page .about-5 .container {
  position: relative;
  overflow: hidden;
  background: #052742;
  border-radius: 34px;
}
.about-page .about-5 .container form {
  position: relative;
  z-index: 3;
}
.about-page .about-5 .container .about5-1-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-page .about-5 .container .about5-1-bg1 {
  position: absolute;
  left: 0;
  top: 0%;
  transform: translate(-30%, -60%);
}
.about-page .about-5 .container .about-5-box1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 75px;
}
.about-page .about-5 .container .about-5-box1 input {
  padding-left: 23px;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  width: 100%;
  height: 60px;
  background: rgba(0, 87, 137, 0.26);
  border-radius: 20px;
  /*border: 1px solid #0980c2;*/
}
.about-page .about-5 .container .about-5-box1 input::placeholder {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
}
.about-page .about-5 .container textarea {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  display: block;
  width: 100%;
  height: 112px;
  background: rgba(0, 87, 137, 0.26);
  border-radius: 20px;
  border: 1px solid #0980C2;
  padding-left: 23px;
  padding-top: 23px;
}
.about-page .about-5 .container textarea::placeholder {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #03b6ff;
  border-radius: 5px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #2350f6;
  border-radius: 5px;
}
/* 滚动条滑块悬停样式 */
::-webkit-scrollbar-thumb:hover {
  background: #2350f6;
}
@media (max-width: 1450px) {
  .about-page .about-2 .container .about-2-l {
    max-width: none;
    padding: 0;
  }
  .about-page .about-2 .container .about-2-r {
    margin-top: 25px;
  }
  .about-page .about-2 .container-about-2 {
    flex-wrap: wrap;
  }
}
@media (max-width: 1000px) {
  .about-page .about-5 .container .about-5-box1 {
    grid-template-columns: 1fr;
  }
  /*.about-page .about-5 .container .about-5-box1 input {
    margin-bottom: 30px;
  }*/
  .about-page .about-5 .container .about-5-box1 li{
margin-bottom: 30px;
  }
  .about-page .about-3 .container .about-3-m {
    grid-template-columns: 1fr 1fr;
  }
  .about-page .about-3 .container .about-3-m .about-3-c {
    margin-bottom: 20px;
  }
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-history-c2,
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-history-c2 {
    display: none;
  }
}
@media (max-width: 700px) {
  .about-page .about-5 .container form {
    padding: 15px;
  }
  .about-page .about-3 .container .about-3-m {
    grid-template-columns: 1fr;
  }
  .about-page .about-3 .container .about-3-m .about-3-c {
    margin-bottom: 15px;
  }
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-dot,
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-dot,
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1)::after,
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n)::after,
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-history-c-copy,
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-history-c-copy {
    display: none;
  }
}
.capabilities-page .capabilities-1 {
  position: relative;
  z-index: 2;
}
.capabilities-page .capabilities-1 .container > img {
  border-radius: 20px;
}
.capabilities-page .capabilities-1 .container .capabilities1-m {
  position: absolute;
  top: 0;
  width: 1165px;
  left: 50%;
  background: #041e32;
  border-radius: 34px;
  border: 1px solid #2f8cda;
  transform: translate(-50%, -50%);
}
.capabilities-page .capabilities-2 {
  position: relative;
}
.capabilities-page .capabilities-2 .capabilities-2-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  opacity: 0.7;
}
.capabilities-page .capabilities-2 .container .sy3-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 28px;
  position: relative;
  z-index: 2;
}
.capabilities-page .capabilities-2 .container .sy3-c {
  background: rgba(8, 16, 36, 0.26);
  position: relative;
  border-radius: 20px;
  /*overflow: hidden;*/
}
.capabilities-page .capabilities-2 .container .sy3-c > img {
  transition: all 0.5s;
}
.capabilities-page .capabilities-2 .container .sy3-c .sy3-text1 {
  font-weight: 400;
  color: #ffffff;
}
.capabilities-page .capabilities-2 .container .sy3-c .sy3-text2 {
  font-weight: 300;
  color: #c3d4e3;
  max-width: 360px;
}
.capabilities-page .capabilities-2 .container .sy3-c .sy3-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.capabilities-page .capabilities-2 .container .sy3-c:hover img {
  transform: rotateY(180deg);
}
.capabilities-page .capabilities-3 .container .swiper-capabilities1 {
  overflow: hidden;
}
.capabilities-page .capabilities-3 .container .swiper-capabilities1 .img-box {
  border-radius: 30px;
}
.capabilities-page .capabilities-3 .container .swiper-capabilities1 .img-box img {
  border-radius: 30px;
}
.capabilities-page .capabilities-3 .container .swiper-capabilities1 .capabilities3-text {
  font-weight: 500;
  color: #c3d3e2;
}
.capabilities-page .capabilities-4 {
  position: relative;
}
.capabilities-page .capabilities-4 .capabilities-4-bg {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-40%, -25%);
  opacity: 0.7;
}
.capabilities-page .capabilities-4 .container .capabilities4-m {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 44px;
}
.capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c {
  background: rgba(8, 16, 36, 0.26);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c img {
  transition: all 0.5s;
}
.capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c:hover img {
  transform: rotateY(180deg);
}
.capabilities-page .capabilities-5 .container .capabilities5-m {
  max-width: 1115px;
  overflow: hidden;
  margin: 0 auto;
  /*display: grid;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  column-gap: 158px;
  
  padding-bottom: 29px;
}
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c {
  background: rgba(8, 16, 36, 0.26);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c span {
  position: absolute;
  width: 58px;
  height: 58px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::after {
  content: "";
  position: absolute;
  background: url(../images/capabilities-5.png) no-repeat center;
  width: 15px;
  height: 17px;
  top: 50%;
  right: -33%;
  transform: translate(0%, -50%);
  transition: all 0.5s;
}
/*.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c3::after {
  content: "";
  position: absolute;
  background: url(../images/capabilities-5.png) no-repeat center;
  width: 15px;
  height: 17px;
  transition: all 0.5s;
  bottom: -38%;
  left: 50%;
   top: unset;
  right: unset;
  transform: translate(-50%, 0%) rotate(90deg);
}*/
/*.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c1::before,
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c2::before,
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c4::before,
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c5::before,
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c6::before {
  display: none;
}*/
/*.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c4::after,
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c5::after {
  transform: translate(0%, -50%) rotate(180deg);
}

/*.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c6::after {
  display: none;
}*/
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c7::after {
  display: none;}
.capabilities-page .capabilities-6 {
  position: relative;
}
.capabilities-page .capabilities-6 .capabilities6-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 20px;
  overflow: hidden;
}
.capabilities-page .capabilities-6 .capabilities6-bg img {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}
.capabilities-page .capabilities-6 .container {
  position: relative;
  z-index: 2;
}
.capabilities-page .capabilities-6 .container .capabilities-6-m {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.capabilities-page .capabilities-7 {
  position: relative;
}
.capabilities-page .capabilities-7 .capabilities-7-bg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  opacity: 0.7;
}
.capabilities-page .capabilities-7 .container .sy3-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
  position: relative;
  z-index: 2;
}
.capabilities-page .capabilities-7 .container .sy3-c {
  background: rgba(8, 16, 36, 0.26);
  position: relative;
  border-radius: 30px;
  /*overflow: hidden;*/
}
.capabilities-page .capabilities-7 .container .sy3-c > img {
  transition: all 0.5s;
}
.capabilities-page .capabilities-7 .container .sy3-c .sy3-text1 {
  font-weight: 400;
  color: #ffffff;
}
.capabilities-page .capabilities-7 .container .sy3-c .sy3-text2 {
  font-weight: 300;
  color: #c3d4e3;
  max-width: 360px;
}
.capabilities-page .capabilities-7 .container .sy3-c .sy3-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.capabilities-page .capabilities-7 .container .sy3-c:hover img {
  transform: rotateY(180deg);
}
@media (max-width: 1450px) {
  .hide-1450 {
    padding: 0;
  }
  .capabilities-page .capabilities-1 .container .capabilities1-m {
    width: 100%;
    position: static;
    transform: translate(0, 0);
    margin-top: 25px;
  }
}
@media (max-width: 1250px) {
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::after {
  display: none !important;}
  .capabilities-page .capabilities-2 .container .sy3-main {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .capabilities-page .capabilities-5 .container .capabilities5-m {
    column-gap: 48px;
    row-gap: 66px;
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::after {
    right: -16%;
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::before {
    bottom: -54%;
  }
}
@media (max-width: 700px) {
  .capabilities-page .capabilities-5 .container .capabilities5-m{
    gap:15px;
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::after{
    display: none !important;
  }
  .capabilities-page .capabilities-7 .container .sy3-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::before {
    display: block;
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c6::before {
    display: none;
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::before {
    bottom: -27%;
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c span {
    position: static;
    transform: translate(0, 0);
    margin-bottom: 15px;
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m {
    grid-template-columns: repeat(1, 1fr);
  }
  .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c {
    align-items: center;
    flex-direction: column-reverse;
  }
  .capabilities-page .capabilities-2 .container .sy3-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities-page .capabilities-4 .container .capabilities4-m {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 500px) {
  .capabilities-page .capabilities-7 .container .sy3-main {
    grid-template-columns: repeat(1, 1fr);
  }
  .capabilities-page .capabilities-2 .container .sy3-main {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sustainability-page .sustainability-1 {
  position: relative;
  z-index: 2;
}
.sustainability-page .sustainability-1 .container .swiper-sustainability1 {
  overflow: hidden;
}
.sustainability-page .sustainability-1 .container .swiper-sustainability1 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sustainability-page .sustainability-1 .container .swiper-sustainability1 .swiper-slide .sustainability-1-l {
  max-width: 724px;
}
.sustainability-page .sustainability-1 .container .swiper-sustainability1 .swiper-slide .sustainability-1-r {
  border-radius: 30px;
}
.sustainability-page .sustainability-1 .container .swiper-sustainability1 .swiper-slide .sustainability-1-r img {
  border-radius: 30px;
}
.sustainability-page .sustainability-1-dots {
  position: relative;
  z-index: 2;
}
.sustainability-page .sustainability-1-dots .container {
  display: flex;
  justify-content: center;
}
.sustainability-page .sustainability-1-dots .container .sustainability-1-dot {
  width: 30px;
  height: 6px;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
  border-radius: 3px;
  margin-right: 18px;
}
.sustainability-page .sustainability-1-dots .container .sustainability-1-dot.active {
  width: 100px;
}
.sustainability-page .sustainability-1-dots .container .sustainability-1-dot:last-child {
  margin-right: 0;
}
.sustainability-page .sustainability-2 {
  position: relative;
  z-index: 0;
}
.sustainability-page .sustainability-2 .sustainability-2-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -23%);
  opacity: 0.7;
}
.sustainability-page .sustainability-2 .container .sustainability-2-h {
  margin: 0 auto;
  max-width: 916px;
}
.sustainability-page .sustainability-2 .container .sustainability-2-m {
  display: flex;
  justify-content: space-between;
}
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-l {
  border-radius: 30px;
}
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-l img {
  border-radius: 30px;
}
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r {
  width: 51%;
}
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c {
  background: rgba(8, 16, 36, 0.26);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c img {
  transition: all 0.5s;
}
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c:hover img {
  transform: rotateY(180deg);
}
.sustainability-page .sustainability-2 .container .sustainability-2-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sustainability-page .sustainability-2 .container .sustainability-2-b .sustainability-2-b-r {
  border-radius: 30px;
}
.sustainability-page .sustainability-2 .container .sustainability-2-b .sustainability-2-b-r img {
  border-radius: 30px;
}
.sustainability-page .sustainability-2 .container .sustainability-2-b .sustainability-2-b-l {
  width: 45%;
}
.sustainability-page .capabilities-6 {
  position: relative;
}
.sustainability-page .capabilities-6 .sustainability-2-bg {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.7;
  z-index: -1;
  transform: translate(50%, -30%);
}
.sustainability-page .capabilities-6 .inner-all-tap {
  font-weight: 500;
}
.sustainability-page .capabilities-6 .capabilities6-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 20px;
  overflow: hidden;
}
.sustainability-page .capabilities-6 .capabilities6-bg img {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}
.sustainability-page .capabilities-6 .container {
  position: relative;
  z-index: 2;
}
.sustainability-page .capabilities-6 .container .capabilities-6-m {
  position: relative;
  z-index: 2;
  max-width: 1130px;
  margin: 0 auto;
}
@media (max-width: 1700px) {
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item{
    margin-left: 30px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a{
    font-size: calc(0.1055vw + 14px);
  }
  .sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r {
    width: auto;
    margin-left: 30px;
  }
}
@media (max-width: 1450px) {
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item{
    margin-left: 20px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a{
    font-size: 14px;
  }
}
@media (max-width: 1250px) {
  .sustainability-1-p2,
  .sustainability-1-p3 {
    padding: 0;
  }
  .sustainability-page .sustainability-1 .container .swiper-sustainability1 .swiper-slide {
    flex-wrap: wrap-reverse;
  }
  .sustainability-page .sustainability-1 .container .swiper-sustainability1 .swiper-slide .sustainability-1-l {
    max-width: none;
  }
  .sustainability-page .sustainability-1 .container .swiper-sustainability1 .swiper-slide .sustainability-1-r {
    margin-bottom: 25px;
  }
}
@media (max-width: 1000px) {
  .sustainability-page .sustainability-2 .container .sustainability-2-b .sustainability-2-b-l {
    width: 100%;
  }
  .sustainability-page .sustainability-2 .container .sustainability-2-b .sustainability-2-b-r {
    margin-bottom: 25px;
  }
  .sustainability-page .sustainability-2 .container .sustainability-2-b {
    flex-wrap: wrap-reverse;
  }
  .sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-l {
    margin-bottom: 25px;
  }
  .sustainability-page .sustainability-2 .container .sustainability-2-m {
    flex-wrap: wrap;
  }
  .sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r {
    width: 100%;
    margin-left: 0;
  }
}
.news1 .container .new1-btns {
  display: flex;
  justify-content: center;
}
.news1 .container .new1-btns .new1-btn {
  background: #002e51;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  /*overflow: hidden;*/
  cursor: pointer;
}
.news1 .container .new1-btns .new1-btn span {
  position: relative;
  z-index: 2;
}
.news1 .container .new1-btns .new1-btn::after {
    border-radius: 25px;
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00c0ff 1%, #2e36ff 100%);
  clip-path: inset(100% 0% 0% 0%);
}
.news1 .container .new1-btns .new1-btn.active::after,
.news1 .container .new1-btns .new1-btn:hover::after {
  clip-path: inset(0% 0% 0% 0%);
}
.news1 .container .sy-6-m .sy-6-m-c {
  background: rgba(8, 16, 36, 0.26);
  border-radius: 20px;
  display: block;
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1-r1{
  font-size: calc(0.415vw + 14px);
  color: #fff;
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 {
  display: flex;
  justify-content: space-between;
  align-self: center;
  position: relative;
  z-index: 8;
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-l {
  font-weight: 300;
  color: #ffffff;
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r {
  position: relative;
  display: flex;
  font-weight: 300;
  color: rgba(249, 249, 249, 0.5);
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r::after {
  content: "";
  position: absolute;
  top: 44%;
  /*transform: translateY(-52%);*/
  right: 0;
  width: 12px;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
  transform-origin: center;
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r::before {
  content: "";
  position: absolute;
  top: 44%;
  transform: translateY(-52%);
  right: 0;
  width: 12px;
  height: 2px;
  background: #fff;
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c2 {
  display: none;
  font-weight: 300;
  color: #ffffff;
  max-width: 800px;
}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1-r::after {
  transform: translateY(-52%) rotate(90deg);
}
.news1 .container .sy-6-m .sy-6-m-c.active .sy-6-m-c1-r::after {
  transform: translateY(-52%) rotate(0deg) ;
}
.m-page .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.m-page .wp-pagenavi a,
.m-page .wp-pagenavi span {
  width: 41px;
  height: 41px;
  background: #002e51;
  border-radius: 20px;
  border: 1px solid #2d39ff;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.m-page .wp-pagenavi a a.next,
.m-page .wp-pagenavi span a.next {
  margin-right: 0px;
}
.m-page .wp-pagenavi a:hover,
.m-page .wp-pagenavi span:hover {
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
}
.m-page .wp-pagenavi span {
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);
}
@media (max-width: 700px) {
  .news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 .sy-6-m-c1-r {
    padding-right: 25px;
  }
  .news1 .container .sy-6-m .sy-6-m-c {
    padding-left: 10px;
    padding-right: 10px;
  }
  .news1 .container .sy-6-m .sy-6-m-c .sy-6-m-c1 {
    flex-wrap: wrap;
  }
}
.contact-page .about-5 .container {
  display: flex;
  justify-content: space-between;
}
.contact-page .about-5 .container .contact-page-l {
  max-width: 614px;
}
.contact-page .about-5 .container .contact-page-l .contact-m .contact-c {
  display: flex;
  align-items: center;
}
.contact-page .about-5 .container .contact-page-l .contact-m .contact-c .contact-c-l {
  flex: 0 0 61px;
  width: 61px;
  height: 61px;
  background: linear-gradient(90deg, #00c0ff, #2e36ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page .about-5 .container .contact-page-l .contact-m .contact-c .contact-c-r .contact-p2 {
  color: #c3d3e2;
}
.contact-page .about-5 .container .contact-page-l .contact-m .contact-c .contact-c-r .contact-p1 {
  color: #fff;
}
.contact-page .about-5 .container .form {
  overflow: hidden;
  background: #052742;
  border-radius: 34px;
  width: 51%;
  position: relative;
  z-index: 3;
}
.contact-page .about-5 .container .about5-1-bg {
  position: absolute;
  right: 0;
  bottom: 43px;
}
.contact-page .about-5 .container .about5-1-bg1 {
  position: absolute;
  left: 0;
  top: 0%;
  transform: translate(-30%, -60%);
}
.contact-page .about-5 .container .about-5-box1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 75px;
  position: relative;
  z-index: 3;
}
#addForm5 ul{
    position: relative;
  z-index: 3;
}
.contact-page .about-5 .container .about-5-box1 input {
  padding-left: 23px;
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  width: 100%;
  height: 60px;
  background: rgba(0, 87, 137, 0.26);
  border-radius: 20px;
  border: 1px solid #0980c2;
}
.contact-page .about-5 .container .about-5-box1 input::placeholder {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
}
.contact-page .about-5 .container textarea {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
  display: block;
  width: 100%;
  height: 112px;
  background: rgba(0, 87, 137, 0.26);
  border-radius: 20px;
  border: 1px solid #0980C2;
  padding-left: 23px;
  padding-top: 23px;
}
.contact-page .about-5 .container textarea::placeholder {
  font-weight: 300;
  font-size: calc(0.1055vw + 14px);
  color: #ffffff;
}
@media (max-width: 1250px) {
  .contact-page .about-5 .container {
    flex-wrap: wrap;
  }
  .contact-page .about-5 .container .contact-page-l {
    max-width: none;
  }
  .contact-page .about-5 .container form {
    width: 100%;
    margin-top: 25px;
  }
  .contact-page .about-5 .container .contact-page-l .inner-all-h {
    padding: 0;
  }
}
.product-page {
      padding: 20px 0 calc(4.479vw + 14px) 0;
        min-height: 80vh;
}
.product-page .pro-box .product-right {
  width: -webkit-calc(100% - 340px);
  width: -moz-calc(100% - 340px);
  width: calc(100% - 340px);
  padding-left: 35px;
  margin-left: auto;
}
.product-page .pro-box .product-right ul {
  margin: 0 -12px;
}
.product-page .pro-box .product-right ul li {
  padding: 0 12px;
  margin-bottom: 30px;
}
.product-page .pro-box .product-right ul li:hover .img-box {
  border: 1px solid var(--color);
}
.product-page .pro-box .product-right ul li .img-box {
  width: 100%;
  display: block;
  border-radius: 5px;
  /*overflow: hidden;*/
  /*border: 1px solid transparent;*/
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.product-page .pro-box .product-right ul li .img-box::after{
      background: linear-gradient(180deg, #336BB1, #3467D7, #2F8CDA);
      position: absolute;
      content: '';
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
        -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
      clip-path: inset(0 0 100% 0 );
}
.product-page .pro-box .product-right ul li:hover .img-box::after{
     /*clip-path: inset(0 0 0 0 );*/
}
.product-page .pro-box .product-right ul li:hover h4{
      background: linear-gradient(270deg, #02bbff 0%, #2c35f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-page .pro-box .product-right ul li .img-box>a{
  position: relative;
  z-index: 4;
}
.product-page .pro-box .product-right ul li .img-box .icon img{
  width: 22px !important;
  height: auto;
}
.product-page .pro-box .product-right .text{
  margin-bottom: 30px;
}
.product-page .pro-box .product-right .text h1{
  font-size: calc(0.525vw + 14px);

  margin-bottom: 10px;
  font-weight: 600;
}
.product-page .pro-box .product-right .text p{
  font-size: calc(0.2085vw + 14px);
}
.product-page .pro-box .product-right ul li .img-box:hover .icon {
  opacity: 1;
}
.product-page .pro-box .product-right ul li .img-box .icon {
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  z-index: 6;
}
.product-page .pro-box .product-right ul li .img-box .icon a {
  margin: 0 4px;
  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;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .pro-box .product-right ul li .img-box .icon a img {
  -webkit-filter: invert(0);
  filter: invert(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .pro-box .product-right ul li .img-box .icon a:hover,
.product-page .pro-box .product-right ul li .img-box .icon a.active {
  background: linear-gradient(0deg, #336BB1, #3467D7, #2F8CDA);
}
.product-page .pro-box .product-right ul li .img-box .icon a:hover img,
.product-page .pro-box .product-right ul li .img-box .icon a.active img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.product-page .pro-box .product-right ul li .img-box .img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-page .pro-box .product-right ul li h4 {
  font-size: calc(0.525vw + 14px);
  text-align: center;
  padding: 0 25px;
  margin-top: 15px;
  transition: all 0.5s;
}
.product-page .pro-box .product-right ul li h4:hover{
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .product-page .pro-box .product-right ul li h4{
    font-size: calc(0.2085vw + 14px);
  }
}
@media screen and (max-width: 1200px) {
   .product-page .pro-box .product-right ul li{
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
   .product-page .pro-box .product-right {
    width: 100%;
    padding-left:0;
  }
}
@media screen and (max-width:700px) {
    .product-page .pro-box .product-right ul li{
    width: 100%;
  }
}
.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
}
.gallery-page ul li a{
  display: block; 
  background: white;
   border-radius: 20px;
}
.gallery-page ul li a img{
  border-radius: 20px;
}
.gallery-page li:hover p{
background: linear-gradient(270deg, #02bbff 0%, #2c35f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pro-box .pro-left {
  width: 340px;
  position: sticky;
  top: 165px;
  float: left;
}
.pro-box .pro-left .menu {
  
  margin-bottom: 50px;
}
.pro-box .pro-left .menu > li {
  border-radius: 5px;
  border-top: none;
  margin-bottom: 10px;
}
.pro-box .pro-left .menu > li:last-child {
  margin-bottom: 0;
}
.pro-box .pro-left .menu > li.active .menu-a span,
.pro-box .pro-left .menu > li:hover .menu-a span {
  right: 0;
}
.pro-box .pro-left .menu > li.active .menu-a a,
.pro-box .pro-left .menu > li:hover .menu-a a,
.pro-box .pro-left .menu > li.active .menu-a i,
.pro-box .pro-left .menu > li:hover .menu-a i {
  color: white;
}

.pro-box .pro-left .menu > li.active .menu-a i {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.pro-box .pro-left .menu > li .menu-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  padding: 0 70px 0 27px;
  font-family: var(--font);
  font-size: calc(0.2085vw + 14px);
  /*text-transform: uppercase;*/
  border-radius: 5px;
  /*overflow: hidden;*/
  /*border: 1px solid rgba(0, 0, 0, 0.2);*/
  position: relative;
  cursor: pointer;
  z-index: 5;
}
.pro-box .pro-left .menu > li .menu-a a,
.pro-box .pro-left .menu > li .menu-a ii{
position: relative;
z-index: 4;
}
.pro-box .pro-left .menu > li .menu-a span {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  right: -webkit-calc(100% - 8px);
  right: -moz-calc(100% - 8px);
  right: calc(100% - 8px);
  top: 0;
  background: linear-gradient(90deg, #00c0ff 0%, #2e36ff 100%);;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  clip-path: inset(0 0 0 100%);
}
.pro-box .pro-left .menu > li:hover  .menu-a span{
  clip-path: inset(0 0 0 0);
}
.pro-box .pro-left .menu > li .menu-a i {
  position: absolute;
  right: 27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: calc(0.525vw + 14px);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.pro-box .pro-left .menu > li .sub-menu {
  padding: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  margin-top: -3px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
      /*box-shadow: 0px -0.4px 6px 1px rgb(0 0 0 / 8%);*/
}
.pro-box .pro-left .menu > li .sub-menu li {
  padding: 5px 30px;
}
.pro-box .pro-left .menu > li .sub-menu li a {
  font-size: calc(0.2085vw + 14px);
  color: #666;
  transition: all 0.5s;
}
.pro-box .pro-left .menu > li .sub-menu li a:hover{
  color: var(--color);
}
.pro-box .pro-left .menu > li .sub-menu li.active a{
  color:var(--color);
}
@media screen and (max-width: 1000px) {
    .pro-box .pro-left{
    display: none;
  }
}
.prodet-page {
  padding: 50px 0  0;
}
.prodet-page .prodet-right {
  width: -webkit-calc(100% - 340px);
  width: -moz-calc(100% - 340px);
  width: calc(100% - 340px);
  padding-left: 65px;
}
.prodet-page .prodet-right .box {
  width: 100%;
}
.prodet-page .prodet-right .box .left {
  width: 46.5%;
}
.prodet-page .prodet-right .box .left .smallImg ul {
  margin: 0 -5px;
}
.prodet-page .prodet-right .box .left .smallImg ul li {
  padding: 0 5px;
}
.prodet-page .prodet-right .box .left .smallImg ul li .img_box {
  display: block;
  border-radius: 5px;
  /*overflow: hidden;*/
  border: 1px solid transparent;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .left .smallImg ul li.active .img_box {
  border: 1px solid var(--color);
}
.prodet-page .prodet-right .box .right {
  width: 53.5%;
  padding-left: 50px;
}
.prodet-page .prodet-right .box .right .det table{
  margin-bottom: 0;
}
.prodet-page .prodet-right .box .right .det ul li{
  font-size: calc(0.1055vw + 14px);
  display: flex;
  align-items: center;
}
.prodet-page .prodet-right .box .right .det ul li::before{
  content:"";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  margin-right: 10px;
}
.prodet-page .prodet-right .box .right .det2 ul{
  display: flex;
}
.prodet-page .prodet-right .box .right .det2 ul li{
  font-family: 'CareLabelSymbolsFont-Regular';
  margin-right: 15px;
  font-size: 90px;
}
.prodet-page .prodet-right .box .right h1 {
  font-size: 35px;
  font-family: var(--font);
}
.prodet-page .prodet-right .box .right .line{
  width: 100%;
  border-radius:35px;
  height: 10px; 
}
.prodet-page .prodet-right .box .right .btn {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
.prodet-page .prodet-right .box .right .Auxil-through {
  color: #666;
}


.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box{
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .2);
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box.no_img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box.no_img{
  border-color:transparent;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .link{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev:hover .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover .img_box .link{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .img{
  border-radius: 5px;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev p,
.prodet-page .prodet-right .box .right .Auxil-through .next p{
 color: #C3D4E3;
  transition: all 0.5s;
  cursor: pointer;
  opacity: 1;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev p:hover,
.prodet-page .prodet-right .box .right .Auxil-through .next p:hover{
  color: #fff;
  opacity: 1;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev:hover p,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover p{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .btn .product_add{
  position: relative;
}
.prodet-page .prodet-right .box .right .btn .product_add .fly_love{
  display: none;
  z-index: 204;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add .love{
  position: absolute;
  left:2px;
  top:50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add .collect{
  opacity: 1;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add.active .love{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .btn .product_add.active .collect{
  opacity: 0;
}
.prodet-page .prodet-right .prodet-title {
  margin: 100px 0 30px 0;
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.2);*/
}
.prodet-page .prodet-right .prodet-content{
  padding-bottom: 60px;
}
.prodet-page .prodet-right .prodet-title ul {
  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;
}
.prodet-page .prodet-right .prodet-title ul li {
  padding: 10px 0 10px 28px;
  margin: 0 40px;
  position: relative;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.prodet-page .prodet-right .prodet-title ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 22px;
  /*background: url("../images/nav-tag.png") no-repeat;*/
  left: 2px;
  top: -6px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.prodet-page .prodet-right .prodet-title ul li.active {
  border-bottom: 2px solid var(--color);
}
.prodet-page .prodet-right .prodet-title ul li.active:before {
  opacity: 1;
}
.prodet-page .prodet-right .prodet-content .det table{
  table-layout: fixed;
}
table tbody td, table tbody th{
  border: 1px solid #103361;
}
.prodet-page .prodet-right .prodet-content .det table tr{
  background: transparent !important;
}
.prodet-page .prodet-right .prodet-content .det table tr:nth-child(odd){
  background-color: #e1e1e1;
}
.prodet-page .prodet-right .prodet-content .det table tr td{
  font-size: calc(0.1055vw + 14px);
  color: #fff;
  text-align: center;
  font-weight: 100;
  min-width: 120px;
}
.prodet-page .prodet-right .prodet-content .det form {
    margin-top: 50px;
    /*padding: 10px;*/
    /*background: #fff;*/
    /*box-shadow: #ccc 0 0 10px 0;*/
}
.prodet-page .prodet-right .prodet-content .det form ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.prodet-page .prodet-right .prodet-content .det form ul li {
    margin-top: 18px;
    width: 49.5%;
    display: inline-block;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) {
    width: 100%;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) textarea {
    width: 100%;
    border: #ccc solid 1px;
    padding: 10px;
    font-size: calc(0.1055vw + 14px);
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) {
    width: 100%;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input {
    background: var(--color);
    color: #fff;
    transition: all .5s;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input:hover {
    background: #000;
}
.prodet-page .prodet-right .prodet-content .det form ul li input {
    padding: 15px;
    border: #ccc solid 1px;
    width: 100%;
    font-size: calc(0.1055vw + 14px);
}
@media screen and (max-width: 1600px) {

   .prodet-page .prodet-right .box .right .Auxil-through .next{
     margin-top: 30px;
   }
   .prodet-page .prodet-right .box .right .Auxil-through .next .next-t{
     flex-direction: row-reverse;
   }
   .prodet-page .prodet-right .box .right .Auxil-through .next .next-t span{
     margin-right: 0;
     margin-left: 10px;
   }
}
@media screen and (max-width: 1400px) {


  .prodet-page .prodet-right .box .right h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1200px) {

  .prodet-page .prodet-right .box .left{
    width: 100%;
    margin-bottom: 60px;
  }
  .prodet-page .prodet-right .box .right{
    width: 100%;
  }
  .prodet-page .prodet-right .box .left .bigImg ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  } 
  .prodet-page .prodet-right .box .right{
    padding-left: 0;
  }
  .prodet-page .prodet-right .prodet-title ul li {
    margin: 0 15px;
    font-size: calc(0.315vw + 14px);
  }
}
@media screen and (max-width: 1000px) {

  .prodet-page .prodet-right {
    width: 100%;
    padding-left:0;
  }
  .prodet-page .prodet-right .box .right .line img{
    width:100%;
  }
  .prodet-page .prodet-right .box .right .btn a:first-child{
    display: none;
  }
  .prodet-page .prodet-right .box .right .btn a:last-child{
    margin-left: 0;
  }

}
@media screen and (max-width:700px) {

  .prodet-page .prodet-right .prodet-title ul li {
    margin: 0 5px;
    font-size: 18px
  }
 
  .prodet-page .prodet-right .prodet-content .det form ul li{
    width: 100%;
  }
}
@media screen and (max-width: 500px) {

  .prodet-page .prodet-right .prodet-title ul li{
    width: 100%;
    margin-bottom: 30px;
  }
}
.prodet-page .prodet-3 .content ul {
  margin-right: -30px;
}
.prodet-page .prodet-3 > h3{
  font-weight: bold;
}
.prodet-page .prodet-3 .content ul li {
  padding-right: 30px;
}
.prodet-page .prodet-3 .content ul li .img {
  position: relative;
}
.prodet-page .prodet-3 .content ul li .img .img-box {
  display: block;
}
.prodet-page .prodet-3 .content ul li .img .img-box img {
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .img .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .img .icon a {
  display: inline-block;
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  background: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}
.prodet-page .prodet-3 .content ul li .img .icon a img {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-3 .content ul li .img:hover .img-box img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.prodet-page .prodet-3 .content ul li .img:hover .icon {
  opacity: 1;
}
.prodet-page .prodet-3 .content ul li .text {
  padding-top: 25px;
}
.prodet-page .prodet-3 .content ul li .text h3 {
  font-size: calc(0.2085vw + 14px);
  line-height: 32px;
  min-height: 4rem;
  margin-bottom: 0;
   -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-3 .content ul li .text .con {
  font-size: calc(0.2085vw + 14px);
  line-height: 32px;
  color: #83827F;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.prodet-page .prodet-3 .content ul li:hover h3{
  color: #fff;
}
.submit {
  width: 100%;
  height: 60px;
  border-radius: 35px;
  background-color: var(--color);
  color: white;
  font-size: calc(0.315vw + 14px);
  border: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 40px;
  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;
}
.submit img {
  margin-left: 15px;
}
.submit:hover {
  background-color: #000;
}
.submit input[type='submit'] {
  background-color: transparent;
  border: none;
  text-transform: uppercase;
}
.recommended-product {
  padding: 90px 0;
  /*background-color: #f9f9f9;*/
}
.recommended-product ul {
  margin: 60px -24px 0;
}
.recommended-product ul li {
  padding: 0 24px;
}
.recommended-product ul li .img_box {
  width: 100%;
  display: block;
  border-radius: 5px;
  /*overflow: hidden;*/
  /*border: 1px solid transparent;*/
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.recommended-product ul li .img_box:hover .icon {
  opacity: 1;
}
.recommended-product ul li .img_box .icon {
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
.recommended-product ul li .img_box .icon a {
  margin: 0 4px;
  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;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a img {
  -webkit-filter: invert(0);
  filter: invert(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a:hover {
  background-color: var(--color);
}
.recommended-product ul li .img_box .icon a:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.recommended-product ul li .img_box .img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.recommended-product ul li h4 {
  font-size: calc(0.525vw + 14px);
  font-family: var(--font);
  text-align: center;
  padding: 0 25px;
  margin-top: 15px;
}
.newdet-page {
  padding: 0 0 10px;
}
.newdet-page .header {
  max-width: 1520px;
  width: 100%;
  padding: 55px;
  /*background: #fff;*/
  margin: 0 auto;
  text-align: center;
}
.newdet-page .header .categoty {
  display: inline-block;
    font-size: calc(0.1055vw + 14px);
    color: #fff;
    background: var(--color);
    padding: 5px 15px;
  text-transform: uppercase;
}
.newdet-page .header h1 {
  font-size: 48px;
  line-height: 1.4;
  margin: 20px 71px 0;
}
.newdet-page .header .post_meta {
  margin-top: 26px;
}
.newdet-page .header .post_meta span {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author_avatar {
  margin-right: 11px;
}
.newdet-page .header .post_meta .photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.newdet-page .header .post_meta .post_author_name {
  font-size: calc(0.1055vw + 14px);
  line-height: 1;
}
.newdet-page .header .post_meta .post_author {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background:#fff;
  border-radius: 50%;
  margin: 0 10px 0;
}
.newdet-page .header .post_meta .post_date {
    font-size: calc(0.1055vw + 14px);
    color: #fff;
}
.newdet-page .header .post_meta .post_date::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  /*background: #83827F;*/
  border-radius: 50%;
  margin: -6px 10px 0;
}
.newdet-page .header .post_meta .post_meta_number {
  font-size: 14px;
  color: #83827F;
}
.newdet-page .content {
  margin-top: 40px;
  font-size: calc(0.2085vw + 14px);
  line-height: 32px;
  color: #fff;
  opacity: 0.8;
}
.newdet-page .share {
  max-width: 1520px;
  width: 100%;
  margin: 40px auto 0;
  padding: 28px 0;
  border-top: 1px solid #d1d0c8;
  border-bottom: 1px solid #d1d0c8;
  text-align: right;
}
.newdet-page .share a {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  font-size: calc(0.315vw + 14px);
  background: #fff;
  margin: 3px 0 3px 7px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.newdet-page .share a:first-child {
  margin-left: 0;
}
.newdet-page .share a:nth-child(1) {
  background: #48bde9;
  color: #fff;
}
.newdet-page .share a:nth-child(2) {
  background: #4f5fbf;
  color: #fff;
}
.newdet-page .share a:nth-child(3) {
  background: #7a7e83;
  color: #fff;
}
.newdet-page .share a:nth-child(4) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:nth-child(5) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:hover {
  margin-top: -3px;
}
.newdet-page .m-link {
  /*max-width: 1060px;*/
  margin: 40px auto 0;
}
.newdet-page .m-link a {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .m-link a em {
    display: block;
    font-size: calc(0.2085vw + 14px);
    line-height: 32px;
    color: #fff;
}
.newdet-page .m-link a:first-child i {
  margin-right: 10px;
}
.newdet-page .m-link a:last-child {
  text-align: right;
}
.newdet-page .m-link a:last-child i {
  margin-left: 10px;
}
.newdet-page .m-link a span {
    font-size: calc(0.2085vw + 14px);
    line-height: 32px;
  /*font-weight: bold;*/
}
.newdet-page .m-link a:hover {
  color: #fff;
}
.newdet-page .prodet-page {
  padding: 0;
}
.newdet-page .prodet-2 {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
}
.newdet-b .prodet-2 .ret .slide .con .right {
  padding: 0;
}
.newdet-page .prodet-3 {
  margin: 60px auto 0;
}
@media screen and (max-width: 1100px) {
  .newdet-page .header h1 {
    font-size: 50px;
    margin: 20px 40px 0;
  }
  .news-page .sidebar-right ul li{
    width: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .newdet-page {
    padding: 60px 0;
  }
  .newdet-page .header h1 {
    font-size: 40px;
    margin: 20px 27px 0;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page {
    padding: 30px 0;
  }
  .newdet-page .header {
    padding: 30px 20px;
  }
  .newdet-page .header h1 {
    font-size: 34px;
    margin: 20px 20px 0;
  }
  .newdet-page .content {
    margin-top: 20px;
  }
  .newdet-page .share {
    margin: 20px auto 0;
  }
  .newdet-page .m-lin {
    font-size: calc(0.1055vw + 14px);
  }
  .news-page .sidebar-right ul li .img img{
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 500px) {
  .news-page .sidebar-right ul li{
    width: 100% !important;
  }
  .newdet-page .header h1 {
    font-size: calc(0.525vw + 14px);
    margin: 20px 0px 0;
  }
  .newdet-page .content {
    font-size: calc(0.1055vw + 14px);
    line-height: 30px;
  }
  .newdet-page .m-link a {
    display: block;
    width: 100%;
  }
  .newdet-page .m-link a:last-child {
    text-align: left;
    margin-top: 20px;
  }
}
   .seoPublic .title {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 2em;
    }

    .seoPublic>div {
        padding: 60px 0;
    }

    .seoPublic>div:nth-child(odd) {
        background: transparent;
    }

    .seoPublic .Auxil-about .box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

    .seoPublic .Auxil-about .box .left {
        width: 40%;
       
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 100%;
        background-size: cover;
        background-position: center center;
        display: block;
      
    }

    .seoPublic .Auxil-about .box .left img {
        width: 100%;
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 60%;
        padding-left: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: calc(0.525vw + 14px);
        font-weight: normal;
        line-height: 1.2;
        margin-bottom: 1em;
    }

    .seoPublic .Auxil-about .box .right .text {
        font-size: calc(0.1055vw + 14px);
        line-height: 1.8;
        color: #fff;
        max-height: 400px;
        overflow: auto;
    }

    .seoPublic .Auxil-honor .list ul {
        margin: -10px;
    }

    .seoPublic .Auxil-honor .list ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-honor .list ul li a {
        display: block;
    }

    .seoPublic .Auxil-honor .list ul li a img {
        width: 100%;
    }

    .seoPublic .Auxil-news .list ul {
        margin: -13px;
    }

    .seoPublic .Auxil-news .list ul li {
        padding: 13px;
    }

    .seoPublic .Auxil-news .list ul li a.img-box {
        display: block;
        background-size: cover;
        background-position: center center;
    }

    .seoPublic .Auxil-news .list ul li a.img-box img {
        width: 100%;
    }

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

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: calc(0.415vw + 14px);
        line-height: 1.4;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-news .list ul li .content time {
        font-size: 14px;
        margin-top: .5em;
        display: block;
    }

    .seoPublic .Auxil-news .list ul li .content p {
        font-weight: 300;
        font-size: calc(0.1055vw + 14px);
        line-height: 1.4;
         margin: 1em 0 2em 0;
    }

    .seoPublic .Auxil-news .list ul li .content a.link {
        font-weight: 300;
        font-size: calc(0.1055vw + 14px);
        text-transform: uppercase;
        line-height: 1;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        border-bottom: 1px solid transparent;
        display: inline-block;
    }

    .seoPublic .Auxil-news .list ul li .content a.link:hover {
        border-color: var(--color);
        color: var(--color);
    }

    .seoPublic .Auxil-form .form ul {
        margin: -10px;
    }

    .seoPublic .Auxil-form .form ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea {
        display: block;
        width: 100%;
        border: 1px solid #eee;
        font-size: calc(0.1055vw + 14px);
        padding: 8px 15px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-form .form ul li textarea {
        height: 100px;
    }

    .seoPublic .Auxil-form .form ul li input:focus,
    .seoPublic .Auxil-form .form ul li textarea:focus {
        border-color: var(--color);
    }

    .seoPublic .Auxil-form .form ul li.wid-100 {
        width: 100%;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"] {
        width: auto;
        display: inline-block;
        padding-left: 25px;
        padding-right: 25px;
        background: var(--color);
        color: whitesmoke;
        border: none;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
        background: #222;
    }

    .seoPublic .seoIndustry .text {
        font-size: calc(0.1055vw + 14px);
        line-height: 1.8;
        color: #666;
    }

    .seoPublic .text a {
        color: #fff !important;
    }

    .seoPublic .text a:hover {
        text-decoration: underline;
    }

    .seoPublic .Auxil-through {
        padding: 15px 0;
        background: none !important;
    }

    .seoPublic .Auxil-through a {
        display: inline-block;
        padding: 10px 25px;
        font-size: 14px;
        color: black;
        border: 1px solid #eee;
        background: #f8f8f8;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-through a:hover {
        background: var(--color);
        color: white;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -20px -25px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 20px 25px;
    }

    .seoPublic .Auxil-related .list ul li .box {
        display: block;
        background: white;
        -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    }

    .seoPublic .Auxil-related .list ul li .box a.img-box {
        display: block;
    }

    .seoPublic .Auxil-related .list ul li .box .content {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: calc(0.415vw + 14px);
        color: #111;
        font-weight: 500;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content p {
        display: block;
        font-size: calc(0.1055vw + 14px);
        color: #888;
        line-height: 1.6;
        font-weight: 400;
        margin: .5em 0;
        height: 4.8em;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color);
        font-size: calc(0.1055vw + 14px);
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more i {
        margin-left: 5px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
        color: white;
        background: var(--color);
    }

    @media screen and (max-width: 1400px) {
        .seoPublic .title {
            font-size: 28px;
            margin-bottom: 1.5em;
        }

        .seoPublic .Auxil-about .box .right div.title,
        .seoPublic .Auxil-related .list ul li .box .content div.h3 {
            font-size: calc(0.315vw + 14px);
        }

        .seoPublic .Auxil-form .form ul li input,
        .seoPublic .Auxil-form .form ul li textarea,
        .seoPublic .Auxil-about .box .right .text,
        .seoPublic .Auxil-news .list ul li .content p,
        .seoPublic .seoIndustry .text,
        .seoPublic .Auxil-related .list ul li .box .content p {
            font-size: 14px;
        }

        .seoPublic .Auxil-news .list ul li .content div.h6 {
            font-size: calc(0.2085vw + 14px);
        }

        .seoPublic .Auxil-related .list ul li .box .content a.more {
            font-size: 14px;
            line-height: 34px;
            height: 34px;
            padding: 0 15px;
        }

        .seoPublic .Auxil-related .list ul li {
            padding: 15px;
        }

        .seoPublic .Auxil-related .list ul {
            margin: -15px;
        }
    }

    @media screen and (max-width: 1000px) {
        .seoPublic .title {
            font-size: calc(0.525vw + 14px);
            margin-bottom: 1em;
        }

        #cp-Nav {
            display: block;
        }

        #cp-Nav .nav {
            padding: 0 15px;
        }

        #cp-Nav .nav div.title {
            font-size: calc(0.2085vw + 14px);
            font-weight: bold;
            padding: 8px 10px;
            background: var(--color);
            border-radius: 5px;
            color: white;
            position: relative;
        }

        #cp-Nav .nav div.title i{
            position: absolute;
            top: 12px;
            right: 10px;
        }

        #cp-Nav .nav i.mask {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 230;
            background: rgba(0, 0, 0, 0.2);
        }

        #cp-Nav .nav>ul {
            display: none;
        }

        #cp-Nav .nav ul {
            position: fixed;
            top: 10%;
            max-height: 80%;
            left: 5%;
            width: 90%;
            padding: 20px;
            border-radius: 5px;
            background: white;
            z-index: 300;
            font-size: calc(0.1055vw + 14px);
            overflow: auto;
        }

        #cp-Nav .nav ul ul {
            padding: 0 10px;
            font-size: 14px;
            position: static;
            max-height: none;
            width: 100%;
            margin: 10px 0;
        }

        #cp-Nav .nav ul li a {
            display: block;
            padding: 5px 0;
            line-height: 28px;
        }

        .seoPublic .Auxil-about .box {
            display: block;
        }

        .seoPublic .Auxil-about .box .right {
            width: 100%;
            padding: 0;
            margin-top: 20px;
        }

        .seoPublic .Auxil-about .box .left {
            width: 100%;
            padding: 0;
        }

        .seoPublic .Auxil-about .box .left .img {
            height: 300px;     
        }

        .seoPublic .Auxil-about .box .right div.h3 {
            font-size: calc(0.2085vw + 14px);
        }

        .seoPublic>div {
            padding: 30px 0;
        }

        .seoPublic .Auxil-about .box .right .text {
            max-height: none;
        }
    }
    .Auxil-form .title{
      margin-bottom: 0;
    }
    @media (max-width: 1000px) {
      #footer .f-head{
        flex-wrap: wrap;
      }
    }
            .pb-150 {
          padding-bottom: calc(6.77vw + 20px) !important;
        }
    
        .pt-150 {
          padding-top: calc(6.77vw + 20px) !important;
        }
    
        .pb-140 {
          padding-bottom: calc(6.25vw + 20px) !important;
        }
    
        .pt-140 {
          padding-top: calc(6.25vw + 20px) !important;
        }
    
        .pb-130 {
          padding-bottom: calc(5.75vw + 20px) !important;
        }
    
        .pt-130 {
          padding-top: calc(5.75vw + 20px) !important;
        }
    
        .pb-120 {
          padding-bottom: calc(5.21vw + 20px) !important;
        }
    
        .pt-120 {
          padding-top: calc(5.21vw + 20px) !important;
        }
    
        .pb-110 {
          padding-bottom: calc(4.65vw + 20px) !important;
        }
    
        .pt-110 {
          padding-top: calc(4.65vw + 20px) !important;
        }
    
        .pb-80 {
          padding-bottom: calc(3.1267vw + 20px) !important;
        }
    
        .pt-80 {
          padding-top: calc(3.1267vw + 20px) !important;
        }
    
        .pb-100 {
          padding-bottom: calc(4.1667vw + 20px) !important;
        }
    
        .pt-100 {
          padding-top: calc(4.1667vw + 20px) !important;
        }
    
        .pb-90 {
          padding-bottom: calc(3.65vw + 20px) !important;
        }
    
        .pt-90 {
          padding-top: calc(3.65vw + 20px) !important;
        }
        #inner-banner .mbx{
          display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
        }
            #header > .nav > .menu .menu-box,#index-body .sy-3 .container .sy3-c,
            .news1 .container .new1-btns .new1-btn,
            .news1 .container .sy-6-m .sy-6-m-c,
            .bigImg ul,
            .prodet-page .prodet-right .box .left .smallImg ul li .img_box,
            .prodet-page .prodet-right .box .right .Auxil-through .prev .img_box, .prodet-page .prodet-right .box .right .Auxil-through .next .img_box,
            #index-body .sy-6 .container .sy-6-m .sy-6-m-c,
            #index-body .sy-7 .container .sy7-r .li,
            #footer .f-head .f-c,
            .sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c,
            .about-page .about-5 .container form,
            .about-page .about-5 .container  li,
            .contact-page .about-5 .container form,
            .contact-page .about-5 .container li.mb-30,
            .capabilities-page .capabilities-2 .container .sy3-c,
            .capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c,
            .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c,
            .capabilities-page .capabilities-7 .container .sy3-c,
            .about-page .about-3 .container .about-3-m .about-3-c,
            .pro-box .pro-left .menu > li .menu-a,
            .product-page .pro-box .product-right ul li .img-box,
            .prodet-page .prodet-3 .content ul li .img .img-box,
            .recommended-product ul li .img_box
            {
      border: 1px solid transparent;
      position: relative;
    }
 #index-body .sy-1 .carousel-item,
    .capabilities-page .capabilities-1 .container .capabilities1-m{
      border: 1px solid transparent;
    }
    .contact-page .about-5 .container .about-5-box1 input,
    .contact-page .about-5 .container textarea
    {
      position: relative;
      z-index: 4;
      border: none !important;
    }
    .product-page .pro-box .product-right ul li .img-box,
    .prodet-page .prodet-3 .content ul li .img .img-box{
      overflow: unset;
    }
    .prodet-page .prodet-3 .content ul li .img .img-box::before,
    .pro-box .pro-left .menu > li .menu-a::before,
    .product-page .pro-box .product-right ul li .img-box::before,
    .recommended-product ul li .img_box::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(123deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 5px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
    z-index:0;
}
    #index-body .sy-1 .carousel-item::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 34px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
    z-index:0;
}
    .about-page .about-3 .container .about-3-m .about-3-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 30px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
    z-index:0;
}
    .capabilities-page .capabilities-7 .container .sy3-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 30px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
    z-index:0;
}
   .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
    z-index:0;
}
    .capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .capabilities-page .capabilities-2 .container .sy3-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .capabilities-page .capabilities-1 .container .capabilities1-m::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #336BB1, #3467D7, #2F8CDA);
   border-radius: 34px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .contact-page .about-5 .container li.mb-30::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(-15deg, #0980C2, #3467D7, #41B9FF);
   border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .contact-page .about-5 .container form::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 34px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .about-page .about-5 .container .about-5-box1 input,.about-page .about-5 .container textarea{
      border: none !important;
    }
    .about-page .about-5 .container  li::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(-15deg, #0980C2, #3467D7, #41B9FF);
   border-radius:20px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .about-page .about-5 .container form::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius:34px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius:20px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    #footer .f-head .f-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
   border-radius:20px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .prodet-page .prodet-right .box .left .smallImg ul li .img_box::before,
    .prodet-page .prodet-right .box .right .Auxil-through .prev .img_box::before, .prodet-page .prodet-right .box .right .Auxil-through .next .img_box::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
   /*border-radius:20px; */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
#index-body .sy-7 .container .sy7-r .li::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(-15deg, #06233C, #3467D7, #081024, #052139);
   border-radius:20px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
#index-body .sy-6 .container .sy-6-m .sy-6-m-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
   border-radius:20px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
.prodet-page .prodet-right .box .right .btn{
  border-bottom: none;
  position: relative;

}
.prodet-page .prodet-right .box .right .btn::before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:  linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
}
    .bigImg ul::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(123deg, #06233C, #3467D7, #081024, #052139);
   /*border-radius:20px; */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .news1 .container .sy-6-m .sy-6-m-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
   border-radius:20px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    .news1 .container .new1-btns .new1-btn::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
   border-radius:25px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
    #header > .nav > .menu .menu-box::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
   border-radius:35px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
#index-body .sy-3 .container .sy3-c::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
   border-radius: 30px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}
#index-body .sy-7 .container .sy7-r .f-input,
#index-body .sy-6 .container .sy-6-m .sy-6-m-c .sy-6-m-c1,
.about-page .about-5 .container ul{
  position: relative;
  z-index: 4;
}
/*#index-body .sy-1 .carousel-item{
        border: 1px solid transparent;
 
}
    #index-body .sy-1 .carousel-item::before{
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
   border-radius:35px; 
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 1px;
}*/
.about-page .about-5 .container{
  padding: 0;
}
#index-body .sy-1 .carousel-item .sy1-r-bg{
  clip-path: inset(60% 10% 0 0);
}
.news1 .container .sy-6-m .sy-6-m-c{
  position: relative;

}
.news1 .container .sy-6-m .sy-6-m-c .sy-6-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 66;
}
.recommended-product h2{
font-weight: bold;
}
@media (max-width: 1250px) {
  #banner .swiper-main .left{
    left: 0;
    padding: 0 15px;
  }
  #index-body .sy-1 .carousel-item::before,
  #index-body .sy-1 .carousel-item .sy1-r-bg,
  #footer #ewm2{
    display: none;
  }
  #index-body .sy-1 .carousel-item{
    transform: none;
    position: static;
      margin-bottom:  calc(2.0925vw + 20px);
  }
  #index-body .sy-1 .carousel-section {
  position: relative;
  overflow: unset;
  height: auto;

}
}
@media (max-width: 700px){
  .about-page .about-1 .container .about-1-play{
    transform: scale(0.5) !important;
  }
  .about-page .about-4 .container .about-history .about-history-m{
    height: auto;
    margin-bottom: 10px;
  }
  .about-page .about-4 .container .about-history{
    height: auto;
  }
  .about-page .about-4 .container .about-history .about-history-c1{
    margin-top: 10px;
  }
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n + 1) .about-history-c1{
    margin-left: 0;
  }
  .about-page .about-4 .container .about-history .about-history-c-h{
    text-align: left;
  }
  .about-page .about-4 .container .about-history .about-history-m:nth-of-type(2n) .about-history-c{
    justify-content:flex-start;
  }

}
.seoPublic .title,
.prodet-page .prodet-3 > h3,
.recommended-product h2{
font-size: calc(0.9385vw + 14px) !important;
}

.seoPublic .Auxil-about .box .left img {
     border-radius: 20px;
 }
  @media (max-width: 1250px){
   .contact-page .about-5 .container .form{
     margin-top: calc(1.77vw + 14px);
     width: 100%;
   }
 }
 @media (max-width: 500px){
   .about-page .about-2 .container .i-1-4 li {
     width: 100%;
   }
 }
 /*//////////////////////////////////*/
/* 扬州领航钢铁有限公司 - 浏览器兼容Mask样式解决方案 */

/* 基础容器样式 */
#inner-banner .mbx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

/* 统一边框容器基础样式 */
#header > .nav > .menu .menu-box,
#index-body .sy-3 .container .sy3-c,
.news1 .container .new1-btns .new1-btn,
.news1 .container .sy-6-m .sy-6-m-c,
.bigImg ul,
.prodet-page .prodet-right .box .left .smallImg ul li .img_box,
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box,
#index-body .sy-6 .container .sy-6-m .sy-6-m-c,
#index-body .sy-7 .container .sy7-r .li,
#footer .f-head .f-c,
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c,
.about-page .about-5 .container form,
.about-page .about-5 .container li,
.contact-page .about-5 .container form,
.contact-page .about-5 .container li.mb-30,
.capabilities-page .capabilities-2 .container .sy3-c,
.capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c,
.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c,
.capabilities-page .capabilities-7 .container .sy3-c,
.about-page .about-3 .container .about-3-m .about-3-c,
.pro-box .pro-left .menu > li .menu-a,
.product-page .pro-box .product-right ul li .img-box,
.prodet-page .prodet-3 .content ul li .img .img-box,
.recommended-product ul li .img_box {
    border: 1px solid transparent;
    position: relative;
}

/* 特殊容器样式 */
#index-body .sy-1 .carousel-item,
.capabilities-page .capabilities-1 .container .capabilities1-m {
    border: 1px solid transparent;
}

/* 表单输入框样式 */
.contact-page .about-5 .container .about-5-box1 input,
.contact-page .about-5 .container textarea {
    position: relative;
    z-index: 4;
    border: none !important;
}

/* 图片容器溢出处理 */
.product-page .pro-box .product-right ul li .img-box,
.prodet-page .prodet-3 .content ul li .img .img-box {
    overflow: unset;
}

/* 通用Mask样式 - 现代浏览器 */
.prodet-page .prodet-3 .content ul li .img .img-box::before,
.pro-box .pro-left .menu > li .menu-a::before,
.product-page .pro-box .product-right ul li .img-box::before,
.recommended-product ul li .img_box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(123deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 5px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
    z-index: 0;
}

/* 轮播项特殊样式 */
#index-body .sy-1 .carousel-item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 34px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
    z-index: 0;
}

/* 关于页面样式 */
.about-page .about-3 .container .about-3-m .about-3-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 30px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
    z-index: 0;
}

/* 能力页面样式 */
.capabilities-page .capabilities-7 .container .sy3-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 30px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
    z-index: 0;
}

.capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
    z-index: 0;
}

.capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

.capabilities-page .capabilities-2 .container .sy3-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

.capabilities-page .capabilities-1 .container .capabilities1-m::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #336BB1, #3467D7, #2F8CDA);
    border-radius: 34px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 联系页面样式 */
.contact-page .about-5 .container li.mb-30::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(-15deg, #0980C2, #3467D7, #41B9FF);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

.contact-page .about-5 .container form::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 34px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 关于页面表单样式 */
.about-page .about-5 .container .about-5-box1 input,
.about-page .about-5 .container textarea {
    border: none !important;
}

.about-page .about-5 .container li::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(-15deg, #0980C2, #3467D7, #41B9FF);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

.about-page .about-5 .container form::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 34px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 可持续发展页面样式 */
.sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 页脚样式 */
#footer .f-head .f-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 产品详情页面图片样式 */
.prodet-page .prodet-right .box .left .smallImg ul li .img_box::before,
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box::before,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
    /* border-radius: 20px; */
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* SY-7页面样式 */
#index-body .sy-7 .container .sy7-r .li::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(-15deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* SY-6页面样式 */
#index-body .sy-6 .container .sy-6-m .sy-6-m-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 产品详情按钮样式 */
.prodet-page .prodet-right .box .right .btn {
    border-bottom: none;
    position: relative;
}

.prodet-page .prodet-right .box .right .btn::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
}

/* 大图轮播样式 */
.bigImg ul::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(123deg, #06233C, #3467D7, #081024, #052139);
    /* border-radius: 20px; */
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 新闻页面样式 */
.news1 .container .sy-6-m .sy-6-m-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
    border-radius: 20px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

.news1 .container .new1-btns .new1-btn::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
    border-radius: 25px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* 头部菜单样式 */
#header > .nav > .menu .menu-box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(0, #336BB1, #3467D7, #2F8CDA);
    border-radius: 35px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* SY-3页面样式 */
#index-body .sy-3 .container .sy3-c::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(180deg, #06233C, #3467D7, #081024, #052139);
    border-radius: 30px;
    
    /* 现代浏览器标准语法 */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    /* WebKit浏览器前缀 */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    
    padding: 1px;
}

/* IE浏览器降级方案 - 使用特征检测 */
@supports not (mask-composite: exclude) {
    /* 为不支持mask的浏览器提供降级样式 */
    .prodet-page .prodet-3 .content ul li .img .img-box::before,
    .pro-box .pro-left .menu > li .menu-a::before,
    .product-page .pro-box .product-right ul li .img-box::before,
    .recommended-product ul li .img_box::before,
    #index-body .sy-1 .carousel-item::before,
    .about-page .about-3 .container .about-3-m .about-3-c::before,
    .capabilities-page .capabilities-7 .container .sy3-c::before,
    .capabilities-page .capabilities-5 .container .capabilities5-m .capabilities5-c::before,
    .capabilities-page .capabilities-4 .container .capabilities4-m .capabilities4-c::before,
    .capabilities-page .capabilities-2 .container .sy3-c::before,
    .capabilities-page .capabilities-1 .container .capabilities1-m::before,
    .contact-page .about-5 .container li.mb-30::before,
    .contact-page .about-5 .container form::before,
    .about-page .about-5 .container li::before,
    .about-page .about-5 .container form::before,
    .sustainability-page .sustainability-2 .container .sustainability-2-m .sustainability-2-r .sustainability-2-c::before,
    #footer .f-head .f-c::before,
    .prodet-page .prodet-right .box .left .smallImg ul li .img_box::before,
    .prodet-page .prodet-right .box .right .Auxil-through .prev .img_box::before,
    .prodet-page .prodet-right .box .right .Auxil-through .next .img_box::before,
    #index-body .sy-7 .container .sy7-r .li::before,
    #index-body .sy-6 .container .sy-6-m .sy-6-m-c::before,
    .bigImg ul::before,
    .news1 .container .sy-6-m .sy-6-m-c::before,
    .news1 .container .new1-btns .new1-btn::before,
    #header > .nav > .menu .menu-box::before,
    #index-body .sy-3 .container .sy3-c::before {
        /* IE降级：使用边框和背景色模拟效果 */
        border: 1px solid;
        border-image: linear-gradient(45deg, #06233C, #3467D7, #081024, #052139) 1;
        background: transparent;
        mask: none;
        -webkit-mask: none;
    }
}

/* 移动端优化 */
@media (max-width: 768px) {
    /* 减少复杂效果以提升移动端性能 */
    .prodet-page .prodet-3 .content ul li .img .img-box::before,
    .pro-box .pro-left .menu > li .menu-a::before,
    .product-page .pro-box .product-right ul li .img-box::before,
    .recommended-product ul li .img_box::before {
        border-radius: 3px;
    }
    
    #header > .nav > .menu .menu-box::before,
    #index-body .sy-1 .carousel-item::before {
        border-radius: 20px;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    /* 增强边框可见性 */
    #header > .nav > .menu .menu-box,
    #index-body .sy-3 .container .sy3-c,
    .news1 .container .new1-btns .new1-btn,
    .news1 .container .sy-6-m .sy-6-m-c {
        border: 2px solid #06233C;
    }
}
.about-page .about-5 .container li input,
.about-page .about-5 .container li textarea{
  position: relative;
  z-index: 4;
}