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

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

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

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

#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_from_s {
  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_from_s 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_from_s form {
  margin-top: 40px;
}

#pups_from_s 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_from_s i.close::after,
#pups_from_s 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_from_s i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#pups_from_s i.close:hover {
  background: var(--color);
}

#pups_from_s i.close:hover::before,
#pups_from_s i.close:hover::after {
  background: white;
}

#pups_from_s ul li {
  margin-bottom: 10px;
  position: relative;
}

#pups_from_s ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

#pups_from_s ul li label em {
  color: red;
  margin-right: 2px;
}

#pups_from_s ul li input,
#pups_from_s 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_from_s ul li input:focus,
#pups_from_s ul li textarea:focus {
  border-color: var(--color);
}

#pups_from_s ul li textarea {
  height: 80px;
}

#pups_from_s ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

#pups_from_s ul li input[type="submit"]:hover {
  opacity: 0.7;
}

#pups_from_s 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;
}

.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: 24px;
}

.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: var(--color);
  color: white;
  right: 2%;
  bottom: 40%;
  font-size: 24px;
  -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: var(--color);
}

b,
strong {
  font-weight: bold;
}

html,
body {
  position: relative;
  max-width: 1920px;
  margin: auto;
}

body {
  overflow-x: hidden;
  position: relative;
  font-family: 'Montserrat';
  font-weight: 400;
  margin: 0 auto;
  color: #333;
  font-size: 16px;
  --color: #214ca0;
  height: auto;
}

.container {
  width: 1580px;
  padding: 0 15px;
}

#ewm img,
#ewm canvas {
  display: block;
  width: 100%;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100%;
  height: auto;
  display: block;
  overflow: auto;
}

table tbody {
  display: table;
  width: 100% !important;
}

table tbody td,
table tbody th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}

table tbody tr {
  width: auto !important;
  height: auto !important;
}

table tbody tr:nth-child(even) {
  background: #eee;
}

html.mobile {
  overflow: hidden;
}

html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}

@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 innerRound {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.font-110 {
  font-size: 110px;
}

.Hbtn {
  color: #333;
  background-color: #fff;
  border-radius: 23px;
  position: relative;
  padding: 15px 16px 16px 24px;
  overflow: hidden;
}

.Hbtn .por {
  z-index: 2;
}

.Hbtn span {
  margin-right: 23px;
}

.Hbtn::before {
  content: '';
  position: absolute;
  width: 31px;
  height: 31px;
  border-radius: 23px;
  background-color: var(--color);
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.Hbtn:hover {
  color: #fff;
}

.Hbtn:hover::before {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  right: 2px;
}

.Hbtn1 {
  color: #fff;
  background-color: var(--color);
  border-radius: 23px;
  position: relative;
  padding: 15px 16px 16px 24px;
  overflow: hidden;
}

.Hbtn1 .por {
  z-index: 2;
}

.Hbtn1 span {
  margin-right: 23px;
}

.Hbtn1::before {
  content: '';
  position: absolute;
  width: 31px;
  height: 31px;
  border-radius: 23px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.Hbtn1:hover {
  color: var(--color);
}

.Hbtn1:hover::before {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  right: 2px;
  top: 2px;
  transform: translateY(0);
}

.titleBox .mintitl {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.titleBox .titl p span {
  color: var(--color);
}

#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;
}

.search-box.sa form {
  left: auto;
  right: 50%;
}

.search-box.sa form input[type="submit"] {
  left: 15px;
  right: auto;
}

#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;
  background-color: #fff;
  border-bottom: 1px solid rgba(220, 220, 220, 0);
}

#header>.nav>.menu {
  padding: 11px 0 13px;
}

#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: 50px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

#header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item:first-child {
  margin-left: 0;
}

#header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item.active>a {
  font-weight: bold;
  color: var(--color);
}

#header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item.active>a::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

#header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item:hover>a::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

#header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item:hover>.sub-menu {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}

#header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item>a {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 4px 0 4px 0;
  text-align: left;
  line-height: 1.2;
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
  color: #333;
  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: var(--color);
  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;
}

#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: 16px;
  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: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color);
}

#header>.nav>.menu .menu-box .right .search img {
  width: 14px;
  height: 14px;
}

#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: #333;
  text-transform: uppercase;
}

#header>.nav>.menu .menu-box .right .lang_cont .c_cont .textC img {
  width: 9px;
  height: 8px;
}

#header>.nav>.menu .menu-box .right .lang_cont .lang {
  padding-top: 5px;
}

#header>.nav>.menu .menu-box .right .formBtn {
  width: 54px;
  height: 64px;
  background-color: #214ca0;
  border-radius: 0 0 10px 10px;
  margin-top: -11px;
}

#header>.nav>.menu .menu-box .right .formBtn img {
  width: 34px;
  height: 28px;
  margin-top: 4px;
}

#header>.nav>.menu .menu-box .right .formBtn:hover {
  opacity: 0.9;
}

#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;
}

#banner {
  margin-top: 77px;
  position: relative;
}

#banner .swiper ul li {
  height: 850px;
  overflow: hidden;
}

#banner .swiper ul li .top .left {
  width: 55%;
}

#banner .swiper ul li .top .left p.titl {
  line-height: 0.95;
}

#banner .swiper ul li .top .left .txt {
  line-height: 1.56;
  color: #ddd;
}

#banner .swiper ul li .top .right {
  width: 42.5%;
  margin-right: -12%;
}

#banner .swiper ul li.swiper-slide-active .left {
  -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 .right {
  -webkit-animation: fadeInUpSmall 1s linear;
  -moz-animation: fadeInUpSmall 1s linear;
  -o-animation: fadeInUpSmall 1s linear;
  animation: fadeInUpSmall 1s linear;
}

#banner .bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

#banner .bottom .container {
  border-top: 1px solid #fff;
}

#banner .bottom .container .swiper-pagination {
  bottom: 23px;
  text-align: left;
}

#banner .bottom .container .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #fff;
  opacity: 0.2;
}

#banner .bottom .container .swiper-pagination-bullet-active {
  opacity: 1;
}

#index-body {
  position: relative;
  z-index: 2;
}

#index-body .init-1 .container ul li {
  height: 510px;
}

#index-body .init-1 .container ul li .list {
  width: 100%;
  height: 100%;
}

#index-body .init-1 .container ul li .list .textBox {
  background-color: #f5f5f5;
  height: 100%;
  width: 68%;
  border-radius: 10px;
  overflow: hidden;
}

#index-body .init-1 .container ul li .list .textBox p.titl {
  line-height: 1.25;
  height: 50px;
}

#index-body .init-1 .container ul li .list .textBox p.txt {
  color: #666;
}

#index-body .init-1 .container ul li .list .textBox a.btn {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

#index-body .init-1 .container ul li .list .textBox a.btn:hover {
  transform: rotate(-45deg);
}

#index-body .init-1 .container ul li .list .textBox a.img {
  transform: translateX(48%);
  bottom: 70px;
}

#index-body .init-1 .container ul li .list .textBox .logoBg {
  opacity: 0.05;
  width: 100%;
}

#index-body .init-1 .container ul li .list:hover .textBox {
  background-color: var(--color);
  color: #fff;
  overflow: visible;
}

#index-body .init-1 .container ul li .list:hover .textBox a.btn {
  opacity: 1;
}

#index-body .init-1 .container ul li .list:hover .textBox p.txt {
  color: #fff;
}

#index-body .init-1 .container ul li .list:hover .textBox .logoBg {
  color: #fff;
  opacity: 1;
}

#index-body .init-1 .container ul li .list:hover .textBox a.img {
  transform: translateX(50%);
}

#index-body .init-1 .container ul .slick-slide:nth-child(2n) {
  margin-top: 100px;
}

#index-body .init-1 .Hbtn1:hover::before {
  right: 3px;
  top: 3px;
}

#index-body .init-2 {
  background-color: #f5f5f5;
}

#index-body .init-2 .box .left img.img {
  border-radius: 10px;
}

#index-body .init-2 .box .left ul li {
  background-color: #fff;
  min-height: 100px;
}

#index-body .init-2 .box .left ul li .txt {
  color: #666;
}

#index-body .init-2 .box .left ul li .bot .num {
  line-height: 0.8;
}

#index-body .init-2 .box .left ul li img.icon1 {
  display: none;
}

#index-body .init-2 .box .left ul li:hover {
  background-color: var(--color);
}

#index-body .init-2 .box .left ul li:hover .txt {
  color: #dddddd;
}

#index-body .init-2 .box .left ul li:hover .num {
  color: #fff;
}

#index-body .init-2 .box .left ul li:hover img.icon {
  display: none;
}

#index-body .init-2 .box .left ul li:hover img.icon1 {
  display: block;
}

#index-body .init-2 .box .right {
  width: 43.5%;
}

#index-body .init-2 .box .right h1 {
  line-height: 1.5;
  color: #666;
}

#index-body .init-2 .box .right .item {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

#index-body .init-2 .box .right .item .num {
  color: #666;
}

#index-body .init-2 .box .right .item .center {
  width: 66%;
}

#index-body .init-2 .box .right .item .center .text {
  color: #666;
}

#index-body .init-2 .box .right .item .img {
  width: 77px;
  height: 77px;
  background-color: #dfe4ec;
}

#index-body .init-3 {
  overflow: hidden;
}

#index-body .init-3 .container {
  z-index: 2;
}

#index-body .init-3 .top .txt {
  max-width: 910px;
  margin: auto;
}

#index-body .init-3 .center ul.items li {
  display: none;
}

#index-body .init-3 .center ul.items li:first-child {
  display: block;
}

#index-body .init-3 .center ul.items li .list .txt {
  max-width: 500px;
  margin: auto;
  height: 85px;
}

#index-body .init-3 .bot ul {
  max-width: 800px;
  margin: auto;
}

#index-body .init-3 .bot ul li {
  width: 25%;
}

#index-body .init-3 .bot ul li .icon {
  width: 89px;
  height: 89px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: auto;
}

#index-body .init-3 .bot ul li .titl {
  line-height: 1.25;
}

#index-body .init-3 .bot ul li.active .icon {
  background-color: var(--color);
}

#index-body .init-3 .bot ul li.active .icon img {
  filter: brightness(8);
}

#index-body .init-3 img.round {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

#index-body .init-4 {
  background-image: url('../images/init-4Bg.jpg');
  background-position: center bottom;
}
#index-body .init-4 .bot {
  position: relative;
}

#index-body .init-4 .bot .left {
  width: 43%;
  position: sticky;
  top: 80px;
  z-index: 9;
}

#index-body .init-4 .bot .left .txt {
  color: #666;
  line-height: 1.5;
}

#index-body .init-4 .bot .right {
  width: 48.8%;
}

#index-body .init-4 .bot .right .Limg {
  width: 47%;
  border-radius: 10px;
}

#index-body .init-4 .bot .right .Rtext {
  width: 53%;
}

#index-body .init-4 .bot .right .Rtext .txt {
  color: #666;
}

#index-body .init-4 .bot .right .Rtext .btn {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: var(--color);
}

#index-body .init-4 .bot .right .Rtext .btn:hover img {
  transform: rotate(-45deg);
}

#index-body .init-5 {
  margin-bottom: 88px;
}

#index-body .init-5 .slickBox li {
  height: 100%;
}

#index-body .init-5 .slickBox li .list {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 10px;
}

#index-body .init-5 .slickBox li .list .dateBox .date {
  color: var(--color);
  line-height: 2;
  text-decoration: underline;
}

#index-body .init-5 .slickBox li .list .dateBox .btn {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--color);
  border-radius: 50%;
  transform: rotate(-45deg);
}

#index-body .init-5 .slickBox li .list .dateBox .btn a {
  width: 100%;
  height: 100%;
}

#index-body .init-5 .slickBox li .list .dateBox .btn:hover {
  transform: rotate(135deg);
}

#index-body .init-5 .slickBox li .list .titl {
  line-height: 1.6;
  overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;  
}

#index-body .init-5 .slickBox li .list .txt {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 20px;
}

#index-body .init-5 .slickBox li .list .txt p {
  height: 56px;
}

#index-body .init-5 .slickBox li .list:hover {
  background-color: var(--color);
  color: #fff;
}

#index-body .init-5 .slickBox li .list:hover .dateBox .date {
  color: #fff;
}

#index-body .init-5 .slickBox li .list:hover .dateBox .btn {
  background-color: #fff;
  border-color: #fff;
}

#index-body .init-5 .slickBox li .list:hover .titl:hover {
  color: #257dba;
}

#index-body .init-5 .slickBox li .list:hover .txt {
  color: var(--color);
}

.footer-1 {
  background-image: url('../images/footer-1Bg.jpg');
}

.footer-1 .left {
  width: 48%;
}

.footer-1 .right {
  width: 31.7%;
  margin-top: -88px;
}

#footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -o-background-size: cover;
  background-size: cover;
  background-color: #121212;
}

#footer .top .top-1 {
  width: 25%;
}

#footer .top .top-1 .line {
  width: 100%;
  border-bottom: 1px solid #5a5a5a;
}

#footer .top .top-2 {
  width: 68%;
}

#footer .top .top-2 .item .titl span {
  color: var(--color);
}

#footer .top .top-2 .item p.link a::after {
  content: '';
  position: absolute;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

#footer .top .top-2 .item p.link:hover a::after {
  width: 100%;
}

#footer .top .top-2 .item p.link:last-child {
  margin-bottom: 0;
}

#footer .top .top-2 .item2 {
  line-height: 1.1;
  width: 30%;
}

#footer .top .top-2 .item3 {
  width: calc(100% - 93px);
}

#footer .top .top-2 .item3 form {
  position: relative;
  z-index: 2;
}

#footer .top .top-2 .item3 form input,
#footer .top .top-2 .item3 form textarea {
  width: 100%;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin-bottom: 11px;
  padding: 9px 0 9px 14px;
}

#footer .top .top-2 .item3 form textarea {
  height: 80px;
  padding-right: 40px;
  margin-bottom: 0 !important;
}

#footer .top .top-2 .item3 form button {
  border: none;
  background-color: transparent;
  bottom: 14px;
  right: 16px;
  cursor: pointer;
}

#footer .top .top-2 .item3 form button:hover {
  transform: rotate(45deg);
}

#footer .top .top-2 .item4 {
  width: 48px;
}

#footer .top .top-2 .item4 .share {
  z-index: 3;
}

#footer .top .top-2 .item4 .share li {
  line-height: 1;
  margin-bottom: 25px;
}

#footer .top .top-2 .item4 .share li:hover {
  color: var(--color);
}

#footer .top .top-2 .item4 .txt {
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: left top;
  display: inline-block;
  margin-left: 28px;
}

#footer .top .top-2 .box {
  width: 43%;
}

#footer .copyright {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  color: #525252;
}

#footer .copyright .container {
  padding-top: 35px;
  padding-bottom: 40px;
}

#footer .copyright .container svg {
  height: 30px;
  width: auto;
  fill: #ffffff;
  position: relative;
  top: 4px;
}

#footer .copyright .container a img {
  margin-top: 8px;
  height: 16px;
}

#footer .copyright .container .left {
  width: 60%;
  position: relative;
  top: 0;
  color: #ffffff;
}

#footer .copyright .container .left .cont {
  width: 92px;
  height: 92px;
  max-height: 92px;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
}

#footer .copyright .container .left .textBox {
  width: calc(100% - 92px);
}

#footer .copyright .container .img {
  width: 39%;
  text-align: right;
}

@media screen and (max-width: 1700px) {
  #header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item {
    margin-left: 20px;
  }

  .font-110 {
    font-size: 94px;
  }

  #banner .swiper ul li {
    height: 800px;
  }

  #index-body .init-1 .container ul li .list .textBox {
    width: 75%;
  }

  .footer-1 .right {
    margin-top: -78px;
  }
}

@media screen and (max-width: 1450px) {
  .font-110 {
    font-size: 70px;
  }
  #header>.nav>.menu .menu-box .menu_c .menu-menu-container>.menu>.menu-item>a {
    font-size: 14px;
  }
  #header>.nav>.menu .menu-box .left {
    width: 17%;
  }

  #header>.nav>.menu .menu-box .right .formBtn {
    width: 40px;
  }

  #header>.nav>.menu .menu-box .right .formBtn img {
    width: 25px;
    height: 20px;
    margin-top: 8px;
  }

  #banner .swiper ul li {
    height: 695px;
  }

  #index-body .init-1 .container ul li .list .textBox {
    width: 70%;
  }

  .footer-1 .container {
    align-items: end;
  }

  .footer-1 .right {
    margin-top: 0;
  }
}

@media (max-width: 1250px) {
  #innerMobileBanner .banner2 {
    background-image: -webkit-linear-gradient(250deg, var(--color), rgba(0, 0, 0, .05));
    background-image: -moz-linear-gradient(250deg, var(--color), rgba(0, 0, 0, .05));
    background-image: linear-gradient(-160deg, var(--color), rgba(0, 0, 0, .05));
  }

  #mobile3 .box {
    padding-bottom: 80px;
  }

  .mobileForm {
    margin-bottom: 80px;
  }

  .oxy-nav-menu .mb2-search input[type=submit] {
    background-image: url(../images/icon-search-white.png);
  }

  .font-110 {
    font-size: 60px;
  }

  #banner {
    margin-top: 60px;
  }

  #banner .swiper ul li {
    height: auto;
    min-height: 400px;
  }

  #banner .bottom .container .swiper-pagination {
    bottom: 5px;
  }

  #banner .bottom .container .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  #index-body .init-1 .container ul li .list .textBox {
    width: 75%;
  }

  #index-body .init-1 .container ul li .list:hover .textBox a.img {
    transform: translateX(25%);
  }

  #index-body .init-4 .bot .left {
    width: 49%;
  }

  #footer .top .top-1 {
    width: 30%;
  }

  #footer .top .top-2 .item1 {
    display: none;
  }

  #footer .top .top-2 .item2 {
    width: 45%;
  }

  #footer .top .top-2 .box {
    width: 50%;
  }
}

@media (max-width: 1000px) {
  .font-110 {
    font-size: 44px;
  }

  #banner .swiper ul li .top .right {
    width: 70%;
    margin-right: 0;
    margin: 20px auto;
  }

  #banner .swiper ul li .top .left {
    width: 100%;
  }

  #index-body .init-1 .container ul li {
    height: 470px;
  }

  #index-body .init-1 .container ul li .list .textBox {
    margin: auto;
    width: 100%;
    background-color: var(--color);
    color: #fff;
  }

  #index-body .init-1 .container ul li .list .textBox p.txt {
    color: #fff;
  }

  #index-body .init-1 .container ul li .list .textBox a.img {
    left: 50%;
    transform: translateX(-50%);
  }

  #index-body .init-1 .container ul li .list .textBox a.btn {
    opacity: 1;
  }

  #index-body .init-1 .container ul .slick-slide:nth-child(2n) {
    margin-top: 0;
  }

  #index-body .init-2 .box .right {
    margin-top: 30px;
  }
  #index-body .init-4 .bot .left {
    position: static;
  }
  #index-body .init-4 .bot .right .Rtext {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  #index-body .init-4 .bot .right .Limg {
    width: 70% !important;
    margin: 0 auto;
  }

  .footer-1 .left {
    width: 67%;
  }

  #footer .top .top-1 {
    width: 100%;
  }

  #footer .top .top-1 .logo {
    text-align: center;
  }

  #footer .top .top-2 {
    width: 100%;
    margin-top: 20px;
  }

  #footer .copyright .container .left {
    width: 100%;
  }

  #footer .copyright .container .img {
    padding-top: 15px;
    width: 50%;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .font-110 {
    font-size: 36px;
  }

  .titleBox .mintitl p {
    width: 100%;
    margin-bottom: 10px;
  }

  .titleBox .titl p {
    width: 100%;
    margin-bottom: 20px;
  }

  #index-body .init-3 .bot ul li {
    width: 50%;
    margin-bottom: 30px;
  }

  #index-body .init-3 .bot ul li .icon {
    width: 65px;
    height: 65px;
  }

  #footer .top .top-2 .item2 {
    width: 100%;
    margin-bottom: 20px;
  }

  #footer .top .top-2 .box {
    width: 100%;
  }
}

@media (max-width: 500px) {
  #index-body .init-2 .box .right .item .center {
    width: 100%;
    margin: 20px 0;
  }

  #index-body .init-2 .box .right .item .img {
    margin: 0 auto;
    width: 60px;
    height: 60px;
  }

  .footer-1 .left {
    width: 100%;
  }

  .footer-1 .right {
    margin: auto;
  }

  #footer .copyright .container .left .cont {
    margin: auto;
  }

  #footer .copyright .container .left .textBox {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
  }
}

.inner-page {
  /*background-color: #f5f5f5;*/
  padding-bottom: 88px;
}

.inner-banner {
  padding-top: 105px;
  padding-bottom: 50px;
  /*background-color: #f5f5f5;*/
}

.inner-banner .titl {
  line-height: 1.83;
  padding-right: 125px;
}

.inner-banner .mbx {
  padding-right: 125px;
  line-height: 1.875;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.inner-banner .roundBox {
  width: 123px;
  height: 123px;
  background-color: var(--color);
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -50px;
}

.inner-banner .roundBox .round {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.inner-banner .roundBox .round img.text {
  width: 104px;
  height: 104px;
  animation: innerRound 15s linear infinite;
}

.inner-banner .roundBox .round img.arrow {
  width: 28px;
  height: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.inner-banner .roundBox .round img.arrow:hover {
  top: 55%;
}

.inner-page .m-page {
  margin-top: 5%;
  margin-bottom: 7%;
}

.inner-page .m-page a,
.inner-page .m-page span {
  display: inline-block;
  font-size: 23px;
  color: #474747;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  line-height: 1;
  font-weight: 500;
  margin-right: 45px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .m-page a:hover {
  border-color: #474747;
}

.inner-page .m-page span.current {
  border-color: #474747;
}

.quality-page .quality-1 .left {
  width: 44%;
}

.quality-page .quality-1 .left .txt {
  line-height: 1.5;
  color: #666;
}

.quality-page .quality-1 .right {
  width: 47%;
}

.quality-page .quality-1 .right .swiper {
  height: 400px;
}

.quality-page .quality-1 .right .swiper ul li .box {
  transform-origin: top;
  transition: all 0.5s;
}

.quality-page .quality-1 .right .swiper ul li.swiper-slide {
  z-index: 1;
  opacity: 0;
}

.quality-page .quality-1 .right .swiper ul li.swiper-slide .box {
  margin-top: 60px;
  transform: scale(1);
}

.quality-page .quality-1 .right .swiper ul li.swiper-slide-prev,
.quality-page .quality-1 .right .swiper ul li.swiper-slide-next {
  z-index: 2;
}

.quality-page .quality-1 .right .swiper ul li.swiper-slide-prev .box,
.quality-page .quality-1 .right .swiper ul li.swiper-slide-next .box {
  margin-top: 40px;
  transform: scale(1.2);
}

.quality-page .quality-1 .right .swiper ul li.swiper-slide-next+li+li {
  opacity: 0;
}

.quality-page .quality-1 .right .swiper ul li.swiper-slide-active {
  z-index: 3;
}

.quality-page .quality-1 .right .swiper ul li.swiper-slide-active .box {
  margin-top: 0;
  transform: scale(1.5);
}

.quality-page .quality-1 .right .swiper ul li.my-slide-visible {
  opacity: 1;
}

.quality-page .quality-2 {
  background-image: url('../images/quality-2Bg.jpg');
}

.quality-page .quality-2 .left {
  width: 45%;
}

.quality-page .quality-2 .right {
  width: 50%;
}

.quality-page .quality-2 .right .item {
  z-index: 2;
}

.quality-page .quality-2 .right .item .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #fff;
}

.quality-page .quality-2 .right .item .txt {
  line-height: 1.39;
  width: calc(100% - 58px);
  box-sizing: border-box;
}

.quality-page .quality-2 .right .item:last-child {
  margin-bottom: 0;
}

.quality-page .quality-2 .right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 29px;
  transform: translateY(-50%);
  height: calc(100% - 80px);
  border-left: 1px dashed #fff;
  opacity: 0.5;
}

.quality-page .quality-3 .left {
  width: 48%;
}

.quality-page .quality-3 .left ul.lists li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.quality-page .quality-3 .left ul.lists li:last-child {
  border-bottom: none;
}

.quality-page .quality-3 .left ul.lists li.active {
  color: var(--color);
}

.quality-page .quality-3 .right {
  width: 46%;
  overflow: hidden;
}

.quality-page .quality-3 .right .imgs li {
  display: none;
  border-radius: 20px;
}

.quality-page .quality-3 .right .imgs li:first-child {
  display: block;
}

.quality-page .quality-3 .right .imgs li img {
  border-radius: 20px;
}

.quality-page .quality-4 {
  color: #141414;
  margin-top: 50px
}

.quality-page .quality-4 .bot .item {
  width: 49%;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #e5e5e5;
  padding: 30px;
  padding-right: 40px;
}

.quality-page .quality-4 .bot .item .titl {
  line-height: 1.4;
}

.quality-page .quality-4 .bot .item .titl span {
  color: var(--color);
}

.quality-page .quality-4 .bot .item .titl i {
  position: absolute;
  width: 14px;
  height: 14px;
  right: -14px;
  top: 5px;
  z-index: 2;
  cursor: pointer;
}

.quality-page .quality-4 .bot .item .titl i::before,
.quality-page .quality-4 .bot .item .titl i::after {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.quality-page .quality-4 .bot .item .titl i::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.quality-page .quality-4 .bot .item .text {
  line-height: 2;
  color: #666;
  display: none;
}

.quality-page .quality-4 .bot .item.active .titl i::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}

@media screen and (max-width: 1250px) {
  .quality-page .quality-1 .right .swiper {
    height: 300px;
  }
}

@media screen and (max-width: 1000px) {
  .quality-page .quality-1 .right {
    margin-top: 40px;
  }

  .quality-page .quality-1 .right .swiper {
    height: auto;
  }

  .quality-page .quality-1 .right .swiper ul li.swiper-slide {
    opacity: 1;
  }

  .quality-page .quality-1 .right .swiper ul li.swiper-slide-active .box {
    margin-top: 0;
    transform: scale(1);
  }

  .quality-page .quality-1 .right .swiper ul li.swiper-slide-prev .box,
  .quality-page .quality-1 .right .swiper ul li.swiper-slide-next .box {
    margin-top: 0;
    transform: scale(1);
  }

  .quality-page .quality-1 .right .swiper ul li.swiper-slide .box {
    margin-top: 0;
  }

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

  .quality-page .quality-2 .right ul {
    line-height: 1.5;
  }

  .quality-page .quality-4 .bot .item {
    width: 100%;
  }
}

.manu-page .txt {
  color: #666;
  line-height: 1.5;
}

.manu-page .manu-1 .left {
  width: 42%;
  position: sticky;
  top: 15%;
  z-index: 9;
  margin-top: 20%;
}

.manu-page .manu-1 .right {
  width: 50%;
}

.manu-page .manu-1 .right .item {
  padding-top: 250px;
  border-radius: 10px;
  background-color: var(--color);
}

.manu-page .manu-1 .right .item .num {
  opacity: 0.3;
}

.manu-page .manu-1 .right .item .titl {
  line-height: 1.2;
}

.manu-page .manu-1 .right .item:nth-child(even) {
  transform: translateY(60px);
}

.manu-page .manu-2 .bot .left {
  width: 42%;
}

.manu-page .manu-2 .bot .right {
  width: 47%;
}

.manu-page .manu-2 .bot .right img {
  border-radius: 30px;
}

.manu-page .manu-2 .bot .item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1000px) {
  .manu-page .manu-1 .left {
    position: static;
    margin-bottom: 30px;
  }
  .manu-page .manu-2 {
    margin-top: 50px;
  }
}

@media screen and (max-width: 700px) {
  .manu-page .manu-1 .right .item:nth-child(even) {
    transform: translateY(0);
  }
}

.forging-page .txt {
  color: #666;
  line-height: 1.5;
}

.forging-page .forging-1 .item {
  width: 47%;
  border-radius: 10px;
}

.forging-page .forging-1 .item .top {
  background-color: #fafafa;
  width: 100%;
}

.forging-page .forging-1 .item .top .line {
  width: 100%;
  height: 1px;
  background-color: var(--color);
}

.forging-page .forging-1 .item .top .text {
  width: calc(100% - 110px);
}

.forging-page .forging-1 .item .top .text .txt {
  height: 110px;
  overflow-y: auto;
}

.forging-page .forging-1 .item .top .icon {
  width: 77px;
}

.forging-page .forging-1 .item img.img {
  border-radius: 0 0 10px 10px;
}

.forging-page .forging-1 .item:nth-child(even) .top .textBox {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .forging-page .forging-1 .item .top .textBox {
    flex-wrap: wrap;
  }
  .forging-page .forging-1 .item .top .text {
    width: 100%;
  }
  .forging-page .forging-1 .item .top .icon {
    width: 50px;
    margin: 15px auto;
  }
}
@media screen and (max-width: 700px) {
  .forging-page .forging-1 .item .top .text {
    width: 100%;
  }
  .forging-page .forging-1 .item {
    width: 100%;
  }
  .forging-page .forging-1 .item .top .text .txt {
    height: auto;
  }
} 
.case-page {
  border-top-left-radius: 30px;
}

.case-page .inner-sub {
  z-index: 1;
}

.case-page .container ul {
  margin: 0 -15px;
}

.case-page .container ul>p {
  font-size: 16px;
  letter-spacing: 0;
}

.case-page .container ul li {
  margin-top: 20px;
  padding: 0 15px;
}

.case-page .container ul li a {
  border-radius: 15px 15px 0 0;
}

.case-page .container ul li img {
  width: 100%;
}

.case-page .container ul li p {
  font-size: 18px;
  text-align: center;
  padding: 5px 10px;
  line-height: 2;
}

@media screen and (max-width:1000px) {
  .case-page {
    margin-top: 0;
  }
}

.casedet-page {
  border-top-left-radius: 0px;
}

.casedet-page .inner-sub {
  z-index: 1;
}

@media screen and (max-width:1500px) {
  .casedet-page {
    padding-left: 0;
  }
}

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

  .casedet-page {
    margin-top: 0;
  }
}

.case_cont .case_left {
  width: 22%;
  position: sticky;
  top: 40px
}

.case_cont .case_left .widget {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px
}

.case_cont .case_left .widget form {
  position: relative
}

.case_cont .case_left .widget form input {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  height: 40px;
  font-size: 16px;
  line-height: 2
}

.case_cont .case_left .widget form button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color);
  color: #fff;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  height: 40px
}

.case_cont .case_left .widget h6 {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 700;
  color: #000
}

.case_cont .case_left .widget ul {
  margin-bottom: 0;
  padding: 0
}

.case_cont .case_left .widget ul li {
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  overflow: hidden
}

.case_cont .case_left .widget ul li a {
  padding-left: 20px;
  line-height: 28px
}

.case_cont .case_left .widget ul li:last-child {
  margin-bottom: 0
}

.case_cont .case_left .widget ul li i {
  font-size: 14px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px
}

.case_cont .case_left .widget ul li:hover,
.case_cont .case_left .widget ul li.active {
  color: var(--color)
}

.case_cont .case_left .widget ul li ul {
  display: none;
  margin-top: 15px
}

.case_cont .case_left .widget ul li ul li a {
  padding-left: 0;
  color: #999
}

.case_cont .case_left .widget ul li ul li a.active {
  color: var(--color)
}

.case_cont .case_left .widget .recent li {
  display: block
}

.case_cont .case_left .widget .recent li .thum {
  width: 100px;
  overflow: hidden;
  float: left
}

.case_cont .case_left .widget .recent li a.title {
  display: block;
  margin-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 2rem
}

.case_cont .case_left .widget .form1 {
  text-align: center
}

.case_cont .case_left .widget .form1 input[type=text],
.case_cont .case_left .widget .form1 textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  margin-bottom: 15px;
  height: 40px;
  font-size: 16px;
  line-height: 2
}

.case_cont .case_left .widget .form1 input[type=submit] {
  background: var(--color);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s
}

.case_cont .case_left .widget .form1 input[type=submit]:hover {
  background: #000
}

.case_cont .case_right {
  width: 78%;
  padding: 0 0 50px 50px;
}


.case_cont .case_right .ap-top {
  position: relative;
  transition: transform .85s cubic-bezier(.15, .95, .4, 1), box-shadow .3s;
  transform-style: preserve-3d;
  perspective: 80000px
}

.case_cont .case_right .ap-top .img {
  transition: transform .85s cubic-bezier(.15, .95, .4, 1), box-shadow .3s;
  position: relative;
  transform-style: preserve-3d;
  transition: all .5s
}

.case_cont .case_right .ap-top .img img {
  width: 100%
}

.case_cont .case_right .ap-top .img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2)
}

.case_cont .case_right .ap-top h6 {
  padding: 0 1.6rem .7rem;
  position: absolute;
  background: 0 0;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  top: 1.6rem;
  left: 0;
  width: 100%;
  z-index: 10;
  text-transform: uppercase
}

.case_cont .case_right .ap-top h6:after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 2rem;
  background-color: #fff
}

.case_cont .case_right .ap-top .desc {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 15px 1.6rem;
  bottom: 0;
  color: #fff;
  background: var(--color);
  z-index: 10
}

.case_cont .case_right .ap-top .desc h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6
}

.case_cont .case_right .ap-top .desc p {
  font-size: 16px;
  line-height: 2
}

.case_cont .case_right .ap-top:hover .img {
  transform: translateY(-3px);
  box-shadow: 0 15px 80px rgba(0, 0, 0, .35)
}


.case_cont .case_right .ap-bottom {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2
}

.case_cont .case_right .ap-bottom h6 {
  font-size: 25px;
  line-height: 1.6;
  color: #002e42;
  text-transform: capitalize;
  font-weight: 700
}

.case_cont .case_right .ap-bottom .con {
  font-size: 15px;
  line-height: 1.6;
  color: #002e42;
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem
}

.case_cont .case_right .ap-bottom .con p {
  margin-bottom: 15px
}

.case_cont .case_right .ap-bottom .bottom2 {
  margin-top: 1.5rem;
  border-bottom: 1px solid #ccc
}

.case_cont .case_right .ap-bottom .bottom2 dl {
  margin-top: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom2 dl dd {
  font-size: 15px;
  line-height: 1.6;
  color: #002e42;
  margin-bottom: 1rem
}

.case_cont .case_right .ap-bottom .bottom3 {
  margin-top: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom3 ul {
  margin-top: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom3 ul li {
  margin-bottom: 1.5rem
}

.case_cont .case_right .ap-bottom .bottom3 ul li h4 {
  font-size: 16px;
  text-transform: capitalize;
  color: #002e42;
  font-weight: 700;
  line-height: 2;
  padding: .8rem 1.2rem;
  padding-right: 40px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, .1);
  position: relative
}

.case_cont .case_right .ap-bottom .bottom3 ul li h4:after {
  content: "\f107";
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 20px;
  font-family: fontAwesome
}

.case_cont .case_right .ap-bottom .bottom3 ul li .desc {
  padding: 1.6rem 2rem .8rem;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .1px;
  color: #002e42;
  display: none
}

.case_cont .case_right .ap-bottom .bottom3 ul li.active h4 {
  background: #1955a0;
  color: #fff
}

.case_cont .case_right .ap-bottom .bottom3 ul li.active h4:after {
  content: "\f106"
}

.case_cont .case_right .ap-bottom .bottom3 ul li:last-child {
  margin-bottom: 0
}

.case_cont .case_right .init-1 {
  padding-right: 160px;
}

.case_cont .case_right .init-1 .img_cont {
  min-height: 100px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
}

.case_cont .case_right .init-1 .img_cont img {
  width: 100%;
  height: 100%;
}

.case_cont .case_right .init-1 .img_cont .text {
  position: absolute;
  bottom: 40px;
  width: 100%;
  left: 0;
  padding: 0 40px;
  font-weight: bold;
}

.case_cont .case_right .init-1 .img_cont .text span {
  border-bottom: 4px solid #fff;
  padding-bottom: 10px;
  display: inline-block;
}

.case_cont .case_right .init-1 .text_cont {
  color: #222222;
  margin-top: 30px;
}

.case_cont .case_right .init-2 {
  margin-top: var(--px50) !important;
}

.case_cont .case_right .init-2 .top {
  position: relative;
}

.case_cont .case_right .init-2 .top::before {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 45px;
  width: calc(100% - 90px);
  height: 1px;
  background: #c4c4c6;
}

.case_cont .case_right .init-2 table {
  border: none;
}

.case_cont .case_right .init-2 table tbody {
  display: block;
}

.case_cont .case_right .init-2 table tr {
  display: block;
  width: 100% !important;
}

.case_cont .case_right .init-2 table tr td {
  border: none;
  padding: 0;
}

.case_cont .case_right .init-2 .top {
  margin: 0 -45px;
}

.case_cont .case_right .init-2 .top .slick-track {
  display: flex;
  flex-wrap: wrap;
}

.case_cont .case_right .init-2 .top .slick-track .slick-slide {
  height: auto;
}

.case_cont .case_right .init-2 .top .slick-track .slick-slide>div {
  height: 100%;
}

.case_cont .case_right .init-2 .top .slick-track .slick-slide>div>td {
  height: 100% !important;
  position: relative;
}

.case_cont .case_right .init-2 .top .slick-track .slick-slide>div>td::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 45px;
  width: 18px;
  height: 3px;
  background: #767677;
  transition: all .5s;
}

.case_cont .case_right .init-2 .top .slick-track .slick-slide.slick-current td {
  color: #000;
}

.case_cont .case_right .init-2 .top .slick-track .slick-slide.slick-current td::before {
  width: calc(100% - 90px);
  background: #0256bf;
}


.case_cont .case_right .init-2 .top table tr td {
  padding: 0 45px;
  font-weight: bold;
  padding-bottom: 30px;
  color: rgba(0, 0, 0, .5);
}

.case_cont .case_right .init-2 .bottom {
  margin-top: 20px;
}

.case_cont .case_right .init-3 {
  margin-top: var(--px50) !important;
}

.case_cont .case_right .init-3 .tips {
  font-weight: bold;
}

.case_cont .case_right .init-3 .swiper {
  margin-top: 40px;
  overflow: hidden;
}

.case_cont .case_right .init-3 .swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.case_cont .case_right .init-3 .swiper .img_c {
  border-radius: 16px;
  overflow: hidden;
}

.case_cont .case_right .init-3 .swiper .img_c img {
  width: 100%;
}

.case_cont .case_right .init-3 .swiper .img_c video {
  display: block;
  width: 100%;
}

.case_cont .case_right .init-4 {
  margin-top: 50px;
}

.case_cont .case_right .init-4 .tips {
  font-weight: bold;
  margin-top: var(--px60) !important;
}

.case_cont .case_right .init-4 .swiper {
  margin-top: 50px;
  overflow: hidden;
}

.case_cont .case_right .init-4 .swiper .swiper-slide {
  height: auto;
}

.case_cont .case_right .init-4 .swiper .swiper-slide .box {
  height: 100%;
}

.case_cont .case_right .init-4 .swiper .swiper-slide a {
  display: block;
}

.case_cont .case_right .init-4 .swiper .swiper-slide .box {
  background: #fff;
  padding: 30px 50px;
  border-radius: 16px;
}

.case_cont .case_right .init-4 .swiper .swiper-slide a img {
  display: block;
  width: 100%;
}

.case_cont .case_right .init-4 .swiper .swiper-slide .text {
  font-family: 'EurostileBla';
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width:1500px) {
  .casedet-page {
    padding-left: 0;
  }

  .case_cont .case_right .init-1 {
    padding-right: 0;
  }

  .case_cont .case_left {
    width: 28%
  }

  .case_cont .case_right {
    width: 72%
  }

  .case_cont .case_left .widget .recent li a.title {
    margin-left: 98px
  }
}

@media screen and (max-width:1250px) {
  .case_cont .case_right .init-4 .swiper .swiper-slide .box {
    padding: 20px 16px;
  }
}

@media screen and (max-width:1000px) {
  .case-page {
    margin-top: 0;
  }

  .casedet-page {
    margin-top: 0;
  }

  .case_cont .case_left {
    display: none
  }

  .case_cont .case_right {
    width: 100%;
    padding-left: 0
  }

  .case_cont .case_right {
    padding: 0 0 var(--px50) !important
  }
}

@media (max-width: 700px) {
  .case_cont .case_right .ap-top .img img {
    min-height: 250px;
    object-fit: cover
  }

  .case_cont .case_right .ap-top .desc p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
  }

  .case_cont .case_right .ap-bottom h6 {
    font-size: 22px;
    line-height: 1.8
  }

  .case_cont .case_right .ap-bottom .bottom3 ul li h4:after {
    right: .5em
  }
}

@media (max-width: 500px) {
  .casedet-page {
    padding: var(--px40) 0 !important;
  }

  .case-page {
    padding: var(--px40) 0 !important;
  }

  .case_cont .case_right .ap-bottom .bottom3 ul li .desc {
    padding: 20px 10px;
  }

  .case_cont .case_right .init-1 .img_cont .text {
    font-size: 20px;
    bottom: 10px;
    padding: 0 10px;
  }

  .case_cont .case_right .init-1 .img_cont .text span {
    padding-bottom: 4px;
    border-bottom: 2px solid #fff;
  }

  .case_cont .case_right .init-1 .text_cont {
    margin-top: 10px;
  }

  .case_cont .case_right .init-2 .top .slick-track .slick-slide.slick-current td {
    padding-bottom: 10px;
  }

  .case_cont .case_right .init-3 .swiper {
    margin-top: 20px;
  }

  .case_cont .case_right .init-4 {
    margin-top: 20px;
  }

  .case_cont .case_right .init-4 .swiper {
    margin-top: 20px;
  }
}

.honor-page .init-1 .container .left {
  width: 230px;
}

.honor-page .init-1 .container .left .listC .list {
  cursor: pointer;
  margin-top: 80px;
  color: #777777;
}

.honor-page .init-1 .container .left .listC .list .num {
  line-height: 1;
}

.honor-page .init-1 .container .left .listC .list .text {
  margin-top: 10px;
}

.honor-page .init-1 .container .left .listC .list .line {
  height: 5px;
  width: 100%;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  background-color: var(--color);
  margin-top: 10px;
}

.honor-page .init-1 .container .left .listC .list:hover,
.honor-page .init-1 .container .left .listC .list.active {
  color: var(--color);
}

.honor-page .init-1 .container .left .listC .list:hover .line,
.honor-page .init-1 .container .left .listC .list.active .line {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.honor-page .init-1 .container .left .listC .list:first-child {
  margin-top: 0;
}

.honor-page .init-1 .container .right {
  width: -webkit-calc(-130%);
  width: -moz-calc(-130%);
  width: calc(100% - 230px);
  padding-left: 120px;
}

.honor-page .init-1 .container .right .list {
  display: none;
  width: 100%;
}

.honor-page .init-1 .container .right .list .listC {
  width: 100%;
  position: relative;
}

.honor-page .init-1 .container .right .list .imgC {
  padding-right: 70px;
  width: -webkit-calc(-150%);
  width: -moz-calc(-150%);
  width: calc(100% - 250px);
  position: relative;
}

.honor-page .init-1 .container .right .list .imgC ul .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
}

.honor-page .init-1 .container .right .list .imgC ul .slick-slide {
  height: auto;
}

.honor-page .init-1 .container .right .list .imgC ul .slick-slide>div {
  height: 100%;
}

.honor-page .init-1 .container .right .list .imgC ul .slick-list {
  height: 100%;
}

.honor-page .init-1 .container .right .list .imgC ul li {
  height: 100%;
  padding: 90px 0;
  width: 30%;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.honor-page .init-1 .container .right .list .imgC ul li .box {
  height: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.4;
  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;
}

.honor-page .init-1 .container .right .list .imgC ul li .box .img img {
  width: 100%;
}

.honor-page .init-1 .container .right .list .imgC ul .slick-current li {
  z-index: 2;
}

.honor-page .init-1 .container .right .list .imgC ul .slick-current li .box {
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 2;
  opacity: 1;
}

.honor-page .init-1 .container .right .list .galleryC {
  width: 250px;
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.honor-page .init-1 .container .right .list .galleryC i {
  font-size: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}

.honor-page .init-1 .container .right .list .galleryC i:hover {
  color: var(--color);
}

.honor-page .init-1 .container .right .list .galleryC .prev {
  top: 0;
  bottom: unset;
}

.honor-page .init-1 .container .right .list .galleryC ul li {
  padding: 10px 0;
}

.honor-page .init-1 .container .right .list .galleryC ul li .box {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  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: 10px;
  height: 74px;
  cursor: pointer;
  font-size: 18px;
}

.honor-page .init-1 .container .right .list .galleryC ul li .box p {
  overflow-y: auto;
  padding-right: 4px;
  max-height: 74px;
}

.honor-page .init-1 .container .right .list .galleryC ul .slick-current li .box {
  background-color: var(--color);
  color: #fff;
}

.honor-page .init-1 .container .right .list.active {
  display: block;
}

.honor-page .init-1 .container .right .list.active .listC .imgC {
  -webkit-animation: fadeInLeftSmall 0.5s linear;
  -moz-animation: fadeInLeftSmall 0.5s linear;
  -o-animation: fadeInLeftSmall 0.5s linear;
  animation: fadeInLeftSmall 0.5s linear;
}

.honor-page .init-1 .container .right .list.active .listC .galleryC {
  -webkit-animation: fadeInRightSmall 0.5s linear;
  -moz-animation: fadeInRightSmall 0.5s linear;
  -o-animation: fadeInRightSmall 0.5s linear;
  animation: fadeInRightSmall 0.5s linear;
}

@media (max-width: 1250px) {
  .honor-page .init-1 .container .left {
    width: 150px;
  }

  .honor-page .init-1 .container .right {
    width: -webkit-calc(-50%);
    width: -moz-calc(-50%);
    width: calc(100% - 150px);
    padding-left: 20px;
  }

  .honor-page .init-1 .container .right .list .imgC {
    padding-right: 20px;
  }
}

@media (max-width: 1000px) {
  .honor-page .init-1 .container .left {
    width: 100%;
  }

  .honor-page .init-1 .container .left .listC {
    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: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .honor-page .init-1 .container .left .listC .list {
    margin: 20px 15px 0;
    text-align: center;
  }

  .honor-page .init-1 .container .left .listC .list:first-child {
    margin-top: 20px;
  }

  .honor-page .init-1 .container .right {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .honor-page .init-1 .container .right .list .imgC {
    width: 100%;
  }

  .honor-page .init-1 .container .right .list .galleryC {
    width: 100%;
  }

  .honor-page .init-1 .container .right .list .galleryC ul li .box {
    height: auto;
    padding: 16px;
  }

  .honor-page .init-1 .container .right .list .imgC {
    padding-right: 0;
  }
}

@media (max-width: 500px) {
  .honor-page .init-1 .container .right .list .imgC ul .slick-current li .box {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  .honor-page .init-1 .container .right .list .imgC ul li {
    padding: 40px 5px;
    padding-top: 20px;
  }
}

.contact-page .init-1 .container .contentC {
  overflow: hidden;
  padding: 60px 80px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.contact-page .init-1 .container .contentC .tipsTitle {
  text-align: center;
}

.contact-page .init-1 .container .contentC .subImg {
  z-index: -1;
  bottom: -50px;
  right: 0;
  height: 150px;
  width: 100%;
  position: absolute;
  background-position: right bottom;
}

.contact-page .init-1 .container .contentC form {
  margin-top: 20px;
}

.contact-page .init-1 .container .contentC form .list {
  width: 33.33%;
  margin-top: 30px;
  padding: 0 10px;
}

.contact-page .init-1 .container .contentC form .list .tips {
  color: #767676;
}

.contact-page .init-1 .container .contentC form .list input,
.contact-page .init-1 .container .contentC form .list textarea {
  width: 100%;
  background-color: #f7f7f7;
  border: none;
  margin-top: 6px;
  padding: 10px;
}

.contact-page .init-1 .container .contentC form .list .btn {
  display: inline-block;
  padding: 14px;
  min-width: 190px;
  border: 1px solid var(--color);
  color: var(--color);
  text-align: center;
  background-color: #fff;
  cursor: pointer;
}

.contact-page .init-1 .container .contentC form .list .btn:hover {
  background-color: var(--color);
  color: #fff;
}

.contact-page .init-1 .container .contentC form .w-100 {
  width: 100%;
}

.contact-page .init-2 .container .listCont {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 60px;
}

.contact-page .init-2 .container .listCont .list {
  margin-top: 60px;
  text-align: center;
  padding: 0 5px;
  width: 33%;
}

.contact-page .init-2 .container .listCont .list .cir {
  width: 124px;
  height: 124px;
  border: 1px solid #6076f1;
  border-radius: 50%;
  margin: auto;
}

.contact-page .init-2 .container .listCont .list .cir img {
  max-width: 60%;
}

.contact-page .init-2 .container .listCont .list .title {
  margin-top: 20px;
}

.contact-page .init-2 .container .listCont .list .des {
  color: #767676;
  margin-top: 6px;
}

.contact-page .init-2 .container .listCont .list:hover {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}

@media (max-width: 1250px) {
  .contact-page .init-1 .container .contentC .subImg {
    display: none;
  }

  .contact-page .init-2 .container .listCont .list {
    width: 50%;
  }
}

@media (max-width: 1000px) {
  .contact-page .init-1 .container .contentC {
    padding: 60px 20px;
  }

  .contact-page .init-1 .container .contentC form .list {
    width: 50%;
  }

  .contact-page .init-1 .container .contentC form .w-100 {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .contact-page .init-1 .container .contentC form .list {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .contact-page .init-1 .container .contentC {
    padding: 40px 6px;
  }

  .contact-page .init-1 .container .contentC form .list {
    margin-top: 16px;
  }

  .contact-page .init-1 .container .contentC form .list .btn {
    padding: 6px;
  }

  .contact-page .init-2 .container .listCont {
    padding-top: 0;
  }

  .contact-page .init-2 .container .listCont .list {
    width: 100%;
  }
}

.product-page .category {
  text-align: center;
}

.product-page .category .ui.container {
  max-width: 1728px;
  width: 100%;
}

.product-page .category ul {
  margin-right: -40px;
}

.product-page .category ul li {
  padding-right: 40px;
}

.product-page .category ul li .img-box {
  display: block;
}

.product-page .category ul li .img-box img {
  display: inline-block;
}

.product-page .category ul li .tit {
  display: block;
  font-size: 16px;
  color: #474747;
  font-weight: bold;
  line-height: 2;
}

.product-page .category ul li.active .tit {
  color: var(--color);
}

.product-page .top {
  text-align: center;
  margin-top: 5%;
}

.product-page .top .fl-list {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 365px;
  height: 68px;
}

.product-page .top .fl-list span {
  width: 100%;
  height: 100%;
  display: block;
  border: solid 1px #474747;
  text-align: left;
  padding: 21px 34px 0 28px;
  cursor: pointer;
  font-size: 16px;
  color: #474747;
  font-weight: bold;
  line-height: 1.8;
}

.product-page .top .fl-list span em {
  display: inline-block;
  /*margin-right: 22px;*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 86%;
}

.product-page .top .fl-list span i {
  float: right;
  margin-top: 8px;
}

.product-page .top .fl-list > ul {
  text-align: left;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  background: white;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
}

.product-page .top .fl-list > ul li {
  font-size: 14px;
  padding: 10px;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
  font-weight: bold;
  position: relative;
}
.product-page .top .fl-list > ul li a{
  width: 100%;
  padding-right: 15px;
  display: inline-block;
}
.product-page .top .fl-list > ul li i {
  position: absolute;
  top: 10px;
  font-size: 22px;
  right: 5px;
  cursor: pointer;
}

.product-page .top .fl-list > ul > li:hover {
  color: var(--color);
}
.product-page .top .fl-list > ul li > ul {
  padding-left: 15px;
  display: none;
}

.product-page .top .fl-list:hover > ul {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
.product-page .top .fl-list > ul > li > ul {
  /*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;
  /*height: 0;*/
  background-color: #fff;
  color: #333;
}
.product-page .top .fl-list > ul.menu1 {
  max-height: 260px;
  overflow-y: auto;
}
/*.product-page .top .fl-list > ul > li:hover > ul {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  height: auto;
}*/
.product-page .top .fl-list > ul > li > ul > li:hover {
  color: var(--color);
}


.product-page .top .product-search {
  vertical-align: top;
  display: inline-block;
  margin-left: 54px;
}

.product-page .top .product-search form {
  width: 365px;
  position: relative;
}

.product-page .top .product-search form input[type="text"] {
  width: 100%;
  height: 68px;
  border: solid 1px #474747;
  font-size: 16px;
  color: #474747;
  font-weight: bold;
  padding: 0 100px 0 30px;
}

.product-page .top .product-search form input[type="submit"] {
  width: 91px;
  height: 68px;
  border: 1px solid #474747;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/product-search.png) #474747 no-repeat center center;
}

.product-page .info {
  color: #474747;
  padding-top: 3.3%;
}

.product-page .info .ui.container {
  max-width: 1273px;
}

.product-page .info h1 {
  line-height: 1.2;
  font-weight: bold;
}

.product-page .info .con {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1%;
}

.product-page .list {
  margin-top: 3.25%;
}

.product-page .list ul {
  margin: 0 -52px -50px 0;
}

.product-page .list ul li {
  padding: 0 52px 50px 0;
}

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

.product-page .list ul li .img-box img {
  display: inline-block;
}

.product-page .list ul li .img-box .i2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.product-page .list ul li .img-box:hover .i1 {
  opacity: 1;
}

.product-page .list ul li .img-box:hover .i2 {
  opacity: 1;
}

.product-page .list ul li .tit {
  color: #474747;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 25px;
  display: block;
}

.product-page .list ul li .tit:hover {
  color: var(--color);
}
.product-page .Hbtn1 {
  background-color: var(--color);
}
.product-page .list ul li:hover .btnBox {
  opacity: 1;
}

@media screen and (max-width: 1280px) {
  .product-page .list ul {
    margin: 0 -30px -50px 0;
  }

  .product-page .list ul li {
    padding: 0 30px 20px 0;
  }

  .product-page .list .con {
    max-height: 200px;
    overflow-y: auto;
  }

}

@media screen and (max-width: 1000px) {
  .product-page .top .fl-list {
    width: 320px;
    margin-bottom: 15px;
  }

  .product-page .top .product-search {
    margin-left: 0;
  }

  .product-page .top .product-search form {
    width: 320px;
  }

  .product-page .list ul {
    margin: 0 -15px -30px 0;
  }

  .product-page .list ul li {
    padding: 0 15px 30px 0;
  }

  .product-page .category {
    display: none;
  }

  .product-page #index-body .news .content ul li .tips .category {
    display: inline-block;
  }
}

@media screen and (max-width: 700px) {
  .product-page .top {
    display: none;
  }

}

@media screen and (max-width: 500px) {
  .product-page .list ul li .tit {
    line-height: 2;
  }

}

.prodet-page .prodet-1 .left {
  /*vertical-align: bottom;*/
  border: 1px solid #e6e6e6;
  text-align: center;
  width: 41.24%;
}

.prodet-page .prodet-1 .left img {
  width: 100%;
}

.prodet-page .prodet-1 .right {
  width: 58%;
  vertical-align: bottom;
}

.prodet-page .prodet-1 .right span.txt {
  line-height: 1.5;
  color: var(--color);
  font-weight: bold;
}

.prodet-page .prodet-1 .right h1 {
  font-size: 30px;
  color: #000;
  /*line-height: 60px;*/
  font-weight: bold;
  margin-top: 27px;
}

.prodet-page .prodet-1 .right .gallery {
  margin-top: 50px;
}

.prodet-page .prodet-1 .right .gallery ul {
  margin-right: -33px;
}

.prodet-page .prodet-1 .right .gallery ul li {
  padding-right: 33px;
  height: 100%;
}

.prodet-page .prodet-1 .right .gallery ul li .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #e6e6e6;
  height: 100%;
}

.prodet-page .prodet-1 .right a.mores {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  background: var(--color);
  color: white;
  padding: 12px 37px 11px 36px;
  margin-top: 49px;
  position: relative;
  z-index: 1;
}

.prodet-page .prodet-1 .right a.mores::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet-page .prodet-1 .right a.mores:hover::after {
  width: 100%;
}

.prodet-page .prodet-1 .right .m-link {
  margin-top: 52px;
}

.prodet-page .prodet-1 .right .m-link a {
  display: block;
  font-size: 18px;
  line-height: 2;
  color: #474747;
  font-weight: 600;
}

.prodet-page .prodet-2 {
  margin-top: 70px;
}

.prodet-page .prodet-2 .top {
  padding-bottom: 27px;
  border-bottom: 1px solid #d8d8d8;
}

.prodet-page .prodet-2 .top ul li {
  display: inline-block;
  margin-right: 105px;
  color: #474747;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}

.prodet-page .prodet-2 .top ul li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color);
  display: inline-block;
  vertical-align: top;
  margin: 8px 12px 0 0;
  display: none;
}

.prodet-page .prodet-2 .top ul li:last-child {
  margin-right: 0;
}

.prodet-page .prodet-2 .top ul li.active::before {
  display: inline-block;
}

.prodet-page .prodet-2 .content {
  margin-top: 26px;
  color: #474747;
  font-size: 18px;
  line-height: 2;
  /*font-weight: 300;*/
}

.prodet-page .prodet-2 .content .title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  display: none;
}

.prodet-page .prodet-2 .content .title::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color);
  display: inline-block;
  vertical-align: top;
  margin: 14px 12px 0 0;
}

.prodet-page .prodet-2 .content strong {
  font-weight: bold;
}

.prodet-page .prodet-3 {
  margin-top: 130px;
}

.prodet-page .prodet-3 ul {
  margin-right: -54px;
}

.prodet-page .prodet-3 ul li {
  padding-right: 54px;
  height: 100%;
}

.prodet-page .prodet-3 ul li .img-box {
  display: block;
  border: solid 1px #e6e6e6;
}

.prodet-page .prodet-3 ul li .tit {
  display: block;
  padding: 31px 0 0 12px;
  font-size: 20px;
  line-height: 2;
  color: #474747;
  font-weight: bold;
}

.prodet-page .prodet-3 ul li .tit:hover {
  color: var(--color);
}

@media screen and (max-width: 1440px) {
  .prodet-page .prodet-1 .right h1 {
    font-size: 36px;
  }

  .prodet-page .prodet-1 .right {
    padding-left: 40px;
  }
}

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

  .prodet-page .prodet-1 .right h1 {
    font-size: 30px;
    margin-top: 10px;
  }

  .prodet-page .prodet-1 .right .gallery {
    margin-top: 20px;
  }

  .prodet-page .prodet-1 .right a.mores {
    margin-top: 25px;
  }

  .prodet-page .prodet-1 .right .m-link {
    margin-top: 30px;
  }

  .prodet-page .prodet-3 ul {
    margin-right: -20px;
  }

  .prodet-page .prodet-3 ul li {
    padding-right: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .prodet-page {
    padding: 60px 0;
  }

  .prodet-page .prodet-1 .left {
    width: 100%;
  }

  .prodet-page .prodet-1 .right {
    margin-top: 25px;
  }

  .prodet-page .prodet-3 {
    margin-top: 60px;
  }

  .prodet-page .prodet-3 ul li .tit {
    padding: 15px 0 0 0;
  }
}

@media screen and (max-width: 700px) {
  .prodet-page {
    padding: 30px 0;
  }

  .prodet-page .prodet-2 {
    margin-top: 30px;
  }

  .prodet-page .prodet-2 .top ul li {
    margin-right: 50px;
  }

  .prodet-page .prodet-3 {
    margin-top: 30px;
  }
}

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

  .prodet-page .prodet-1 .right h1 {
    font-size: 26px;
  }

  .prodet-page .prodet-2 .top {
    display: none;
  }

  .prodet-page .prodet-2 .content .title {
    display: block;
    margin-bottom: 20px;
  }

  .prodet-page .prodet-2 .content .slide {
    display: block;
    margin-top: 20px;
  }

  .prodet-page .prodet-2 .content .slide:first-child {
    margin-top: 0;
  }
}

.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}

.about-page .about-1 .left {
  vertical-align: bottom;
  padding-right: 27px;
  margin-bottom: 15px;
  width: 100%;
  margin-top: 30px;
}

.about-page .about-1 .left .title {
  margin-top: -1%;
}

.about-page .about-1 .left .con {
  font-size: 16px;
  color: #323232;
  line-height: 30px;
  margin-top: 30px;
}

.about-page .about-1 .right {
  /*padding-left: 59px;*/
  vertical-align: baseline;
  width: 100%;
}

.about-page .about-1 .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  text-align: center;
  line-height: 80px;
  cursor: pointer;
  background: var(--color);
  color: white;
  font-size: 30px;
}

.about-page .about-1 .play i {
  position: relative;
  left: 3px;
}

.about-page .about-1 .right .data {
  margin-top: 46px;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  padding: 24px 30px 13px 30px;
}

.about-page .about-1 .right .data ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-page .about-1 .right .data ul li {
  display: inline-block;
  /*font-weight: 600;*/
  color: var(--color);
  /*font-size: 18px;*/
  line-height: 1.6;
}

.about-page .about-1 .right .data ul li span {
  line-height: 1;
}

.about-page .about-1 .right .data ul li .num {
  font-size: 60px;
  line-height: 1;
}

.about-page .about-1 .right .data ul li p {
  margin-top: 12px;
}

.about-page .about-2 {
  padding: 11.41% 0 10%;
}

.about-page .about-2 .left {
  width: 35%;
  padding-top: 54px;
}

.about-page .about-2 .left ul li {
  padding-bottom: 45px;
}

.about-page .about-2 .left ul li i {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
}

.about-page .about-2 .left ul li span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 16px;
  font-size: 20px;
  color: #323232;
  font-weight: 600;
  line-height: 1.6;
  width: 88%;
}

.about-page .about-2 .left ul li:last-child {
  padding-bottom: 0;
}

.about-page .about-2 .right {
  width: 65%;
  position: relative;
}

.about-page .about-2 .right .title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 900;
  max-width: 668px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-page .about-2 .right .info {
  margin-top: -5.5%;
}

.about-page .about-2 .right .info .img-box {
  width: 50.81%;
}

.about-page .about-2 .right .info .text {
  width: 49.19%;
  padding: 13.21% 0 0 45px;
}

.about-page .about-2 .right .info .text .con {
  font-size: 20px;
  /*font-weight: 600;*/
  color: #323232;
  line-height: 1.5;
}

.about-page .about-2 .right .info .text .more {
  margin: 47px 0 0 88px;
}

.about-page .about-2 .right .bicycle {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -50px;
}

.about-page .about-2 .right .bicycle .tire {
  position: absolute;
  z-index: -1;
  bottom: -84px;
  -webkit-animation: xz 2s linear infinite;
  -moz-animation: xz 2s linear infinite;
  animation: xz 2s linear infinite;
}

.about-page .about-2 .right .bicycle .tire1 {
  left: -128px;
}

.about-page .about-2 .right .bicycle .tire2 {
  right: -141px;
}

.about-page .about-2 .right .shadow {
  position: absolute;
  bottom: -110px;
  left: -130px;
}

.about-page .about-3 {
  padding: 9.2% 0 8.24%;
  background: url(/zhonghaiprecision/2025/12/23/beijing2.jpg) no-repeat center center;
  background-size: cover;
  color: white;
}

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

.about-page .about-3 .left .title {
  font-size: 60px;
  line-height: 1.4;
  font-weight: 700;
}

.about-page .about-3 .left p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 37px;
}

.about-page .about-3 .left .more {
  color: white;
  margin-top: 36px;
}

.about-page .about-3 .left .more::before {
  background: white;
}

.about-page .about-3 .left .more::after {
  background-color: var(--color);
}

.about-page .about-3 .right {
  width: 68%;
  padding-left: 8.21%;
}

/*.about-page .about-3 .right ul {
  margin-right: -63px;
  margin-left: -29px;
}*/
/*.about-page .about-3 .right ul .slick-slide {
  padding: 19px 20px 29px;
}*/
/*.about-page .about-3 .right ul .slick-current li .ig {
  -webkit-transform: scale(1.023);
  -moz-transform: scale(1.023);
  -ms-transform: scale(1.023);
  transform: scale(1.023);
  margin-left: 0;
}*/
/*.about-page .about-3 .right ul .slick-current li .ig .img-box {
  opacity: 1;
}*/
.about-page .about-3 .right ul li .ig {
  padding: 19px 17px;
  /*border: 1px solid rgba(255, 255, 255, 0.35);*/
  /*-webkit-transform: scale(0.908);
  -moz-transform: scale(0.908);
  -ms-transform: scale(0.908);
  transform: scale(0.908);*/
  margin-left: 17px;
}

.about-page .about-3 .right ul li .ig .img-box {
  display: block;
  /*border: 20px solid var(--color);*/
  position: relative;
  z-index: 1;
  /*opacity: .6;*/
}

.about-page .about-4 {
  /*padding-top: 6.1%;*/
}

.about-page .about-4 .left {
  width: 74.37%;
  vertical-align: bottom;
  padding-right: 82px;
}

.about-page .about-4 .left ul {
  margin-right: -80px;
}

.about-page .about-4 .left ul li {
  padding-right: 80px;
  color: #323232;
}

.about-page .about-4 .left ul li .top em {
  display: inline-block;
  vertical-align: bottom;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

.about-page .about-4 .left ul li .top span {
  display: inline-block;
  vertical-align: bottom;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 10px;
}

.about-page .about-4 .left ul li .con {
  font-size: 18px;
  line-height: 32px;
  margin-top: 34px;
  font-weight: 400;
}

.about-page .about-4 .left ul li .img-box {
  margin-top: 39px;
}

.about-page .about-4 .right {
  vertical-align: bottom;
  color: #323232;
  width: 25.63%;
}

.about-page .about-4 .right .title {
  font-weight: 900;
  line-height: 1.1;
}

.about-page .about-4 .right .con {
  font-size: 20px;
  line-height: 1.8;
  /*font-weight: 300;*/
  margin-top: 59px;
}


.about-page .about-5 {
  padding: 7.1% 0 0%;
}

.about-page .about-5 .ui.container {
  max-width: 100%;
  padding: 0;
}

.about-page .about-5 .title {
  font-size: 60px;
  line-height: 1;
  font-weight: 900;
  color: #323232;
}

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

/*.about-page .about-5 .content ul {
  margin-right: -78px;
}
.about-page .about-5 .content ul li {
  padding-right: 78px;
}*/
.about-page .about-5 .content ul li .ig {
  position: relative;
  z-index: 1;
  /*padding-bottom: 65px;*/
}

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

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

.about-page .about-5 .content ul li .ig .text {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color);
  width: 100%;
  height: 87%;
  z-index: -1;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 17px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}

.about-page .about-5 .content ul li .ig:hover .text {
  top: 50px;
  left: 53px;
  opacity: 1;
}

.about-page .about_process {
  padding-top: 80px;
}

.about-page .about_process ul {
  margin: -20px;
}

.about-page .about_process ul li {
  padding: 20px;
}

.about-page .about_process ul li .title {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.about-page .about_process ul li .des {
  font-size: 18px;
  line-height: 32px;
}

@media screen and (max-width: 1680px) {
  .about-page .about-2 .left ul li span {
    width: 86%;
  }

  .about-page .about-2 .right .bicycle {
    zoom: .82;
  }

  .about-page .about-2 .right .shadow {
    zoom: .8;
  }

  .about-page .about-1 .right .data {
    padding: 24px 29px 13px;
  }

}

@media screen and (max-width: 1440px) {
  .about-page .about-1 .right .data ul li .num {
    font-size: 50px;
    line-height: 1;
  }

  .about-page .about-2 .left ul li {
    padding-bottom: 50px;
  }

  .about-page .about-2 .left ul li span {
    font-size: 20px;
    width: 85%;
    padding-left: 10px;
  }

  .about-page .about-2 .right .info .text {
    padding: 12% 0 0 45px;
  }

  .about-page .about-2 .right .info .text .con {
    font-size: 20px;
  }

  .about-page .about-3 .left .title {
    font-size: 46px;
  }

  .about-page .about-4 .left {
    padding-right: 30px;
  }

  .about-page .about-4 .left ul {
    margin-right: -40px;
  }

  .about-page .about-4 .left ul li {
    padding-right: 40px;
  }

  .about-page .about-4 .left ul li .top span {
    font-size: 18px;
    width: 67%;
  }

  .about-page .about-4 .left ul li .con {
    font-size: 17px;
  }

  .about-page .about-5 .content ul li .ig .text {
    height: 80%;
  }
}

@media screen and (max-width: 1280px) {
  .about-page .about-1 .left {
    padding-right: 0;
  }

  .about-page .about-1 .right {
    padding-left: 30px;
  }

  .about-page .about-1 .right .data {
    padding: 24px 15px 13px;
  }

  .about-page .about-2 .right .bicycle {
    zoom: .6;
  }

  .about-page .about-2 .left ul li span {
    font-size: 18px;
    width: 82%;
  }

  .about-page .about-2 .right .title {
    font-size: 40px;
  }

  .about-page .about-2 .right .shadow {
    zoom: .6;
  }

  .about-page .about-4 .right .con {
    font-size: 18px;
    margin-top: 40px;
  }

  .about-page .about-4 .left ul {
    margin-right: -20px;
  }

  .about-page .about-4 .left ul li {
    padding-right: 20px;
  }

  .about-page .about-4 .left ul li .top em {
    font-size: 50px;
  }

  .about-page .about-4 .left ul li .con {
    font-size: 15px;
  }

  .about-page .about-5 .content ul li .ig:hover .text {
    left: 30px;
  }
}

@media screen and (max-width: 1100px) {
  .about-page .about-1 .left .con {
    margin-top: 30px;
  }

  .about-page .about-2 .left ul li {
    padding-bottom: 30px;
  }

  .about-page .about-2 .left ul li span {
    width: 80%;
    font-size: 16px;
  }

  .about-page .about-2 .right .info .text {
    padding: 7% 0 0 45px;
  }

  .about-page .about-2 .right .info .text .con {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-page .about-2 .right .info .text .more {
    margin: 40px 0 0 70px;
  }

  .about-page .about-3 .left .title {
    font-size: 38px;
  }

  /*.about-page .about-4 .left ul li .con {
    height: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
  }*/
  .about-page .about-4 .right a {
    font-size: 18px;
  }

  .about-page .about-5 .content ul {
    margin-right: -40px;
  }

  .about-page .about-5 .content ul li {
    padding-right: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .about-banner {
    height: 300px;
    padding-top: 150px;
  }

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

  .about-page .about-1 .right {
    display: none;
  }

  .about-page .about-2 .left {
    width: 100%;
    padding-top: 0;
  }

  .about-page .about-2 .right {
    width: 100%;
    padding-top: 20px;
  }

  .about-page .about-2 .right .bicycle {
    left: 130px;
    zoom: .55;
  }

  .about-page .about-2 .right .shadow {
    zoom: .55;
    left: 0;
  }

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

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

  .about-page .about-4 .left {
    width: 100%;
    padding-right: 0;
  }

  .about-page .about-4 .left ul li .top em {
    display: block;
  }

  .about-page .about-4 .left ul li .top span {
    width: 100%;
    display: block;
    padding: 0;
    height: 60px;
  }

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

  .about-page .about-4 .right .con {
    margin-top: 15px;
  }

  .about-page .about-4 .right a {
    margin-top: 20px;
  }

  .about-page .about-5 .title {
    font-size: 50px;
  }

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

@media screen and (max-width: 700px) {
  .about-page .about-4 .left ul li {
    margin-top: 30px;
  }

  .about-page .about-2 {
    padding: 7% 0 10%;
  }

  .about-page .about-2 .right {
    display: none;
  }

  .about-page .about-5 .title {
    font-size: 40px;
  }

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

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

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

  .about-page .about-5 .content ul li .ig {
    padding-bottom: 0;
  }

  .about-page .about-5 .content ul li .ig .text {
    position: initial;
    height: auto;
    opacity: 1;
    background: var(--color);
    padding: 10px 0;
  }

  .about-page .about-5 .content ul li .ig:hover .text {
    left: 0;
    top: 0;
  }
}

@media screen and (max-width: 500px) {
  .about-page .about-2 .left ul li span {
    width: 78%;
  }

  .about-page .about-3 .left .title {
    font-size: 30px;
  }

  .about-page .about-3 .left p {
    font-size: 15px;
    margin-top: 15px;
  }

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

  .about-page .about-5 .title {
    font-size: 27px;
  }
}

.testimonials-page .marginBox {
  text-align: center;
}

.testimonials-page .options {
  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;
  border-bottom: 1px solid #c3c3c3;
  margin-top: 110px;
}

.testimonials-page .options span {
  font-size: 20px;
  font-weight: bold;
  width: 360px;
  margin-right: 1em;
  height: 2.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 .75em;
  border: 1px solid #c3c3c3;
  cursor: pointer;
  cursor: hand;
  background: #eee;
  margin-bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.testimonials-page .options span em {
  color: #bfbfbf;
}

.testimonials-page .options span.active {
  background-color: white;
  border-bottom-color: transparent;
}

.testimonials-page .ret .list {
  margin: 0;
}

.testimonials-page .ret .list ul {
  margin: -30px -15px;
  text-align: left;
}

.testimonials-page .ret .list ul.active li a {
  /*border: 10px solid var(--color);*/
}

.testimonials-page .ret .list ul li {
  padding: 30px 15px;
  text-align: center;
}

.testimonials-page .ret .list ul li a {
  display: block;
  position: relative;
}

.testimonials-page .ret .list ul li a img {
  width: 100%;
}

.testimonials-page .ret .list ul li a span {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  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;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.testimonials-page .ret .list ul li a span img {
  width: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.testimonials-page .ret .list ul li a:hover span {
  opacity: 1;
}
@media screen and (max-width: 1600px){
  
  .testimonials-page .options span {
    font-size: 18px;
    width: 280px;
  }

  .testimonials-page .options {
    margin-top: 60px;
  }

  /*.testimonials-page .ret .list {
    margin: 50px 0;
  }*/
  .testimonials-page .ret .list ul li {
    padding: 10px;
  }

  .testimonials-page .ret .list ul {
    margin: -10px;
  }
}
@media screen and (max-width: 1450px) {
  .testimonials-page .marginBox {
    padding: 60px 0;
  }

  .testimonials-page .options span {
    font-size: 16px;
    width: 220px;
  }

  .testimonials-page .options {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1250px){
  .testimonials-page .options span {
    font-size: 14px;
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .testimonials-page .options {
    display: none;
  }
}

.faq-page .marginBox {
  padding: 110px 0 100px;
  text-align: center;
}

.faq-page .marginBox .box {
  margin-top: 50px;
  text-align: left;
}

.faq-page .marginBox .box .left {
  width: 40%;
}

.faq-page .marginBox .box .left .box2 {
  padding: 50px 35px;
  background: var(--color);
}

.faq-page .marginBox .box .left .box2 .slide {
  padding-right: 10px;
}

.faq-page .marginBox .box .left .box2 .slide span.h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 1.8em;
  display: block;
  color: #fff;
}

.faq-page .marginBox .box .left .box2 .slide .nav ul li {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 1em;
  line-height: 1.2;
}

.faq-page .marginBox .box .left .box2 .slide .nav ul li ul {
  display: none !important;
}

.faq-page .marginBox .box .left .box2 .slide .nav ul li:last-child {
  margin-bottom: 0;
}

.faq-page .marginBox .box .right {
  width: 60%;
  padding-left: 3%;
}

.faq-page .marginBox .box .right .list ul li {
  margin-bottom: 20px;
  padding: 15px;
  background: #f3f3f3;
  border: 1px solid #dddddd;
}

.faq-page .marginBox .box .right .list ul li span.title {
  font-weight: bold;
  font-size: 18px;
  color: #242424;
  text-align: right;
  display: block;
  position: relative;
  padding-left: 20px;
}

.faq-page .marginBox .box .right .list ul li span.title i {
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 5px;
  cursor: pointer;
  cursor: hand;
}

.faq-page .marginBox .box .right .list ul li span.title i:after,
.faq-page .marginBox .box .right .list ul li span.title i:before {
  content: '';
  background: black;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.faq-page .marginBox .box .right .list ul li span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page .marginBox .box .right .list ul li .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 1.6;
  margin: 30px 0;
  display: none;
}

.faq-page .marginBox .box .right .list ul li.active {
  background: white;
}

.faq-page .marginBox .box .right .list ul li.active span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}

.faq-page .marginBox .box .right .list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1600px) {
  .faq-page .marginBox .box .left .box2 {
    padding: 30px 20px;
  }

  .faq-page .marginBox .box .left .box2 .slide span.h6 {
    font-size: 16px;
    margin-bottom: 1em;
  }

  .faq-page .marginBox .box .left .box2 .slide .nav ul li {
    font-size: 16px;
    margin-bottom: .8em;
  }

  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 16px;
  }

  .faq-page .marginBox .box .right .list ul li .text {
    margin: 20px 0;
  }

  .faq-page .marginBox .box .right .list ul li {
    padding: 10px;
    margin-bottom: 10px;
  }

  .faq-page .marginBox {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1250px){
  .faq-page .marginBox .box {
    margin-top: 30px;
  }

  .faq-page .marginBox .box .right {
    width: 100%;
    padding-left: 0;
  }

  .faq-page .marginBox .box .left {
    display: none;
  }
}
@media screen and (max-width: 700px){
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 14px;
    padding-left: 10px;
    line-height: 2;
  }

  .faq-page .marginBox .box .right .list ul li span.title i {
    width: 10px;
    height: 10px;
    font-size: 14px;
  }
}

.inner-page .sideBarBox .sideBarLeft {
  width: 70%;
  padding-right: 3%;
}

.inner-page .sideBarBox .sideBarRight {
  width: 30%;
  padding: 25px;
  background: #f3f3f3;
  position: sticky;
  top: 100px;
}

.inner-page .sideBarBox .sideBarRight span.h5 {
  font-size: 20px;
  font-weight: bold;
  color: #242424;
  line-height: 1.2;
  margin-bottom: .8em;
  display: block;
  margin-top: 2em;
}

.inner-page .sideBarBox .sideBarRight span.h5:first-child {
  margin-top: 0;
}

.inner-page .sideBarBox .sideBarRight form.search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 50px;
  height: 50px;
  border: 1px solid #bfbfbf;
  background-color: white;
  font-size: 18px;
  color: #8e8e8e;
  padding: 0 .7em;
}

.inner-page .sideBarBox .sideBarRight form.search input {
  border: none;
  background-color: transparent;
  width: 100%;
}

.inner-page .sideBarBox .sideBarRight form.search input[type="submit"] {
  width: 30px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../images/icon-search3.png") center center no-repeat;
}

.inner-page .sideBarBox .sideBarRight .nav ul li {
  font-size: 18px;
  line-height: 1.2;
  color: #8e8e8e;
  padding: .5em 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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .sideBarBox .sideBarRight .nav ul li:before {
  content: '';
  border: 3px solid var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: .5em;
  border-radius: 100%;
}

.inner-page .sideBarBox .sideBarRight .nav ul li:hover {
  color: var(--color);
}

.inner-page .sideBarBox .sideBarRight .newsList ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #bfbfbf;
}

.inner-page .sideBarBox .sideBarRight .newsList ul li a.img-box {
  /*width: 34%;*/
  margin-right: 15px;
  height: 80px;
  background-size: cover;
  background-position: center center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.inner-page .sideBarBox .sideBarRight .newsList ul li .content time {
  display: block;
  font-size: 16px;
  color: #8e8e8e;
  line-height: 2;
}

.inner-page .sideBarBox .sideBarRight .newsList ul li .content span.h6 {
  font-size: 18px;
  color: #242424;
  line-height: 1.5;
  margin-top: .3em;
  display: block;
}

.inner-page .sideBarBox .sideBarRight .imgBox {
  margin-top: 30px;
  height: 460px;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.inner-page .sideBarBox .sideBarRight .imgBox .text {
  font-size: 16px;
  color: white;
  line-height: 2;
  padding: 2em;
}

.news-page .marginBox {
  padding: 90px 0 70px 0;
}

.news-page .sideBarLeft .list ul li a.img-box {
  padding: 30px 30px 20px;
  display: block;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.news-page .sideBarLeft .list ul li a.img-box img {
  width: 100%;
  display: block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  height: 690px;
}

.news-page .sideBarLeft .list ul li a.img-box time {
  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;
  font-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}

.news-page .sideBarLeft .list ul li a.img-box time em {
  font-size: 14px;
  padding: .3em 1em;
  border-radius: 1.5em;
  background: var(--color);
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}

.news-page .sideBarLeft .list ul li a.img-box:hover {
  border-color: var(--color);
}

.news-page .sideBarLeft .list ul li .content {
  padding: 30px 0 100px;
  font-size: 16px;
}
.news-page .sideBarLeft .list ul li .content span.h1:hover {
  color: var(--color);
}

.news-page .sideBarLeft .list ul li .content span.h3 {
  font-weight: bold;
  font-size: 28px;
  color: #242424;
  line-height: 2;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.news-page .sideBarLeft .list ul li .content span.h3:hover {
  color: var(--color);
}

.news-page .sideBarLeft .list ul li .content .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 32px;
  margin: 1em 0;
}

.news-page .sideBarLeft .list ul li .content a.link {
  font-size: 18px;
  display: inline-block;
  position: relative;
  /*text-transform: uppercase;*/
  line-height: 1;
  border-bottom: 1px solid var(--color);
  color: var(--color);
}

.news-page .sideBarLeft .list ul li .content a.link:after {
  content: '';
  border: 4px solid var(--color);
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}

.newdet-page .marginBox {
  padding: 90px 6%;
}

.newdet-page .sideBarLeft time {
  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;
  font-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}

.newdet-page .sideBarLeft time em {
  font-size: 14px;
  padding: .5em 1em;
  padding-bottom: 0;
  border-radius: 1.5em;
  background: var(--color);
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}

.newdet-page .sideBarLeft h1 {
  font-weight: bold;
  font-size: 28px;
  color: #242424;
  line-height: 2;
  display: block;
  margin: 2em 0 1em;
}

.newdet-page .sideBarLeft .content {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 32px;
  padding: 1.5em 0;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}

.newdet-page .sideBarLeft .share {
  font-size: 24px;
  color: #bfbfbf;
  margin-top: 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;
}

.newdet-page .sideBarLeft .share a {
  margin-left: 1em;
  font-size: 80%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

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

.newdet-page .sideBarLeft .m-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0 80px;
}

.newdet-page .sideBarLeft .m-link .prev {
  margin-right: 20px;
  width: 100%;
}

.newdet-page .sideBarLeft .m-link .prev a.link img {
  margin-right: .5em;
}

.newdet-page .sideBarLeft .m-link .next {
  margin-left: 20px;
  width: 100%;
}

.newdet-page .sideBarLeft .m-link .next a.link {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.newdet-page .sideBarLeft .m-link .next a.link img {
  margin-left: .5em;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.newdet-page .sideBarLeft .m-link a.link {
  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;
  font-weight: bold;
  font-size: 20px;
  color: #242424;
  margin-bottom: .5em;
}

.newdet-page .sideBarLeft .m-link .btnBox {
  padding: 20px;
  background: #eee;
  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;
}

.newdet-page .sideBarLeft .m-link .btnBox a.img {
  width: 35%;
  height: 80px;
  background-size: cover;
  background-position: center center;
}

.newdet-page .sideBarLeft .m-link .btnBox .text {
  margin-left: 15px;
}

.newdet-page .sideBarLeft .m-link .btnBox .text time {
  font-size: 16px;
  color: #8e8e8e;
  margin: 0;
}

.newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
  font-size: 18px;
  color: #242424;
  line-height: 2;
  margin-top: .1em;
  display: block;
}

.newdet-page .sideBarLeft .publicForm span.h6 {
  font-weight: bold;
  font-size: 28px;
  color: #242424;
  line-height: 2;
  margin-bottom: 1em;
  display: block;
}


.newdet-page .form ul {
  margin: -15px -7px;
}

.newdet-page .form ul li {
  padding: 15px 7px;
}

.newdet-page .form ul li input,
.newdet-page .form ul li textarea {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: .6em 1em;
  border: 1px solid #bfbfbf;
}

.newdet-page .form ul li input::-webkit-input-placeholder,
.newdet-page .form ul li textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}

.newdet-page .form ul li input:-moz-placeholder,
.newdet-page .form ul li textarea:-moz-placeholder {
  color: #8e8e8e;
}

.newdet-page .form ul li input::-moz-placeholder,
.newdet-page .form ul li textarea::-moz-placeholder {
  color: #8e8e8e;
}

.newdet-page .form ul li input:-ms-input-placeholder,
.newdet-page .form ul li textarea:-ms-input-placeholder {
  color: #8e8e8e;
}

.newdet-page .form ul li input::placeholder,
.newdet-page .form ul li textarea::placeholder {
  color: #8e8e8e;
}

.newdet-page .form ul li textarea {
  height: 150px;
}

.newdet-page .form ul li input[type="submit"] {
  border: none;
  background: var(--color);
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.newdet-page .form ul li input[type="submit"]:hover {
  background: #242424;
}

.newdet-page .form ul li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 1600px){
  
  .news-page .sideBarLeft .list ul li a.img-box {
    padding: 20px;
  }

  .news-page .sideBarLeft .list ul li .content span.h1 {
    font-size: 24px;
  }

  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 16px;
  }

  .news-page .sideBarLeft .list ul li .content a.link:after {
    border-width: 2px;
  }

  .newdet-page .sideBarLeft h1 {
    font-size: 24px;
    margin: 1em 0;
  }

  .newdet-page .sideBarLeft .content {
    font-size: 16px;
  }

  .newdet-page .sideBarLeft .share {
    font-size: 20px;
  }

  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 16px;
  }

  .newdet-page .sideBarLeft .m-link .btnBox {
    padding: 10px;
  }

  .newdet-page .sideBarLeft .m-link .btnBox .text time {
    font-size: 14px;
  }

  .newdet-page .sideBarLeft .m-link {
    margin: 30px 0 40px;
  }

  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 24px;
  }


  .newdwt-page .form ul li {
    padding: 6px;
  }

  .newdwt-page .form ul {
    margin: -6px;
  }

  .newdwt-page .form ul li input,
  .newdwt-page .form ul li textarea,
  .newdwt-page .form ul li input[type="submit"] {
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px){
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 20px;
  }

  .news-page .sideBarLeft .list ul li .content {
    padding: 20px 0 30px;
  }

  .newdet-page .sideBarLeft h1,
  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px){
  
  .inner-page .sideBarBox .sideBarLeft {
    width: 100%;
    padding-right: 0;
  }

  .inner-page .sideBarBox .sideBarRight {
    display: none;
  }

  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 18px;
  }

  .newdet-page .form ul li {
    margin-bottom: 20px;
  }

  .newdet-page .form ul li input,
  .newdet-page .form ul li textarea,
  .newdet-page .form ul li input[type="submit"] {
    font-size: 14px;
    padding: .5em;
  }
  .news-page .sideBarLeft .list ul li a.img-box img {
    height: auto !important;
  }
  .newdet-page .sideBarLeft .m-link .next {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 700px) {
  
  .news-page .sideBarLeft .list ul li a.img-box time {
    font-size: 14px;
  }

  .news-page .sideBarLeft .list ul li a.img-box time em {
    font-size: 14px;
  }

  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 14px;
  }

  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 16px;
  }

  .newdet-page .sideBarLeft .m-link .btnBox .text {
    margin-left: 0;
    width: 100%;
  }

  .newdet-page .sideBarLeft .m-link .btnBox a.img {
    display: none;
  }

  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px){
  .newdet-page .sideBarLeft .m-link .prev {
    margin-right: 10px;
  }

  .newdet-page .sideBarLeft .m-link .next {
    margin-left: 10px;
  }

  .newdet-page .sideBarLeft time {
    margin-top: 0;
    font-size: 14px;
  }

  .newdet-page .sideBarLeft time em {
    font-size: 14px;
  }

}
.news-page .sideBarLeft .list ul li .content a.link:hover {
  color: #242424;
  border-color: #242424;
}

.news-page .sideBarLeft .list ul li .content a.link:hover:after {
  border-color: #242424;
}

.machining-page {
  background-color: #fff;
}
.machining-page .mach-1 {
  background-color: #f5f5f7;
  overflow-x: hidden;
}
.machining-page .mach-1 .txt {
  color: #666;
}
.machining-page .mach-1 .list .left {
  width: 60.7%;
  margin-top: -37px;
}
.machining-page .mach-1 .list .right {
  width: 49%;
}
.machining-page .mach-1 .list:nth-child(odd) .left {
  margin-left: -12%;
}
.machining-page .mach-1 .list:nth-child(odd) .left img {
  border-radius: 0px 30px 0px 0px;
}
.machining-page .mach-1 .list:nth-child(even) {
  flex-direction: row-reverse;
}
.machining-page .mach-1 .list:nth-child(even) .left {
  margin-right: -12%;
}
.machining-page .mach-1 .list:nth-child(even) .left img {
  border-radius: 30px 0px 0px 0px;
}
.machining-page .mach-2 ul li {
  height: 495px;
  width: 48%;
}
.machining-page .mach-2 ul li .list {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  color: #fff;
}
.machining-page .mach-2 ul li .list .txt {
  line-height: 1.56;
  opacity: 0;
  z-index: -1;
  left: 0%;
  transform: translateY(50%);
}
.machining-page .mach-2 ul li .list:hover .txt {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1250px) {
  .machining-page .mach-1 .list:nth-child(odd) .left {
    margin-left: -17%;
  }
  .machining-page .mach-1 .list:nth-child(even) .left {
    margin-right: -17%;
  }
}
@media screen and (max-width: 1000px) {
  .machining-page .mach-1 .list {
    margin-bottom: 50px;
  }
  .machining-page .mach-1 .list .left {
    margin-bottom: 20px;
    margin-top: 0;
  }
  .machining-page .mach-1 .list:nth-child(odd) .left {
    margin-left: 0;
  }
  .machining-page .mach-1 .list:nth-child(even) .left {
    margin-right: 0;
  }
  .machining-page .mach-2 ul li {
    width: 100%;
    margin-bottom: 20px;
    height: 430px;
  }
  .machining-page .mach-2 ul li .list .txt {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
  }
}
.treat-page {
  background-color: #fff;
  padding-bottom: 0;
}
.treat-page .txt {
  color: #666;
  line-height: 1.5;
}
.treat-page .treat-1 .top p.txt {
  margin: auto;
  width: 65%;
}
.treat-page .treat-1 .bot ul {
  width: calc(100% - 100px);
  margin: auto;
}
.treat-page .treat-1 .bot ul .slick-list {
  z-index: 2;
  margin: 0 -20px;
}
.treat-page .treat-1 .bot ul li .icon {
  height: 41px;
  width: 100%;
}
.treat-page .treat-1 .bot ul li .num {
  width: 46px;
  height: 46px;
  background-image: linear-gradient(#214ca0, #214ca0), linear-gradient(#002e4a, #002e4a);
  background-blend-mode: normal,normal;
  border-radius: 4px;
  color: #fefefe;
  font-size: 18px;
}
.treat-page .treat-1 .bot ul::after {
  content: '';
  position: absolute;
  right: 0;
  top: 80px;
  width: 99%;
  height: 1px;
  background-color: #c8dce8;
  z-index: 0;
}
.treat-page .treat-1 .bot ul::before {
  content: '';
  position: absolute;
  right: 0;
  top: 78px;
  width: 5px;
  height: 5px;
  background-color: #c8dce8;
  border-radius: 50%;
}
.treat-page .treat-1 .bot .slickBtn.pos div.prev {
  left: -15px;
  right: auto;
}
.treat-page .treat-1 .bot .slickBtn.pos div.next {
  left: auto;
  right: -15px;
}
.treat-page .treat-2 .left {
  width: 45%;
}
.treat-page .treat-2 .right {
  width: 44%;
}
.treat-page .treat-2 .right img {
  border-radius: 10px;
}
.treat-page .contact-page {
  padding-bottom: 170px;
}
@media screen and (max-width: 1450px) {
  .treat-page .contact-page {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 700px) {
  .treat-page .treat-1 .top p.txt {
    width: 100%;
  }
  .treat-page .treat-1 .bot ul {
    width: 100%;
  }
  .treat-page .treat-1 .bot ul .slick-list {
    margin: 0;
  }
  .treat-page .treat-1 .bot .slickBtn.pos {
    display: none;
  }
}
