@font-face {
  font-family: 'Syne';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*@font-face {
  font-family: 'Syne';
  src: url('../fonts/Syne-Medium.eot');
  src: url('../fonts/Syne-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Syne-Medium.woff2') format('woff2'), url('../fonts/Syne-Medium.woff') format('woff'), url('../fonts/Syne-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}*/
@font-face {
  font-family: 'Syne';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Syne";
  max-width: 1920px;
  --color: #0070c0;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1780px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
#header .nav .ui.menu {
  margin: 0 auto;
  height: 80px;
}
#header .nav .ui.menu .menu-box {
  margin-left: auto;
  margin-right: 0;
  height: 100%;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a:before {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a:before {
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: 0;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu hr {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
}
#header .nav .ui.menu .yuy {
  height: 100%;
}
#header .nav .ui.menu .yuy span {
  height: auto;
}
#header .nav .ui.menu .yuy ul {
  left: auto;
  right: 0;
}
#header.active {
  background-color: var(--color);
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
span.h2 {
  line-height: 1.20833333;
}
.more {
  border: 1px solid var(--color);
  color: #767879;
  border-radius: 3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more i {
  width: 2.88888889em;
  height: 2.88888889em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more.full {
  background-color: var(--color);
  color: white;
}
.more.full i {
  background-color: white;
  color: var(--color);
}
.more:hover {
  background-color: black;
  color: white;
  border-color: black;
}
.more:hover i {
  background-color: white;
  color: black;
}
.text {
  font-weight: normal;
  line-height: 1.625;
}
#banner li {
  position: relative;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 85%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
}
#banner li .content .left {
  max-width: 1260px;
}
#index-body .init-1 {
  background-color: #f2f2f2;
}
#index-body .init-1 .list .slick-slide > div {
  height: auto !important;
  padding: 40px 13px;
}
#index-body .init-1 .list .link {
  line-height: .6;
}
#index-body .init-1 .list .slick-list {
  margin: -40px -13px;
}
#index-body .init-1 .list li {
  position: relative;
}
#index-body .init-1 .list li:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #828282;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-1 .list li .img {
  margin-top: auto;
}
#index-body .init-1 .list li:hover:before {
  width: 3px;
  background-color: var(--color);
}
#index-body .init-2 {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}
#index-body .init-2 > img {
  margin-top: -11%;
  position: relative;
  z-index: -1;
  pointer-events: none;
}
#index-body .init-3 .list ul {
  padding: 0 5%;
}
#index-body .init-3 .list ul li {
  -webkit-transform: translateY(40px) scale(0.75);
  -moz-transform: translateY(40px) scale(0.75);
  -ms-transform: translateY(40px) scale(0.75);
  transform: translateY(40px) scale(0.75);
  opacity: .17;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}
#index-body .init-3 .list ul .slick-current li {
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
  opacity: 1;
}
#index-body .init-3 .list ul li span.h6 {
  padding: 0 10%;
  margin-top: -1em;
}
#index-body .init-4 {
  background-color: var(--color);
  color: white;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
#index-body .init-4 .waves {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  opacity: .5;
}
#index-body .init-4 .left {
  max-width: 870px;
  position: relative;
}
#index-body .init-4 .left .list {
  max-width: 490px;
}
#index-body .init-4 .left .list li {
  margin-top: 4.16666667em;
  position: relative;
}
#index-body .init-4 .left .list li:first-child {
  margin-top: 0;
  margin-right: 2.5em;
}
#index-body .init-4 .left .list li:nth-child(2) {
  margin-right: 4.58333333em;
}
#index-body .init-4 .left .list li:nth-child(3) {
  margin-right: 3.54166667em;
}
#index-body .init-4 .left .list li:nth-child(4) {
  margin-right: -1.25em;
}
#index-body .init-4 .left .list li:before {
  content: '';
  width: 1.2em;
  height: 1.2em;
  border-radius: 100%;
  border: 1px solid white;
  background-color: var(--color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -3.33333333em;
  z-index: 1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .left .list li.active:before {
  opacity: 1;
}
#index-body .init-4 .left .slickBtnPos {
  width: 7.85714286em;
  height: 7.85714286em;
  border-radius: 100%;
  border: 1.1em solid #2a9beb;
  background-color: var(--color);
  left: 100%;
  -webkit-filter: drop-shadow(-2px 0 0 rgba(255, 255, 255, 0.6));
  filter: drop-shadow(-2px 0 0 rgba(255, 255, 255, 0.6));
}
#index-body .init-4 .left .slickBtnPos:before,
#index-body .init-4 .left .slickBtnPos:after {
  content: '';
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  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%);
  border-radius: inherit;
  pointer-events: none;
}
#index-body .init-4 .left .slickBtnPos:before {
  width: 531.25%;
  height: 531.25%;
}
#index-body .init-4 .left .slickBtnPos:after {
  width: 375%;
  height: 375%;
}
#index-body .init-4 .right {
  z-index: -1;
}
#index-body .init-4 .right ul {
  height: 100%;
}
#index-body .init-4 .right ul * {
  height: 100%;
}
#index-body .init-5 time {
  line-height: 1;
}
#index-body .init-5 .slickDots {
  width: 100%;
}
#index-body .init-5 .slickDots li {
  margin: 0 10px;
  position: relative;
  background-color: #828282;
  border: none;
}
#index-body .init-5 .slickDots li:before {
  content: '';
  width: 150%;
  height: 150%;
  border: 1px solid var(--color);
  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%);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: inherit;
}
#index-body .init-5 .slickDots li.slick-active {
  background-color: var(--color);
}
#index-body .init-5 .slickDots li.slick-active:before {
  opacity: 1;
}
#footer {
  color: white;
}
#footer .stroke {
  color: transparent;
  -webkit-text-stroke: 1px white;
  opacity: .1;
  line-height: .8;
  margin-bottom: -0.1em;
}
#footer .form {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}
#footer .form form {
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3em;
}
#footer .form form input {
  width: 100%;
  border: none;
  background-color: transparent;
  border-left: 1px solid #ccc;
  padding: 0 1.3em;
}
#footer .form form input:first-child {
  border-left: none;
}
#footer .form form input::-webkit-input-placeholder {
  color: white;
}
#footer .form form input:-moz-placeholder {
  color: white;
}
#footer .form form input::-moz-placeholder {
  color: white;
}
#footer .form form input:-ms-input-placeholder {
  color: white;
}
#footer .form form input::placeholder {
  color: white;
}
#footer .form form input[name="content"] {
  width: 160%;
  max-width: 100%;
}
#footer .form form button {
  height: 3em;
  padding: 0 2em;
  border-radius: 3em;
  background-color: white;
  color: #155592;
  border: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .form form button:hover {
  background-color: var(--color);
  color: white;
}
#footer .share a {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .share a:hover {
  background-color: white;
  color: #0c286c;
}
#footer span.h6 {
  line-height: 1.2;
}
#footer .nav {
  font-weight: 500;
}
#footer .nav li {
  margin-top: .6em;
}
#footer .nav li:first-child {
  margin-top: 0;
}
#footer .nav li ul {
  display: none;
}
#footer .nav li a:hover {
  text-decoration: underline;
}
#footer .info {
  max-width: 370px;
  font-weight: 500;
}
#footer .info ul li {
  margin-top: .5em;
}
#footer .info ul li i {
  width: 18px;
  padding-top: .3em;
}
#footer .info ul li:first-child {
  margin-top: 0;
}
#footer hr {
  background-color: rgba(255, 255, 255, 0.5);
}
#footer svg {
  max-height: 1.625em;
  width: auto;
  display: block;
  fill: white;
}
@media screen and (max-width: 1720px) {
  #index-body .init-4 .left .list {
    max-width: 405px;
  }
  #index-body .init-4 .left {
    max-width: 730px;
  }
}
@media screen and (max-width: 1450px) {
  #index-body .init-4 .left .list {
    max-width: 405px;
  }
  #index-body .init-4 .left {
    max-width: 730px;
    padding-left: 15px;
  }
  #index-body .init-4 .left .slickBtnPos {
    font-size: 16px;
  }
  #index-body .init-4 .left .list li:first-child {
    margin-right: 2.5em;
  }
  #index-body .init-4 .left .list li:nth-child(4) {
    margin-right: -4.5em;
  }
  #index-body .init-4 .left .list li {
    margin-top: 3.5em;
  }
  #footer .logo {
    max-width: 250px;
  }
}
@media screen and (max-width: 1250px) {
  .more i {
    width: 2.2em;
    height: 2.2em;
  }
  #banner li .content {
    top: 75%;
  }
  #index-body .init-3 .list ul {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .init-2 .right ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  #index-body .init-3 .list ul li {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    opacity: 1;
  }
  #index-body .init-4 .left .list {
    display: none;
  }
  #index-body .init-4 .left .slickBtnPos {
    display: none;
  }
  #index-body .init-4 .right {
    height: auto;
    width: 100%;
  }
  #index-body .init-4 .right ul *,
  #index-body .init-4 .right ul {
    height: auto;
  }
  #index-body .init-4 .right li a {
    height: 50vw !important;
  }
  #index-body .init-4 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-4 .box .left {
    width: 100%;
    padding: 30px 15px;
    max-width: none;
  }
  #footer .footer-center {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-center .slide:nth-child(2),
  #footer .footer-center .slide:nth-child(3) {
    display: none;
  }
  #footer .form {
    padding: 15px;
  }
}
@media screen and (max-width: 700px) {
  #footer .info {
    max-width: none;
  }
  #footer .logo {
    display: none;
  }
  #footer .footer-center .slide:last-child {
    margin-top: 30px;
  }
  #footer .form span.h2 i {
    max-width: 30px;
  }
  #footer .form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 10px;
  }
  #footer .form form input {
    width: 100%;
    padding: .5em 1em;
    margin: 1em 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .font-54 {
    font-size: 24px;
  }
  .font-30 {
    font-size: 18px;
  }
  .font-22 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  #banner li .content {
    top: 50%;
  }
  .more i {
    width: 2em;
    height: 2em;
  }
  #index-body .init-5 .list ul {
    margin: 0 -10px;
  }
  #index-body .init-5 .list ul li {
    padding: 0 10px;
  }
}
.inner-banner {
  color: white;
}
.inner-banner span.h2 {
  line-height: 1;
}
.inner-banner .mbx {
  line-height: 1.2;
}
.about-page .about-1 span.h2 {
  max-width: 1310px;
}
.about-page .about-1 .text {
  line-height: 1.625;
}
.about-page .about-1 > img {
  margin-top: -10%;
}
.about-page .about-2 {
  background-color: #f6f7f9;
}
.about-page .about-2 ul {
  margin-top: -75px;
}
.about-page .about-2 ul li {
  background-color: white;
  padding: 10%;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
}
.about-page .about-2 ul li i.icon {
  height: 94px;
  display: block;
}
.about-page .about-2 ul li span.h2 {
  line-height: 1;
}
.about-page .about-2 ul li hr {
  width: 55%;
  background-color: #ddd;
  margin-left: auto;
  margin-right: 0;
}
.about-page .about-2 ul li p {
  line-height: 1;
}
.about-page .about-3 {
  color: white;
}
.about-page .about-3 .ui.container {
  max-width: 1570px;
}
.about-page .about-3 .list {
  padding: 0 22%;
}
.about-page .about-3 .list .slick-list {
  overflow: unset;
}
.about-page .about-3 .list span.h1 {
  line-height: .8;
  font-weight: bold;
  z-index: -1;
  opacity: .2;
  top: 15%;
  pointer-events: none;
}
.about-page .about-3 .list .slickBtn div {
  background-color: white;
  color: var(--color);
}
.about-page .about-3 .list .slickBtn div:hover {
  background-color: var(--color);
  color: white;
}
.about-page .about-3 .number {
  position: relative;
  z-index: 1;
}
.about-page .about-3 .number:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
}
.about-page .about-3 .number li {
  cursor: pointer;
  cursor: hand;
  line-height: 1;
}
.about-page .about-3 .number li i {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: .5em;
  background-color: white;
  display: block;
}
.about-page .about-4 .right li {
  background-color: #f6f7f9;
}
.about-page .about-4 .right li i.icon {
  margin-top: auto;
}
.about-page .about-4 .right li span.h6 {
  line-height: 1.2;
}
.about-page .about-5 .text {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}
.cap-page .cap-1 {
  background-size: 22.91666667% auto;
  background-position: center right;
  background-repeat: no-repeat;
}
.cap-page .cap-1 .text {
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
}
.cap-page .cap-2 {
  background-color: #f7f7f7;
}
.cap-page .cap-2 .left {
  height: 550px;
}
.cap-page .cap-2 .right .dots i {
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background-color: var(--color);
  margin-top: .25em;
}
.cap-page .cap-3 {
  color: white;
}
.cap-page .cap-3 .more {
  color: white;
  border-color: white;
}
.cap-page .cap-3 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.cap-page .cap-3 .right .icon:after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
}
.cap-page .cap-3 .right i.iconfont {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-color: white;
  color: var(--color);
}

i.num-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s ease !important;
  transform-style: preserve-3d !important;
  cursor: pointer !important;
  position: relative;
}

i.num-icon:hover {
  transform: rotateY(180deg) !important;
  background-color: var(--color) !important;
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3) !important;
}

i.num-icon span {
  display: block !important;
  transition: color 0.4s ease !important;
  transform: rotateY(0deg);
  backface-visibility: hidden;
}
i.num-icon:hover span {
  transform: rotateY(-180deg); 
  color: #fff !important;
}
.icon {
  perspective: 1000px !important;
}
.cap-page .cap-5 {
  color: white;
}
.cap-page .cap-5 .text {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.oem-page .oem-1 .box {
  color: white;
}
.oem-page .oem-1 .box span.h2 {
  font-weight: 500;
}
.oem-page .oem-2 {
  background-color: #f6f7f9;
}
.oem-page .oem-2 .box li {
  padding: 6.5%;
  background-color: white;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.oem-page .oem-2 .box li:hover {
  border-bottom-color: var(--color);
}
.oem-page .oem-3 li > div .content {
  top: -30px;
  /*bottom: -1vw;*/
  left: -1vw;
  right: -1vw;
  opacity: 0;
  background-color: #f3f3f3;
  padding: 20px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: left;
  word-wrap: break-word;
  /* display: none; */
}
.oem-page .oem-3 li > div:hover .content {
  opacity: 1;
}
.oem-page .oem-5 ul {
  row-gap: 5.3vw;
  margin-right: -5.3vw;
}
.oem-page .oem-5 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;
  width: 100%;
  position: relative;
  padding-left: 1.42vw;
  z-index: 1;
}
.oem-page .oem-5 li:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: -28px;
  width: 104px;
  height: 104px;
  background-color: #d6dbdc;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.oem-page .oem-5 li .box {
  padding: 22px 34px 22px 25px;
  background-image: -webkit-linear-gradient(315deg, var(--color) 0, transparent 20%, transparent);
  background-image: -moz-linear-gradient(315deg, var(--color) 0, transparent 20%, transparent);
  background-image: linear-gradient(135deg, var(--color) 0, transparent 20%, transparent);
  background-color: white;
  background-size: cover;
  font-weight: bold;
  border-radius: 25px;
  -webkit-box-shadow: 0 12px 21px rgba(0, 0, 0, 0.13);
  box-shadow: 0 12px 21px rgba(0, 0, 0, 0.13);
  line-height: 1.6;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}
.oem-page .oem-5 li .box .icon {
  margin-right: 15px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.oem-page .oem-5 li .box .title {
  line-height: 1.2;
  text-align: right;
}
.oem-page .oem-5 li .arrow {
  margin-left: 2.8vw;
  margin-right: 2.2vw;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.oem-page .oem-5 li:nth-child(3n) .arrow {
  opacity: 0;
}
.oem-page .oem-5 li:hover:before {
  background-color: var(--color);
}
.oem-page .oem-6 {
  color: white;
}
.oem-page .oem-6 .ui.container {
  max-width: 1330px;
}
@media screen and (max-width: 1720px) {
  .about-page .about-2 ul li i.icon {
    height: 60px;
  }
  .about-page .about-2 ul li i.icon img {
    max-height: 100%;
  }
  .font-em-30 {
    font-size: 2em;
  }
}
@media screen and (max-width: 1450px) {
  .oem-page .oem-3 li > div .icon img {
    max-height: 80px;
  }
  .oem-page .oem-5 li .box .icon {
    max-width: 50px;
  }
}
@media screen and (max-width: 1250px) {
  .about-page .about-4 .right li i.icon {
    max-width: 35px;
  }
  .oem-page .oem-5 li:before {
    zoom: .6;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page span.h2 br {
    display: none;
  }
  .cap-page .cap-3 .left {
    position: static;
  }
  .cap-page .cap-2 .left {
    height: 300px;
  }
  .oem-page .oem-1 .box .left {
    width: 100%;
    text-shadow: 1px 1px 0 black;
  }
  .oem-page .oem-5 li .arrow {
    opacity: 0;
  }
  .about-page .about-4 .left {
    height: 30vw;
  }
  .about-page .about-2 ul {
    margin-top: -30px;
  }
  .font-24 {
    font-size: 16px;
  }
  .about-page .about-3 .list {
    padding: 0 12%;
  }
}
@media screen and (max-width: 700px) {
  .cap-page .cap-2 .left {
    height: 35vw;
  }
  .oem-page .oem-5 li .box .icon {
    max-width: 36px;
  }
  .oem-page .oem-3 li > div .icon {
    display: none;
  }
  .oem-page .oem-3 li > div .icon ~ * {
    display: none;
  }
  .oem-page .oem-3 li > div .content {
    position: static;
    opacity: 1;
    display: block !important;
  }
  .oem-page .oem-3 ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.i-form {
    background: url(../images/form-bg.jpg) no-repeat;
    padding-top: 80px;
    padding-bottom: 88px;
}
.i-form .i-title {
    color: white;
    margin-bottom: 10px;
}
.i-form form ul {
    margin: 0 -20px;
}
.i-form form ul li {
    padding: 0 20px;
    width: 20%;
}
.i-form form ul li input {
    width: 100%;
    font-size: 18px;
    line-height: 32px;
    color: white;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #c2c2c2;
    height: 52px;
}
.i-form form ul li input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.i-form form ul li input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.i-form form ul li input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.i-form form ul li input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.i-form form ul li:nth-child(3) {
    width: 60%;
}
.i-form form ul li:last-child {
    text-align: right;
}
.i-form form ul li:last-child button{
    background: transparent;
    border: none;
}
@media screen and (max-width:1000px){
    .i-form form ul li{
        width: 50% !important;
        margin-bottom: 10px;
    }
    .i-form{
        background-size: cover;
    }
}
@media screen and (max-width:500px){
    .i-form form ul li{
        width: 100% !important;
    }
}
.inner-page .m-page {
    margin-top: 90px;
    text-align: center;
}
.inner-page .m-page a,
.inner-page .m-page span {
    margin: 0 13px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 100%;
    font-size: 18px;
    color: #301500;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background: #ececec;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-weight: normal;
}
.inner-page .m-page a:after,
.inner-page .m-page span:after {
    content: '';
    width: 130%;
    height: 130%;
    position: absolute;
    left: -15%;
    top: -15%;
    border-radius: inherit;
    border: 2px solid #ececec;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
    background: #0070c0;
    color: #fff;
}
.inner-page .slideBarBox .slideBarLeft {
    width: 28%;
    padding-right: 5%;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.inner-page .slideBarBox .slideBarLeft .border {
    border: 1px solid #bebebe;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}
.inner-page .slideBarBox .slideBarLeft .border span.h6 {

    font-size: 24px;
    line-height: 44px;
    display: block;
}
.inner-page .slideBarBox .slideBarLeft .border.search {
    padding: 25px;
}
.inner-page .slideBarBox .slideBarLeft .border.search form {
    margin-top: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f5f5f5;
    padding: 0 .8em;
    font-size: 14px;
    line-height: 2;
}
.inner-page .slideBarBox .slideBarLeft .border.search form input {
    height: 50px;
    line-height: 50px;
    border: none;
    background-color: transparent;
    width: 100%;
}
.inner-page .slideBarBox .slideBarLeft .border.search form input[type="submit"] {
    width: 36px;
    background: url("../images/icon-search.png") center center no-repeat;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.inner-page .slideBarBox .slideBarLeft .border.nav span.h6 {
    padding: 25px;
    color: white;
    background-color: #0070c0;
}
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a {
    font-size: 22px;
    font-weight: 500;
    line-height: 40px;
    padding: 18px 25px;
    border-top: 1px solid #bebebe;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.fenlei{
    font-size: 24px;
    line-height: 1.6;
    font-weight: 700;
    color: #0070c0;
    margin-bottom: 20px;
}
.miaoshu{
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a:hover,
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a.active {
    color: #0070c0;
}
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li li a {
    font-size: 18px;
    font-weight: normal;
    padding: 15px;
    padding-left: 35px;
}
.inner-page .slideBarBox .slideBarLeft .border.img {
    padding: 50px 25px;
    text-align: center;
    color: white;
    margin-bottom: 0;
}
.inner-page .slideBarBox .slideBarLeft .border.img span.h6 {
    text-transform: uppercase;
    margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .border.img hr {
    border: none;
    display: block;
    height: 1px;
    background-color: white;
}
.inner-page .slideBarBox .slideBarLeft .border.img .text {
    margin: 1.2em 0;
    color: inherit;
    font-weight: normal;
}
.inner-page .slideBarBox .slideBarLeft .border.img .text p {
    font-size: 90%;
}
.inner-page .slideBarBox .slideBarLeft .border.img span.phone {
    display: block;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    margin: 1em 0;
}
.inner-page .slideBarBox .slideBarLeft .border.img a.btn {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #0070c0;
    line-height: 2.625em;
    height: 2.625em;
    max-width: 90%;
    display: block;
    margin: 0 auto;
}
.inner-page .slideBarBox .slideBarLeft .border.hot {
    padding: 25px 30px;
}
.inner-page .slideBarBox .slideBarLeft .border.hot span.h6 {
    padding-bottom: 1em;
    border-bottom: 1px solid #bebebe;
    margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li,
.product-det-page .product-det-2 .left .navList ul li.hot ul li {
    padding: 7px 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;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .img,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .img {
    width: 35%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0%;
    border: 1px solid #bebebe;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content {
    padding-left: 5%;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.cat,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span.cat {
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.title,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span.title {
    font-weight: 500;
    font-size: 22px;
    line-height: 40px;
    color: #120c0b;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.title:hover,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span.title:hover {
    color: #0070c0;
}
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span {
    padding: 0;
    background: transparent;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList.news ul li .img {
    width: 40%;
    border: none;
    padding: 0;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList.news ul li .content time {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #0070c0;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList.news ul li .content span.h5 {
    font-size: 16px;
    color: #120c0b;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.inner-page .slideBarBox .slideBarLeft .border.mail {
    padding: 25px 30px;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input {
    display: block;
    height: 42px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    line-height: 30px;
    font-weight: normal;
    /*text-transform: uppercase;*/
    margin-top: 1.5em;
    width: 100%;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"] {
    border-bottom: 1px solid #bebebe;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form ul li textarea::-webkit-input-placeholder,
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]::-webkit-input-placeholder {
    color: #120c0b;
}

.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]:-moz-placeholder {
    color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form ul li textarea::-moz-placeholder,
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]::-moz-placeholder {
    color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form ul li textarea::-ms-input-placeholder,
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]:-ms-input-placeholder {
    color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form ul li textarea::placeholder,
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]::placeholder {
    color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form ul li textarea:focus,
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]:focus {
    border-color: #0070c0;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="submit"] {
    background-color: #0070c0;
    text-align: center;
    color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="submit"]:hover {
    background-color: black;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form ul li.wid-100{
    width: 100%;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form ul li textarea{
    display: block;
    line-height: 42px;
    height: 100px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    margin-top: 1.5em;
    width: 100%;
    border-bottom: 1px solid #bebebe;
}
.inner-page .slideBarBox .slideBarRight {
    width: 72%;
}
.inner-page .prodet-product-link {
    padding-top: 80px;
}
.inner-page .prodet-product-link .productList {
    overflow: hidden;
}
.inner-page .prodet-product-link .dotsBox {
    margin-top: 90px;
    text-align: center;
}
.inner-page .prodet-product-link .dotsBox .prev,
.inner-page .prodet-product-link .dotsBox .next,
.inner-page .prodet-product-link .dotsBox .dots,
.inner-page .prodet-product-link .dotsBox li {
    display: inline-block;
    vertical-align: middle;
}
.inner-page .prodet-product-link .dotsBox .prev,
.inner-page .prodet-product-link .dotsBox .next,
.inner-page .prodet-product-link .dotsBox button {
    margin: 0 13px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 100%;
    font-size: 18px;
    color: #301500;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background: #eee;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-weight: normal;
    border: none;
}
.inner-page .prodet-product-link .dotsBox .prev:after,
.inner-page .prodet-product-link .dotsBox .next:after,
.inner-page .prodet-product-link .dotsBox button:after {
    content: '';
    width: 130%;
    height: 130%;
    position: absolute;
    left: -15%;
    top: -15%;
    border-radius: inherit;
    border: 2px solid #ececec;
}
.inner-page .prodet-product-link .dotsBox .prev:hover,
.inner-page .prodet-product-link .dotsBox .next:hover,
.inner-page .prodet-product-link .dotsBox button:hover,
.inner-page .prodet-product-link .dotsBox .slick-active button {
    background: #0070c0;
    color: #fff;
}
.chainList {
    padding: 80px 0 80px;
}
.chainList .top .left {
    vertical-align: bottom;
}
.chainList .top .left span.tag {
    margin-bottom: 1em;
}
.chainList .top .right {
    vertical-align: bottom;
    text-align: right;
}
.chainList .top .right a.more {
    background-color: #f3f3f3;
}
.chainList .bottom {
    margin-top: 70px;
}
.chainList .bottom .list ul {
    margin: -10px;
}
.chainList .bottom .list ul li {
    padding: 10px;
    font-size: 22px;
    font-weight: 500;
    /*text-transform: uppercase;*/
    line-height: 1.2;
    border-radius: 10px;
    overflow: hidden;
}
.chainList .bottom .list ul li img{
    border-radius: 10px;
}
.chainList .bottom .list ul li a.img-box {
    display: block;
}
.chainList .bottom .list ul li span.h6 {
    display: block;
    margin-top: .6em;
    margin-bottom: 5px;
}
.chainList .bottom .list ul li time {
    display: block;
    color: #0070c0;
}
.culture-page .culture-1 {
    padding-top: 100px;
}
.culture-page .culture-1 .left {
    padding-right: 10%;
    vertical-align: middle;
}
.culture-page .culture-1 .left .text {
    margin-top: 1.5em;
}
.culture-page .culture-1 .right {
    vertical-align: middle;
}
.culture-page .culture-1 .right .img {
    position: relative;
}
.culture-page .culture-1 .right .img:after {
    content: '';
    width: 7.03125vw;
    height: 36.61458333vw;
    z-index: -1;
    position: absolute;
    background: url("../images/icon-meiluo2.png") center no-repeat;
    background-size: cover;
    right: 100%;
    top: 5%;
    width: 50%;
    height: 90%;
    background-size: contain;
    -webkit-transform: rotateY(180deg) rotateX(180deg);
    -moz-transform: rotateY(180deg) rotateX(180deg);
    transform: rotateY(180deg) rotateX(180deg);
    background-position: left center;
}
.culture-page .culture-2 {
    padding: 130px 0 70px;
    text-align: center;
}
.culture-page .culture-2 .list {
    margin-top: 70px;
}
.culture-page .culture-2 .list ul {
    margin: -40px;
}
.culture-page .culture-2 .list ul li {
    padding: 40px;
    font-size: 22px;
}
.culture-page .culture-2 .list ul li i {
    display: inline-block;
    position: relative;
    margin: 1em auto 0;
}
.culture-page .culture-2 .list ul li i:before {
    content: '';
    width: 3.40909091em;
    height: 4.04545455em;
    background: url("../images/icon-5-bg.png") center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-20%, -30%);
    -moz-transform: translate(-20%, -30%);
    -ms-transform: translate(-20%, -30%);
    transform: translate(-20%, -30%);
    z-index: -1;
}
.culture-page .culture-2 .list ul li span.h6 {
    font-weight: 500;
    display: block;
    margin: .8em 0;
}
.culture-page .culture-2 .list ul li .text {
    line-height: 2;
}
.history-page {
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: center;
    position: relative;
}
.history-page:before {
    content: '';
    width: 7.03125vw;
    height: 36.61458333vw;
    z-index: -1;
    position: absolute;
    background: url("../images/icon-meiluo2.png") center no-repeat;
    background-size: cover;
    left: 0;
    top: 5%;
}
.history-page:after {
    content: '';
    width: 7.03125vw;
    height: 36.61458333vw;
    z-index: -1;
    position: absolute;
    background: url("../images/icon-meiluo2.png") center no-repeat;
    background-size: cover;
    right: 0;
    bottom: 8%;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.history-page .list {
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
}
.history-page .list:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #bebebe;
    z-index: -1;
}
.history-page .list li {
    padding: 25px 0;
}
.history-page .list li .box .left {
    vertical-align: middle;
    padding: 0 8%;
    position: relative;
}
.history-page .list li .box .left .img {
    /*height: 250px;*/
    background-size: cover;
    background-position: center;
}
.history-page .list li .box .right {
    vertical-align: middle;
    padding: 0 8%;
    text-align: left;
    position: relative;
}
.history-page .list li .box .right .line {
    width: 14%;
    height: 1px;
    background-color: #0070c0;
    position: absolute;
    left: 0;
    top: 25px;
}
.history-page .list li .box .right .line i {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: inherit;
}
.history-page .list li .box .right .line i:after,
.history-page .list li .box .right .line i:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: inherit;
}
.history-page .list li .box .right .line i:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
}
.history-page .list li .box .right .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.history-page .list li .box .right .content span.h2 {
    color: #0070c0;
    white-space: nowrap;
}
.history-page .list li .box .right .content .text {
    margin-left: 1.5em;
    font-weight: normal;
    line-height: 1.6;
}
.history-page .list li:nth-child(even) .box .left {
    left: 50%;
}
.history-page .list li:nth-child(even) .box .right {
    left: -50%;
    text-align: right;
    direction: rtl;
    padding-left: 0;
}
.history-page .list li:nth-child(odd) .box .right {
    padding-right: 0;
}
.history-page .list li:nth-child(even) .box .right .line {
    left: auto;
    right: 0;
}
.history-page .list li:nth-child(even) .box .right .line i {
    left: 100%;
}
.history-page .list li:nth-child(even) .box .right .text {
    margin-left: 0;
    margin-right: 1.5em;
    direction: ltr;
}
.history-page .cursor {
    position: -webkit-sticky;
    position: sticky;
    padding: 20px 0;
    background-color: white;
    width: 100%;
    bottom: 0;
}
.history-page .cursor span {
    display: block;
    font-size: 18px;
    font-weight: normal;
    color: #120c0b;
}
.history-page .cursor span.hand {
    display: inline-block;
    position: relative;
    margin-bottom: .7em;
}
.history-page .cursor span.hand:before {
    content: '';
    width: 3px;
    height: 10px;
    background-color: #0070c0;
    position: absolute;
    left: 50%;
    top: 5%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: sx .8s linear infinite alternate;
    -moz-animation: sx .8s linear infinite alternate;
    animation: sx .8s linear infinite alternate;
}
@-webkit-keyframes sx {
    from {
        top: 15%;
    }
    to {
        top: 30%;
    }
}
@-moz-keyframes sx {
    from {
        top: 15%;
    }
    to {
        top: 30%;
    }
}
@keyframes sx {
    from {
        top: 15%;
    }
    to {
        top: 30%;
    }
}
.TopTitle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.TopTitle .left {
    width: auto !important;
}
.TopTitle .left span.h2 {
    margin-right: 1.2em;
}
.TopTitle .right {
    width: auto !important;
    margin-top: 35px;
}
.TopTitle .right .list ul li {
    font-weight: 900;
    font-size: 20px;
    color: #b9b9b9;
    text-transform: uppercase;
    padding: .25em 1.2em;
    width: auto;
    display: inline-block;
    border-left: 1px solid #e8e8e8;
    margin-top: 2px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.TopTitle .right .list ul li.active,
.TopTitle .right .list ul li:hover {
    color: #0070c0;
}
.factory-page {
    padding: 100px 0 80px;
}
.factory-page .bottom .list {
    margin: 90px 0;
}
.factory-page .bottom .list ul {
    margin: -35px -10px;
}
.factory-page .bottom .list ul li {
    padding: 35px 10px;
}
.factory-page .bottom .list ul li a.img-box {
    display: block;
}
.factory-page .bottom .list ul li a.img-box img {
    width: 100%;
}
.factory-page .bottom .list ul li a.img-box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/icon-zoom.png") center center no-repeat rgba(1, 169, 248, 0.7);
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.factory-page .bottom .list ul li a.img-box:hover:after {
    opacity: 1;
}
.factory-page .bottom .list ul li span.h6 {
    font-size: 22px;
    font-weight: 500;
    color: #120c0b;
    display: block;
    margin-top: .5em;
}
.product-yd-page {
    padding-top: 100px;
}
.product-yd-page .bottom {
    margin-top: 40px;
}
.product-yd-page .bottom .slide {
    padding: 90px 0;
    position: relative;
}
.product-yd-page .bottom .slide .left {
    vertical-align: middle;
    padding: 0 5%;
    position: relative;
}
.product-yd-page .bottom .slide .right {
    vertical-align: middle;
    padding-left: 6%;
    position: relative;
}
.product-yd-page .bottom .slide .right span.h3 {
    font-weight: 900;
    font-size: 30px;
    line-height: 1.2;
    display: block;
}
.product-yd-page .bottom .slide .right .text {
    margin: 1.3em 0;
    line-height: 1.6;
    padding-right: 1em;
    max-height: 16em;
    overflow-y: auto;
    overflow-x: hidden;
}
.product-yd-page .bottom .slide .right a.more {
    background-color: #f3f3f3;
}
.product-yd-page .bottom .slide:nth-child(even) {
    background-color: #f3f3f3;
}
.product-yd-page .bottom .slide:nth-child(even) .right a.more {
    background-color: white;
}
.product-yd-page .bottom .slide:nth-child(even) .left {
    left: 50%;
}
.product-yd-page .bottom .slide:nth-child(even) .right {
    left: -50%;
    padding-left: 0;
    padding-right: 6%;
}
.product-yd-page .bottom .slide:nth-child(odd):after {
    content: '';
    width: 7.03125vw;
    height: 36.61458333vw;
    z-index: -1;
    position: absolute;
    background: url("../images/icon-meiluo2.png") center no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 90%;
    background-size: contain;
    background-position: left center;
}
.product-yd-page .bottom .slide:nth-child(3n):after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 5%;
}

.productList ul {
    margin: -20px;
}
.productList ul li {
    padding: 20px;
}
.productList ul li a.img-box {
    display: block;
    /*padding: 70px 18% 40px;*/
    background-color: #f3f3f3;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.productList ul li a.img-box img {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
}
.productList ul li .content {
    padding: 0 5%;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.productList ul li .content span.h6 {
    font-weight: 500;
    font-size: 18px;
    color: #120c0b;
    display: block;
    border-bottom: 1px solid #ececec;
    line-height: 1.8;
    padding: 1em 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.productList ul li .content .text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 1em;
    padding: 0 5%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.productList ul li:hover a.img-box {
    background-color: var(--color);
}
/*.productList ul li:hover a.img-box img {
  -webkit-transform: translateY(49%);
  -moz-transform: translateY(49%);
  -ms-transform: translateY(49%);
  transform: translateY(49%);
}*/
/*.productList ul li:hover .content {
  -webkit-transform: translateY(-310%);
  -moz-transform: translateY(-310%);
  -ms-transform: translateY(-310%);
  transform: translateY(-310%);
}*/
/*.productList ul li:hover .content span.h6 {
  color: white;
  border-bottom-color: white;
}
.productList ul li:hover .content .text {
  color: white;
}*/
.product-list-page .productList ul,
.prodet-product-link .productList ul {
    margin: -20px -15px;
}
.product-list-page .productList ul li,
.prodet-product-link .productList ul li {
    padding: 35px 15px;
}
/*.product-list-page .productList ul li a.img-box,
.prodet-product-link .productList ul li a.img-box {
  padding: 30px 15%;
}*/
/*.product-list-page .productList ul li a.img-box img,
.prodet-product-link .productList ul li a.img-box img {
  max-height: 250px;
  width: auto;
  margin: 0 auto;
  display: block;
}*/
/*.product-list-page .productList ul li:hover .content,
.prodet-product-link .productList ul li:hover .content,
.small-product-link .productList ul li:hover .content {
  -webkit-transform: translateY(-223%);
  -moz-transform: translateY(-223%);
  -ms-transform: translateY(-223%);
  transform: translateY(-223%);
}*/
/*.product-list-page .productList ul li:hover a.img-box img,
.prodet-product-link .productList ul li:hover a.img-box img,
.small-product-link .productList ul li:hover a.img-box img {
  -webkit-transform: translateY(60%);
  -moz-transform: translateY(60%);
  -ms-transform: translateY(60%);
  transform: translateY(60%);
}*/
.product-list-page {
    padding: 80px 0 130px;
}
.product-det-page .product-det-1 {
    padding: 100px 0 60px;
}
.product-det-page .product-det-1 .box {
    display: flex;
    flex-wrap: wrap;
}
.product-det-page .product-det-1 .left {
    width: 56%;
    vertical-align: middle;
}
.product-det-page .product-det-1 .left a {
    display: block;
    padding: 0%;
    border: 1px solid #bebebe;
}
.product-det-page .product-det-1 .left ul {
    margin: -10px;
}
.product-det-page .product-det-1 .left ul li {
    padding: 10px;
}
.product-det-page .product-det-1 .left .smallImg {
    width: 25.5%;
    padding-right: 20px;
}
.product-det-page .product-det-1 .left .smallImg .slick-current a {
    border-color: #0070c0;
}
.product-det-page .product-det-1 .left .bigImg {
    width: 74.5%;
}
.product-det-page .product-det-1 .left .bigImg a {
    position: relative;
}
.product-det-page .product-det-1 .left .bigImg a:before {
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #0070c0;
    background-image: url("../images/icon-zoom.png");
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 3%;
    right: 3%;
}
.product-det-page .product-det-1 .right {
    width: 44%;
    padding-left: 3.5%;
    vertical-align: middle;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.product-det-page .product-det-1 .right h1 {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.6;
    display: block;
}
.product-det-page .product-det-1 .right .text {
    margin: 2em 0 3em;
    line-height: 1.8;
    font-size: 16px;
    /*max-height: 9.6em;*/
    /*overflow: auto;*/
}
.product-det-page .product-det-1 .right a.more {
    background-color: #f3f3f3;
}
.product-det-page .product-det-2 {
    padding-bottom: 60px;
    position: relative;
}
.product-det-page .product-det-2:before {
    content: '';
    width: 7.03125vw;
    height: 36.61458333vw;
    z-index: -1;
    position: absolute;
    background: url("../images/icon-meiluo2.png") center no-repeat;
    background-size: cover;
    left: 0;
    top: 5%;
}
.product-det-page .product-det-2 .left {
    width: 23%;
    padding-right: 1%;
    /*position: -webkit-sticky;*/
    /*position: sticky;*/
    /*top: 100px;*/
}
.product-det-page .product-det-2 .left .navList {
    background-color: white;
}
.product-det-page .product-det-2 .left .navList ul {
    font-size: 20px;
    font-weight: 900;
}
.product-det-page .product-det-2 .left .navList ul li span {
    color: white;
    background-color: black;
    padding: 1.1em 2em;
    display: block;
    position: relative;
}
.product-det-page .product-det-2 .left .navList ul li span i.fa {
    position: absolute;
    right: 5%;
    top: 1.3em;
    cursor: pointer;
    cursor: hand;
}
.product-det-page .product-det-2 .left .navList ul li ul {
    padding: .7em 2em;
    font-weight: 500;
    font-size: 110%;
    line-height: 1.2;
}
.product-det-page .product-det-2 .left .navList ul li ul li {
    padding: 1em 0;
}
.product-det-page .product-det-2 .left .navList ul li ul li a {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    padding-right: 1em;
    position: relative;
}
.product-det-page .product-det-2 .left .navList ul li ul li a:hover {
    color: #0070c0;
}
.product-det-page .product-det-2 .left .navList ul li ul li a i.fa {
    position: absolute;
    top: 0;
    right: 0;
}
.product-det-page .product-det-2 .left .navList ul li ul ul {
    padding: .5em 0 .5em 1em;
    font-size: 75%;
    font-weight: normal;
    display: none;
}
.product-det-page .product-det-2 .left .navList ul li ul ul li {
    padding: .5em 0;
}
.product-det-page .product-det-2 .left .navList ul li ul ul li a {
    padding-right: 0;
}
.product-det-page .product-det-2 .right {
    width: 77%;
}
.product-det-page .product-det-2 .right .prodet-content {
    max-width: 1250px;
}
.product-det-page .product-det-2 .right .prodet-content span.h3 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    position: relative;
}
.product-det-page .product-det-2 .right .prodet-content span.h3:before {
    content: '';
    width: 2.66666667em;
    height: 3.19444444em;
    background: url("../images/icon-5-bg.png") center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-20%, -30%);
    -moz-transform: translate(-20%, -30%);
    -ms-transform: translate(-20%, -30%);
    transform: translate(-20%, -30%);
    z-index: -1;
}
.product-det-page .product-det-2 .right .prodet-content .pdl {
    padding-left: 5% !important;
}
.product-det-page .product-det-2 .right .prodet-content .pdr {
    padding-right: 5% !important;
}
.product-det-page .product-det-2 .right .prodet-content .logo {
    float: right;
}
.product-det-page .product-det-2 .right .prodet-content span.tag {
    margin-bottom: 3.5em;
}
.product-det-page .product-det-2 .right .prodet-content .table {
    font-size: 20px;
}
.product-det-page .product-det-2 .right .prodet-content table {
    font-weight: 300;
    line-height: 2;
    margin: -10px !important;
    width: auto !important;
}
.product-det-page .product-det-2 .right .prodet-content table em {
    font-weight: normal;
}
.product-det-page .product-det-2 .right .prodet-content table strong {
    color: #0070c0;
    font-size: 1.2em;
    font-weight: 500;
    display: block;
}
.product-det-page .product-det-2 .right .prodet-content table tr {
    background-color: transparent !important;
}
.product-det-page .product-det-2 .right .prodet-content table tr td {
    border: none !important;
    padding: 10px !important;
    vertical-align: top;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 {
    padding: 100px 0 120px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .logo {
    float: none;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 span.h3 {
    font-size: 47px;
    margin-top: 1.5em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 span.h3:before {
    display: none;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 {
    padding-bottom: 25%;
    width: 100%;
    padding-right: 50%;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    margin-top: 30px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title {
    font-size: 36px;
    font-weight: 900;
    display: block;
    color: #0070c0;
    text-transform: uppercase;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title:before {
    content: '';
    width: 3em;
    height: 2px;
    background-color: #0070c0;
    margin-right: .5em;
    display: inline-block;
    vertical-align: middle;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .text {
    font-size: 20px;
    margin: 2em 0 3em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul {
    margin: -30px -20px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li {
    padding: 30px 20px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex i {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 50px;
    text-align: center;
    margin-right: .5em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex i:before {
    content: '';
    width: 3.18181818em;
    height: 3.54545455em;
    background: url("../images/icon-5-bg.png") center center no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 40%;
    -webkit-transform: translate(-20%, -50%);
    -moz-transform: translate(-20%, -50%);
    -ms-transform: translate(-20%, -50%);
    transform: translate(-20%, -50%);
    z-index: -1;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-2 .text {
    margin-top: 2em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-2 .text p {
    margin-bottom: 3em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-2 .text img {
    display: block;
    margin: 0 auto;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 {
    padding-top: 90px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table {
    margin-top: 6em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table table {
    margin-top: 1.5em !important;
    display: block;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table table td[colspan="6"] {
    padding-bottom: 0 !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table table td[colspan="6"] strong {
    line-height: 1;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 {
    padding-top: 120px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table {
    margin-top: 3em;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table table {
    margin: -5px !important;
    margin-bottom: 2.5em !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table table td {
    padding: 5px !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-4 .table img {
    display: block;
    margin-left: auto;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-5 {
    padding-top: 120px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-5 .text {
    margin-top: 1.5em;
    font-size: 22px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 {
    padding: 90px 0 150px;
    background-color: #f3f3f3;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text {
    font-weight: normal;
    font-size: 22px;
    margin-top: 5em;
    background-image: url("../images/prodet-content-6-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    color: white;
    line-height: 1.2;
    padding: 1em 0;
    position: relative;
    z-index: 1;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text:after {
    content: '';
    width: 42%;
    left: 27%;
    top: -5%;
    border-radius: inherit;
    background-color: #0070c0;
    z-index: -1;
    position: absolute;
    height: 110%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text hr {
    border: none;
    border-top: 1px solid #080808;
    border-bottom: 2px solid #323134;
    display: block;
    margin: 1em 0;
    width: 100%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text .img {
    height: 165px;
    margin-bottom: 1.5em;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text .img img {
    max-height: 100%;
    display: block;
    margin: 0 auto;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table {
    text-align: center;
    margin: 0 !important;
    line-height: inherit;
    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;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table p {
    width: 100%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table tr {
    width: 100% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td {
    vertical-align: bottom;
    padding: 0 2% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(1) {
    width: 27% !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(2) {
    width: 42% !important;
    padding: 0 3% !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(2) hr {
    border-top-color: #db8204;
    border-bottom-color: #f3ac48;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(3) {
    width: 31% !important;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table td:nth-child(3) .img img {
    max-height: 85%;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-7 {
    padding-top: 90px;
    text-align: center;
    background: #e9e9e9;
    background: -webkit-linear-gradient(340deg, #e9e9e9, #e1e1e1);
    background: -moz-linear-gradient(340deg, #e9e9e9, #e1e1e1);
    background: linear-gradient(110deg, #e9e9e9, #e1e1e1);
    /* firefox */
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-7 span.h3 {
    margin-bottom: 2em;
    display: inline-block;
    z-index: 1;
    line-height: 1.4;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 {
    text-align: center;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8.txt-center {
    text-align: center !important;
}
/*.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 span.tag {
  margin-bottom: 1.2em;
}*/
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 span.h3 {
    margin-bottom: 2em;
    display: inline-block;
    z-index: 1;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList {
    overflow: hidden;
    text-align: left;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList ul {
    margin: 0 -60px;
}
.product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList ul li {
    padding: 0 60px;
}
.product-det2-page {
    padding: 100px 0;
}
.product-det2-page .product-det2-1 .left {
    width: 45%;
    padding-right: 5%;
    /*vertical-align: middle;*/
}
.product-det2-page .product-det2-1 .left a {
    display: block;
    /*padding: 10%;*/
    border: 1px solid #bebebe;
    border-radius: 10px;
}
.product-det2-page .product-det2-1 .left ul {
    margin: -10px;
}
.product-det2-page .product-det2-1 .left ul li {
    padding: 10px;
}
.product-det2-page .product-det2-1 .left a {
    overflow: hidden;
}
.product-det2-page .product-det2-1 .left .smallImg {
    padding-top: 20px;
}
.product-det2-page .product-det2-1 .left .smallImg .slick-current a {
    border-color: #00070c0;
}
.product-det2-page .product-det2-1 .left .bigImg a {
    position: relative;
}
.product-det2-page .product-det2-1 .left .bigImg a:before {
    content: '';
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: #0070c0;
    background-image: url("../images/icon-zoom.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 45% auto;
    position: absolute;
    top: 3%;
    right: 3%;
}
.product-det2-page .product-det2-1 .right {
    width: 55%;
    /*vertical-align: middle;*/
}
.product-det2-page .product-det2-1 .right h1 {
    font-weight: 700;
    font-size: 40px;
    color: #120c0b;
    line-height: 1.4;
    display: block;

    text-transform: uppercase;
}
.product-det2-page .product-det2-1 .right .text {
    font-size: 18px;
    line-height: 34px;
    /*max-height: 12.8em;
    overflow: auto;*/
    padding-right: 1em;
    margin: 2em 0 2em;
}
.product-det2-page .product-det2-1 .right a.more {
    /*background-color: #0070c0;*/
    color: white;
}
.product-det2-page .product-det2-2 span.h3 {
    font-weight: 700;
    font-size: 30px;
    color: #120c0b;
    line-height: 1.2;
    display: block;
    margin-bottom: 1.5em;
    text-transform: uppercase;
}
.product-det2-page .m-link{
    margin-top: 30px;
}
.product-det2-page .m-link a{
    display: inline-block;
    line-height: 32px;
    padding: 8px 25px;
    font-size: 18px;
    color: #000;
    border: 1px solid #eee;
    background: #f8f8f8;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product-det2-page .m-link a:hover{
    background: #0070c0;
    color: white;
}
.product-det2-page .prodet-22{
    padding-top: 50px;
}
.product-det2-page .prodet-22 ul.options{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.product-det2-page .prodet-22 ul.options li{
    font-size: 18px;
    padding: 10px 20px;
    line-height: 32px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
}
.product-det2-page .prodet-22 ul.options li.active,
.product-det2-page .prodet-22 ul.options li:hover{
    background: #0070c0;
    color: white;
}
.product-det2-page .prodet-22 .content{
    margin-top: 30px;
}
.product-det2-page .prodet-22 .content .det{
    color: #757575;
    font-size: 18px;
    line-height: 34px;
}
.product-det2-page .prodet-22 .content .det.active{
    display: block;
}
.product-det2-page .prodet-22 .content .det .det2.pr{
    display: inline-block;
}
.service-page .service-1 {
    padding-top: 100px;
    padding-bottom: 60px;
}
.service-page .service-1 .left {
    vertical-align: middle;
}
.service-page .service-1 .left .img {
    /*height: 790px;*/
    /*display: block;
    -webkit-mask-image: url("../images/service-1-mask.png");
    mask-image: url("../images/service-1-mask.png");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
}
.service-page .service-1 .left .img video{
    display: block;
    width: 100%;
}
.service-page .service-1 .right {
    vertical-align: middle;
    padding-left: 5%;
}
.service-page .service-1 .right span.h2 {
    margin: .5em 0;
}
.service-page .service-1 .right span.h2 em {
    font-size: 0.875em;
}
.service-page .service-1 .right a.more {
    background-color: #f3f3f3;
    margin-top: 2em;
}
.service-page .service-2 {
    padding:80px 0 80px;
    text-align: center;
}
.service-page .service-2 .text{
    font-size: 18px!important;
    line-height: 32px;
}
.service-page .service-2 .list {
    margin-top: 80px;
}
.service-page .service-2 .list ul {
    margin: -13px;
}
.service-page .service-2 .list ul li {
    padding: 13px;
    text-align: left;
}
.service-page .service-2 .list ul li span.num {
    font-size: 50px;
    font-weight: 900;
    color: #0070c0;
    display: block;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}
.service-page .service-2 .list ul li span.num:after {
    content: '';
    width: 100%;
    background-color: black;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-left: .5em;
    margin-top: -0.2em;
}
.service-page .service-2 .list ul li span.h6 {
    font-weight: 500;
    font-size: 24px;
    color: #120c0b;
    margin: .5em 0;
    display: block;
    line-height: 1.2;
}
.service-page .service-2 .list ul li .text {
    line-height: 2;
}
.service-page .service-2 .list ul li:last-child span.num:after {
    display: none;
}
.service-page .service-3 {
    padding: 130px 0 90px;
    text-align: center;
    color: white;
    background-image: url("../images/service-3-bg.jpg");
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}
.service-page .service-3 span.h2 {
    margin-bottom: 1.2em;
}
.service-page .service-3 a.more {
    color: #fff;
}
.service-page .service-3 a.more:hover {
    color: white;
}
.service-page .service-4 {
    padding: 60px 0;
    background-color: #0070c0;
    color: white;
    text-align: center;
}
.service-page .service-4 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.service-page .service-4 ul li {
    padding: 5px;
    border-right: 1px solid white;
}
.service-page .service-4 ul li span.h6 {
    font-weight: 500;
    font-size: 60px;
    display: block;
    line-height: 1.2;
}
.service-page .service-4 ul li span.h6 sub {
    font-size: 50%;
    vertical-align: baseline;
}
.service-page .service-4 ul li .text {
    color: inherit;
    margin-top: .5em;
}
.service-page .service-4 ul li:last-child {
    border-right: none;
}
.download-page {
    padding: 100px 0;
}
.download-page .downloadList ul {
    margin: -45px -13px;
}
.download-page .downloadList ul li {
    padding: 45px 13px;
}
.download-page .downloadList ul li a.img-box {
    display: block;
}
.download-page .downloadList ul li a.img-box img {
    width: 100%;
}
.download-page .downloadList ul li a.more {
    margin-top: 1.5em;
    background-color: #f3f3f3;
}
.faq-page {
    padding: 100px 0;
}
.faq-page .slideBarRight span.h3 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    color: #120c0b;
    display: block;
    line-height: 1.2;
}
.faq-page .slideBarRight .faqList {
    font-size: 20px;
    font-weight: normal;
    margin-top: 2em;
}
.faq-page .slideBarRight .faqList li {
    padding: .7em 0;
    line-height: 1.8;
}
.faq-page .slideBarRight .faqList li span.h6 {
    padding: 1em 4em 1em 1.5em;
    -o-box-shadow: 0 0 21px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 21px rgba(0, 0, 0, 0.07);
    position: relative;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.faq-page .slideBarRight .faqList li span.h6 i.close {
    width: 1.75em;
    height: 1.75em;
    position: absolute;
    top: 1em;
    right: 1.1em;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.faq-page .slideBarRight .faqList li span.h6 i.close:after,
.faq-page .slideBarRight .faqList li span.h6 i.close:before {
    content: '';
    background-color: #e5e5e5;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: .25em;
    -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 .slideBarRight .faqList li span.h6 i.close: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 .slideBarRight .faqList li .text {
    padding: 1em 1.5em 0;
    font-weight: normal;
    color: #0070c0;
    display: none;
}
.faq-page .slideBarRight .faqList li.active span.h6 {
    background-color: #0070c0;
    color: white;
}
.faq-page .slideBarRight .faqList li.active span.h6 i.close {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
.faq-page .slideBarRight .faqList li.active span.h6 i.close:after,
.faq-page .slideBarRight .faqList li.active span.h6 i.close:before {
    background-color: white;
}
.news-page {
    padding: 100px 0;
}
.news-page .newsList ul {
    margin: -40px -20px;
}
.news-page .newsList ul li {
    padding: 40px 20px;
}
.news-page .newsList ul li a.img-box {
    display: block;
}
.news-page .newsList ul li a.img-box img {
    display: block;
    width: 100%;
}
.news-page .newsList ul li hr {
    display: block;
    border: none;
    height: 1px;
    background-color: #bebebe;
    margin: 20px 0;
}
.news-page .newsList ul li time {
    display: block;
    font-size: 18px;
    color: #0070c0;
    /*text-transform: uppercase;*/
    line-height: 32px;
}
.news-page .newsList ul li span.h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.8;
    margin: .5em 0;
    display: block;
}
.news-page .newsList ul li .text {
    color: #a1a1a1;
    line-height: 34px;
    margin-bottom: 1em;
}

.newdet-page {
    padding: 100px 0;
}
.newdet-page .newsContent a.img-box {
    display: block;
}
.newdet-page .newsContent a.img-box img {
    width: 100%;
}
.newdet-page .newsContent h1 {
    font-weight: 500;
    font-size: 34px;
    line-height: 1.4;
    margin-top: 1em;
    display: block;
}
.newdet-page .newsContent time {
    display: block;
    font-weight: normal;
    font-size: 18px;
    margin: 1em 0;
    line-height: 32px;
    color: #0070c0;
}
.newdet-page .newsContent time i {
    color: #bebebe;
    margin: 0 .5em;
}
.newdet-page .newsContent .text {
    color: #a1a1a1;
}
.newdet-page .newsContent .text h3 {
    font-size: 1.5em;
    margin: 1em 0 .2em;
    font-weight: bold;
    color: #525252;
}
.newdet-page .newsContent hr {
    height: 1px;
    border: none;
    display: block;
    background-color: #bebebe;
    margin: 30px 0;
}
.newdet-page .newsContent .bottom {
    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;
}
.newdet-page .newsContent .bottom .m-link {
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
}
.newdet-page .newsContent .bottom .share {
    font-size: 18px;
    white-space: nowrap;
    line-height: 32px;
}
.newdet-page .newsContent .bottom .share span {
    color: #120c0b;
    font-weight: 500;
}
.newdet-page .newsContent .bottom .share a {
    margin-left: .5em;
    color: #0070c0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.newdet-page .newsContent .bottom .share a:hover {
    color: #120c0b;
}
.newdet-page .prodet-product-link span.h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    display: block;
}
.contact-page {
    padding: 100px 0;
    position: relative;
}
.contact-page .box .left {
    padding-right: 5%;
}
.contact-page .box .left .text {
    margin: 1em 0 1.5em;
}
.contact-page .box .left .form ul {
    margin: -13px -10px;
}
.contact-page .box .left .form ul li {
    padding: 13px 10px;
}
.contact-page .box .left .form ul li input {
    display: block;
    border: none;
    border-bottom: 1px solid #a1a1a1;
    font-size: 16px;
    font-weight: normal;
    color: #120c0b;
    padding: .5em 0;
    line-height: 30px;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact-page .box .left .form ul li input::-webkit-input-placeholder {
    color: #878787;
}
.contact-page .box .left .form ul li input:-moz-placeholder {
    color: #878787;
}
.contact-page .box .left .form ul li input::-moz-placeholder {
    color: #878787;
}
.contact-page .box .left .form ul li input:-ms-input-placeholder {
    color: #878787;
}
.contact-page .box .left .form ul li input::placeholder {
    color: #878787;
}
.contact-page .box .left .form ul li input:focus {
    border-color: #0070c0;
}
.contact-page .box .left .form ul li.mt {
    margin-top: 2em;
}
.contact-page .box .left .form ul li a.more {
    margin-top: 1em;
    background-color: #f3f3f3;
}
.contact-page .box .left .form ul li.wid-100 {
    width: 100%;
}
.contact-page .box .left .form ul li button{
    border: none;
}
.contact-page .box .right {
    padding-left: 10%;
}
.contact-page .box .right span.h3 {
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}
.contact-page .box .right span.h3 em {
    color: #0070c0;
}
.contact-page .box .right .text {
    margin-top: 1em;
}
.contact-page .box .right .info {
    font-size: 18px;
    color: #120c0b;
    font-weight: 300;
    margin: 2em 0 3em;
}
.contact-page .box .right .info li {
    margin-bottom: .8em;
}
.contact-page .box .right .info li:last-child {
    margin-bottom: 0;
}
.contact-page .box .right .info li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 2;
}
.contact-page .box .right .info li a i {
    width: 1.5em;
    text-align: center;
    height: 1.6em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: .5em;
    color: #0070c0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.contact-page .box .right .info li a i img {
    display: block;
    margin: 0 auto;
}
.contact-page .box .right .share {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.contact-page .box .right .share a {
    font-size: 20px;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    border: 1px solid #0070c0;
    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;
    margin-right: 1em;
    color: #120c0b;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact-page .box .right .share a:hover {
    color: white;
    background-color: #0070c0;
}
.contact-page .map {
    height: 500px;
    margin-top: 100px;
    background-color: #eee;
}
.contact-page .map iframe {
    height: 100%;
    width: 100%;
    display: block;
}
@media screen and (max-width: 1600px) {
    .contact-page .box .right .info,
    .history-page .cursor span,
    .newdet-page .newsContent time,
    .newdet-page .newsContent .bottom .m-link,
    .newdet-page .newsContent .bottom .share,
    .news-page .newsList ul li time {
        font-size: 16px;
        line-height: 30px;
    }
    .culture-page .culture-1,
    .history-page,
    .product-yd-page,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-3,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-4,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-5,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-7,
    .service-page .service-1 {
        padding-top: 80px;
    }
    .chainList,
    .contact-page,
    .culture-page .culture-2,
    .download-page,
    .factory-page,
    .faq-page,
    .newdet-page,
    .news-page,
    .product-list-page,
    .product-det-page .product-det-1,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6,
    .product-det2-page,
    .service-page .service-2,
    .service-page .service-3 {
        padding: 80px 0;
    }
    .chainList .bottom .list ul li,
    .culture-page .culture-2 .list ul li,
    .inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a,
    .factory-page .bottom .list ul li span.h6,
    .news-page .newsList ul li span.h6,
    .product-det-page .product-det-1 .right h1,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-5 .text,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text,
    .service-page .service-2 .list ul li span.h6,
    .inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.title {
        font-size: 20px;
        line-height: 36px;
    }
    .service-page .service-4 ul li span.h6 {
        font-size: 48px;
    }
    .culture-page .culture-2 .list,
    .chainList .bottom,
    .inner-page .m-page,
    .inner-page .prodet-product-link .dotsBox {
        margin-top: 50px;
    }
    .contact-page .map {
        margin-top: 60px;
    }
    .culture-page .culture-2 .list ul li span.h6 {
        margin: .5em 0;
    }
    .inner-page .slideBarBox .slideBarLeft .border.search,
    .inner-page .slideBarBox .slideBarLeft .border.nav span.h6,
    .inner-page .slideBarBox .slideBarLeft .border.hot,
    .inner-page .slideBarBox .slideBarLeft .border.mail {
        padding: 20px;
    }
    .inner-page .slideBarBox .slideBarLeft .border.img {
        padding: 35px 20px;
    }
    .inner-page .slideBarBox .slideBarLeft .border span.h6 {
        font-size: 24px;
        line-height: 44px;

    }
    .download-page .downloadList ul li {
        padding: 15px 5px;
    }
    .download-page .downloadList ul {
        margin: -15px -5px;
    }
    .inner-page .m-page a,
    .inner-page .m-page span,
    .inner-page .prodet-product-link .dotsBox .prev,
    .inner-page .prodet-product-link .dotsBox .next,
    .inner-page .prodet-product-link .dotsBox button {
        font-size: 16px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        margin: 0 10px;
    }
    .factory-page .bottom .list {
        margin: 50px 0;
    }
    .TopTitle .right .list ul li,
    .faq-page .slideBarRight .faqList {
        font-size: 18px;
    }
    .factory-page .bottom .list ul li,
    .news-page .newsList ul li {
        padding: 10px;
    }
    .factory-page .bottom .list ul,
    .news-page .newsList ul {
        margin: -10px;
    }
    .history-page .cursor {
        padding: 10px 0;
    }
    .history-page .cursor {
        position: static;
        display: none;
    }
    .newdet-page .newsContent h1 {
        font-size: 32px;
    }
    .product-yd-page .bottom .slide {
        padding: 50px 0;
    }
    .product-det-page .product-det-2 .left .navList ul {
        font-size: 18px;
    }
    .product-det-page .product-det-2 .left .navList ul li ul {
        font-size: 100%;
    }
    .product-det-page .product-det-2 .left .navList ul li ul li {
        padding: .7em 0;
    }
    .product-det-page .product-det-2 .right .prodet-content {
        max-width: 1080px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 {
        padding: 60px 0;
        padding-left: 5%;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .logo img {
        max-height: 100px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 span.h3 {
        font-size: 36px;
        margin-top: 1em;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title,
    .product-det-page .product-det-2 .right .prodet-content span.h3,
    .product-det2-page .product-det2-1 .right h1 {
        font-size: 28px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .text,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table,
    .product-det-page .product-det-2 .right .prodet-content .table {
        font-size: 18px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li {
        padding: 20px 15px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul {
        margin: -20px -15px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table {
        margin-top: 4em;
    }
    .product-det-page .product-det-2 .right .prodet-content .logo img {
        max-height: 40px;
    }
    .product-det-page .product-det-2 .right .prodet-content span.tag {
        margin-bottom: 3em;
    }
    .product-det2-page .product-det2-1 .right .text {
        margin: 1.5em 0 3em;
    }
    .service-page .service-2 .list ul li span.num {
        font-size: 36px;
    }
    .service-page .service-2 .list {
        margin-top: 50px;
    }
    .service-page .service-4 {
        padding: 40px 0;
    }
    .inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li li a,
    .inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.cat {
        font-size: 16px;
        line-height: 30px;
    }
    .product-det2-page .product-det2-2 span.h3 {
        font-size: 28px;
    }
    .TopTitle .right {
        margin-top: 30px;
    }
    .newdet-page .newsContent h1,
    .newdet-page .prodet-product-link span.h3,
    .faq-page .slideBarRight span.h3,
    .contact-page .box .right span.h3 {
        font-size: 28px;
    }

}
@media screen and (max-width: 1450px) {
    .inner-banner {
        padding: 80px 0;
    }
    /*.service-page .service-1 .left .img {
      height: 600px;
    }*/
    .service-page .service-2 .list ul li span.num {
        font-size: 32px;
    }
    .chainList .bottom .list ul li,
    .culture-page .culture-2 .list ul li,
    .inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a,
    .factory-page .bottom .list ul li span.h6,
    .news-page .newsList ul li span.h6,
    .product-det-page .product-det-1 .right h1,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-5 .text,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text,
    .service-page .service-2 .list ul li span.h6,
    .inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.title,
    .inner-page .slideBarBox .slideBarLeft .border.search,
    .inner-page .slideBarBox .slideBarLeft .border.nav span.h6,
    .inner-page .slideBarBox .slideBarLeft .border.hot,
    .inner-page .slideBarBox .slideBarLeft .border.mail {
        font-size: 18px;
        line-height: 32px;
    }
    .service-page .service-2 .list {
        margin-top: 30px;
    }
    .culture-page .culture-1,
    .history-page,
    .product-yd-page,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-3,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-4,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-5,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-7,
    .service-page .service-1 {
        padding-top: 60px;
    }
    .chainList,
    .contact-page,
    .culture-page .culture-2,
    .download-page,
    .factory-page,
    .faq-page,
    .newdet-page,
    .news-page,
    .product-list-page,
    .product-det-page .product-det-1,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6,
    .product-det2-page,
    .service-page .service-2,
    .service-page .service-3,
    .about-page .about-4 {
        padding: 60px 0;
    }
    .service-page .service-4 ul li span.h6 {
        font-size: 36px;
    }
    .chainList .bottom .list ul li,
    .culture-page .culture-2 .list ul li,
    .inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a,
    .factory-page .bottom .list ul li span.h6,
    .news-page .newsList ul li span.h6,
    .product-det-page .product-det-1 .right h1,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-5 .text,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text,
    .service-page .service-2 .list ul li span.h6,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .text,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table,
    .product-det-page .product-det-2 .right .prodet-content .table {
        font-size: 16px;
    }
    .inner-page .slideBarBox .slideBarLeft .border.img span.phone {
        font-size: 14px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title,
    .product-det-page .product-det-2 .right .prodet-content span.h3,
    .product-det2-page .product-det2-1 .right h1,
    .product-det2-page .product-det2-2 span.h3,
    .product-yd-page .bottom .slide .right span.h3 {
        font-size: 24px;
    }
    .product-det-page .product-det-2 .left .navList ul,
    .TopTitle .right .list ul li,
    .faq-page .slideBarRight .faqList {
        font-size: 16px;
    }
    .product-list-page .productList ul li,
    .prodet-product-link .productList ul li {
        padding: 10px 5px;
    }
    .product-list-page .productList ul,
    .prodet-product-link .productList ul {
        margin: -10px -5px;
    }
    .TopTitle .right {
        margin-top: 20px;
    }
    .news-page .newsList ul li hr {
        margin: 10px 0;
    }
    .newdet-page .newsContent h1,
    .newdet-page .prodet-product-link span.h3,
    .faq-page .slideBarRight span.h3,
    .contact-page .box .right span.h3 {
        font-size: 24px;
    }
    .history-page .list li .box .left .img {
        height: 200px;
    }
    .contact-page .map {
        height: 400px;
    }
    .contact-page .box .right .info li {
        margin-bottom: .5em;
    }
    .contact-page .box .left .form ul li input {
        font-size: 14px;
        line-height: 2;
    }
    .contact-page .box .left .form ul li.mt {
        margin-top: 1em;
    }
    .contact-page .box .right .info {
        margin: 1.5em 0 2em;
    }
    .culture-page .culture-2 .list,
    .chainList .bottom,
    .inner-page .m-page,
    .inner-page .prodet-product-link .dotsBox {
        margin-top: 30px;
    }
    .productList ul li .content span.h6{
        font-size: 18px;
        line-height: 32px;
        min-height: 0!important;
    }
    .productList ul li .content .text{
        font-size: 16px;
        line-height: 30px;
        /*min-height: 76px;*/
    }
}
@media screen and (max-width: 1250px) {
    .contact-page .box .right {
        padding-left: 5%;
    }
    .newdet-page .newsContent h1,
    .newdet-page .prodet-product-link span.h3,
    .faq-page .slideBarRight span.h3,
    .contact-page .box .right span.h3 {
        font-size: 20px;
        line-height: 36px;
    }
    .contact-page .map {
        height: 300px;
    }
    .culture-page .culture-1 .left {
        padding-right: 5%;
    }
    .culture-page .culture-2 .list ul li {
        padding: 10px;
    }
    .culture-page .culture-2 .list ul {
        margin: -10px;
    }
    .inner-page .slideBarBox .slideBarLeft {
        display: none;
    }
    .inner-page .slideBarBox .slideBarRight {
        width: 100%;
    }
    .product-det-page .product-det-2 .left .navList ul,
    .TopTitle .right .list ul li,
    .faq-page .slideBarRight .faqList {
        font-size: 14px;
    }
    .TopTitle .right {
        margin-top: 25px;
    }
    .inner-page .prodet-product-link {
        padding-top: 60px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title,
    .product-det-page .product-det-2 .right .prodet-content span.h3,
    .product-det2-page .product-det2-1 .right h1,
    .product-det2-page .product-det2-2 span.h3,
    .product-yd-page .bottom .slide .right span.h3 {
        font-size: 20px;
    }
    .product-det-page .product-det-2 .right {
        width: 100%;
    }
    .product-det-page .product-det-2 .left {
        display: none;
    }
    .product-det-page .product-det-2 .right .prodet-content {
        max-width: 970px;
        padding: 0 15px;
        display: block;
        margin: 0 auto;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 {
        padding: 0 0 60px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .logo img {
        max-height: 70px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 span.h3 {
        font-size: 28px;
    }
    .chainList .bottom .list ul li,
    .culture-page .culture-2 .list ul li,
    .inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a,
    .factory-page .bottom .list ul li span.h6,
    .news-page .newsList ul li span.h6,
    .product-det-page .product-det-1 .right h1,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-5 .text,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text,
    .service-page .service-2 .list ul li span.h6,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .text,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-3 .table,
    .product-det-page .product-det-2 .right .prodet-content .table,
    .product-det-page .product-det-1 .right .text,
    .product-det2-page .product-det2-1 .right .text {
        font-size: 14px;
        line-height: 28px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text .img {
        height: 120px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList ul li {
        padding: 0 10px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-8 .productList ul {
        margin: 0 -10px;
    }
    .service-page .service-4 ul li span.h6 {
        font-size: 28px;
    }
    .xinwenbiaoti{
        line-height: 1.8;
        min-height: 2.5em;
    }
    .productList ul li:hover a.img-box img {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
    .productList ul li:hover .content .text,
    .productList ul li:hover .content span.h6{
        color: black;
    }
    .productList ul li:hover .content span.h6{
        border-color: #ececec;
    }
}
@media screen and (max-width: 1000px) {
    .service-page .service-1 .right {
        padding: 0;
        width: 100%;
    }
    .service-page .service-1 .left {
        display: none;
    }
    .service-page .service-2 .list ul li {
        width: 50%;
    }
    .service-page .service-2 .list ul li:last-child span.num:after {
        display: inline-block;
    }
    .service-page .service-2 .list ul li span.num {
        font-size: 28px;
    }
    .inner-page .m-page a,
    .inner-page .m-page span,
    .inner-page .prodet-product-link .dotsBox .prev,
    .inner-page .prodet-product-link .dotsBox .next,
    .inner-page .prodet-product-link .dotsBox button {
        font-size: 14px;
        width: 36px;
        height: 36px;
        line-height: 36px;
    }
    .product-det-page .product-det-2 .right .prodet-content {
        max-width: 700px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 span.h3 {
        font-size: 24px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 span.title,
    .product-det-page .product-det-2 .right .prodet-content span.h3,
    .product-det2-page .product-det2-1 .right h1,
    .product-det2-page .product-det2-2 span.h3,
    .product-yd-page .bottom .slide .right span.h3 {
        font-size: 18px;
        line-height: 32px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text table p img {
        max-height: 24px;
    }
    .product-det2-page .product-det2-1 .left,
    .product-det-page .product-det-1 .right {
        width: 100%;
        padding-right: 0;
    }
    .product-det2-page .product-det2-1 .right,
    .product-det-page .product-det-1 .right {
        width: 100%;
        margin-top: 20px;
        padding-left: 0;
    }
    .TopTitle .right {
        width: 100%;
    }
    .history-page .list li .box .right .line {
        top: 12px;
    }
    .history-page .list {
        margin: 40px 0 30px;
    }
    .history-page .list li .box .right,
    .history-page .list li .box .left {
        padding: 0 4%;
    }
    .history-page .list li .box .right .line {
        width: 6%;
    }
    .history-page .list li .box .left .img {
        height: 140px;
    }
    .history-page .list li {
        padding: 10px 0;
    }
    .culture-page .culture-1 .left {
        width: 100%;
        padding-right: 0;
    }
    .culture-page .culture-1 .right {
        width: 95%;
        margin-left: 5%;
        margin-top: 20px;
    }
    .contact-page .box .left {
        width: 100%;
        padding-right: 0;
    }
    .contact-page .box .right {
        width: 100%;
        padding-left: 0;
    }
    .contact-page .map {
        margin-top: 30px;
        height: 240px;
    }
    .contact-page .box .right .share a {
        font-size: 16px;
    }
    .inner-banner .mbx,
    .about-page .about-2 .numList ul li p,
    .contact-page .box .right .info,
    .history-page .cursor span,
    .newdet-page .newsContent time,
    .newdet-page .newsContent .bottom .m-link,
    .newdet-page .newsContent .bottom .share,
    .news-page .newsList ul li time {
        font-size: 14px;
        line-height: 2;
    }
    .product-det2-page .m-link a{
        font-size: 16px;
        line-height: 30px;
    }
    .product-det2-page .prodet-22 ul.options{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 700px) {
    .history-page .list li .box .right,
    .history-page .list li .box .left {
        width: 100%;
        left: 0 !important;
    }
    .history-page .list li .box .right {
        margin-top: 20px;
    }
    .history-page .list li:nth-child(even) .box .right .line {
        left: 0;
        right: auto;
    }
    .history-page .list li:nth-child(even) .box .right .line i {
        left: auto;
        left: 0;
    }
    .history-page .list li:nth-child(even) .box .right {
        direction: ltr;
        text-align: left;
    }
    .history-page .list li:nth-child(even) .box .right .text {
        margin-left: 1.5em;
        margin-right: 0;
    }
    .history-page .list:after {
        left: 0;
    }
    .product-yd-page .bottom .slide .right {
        width: 100%;
        left: 0 !important;
        padding: 0 !important;
        margin-top: 20px;
    }
    .product-yd-page .bottom .slide .left {
        width: 100%;
        left: 0 !important;
        padding: 0 !important;
    }
    .product-yd-page .bottom .slide .left img {
        -webkit-transform: translateY(0) !important;
        -moz-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }
    .product-yd-page .bottom .slide:nth-child(odd):after {
        background-size: 15% auto;
    }
    .product-det-page .product-det-2 .right .prodet-content span.tag {
        margin-bottom: 2em;
    }
    .product-det2-page .product-det2-1 .left,
    .product-det-page .product-det-1 .right {
        width: 100%;
        padding-right: 0;
    }
    .product-det2-page .product-det2-1 .right,
    .product-det-page .product-det-1 .right {
        width: 100%;
        margin-top: 20px;
    }
    .product-det-page .product-det-1 .right {
        padding-left: 0;
    }
    .product-det-page .product-det-1 .left ul li {
        padding: 3px;
    }
    .product-det-page .product-det-1 .left ul {
        margin: -3px;
    }
    .product-det-page .product-det-1 .left .smallImg {
        padding-right: 6px;
    }
    .product-det-page .product-det-1 .left {
        width: 100%;
    }
    .product-det-page .product-det-1 .right {
        width: 100%;
    }
    .product-det-page .product-det-1 .right .text {
        margin: 1em 0;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 {
        padding-right: 0;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list {
        padding-right: 50%;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul {
        margin: -5px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li {
        width: 100%;
        padding: 5px;
    }
    .service-page .service-4 ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .service-page .service-4 ul li {
        width: 100%;
        border: none;
    }
    .service-page .service-4 ul li span.h6 {
        font-size: 24px;
    }
}
@media screen and (max-width: 500px) {
    .culture-page .culture-1,
    .history-page,
    .product-yd-page,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-3,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-4,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-5,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-7,
    .service-page .service-1 {
        padding-top: 40px;
    }
    .chainList,
    .contact-page,
    .culture-page .culture-2,
    .download-page,
    .factory-page,
    .faq-page,
    .newdet-page,
    .news-page,
    .product-list-page,
    .product-det-page .product-det-1,
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6,
    .product-det2-page,
    .service-page .service-2,
    .service-page .service-3 {
        padding: 40px 0;
    }
    .service-page .service-2 .list ul li {
        width: 100%;
    }
    .service-page .service-4 ul li {
        width: 50% !important;
    }
    .chainList .top .right {
        text-align: left;
        margin-top: 10px;
    }
    .product-det2-page .product-det2-1 .left ul li {
        padding: 5px;
    }
    .product-det2-page .product-det2-1 .left ul {
        margin: -5px;
    }
    .product-det2-page .product-det2-1 .left .smallImg {
        padding-top: 10px;
    }
    .product-det2-page .product-det2-1 .right .text {
        max-height: none;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex i {
        width: 30px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .list ul li .flex i img {
        max-height: 30px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-1 .wid-50 .text {
        margin: 1em 0 1.5em;
    }
    .product-det-page .product-det-2 .right .prodet-content span.tag {
        margin-bottom: 2.5em;
    }
    .product-det-page .product-det-2 .right .prodet-content table tr td {
        display: block;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text {
        font-size: 12px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text .img {
        height: 90px;
    }
    .product-det-page .product-det-2 .right .prodet-content .prodet-content-6 .text:after {
        height: 106%;
        top: -3%;
    }
    .product-yd-page .bottom .slide .right .text {
        max-height: none;
        padding-right: 0;
    }
    .newdet-page .newsContent .bottom {
        display: block;
    }
    .newdet-page .newsContent .bottom .share {
        margin-top: 1em;
    }
    .newdet-page .newsContent hr {
        margin: 15px 0;
    }
    .TopTitle .right .list ul li {
        padding: .2em 1em;
    }
    .download-page .downloadList ul li {
        width: 50% !important;
    }
}
.fancybox-image {
    background-color: white !important;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-1 .wid-50 {
    background-size: 45% auto;
    background-position: right bottom;
    padding-right: 47%;
    padding-bottom: 3%;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 {
    padding: 90px 0;
    text-align: left;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list {
    margin-top: 0;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide {
    margin-bottom: 45px;
    background: #f3f3f3;
    position: relative;
    border-radius: 5px;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide:last-child {
    margin-bottom: 0;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide .img {
    vertical-align: middle;
    position: relative;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide .img img {
    width: 100%;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide .content {
    padding: 0 3%;
    vertical-align: middle;
    position: relative;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide .content span.h6 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .5em;
    display: block;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide .content .text {

}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide span.num {
    font-size: 30px;
    font-weight: 900;
    line-height: 2em;
    height: 2em;
    padding: 0 .5em;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: white;
    position: absolute;
    top: 0;
    right: 3%;
    background-color: #0070c0;
    min-width: 2em;
    text-align: center;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide:nth-child(even) .img {
    left: 50%;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide:nth-child(even) .content {
    left: -50%;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-8 .list .slide:nth-child(even) span.num {
    left: 3%;
    right: auto;
}
.product-det-page .product-det-2 .right .prodet-content .table2 {
    font-size: 20px;
    margin-top: 3em;
    line-height: 1.8;
    color: #120c0b;
}
.product-det-page .product-det-2 .right .prodet-content .table2 strong {
    font-weight: 600;
    margin-bottom: .5em;
}
.product-det-page .product-det-2 .right .prodet-content .table2 em {
    font-weight: 500;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table,
.product-det-page .product-det-2 .right .prodet-content .table2 table td {
    border: none;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table {
    margin: -25px !important;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table tbody {
    table-layout: fixed;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table td {
    padding: 25px !important;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table table {
    margin: 0 !important;
    font-weight: 400;
    text-align: center;
    font-size: .8em;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table table td {
    padding: .5em !important;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table table tr {
    border-bottom: 1px solid #dcdcdc;
}
.product-det-page .product-det-2 .right .prodet-content .table2 table table tr:first-child {
    background-color: #f3f3f3 !important;
    border-bottom: none !important
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 {
    padding: 60px 0 100px;
    background-color: #f3f3f3;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list {
    margin-top: 60px;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul {
    margin: -20px -40px;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li {
    padding: 20px 40px;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box {
    border-radius: 6px;
    background: white;
    overflow: hidden;
    position: relative;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box a.img2 {
    position: absolute;
    right: 5%;
    bottom: 3%;
    max-width: 55%;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box a.img-box {
    height: 270px;
    background-size: cover;
    background-position: center center;
    display: block;
    position: relative;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box a.img-box span {
    height: 60%;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    background: white;
    position: absolute;
    right: 6%;
    top: 10%;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box a.img-box span img {
    max-height: 100%;
    width: auto;
    max-width: none;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box .content {
    padding: 25px 35px;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box .content span.h6 {
    font-size: 30px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    margin-bottom: .5em;
}
.product-det-page .product-det-2 .right .prodet-content.fps1 .prodet-content-9 .list ul li .box .content a.more {
    font-size: 14px;
    line-height: 2.5em;
    height: 2.5em;
    padding: 0 1em 0 1.5em;
    /*border-left-width: .4em;*/
}
.product-det-page .product-det-2 .right .prodet-content.krs .table table tbody {
    table-layout: fixed;
}
.product-det-page .product-det-2 .right .prodet-content.krs .table2 table tbody table {
    font-size: inherit;
    text-align: left;
}
.product-det-page .product-det-2 .right .prodet-content.krs .table2 table tbody table tr {
    border: none;
}
.product-det-page .product-det-2 .right .prodet-content.krs .table2 table tbody hr {
    margin: 0;
    margin-bottom: 1em;
    border: none;
    height: 1px;
    display: block;
    width: 100%;
    background: #dcdcdc;
}
.product-det-page .product-det-2 .right .prodet-content.krs .table2 table tbody table td {
    padding: 0 .5em 0 0 !important;
}
.product-det-page .product-det-2 .right .prodet-content.fps1.krs .prodet-content-1 .wid-50 {
    background-size: 40% auto;
    padding-right: 50%;
}
.flex_cont {
    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;
}
.flex_a_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex_j_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.project-page{
    padding-top: 80px;
}
.project-page .container {
    overflow: visible;
}
.project-page .container .nav_left {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    width: 320px;
    background-color: #f3f3f4;
    padding: 40px 20px;
    overflow: hidden;
}
.project-page .container .nav_left .tips {
    font-weight: 600;
}
.project-page .container .nav_left .list_cont {
    margin-top: 35px;
}
.project-page .container .nav_left .list_cont .title {

    border-bottom: 1px solid #cccdce;
    padding-bottom: 12px;
}
.project-page .container .nav_left .list_cont ul {
    padding-top: 10px;
}
.project-page .container .nav_left .list_cont ul li {
    margin-top: 14px;
}
.project-page .container .nav_left .list_cont ul li a span {
    margin-right: 10px;
}
.project-page .container .nav_left .list_cont ul li a:hover {
    color: #0070c0;
}
.project-page .container .nav_right {
    width: -webkit-calc(-220%);
    width: -moz-calc(-220%);
    width: calc(100% - 320px);
    padding-left: 40px;
}
.project-page .container .nav_right ul li .box {
    padding: 30px 0;
    border-top: 1px solid #cccdce;
    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;
}
.project-page .container .nav_right ul li .box .left {
    width: 52%;
}
.project-page .container .nav_right ul li .box .left .title {
    font-weight: bold;
    display: block;
    font-size: 48px;
    text-transform: uppercase;
}
.project-page .container .nav_right ul li .box .left .title:hover {
    color: #0070c0;
}
.project-page .container .nav_right ul li .box .left .cont {
    color: #757575;
    margin-top: 36px;
}
.project-page .container .nav_right ul li .box .left .des {
    overflow: hidden;
}
.project-page .container .nav_right ul li .box .left .more2 {
    margin-top: 36px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

}
.project-page .container .nav_right ul li .box .left .more2 .img_c {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0070c0;
    margin-left: 20px;
}
.project-page .container .nav_right ul li .box .left .more2 .img_c img {
    width: 10px;
}
.project-page .container .nav_right ul li .box .left .more2:hover {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}
.project-page .container .nav_right ul li .box .right {
    margin-left: auto;
    width: 41%;
}
.project-page .container .nav_right ul li .box .right img {
    width: 100%;
}
@media (max-width: 1250px) {
    .project-page .container .nav_left {
        display: none;
    }
    .project-page .container .nav_right {
        width: 100%;
        padding-left: 0;
    }
}
@media (max-width: 1000px){
    .project-page .container .nav_right ul li .box .left {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 30px;
    }
    .project-page .container .nav_right ul li .box .right {
        width: 100%;
        padding: 20px 10px;
    }
    .project-page .container .nav_right ul li .box .left .title{
        font-size: 36px;
    }
}
@media (max-width: 500px){
    .project-page .container .nav_right ul li .box .left .title{
        font-size: 28px;
    }
}

.design-page {
    padding: 90px 0;
}
.design-page .init-1 .container .tip_title {
    text-align: center;
    font-weight: bold;
}
.design-page .init-1 .container .tip_des {
    color: #747474;
    max-width: 880px;
    text-align: center;
    margin: 20px auto 0;
    line-height: 2;
}
.design-page .init-1 .container .list_cont {
    margin-top: 40px;
    margin: 40px -40px 0;
}
.design-page .init-1 .container .list_cont .list {
    padding: 0 40px;
    margin-top: 40px;
}
.design-page .init-1 .container .list_cont .list .list_2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.design-page .init-1 .container .list_cont .list .list_2 .left {
    line-height: 1;
    font-size: 40px;
    font-weight: bold;
    min-width: 80px;
    margin-right: 10px;
}
.design-page .init-1 .container .list_cont .list .list_2 .left .sub {
    margin-left: -8px;
}
.design-page .init-1 .container .list_cont .list .list_2 .right .title {
    font-size: 20px;
    font-weight: 500;
}
.design-page .init-1 .container .list_cont .list .list_2 .right .des {
    color: #2c2c2c;
    margin-top: 10px;
    line-height: 2;
}
.design-page .init-1 .container .list_cont .list:nth-child(2) .left {
    min-width: 110px;
}
.design-page .init-2 .container>.box {
    background-color: #fafafa;
}
.design-page .init-2 .container .left {
    vertical-align: middle;
}
.design-page .init-2 .container .left img {
    display: block;
    width: 100%;
}
.design-page .init-2 .container .right {
    background-color: #fafafa;
    vertical-align: middle;
    padding: 60px;
}
.design-page .init-2 .container .right .tips {

    color: #757575;


}
.design-page .init-2 .container .right .title_2 {
    margin-top: 10px;
    font-weight: bold;
    color: #0070c0;
    text-transform: uppercase;
    max-width: 480px;
}
.design-page .init-2 .container .right .index_line {
    height: 4px;
    margin: 10px 0 18px 0;
    width: 124px;
    background-color: #000;
}
.design-page .init-2 .container .right .des {
    color: #747474;
    margin-top: 30px;
    line-height: 2;
}
.design-page .init-3 .container .tip_title {
    font-weight: bold;
    text-align: center;
}
.design-page .init-3 .container .index_line {
    height: 5px;
    margin: 10px auto 0;
}
.design-page .init-3 .container .content {
    margin: 40px -8px 0;
}
.design-page .init-3 .container .content .slick li {
    padding: 0 8px;
}
.design-page .init-3 .container .content .slick li .box a {
    display: block;
    text-align: center;
}
.design-page .init-3 .container .content .slick li .box a img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.design-page .init-3 .container .content .slick li .box .text {
    margin-top: 16px;
    font-weight: 300;
}
.design-page .init-4 {
    padding: 90px 0;
    background-color: #fafafa;
}
.design-page .init-4 .container .left {
    vertical-align: middle;
    width: 500px;
}
.design-page .init-4 .container .left .title {
    font-weight: bold;
}
.design-page .init-4 .container .left .des {
    margin-top: 10px;
    color: #747474;
    line-height: 1.8;
    padding-right: 40px;
}
.design-page .init-4 .container .left .more_c {
    margin-top: 20px;
}
.design-page .init-4 .container .left .more_c .more {
    width: 50px;
    height: 50px;
    padding: 0;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    margin-right: 4px;
    background-color: #000;
}
.design-page .init-4 .container .left .more_c .more::before {
    background-color: #0070c0;
}
.design-page .init-4 .container .right {
    vertical-align: middle;
    width: -webkit-calc(-400%);
    width: -moz-calc(-400%);
    width: calc(100% - 500px);
}
.design-page .init-4 .container .right .slick li {
    padding: 0 14px;
}
.design-page .init-4 .container .right .slick li .box .img {
    display: block;
}
.design-page .init-4 .container .right .slick li .box .img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.design-page .init-5 {
    -o-background-size: cover;
    background-size: cover;
    padding: 100px 0 190px 0;
    text-align: right;
}
.design-page .init-5 .container .title {
    font-weight: bold;
}
.design-page .init-5 .container .index_line {
    height: 5px;
    margin: 20px 0 0 auto;
}
.design-page .init-5 .container .des {
    max-width: 620px;
    margin: 20px 0 0 auto;
    line-height: 2;
    color: #747474;
    font-weight: 300;
}
.design-page .init-5 .container .more_c .more {
    margin-top: 40px;
    margin-right: 4px;
    display: inline-block;
    padding: 12px 40px;
    font-weight: 300;
    font-style: italic;
    background-color: #fff;
    color: #0070c0;
    text-transform: uppercase;
}
.design-page .init-5 .container .more_c .more:hover {
    color: #ffffff;
}
.design-page .init-6 .container {
    text-align: center;
}
.design-page .init-6 .container .tips {
    font-weight: bold;
}
.design-page .init-6 .container .des {
    max-width: 1200px;
    color: rgba(0, 0, 0, 0.8);
    margin: 20px auto 0;
    text-align: justify;
}
.design-page .init-7 .container .tips_title {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.design-page .init-7 .container .content {
    margin-top: 40px;
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box a {
    display: block;
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .img {
    background-color: #f2f2f2;
    /*padding: 40px 60px;*/
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .img img {
    width: 100%;
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .title {
    margin-top: 24px;

}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .title:hover {
    color: #0070c0;
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .more2 {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 20px;
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .more2 .img_c {
    margin-left: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0070c0;
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .more2 .img_c img {
    width: 10px;
}
.design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .more2:hover {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}
@media (max-width: 1000px){
    .design-page .init-2 .container .left {
        width: 100%;
    }
    .design-page .init-2 .container .right {
        width: 100%;
        padding: 20px 0;
    }
    .design-page .init-2 .container .right .title_2 {
        max-width: 100%;
    }
    .design-page .init-2 .container .right .index_line {
        display: none;
    }
    .design-page .init-2 .container .right .des {
        margin-top: 20px;
    }
    .design-page .init-4 {
        padding: 40px 0;
    }
    .design-page .init-4 .container .left {
        width: 100%;
    }
    .design-page .init-4 .container .right {
        width: 100%;
        margin-top: 40px;
    }
    .design-page .init-7 .container .content .swiper .swiper-wrapper .swiper-slide .box .more {
        margin-top: 20px;
    }
}
.service-page .init-1 {
    padding: 103px 0 0px;
}
.service-page .init-1 .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.service-page .init-1 .title .acc .tag {
    margin-top: 20px;
}
.service-page .init-1 .title p {
    margin-top: 50px;
    max-width: 465px;
}
.service-page .init-1 .top {
    margin-top: 0px;
}
.service-page .init-1 .top ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -14px;
}
.service-page .init-1 .top ul li {
    position: relative;
    padding: 0 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    transition: 1s
}
.service-page .init-1 .top ul li .acc {
    position: relative;
    height: 761px;

    border-radius: 30px;
    cursor: pointer;
}
.service-page .init-1 .top ul li .tit3 {
    position: absolute;
    left: 50%;
    bottom: 45px;
    -webkit-transform: translateX(-50%) rotate(-180deg);
    transform: translateX(-50%) rotate(-180deg);
    font-size: 30px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.service-page .init-1 .top ul li .box {
    position: absolute;
    left: 0;
    top: 22%;
    width: 100%;
    padding: 0 65px;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}
.service-page .init-1 .top ul li .box .tit {
    font-size: 30px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.4;
}
.service-page .init-1 .top ul li .box dl {
    margin-top: 60px;
    max-width: 430px;
}
.service-page .init-1 .top ul li .box dl dd a {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 32px;
    text-transform: capitalize;
    padding: 12px 0;
    padding-right: 39px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.service-page .init-1 .top ul li .box dl dd a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 39px;
    height: 7px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/bann1.png) no-repeat center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.service-page .init-1 .top ul li .box dl dd a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.service-page .init-1 .top ul li .box dl dd a:hover::before {
    width: 100%;
}
.service-page .init-1 .top ul li .box dl dd a:hover {
    padding: 16.5px 15px;
}
.service-page .init-1 .top ul li .box dl dd a:hover::after {
    right: 15px;
}
.service-page .init-1 .top ul li.active {
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7;
}
.service-page .init-1 .top ul li.active .acc .tit3 {
    opacity: 0;
    z-index: -1;
}
.service-page .init-1 .top ul li.active .acc .box {
    opacity: 1;
    z-index: 11;
}
@media screen and (max-width: 1400px){
    .service-page .init-1 .top ul li .box dl dd a{
        padding: 10px 0;
    }
}
@media screen and (max-width: 1100px){
    .service-page .init-1 .title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .service-page .init-1 .title p {
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }
    .service-page .init-1 {
        padding: 80px 0;
    }
    .service-page .init-1 .top {
        margin-top: 40px;
    }
    .service-page .title .tag i {
        display: initial;
    }
    .service-page .init-1 .top ul li .box {
        padding: 0 40px;
        top: 10%;
    }
    .service-page .init-1 .top ul li .box dl {
        margin-top: 30px;
    }
    .service-page .init-1 .top ul li .tit3 {
        font-size: 24px;
    }
    .service-page .init-1 .top ul li .acc{
        height: 620px;
    }
    .service-page .init-1 .top ul li .box dl dd a{
        font-size: 16px;
        padding: 9px 0;
    }
}
@media screen and (max-width: 768px){
    .service-page .init-1 {
        padding: 50px 0;
    }
    .service-page .init-1 .top ul {
        flex-wrap: wrap;
    }

    .service-page .init-1 .top ul li {
        width: 100%!important;
        flex: unset!important;
        margin: 20px 0
    }
    .service-page .init-1 .top ul li .box {
        opacity: 1!important;
        z-index: 19!important
    }
    .service-page .init-1 .top ul li .tit3 {
        display: none!important
    }
}
@media screen and (max-width: 450px){
    .service-page .init-1 .title .acc .tag {
        margin-top: 10px;
        line-height: 2;
    }
    .service-page .init-1 .top ul li .box {
        padding: 0 20px
    }

    .service-page .init-1 .top ul li .box .tit {
        font-size: 24px;
    }
    .service-page .init-1 .top ul li .box dl dd a {
        font-size: 14px;
    }
    .service-page .init-1 .top ul li .box dl dd a:after {
        display: none
    }
}
.why-page .service-2 {
    padding: 80px 0 10px;
    text-align: center;
}
.why-page .service-2 .list {
    margin-top: 80px;
}
.why-page .service-2 .list ul {
    margin: -13px;
}
.why-page .service-2 .list ul li {
    padding: 13px;
    text-align: center;
    overflow: hidden;
}
.why-page .service-2 .list ul li .num_box{
    position: relative;
    display: inline-block;
}
.why-page .service-2 .list ul li span.num {
    font-size: 50px;
    font-weight: 500;
    color: var(--color);
    display: inline-block;

    position: relative;
}
.why-page .service-2 .list ul li .num_box::before,
.why-page .service-2 .list ul li .num_box::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 500px;
    background-color: #bfbfbf;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-left: .5em;
    margin-top: -0.2em;
}
.why-page .service-2 .list ul li .num_box::before{
    right: 100%;
    left: auto;
    margin-right: 1em;
    margin-left: 0;
}
.why-page .service-2 .list ul li:first-child .num_box::before{
    display: none;
}
.why-page .service-2 .list ul li:last-child .num_box::after{
    display: none;
}
.why-page .service-2 .list ul li span.h6 {
    font-weight: 700;
    font-size: 24px;
    color: #120c0b;
    margin: .5em 0;
    display: block;
    line-height: 44px;
}
.why-page .service-2 .list ul li .text {
    line-height: 1.6;
    color: #626262;
}
.why-page .service-2 .list ul .slick-slide:last-child li span.num:after,
.why-page .service-2 .list ul li:last-child span.num:after {
    display: none;
}
.why-page .service-2 .list ul li .text{
    font-size: 18px;
}
@media screen and (max-width: 1600px){
    .why-page .service-2 {
        padding: 80px 0;
    }
    .why-page .service-2 .list ul li span.h6 {
        font-size: 20px;
    }
    .why-page .service-4 ul li span.h6 {
        font-size: 48px;
    }
    .why-page .service-2 .list ul li span.num {
        font-size: 36px;
    }
    .why-page .service-2 .list {
        margin-top: 50px;
    }
}
@media screen and (max-width: 1450px){
    .why-page .service-2 .list ul li span.num {
        font-size: 32px;
    }
    .why-page .service-2 .list ul li span.h6 {
        font-size: 18px;
    }
    .why-page .service-2 .list {
        margin-top: 30px;
    }
    .why-page .service-2 {
        padding: 60px 0;
    }
    .why-page .service-2 .list ul li span.h6{
        font-size: 16px;
    }
}
@media screen and (max-width: 1250px){
    .why-page .service-2 .list ul li span.h6 {
        font-size: 14px;
        line-height: 28px;
    }
}
@media screen and (max-width: 1000px){
    .why-page .service-2 .list ul li {
        width: 25%;
    }
    .why-page .service-2 .list ul li:last-child span.num:after {
        display: inline-block;
    }
    .why-page .service-2 .list ul li span.num {
        font-size: 28px;
    }
}
@media screen and (max-width: 500px){
    .why-page .service-2 {
        padding: 40px 0;
    }
    .why-page .service-2 .list ul li {
        width: 100%;
    }

    .why-page .service-2 .list ul li .num_box:before,
    .why-page .service-2 .list ul li .num_box:after{
        display: none;
    }
}

/* aft */
.aft01 {padding: 120px 0 100px; background: url(../images/aft01_bg.jpg);background-size: cover;position: relative;overflow: hidden;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01  h4 {    font-size: 30px; color: #333333; margin: 16px 0 28px; font-weight: bold;}
.aft01 .box {display: flex;    margin-bottom: 60px;}
.aft01 .box .min {width: 350px;height: 350px;border-radius: 50%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01 .box .min:nth-of-type(1) {transition: 0.5s; background-color: rgb(71 110 236);position: relative;z-index: 1;left: 0px;}
.aft01 .box .min:nth-of-type(2) {transition: 0.5s; background-color: rgb(36 36 36 / 90%); margin-left: -42px;position: relative;right: 0px;}
.aft01 .box:hover .min:nth-of-type(1){left: 308px;}
.aft01 .box:hover .min:nth-of-type(2){right: 308px;}
.aft01 .box .min  h5 {font-size: 20px;font-weight: bold;margin-bottom: 30px;color: #fff;}
.aft01 .box .min  h6 {font-size: 24px;color: #fff;font-weight: bold;margin-bottom: 50px;text-align: center;}
.aft01 .box .min  img {width: 42px;}
.aft01 p {font-size: 20px;color: #333333;font-weight: bold;}
.aft02 {padding: 160px 0 120px;position: relative;overflow: hidden;}
.aft02 .bg_fix {position: absolute;top: 0px;left: 0px;width: 100%;height: 690px;}
.aft02 .bg_fix::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); position: absolute; left: 0; top: 0; }
.aft02 .bg_fix img {height: 100%;width: 100%;object-fit: cover;}
.aft02 .top {display: flex;justify-content: center;align-items: center;flex-direction: column;margin-bottom: 47px;    z-index: 1; position: relative;}
.aft02 .top .hu_h3 {color: #fff;}
.aft02 .top  p {font-size: 18px;line-height: 34px;text-align: center;color: #fff;margin-top: 10px;}
.aft02 .top .line {height: 75px;width: 1px;background-color: rgba(255,255,255,0.4);margin: 28px 0 ;position: relative;}
.aft02 .top .line::after {content: "";  width: 7px; height: 7px; background-color: #fff; position: absolute; left: 50%; transform: translateX(-50%); top: 0px; animation: 2s linear 0.5s infinite hua2;}
@keyframes hua2 { from { top: 0%; } to { top: 95%; } }
.aft02 .top h4 {font-size: 30px;color: #fff;font-weight: bold; line-height: 1.4;}
.aft02 .botF {padding: 0 90px;position: relative;}
.aft02 .botF .fa {    background-image: none; width: auto; height: auto; margin: 0; padding: 0; font-size: 74px; color: #cbcbcb; outline: none;}
.aft02 .botF .fa:hover {color: var(--color);;}
.aft02 .bot {position: relative;overflow: hidden;margin: auto;}
.aft02 .bot .box {    background-color: #fff; padding: 50px 0 40px; border-radius: 12px; box-shadow: 0px 5px 15px rgb(102 102 102 / 30%); display: flex; justify-content: center; align-items: center; flex-direction: column; }
.aft02 .bot .box  .icon {border-radius: 50%; position: relative; height: 111px; display: flex;justify-content: center;align-items: center; width: 111px;}
.aft02 .bot .box:hover  .icon::before {   animation: img01anime 10s 0s linear infinite; }
.aft02 .bot .box:hover  .icon::after{  animation: img02anime 10s 0s linear infinite;}
.aft02 .bot .box  .icon::before {   content: ""; position: absolute; width: 120%; height: 120%; border-radius: 50%;  border: 1.6px dashed var(--color);}
.aft02 .bot .box  .icon::after{ content: ""; position: absolute; width: 100%; height: 100%; border-radius: 50%;  border: 1.6px dashed var(--color);}

@keyframes img01anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
@keyframes img02anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(-360deg);}
}

.aft02 .bot .box  .icon img {width: 56px;transition: 0s;}
.aft02 .bot .box h4 {font-size: 30px;font-weight: 500;color: #333333;margin-bottom: 5px;    margin-top: 54px;}
.aft02 .bot .box h5 {        width: 239px; font-size: 18px; position: relative; color: #666666; text-align: center; line-height: 32px; height: 52px; padding-top: 7px; margin-top: 5px;}
.aft02 .bot .box h5::after {content: "";position: absolute;width: 20px;height: 4px;background-color: var(--color);left: 50%;transform: translateX(-50%);bottom: 100%;}
.aft02 .bot .box p{padding:0px 40px; font-size: 18px; height: 70px;}
.aft02 .bot .box:hover h5::after {background-color: #fff;}
.aft02 .bot .box:hover h4,.aft02 .bot .box:hover h5,.aft02 .bot .box:hover p{color: #fff;}
.aft02 .bot .box:hover  .icon img {filter: grayscale(10) brightness(10);}
.aft02 .bot .box:hover  .icon,.aft02 .bot .box:hover  .icon::before,.aft02 .bot .box:hover  .icon::after {border-color: #fff;}
.font-20{
    line-height: 36px;
}
.aft02 .bot .box:hover {background-color: var(--color);}

.aft02 .bot .aft02Swiper {width: 1200px;margin: auto;}
.aft02 .bot  {width: 1242px;margin: auto;    padding: 22px 0;}
.aft03 {padding-bottom: 0;position: relative;overflow: hidden;}
.aft03 .icenter2 {display: flex;justify-content: space-between;align-items:center;}
.aft03 .icenter2 .le {overflow: hidden;position: relative;width: 45%;    height: 695px;}
.aft03 .icenter2 .le::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.5); content: ''; -webkit-transition: -webkit-transform .6s; transition: transform .6s; -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); z-index: 1; }
.aft03 .icenter2 .le:hover::before { -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); }
.aft03 .icenter2 .le img{height: 100%;}
.aft03 .icenter2 .le:hover img {transform: scale(1.1);}
.aft03 .icenter2 .ri {width: 50%;}
.aft03 .icenter2 .ri >ul {margin: 20px 0 0px;}
.aft03 .icenter2 .ri >ul li {position: relative;padding-left: 15px;font-size: 18px;color: #666666;line-height: 30px;}
.aft03 .icenter2 .ri >ul li::before {    width: 5px; height: 5px; border-radius: 50%; background-color: #666666; position: absolute; left: 0px; top: 13px; content: "";}
.aft03 dl dd{ padding-top: 60px;  display: flex;align-items: center;padding-bottom: 20px;border-bottom: 1px solid #d5d5d5;}
.aft03 dl dd .icon {width: 86px;margin-right: 58px;}
.aft03 dl dd .text {}
.aft03 dl dd .text h4 {    position: relative; padding-bottom: 0px; font-size: 18px; color: #333333; width: fit-content; margin-bottom: 10px;}
.aft03 dl dd .text h4 strong {font-size: 70px;font-weight: bold;}
.aft03 dl dd .text h4::after { position: absolute;content: "";left: 0px;bottom: 0px; width: 100%;height: 5px;background-color:var(--color);}
.aft03 dl dd .text  p {font-size: 18px;color: #666666;}
.aft04 {background: url(../images/aft04_bg.jpg);background-size: cover;position: relative;overflow: hidden;background-attachment: fixed;padding: 130px 0 180px;}
.aft04  .icenter2 {position: relative; z-index: 1;}
.aft04::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(239, 241, 247, 0.65); position: absolute; left: 0; top: 0; }
.aft04 .hu_h3 {padding-left: 42px;}
.aft04 dl {margin-top: 50px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2;}
.aft04 dl dd {width: 48%;padding-left: 42px;padding-bottom: 42px;box-sizing: border-box;display: flex;align-items: center;position: relative;    justify-content: space-between;}
.aft04 dl dd .bg {position: absolute; width: 127px;left: 0px;bottom: 0px;transition: 0.5s;}
.aft04 dl dd:hover .bg {left: 30px;bottom: 30px;}
.aft04 dl dd .le {width: 38.5%;}
.aft04 dl dd .ri {width: 51%;}
.aft04 dl dd .ri .name {font-size: 20px;font-weight: bold;color: #333333;width: 156px;height: 43px;border: 1px solid #d3d3d4;display: flex;justify-content: center;align-items: center;    background-color: #fff;}
.aft04 dl dd:hover .ri .name {background-color: #cd161d;color: #fff;}
.aft04 dl dd .ri .number{margin-top: 78px;}
.aft04 dl dd .ri .number .t {display: flex;align-items: center; margin-bottom: 17px; }
.aft04 dl dd .ri .number .t .icon {width: 65px;    margin-right: 12px;animation: bounce-up-data-v-7e3caf58 1.5s linear infinite;}
.aft04 dl dd .ri .number .t a {font-size: 40px;font-weight: bold;color: #cd161d;position: relative;}
.aft04 dl dd .ri .number .t a::after {    content: ""; position: absolute; left: 5px; bottom: -7px; width: 50px; height: 3px; background-color: #cd161d;}
.aft04 dl dd .ri .number span {font-size: 18px;color: #999999;}


@media screen and (max-width:1600px) {
    .aft01 {padding: 100px 0 90px;}
    .aft01 h4 { font-size: 25px; margin: 10px 0 22px; }
    .aft01 .box .min { width: 320px; height: 320px;}
    .aft01 .box:hover .min:nth-of-type(1) { left: 278px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 278px; }
    .aft01 .box .min h5 { font-size: 17px; margin-bottom: 26px; }
    .aft01 .box .min h6 { font-size: 22px; margin-bottom: 44px; }
    .aft01 .box .min img { width: 32px; }
    .aft01 .box { margin-bottom: 38px; }
    .aft02 .top p { font-size: 15px; line-height: 28px; margin-top: 8px; }
    .aft02 .top { margin-bottom: 30px;}
    .aft02 .top h4 { font-size: 24px; }
    .aft02 .top .line { height: 55px; margin: 20px 0; }
    .aft02 .bot .aft02Swiper { width: 1000px; }
    .aft02 .bot { width: 1032px; padding: 22px 0; }
    .aft02 .botF { padding: 0 13px;}
    .aft02 .botF .fa { font-size: 65px; }
    .aft02 .bot .box { padding: 43px 0 40px; box-shadow: 0 0 11px #d8d8d8;}
    .aft02 .bot .box .icon { height: 95px; width: 95px;}
    .aft02 .bot .box .icon img { width: 48px; }
    .aft02 .bot .box h4 { font-size: 26px; margin-bottom: 5px; margin-top: 44px; }
    .aft02 .bot .box h5 { width: 220px; font-size: 15px; line-height: 24px; height: 48px; }
    .aft02 .bot .box h5::after { width: 17px; height: 3px; bottom: 100%; }
    .aft02 .botF .fa-angle-left {left: -18px;}
    .aft02 .botF .fa-angle-right {right: -18px;}
    .aft02 { padding: 115px 0 90px; }
    .aft02 .bg_fix { height: 555px; }
    .aft03 .icenter2 .ri >ul li { padding-left: 15px; font-size: 14px; line-height: 24px; }
    .aft03 .icenter2 .ri >ul { margin: 16px 0 0px; }
    .aft03 dl dd { padding-top: 34px; padding-bottom: 12px; }
    .aft03 dl dd .icon { width: 74px; margin-right: 50px; }
    .aft03 dl dd .text h4 { font-size: 16px; margin-bottom: 8px; }
    .aft03 dl dd .text h4 strong { font-size: 58px; }
    .aft03 dl dd .text h4::after { height: 4px;}
    .aft03 dl dd .text p { font-size: 15px; }
    .aft03 .icenter2 .le { height: 529px; }
    .aft04 { padding: 100px 0 155px; }
    .aft04 dl dd { padding-left: 36px; padding-bottom: 36px;}
    .aft04 .hu_h3 { padding-left: 36px; }
    .aft04 dl { margin-top: 38px;}
    .aft04 dl dd .ri .number .t .icon { width: 48px; margin-right: 10px;}
    .aft04 dl dd .ri .number .t a { font-size: 30px; }
    .aft04 dl dd .ri .number .t a::after { width: 41px;}
    .aft04 dl dd .ri .number span { font-size: 16px; }
    .aft04 dl dd .ri .name { font-size: 16px; width: 133px; height: 38px;}
    .aft04 dl dd .bg { width: 115px; }
    .aft04 dl dd .ri .number { margin-top: 70px; }
}

@media only screen and (max-width:768px){
    .aft01 { padding: 50px 0; }
    .aft01 h4 { font-size: 22px; margin: 10px 0 22px; }
    .aft01 .box .min {        width: 192px; height: 192px; }
    .aft01 .box .min h5 { font-size: 14px; margin-bottom: 20px; }
    .aft01 .box .min h6 {      font-size: 16px; margin-bottom: 34px; height: 40px; display: flex; align-items: center;}
    .aft01 p { font-size: 16px; }
    .aft01 .box .min:nth-of-type(2) { margin-left: -25px; }
    .aft02 .top p { font-size: 15px; line-height: 26px; margin-top: 8px; }
    .aft02 .top .line { height: 42px; margin: 14px 0;position: relative; }
    .aft02 .top h4 { font-size: 22px; }
    .aft02 .bot { width: 110%; }
    .aft02 .top { margin-bottom: 20px; }
    .aft02 .botF { padding: 0 0px; }
    @keyframes hua2 { from { top: 0%; } to { top: 95%; } }
    .aft02 .bot .aft02Swiper { width: 100%; }
    .aft02 .bot { width: 100%;padding: 20px; }
    .aft02 .botF .fa-angle-left { left: -8px; }
    .aft02 .botF .fa-angle-right{ right: -8px; }
    .aft02 { padding: 80px 0 40px; }
    .aft02 .bg_fix { height: 483px; }
    .aft03 .icenter2 {flex-flow: wrap;}
    .aft03 .icenter2 .le {width: 100%;height: auto;margin-bottom: 20px;}
    .aft03 .icenter2 .ri {width: 100%;}
    .aft03 dl dd .icon { width: 60px; margin-right: 31px; }
    .aft03 { padding-bottom: 50px; }
    .aft04 {    padding: 50px 0 20px; background-attachment: unset;}
    .aft04 .hu_h3 { padding-left: 0px; }
    .aft04 dl { margin-top: 26px; flex-flow: wrap;}
    .aft04 dl dd {     padding-left: 22px; padding-bottom: 22px; width: fit-content; margin-bottom: 30px; }
    .aft04 dl dd .bg {     width: 72px; bottom: 0px; }
    .aft04 dl dd .le .imgbox {    height: 153px; width: 123px;}
    .aft04 dl dd .ri .name { font-size: 14px; width: 114px; height: 33px; }
    .aft04 dl dd .ri .number { margin-top: 38px; }
    .aft04 dl dd .ri .number .t a { font-size: 24px; }
    .aft04 dl dd .ri .number .t .icon { width: 32px; margin-right: 6px; }
    .aft04 dl dd .ri .number span { font-size: 14px; }
    .aft04 dl dd .ri { width: 60%; margin-left: 8%; }
    .aft01 .box:hover .min:nth-of-type(1) { left: 168px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 168px; }
}

.custom-2 .ui .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.custom-2 .ui .top .left {
    padding-right: 65px;
}
.custom-2 .ui .top .left .h3 {
    padding-left: 35px;
    border-left: 3px solid var(--color);
}
.custom-2 .ui .top .left p {
    line-height: 2;
    margin-top: 35px;
}
.custom-2 .ui .bottom {
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}
.custom-2 .ui .bottom .left {
    padding-right: 80px;
}
.custom-2 .ui .bottom .left p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px;
}
.custom-2 .ui .bottom .right {
    /*padding-right: 80px;*/
}
.custom-2 .ui .bottom .right ul.list3 li.active {
    background: #f3f3f3;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.custom-2 .ui .bottom .right ul.list3 li .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 28px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
}
.custom-2 .ui .bottom .right ul.list3 li .top em {
    margin-left: 25px;
}
.custom-2 .ui .bottom .right ul.list3 li .top i.fr {
    position: absolute;
    top: 16px;
    right: 25px;
}
.custom-2 .ui .bottom .right ul.list3 li .content {
    padding: 10px 30px 20px 30px;
    line-height: 1.8;
    display: none;
    font-size: 16px;
}
@media screen and (max-width: 1250px){
    .custom-2 .ui .bottom .left {
        padding-right: 0px;
    }
}
@media screen and (max-width: 1000px){
    .custom-2 .ui .bottom .right {
        padding-right: 0;
    }
    .custom-2 .ui .bottom {
        padding: 30px 25px;
    }
}
@media screen and (max-width: 700px){
    .custom-2 .ui .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .custom-2 .ui .top .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom-2 .ui .top .right {
        width: 100%;
    }
    .custom-2 .ui .bottom .right ul.list3 li .top{
        flex-wrap: nowrap;
        font-size: 16px;
    }
    .custom-2 .ui .bottom .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom-2 .ui .bottom .right {
        padding-right: 0;
        width: 100%;
        margin-top: 40px;
    }
}

.contact2-page .contact-1 {
    padding: 150px 0 110px;
    text-align: center;
}
.contact2-page .contact-1 .text {
    font-size: 18px;
    color: #8e8e8e;
    line-height: 1.6;
    max-width: 650px;
    display: block;
    margin: 1em auto 3em;
}
.contact2-page .contact-1 .list ul {
    margin: -20px;
    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;
}
.contact2-page .contact-1 .list ul li {
    padding: 20px;
}
.contact2-page .contact-1 .list ul li .box {
    padding: 35px 5% 35px;
    border: 1px solid #bfbfbf;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    height: 100%;
    position: relative;
    top: 0;
}
.contact2-page .contact-1 .list ul li .box i {
    display: block;
}
.contact2-page .contact-1 .list ul li .box i img {
    display: block;
    margin: 0 auto;
}
.contact2-page .contact-1 .list ul li .box span.h6 {
    font-weight: 500;
    font-size: 24px;
    color: #242424;
    margin: 1em 0 .5em;
    display: block;
}
.contact2-page .contact-1 .list ul li .box p {
    font-size: 18px;
    color: #8e8e8e;
    line-height: 2;
}
.contact2-page .contact-1 .list ul li .box:hover {
    border-color: var(--color);
    top: -20px;
}
.contact2-page .form ul {
    margin: -15px -7px;
}
.contact2-page .form ul li {
    padding: 15px 7px;
}
.contact2-page .form ul li input,
.contact2-page .form ul li textarea {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: .6em 1em;
    border: 1px solid #bfbfbf;
}
.contact2-page .form ul li input::-webkit-input-placeholder, .contact2-page .form ul li textarea::-webkit-input-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input:-moz-placeholder, .contact2-page .form ul li textarea:-moz-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input::-moz-placeholder, .contact2-page .form ul li textarea::-moz-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input:-ms-input-placeholder, .contact2-page .form ul li textarea:-ms-input-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input::placeholder,
.contact2-page .form ul li textarea::placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li textarea {
    height: 150px;
}
.contact2-page .form ul li input[type="submit"] {
    border: none;
    background: var(--color);
    color: white;
    /*font-weight: bold;*/
    font-size: 20px;
    /*text-transform: uppercase;*/
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact2-page .form ul li input[type="submit"]:hover {
    background: #242424;
}
.contact2-page .form ul li.wid-100 {
    width: 100%;
}
@media screen and (max-width: 1600px) {
    .contact2-page .form ul li {
        padding: 6px;
    }
    .contact2-page .form ul {
        margin: -6px;
    }
    .contact2-page .form ul li input,
    .contact2-page .form ul li textarea,
    .contact2-page .form ul li input[type="submit"] {
        font-size: 16px;
    }
}
@media screen and (max-width: 1000px) {
    .contact2-page .form ul li input,
    .contact2-page .form ul li textarea,
    .contact2-page .form ul li input[type="submit"] {
        font-size: 14px;
        padding: .5em;
    }
}
@media screen and (max-width: 1250px){
    .contact2-page .contact-1 {
        padding: 50px 0 80px;
    }
    .contact2-page .contact-1 .text {
        font-size: 16px;
    }
}

.history-page {
    /*background-image: url("../images/history-bg.jpg");*/
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.history-page .ui.container {
    width: auto;
    max-width: 1700px;
}
.history-page .left {
    width: 38%;
    padding-right: 4%;
    margin-top: 6%;
}
.history-page .right {
    width: 62%;
}
.history-page .right .swiper {
    margin-right: -14%;
    overflow: hidden;
}
.history-page .right span.h6 {
    color: #00a9f8;
    display: block;
    line-height: 1.4;
    font-weight: 500;
    font-size: 30px;
}
.history-page .right .text {
    margin: .5em 0 1.3em;
}
.history-page .right .img {
    height: 280px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-radius: 15px;
    background-size: cover;
    max-width: 420px;
    margin-bottom: 180px;
}
.history-page .right .swiper-wrapper {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.history-page .right .swiper-slide-active ~ div .img {
    height: 0;
}
.history-page .bg {
    width: 100vw;
    height: 100vw;
    position: absolute;
    top: 75%;
    left: 0;
    z-index: 1;
}
.history-page .bg i {
    font-size: 10vw;
    position: absolute;
    top: 0;
    left: 8%;
    -webkit-transform: translate(0%, -47%);
    -moz-transform: translate(0%, -47%);
    -ms-transform: translate(0%, -47%);
    transform: translate(0%, -47%);
    color: #00a9f8;
    z-index: 1;
    cursor: pointer;
    cursor: hand;
    line-height: 1;
}
.history-page .bg span {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    /*background-image: url("../images/icon-history.png");*/
    background-position: center;
    background-size: cover;
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    z-index: -1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
@media screen and (max-width: 1450px){
    .history-page .right .img {
        height: 200px;
        margin-bottom: 150px;
    }
}
@media screen and (max-width: 1000px) {
    .history-page .right {
        width: 100% !important;
        padding-left: 0;
        margin-top: 30px;
    }
    .history-page .left {
        width: 100% !important;
        padding-right: 0;
    }
    .history-page .flex {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .history-page .bg {
        display: none;
    }
    .history-page .right .img {
        height: 200px !important;
        margin-bottom: 0 !important;
    }
    .history-page .left {
        margin-top: 0;
    }
}
@media screen and (max-width: 500px){
    .history-page .right .swiper {
        margin-right: 0;
    }
    .product-det2-page .prodet-22 .content .det{
        font-size: 16px;
        line-height: 30px;
    }
}

img.shuiyin{
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    -o-object-fit: contain;
}


/*2026-5-19 add css */
:root {
    --bg: #f6f9ff;
    --blue: #1877dc;
    --bubble: #ffffff;
    --shadow: 0 6px 18px rgba(0,0,0,.12);
}



.circle-map {
    position: relative;
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 1920 / 960;
    margin: 0 auto;
    /*background: radial-gradient(1200px 600px at 50% 50%, #eaf3ff 0%, #ffffff 60%), var(--bg);*/
    overflow: hidden;
    background: url(/wzleh/2026/05/19/lh-bj.jpg) center center no-repeat;
    background-size: cover;
}

.circle-center {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 clamp(20px, 3.5vw, 56px)/1.1 system-ui, -apple-system, sans-serif;
    letter-spacing: .06em;
    box-shadow: 0 10px 30px rgba(24, 119, 220, 0.3);
    z-index: 10;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: #D3EBFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
    will-change: transform;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.bubble img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: saturate(1.05) contrast(1.02);
    pointer-events: none;
}

.bubble:hover {
    animation: shakes .6s cubic-bezier(.36,.07,.19,.97) both;
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
    z-index: 20;
    cursor: pointer;
}

@keyframes shakes {
    10%, 90% { transform: translate(calc(-50% - 1px), -50%) rotate(-.4deg); }
    20%, 80% { transform: translate(calc(-50% + 2px), -50%) rotate(.4deg); }
    30%, 50%, 70% { transform: translate(calc(-50% - 3px), -50%) rotate(-.6deg); }
    40%, 60% { transform: translate(calc(-50% + 3px), -50%) rotate(.6deg); }
}

/* 左侧 */
.b1  { left: 13%; top: 18%; width: 8%; }
.b2  { left: 25%; top: 11%; width: 7%; }
.b3  { left: 38%; top: 15%; width: 7%; }
.b4  { left: 8%;  top: 35%; width: 7%; }
.b5  { left: 20%; top: 28%; width: 8%; }
.b6  { left: 30%; top: 34%; width: 8%; }
.b7  { left: 5%;  top: 55%; width: 7.5%; }
.b8  { left: 16%; top: 49%; width: 9%; }
.b9  { left: 28%; top: 56%; width: 11%; z-index: 1;} /* BIYI */
.b10 { left: 9%;  top: 74%; width: 8%; }
.b11 { left: 19%; top: 68%; width: 8.5%; }
.b12 { left: 12%; top: 90%; width: 6.5%; }
.b13 { left: 24%; top: 87%; width: 7%; }
.b14 { left: 33%; top: 78%; width: 8%; }

/* 右侧 */
.b15 { left: 62%; top: 15%; width: 7%; }
.b16 { left: 75%; top: 11%; width: 8%; }
.b17 { left: 87%; top: 18%; width: 7.5%; }
.b18 { left: 70%; top: 34%; width: 8.5%; }
.b19 { left: 80%; top: 28%; width: 7.5%; }
.b20 { left: 92%; top: 35%; width: 7%; }
.b21 { left: 72%; top: 56%; width: 10%; }
.b22 { left: 84%; top: 49%; width: 9.5%; }
.b23 { left: 95%; top: 55%; width: 8%; }
.b24 { left: 67%; top: 78%; width: 8.5%; }
.b25 { left: 81%; top: 68%; width: 8%; }
.b26 { left: 91%; top: 74%; width: 7.5%; }
.b27 { left: 76%; top: 87%; width: 7%; }
.b28 { left: 88%; top: 90%; width: 6.5%; } 

.about-5 .map li {
    position: absolute;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.about-5 .map li i {
    width: 1.5em;
    height: 1.5em;
    border-radius: 100%;
    border: .25em solid white;
    background-color: var(--color);
    display: block;
}
.about-5 .map li .img {
    width: 4em;
    height: 4em;
    border-radius: 100%;
    background-color: white;
    position: relative;
}
.about-5 .map li .img img {
    max-width: 70%;
}
.about-5 .map li .img:after,
.about-5 .map li .img:before {
    content: '';
    width: 300%;
    height: 300%;
    background-color: rgba(0,112,192,.3);
    position: absolute;
    left: -100%;
    top: -100%;
    animation: ks 2s infinite linear;
    border-radius: 100%;
    z-index: -1;
}
.about-5 .map li .img:before {
    animation-delay: .6s;
}
.about-5 .map li:nth-child(1) {
    left: 76%;
    top: 47%;
}
.about-5 .map li:nth-child(2) {
    left: 19%;
    top: 28%;
}
.about-5 .map li:nth-child(3) {
    left: 21%;
    top: 43%;
}
.about-5 .map li:nth-child(4) {
    left: 29%;
    top: 70%;
}
.about-5 .map li:nth-child(5) {
    left: 50%;
    top: 30%;
}
.about-5 .map li:nth-child(6) {
    left: 52%;
    top: 54%;
}
.about-5 .map li:nth-child(7) {
    left: 58%;
    top: 46%;
}
.about-5 .map li:nth-child(8) {
    left: 68%;
    top: 52%;
}
.about-5 .map li:nth-child(9) {
    left: 80%;
    top: 40%;
}
.about-5 .map li:nth-child(10) {
    left: 84%;
    top: 44%;
}
.about-5 .map li:nth-child(11) {
    left: 85%;
    top: 79%;
}
@media screen and (max-width: 1500px){
    .oem-page .oem-3 li > div .content {
        position: static;
        opacity: 1;
        margin-top: 15px;
    }
    .oem-page .oem-3 li > div.pre>.name {
        display: none;
    }
}
@media screen and (max-width: 1500px) and (min-width:700px){
    .oem-page .oem-3 ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media screen and (max-width: 1000px){
    #banner li {
        background-color: black;
    }
    #banner li>img {
        opacity: .6;
    }
    
}