/*@font-face {
  font-family: 'BaskervilleOldStyle';
  src: url('../fonts/BaskervilleOldStyle.eot');
  src: url('../fonts/BaskervilleOldStyle.eot?#iefix') format('embedded-opentype'), url('../fonts/BaskervilleOldStyle.woff2') format('woff2'), url('../fonts/BaskervilleOldStyle.woff') format('woff'), url('../fonts/BaskervilleOldStyle.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}*/
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.eot');
    src: url('../fonts/Inter-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff'),
        url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.eot');
    src: url('../fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.eot');
    src: url('../fonts/Inter-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff'),
        url('../fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
.bold {
    font-weight: bold;
}
.semiBold {
    font-weight: 600;
}
.regular {
    font-weight: 400;
}
.italic {
  font-style: italic;
}


#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_froms {
  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_froms h4 {
  font-size: 18px;
  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_froms form {
  margin-top: 40px;
}
#pups_froms 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_froms i.close::after,
#pups_froms 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_froms i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_froms i.close:hover {
  background: #6076f1;
}
#pups_froms i.close:hover::before,
#pups_froms i.close:hover::after {
  background: white;
}
#pups_froms ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_froms ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_froms ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_froms ul li input,
#pups_froms 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: 16px;
}
#pups_froms ul li input:focus,
#pups_froms ul li textarea:focus {
  border-color: #6076f1;
}
#pups_froms ul li textarea {
  height: 80px;
}
#pups_froms ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: #6076f1;
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_froms ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_froms ul li:last-child {
  margin-bottom: 0;
}
.right_nav_list {
  position: fixed;
  bottom: 100px;
  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: var(--color);
  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.52083vw + 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: 16px;
  }
  .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: #6076f1;
  color: white;
  right: 2%;
  bottom: 40%;
  font-size: calc(0.52083vw + 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;
}
body {
  overflow-x: hidden;
  position: relative;
  font-family: 'Inter';
  font-weight: 400;
  margin: 0 auto;
  color: #111;
  font-size: 16px;
  --color: #0031ae;
}
#ewm img,
#ewm canvas {
  display: block;
  width: 100%;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.container {
  width: 1590px;
  padding: 0 15px;
}
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 #404040;
  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;
}
.page-header01 {
  position: static;
}
#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: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content .h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -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 a {
  display: block;
}
#header img {
  display: block;
  width: 100%;
}
#header > .nav {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  /*border-bottom: 1px solid rgba(220, 220, 220, 0);*/
      background-color: #fff;
  
}
#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: 16px;
  font-weight: 400;
}
#header > .nav > .menu {
  padding: 35px 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;
}
#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;
}
#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: 57px;
  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:first-child {
  margin-left: 0;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > 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.6;
  position: relative;
  font-size: 18px;
  text-transform: capitalize;
  color: #111;
  font-weight: 500;
}
#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: 100%;
  height: 1px;
  bottom: 2px;
  left: 0;
  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: #f7f7f7;
  box-shadow: 0px -0.4px 9px 3px rgb(0 0 0 / 8%);
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item {
  color: #000;
  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: 20px;
  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-color: #000;
  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 .right {
  position: relative;
  z-index: 1;
}
#header > .nav > .menu .menu-box .right .search {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  margin-right: 19px;
}
#header > .nav > .menu .menu-box .right .lang_cont {
  padding: 0 19px;
  position: relative;
}
#header > .nav > .menu .menu-box .right .lang_cont::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 13px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #111;
  opacity: 0.5;
}
#header > .nav > .menu .menu-box .right .lang_cont::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 13px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #111;
  opacity: 0.5;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont {
  border-radius: 50%;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC {
  color: #111;
  text-transform: capitalize;
}
#header > .nav > .menu .menu-box .right .lang_cont .lang {
  padding-top: 5px;
}
#header > .nav > .menu .menu-box .right .open_btn {
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  text-align: center;
  color: #fff;
  margin-left: 19px;
}
#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 .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: 16px;
  margin-left: 10px;
  color: #000;
}
#header.active ,#header.inner_active  {
  /*border-bottom: 1px solid rgba(220, 220, 220, 0.4);
  background-color: #333;*/
  box-shadow: 0px -0.4px 9px 3px rgb(0 0 0 / 8%);
}
@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;
  }
}
@keyframes rotateImg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes transAni2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes transAni2 {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes transAni2 {
  0% {
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes transAni2 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@-moz-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@-o-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
#banner .swiper ul li {
  position: relative;
}
#banner .swiper ul li .container {
  position: absolute;
  bottom: 95px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
#banner .swiper ul li .container .titl {
  max-width: 850px;
  line-height: 1.1;
}
#banner .swiper ul li .container .tex {
  line-height: 1.25;
  max-width: 730px;
  color: #fff;
}
#banner .swiper ul li.swiper-slide-active .titl {
  -webkit-animation: fadeInRightSmall 1s linear;
  -moz-animation: fadeInRightSmall 1s linear;
  -o-animation: fadeInRightSmall 1s linear;
  animation: fadeInRightSmall 1s linear;
}
#banner .swiper ul li.swiper-slide-active .tex {
  -webkit-animation: fadeInLeftSmall 1s linear;
  -moz-animation: fadeInLeftSmall 1s linear;
  -o-animation: fadeInLeftSmall 1s linear;
  animation: fadeInLeftSmall 1s linear;
}
.titl span {
  color: var(--color);
}
.tex {
  color: #404040;
}
.Hbtn {
  color: #111;
  max-width: 230px;
}
.Hbtn a {
  display: inline-block;
  display: flex;
  transition: all .3s linear;
}
.Hbtn a span {
  display: block;
  margin-left: 33px;
  position: relative;
}
.Hbtn a span::after {
  content: "";
  width: 60px;
  height: 9px;
  background-image: url(../images/line.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
   transition: all .3s linear;
}
.Hbtn a span img {
  display: inline-block;
  filter: grayscale(1) brightness(1);
  -webkit-filter: grayscale(1) brightness(1);
   transition: all .3s linear;
}
.Hbtn a:hover span img {
  transform: scale(1.15);
  filter: grayscale(0) brightness(1);
  -webkit-filter: grayscale(0) brightness(1);
}
.Hbtn a:hover {
  color: var(--color);
}
.Hbtn a:hover span::after {
  background-image: url(../images/line1.png);
  
}
#index-body {
  position: relative;
  z-index: 2;
}
#index-body .init-1 {
  background-size: cover;
  position: relative;
  background-color: #f1f1f4;
}
#index-body .init-1 .container .top .datenUl {
  align-content: flex-start;
}
#index-body .init-1 .container .top .datenUl .detenLi .num {
  color: #111;
  transition: all 0.5s ease;
  padding-bottom: 10px;
}
#index-body .init-1 .container .top .datenUl .detenLi .num img {
  filter: brightness(0.2) grayscale(1);
  transition: all 0.5s ease;
}
#index-body .init-1 .container .top .datenUl .detenLi .num em {
  margin-left: 30px;
}
#index-body .init-1 .container .top .datenUl .detenLi .details {
  color: #404040;
}
#index-body .init-1 .container .top .datenUl .detenLi {
  width: 20%;
  box-sizing: border-box;
}
#index-body .init-1 .container .top .datenUl .detenLi:nth-child(1) {
  width: 21%;
}
#index-body .init-1 .container .top .datenUl .detenLi:nth-child(3) {
  width: 22%;
}
#index-body .init-1 .container .top .datenUl .detenLi:nth-child(4) {
  width: 19%;
}
#index-body .init-1 .container .top .datenUl .detenLi:nth-child(5) {
  max-width: 270px;
}
/*#index-body .init-1 .container .top .datenUl .detenLi {
  width:17%;
  }*/
#index-body .init-1 .container .top .datenUl .detenLi:hover .num {
  color: var(--color);
}
#index-body .init-1 .container .top .datenUl .detenLi:hover .num img {
  filter: brightness(1) grayscale(0);
}
#index-body .init-1 .container .bottom {
  position: relative;
}
#index-body .init-1 .container .bottom .left {
  width: 100%;
}
#index-body .init-1 .container .bottom .left .tex {
  line-height: 1.5;
}
#index-body .init-1 .container .bottom img.img {
  border-radius: 10px;
}
#index-body .init-1 .rightImg {
  position: absolute;
  right: 0;
  width: 43.75%;
  top: 445px;
}
#index-body .init-2 {
  padding-left: 40px;
  padding-right: 40px;
}
#index-body .init-2 ul li .liBox {
  width: 100%;
  transition: all 0.5s ease;
}
#index-body .init-2 ul li .liBox .img {
  margin: auto;
  border-radius: 10px;
}
#index-body .init-2 ul li .liBox .img img {
  border-radius: 10px;
}
#index-body .init-2 ul li .liBox .titl a {
  position: relative;
  padding-right: 98px;
  display: inline-block;
  width: 100%;
}
#index-body .init-2 ul li .liBox .titl a::after {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/iconMore.png);
  width: 98px;
  height: 7px;
  opacity: 0;
  transition: all 0.3s;
}
#index-body .init-2 ul li .liBox .titl a:hover::after {
  transform: translate(5px, -50%);
}
#index-body .init-2 ul li .liBox:hover {
  color: var(--color);
}
#index-body .init-2 ul li .liBox:hover .img img {
  box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.18);
}
#index-body .init-2 ul li .liBox:hover .titl a::after {
  opacity: 1;
}
#index-body .init-2 ul .slick-track {
  box-sizing: border-box;
  padding: 40px 0 100px;
}
#index-body .init-3 {
  position: relative;
}
#index-body .init-3 .init-3Bg {
  /*width: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);*/
  width: 96%;
  margin: auto;
  background-image: url(../images/init-3Bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
#index-body .init-3 .top .titleBox {
  max-width: 850px;
}
#index-body .init-3 .init-3Bg .content ul li {
  margin-bottom: 23px;
  box-shadow: 0px 9px 65px 0px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
  height: 110px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
#index-body .init-3 .init-3Bg .content ul li::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 49, 174,.1);
  left: 0;
  top: 0;
}
#index-body .init-3 .init-3Bg .content ul li .box {
  position: relative;
  z-index: 2;
}
#index-body .init-3 .init-3Bg .content ul li .Hbtn a span img {
  -webkit-filter: grayscale(6) brightness(5);
  filter: grayscale(6) brightness(5);
}
#index-body .init-3 .init-3Bg .content ul li .Hbtn a span::after {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#index-body .init-3 .init-3Bg .content ul li .Hbtn a:hover span::after {
  -webkit-filter: brightness(5) grayscale(1);
  filter: brightness(5) grayscale(1);
}
#index-body .init-3 .init-3Bg .content ul li .tit:hover {
  color: var(--color);
}
#index-body .init-3 .init-3Bg .content ul li .box .con {
  display: none;
  padding-top: 40px;
  color: #fff;
  max-width: 720px;
}
#index-body .init-3 .init-3Bg .content ul li.active {
  height: 530px;
}
#index-body .init-3 .init-3Bg .content ul li.active .Hbtn {
  display: none;
}
#index-body .init-3 .init-3Bg .content ul li.active .box .con {
  display: block;
}
#index-body .init-3 .centerImg {
  width: 81vw;
  height: 34vw;
  position: relative;
  margin: auto;
}
#index-body .init-3 .centerImg li {
  /*display: none;*/
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translateX(-10px);
  z-index: 0;
  opacity: 0;
  transition: all .3s linear;
}
#index-body .init-3 .centerImg li img {
  border-radius: 20px;
}
#index-body .init-3 .centerImg li.active {
  transform: translateX(0);
  z-index: 1;
  opacity: 1;
}
#index-body .init-3 .swiper {
  position: relative;
}
#index-body .init-3 .swiper::after {
  content: "";
  position: absolute;
  width: 1570px;
  height: 1px;
  background: linear-gradient(to right, rgba(129, 129, 129, 0.1) 0%, #818181 50%, rgba(129, 129, 129, 0.1) 100%);
  top: 9px;
  z-index: 0;
}
#index-body .init-3 .textBtn li span {
  display: block;
  width: 20px;
  height: 20px;
  border: 5px solid transparent;
  border-radius: 50%;
  margin: auto;
  position: relative;
  transition: all 0.3s ease;
  z-index: 5;
}
#index-body .init-3 .textBtn li span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #818181;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 5;
}
#index-body .init-3 .textBtn li p {
  color: #404040;
  line-height: 1.45;
  transition: all 0.3s ease;
  margin: auto;
  width: 80%;
}
#index-body .init-3 .textBtn li.swiper-slide-active p {
  color: var(--color);
}
#index-body .init-3 .textBtn li.swiper-slide-active span {
  border-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
}
#index-body .init-3 .textBtn li.swiper-slide-active span::after {
  background-color: var(--color);
}
/*#index-body .init-3 .textBtn li:nth-child(1) p {
  width: 250px;
}
#index-body .init-3 .textBtn li:nth-child(2) p {
  width: 180px;
}
#index-body .init-3 .textBtn li:nth-child(3) p {
  width: 150px;
}
#index-body .init-3 .textBtn li:nth-child(4) p {
  width: 190px;
}
#index-body .init-3 .textBtn li:nth-child(5) p {
  width: 110px;
}*/
#index-body .init-4 .top .titl {
  max-width: 630px;
  line-height: 1.27;
}
#index-body .init-4 .top .tex {
  max-width: 765px;
}
#index-body .init-4 .bottom {
  position: relative;
}
#index-body .init-4 .bottom .slickBtn div {
  width: 33px;
  height: 33px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid #000;
  opacity: 0.48;
}
#index-body .init-4 .bottom .slickBtn div i {
  color: #000;
}
#index-body .init-4 .bottom .slickBtn div.next {
  right: -89px;
}
#index-body .init-4 .bottom .slickBtn div.prev {
  left: -89px;
}
#index-body .init-4 .bottom .slickBtn div:hover {
  opacity: 1;
}
#index-body .init-4 ul li .img-box {
  border-radius: 5px;
}
#index-body .init-5 .topImg {
  position: relative;
}
#index-body .init-5 .topImg img {
  margin: auto;
}
#index-body .init-5 .topImg .play-btn {
  color: #111;
  background-color: rgba(255, 255, 255, 0.8);
  width: 147px;
  height: 147px;
  top: 45%;
}
#index-body .init-5 .topImg .play-btn i {
  border: none;
  margin-right: 9px;
}
#index-body .init-5 .bot {
  background-color: #f1f1f4;
  padding-top: 420px;
  margin-top: -325px;
}
#index-body .init-5 .bot .tex {
  line-height: 1.75;
}
#index-body .init-5 .bot ul {
  width: 100%;
}
#index-body .init-5 .bot ul li:last-child {
  padding-right: 0;
}
#index-body .init-5 .bot ul li .tex {
  line-height: 1.75;
}
#index-body .init-5 .listUl {
  width: 100%;
  margin-top: -165px;
}
#index-body .init-5 .listUl li {
  width: 17.8%;
  background-color: #ffffff;
  height: 330px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}
#index-body .init-5 .listUl li:nth-child(even) {
  background-color: #f1f1f4;
}
#index-body .init-5 .listUl li .content2 {
  width: 100%;
  display: none;
}
#index-body .init-5 .listUl li .content1,
#index-body .init-5 .listUl li .content2 {
  transition: all 0.1s;
}
#index-body .init-5 .listUl li.active {
  background-color: var(--color);
  width: 46.6%;
}
#index-body .init-5 .listUl li.active .content1 {
  display: none;
}
#index-body .init-5 .listUl li.active .content2 {
  display: block;
}
#index-body .init-6 ul li {
  height: 100%;
}
#index-body .init-6 ul li .list {
  border-radius: 10px;
  height: 100%;
}
#index-body .init-6 ul li .list a {
  border-radius: 10px;
  display: block;
  margin: auto;
  line-height: 1.66;
}
#index-body .init-6 ul li .list a:hover{
  color: var(--color);
}
#index-body .init-6 ul li .list:hover {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.18);
}
#index-body .init-6 ul .slick-list {
  padding: 40px 10px;
}
#footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -o-background-size: cover;
  background-size: cover;
  background-color: #f1f1f4;
}
#footer .top {
  border-bottom: 1px solid rgba(124, 124, 124, 0.33);
}
#footer .center .lists .list {
  color: #111;
}
#footer .center .lists .list .links .link a {
  transition: all 0.3s ease;
}
#footer .center .lists .list .links .link a:hover {
  color: var(--color);
}
#footer .center .lists .list1 {
  max-width: 265px;
}
#footer .center .lists .list1 .links li {
  width: 50%;
}
#footer .center .lists .list3 {
  max-width: 330px;
}
#footer .center .lists .list3 .links li img {
  margin-top: 5px;
  margin-right: 14px;
}
#footer .center .lists .list3 .links li:last-child {
  line-height: 2.5;
}
#footer .center .lists .list3 .links li:last-child img {
  margin-top: 12px;
}
#footer .center .lists .list3 .links li:last-child span {
  display: inline-block;
}
#footer .center .lists .list4 {
  max-width: 330px;
}
#footer .center .lists .list4 form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .center .lists .list4 input {
  border: none;
  border-radius: 5px;
  padding-left: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 6px;
  width: 100%;
  box-sizing: border-box;
}
#footer .center .lists .list4 input::placeholder {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}
#footer .center .lists .list4 input.name,
#footer .center .lists .list4 input.name {
  width: 161px;
}
#footer .center .lists .list4 input.inquery {
  background-color: #0031ae;
  border-radius: 5px;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}
#footer .center .lists .list4 input.inquery:hover {
  background-color: #111;
}
#footer .copyright {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  background-color: #464646;
}
#footer .copyright .container svg {
  height: 30px;
  width: auto;
  fill: rgba(255, 255, 255, 0.5);
  position: relative;
  top: 4px;
}
#footer .copyright .container a {
  margin: 0 5px;
}
#footer .copyright .container a img {
  margin-top: 8px;
  height: 16px;
}
#footer .copyright .container .left {
  width: 100%;
  position: relative;
  top: 0;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}
@media (max-width: 1800px) {
  #index-body .init-4 .bottom .slickBtn div.prev {
    left: -50px;
  }
  #index-body .init-4 .bottom .slickBtn div.next {
    right: -50px;
  }
}
@media screen and (max-width: 1700px) {
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
    margin-left: 30px;
  }
  #index-body .init-5 .topImg .play-btn {
    width: 130px;
    height: 130px;
  }
  #index-body .init-3 .init-3Bg .content ul li.active {
    height: 470px;
  }
}
@media (max-width: 1500px) {
  #index-body .init-4 .bottom .slickBtn div.next {
    right: -35px;
  }
  #index-body .init-4 .bottom .slickBtn div.prev {
    left: -35px;
  }
}
@media screen and (max-width: 1450px) {
  #header > .nav > .menu .menu-box .left {
    width: 24%;
  }
  #header > .nav > .menu .menu-box .right .search {
    margin-right: 10px;
  }
  #header > .nav > .menu .menu-box .right .lang_cont {
    padding: 0 10px;
  }
  #header > .nav > .menu .menu-box .right .open_btn {
    margin-left: 10px;
  }
  #index-body .init-1 .container .top .datenUl .detenLi {
    margin-bottom: 30px;
    width: 25%;
  }
  #index-body .init-1 .container .bottom .left {
    width: 57%;
  }
  #index-body .init-1 .rightImg {
    top: 400px;
  }
  #index-body .init-3 .swiper::after {
    width: 100%;
  }
  #index-body .init-3 .init-3Bg .content ul li.active {
    height: 420px;
  }
  #index-body .init-4 .top .tex {
    width: 50%;
  }
}
@media (max-width: 1250px) {
  body{
    height: auto;
  }
  .page-header01{
    position: -webkit-sticky;
    position: sticky;
  }
  #index-body .init-3 .init-3Bg .content ul li.active {
    height: 350px;
  }
  #index-body .init-4 .bottom {
    padding-bottom: 50px;
  }
  #index-body .init-4 .bottom .slickBtn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
  }
  #index-body .init-4 .bottom .slickBtn div {
    top: auto;
    transform: none;
    bottom: 0;
    position: relative;
    margin: auto;
  }
  #index-body .init-4 .bottom .slickBtn div.next {
    right: auto;
  }
  #index-body .init-4 .bottom .slickBtn div.prev {
    left: auto;
  }
  #index-body .init-5 .listUl {
    margin-top: 0;
    flex-wrap: wrap;
  }
  #index-body .init-5 .listUl li {
    width: 50%;
  }
  #index-body .init-5 .listUl li.active {
    width: 50%;
  }
  #footer .center .lists .list2 {
    display: none;
  }
}
@media (max-width: 1000px) {
  #index-body .init-1 .container .top .datenUl .detenLi {
    width: 50% !important;
    max-width: none !important;
  }
  #index-body .init-1 .container .top .datenUl .detenLi .details {
    margin-top: 15px;
  }
  #index-body .init-1 .container .bottom .left {
    width: 100%;
  }
  #index-body .init-1 .rightImg {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 10px auto;
    width: 60%;
    border-radius: 10px;
  }
  #index-body .init-2 ul li .liBox {
    max-width: 450px;
    margin: auto;
  }
  #index-body .init-2 ul li .liBox .titl a {
    width: 100%;
    display: block;
    text-align: center;
  }
  #index-body .init-2 ul li .liBox img {
    display: block;
    margin: 0 auto;
  }
  #index-body .init-3 .top .titleBox {
    margin-bottom: 25px;
  }
  #index-body .init-3 .init-3Bg .content ul li.active {
    height: 255px;
  }
  #index-body .init-5 .topImg .play-btn {
    top: 50%;
    width: 100px;
    height: 100px;
  }
  #index-body .init-5 .bot ul li {
    margin-bottom: 20px;
  }
  #index-body .init-5 .listUl li {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
  }
  #index-body .init-5 .bot {
    padding-top: 70px;
    margin-top: 0;
  }
  #index-body .init-5 .bot .tex.minTitl br {
    display: none;
  }
  #index-body .init-5 .listUl li.active {
    width: 100%;
  }
  #footer .center .lists .list1 {
    display: none;
  }
}
@media (max-width: 700px) {
  #banner .swiper ul li .container {
    bottom: 20%;
  }
  #banner .swiper ul li img {
    min-height: 340px;
    object-fit: cover;
    object-position: center;
  }
  #index-body .init-1 .container .top .datenUl .detenLi {
    width: 100% !important;
  }
  #index-body .init-1 .container .top .datenUl .detenLi .num {
    justify-content: center;
  }
  #index-body .init-1 .container .top .datenUl .detenLi .details {
    text-align: center;
  }
  #index-body .init-5 .topImg .play-btn {
    width: 70px;
    height: 70px;
  }
  #index-body .init-5 .topImg img {
    min-height: 230px;
    object-fit: cover;
    object-position: center;
  }
  #footer .center .lists .list3,
  #footer .center .lists .list4 {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }
  #footer .center .lists .list4 input.name,
  #footer .center .lists .list4 input.name {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #index-body .init-5 .topImg .play-btn::after,
  #index-body .init-5 .topImg .play-btn::before {
    display: none;
  }
}

.faq-page {
  background: #f5f5f5;
}
.faq-page .box ul {
  margin-right: -40px;
}
.faq-page .box ul li {
  padding-right: 40px;
  margin-bottom: 20px;
}
.faq-page .box ul li .title {
  padding: 30px 30px 30px 80px;
  cursor: pointer;
  position: relative;
  border: none;
  border: 1px solid #fff;
  margin-bottom: 0px;
  background-color: #fff;
}
.faq-page .box ul li .title::after {
  content: "\f27b";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 16px;
  position: absolute;
  top: 28px;
  left: 20px;
  background: #0031ae;
  padding: 9px 14px;
  color: #fff;
}
.faq-page .box ul li .title h6 {
  font-size: 30px;
  margin-bottom: 0;
  color: #000;
}
.faq-page .box ul li .accordion-info {
  display: none;
  padding: 20px;
  margin-top: 0px;
  margin-left: 0px;
  background: #fff;
  font-size: calc(0.52083vw + 14px);
  line-height: 1.7;
  color: #404040;
}
.faq-page .box ul li.active .title {
  color: #fff;
  background: #0031ae;
  border: 1px solid #0031ae;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.faq-page .box ul li.active .title h6 {
  color: #fff;
}
.faq-page .box ul li.active .title::after {
  background: #fff;
  color: #0031ae;
}
@media screen and (max-width: 1200px){
  .faq-page .init-2 .container .right {
    display: none;
  }
  .faq-page .init-2 .container .left {
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .faq-page .box ul {
    margin-right: 0;
  }
  .faq-page .box ul li {
    width: 100% !important;
    padding-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .box ul li .title::after {
    left: 10px;
  }
  .faq-page .box ul li .title {
    padding: 20px 10px 20px 66px;
  }
  .faq-page .box ul li .accordion-info {
    padding: 20px 10px;
  }
}
/*technology*/

.specialist-page .init-1 .container .title_c .left {
  /*font-weight: bold;*/
  width: 32%;
}
.specialist-page .init-1 .container .title_c .right {
  width: 54%;
  margin-left: auto;
  color: #404040;
}
.specialist-page .init-1 .container .content {
  margin-top: 50px;
}
.specialist-page .init-1 .container .content .left {
  width: 41%;
}
.specialist-page .init-1 .container .content .left img {
  width: 100%;
}
.specialist-page .init-1 .container .content .right {
  /*margin-top: -20px;*/
  width: 54%;
  margin-left: auto;
      border-top: 1px solid #dcdcdc;
    padding-top: 15px;
}
.specialist-page .init-1 .container .content .right .list .title_c {
  cursor: pointer;
  padding: 20px 20px 20px 0;
  position: relative;
  border-bottom: 1px solid #b4b4b4;
 -webkit-box-pack: start;
  -webkit-justify-content: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.specialist-page .init-1 .container .content .right .list .title_c .img {
  width: 50px;
}
.specialist-page .init-1 .container .content .right .list .title_c .text {
  /*font-weight: bold;*/
  padding-left: 30px;
}
.specialist-page .init-1 .container .content .right .list .title_c i {
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 32px;
}
.specialist-page .init-1 .container .content .right .list .title_c.active {
  border-bottom: 1px solid rgba(180, 180, 180, 0);
}
.specialist-page .init-1 .container .content .right .list .title_c.active i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.specialist-page .init-1 .container .content .right .list .cont {
  display: none;
  color: #404040;
  padding: 26px 36px;
  background-color: #f1f1f4;
}
.specialist-page .init-1 .container .content .right .list:last-child .title_c {
  border-bottom: 1px solid rgba(180, 180, 180, 0);
}
.specialist-page .init-2 .container .content {
  -o-background-size: cover;
  background-size: cover;
  height: 620px;
}
.specialist-page .init-2 .container .content .cont {
  width:730px;
  padding: 20px 0;
  margin-left: 90px;
  color: #fff;
}
.specialist-page .init-2 .container .content .cont .title {
  /*font-weight: bold;*/
}
.specialist-page .init-2 .container .content .cont .des {
  margin-top: 24px;
}
.specialist-page .init-2 .container .content .cont .more {
  margin-top: 50px;
  display: inline-block;
  padding: 12px 50px;
  border: 1px solid #fff;
}
.specialist-page .init-2 .container .content .cont .more:hover {
  background-color: #fff;
  color: #000;
}
.specialist-page .init-3 .container .left {
  width: 54%;
}
.specialist-page .init-3 .container .left img {
  width: 100%;
}
.specialist-page .init-3 .container .right {
  width: 41%;
  margin-right: auto;
}
.specialist-page .init-3 .container .right .title {
  /*font-weight: bold;*/
}
.specialist-page .init-3 .container .right .des {
  color: #404040;
  margin-top: 40px;
}
.specialist-page .init-3 .container .right .more {
  display: inline-block;
  padding: 12px 50px;
  margin-top: 50px;
  border: 1px solid #000;
}
.specialist-page .init-3 .container .right .more:hover {
  background-color: #000;
  color: #fff;
}
.specialist-page .init-4 {
  position: relative;
}
.specialist-page .init-4::before {
  content: '';
  position: absolute;
  width: 100%;
  height: -webkit-calc(-100%);
  height: -moz-calc(-100%);
  height: calc(100% - 200px);
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #f3f3f3;
}
.specialist-page .init-4 .container .title_c .left {
  font-weight: bold;
}
.specialist-page .init-4 .container .title_c .right {
  padding: 12px 50px;
  margin-left: auto;
  border: 1px solid #000;
}
.specialist-page .init-4 .container .title_c .right:hover {
  background-color: #000;
  color: #fff;
}
.specialist-page .init-4 .container .des {
  color: #404040;
  margin-top: 20px;
}
.specialist-page .init-4 .container .content {
  margin-top: 50px;
}
.specialist-page .init-5 .container .img {
  width: 100%;
}
.specialist-page .init-5 .container .img img {
  width: 100%;
}
.specialist-page .init-5 .container .left {
  width: 50%;
}
.specialist-page .init-5 .container .left .title_c .tips {
  font-weight: bold;
  padding-right: 10px;
}
.specialist-page .init-5 .container .left .title_c .more {
  padding: 10px 50px;
  border: 1px solid #000;
  margin-left: auto;
}
.specialist-page .init-5 .container .left .title_c .more:hover {
  color: #fff;
  background-color: #000;
}
.specialist-page .init-5 .container .left .des {
  margin-top: 50px;
  color: #404040;
}
.specialist-page .init-5 .container .left .img {
  margin-top: 40px;
}
.specialist-page .init-5 .container .right {
  width: 45%;
  margin-left: auto;
  padding-top: 43px;
}
.specialist-page .init-5 .container .right .des {
  margin-top: 40px;
  color: #404040;
}
@media (max-width: 1250px) {
  .specialist-page .init-2 .container .content .cont {
    width: 100%;
    padding: 20px 16px;
    margin-left: 0;
  }
  .specialist-page .init-5 .container .left .title_c .tips {
    width: 100%;
  }
  .specialist-page .init-5 .container .left .title_c .more {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .specialist-page .init-1 .container .title_c .left {
    width: 100%;
  }
  .specialist-page .init-1 .container .title_c .right {
    width: 100%;
    margin-top: 20px;
  }
  .specialist-page .init-1 .container .content .left {
    width: 100%;
  }
  .specialist-page .init-1 .container .content .right {
    margin-top: 20px;
    width: 100%;
  }
  .specialist-page .init-3 .container .left {
    width: 100%;
  }
  .specialist-page .init-3 .container .right {
    width: 100%;
    margin-top: 40px;
  }
  .specialist-page .init-4 .container .title_c .left {
    width: 100%;
  }
  .specialist-page .init-4 .container .title_c .right {
    margin: 20px 0 0 0;
  }
  .specialist-page .init-5 .container .left {
    width: 100%;
  }
  .specialist-page .init-5 .container .right {
    width: 100%;
    margin-top: 20px;
  }
  .specialist-page .init-1 .container .title_c .left,.specialist-page .init-1 .container .title_c .right,.specialist-page .init-1 .container .content .left,.specialist-page .init-1 .container .content .right,.specialist-page .init-3 .container .right,.specialist-page .init-3 .container .left,.specialist-page .init-5 .container .left,.specialist-page .init-5 .container .right{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .specialist-page .init-2 .container .content{
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .specialist-page .init-1 .container .content .right .list .title_c .img {
    width: 28px;
  }
  .specialist-page .init-1 .container .content .right .list .title_c .text {
    width: -webkit-calc(72%);
    width: -moz-calc(72%);
    width: calc(100% - 28px);
    font-size: 18px;
    padding-left: 10px;
  }
  .specialist-page .init-1 .container .content .right .list .title_c i {
    top: 24px;
  }
  .specialist-page .init-1 .container .content .right .list .cont {
    padding: 20px 16px;
  }
  .specialist-page .init-2 .container .content {
    height: auto;
  }
  .specialist-page .init-3 .container .right .des {
    margin-top: 20px;
  }
  .specialist-page .init-3 .container .right .more {
    margin-top: 20px;
  }
  .specialist-page .init-5 .container .left .des {
    margin-top: 20px;
  }
}

.contact-page .contact-2 ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.contact-page .contact-2 ul li {
  width: 25%;
  /*padding-left: 40px;*/
}

.contact-page .contact-2 ul li:nth-child(1) {
  padding-left: 0;
}

.contact-page .contact-2 ul li:hover .content h6 {
  transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -ms-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -o-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}

.contact-page .contact-2 ul li .content {
  display: flex;
  align-items: flex-start;
}

.contact-page .contact-2 ul li .content h6 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
  margin-right: 8px;
  justify-content: center;
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
  flex-shrink: 0;
}

.contact-page .contact-2 ul li .content h6 i {
  font-size: 20px;
  color: #000000;
}

.contact-page .contact-2 ul li .content p {
  color: #000000;
  line-height: 2;
  /*max-width: 290px;*/
}

.contact-page .contact-2 ul .add {
  padding-left: 0;
}

.contact-page .contact-2 ul .add .content {
  align-items: flex-start;
}

.contact-page .contact-3 ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.contact-page .contact-3 ul li {
  width: 33.3333%;
  padding-left: 125px;
  position: relative;
  margin-bottom: 45px;
}

.contact-page .contact-3 ul li img {
  width: 160px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
  box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-3 ul li .content {
  background: #f8f8f8;
  padding: 35px 45px;
}

.contact-page .contact-3 ul li .content .top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #b3b3b3;
}

.contact-page .contact-3 ul li .content .top .fa {
  font-size: calc(0.52083vw + 14px);
  color: #000000;
  line-height: 1;
  display: inline-block;
  margin-right: 18px;
}

.contact-page .contact-3 ul li .content .top h5 {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  font-weight: bold;
  max-width: 230px;
  padding-bottom: 10px;
}

.contact-page .contact-3 ul li .content .bottom {
  max-width: 230px;
  margin: 0 0 0 auto;
  margin-top: 10px;
  font-size: 14px;
  color: #000000;
  line-height: 1;
}

.contact-page .contact-3 ul li .content .bottom>div {
  margin-bottom: 15px;
}

.contact-page .contact-3 ul li .content .bottom a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-style: inherit;
}

.contact-page .contact-3 ul li .content .bottom p {
  font-size: 14px;
  color: #000000;
  line-height: 1;
  margin-bottom: 15px;
}

.contact-page .contact-4 .ui.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-page .contact-4 .left {
  max-width: 480px;
  padding-top: 40px;
}

.contact-page .contact-4 .left h4 {
  line-height: 1.4;
  color: #000000;
  /*font-weight: bold;*/
  margin-bottom: 10px;
}

.contact-page .contact-4 .left p {
  font-size: calc(0.52083vw + 14px);
  line-height: 1.8;
  color: #404040;
  /*font-weight: bold;*/
}

.contact-page .contact-4 .right {
  width: 63%;
}

.contact-page .contact-4 .right form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-page .contact-4 .right form input {
  width: 49%;
  background: none;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #000000;
  font-size: 20px;
  color: #000000;
  line-height: 2;
  /*font-weight: bold;*/
  margin-bottom: 30px;
}

.contact-page .contact-4 .right form textarea {
  width: 49%;
  background: none;
  border: none;
  padding: 10px 0;
  border-bottom: 1px solid #000000;
  font-size: 20px;
  color: #000000;
  line-height: 1;
  /*font-weight: bold;*/
  margin-bottom: 30px;
}

.contact-page .contact-4 .right form input[type="submit"] {
  width: 220px;
  height: 48px;
  background: #000;
  font-size: calc(0.52083vw + 14px);
  color: #ffffff;
  line-height: 1;
  border: none;
  /*font-weight: bold;*/
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.contact-page .contact-4 .right form input[type="submit"]:hover {
  background: var(--color);
}

.contact-page .contact-4 .right p {
  font-size: 20px;
  line-height: 2;
  /*font-weight: bold;*/
  color: #404040;
}
@media screen and (max-width: 1680px) {
  .contact-page .contact-2 ul li {
    width: 50%;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .contact-page .contact-2 ul li .content p {
    max-width: 83%;
  }
}
@media screen and (max-width: 1250px){
  .contact-page .contact-4 .right form input {
    font-size: 16px;
  }
   .contact-page .contact-2 ul {
    flex-wrap: wrap;
  }

  .contact-page .contact-2 ul li {
    max-width: none;
  }
}
@media screen and (max-width: 1000px){

  .contact-page .contact-4 .left {
    margin-top: 0;
  }

  .contact-page .contact-4 .right {
    width: 100%;
    margin-top: 20px;
  }

  .contact-page .contact-2 ul li .content h6 {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .contact-page .contact-2 ul li .content p {
    max-width: 270px;
  }
}
@media screen and (max-width: 700px){
  
  .contact-page .contact-2 ul li {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-page .contact-2 ul li:last-child {
    margin-bottom: 0;
  }

  .contact-page .contact-2 ul li .content p {
    max-width: 100%;
    width: 90%;
  }
}
@media screen and (max-width: 500px){
   .contact-page .contact-4 .right form input,
  .contact-page .contact-4 .right form textarea {
    width: 100%;
    margin-bottom: 10px;
  }
}

/*news*/

.inner-page .m-page {
  margin: 60px 0;
  text-align: center;
  font-size: 18px;
  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;
}

.inner-page .m-page a,
.inner-page .m-page span {
  width: 2.5em;
  height: 2.5em;
  border-radius: 5px;
  border: 1px solid #c7c7c7;
  display: inline-block;
  text-align: center;
  line-height: 2.5em;
  margin: 0 .3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background-color: var(--color);
  color: white;
  background-image: -webkit-linear-gradient(315deg, var(--color), var(--color2));
  background-image: -moz-linear-gradient(315deg, var(--color), var(--color2));
  background-image: linear-gradient(170deg, var(--color), var(--color2));
}
.inner-page a.link {
  font-size: 20px;
  line-height: 28px;
  display: inline-block;
  padding-bottom: .3em;
  font-weight: 500;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page a.link:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page a.link img {
  margin-left: 1em;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  max-width: .7em;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page a.link:hover {
  color: var(--color);
}

.inner-page a.link:hover:before {
  width: 0;
}

.inner-page a.link:hover img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.news-page {
  background-color: #faf9f9;
}

.news-page .news-1 .list ul {
  margin: -15px;
}

.news-page .news-1 .list ul li {
  padding: 15px;
}

.news-page .news-1 .list ul li a.img-box {
  display: block;
}

.news-page .news-1 .list ul li .content {
  -o-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  -webkit-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  padding: 10%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  background-color: white;
}

.news-page .news-1 .list ul li .content time {
  font-size: 20px;
  line-height: 28px;
  display: block;
  margin-bottom: 1em;
}

.news-page .news-1 .list ul li .content span.h6 {
  font-size: 30px;
  /*font-weight: 500;*/
  display: block;
  line-height: 36px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*-webkit-line-clamp: 3;
    overflow: hidden;*/
  height: 3.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.news-page .news-1 .list ul li .content .text {
  font-size: calc(0.52083vw + 14px);
  line-height: 2;
  opacity: 0.5;
}

.news-page .news-1 .list ul li .content .pre {
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.news-page .news-1 .list ul li .content .pre .text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*-webkit-line-clamp: 5;
    overflow: hidden;
    height: 9em;*/
}

.news-page .news-1 .list ul li .content a.link {
  margin-top: 2em;
}

.news-page .news-1 .list ul li:hover .content {
  margin-top: -30px;
}

.news-page .news-1 .list ul li:hover .content span.h6 {
  opacity: 0;
}

.news-page .news-1 .list ul li:hover .content .text {
  opacity: 1;
}

.news-page .news-1 .list ul li:hover .content .pre {
  padding-bottom: 30px;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}

.newdet-page {
  background-color: #faf9f9;
}

.newdet-page .slideBarRight time {
  font-size: calc(0.52083vw + 14px);
  line-height: 28px;
  display: block;
}

.m-link.Auxil-through {
  font-size: 18px;
  line-height: 28px;
}
.m-link.Auxil-through a{
  width: 50%;
  display: inline-block;
  padding-right: 10px;
  box-sizing: border-box;
}

.newdet-page .slideBarRight h1 {
  font-size: calc(1.35416vw + 14px);
  line-height: 2;
  border-bottom: 1px solid #dcdcdc;
}

.newdet-page .slideBarRight .text {
  margin: 2em 0;
  color: #404040;
}

.newdet-page .slideBarRight .text p {
  margin-top: 1em;
}

.newdet-page .slideBarRight .text p:first-child {
  margin-top: 0;
}

.newdet-page .slideBarRight .share {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
}

.newdet-page .slideBarRight .share a {
  margin-left: 1em;
  width: 1.5em;
  height: 1.5em;
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.newdet-page .slideBarRight .share a:hover {
  background-color: var(--color);
}

.newdet-page .slideBarRight span.h5 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  margin: 2em 0 1em;
  display: block;
}

.inner-page .side-title h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
}
.inner-page .slideBarBox .slideBarLeft {
  width: 30%;
  position: sticky;
  top: 100px;
}

.inner-page .slideBarBox .slideBarLeft+.slideBarRight {
  padding-left: 4%;
  padding-right: 0;
}

.inner-page .slideBarBox .slideBarLeft .slide {
  margin-bottom: 40px;
  padding: 50px;
  background-color: #fff;
}

.inner-page .slideBarBox .slideBarLeft .slide span.h5 {
  font-size: 30px;
  line-height: 36px;
  /*font-weight: bold;*/
  display: block;
  margin-bottom: 1em;
}

.inner-page .slideBarBox .slideBarLeft .slide form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  background-color: #faf9f9;
}

.inner-page .slideBarBox .slideBarLeft .slide form input {
  width: 100%;
  padding: 1em;
  border: none;
  background-color: transparent;
  color: black;
}

.inner-page .slideBarBox .slideBarLeft .slide form input[type="submit"] {
  width: 4em;
  background-image: url("../images/icon-search-black.png");
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.inner-page .slideBarBox .slideBarLeft .slide.search {
  background-color: #fff;
  color:#111;
  background-image: -webkit-linear-gradient(315deg, var(--color), var(--color2));
  background-image: -moz-linear-gradient(315deg, var(--color), var(--color2));
  background-image: linear-gradient(170deg, var(--color), var(--color2));
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li:last-child {
  margin-bottom: 0;
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li a.img {
  width: 30%;
  background-size: cover;
  background-position: center;
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content {
  width: 70%;
  padding: 10px 0;
  padding-left: 5%;
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content span.h6 {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*-webkit-line-clamp: 2;
    overflow: hidden;*/
  line-height: 30px;
  height: 3.2em;
}

.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content time {
  display: block;
  font-size: 14px;
  margin-top: .5em;
}

.inner-page .slideBarBox .slideBarLeft .slide .nav {
  font-size: 22px;
  line-height: 28px;
  /*font-weight: 500;*/
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li {
  /*margin-bottom: 1em;*/
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
  padding: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #111;
  /*background-color: #3e5498;*/
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a i {
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background-color: white;
  color: black;
  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;
}

.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a:hover,
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a.active {
  background-color: var(--color);
  background-image: -webkit-linear-gradient(315deg, var(--color), var(--color2));
  background-image: -moz-linear-gradient(315deg, var(--color), var(--color2));
  background-image: linear-gradient(170deg, var(--color), var(--color2));
  color: #fff;
}

.inner-page .slideBarBox .slideBarLeft .slide:last-child {
  margin-bottom: 0;
}

.inner-page .slideBarBox .slideBarRight {
  width: 70%;
  padding-right: 4%;
}

.inner-page .formNews ul {
  margin: -10px;
}

.inner-page .formNews ul li {
  padding: 10px;
  font-size: 18px;
  width: 50%;
}

.inner-page .formNews ul li label {
  display: block;
  margin-bottom: .5em;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}

.inner-page .formNews ul li input,
.inner-page .formNews ul li textarea {
  display: block;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .5em 0;
  border-bottom: 1px solid #404040;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .formNews ul li input:focus,
.inner-page .formNews ul li textarea:focus {
  border-color: var(--color);
}

.inner-page .formNews ul li textarea {
  height: 80px;
}

.inner-page .formNews ul li.wid-100 {
  width: 100%;
}

.inner-page a.btn {
  font-size: 20px;
  height: auto;
  padding: 20px;
  display: inline-block;
  font-weight: 500;
  color: white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page a.btn img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  max-width: .7em;
}

.inner-page a.btn:hover {
  background-color: black;
}
@media screen and (max-width: 1700px){
  .inner-page .slideBarBox .slideBarLeft .slide {
    padding: 30px;
  }

  .news-page .news-1 .list ul li .content {
    padding: 7%;
  }

  .news-page .news-1 .list ul li .content span.h6 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1450px){
   .inner-page a.link {
    font-size: 14px;
  }
   .inner-page .slideBarBox .slideBarLeft .slide {
    padding: 20px;
  }

  .inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
    padding: 1em;
  }

  .inner-page .slideBarBox .slideBarLeft .slide span.h5 {
    font-size: 18px;
  }
  
  .news-page .news-1 .list ul li .content {
    padding: 5%;
  }

  .news-page .news-1 .list ul li .content span.h6 {
    font-size: 16px;
    line-height: 30px;
  }

  .news-page .news-1 .list ul li:hover .content .pre {
    padding-bottom: 50px;
  }

  .news-page .news-1 .list ul li:hover .content {
    margin-top: -50px;
  }
}
@media screen and (max-width: 1250px){
   .inner-page .slideBarBox .slideBarLeft+.slideBarRight {
    padding-left: 2%;
  }
   .news-page .news-1 .list ul li .content .pre .text {
    position: static;
    opacity: 1;
    margin-top: 1em;
  }
}
@media screen and (max-width: 1000px){
  .inner-page .m-page {
    margin-top: 40px;
  }
  .inner-page .slideBarBox .slideBarLeft {
    display: none;
  }

  .inner-page .slideBarBox .slideBarLeft+.slideBarRight {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .inner-page .formNews ul li {
    width: 100%;
  }
   .news-page .news-1 .list ul li:hover .content span.h6 {
    opacity: 1;
  }

  .news-page .news-1 .list ul li:hover .content {
    margin-top: 0;
  }

  .news-page .news-1 .list ul li:hover .content .pre {
    padding-bottom: 0;
  }

  .news-page .news-1 .list ul li .content a.link {
    margin-top: 1em;
  }
}

@media screen and (max-width: 700px) {
   .inner-page .m-page {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {

  .news-page .news-1 .list ul li .content span.h6,
  .news-page .news-1 .list ul li .content .pre .text {
    height: auto;
  }
}
/*oem-odm*/

.custom3-page {
  background-color: #faf9f9;
}

.custom3-page .custom-1 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 95px;
}

.custom3-page .custom-1 .top .h3 {
  width: 50%;
  padding-left: 35px;
  line-height: 1.2;
  border-left: 3px solid var(--base-color);
}

.custom3-page .custom-1 .top .h2 {
  width: 55%;
  
}
.custom3-page .custom-1 .top p {
  width: 45%;
  /*padding-left: 20px;*/
  line-height: 1.5;
  /*opacity: 0.5;*/
  color: #404040;
}

.custom3-page .custom-1 .btm ul.list2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.custom3-page .custom-1 .btm ul.list2 li.item {
  margin: 0 10px;
  width: 180px;
  height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 100%;
  margin-bottom: 90px;
  position: relative;

}
.custom3-page .custom-1 .btm ul.list2 li.item .txt{
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.custom3-page .custom-1 .btm ul.list2 li.item img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

.custom3-page .custom-1 .btm ul.list2 li.item:hover img {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.custom3-page .custom-2 {
  padding-bottom: 10px;
}

.custom3-page .custom-2 .ui.container .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.custom3-page .custom-2 .ui.container .top .left {
  padding-right: 65px;
  width:60%;
}

.custom3-page .custom-2 .ui.container .top .left .h3 {
  padding-left: 35px;
  border-left: 3px solid var(--base-color);
}

.custom3-page .custom-2 .ui.container .top .left p {
  line-height: 1.5;
  margin-top: 20px;
  color: #404040;
}
.custom3-page .custom-2 .ui.container .top .right {
  /*padding-right: 65px;*/
  width:  40%;
}

.custom3-page .custom-2 .ui.container .bottom {
  margin-top: 100px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px 0 rgb(0 0 0 / 10%);
  /*box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);*/
  padding: 80px 80px 115px 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.custom3-page .custom-2 .ui.container .bottom .left {
  padding-right: 80px;
}

.custom3-page .custom-2 .ui.container .bottom .left p {
  max-width: 600px;
  line-height: 1.8;
  margin-top: 45px;
  color: #404040;
}

.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li.active {
  background: #f3f3f3;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 28px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #eee;
}

.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top em {
  margin-left: 25px;
   
}

.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top i.fr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .content {
  padding: 10px 30px 20px 30px;
  line-height: 1.8;
  display: none;
  font-size: calc(0.52083vw + 14px);
 color: #404040;
}

.custom3-page .custom-3 {
  padding-top: 90px;
  padding-bottom: 100px;
}

.custom3-page .custom-3 .ui.container {
  text-align: center;
}

.custom3-page .custom-3 .ui.container .strengthbox {
  margin-top: 55px;
}

.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li {
  padding: 0 15px;
}

.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li .item {
  background: #f7f7f7;
  border-radius: 5px;
}

.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li .item .text {
  padding: 25px;
  text-align: center;
}

.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li .item .text p {
  line-height: 1.8;
  font-weight: 400;
  margin-top: 15px;
  max-height: 116px;
  overflow-y: auto;
}
.service-page  {
      background-color: #faf9f9;
}
.service-page .oem-4 {
  position: relative;
  z-index: 1;
}

.service-page .oem-4 .left {
  width: 49.646%;
}

.service-page .oem-4 .right {
  width: 50.354%;
  color: #111;
  /*padding: 38px 20px 0 0;*/
}

.service-page .oem-4 .right .ig {
  max-width: 786px;
  padding-left: 57px;
}

.service-page .oem-4 .right .header {
  text-align: right;
}

.service-page .oem-4 .right .header .tag {
  color: #fff;
  padding-right: 138px;
}

.service-page .oem-4 .right .header .tag::before {
  background: #fff;
  top: 8px;
}

.service-page .oem-4 .right .header .title {
  text-align: left;
  line-height: 1.2;
  /*font-weight: bold;*/
  margin-top: 6px;
  /*margin-left: -132px;*/
}

.service-page .oem-4 .right .header .con {
  line-height: 1.8;
  opacity: .65;
  text-align: left;
}

.service-page .oem-4 .right .list {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-page .oem-4 .right .list ul li {
  padding: 19px 0 22px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.2);
}

.service-page .oem-4 .right .list ul li .tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.6;
}

.service-page .oem-4 .right .list ul li .tit em {
  width: 90%;
}

.service-page .oem-4 .right .list ul li .tit i {
  position: relative;
  width: 14px;
  height: 14px;
}

.service-page .oem-4 .right .list ul li .tit i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #0031ae;
  left: 0;
  top: 6px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.service-page .oem-4 .right .list ul li .tit i::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background: #0031ae;
  top: 0;
  left: 6px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.service-page .oem-4 .right .list ul li .con {
  line-height: 1.8;
  color: #404040;
  display: none;
  padding: 20px 0;
}

.service-page .oem-4 .right .list ul li.active .tit i::after {
  opacity: 0;
}

.service-page .oem-4::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 54.115%;
  height: 100%;
  /*background: url(/template/en/images/about2-bg.jpg) no-repeat center;*/
  background-color: #fff; 
}

.aft03 {
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background-color: #faf9f9;
}

.aft03 .icenter2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
}

.aft03 .icenter2 .le {
  overflow: hidden;
  position: relative;
  width: 45%;
  /*height: 695px;*/
}

.aft03 .icenter2 .le::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .5);
  content: '';
  -webkit-transition: -webkit-transform .6s;
  transition: transform .6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
  z-index: 1;
}

.aft03 .icenter2 .le:hover::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0);
}

.aft03 .icenter2 .le img {
  height: 100%;
}

.aft03 .icenter2 .le:hover img {
  transform: scale(1.1);
}

.aft03 .icenter2 .ri {
  width: 50%;
}

.aft03 .icenter2 .ri>ul {
  margin: 20px 0 0px;
}

.aft03 .icenter2 .ri>ul li {
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  color: #404040;
  line-height: 30px;
}

.aft03 .icenter2 .ri>ul li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #404040;
  position: absolute;
  left: 0px;
  top: 13px;
  content: "";
}

.aft03 dl dd {
  padding-top: 60px;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d5d5d5;
}

.aft03 dl dd .icon {
  width: 86px;
  margin-right: 58px;
}

.aft03 dl dd .text h4 {
  position: relative;
  padding-bottom: 0px;
  font-size: 18px;
  color: #333333;
  width: fit-content;
  margin-bottom: 10px;
}

.aft03 dl dd .text h4 strong {
  font-size: 70px;
  font-weight: bold;
}

.aft03 dl dd .text h4::after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 5px;
  background-color: var(--color);
}

.aft03 dl dd .text p {
  font-size: 18px;
  color: #404040;
}

.oem-5 .ui .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.oem-5 .ui .top .left {
  padding-right: 65px;
}

.oem-5 .ui .top .left .h3 {
  padding-left: 35px;
  border-left: 3px solid var(--color);
}

.oem-5 .ui .top .left p {
  line-height: 2;
  margin-top: 35px;
}

.oem-5 .ui .bottom {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*margin-top: 30px;*/
}

.oem-5 .ui .bottom .left {
  padding-right: 80px;
}

.oem-5 .ui .bottom .left p {
  max-width: 600px;
  line-height: 1.8;
  margin-top: 45px;
}

.oem-5 .ui .bottom .right ul.list3 li.active {
  background: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

.oem-5 .ui .bottom .right ul.list3 li .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 28px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #eee;
  line-height: 36px;
}


.oem-5 .ui .bottom .right ul.list3 li .top i.fr {
  position: absolute;
  top: 16px;
  right: 25px;
}

.oem-5 .ui .bottom .right ul.list3 li .content {
  padding: 10px 30px 20px 54px;
  line-height: 1.8;
  display: none;
  color: #404040;
}

.support-page .init-3 .container form {
  position: relative;
  margin-top: 30px;
  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-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.support-page .init-3 .container form textarea,
.support-page .init-3 .container form input {
  margin-top: 14px;
  font-size: 20px;
  line-height: 2;
  padding: 13px 16px;
  width: -webkit-calc(40%);
  width: -moz-calc(40%);
  width: calc(50% - 10px);
  background-color: #f6f6f6;
  border: none;
  border-bottom: 1px solid #2a2a2d;
}
.support-page .init-3 .container form .file_input {
  margin-top: 14px;
  height: 66px;
  width: -webkit-calc(40%);
  width: -moz-calc(40%);
  width: calc(50% - 10px);
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #2a2a2d;
  padding: 13px 16px;
  background-color: #f0f0f0;
  font-size: 20px;
}
.support-page .init-3 .container form .file_input img {
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 10px;
  right: 20px;
}
.support-page .init-3 .container form .file_input span {
  width: 100%;
  display: block;
  padding-right: 50px;
}
.support-page .init-3 .container form .file_input input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  margin-top: 0;
  cursor: pointer;
}
.support-page .init-3 .container form .content {
  width: 100%;
}
.support-page .init-3 .container form .tips {
  color: #bebebe;
  position: absolute;
  bottom: 13px;
  left: 0;
}
.support-page .init-3 .container form .more {
  margin: 14px 0 0 auto;
  
  /*font-weight: 700;*/
  cursor: pointer;
  color: #fff;
  line-height: 1.3;
  padding: 12px 24px;
  background-color: #0031ae;
}
.support-page .init-3 .container form .more .img{
    width: 14px;
    height: 14px;
    margin-left: 12px;
}
.support-page .init-3 .container form .more:hover{
  background: #000;
}
.support-page .init-3 .container form .more:hover .img{
  transform: rotate(45deg);
}
@media screen and (max-width:1600px){
  
  .aft03 .icenter2 .ri>ul li {
    padding-left: 15px;
    font-size: 14px;
    line-height: 24px;
  }

  .aft03 .icenter2 .ri>ul {
    margin: 16px 0 0px;
  }

  .aft03 dl dd {
    padding-top: 34px;
    padding-bottom: 12px;
  }

  .aft03 dl dd .icon {
    width: 74px;
    margin-right: 50px;
  }

  .aft03 dl dd .text h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .aft03 dl dd .text h4 strong {
    font-size: 58px;
  }

  .aft03 dl dd .text h4::after {
    height: 4px;
  }

  .aft03 dl dd .text p {
    font-size: 15px;
  }

  .aft03 .icenter2 .le {
    height: 529px;
  }

}
@media screen and (max-width: 1450px) {
  .service-page .oem-4 .right .header .title {
    margin-left: -90px;
  }
   .service-page .oem-4 .right .header .title {
    margin-bottom: .5em;
  }
  .aft03 .icenter2 .le{
    height: auto;
  }
}
@media screen and (max-width: 1280px){
  .service-page .oem-4 .left,
  .service-page .oem-4 .right {
    vertical-align: middle;
  }

  .service-page .oem-4 .right {
    padding-top: 0;
  }

  .service-page .oem-4 .right .ig {
    padding-left: 30px;
  }

  .service-page .oem-4 .right .header .title {
    margin-left: 0px;
  }

}
@media screen and (max-width: 1250px){
    .oem-5 .ui .bottom .left {
    padding-right: 0px;
  }

  .service-page .oem-4 .right .list {
    margin-top: 30px;
  }
   .custom3-page .custom-2 .ui.container .bottom .left {
    padding-right: 0px;
  }
}
@media screen and (max-width: 1100px){
   .service-page .oem-4 .right .list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px){
    .oem-5 .ui .bottom .right {
    padding-right: 0;
  }

  .oem-5 .ui .bottom {
    padding: 30px 25px;
  }
  .custom3-page .custom-1 .btm ul.list2 li.item {
    width: 120px;
    height: 120px;
  }

  .custom3-page .custom-2 .ui.container .bottom .right {
    padding-right: 0;
  }

  .custom3-page .custom-2 .ui.container .bottom {
    padding: 30px 25px;
  }
  .service-page .oem-4 .left {
    display: none;
  }

  .service-page .oem-4 .right {
    width: 100%;
  }

  .service-page .oem-4::after {
    width: 100%;
  }
  .custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top i.fr{
    right: 10px;
  }
  .service-page .oem-4 .right .ig {
    max-width: none;
    padding-right: 15px;
  }
  .oem-5 .ui .bottom .right ul.list3 li .content{
    padding: 20px 30px;
  }
  .support-page .init-3 .container form textarea, .support-page .init-3 .container form input,.support-page .init-3 .container form .file_input{
    width: 100%;
  }
  .custom3-page .custom-2 .ui.container .top,
  .custom3-page .custom-2 .ui.container .bottom,
  .aft03 .icenter2
  {
    flex-wrap: wrap;
  }
  .custom3-page .custom-2 .ui.container .top .left,.custom3-page .custom-2 .ui.container .top .right,.wid-50,.aft03 .icenter2 .ri,.aft03 .icenter2 .le {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width:768px){
  
  .aft03 .icenter2 {
    flex-flow: wrap;
  }

  .aft03 .icenter2 .le {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .aft03 .icenter2 .ri {
    width: 100%;
  }

  .aft03 dl dd .icon {
    width: 60px;
    margin-right: 31px;
  }

  .aft03 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 700px){
  .custom3-page .custom-1 .top .h3 {
    width: 100%;
  }

  .custom3-page .custom-1 .top p {
    width: 100%;
  }

  .custom3-page .custom-1 .btm ul.list2 li.item {
    width: 80px;
    height: 80px;
  }

  .custom3-page .custom-2 .ui.container .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .custom3-page .custom-2 .ui.container .top .left {
    padding-right: 0px;
    width: 100%;

  }

  .custom3-page .custom-2 .ui.container .top .right {
    width: 100%;
  }

  .custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top {
    flex-wrap: nowrap;
    font-size: 16px;
    line-height: 30px;
  }

  .custom3-page .custom-2 .ui.container .bottom .left {
    padding-right: 0px;
    width: 100%;
  }

  .custom3-page .custom-2 .ui.container .bottom .right {
    padding-right: 0;
    width: 100%;
    margin-top: 40px;
  }
  
  .oem-5 .ui .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .oem-5 .ui .top .left {
    padding-right: 0px;
    width: 100%;
  }

  .oem-5 .ui .top .right {
    width: 100%;
  }

  .oem-5 .ui .bottom .right ul.list3 li .top {
    flex-wrap: nowrap;
    font-size: 16px;
    line-height: 30px;
  }

  .oem-5 .ui .bottom .left {
    padding-right: 0px;
    width: 100%;
  }

  .oem-5 .ui .bottom .right {
    padding-right: 0;
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px){
    .service-page .oem-4 .right {
    padding: 0 15px;
  }

  .service-page .oem-4 .right .ig {
    padding-left: 0;
  }

  .service-page .oem-4 .right .header .con {
    line-height: 1.8;
  }

  .service-page .oem-4 .right .list ul li .tit {
    line-height: 1.4;
  }
  
  .support-page .init-3 .container form {
    margin-top: 10px;
  }
  .support-page .init-3 .container form input,
  .support-page .init-3 .container form textarea {
    width: 100%;
  }
  .support-page .init-3 .container form .tips {
    position: relative;
    top: 0;
    bottom: 0;
  }
  .support-page .init-3 .container form .file_input {
    width: 100%;
  }
}
/*inner-banner*/

.inner_banner {
  position: relative;
  z-index: 0;
  margin-top: 120px;
  padding-bottom: 40px;
}
.inner_banner .textAniC{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.inner_banner .textAniC .text .c{
  font-size: 350px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f6f6f6;
  line-height: 1;
  white-space: nowrap;
  width: 5000px;
  animation: transAni2 60s linear infinite;
}

.inner_banner .container{
  position: relative;
  z-index: 2;
}
.inner_banner .innerBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner_banner .cont {
  padding: 180px 0 100px 0;
}
.inner_banner .cont .title {
  /*font-weight: bold;*/
}
.inner_banner .cont .mbx {
  font-size: 0;
  /*font-weight: bold;*/
  margin-top: 10px;
}
.inner_banner .cont .mbx span {
  font-size: 20px;
  padding-left: 20px;
  position: relative;
}
.inner_banner .cont .mbx a {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inner_banner .cont .mbx a:hover {
  color: #0031ae;
}
.inner_banner .cont .mbx a:first-child {
  padding-left: 0;
}
.inner_banner .cont .mbx a:first-child::before {
  display: none;
}
.inner_banner .cont .mbx a:before,
.inner_banner .cont .mbx span:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 2px;
  top: 13px;
  left: 7px;
  background-color: #000;
}
@media (max-width: 1500px){
  .inner_banner .textAniC{
    top: 34px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 360px;
  }
}
@media (max-width: 1250px) {
  .inner_banner{
    display: none;
  }
}
/*moreBtn*/

.moreCont {
  font-weight: bold;
  cursor: pointer;
  
}

.moreCont .moreImgC {
  margin-left: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #000;
}

.moreCont .moreImgC .moreImg {
  width: 14px;
  height: 14px;
}

.moreCont:hover {
  color: #0031ae;
}

.moreCont:hover .moreImgC {
  background-color: #0031ae;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*about*/

.about-page .about-1 .top .img {
  position: relative;
}

.about-page .about-1 .top .img video {
  display: block;
  width: 100%;
}

.about-page .about-1 .top .img .play {
  position: absolute;
  display: inline-block;
  background: #0031ae;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-page .about-1 .top .img .play .cont {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0031ae;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
}

.about-page .about-1 .top .img .play .cont i {
  margin-left: 4px;
}

.about-page .about-1 .top .img .play .ling {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0031ae;
  border-radius: 50%;
  animation: ks 3s linear infinite;

}

.about-page .about-1 .top .img .play .ling:last-child {
  animation-delay: -1.5s;
}

.about-page .about-1 .top .text {
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 0;
  position: relative;
  z-index: 1;
}

.about-page .about-1 .top .text .title {
  line-height: 1.2;
}

.about-page .about-1 .top .text .con {
  margin-top: 46px;
  line-height: 1.8;
  color: #404040;
  max-height: 690px;
  overflow-y: auto;
  padding-right: 4px;
}

.about-page .about-1 .bottom {
  max-width: 1215px;
  width: 100%;
  margin: 111px auto 0;
}

.about-page .about-1 .bottom ul {
  margin-right: -70px;
}

.about-page .about-1 .bottom ul li {
  padding-right: 70px;
}

.about-page .about-1 .bottom ul li .data {
  font-weight: bold;
  padding-bottom: 26px;
  border-bottom: 1px solid #58596c;
  
}

.about-page .about-1 .bottom ul li .data em {
  font-size: 68px;
  line-height: 1.2;
  color: #000;
  display: inline-block;
  vertical-align: bottom;
}

.about-page .about-1 .bottom ul li .data sub {
  font-size: 30px;
  color: #0031ae;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;
  margin: 0 0 9px 7px;
}

.about-page .about-1 .bottom ul li .text .tit {
  font-size: calc(0.52083vw + 14px);
  
  font-weight: 600;
  color: #000000;
  line-height: 2;
  margin-top: 23px;
}

.about-page .about-1 .bottom ul li .text p {
  font-size: 20px;
  /*font-weight: 500;*/
  line-height: 30px;
  color: #404040;
}

.about-page .about-2 {
  margin-top: 120px;
}

.about-page .about-2 .box {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.about-page .about-2 .box .img {
  width: 50.06%;
  vertical-align: middle;
}

.about-page .about-2 .box .text {
  width: 49.94%;
  max-width: 800px;
  padding-left: 64px;
  padding-right: 10px;
  vertical-align: middle;
  color: #111;
}

.about-page .about-2 .box .text .tipsTitleCont .tipsTitle1 .cir {
  background-color: #fff;
}

.about-page .about-2 .box .text .con {
  line-height: 1.8;
  margin-top: 40px;
 opacity: 0.8;

}

.about-page .about-2 .box .text .list {
  margin-top: 29px;
}

.about-page .about-2 .box .text .list ul {
  margin-bottom: -25px;
}

.about-page .about-2 .box .text .list ul li {
  position: relative;
  padding-left: 47px;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 25px;
}

.about-page .about-2 .box .text .list ul li::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 30px;
  height: 2px;
  background: white;
}

.about-page .about-2 .box::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 81.25%;
  height: 100%;
  background: #f6f6f6;
}

.about-page .about-3 {
  background-color: #f6f6f6;
  padding: 12% 0 7%;
  margin-top: -40px;
}

.about-page .about-3 .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
      align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 63px;
  border-bottom: 1px solid #b8b8bc;
}

.about-page .about-3 .header .left {
  width: 30%;
}

.about-page .about-3 .header .left span.tag {
  color: #0031ae;
}

.about-page .about-3 .header .left .title {
  margin-top: 12px;
  line-height: 1.2;
}

.about-page .about-3 .header .right {
  width: 70%;
  font-weight: 500;
  line-height: 1.8;
  color: #404040;
}

.about-page .about-3 .content {
  margin-top: 88px;
}

.about-page .about-3 .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
  margin: 0 -15px;
}

.about-page .about-3 .content ul li {
  padding: 0 15px;
  width: 33.33%;
}

.about-page .about-3 .content ul li .box {
  padding: 40px 30px 40px 60px;
  background: #fff;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: #121212;
  height: 100%;
}

.about-page .about-3 .content ul li .box .tit {
  font-size: calc(0.52083vw + 14px);
  
  /*font-weight: 600;*/
  line-height: 2;
  margin-top: 15px;
}

.about-page .about-3 .content ul li .box p {
  font-size: 20px;
  /*font-weight: 500;*/
  line-height: 30px;
  padding-top: 10px;
      min-height: 120px;
  color: #404040;
}

.about-page .about-3 .content ul li .box:hover {
  background: #0031ae;
}

.about-page .about-3 .content ul li .box:hover i img {
  -webkit-filter: grayscale(100%) brightness(300);
  filter: grayscale(100%) brightness(300);
}

.about-page .about-3 .content ul li .box:hover .tit {
  color: white;
}

.about-page .about-3 .content ul li .box:hover p {
  color: white;
}

.about-page .about-3 .list {
  margin-top: 151px;
}

.about-page .about-3 .list .img-box {
  display: block;
}

.about-page .about-3 .list .img-box img {
  width: 100%;
}

.about-page .about-3 .list .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: right;
  padding-right: 22px;
}

.about-page .about-3 .list .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  -o-transition: 0.5;
  transition: 0.5;
  padding: 0;
}

.about-page .about-3 .list .slick-dots li:last-child {
  margin-right: 0;
}

.about-page .about-3 .list .slick-dots li button {
  display: none;
}

.about-page .about-3 .list .slick-dots li.slick-active {
  background: #0031ae;
}

.about-page .about-4 {
  background: #0031ae;
  padding: 68px 0 70px;
  max-width: 959px;
  width: 100%;
  margin-top: -17%;
  position: relative;
  z-index: 1;
  color: #fff;
}

.about-page .about-4 .box {
  max-width: 507px;
  margin: 0 94px 0 auto;
}

.about-page .about-4 .box .title {
  margin-top: 27px;
}

.about-page .about-4 .box .con {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 27px;
}

.about-page .about-4 .box .info {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.about-page .about-4 .box .info .tit {
  font-size: 20px;
  line-height: 1.5;
}

.about-page .about-4 .box .info p {
  font-size: 16px;
  line-height: 1.8;
}

.about-page .about-4 .box .more {
  margin-top: 36px;
  background: #000;
}

.about-page .about-4 .box .more:hover {
  background: #fff;
  color: #0031ae;
}

.about-page .about-5 {
  padding: 110px 0 180px;
}

.about-page .about-5 .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 45px;
  border-bottom: 1px solid #b8b8bc;
}

.about-page .about-5 .header span.tag {
  color: #0031ae;
}

.about-page .about-5 .header .title {
  margin-top: 12px;
  line-height: 1.2;
}

.about-page .about-5 .header .more {
  margin-bottom: 4px;
}

.about-page .about-5 .content {
  margin-top: 47px;
}

.about-page .about-5 .content ul {
  margin: 0 -20px;
}

.about-page .about-5 .content ul li {
  padding: 0 20px;
}

.about-page .about-5 .content ul li .img-box {
  display: block;
  position: relative;
}

.about-page .about-5 .content ul li .img-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.about-page .about-5 .content ul li:hover .img-box:before {
  -webkit-animation: circle .75s;
  -moz-animation: circle .75s;
  -o-animation: circle .75s;
  animation: circle .75s;
  -o-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3sease;
  -o-transition: all .3sease;
  -moz-transition: all .3sease;
  transition: all .3sease;
}

.about-page .about-5 .content ul li .img-box img {
  width: 100%;
}

.about-page .about-5 .content ul .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: center;
}

.about-page .about-5 .content ul .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #d2d2d2;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  -o-transition: 0.5;
  transition: 0.5;
  padding: 0;
}

.about-page .about-5 .content ul .slick-dots li:last-child {
  margin-right: 0;
}

.about-page .about-5 .content ul .slick-dots li button {
  display: none;
}

.about-page .about-5 .content ul .slick-dots li.slick-active {
  background: #0031ae;
}

.about-page .about-6 {
  overflow: hidden;
}

.about-page .about-6 .contentC {
  margin-top: 60px;
}

.about-page .about-6 .contentC .container {
  /*margin-left: auto;
  width: 1640px;
  margin-right: 0;*/
}

.about-page .about-6 .contentC .container .titleC {
  width: 70%;
  position: relative;
  z-index: 2;
}

.about-page .about-6 .contentC .container .titleC .subline {
  position: absolute;
  bottom: 6px;
  right: 0;
  background: #e2e0e0;
  width: 1200px;
  height: 1px;
}

.about-page .about-6 .contentC .container .titleC li {
  cursor: pointer;
}

.about-page .about-6 .contentC .container .titleC .num {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

/*.about-page .about-6 .contentC .container .titleC li.swiper-slide-active .num {
  color: #0031ae;
}*/
.about-page .about-6 .contentC .container .titleC li.active .num{
  color: #0031ae;
}
.about-page .about-6 .contentC .container .titleC li.active .cir{
  background: #0031ae;
}

.about-page .about-6 .contentC .container .titleC .cir {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e0e0;
  margin: 10px auto 0;
}

/*.about-page .about-6 .contentC .container .titleC li.swiper-slide-active .cir {
  background: #0031ae;
}*/

.about-page .about-6 .contentC .container .content {
  position: relative;
  margin-top: -80px;
}

.about-page .about-6 .contentC .container .content .box .left {
  width: 70%;
  padding-right: 200px;
  padding-top: 140px;
}

.about-page .about-6 .contentC .container .content .box .left .title {
  font-weight: 600;
  font-size: calc(0.52083vw + 14px);
  
}

.about-page .about-6 .contentC .container .content .box .left .des {
  font-weight: 500;
  margin-top: 20px;
  font-size: calc(0.52083vw + 14px);
  line-height: 1.8;
}

.about-page .about-6 .contentC .container .content .box .right {
  width: 30%;
  padding-left: 40px;
}

.about-page .about-6 .contentC .container .content .box .right img {
  width: 100%;
}

@media (max-width: 1700px) {
  .about-page .about-6 .contentC .container {
    width: 1360px;
    margin: auto;
  }
}

@media (max-width: 1500px) {
  .about-page .about-6 .contentC .container {
    width: 1200px;
  }

  .about-page .about-6 .contentC .container .content .box .left {
    padding-right: 40px;
  }
}

@media (max-width: 1250px) {
  .about-page .about-1 .bottom ul {
    margin-right: -30px;
  }

  .about-page .about-1 .bottom ul li {
    padding-right: 30px;
  }

  .about-page .about-3 {
    margin-top: -20px;
  }

  .about-page .about-6 .contentC .container {
    width: 970px;
  }

  .about-page .about-6 .contentC .container .titleC {
    width: 100%;
  }

  .about-page .about-6 .contentC .container .titleC .subline {
    width: 100%;
  }

  .about-page .about-6 .contentC .container .content .box .left {
    width: 100%;
    padding-right: 0;
  }

  .about-page .about-6 .contentC .container .content .box .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 1000px) {
  .about-page .about-1 .top .text {
    margin-top: 40px;
    /*padding: 30px 16px;*/
  }

  .about-page .about-2 {
    margin-top: 20px;
  }

  .about-page .about-2 .box {
    width: 700px;
    margin: auto;
  }

  .about-page .about-2 .box .img {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-page .about-2 .box::after {
    display: none;
  }

  .about-page .about-2 .box .text {
    width: 100%;
    padding: 20px 0 40px 0;
    max-width: 100%;
    color: #000;
  }

  .about-page .about-2 .box .text .tipsTitleCont .tipsTitle1 .cir {
    background-color: #0031ae;
  }

  .about-page .about-3 .header {
    padding-bottom: 20px;
  }

  .about-page .about-3 .header .left {
    width: 100%;
  }

  .about-page .about-3 .header .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }

  .about-page .about-3 .content {
    margin-top: 20px;
  }

  .about-page .about-3 .content ul li {
    width: 100%;
    margin-top: 20px;
  }

  .about-page .about-5 {
    padding: 60px 0;
  }

  .about-page .about-5 .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-page .about-5 .header .left {
    width: 100%;
  }

  .about-page .about-5 .header .right {
    margin-top: 20px;
  }

  .about-page .about-5 .content ul .slick-dots {
    position: relative;
    bottom: 0;
    top: 0;
    margin-top: 20px;
    color: #404040;
    line-height: 1.6;
  }

  .about-page .about-1 .bottom ul {
    margin: 0;
  }

  .about-page .about-1 .bottom ul li {
    width: 100%;
    padding: 0;
    padding-right: 15px;
    margin-bottom: 20px;
  }

  .about-page .about-6 {
    margin-top: 0;
    padding-top: 0;
  }

  .about-page .about-6 .contentC .container {
    width: 700px;
  }
}

@media (max-width: 700px) {
  .about-page .about-2 .box {
    width: 100%;
    padding: 0 16px;
  }

  .about-page .about-3 {
    margin-top: 40px;
  }

  .about-page .about-6 .contentC .container {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .about-page .about-1 .top .text .con {
    margin-top: 20px;
  }

  .about-page .about-1 .bottom {
    margin-top: 40px;
  }

  .about-page .about-1 .bottom ul li .data em {
    font-size: calc(1.35416vw + 14px);
  }

  .about-page .about-1 .top .text .con {
    max-height: 460px;
  }

  .about-page .about-2 {
    margin-top: 40px;
  }

  .about-page .about-2 .box .text .con {
    margin-top: 20px;
  }

  .about-page .about-3 {
    margin-top: 0;
  }

  .about-page .about-5 {
    padding: 40px 0;
  }

  .about-page .about-5 .header {
    padding-bottom: 20px;
  }

  .about-page .about-5 .content {
    margin-top: 20px;
  }
}

.gallery-page .init-1 .container .cont {
  border-bottom: 1px solid #d2d2d2;
}

.gallery-page .init-1 .container .cont li {
  margin-right: 40px;
}

.gallery-page .init-1 .container .cont li:last-child {
  margin-right: 0;
}

.gallery-page .init-1 .container .cont li .box a {
  padding: 8px 20px;
  font-size: 20px;
  display: block;
  position: relative;
  font-weight: 600;
}

.gallery-page .init-1 .container .cont li .box a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #0031ae;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}

.gallery-page .init-1 .container .cont li .box a.active::before,
.gallery-page .init-1 .container .cont li .box a:hover::before {
  opacity: 1;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.gallery-page .init-2 {
  padding-top: 30px;
}

.gallery-page .init-2 .container ul {
  margin: 0 -25px;
}

.gallery-page .init-2 .container ul>p {
  font-size: 16px;
  letter-spacing: 0;
  margin: 20px;
}

.gallery-page .init-2 .container ul li {
  margin-top: 50px;
  padding: 0 25px;
}

.gallery-page .init-2 .container ul li .box video {
  display: block;
  width: 100%;
}

.gallery-page .init-2 .container ul li .box .title {
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  
}

.gallery-page .init-2 .container ul li .box .img {
  position: relative;
  display: block;
}

.gallery-page .init-2 .container ul li .box .img img {
  width: 100%;
}

.gallery-page .init-2 .container ul li .box .img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery-page .init-2 .container ul li .box:hover .img::before {
  -webkit-animation: circle 0.75s;
  -moz-animation: circle 0.75s;
  -o-animation: circle 0.75s;
  animation: circle 0.75s;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3sease;
  -o-transition: all 0.3sease;
  -moz-transition: all 0.3sease;
  transition: all 0.3sease;
}

@media (max-width: 1000px) {
  .gallery-page .init-1 {
    display: none;
  }

  .gallery-page .init-2 {
    padding-top: 0;
  }
}

@media (max-width: 500px) {
  .gallery-page .init-2 .container ul li {
    margin-top: 20px;
  }
}

.product-yd-page .init-1 .container ul li .box {
  border-top: 1px solid #e2e2e2;
  padding: 60px 0;
  display: flex;
align-items : center;
flex-wrap: wrap;
}

.product-yd-page .init-1 .container ul li .box .left {
  width: 60%;
  padding-right: 40px;
}

.product-yd-page .init-1 .container ul li .box .left .title {
  font-weight: bold;
  display: block;
  
}

.product-yd-page .init-1 .container ul li .box .left .title:hover {
  color: #0031ae;
}

.product-yd-page .init-1 .container ul li .box .left .des {
  color: #404040;
  margin-top: 20px;
  /*font-weight: 500;
  overflow-y: scroll;
  max-height: 250px;
  line-height: 32px;*/
}

.product-yd-page .init-1 .container ul li .box .left .more {
  margin-top: 30px;
}

.product-yd-page .init-1 .container ul li .box .right {
  width: 40%;
  text-align: right;
}

.product-yd-page .init-1 .container ul li .box .right img {
  width: auto;
}

.product-yd-page .init-1 .container ul li:last-child .box {
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 1000px) {
  .product-yd-page .init-1 .container ul li .box .left {
    width: 100%;
    padding-right: 0;
  }

  .product-yd-page .init-1 .container ul li .box .right {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
   .product-yd-page .init-1 .container ul li .box .right img {
    max-width: 400px !important;
  }
}

.product-page .init-1 .container {
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.product-page .init-1 .container .swiper .swiper-slide .box .img {
  display: block;
}

.product-page .init-1 .container .swiper .swiper-slide .box .text {
  margin-top: 16px;
  text-align: center;
  display: block;
  font-weight: bold;
}

.product-page .init-1 .container .swiper .swiper-slide .box .text:hover {
  color: #0031ae;
}

.product-page .init-2 .container .fl-list {
  display: inline-block;
  position: relative;
  width: 370px;
  border: solid 1px #474747;
  text-align: left;
  padding: 20px 40px 20px 28px;
  cursor: pointer;
  color: #474747;
  font-weight: 600;
}

.product-page .init-2 .container .fl-list span {
  display: block;
  position: relative;
}

.product-page .init-2 .container .fl-list span em {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-page .init-2 .container .fl-list span i {
  position: absolute;
  line-height: 1;
  font-size: 30px;
  top: -4px;
  right: -20px;
}

.product-page .init-2 .container .fl-list ul {
  background-color: #fff;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 2;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #0031ae;
  opacity: 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;
}

.product-page .init-2 .container .fl-list ul li {
  font-size: 14px;
  padding: 10px;
  line-height: 2;
}

.product-page .init-2 .container .fl-list ul li a {
  display: block;
}

.product-page .init-2 .container .fl-list ul li a:hover {
  color: #0031ae;
}

.product-page .init-2 .container .fl-list:hover ul {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.product-page .init-2 .container .product-search {
  margin-left: 50px;
  border: solid 1px #474747;
}

.product-page .init-2 .container .product-search form {
  height: 64px;
  width: 365px;
  position: relative;
  font-weight: bold;
}

.product-page .init-2 .container .product-search form .text {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(100% - 75px);
  border: none;
  padding: 10px 24px;
}

.product-page .init-2 .container .product-search form .btn {
  width: 75px;
  background-color: #0031ae;
  border: none;
  border-radius: 0;
  -o-background-size: 30px;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
}

.product-page .init-2 .container .product-search form .btn:hover {
  background-color: #0031ae;
}

.product-page .init-3 .container .tipsTitle {
  text-align: center;
  font-weight: bold;
  
}

.product-page .init-3 .container .des {
  font-size: 14px;
  line-height: 2;
  margin-top: 40px;
}

.product-page .init-3 .container .des table {
  border: none;
}

.product-page .init-3 .container .des table tr {
  background: #fff;
}

.product-page .init-3 .container .des table tr td {
  border: 1px solid #ccc;
}

.product-page .init-3 .container .des table tbody>tr>td:first-child {
  background: #f6f6f6;
  min-width: 100px;
}

.product-page .init-3 .container .cat_des {
  max-height: 320px;
  margin-top: 20px;
  color: rgba(0, 0, 0, .5);
  font-size: 18px;
  line-height: 2;
  padding-right: 4px;
  overflow-y: auto;
  font-weight: 500;
}

.product-page .init-3 .container .content {
  margin-top: -40px;
}

.product-page .init-3 .container .content ul {
  margin: 0 -22px;
}

.product-page .init-3 .container .content ul>p {
  font-size: 20px;
  margin: 60px 20px 0;
  letter-spacing: 0;
}

.product-page .init-3 .container .content ul li {
  padding: 0 22px;
  margin-top: 90px;
}

.product-page .init-3 .container .content ul li .box {
  cursor: pointer;
}

.product-page .init-3 .container .content ul li .box .img {
  display: block;
  border: solid 1px #dadada;
}

.product-page .init-3 .container .content ul li .box .img img {
  width: 100%;
}

.product-page .init-3 .container .content ul li .box .title {
  margin-top: 20px;
  font-weight: 600;
  
  line-height: 1.8;
  min-height: 4em;
}

.product-page .init-3 .container .content ul li .box .title:hover {
  color: #0031ae;
}

.product-page .init-3 .container .content ul li .box .title2 {
  color: #5f5f5f;
  margin-top: 10px;
  font-weight: 500;
  line-height: 2;
  overflow-y: auto;
  max-height: 172px;
  padding-right: 4px;
}

.product-page .init-3 .container .content ul li .box .slick-track {
  margin-left: 0;
}

.product-page .init-3 .container .content ul li .box .smallImg {
  margin-top: 10px;
}

.product-page .init-3 .container .content ul li .box .smallImg .grid-box {
  margin: 0 -5px;
}

.product-page .init-3 .container .content ul li .box .smallImg .imgl {
  padding: 0 5px;
}

.product-page .init-3 .container .content ul li .box .smallImg .imgl .box {
  border: solid 1px #dadada;
}

.product-page .init-3 .container .content ul li .content_cont {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 30;
}

.product-page .init-3 .container .content ul li .content_cont .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.product-page .init-3 .container .content ul li .content_cont .content_c {
  max-width: 100%;
  background-color: #fff;
  position: absolute;
  width: 1580px;
  padding-top: 70px;
  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%);
}

.product-page .init-3 .container .content ul li .content_cont .content_c .close {
  z-index: 2;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  line-height: 46px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top {
  padding: 0 40px;
  padding-bottom: 50px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
  width: 380px;
  height: 388px;
  border: 1px solid #eee;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle {
  position: relative;
  width: 110px;
  padding-left: 10px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper {
  height: 354px;
  width: 100%;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper ul {
  padding: 0;
  margin: 0;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li {
  padding: 0;
  margin: 0;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a {
  display: block;
  border: 1px solid #eee;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a img {
  background-color: #f5f5f5;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
  position: absolute;
  bottom: -34px;
  left: 10px;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn:hover {
  background-color: #212122;
  color: #fff;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .next {
  left: 50px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
  width: -webkit-calc(-390%);
  width: -moz-calc(-390%);
  width: calc(100% - 490px);
  padding-left: 40px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .title {
  font-weight: 600;
  
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
  color: #5f5f5f;
  font-weight: 500;
  margin-top: 20px;
  max-height: 160px;
  overflow-y: auto;
  padding-right: 4px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
  margin-top: 20px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
  margin-top: 10px;
  font-weight: 700;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
  margin-left: 14px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right table {
  width: 100% !important;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 30px;
  font-weight: 500;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #212122;
  text-align: center;
  line-height: 30px;
  color: #fff;
  margin-left: 10px;
  border: 1px solid #212122;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a:hover {
  background-color: #fff;
  color: #212122;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
  display: none;
  padding: 20px 30px 30px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list {
  margin-top: 10px;
  position: relative;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: #d9d9d9;
  top: 10px;
  left: 0;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list input {
  width: 100%;
  border: none;
  background-color: #f5f5f5;
  padding: 14px 12px;
  font-size: 14px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
  width: 190px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 10px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  margin-left: 30px;
  justify-content: center;
  color: #fff;
  line-height: 1.3;
  padding: 11px 24px;
  
  background-color: #0031ae;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn .img {
  width: 14px;
  height: 14px;
  margin-left: 12px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover {
  background-color: #000;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover .img {
  transform: rotate(45deg);
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
  width: 390px;
}
@media (max-width: 1500px){
  
  .product-page .init-3 .container .des table tr td {
    min-width: 120px;
  }

  .product-page .init-3 .container .des table tbody>tr>td:first-child {
    min-width: 120px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    height: 300px;
    width: 300px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
    width: 540px;
  }
}
@media (max-width: 1250px) {
  .product-page .init-3 .container .content ul li .content_cont .content_c .phone_cont {
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c {
    width: 970px;
    padding-top: 40px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
    display: none !important;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top {
    text-align: center;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    width: 340px;
    height: 340px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
    display: none;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
    max-height: 200px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
    width: 50%;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
    margin-left: 0;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
    width: auto;
  }
}
@media (max-width: 1000px){
  .product-page .init-3 .container .content ul li .content_cont .content_c {
    width: 700px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .slick {
    height: 354px;
  }
 .product-page .init-1 {
    display: none;
  }

  .product-page .init-2 {
    display: none;
  }
}

@media (max-width: 700px) {
  .product-page .init-3 .container .content ul li .content_cont .content_c {
    width: 96%;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    width: -webkit-calc(-10%);
    width: -moz-calc(-10%);
    width: calc(100% - 110px);
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c {
    padding-right: 10px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top {
    padding: 20px 0 20px 20px;
  }
}

@media (max-width: 500px) {
  .product-yd-page .init-1 .container ul li .box .right{
    width: 100%;
  }
  .product-page .init-3 .container .content {
    margin-top: 0;
  }

  .product-page .init-3 .container .content ul {
    margin: 0;
  }

  .product-page .init-3 .container .content ul li {
    padding: 0;
    margin-top: 30px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
    text-align: center;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
    margin-left: 0;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
    padding: 20px 0 20px 16px;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
    width: 100%;
  }

  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
    display: none;
  }
}
/*新更换产品列表 产品详情*/

.sider-box .sider-left {
  width: 30%;
  position: sticky;
  top: 100px;
}
.sider-box .sider-left h2 {
  padding-top: 8px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
}
.sider-box .sider-left h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background-color: #0031ae;
}
.sider-box .sider-left .category {
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.sider-box .sider-left .category .catelist {
  margin-top: 35px;
}
.sider-box .sider-left .category .catelist ul li a {
  line-height: 55px;
  height: 55px;
  border-radius: 25px;
  margin-bottom: 20px;
}
.sider-box .sider-left .category .catelist > ul > li{
  position: relative;  
  
}
.sider-box .sider-left .category .catelist > ul > li {
  padding-left: 25px;
  padding-right: 35px;
  background: #f0f0f0;
  position: relative;
  /*padding-top: 3px;*/
  font-size: calc(0.52083vw + 14px);
  border-radius: 30px;
}
.sider-box .sider-left .category .catelist > ul > li:hover,
.sider-box .sider-left .category .catelist > ul > li.active{
   color: #FFFFFF;
  background-color: #0031ae;
  /*background-image: -webkit-gradient(linear, left top, right top, from(#92c35d), to(#73ad53));
  background-image: -webkit-linear-gradient(left, #92c35d, #73ad53);
  background-image: -moz-linear-gradient(left, #92c35d, #73ad53);
  background-image: linear-gradient(to right, #92c35d, #73ad53);*/
}
.sider-box .sider-left .category .catelist > ul > li > i{
  font-size: calc(0.52083vw + 14px);
  position: absolute;
  right: 20px;
  top: 10px;
  color: #000;
}
/*.sider-box .sider-left .category .catelist > ul > li i:hover {
  color: #000;
}*/
.sider-box .sider-left .category .catelist > ul > li.active i,.sider-box .sider-left .category .catelist > ul > li:hover i{
  color: #fff;
}

/*.sider-box .sider-left .category .catelist > ul > li > a::after {
  content: ">";
  position: absolute;
  right: 20px;
  top: 0;
  font-size: calc(0.52083vw + 14px);
  font-family: cursive;
}*/

.sider-box .sider-left .category .catelist > ul > li > ul{
  display: none;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sider-box .sider-left .category .catelist > ul > li > ul > li {
  padding-left: 25px;
  padding-right: 25px;
  /*background-color: #f0f0f0;*/
  position: relative;
}
.sider-box .sider-left .category .catelist > ul > li > ul > li a {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1;
}
.sider-box .sider-left .category .catelist > ul > li > ul > li a.active {
  text-decoration: underline;
}
.sider-box .sider-left .category .catelist > ul > li > ul > li::before {
  content: '-';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sider-box .sider-left .category .catelist > ul > li > ul > li.active {
  color: #73ae53;
}
.sider-box .sider-left .category.news .catelist > ul > li > a::after {
  content: "\f0d7";
  font-family: FontAwesome;
}
.sider-box .sider-left .quote {
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.sider-box .sider-left .quote .form {
  margin-top: 35px;
}
.sider-box .sider-left .quote .form form .submit{
  margin: 24px auto 0;
}
.sider-box .sider-left .quote .form input[type='text'],
.sider-box .sider-left .quote .form textarea {
  width: 100%;
  font-size: 16px;
  padding: 10px 20px;
}
.sider-box .sider-left .quote .form input[type='text'] {
  border-radius: 30px;
  border: 2px solid #e5e5e5;
  margin-bottom: 10px;
}


.sider-box .sider-left .quote .form .fileInputContainer input[type='text']{
  opacity: 0;
  margin: 0;
  border: none;
}

.sider-box .sider-left .quote .form .fileInputContainer{
  border-radius: 30px;
  border: 2px solid #e5e5e5;
  margin-bottom: 10px;
  background: url(/template/en/images/file_img.png) no-repeat center right 20px;
  background-size: 30px;
  position: relative;
}

.sider-box .sider-left .quote .form .fileInputContainer span{
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  padding: 12px 20px;
}


.sider-box .sider-left .quote .form textarea {
  height: 100px;
  border-radius: 10px;
  border: 2px solid #e5e5e5;
}
.sider-box .sider-left .quote .form .more{
  margin-top: 30px;
}
.sider-box .sider-left .quote .form button {
  margin-top: 30px;
  font-size: 20px;
  /*padding: 10px 50px;*/
  border: none;
  background: transparent;
  border-radius: 30px;
  color: #FFFFFF;
  background-color: #0031ae;
  /*background-image: -webkit-gradient(linear, left top, right top, from(#92c35d), to(#73ad53));
  background-image: -webkit-linear-gradient(left, #92c35d, #73ad53);
  background-image: -moz-linear-gradient(left, #92c35d, #73ad53);
  background-image: linear-gradient(to right, #92c35d, #73ad53);*/
  box-shadow: 0 0 20px rgba(3, 110, 184, .6);
}
.sider-box .sider-left .search-news {
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.sider-box .sider-left .search-news form {
  margin-top: 35px;
  position: relative;
}
.sider-box .sider-left .search-news form input {
  font-size: 16px;
  width: 100%;
  height: 50px;
  border: none;
  background-color: #f0f0f0;
  padding-left: 25px;
  padding-right: 115px;
  border-radius: 30px;
}
.sider-box .sider-left .search-news form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 115px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #82b566;
  background-image: -webkit-gradient(linear, left top, right top, from(#92c35d), to(#73ad53));
  background-image: -webkit-linear-gradient(left, #92c35d, #73ad53);
  background-image: -moz-linear-gradient(left, #92c35d, #73ad53);
  background-image: linear-gradient(to right, #92c35d, #73ad53);
}
.sider-box .sider-left .hot-news {
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.sider-box .sider-left .hot-news .list {
  margin-top: 35px;
}
.sider-box .sider-left .hot-news .list ul li + li {
  margin-top: 35px;
}
.sider-box .sider-left .hot-news .list .img {
  border-radius: 10px;
  overflow: hidden;
}
.sider-box .sider-left .hot-news .list time {
  color: #858585;
}
.sider-box .sider-left .news-date {
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.sider-box .sider-left .news-date .datepicker {
  margin-top: 35px;
}
.submit {
  width: 195px;
  height: 50px;
  background: var(--color);
  border-radius: 35px;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  text-align: center;
}

.submit input[type="submit"] {
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  font-size: calc(0.52083vw + 14px);
  color: #fff;
  line-height: 54px;
  position: relative;
  z-index: 2;
  background-color: transparent;
  border: none;
}

.submit::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  right: 0;
  top: 0;
  z-index: 5;
  -webkit-transform: translateX(-400px);
  -moz-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  transform: translateX(-400px);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.submit:hover::before {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.sider-box .sider-right {
  width: 70%;
}
.product_list {
  background-color: #fafafa;
  border-radius: 20px;
  padding: 40px;
}
.product_list ul {
  margin: 0 -15px;
}
.product_list ul li {
  padding: 20px 15px;
}
.product_list .img {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 10px;
  background: #fff;
}
.product_list .img a{
  display: block;
  /*padding: 30px;*/
}
.product_list .img span {
  border-radius: 0 0 15px 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #FFFFFF;
  background-color: #0031ae;
  /*background-image: -webkit-gradient(linear, left top, right top, from(#82b566), to(#9bc76b));
  background-image: -webkit-linear-gradient(left, #82b566, #9bc76b);
  background-image: -moz-linear-gradient(left, #82b566, #9bc76b);
  background-image: linear-gradient(to right, #82b566, #9bc76b);*/
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.product_list .img:hover span {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.product_list h3{
  margin-top: 15px;
}
.grid-box {
    font-size: 0;
    letter-spacing: -4px;
    font-size: 12px;
}
.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
    letter-spacing: 0;
}

.product-2 .sidebar-info {
    margin-bottom: 4.7rem;
    padding: 8rem 3rem 8.5rem;
    border-radius: 20px;
    background: url(../images/by.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    margin-top: 30px;
}
.product-2 .sidebar-info h5 {
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
}
.product-2 .sidebar-info p {
    line-height: 1.8;
    color: #fff;
}
.product-2 .sidebar-info .info-tel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    margin: 2.5rem 0 2.8rem;
}
.product-2 .sidebar-info .info-tel img {
    margin-right: 2rem;
}
.product-2 .sidebar-info .icon a {
    margin: 0 1.4rem;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
}


.product-page .pro_init_1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-page .pro_init_1 .container .left {
  width: 48%;
  overflow: hidden;
}

.product-page .pro_init_1 .container .left .smallImg {
  width: 21.6%;
  float: left;
}

.product-page .pro_init_1 .container .left .smallImg ul {
  margin: -10px;
}

.product-page .pro_init_1 .container .left .smallImg ul li {
  padding: 10px;
}

.product-page .pro_init_1 .container .left .smallImg ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-page .pro_init_1 .container .left .smallImg ul li a img {
  display: block;
  border: 1px solid #dcdcdc;
}

.product-page .pro_init_1 .container .left .bigImg {
  width: 77.4%;
  padding-left: 2%;
  display: inline-block;
}

.product-page .pro_init_1 .container .left .bigImg ul li {
  padding: 1px;

}

.product-page .pro_init_1 .container .left .bigImg ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.product-page .pro_init_1 .container .left .bigImg img {
  border: 1px solid #dcdcdc;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow {
  width: 40px;
  height: 40px;
  background: #fffef9;
  color: transparent;
  font-size: 0;
  border: none;
  opacity: .8;
  cursor: pointer;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev {
  left: 12px;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev:after {
  background-image: url("../images/banner-btn-l.png");
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next {
  right: 12px;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next:after {
  background-image: url("../images/banner-btn-r.png");
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow:hover {
  background: var(--primary);
}

.product-page .pro_init_1 .container .left .big_img {
  width: 100%;
  display: block;
}

.product-page .pro_init_1 .container .left .big_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-page .pro_init_1 .container .right .share ul li {
  width: 45px;
  text-align: center;
  margin-right: 10px;
  background: white;
  color: black;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.product-page .pro_init_1 .container .right .share ul li a {
  display: block;
}

.product-page .pro_init_1 .container .right .share ul li:hover {
  background: var(--primary);
}
.product-page .pro_init_1 .container .left .swiper {
  margin-top: 20px;
}

.product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
  height: 115px;
  display: block;
}

.product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-page .pro_init_1 .container .right {
  width: 49%;
}

.product-page .pro_init_1 .container .right .sub_img {
  width: 36px;
  margin-bottom: 15px;
}

.product-page .pro_init_1 .container .right .text_1 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 32px;
  color: #a8a8a8;
  font-weight: 500;
}

.product-page .pro_init_1 .container .right .text_2 {
  font-size: 36px;
  line-height: 1.4;
  color: #111;
}

.product-page .pro_init_1 .container .right .shangxia a {
  display: block;
}

.product-page .pro_init_1 .container .right .shangxia a:hover {
      color: #0031ae;
}

.product-page .pro_init_1 .container .right .cont_list {
  margin-top: 20px;
}

.product-page .pro_init_1 .container .right .cont_list .list {
  position: relative;
}

.product-page .pro_init_1 .container .right .cont_list .list .title {
  font-size: 18px;
  padding: 25px 0;
  padding-right: 30px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-page .pro_init_1 .container .right .cont_list .list .title span {
  color: #4a4a4a;
  font-weight: bold;
  text-transform: uppercase;
}

.product-page .pro_init_1 .container .right .cont_list .list .title i {
  width: 20px;
  position: absolute;
  top: 22px;
  right: 0;
  font-size: 30px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-page .pro_init_1 .container .right .cont_list .list .content {
  /*padding: 40px 0 0;*/
  font-size: 18px;
  color: #404040;
  line-height: 2;
  /*display: none;*/
  /*max-height: 300px;
  overflow: auto;
  padding-right: 10px;*/
}

.product-page .pro_init_1 .container .right .cont_list .list .content::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.product-page .pro_init_1 .container .right .cont_list .list.active .title {
  border-bottom: 1px solid #d6d6d6;
}

.product-page .pro_init_1 .container .right .cont_list .list.active .title i {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.product-page .pro_init_1 .container .right .cont_list .list:last-child .title {
  border-bottom: 1px solid #d6d6d6;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li .con {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 17px;
  line-height: 1.6;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li:last-child {
  margin-bottom: 0;
}

.product-page .pro_init_1 .container .right .more {
  margin-top: 30px;
}

.product-page .pro_init_1 .container .right .more_cont {
  margin-top: 55px;
  border-color: #000;
  color: #000;
}
.product-page .prodet-2 {
      background: #fafafa;
      margin-top: 80px;
}
.product-page .prodet-2 .options ul {
  border-bottom: 1px solid #d2d2d2;
}

.product-page .prodet-2 .options ul li {
  margin-right: 100px;
  font-size: 35px;
  /*text-transform: uppercase;*/
  color: #000;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0 10px 10px;
  cursor: pointer;
  line-height: 1.4;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-weight:bold;
}

.product-page .prodet-2 .options ul li:after {
  content: '';
  height: 3px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: var(--primary);
}

.product-page .prodet-2 .options ul li:hover,
.product-page .prodet-2 .options ul li.active {
  color: #373330;
}

.product-page .prodet-2 .options ul li:hover:after,
.product-page .prodet-2 .options ul li.active:after {
  width: 100%;
}

.product-page .prodet-2 .ret {
  margin-top: 50px;
}

.product-page .prodet-2 .ret .content {
  font-size: calc(0.52083vw + 14px);
  line-height: 32px;
}

.product-page .prodet-2 .ret .content dl dd {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}

.product-page .prodet-2 .ret .content dl dd h4 {
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-page .prodet-2 .ret .content dl dd .con {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 18px;
  line-height: 1.8;
}

#index-body .product .product-content ul {
  margin: 50px -15px 0;
}

#index-body .product .product-content ul li {
  padding: 0 15px;
  position: relative;
}

#index-body .product .product-content ul li:hover .box .img_box img {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.04);
}

#index-body .product .product-content ul li:hover .box h4 {
  color: #0031ae;
}

/*#index-body .product .product-content ul li:hover .box .title {
  -webkit-transform: translateY(-310px);
  -moz-transform: translateY(-310px);
  -ms-transform: translateY(-310px);
  transform: translateY(-310px);
}
#index-body .product .product-content ul li:hover .box .btn {
  bottom: 0;
  opacity: 1;
}*/
#index-body .product .product-content ul li .box .img_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 315px;
  -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;
  background-color: #f0f0f0;
}

#index-body .product .product-content ul li .box .img_box img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

#index-body .product .product-content ul li .box .title {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
}

#index-body .product .product-content ul li .box .title h4 {
  font-size: 20px;
  -webkit-transition: color .5s;
  -moz-transition: color .5s;
  transition: color .5s;
  line-height: 36px;
  margin-top: 40px;
  text-align: center;
}

#index-body .product .product-content ul li .box .title h4:hover {
  color: var(--color);
}

#index-body .product .product-content ul li .box .btn {
  position: absolute;
  left: 50%;
  bottom: -20%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}

.product-page .init-4 {
  background-image: url(/hypapercup/2023/03/13/p212.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.product-page .init-4 .container {
  text-align: center;
  color: #fff;
}

.product-page .init-4 .container .tip_title {
  font-size: 48px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}

.product-page .init-4 .container .des {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 20px;
}

.product-page .init-4 .container .more {
  margin: auto;
  margin-top: 70px;
  border: 1px solid #fff;
  color: var(--white);
}

.product-page .init-4 .container .more::after {
  width: 1px;
  height: 50px;
  left: 95px;
  top: -43px;
}
.product-page .init-4 .Hbtn{
  margin: auto;
}
.product-page .init-4 .Hbtn a span::after{
    filter: grayscale(1) brightness(10);
}
.product-page .init-4 .Hbtn a span img {
      filter:  grayscale(1) brightness(6);
    -webkit-filter: grayscale(1) brightness(6);
}
.product-page #pro-form .submit {
  line-height: 2;
}

@media screen and (max-width: 1500px){
  .product-page .pro_init_1 .container .right .share ul li {
    width: 35px;
    height: 35px;
    line-height: 36px;
  }
  .product-page .prodet-2 .options ul li {
    font-size: 20px;
  }
}
@media screen and (max-width: 1250px){
  .product-2 .sidebar-info {
    padding: 100px 15px;
  }
    .product-page .pro_init_1 .container .left .bigImg {
    padding-left: 2.5%;
  }

  .product-page .form ul li {
    padding: 10px;
  }

  .product-page .form ul {
    margin: -10px;
  }
}
@media screen and (max-width: 1000px){
  .sider-box .sider-left {
    display: none;
  }
  .sider-box .sider-right {
    width: 100%;
    padding: 0;
  }
  .product_list {
    padding: 30px;
  }
  .product-page .pro_init_1 .container .left .bigImg {
    padding-left: 4%;
  }

  .product-page .pro_init_1 .container .left .bigImg {
    padding-left: 2%;
  }

  .product-page .pro_init_1 .container .left .smallImg {
    display: none;
  }

  .product-page .pro_init_1 .container .left .bigImg {
    width: 100%;
    padding-left: 0;
  }

  .product-page .prodet-2 .options ul li {
    margin-right: 25px;
  }

  .product-page .prodet-2 .options {
    display: none;
  }

  .product-page .prodet-2 .ret .slide {
    display: block;
    margin-top: 30px;
  }

  .product-page .prodet-2 {
    padding-top: 0;
  }

  .product-page .prodet-2 .ret .content {
    font-size: 14px;
    line-height: 2;
    margin-top: 20px;
  }

  .product-page .form ul li input,
  .product-page .form ul li textarea {
    padding: 10px;
  }

  .product-page .form ul li input[type="submit"] {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
  }

  .product-page .prodet-2 .ret .det {
    overflow-x: auto;
  }

  .product-page .prodet-2 .ret .det table {
    table-layout: auto;
  }

  .product-page .prodet-2 .ret .det table td {
    min-width: 200px;
    width: auto;
    font-size: 14px;
    line-height: 28px;

  }
  
  .product-page .pro_init_1 .container .left {
    width: 100%;
  }

  .product-page .pro_init_1 .container .right {
    width: 100%;
    margin-top: 30px;
  }

  .product-page .pro_init_1 .container .right {
    text-align: center;
  }

  .product-page .pro_init_1 .container .right .sub_img {
    display: block;
    margin: auto;
  }

  .product-page .pro_init_1 .container .right .more {
    margin: auto;
    margin-top: 40px;
  }
}
@media (max-width: 700px){
   #index-body .product .product-content .product-title .btn-go {
    margin-top: 35px;
  }
}
@media (max-width: 500px){
  .product-page .pro_init_1 {
    margin-top: 40px;
    padding-top: 40px;
  }

  .product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
    height: 90vw;
  }

  .product-page .pro_init_1 .container .right .text_1 {
    margin-top: 10px;
    font-size: 16px;
  }

  .product-page .pro_init_1 .container .right .text_2 {
    font-size: 22px;
    line-height: 40px;
    margin-top: 10px;
  }

  .product-page .pro_init_1 .container .right .cont_list {
    margin-top: 20px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .title {
    padding: 15px 0;
    font-size: 18px;
    padding-right: 25px;
    padding-bottom: 5px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .title i {
    top: 16px;
    font-size: calc(0.52083vw + 14px);
  }

  .product-page .pro_init_1 .container .right .cont_list .list .content {
    padding: 20px 0;
  }
  .product-page .prodet-2 .ret {
    margin-top: 0;
  }

  .product-page .prodet-2 .ret .slide:first-child {
    margin-top: 0;
  }
  .product-page .init-4 {
    margin-top: 40px;
  }

  .product-page .init-4 .container .tip_title {
    font-size: 20px;
    line-height: 36px;
  }
  
}
.seoPublic .title {
  font-size: 35px;
      margin-bottom: 1.2em;
}
.seoPublic .Auxil-news .list ul li .content {
    margin-top: 0px;
}
.seoPublic .Auxil-news .list ul li .content div.h6 {
    font-size: calc(0.52083vw + 14px);    
}
.seoPublic .Auxil-news .list ul li .content p{
    font-size: 20px; 
    color: #404040;  
}
.seoPublic .Auxil-about .box .right .text{
    color: #404040;  
}
@media (max-width: 1700px){}
@media (max-width: 1450px){}
@media (max-width: 1250px){}
@media (max-width: 1000px){}
@media (max-width: 700px){}
@media (max-width: 500px){}

@media (min-width: 1921px) {
  html, body {
    max-width: 100vw;
  }
  #banner .swiper ul li img{
    width: 100vw;
  }
  .container {
    width: 90%;
  }
  #index-body .init-1 .rightImg {
    width: 35%;
    top: 390px;
  }
  #index-body .init-5 .topImg img {
    width: 100%;
  }
  #index-body .product .product-content ul li .box .img_box {
    height: auto;
  }
  .about-page .about-1 .top .text,.about-page .about-1 .bottom {
    max-width: 90vw;
  }
  .about-page .about-6 .contentC .container .titleC .subline {
    width: 95%;
  }
  #index-body .init-3 .centerImg li {
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
}
.mobileForm {
  margin-bottom: 100px;
}

.creative-page .init-1 .container .tip_title {
  font-size: 30px;
  line-height: 1.4;
  font-weight:bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
}
.creative-page .init-1 .container .tip_des {
  font-size: 18px;
  line-height: 2;
  font-weight:500;
  width: 930px;
  margin: auto;
  text-align: center;
  margin-top: 20px;
}
.creative-page .init-1 .container .list_cont {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
  font-size: 18px;
}
.creative-page .init-1 .container .list_cont .list {
  margin-top: 20px;
  width: 28%;
}
.creative-page .init-1 .container .list_cont .list img {
  width: auto;
  height: 80px;
  display: block;
  margin: auto;
}
.creative-page .init-1 .container .list_cont .list .title {
  margin-top: 30px;
  font-weight:bold;
  text-transform: uppercase;
  line-height: 1.6;
}
.creative-page .init-1 .container .list_cont .list .des {
  margin-top: 15px;
  color: #666666;
  font-weight:500;
  line-height: 1.8;
}
.creative-page .init-2 {
  position: relative;
  padding-top: 60px;
}
.creative-page .init-2 .container {
  position: relative;
}
.creative-page .init-2 .sub_div {
  position: absolute;
  width: 100%;
  height: 520px;
  top: 325px;
  left: 0;
  /*background-color: #f1f1f1;*/
}
.creative-page .init-2 .container .list {
  z-index: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 90px;
}
.creative-page .init-2 .container .list .left {
  width: 52%;
  padding-left: 100px;
  padding-right: 150px;
}
.creative-page .init-2 .container .list .left .title {
  font-size: 36px;
  line-height: 1.4;
  font-weight:bold;
  text-transform: uppercase;
}
.creative-page .init-2 .container .list .left .des {
  font-size: 18px;
  line-height: 32px;
  font-weight:500;
  color: #666666;
  margin-top: 18px;
}
.creative-page .init-2 .container .list .right {
  width: 48%;
}
.creative-page .init-2 .container .list .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.creative-page .init-2 .container .list:nth-child(2n) .right {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.creative-page .init-3 {
  background-image: url(/raisuncup/2024/04/11/cus-1.jpg);
  background-size: cover;
  background-position: center center;
  padding-top: 170px;
  padding-bottom: 80px;
  margin-top: 150px;
  background-attachment: fixed;
}
.creative-page .init-3 .container {
  text-align: center;
  color: #fff;
}
.creative-page .init-3 .container .title {
  font-size: 36px;
  line-height: 1.4;
  font-weight:bold;
  text-transform: uppercase;
}
.creative-page .init-3 .container .des {
  margin-top: 30px;
  font-size: 18px;
  font-weight:500;
  width: 620px;
  margin: auto;
  line-height: 2;
}
.creative-page .init-3 .container .more{
  border-color: var(--white);
  color: var(--white);
  margin-top: 50px; 
}
.creative-page .init-3 .container .more:hover{
  border-color: var(--primary);
}
.creative-page .init-3 .container .more_cont {
  margin: auto;
  margin-top: 50px;
  color: var(--white);
  /*width: 220px;*/
}
.creative-page .init-3 .Hbtn {
  margin: auto;
  color: #fff;
}
.creative-page .init-3 .Hbtn a span::after {
  filter: invert(1);
}
.creative-page .init-3 .Hbtn a:hover span::after {
  filter: none;
}
.creative-page .init-3 .Hbtn a span img {
  -webkit-filter: grayscale(5) brightness(5);
  filter: grayscale(5) brightness(5);
}
.creative-page .init-3 .Hbtn a:hover span img {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
@media (max-width: 1250px) {
  .creative-page .init-2 .container .list .left {
    padding: 0 60px;
  }
}
@media (max-width: 1000px){
  
  .creative-page .init-1 .container .tip_des {
    width: 100%;
  }
  .creative-page .init-2 .container .list {
    background-color: #f1f1f1;
  }
  .creative-page .init-2 .container .list .left {
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
  }
  .creative-page .init-2 .container .list .right {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .creative-page .init-2 .container .sub_div {
    display: none;
  }
  .creative-page .init-2 .sub_div{
    display: none;
  }
  .creative-page .init-3 .container .des {
    width: 100%;
  }
}
@media (max-width: 700px) {
  
  .creative-page .init-1 .container .list_cont .list {
    width: 100%;
  }
  .creative-page .init-3 .container .title{
    font-size: 30px;
    line-height: 1.2;
  }
  .creative-page .init-3{
    padding: 30px 0;
  }
  .creative-page .init-3 .container .des{
    margin-top: 20px;
    font-size: 17px;
  }
  .creative-page .init-3 .container .more_cont{
    margin-top: 20px;
  }
  .creative-page .init-2 .container .list .left .title{
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 500px) {
  
  .creative-page {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .creative-page .init-1 .container .tip_title {
    margin-top: 10px;
    font-size: 20px;
  }
  .creative-page .init-1 .container .tip_des {
    margin-top: 10px;
    font-size: 16px;
  }
  .creative-page .init-2 {
    padding-top: 20px;
  }
  .creative-page .init-2 .container .list {
    margin-top: 20px;
  }
  .creative-page .init-2 .container .list .left {
    padding: 15px;
  }
  .creative-page .init-2 .container .list .left .title {
    font-size: 20px;
  }
  .creative-page .init-2 .container .list .left .des {
    font-size: 16px;
  }
  .creative-page .init-3 {
    margin-top: 40px;
    padding: 40px 0;
  }
  .creative-page .init-3 .container .title {
    font-size: 20px;
  }
  .creative-page .init-3 .container .des {
    margin-top: 10px;
    font-size: 16px;
  }
  .creative-page .init-3 .container .more_cont {
    margin-top: 20px;
    font-size: 14px;
    /*width: 160px;
    height: 40px;
    line-height: 42px;*/
  }
}

.environment-page .init-1 .container img {
  width: 720px;
  display: block;
  margin: auto;
}
.environment-page .init-1 .container video{
  width: 720px;
  display: block;
  margin: auto;
  max-width: 100%;
}
.environment-page .init-1 .container .des {
  color: rgba(0, 0, 0, 0.6);
  width: 900px;
  max-width: 100%;
  text-align: center;
  margin: auto;
  margin-top: 50px;
}
.environment-page .init-2 .container {
  width: 100%;
}
.environment-page .init-2 .container .list {
  padding: 50px 0;
  position: relative;
  margin-top: 180px;
}
.environment-page .init-2 .container .list .sub_div {
  position: absolute;
  width: 65%;
  height: 100%;
  top: 0;
  left: -2%;
  background-color: #f5f5f5;
}
.environment-page .init-2 .container .list .cont {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.environment-page .init-2 .container .list .cont .left {
  width: 48%;
}
.environment-page .init-2 .container .list .cont .left .top {
  font-weight:bold;
  text-transform: uppercase;
}
.environment-page .init-2 .container .list .cont .left .bottom {
  font-size: 18px;
  font-weight:500;
  color: #666666;
  margin-top: 15px;
}
.environment-page .init-2 .container .list .cont .right {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.environment-page .init-2 .container .list .cont .right .img {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  width: 53%;
}
.environment-page .init-2 .container .list .cont .right .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.environment-page .init-2 .container .list .cont .right .sub_img {
  width: 47%;
}
.environment-page .init-2 .container .list:nth-child(2n) .sub_div {
  left: inherit;
  right: -2%;
}
.environment-page .init-2 .container .list:nth-child(2n) .cont .right {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.environment-page .init-2 .container .list:nth-child(2n) .cont .right > img {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.environment-page .init-2 .container .list:hover .cont .right .img {
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
.environment-page .init-3 {
  margin-top: 120px;
}
.environment-page .init-3 .container {
  max-width: 745px;
}
.environment-page .init-3 .container .list {
  margin-top: 20px;
}
.environment-page .init-3 .container .list .title {
  font-weight:bold;
  line-height: 1.7;
  text-transform: uppercase;
}
.environment-page .init-3 .container .list .des {
  font-size: 16px;
  line-height: 30px;
  font-weight:500;
  color: #666666;
  margin-top: 10px;
  padding-left: 10px;
}
.environment-page .init-4 {
  padding: 110px 0;
  background-color: #f5f5f5;
  margin-top: 140px;
}
.environment-page .init-4 .container .tip_title {
  font-size: 36px;
  font-weight:bold;
  text-align: center;
  text-transform: uppercase;
}
.environment-page .init-4 .container .swiper {
  margin-top: 80px;
}
.environment-page .init-4 .container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.environment-page .init-5 {
  margin-top: 150px;
}
.environment-page .init-5 .container .swiper {
  width: 990px;
  max-width: 100%;
  margin: auto;
}
.environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide .img {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide .img img {
  max-width: 100%;
  min-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide .title {
  margin-top: 25px;
  font-size: calc(0.52083vw + 14px);
  font-weight:500;
  font-weight: bold;
  line-height: 1.2;
}
.environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide .des {
  font-size: 18px;
  margin-top: 10px;
  font-weight:500;
  color: #666666;
}
@media (max-width: 1500px){
  .environment-page .init-2 .container .list .cont {
    width: 1200px;
  }
}
@media (max-width: 1250px){
  .environment-page .init-2 .container .list .cont {
    width: 970px;
  }
}
@media (max-width: 1000px) {
  .environment-page .init-2 .container .list .cont {
    width: 670px;
  }
  .environment-page .init-2 .container .list:nth-child(2n) .sub_div {
    right: -3%;
  }
  .environment-page .init-2 .container .list .sub_div {
    left: -3%;
  }
}
@media (max-width: 700px){
  
  .environment-page .init-1 .container img {
    width: 100%;
  }
  .environment-page .init-2 .container .list {
    background-color: #f5f5f5;
    padding: 30px 15px;
  }
  .environment-page .init-2 .container .list .cont {
    text-align: center;
    width: 100%;
  }
  .environment-page .init-2 .container .list .cont .left {
    margin-top: 20px;
    width: 100%;
  }
  .environment-page .init-2 .container .list .cont .right {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .environment-page .init-2 .container .list .cont .right .sub_img {
    display: none;
  }
  .environment-page .init-2 .container .list .sub_div {
    display: none;
  }
  .environment-page .init-3 .container .list {
    text-align: center;
  }
  .environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide {
    text-align: center;
  }
  .environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide .img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  
  .environment-page .init-1 .container .des {
    line-height: 2;
    margin-top: 20px;
  }
  .environment-page .init-2 .container .list {
    margin-top: 40px;
  }
  .environment-page .init-2 .container .list .cont .right .img {
    width: 100%;
  }
  .environment-page .init-2 .container .list .cont .left .top {
    margin-top: 20px;
  }
  .environment-page .init-3 {
    margin-top: 40px;
  }
  .environment-page .init-4 {
    margin-top: 40px;
    padding: 40px 0;
  }
  .environment-page .init-4 .container .tip_title {
    font-size: 20px;
  }
  .environment-page .init-4 .container .swiper {
    margin-top: 20px;
  }
  .environment-page .init-5 {
    margin-top: 40px;
  }
  .environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide .title {
    font-size: 20px;
  }
  .environment-page .init-5 .container .swiper .swiper-wrapper .swiper-slide .des {
    font-size: 16px;
    line-height: 2;
  }
}
.lh1 {
  line-height: 1;
}
.mobile-menu-wrap01 .menu-item a {
  width: 100%;
}