@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Regular.eot');
  src: url('../fonts/Oswald-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Oswald-Regular.woff2') format('woff2'), url('../fonts/Oswald-Regular.woff') format('woff'), url('../fonts/Oswald-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Medium.eot');
  src: url('../fonts/Oswald-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Oswald-Medium.woff2') format('woff2'), url('../fonts/Oswald-Medium.woff') format('woff'), url('../fonts/Oswald-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Bold.eot');
  src: url('../fonts/Oswald-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Oswald-Bold.woff2') format('woff2'), url('../fonts/Oswald-Bold.woff') format('woff'), url('../fonts/Oswald-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  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-display: swap;
}
body {
  font-family: "Poppins";
  max-width: 1920px;
  --color: #1a4172;
  --font: 'Oswald';
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1510px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.font1 {
  font-family: var(--font);
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header .nav {
  background-color: rgba(0, 25, 71, 0.2);
  transition: background-color .5s;
}
#header.active .nav {
  background-color: rgba(0, 25, 71, 1);
}
#header .nav .ui.menu {
  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;
  margin: 0 auto;
  height: 5em;
}
#header .nav .ui.menu .logo {
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
  background-color: rgba(0, 25, 71, 0.2);
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: auto;
}
#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 {
  margin: 0 1em;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 5px;
  width: 0;
  background: #acd3ef;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  padding: 0 1em;
  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;
}
#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 .h-search {
  color: #FFFFFF;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#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);
}
html[lang=sa] #header .nav .search-box form input[type="submit"] {
  right: auto;
  left: 15px;
}
#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;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  right: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  right: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active:before {
  left: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
html[lang=sa] #mobile .menu-content .mob-search form input[type="submit"] {
  right: auto;
  left: 0;
}
html[lang=sa] #mobile.white .menu-content .mob-search form input[type="submit"] {
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#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;
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#banner .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#banner .bg img {
  opacity: 0;
}
.home-1 {
  height: 100vh;
}
.home-1 .content {
  position: -webkit-sticky;
  position: sticky;
  top: 20%;
}
.home-1 h2 {
  line-height: 1.16666667;
  color: #FFFFFF;
  text-shadow: 0 4px 3px rgba(0, 0, 0, 0.1);
  opacity: var(--op);
}
.home-1 p {
  line-height: 1.66666667;
  color: #FFFFFF;
  font-style: italic;
  opacity: var(--op);
}
.home-1 .pro {
  width: 76%;
  left: 12%;
  bottom: 30%;
  z-index: 1;
}
.home-1 .mask {
  width: 100%;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.yuy {
  height: auto;
}
.yuy span {
  color: #FFFFFF;
}
@-webkit-keyframes mymove {
  from {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@-moz-keyframes mymove {
  from {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes mymove {
  from {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.home-2 {
  padding-top: 25vw;
  color: #FFFFFF;
}
.home-2 .right .text {
  line-height: 1.66666667;
}
.home-2 .right .more_btn i {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-2 .right .more_btn i::before {
  content: "";
  display: block;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-2 .right .more_btn i img {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  left: 50%;
}
.home-2 .right .more_btn a:hover i::before {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.home-2 .store ul li {
  position: relative;
  z-index: 1;
}
.home-2 .store ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  -webkit-animation: mymove 4s infinite;
  -moz-animation: mymove 4s infinite;
  animation: mymove 4s infinite;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  border: 1px solid #264e86;
  background: rgba(38, 78, 134, 0.2);
}
.home-2 .store p {
  line-height: 1.36363636;
}
.home-3 .nav ul {
  z-index: 1;
}
.home-3 .nav ul::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #d9d9d9;
}
.home-3 .nav li {
  color: #6c6c6c;
  position: relative;
  z-index: 1;
}
.home-3 .nav li::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  opacity: .7;
}
.home-3 .nav .slick-current.slick-active li {
  color: #004698;
}
.home-3 .nav .slick-current.slick-active li::before {
  content: "";
  background: #004698;
}
.home-3 .list .content h4 {
  line-height: 1.125;
}
.home-3 .list .content .more_btn {
  color: #606060;
}
.home-3 .list .content .more_btn i {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-3 .list .content .more_btn i::before {
  content: "";
  display: block;
  width: 4.5em;
  height: 4.5em;
  border: 1px solid currentcolor;
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-3 .list .content .more_btn i img {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  left: 50%;
}
.home-3 .list .content .more_btn a:hover i::before {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.home-4 .list .img {
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  -moz-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}
.home-4 .list .img:hover {
  -webkit-box-shadow: 0 3px 29px rgba(0, 0, 0, 0.09);
  box-shadow: 0 3px 29px rgba(0, 0, 0, 0.09);
}
.home-4 .slickDots ul li {
  border: 0;
  background-color: #c3c3c3;
}
.home-4 .slickDots ul li.slick-active {
  background-color: #0074c5;
}
.home-5 {
  color: #FFFFFF;
}
.home-5 .Tit span {
  display: block;
  font-size: .5327em;
}
.home-6 .item.img h3 {
  position: absolute;
  z-index: 2;
  width: 90%;
  left: 5%;
  top: 35%;
  line-height: 1;
  color: #1d619f;
}
.home-6 .item.img img.img1 {
  position: absolute;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}
.home-6 .item.img img.img2 {
  position: relative;
  z-index: 2;
  -webkit-animation: mymove 4s infinite;
  -moz-animation: mymove 4s infinite;
  animation: mymove 4s infinite;
}
.home-6 .item.img img.img3 {
  position: absolute;
  z-index: 3;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 43%;
}
.home-6 .mml-text h4 {
  color: #0074c5;
}
.home-6 .mml-text p {
  line-height: 1.5;
  min-height: 4.5em;
}
.home-7 {
  background-color: #eaeaea;
}
.home-7 .b-line {
  border-bottom: 1px solid #d9d9d9;
}
.home-7 .arrows {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 2em;
}
.home-7 .arrows span.arrow {
  width: 2em;
  height: 2em;
  line-height: 2em;
  cursor: pointer;
}
.home-7 .arrows span.line {
  height: 2em;
  border-left: 1px solid #d9d9d9;
}
.home-7 .list .box {
  min-height: 23em;
}
.home-7 .list .box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/home7-bg.jpg);
  z-index: -1;
  background-size: auto 100%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-7 .list .box .cate {
  font-size: 12px;
  background-color: #1a4172;
  color: #FFFFFF;
  line-height: 2.08333333;
  border-radius: 25px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-7 .list .box .name {
  font-weight: 500;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-7 .list .box .admin {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-7 .list .box .date {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-7 .list .box .more_btn {
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  border-radius: 50%;
  background-color: #d9d9d9;
  color: #FFFFFF;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-7 .list .box:hover::before {
  border-radius: inherit;
  opacity: 1;
}
.home-7 .list .box:hover .cate {
  background-color: #FFFFFF;
  color: #000000;
}
.home-7 .list .box:hover .name {
  color: #FFFFFF;
}
.home-7 .list .box:hover .admin {
  color: #FFFFFF;
}
.home-7 .list .box:hover .date {
  color: #FFFFFF;
}
.home-7 .list .box:hover .more_btn {
  background-color: #FFFFFF;
  color: var(--color);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
#footer {
  background-image: url(../images/foot-bg.jpg);
  background-size: auto 100%;
  color: #FFFFFF;
}
#footer .footer-top .footer-block h4 {
  font-weight: 500;
}
#footer .footer-top .footer-block .form input {
  border-radius: 6px;
  border: 0;
  height: 54px;
  width: 100%;
  padding: 0 20px;
  background-color: #FFFFFF;
  color: #000000;
}
#footer .footer-top .footer-block .form input[name="content"] {
  padding-right: 55px;
}
#footer .footer-top .footer-block .form button {
  width: 42px;
  height: 42px;
  background-color: #1a4172;
  color: #FFFFFF;
  border: 0;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 6px;
}
#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#footer .footer-bottom img.login {
  height: 16px;
}
#ewm {
  width: 140px;
  border: 4px solid #FFFFFF;
}
#goback {
  position: fixed;
  z-index: 99;
  right: 30px;
  bottom: 15%;
}
#goback > div {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  cursor: pointer;
}
@media (max-width: 1700px) {
  .home-2 .right .more_btn i img {
    width: 2.5em;
  }
  .home-3 .list .content .more_btn i::before {
    width: 3em;
    height: 3em;
  }
  .home-3 .list .content .more_btn i img {
    width: 3em;
  }
}
@media (max-width: 1450px) {
  .home-3 .slickBtn {
    margin-top: 20px;
  }

  .home-3 .slickBtn div.next {
    margin-left: 1em;
  }

  .home-3 .slickBtn.pos div {
    position: static;
    transform: translateY(0);
  }


  #footer .footer-top .footer-block .form input {
    height: 44px;
    padding: 0 10px;
  }
  #footer .footer-top .footer-block .form input[name="content"] {
    padding-right: 10px;
  }
  #footer .footer-top .footer-block .form button {
    width: 32px;
    height: 32px;
    position: static;
    background-color: #FFFFFF;
    color: var(--color);
    margin-top: 11px;
  }
  #ewm {
    width: 100px;
  }
}
@media (max-width: 1000px) {
  .home-2 .right .more_btn i::before {
    width: 2em;
    height: 2em;
  }
  .home-2 .right .more_btn i img {
    width: 2em;
  }
  .home-3 .list .content .more_btn i::before {
    width: 2em;
    height: 2em;
  }
  .home-3 .list .content .more_btn i img {
    width: 2em;
  }
  .home-3 .list .img {
    width: 50%;
  }
  .home-3 .list .content {
    width: 50%;
  }
  .home-4 .list .img {
    -webkit-box-shadow: 0 3px 29px rgba(0, 0, 0, 0.09);
    box-shadow: 0 3px 29px rgba(0, 0, 0, 0.09);
  }
  .home-7 .list .box::before {
    border-radius: inherit;
    opacity: 1;
  }
  .home-7 .list .box .cate {
    background-color: #FFFFFF;
    color: #000000;
  }
  .home-7 .list .box .name {
    color: #FFFFFF;
  }
  .home-7 .list .box .admin {
    color: #FFFFFF;
  }
  .home-7 .list .box .date {
    color: #FFFFFF;
  }
  .home-7 .list .box .more_btn {
    background-color: #FFFFFF;
    color: var(--color);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .hide-1000 {
    display: none;
  }
  #goback {
    display: none;
  }
}
@media (max-width: 700px) {
  .home-1 {
    height: 80vh;
  }
  .home-2 .right .more_btn i {
    margin-right: 20px;
  }
  .home-2 .store ul li {
    width: 50%;
    margin-bottom: 30px;
  }
  .home-3 .list .content .more_btn i {
    margin-right: 20px;
  }
}
@media (max-width: 500px) {
  .home-3 .list .img {
    width: 100%;
  }
  .home-3 .list .content {
    width: 100%;
    padding: 0;
  }
}



/* 内页样式 */
.inner-banner {
  height: 280px;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  padding-top: 150px;
}
.inner-banner h2 {
  font-size: 40px;
    color: #FFFFFF;
    font-family: var(--font);font-weight: bold;
    text-transform: uppercase;
}
.inner-banner .mbx {
  color: #FFFFFF;
}


/* 新闻 */
.news-page .news-1 h3 {
    font-size: 48px;
    line-height: 1.2;
    color: #0070bf;
    font-weight: 500;
    font-family: var(--font);font-weight: bold;
    text-transform: uppercase;
}
.news-page .news-1 h3 small {
    display: block;
    font-size: 18px;
    color: #484848;
    font-family: var(--font);
    line-height: 32px;
    font-weight: normal;
    text-transform: none;
}
.news-page .news-1 .nav-list {
    padding-top: 30px;
}
.news-page .news-1 .nav-list ul li {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.news-page .news-1 .nav-list ul li a {
   line-height: 40px;
    height: 50px;
    font-size: 22px;
    font-family: var(--font);font-weight: bold;
    color: #171717;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    display: block;
    padding: 5px 40px;
}
.news-page .news-1 .nav-list ul li:hover a,
.news-page .news-1 .nav-list ul li.active a {
    color: white;
    background: #1a4172;
}
.news-page .news-2 {
    padding: 100px 0 60px;
}
.news-page .news-2 .top .img {
    width: 30%;
    vertical-align: middle;
}
.news-page .news-2 .top .img a {
    display: block;
}
.news-page .news-2 .top .img a img {
    width: 100%;
}
.news-page .news-2 .top .text {
    width: 70%;
    vertical-align: middle;
    padding-left: 50px;
    max-width: 820px;
}
.news-page .news-2 .top .text h3 {
    font-size: 24px;
    color: black;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page .news-2 .top .text h3:hover {
    color: #0881ca;
}
.news-page .news-2 .top .text p {
    display: block;
    font-size: 16px;
    color: #3a3a3a;
    margin: 20px 0 30px;
}
.news-page .news-2 .top .text a.more {
    display: inline-block;
    font-size: 18px;
    color: #129dd7;
    border-bottom: 1px solid #129dd7;
    line-height: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page .news-2 .top .text a.more:hover {
    border-color: black;
}

.news-page .news-2 .bottom ul {
    margin: -13px;
}
.news-page .news-2 .bottom ul li {
    padding: 13px;
}
.news-page .news-2 .bottom ul li .box2 {
    display: block;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}
.news-page .news-2 .bottom ul li .box2 a.img-box {
    display: block;
}
.news-page .news-2 .bottom ul li .box2 a.img-box img {
    width: 100%;
}
.news-page .news-2 .bottom ul li .box2 a.img-box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    cursor: pointer;
    cursor: hand;
    border: 1px solid black;
    border-radius: 100%;
    width: 50px;
    height: 50px;
}
.news-page .news-2 .bottom ul li .box2 a.img-box svg path {
    fill: inherit !important;
}
.news-page .news-2 .bottom ul li .box2 .content {
    display: block;
    padding: 30px 20px;
}
.news-page .news-2 .bottom ul li .box2 .content h3 {
    display: block;
    font-size: 20px;
    color: #0065ad;
    line-height: 36px;
    font-family: var(--font);font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    /* max-height: 40px; */
    font-weight: 500;
    padding: 0;
    text-align: left;
    text-transform: none;
    height: 5.8em;
}
.news-page .news-2 .bottom ul li .box2 .content p {
    display: block;
    font-size: 18px;
    color: #1e2226;
    line-height: 28px;
    /* height: 80px; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin: 15px 0;
}
.news-page .news-2 .bottom ul li .box2 .content time {
    display: block;
    font-size: 14px;
    line-height: 28px;
    color: #979797;
}
.news-page .news-2 .bottom ul li .box2 .box3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d4272;
    color: white;
    padding: 20px 30px;
    text-align: center;
    -webkit-transform: translateY(101%);
    -moz-transform: translateY(101%);
    -ms-transform: translateY(101%);
    -o-transform: translateY(101%);
    transform: translateY(101%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page .news-2 .bottom ul li .box2 .box3 i {
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
    font-family: var(--font);
}
.news-page .news-2 .bottom ul li .box2 .box3 h4 {
    display: block;
    font-size: 20px;
    font-family: var(--font);
    line-height: 36px;
    margin: 20px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 12.8em;
}
.news-page .news-2 .bottom ul li .box2 .box3 p {
    display: block;
    color: white;
    font-size: 16px;
    line-height: 30px;
    height: 80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    max-height: 105px;
}
.news-page .news-2 .bottom ul li .box2 .box3 a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 50px;
    background: #1a4172;
    font-size: 14px;
    color: #ffffff;
    font-family: var(--font);font-weight: bold;
    text-transform: uppercase;
    margin: 30px auto;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.news-page .news-2 .bottom ul li .box2 .box3 a.more:hover {
    background: #222;
    color: white;
}
.news-page .news-2 .bottom ul li .box2 .box3 time {
    color: white;
    display: block;
    font-size: 14px;
    line-height: 28px;
}
.news-page .news-2 .bottom ul li .box2:hover .box3 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}



.newdet-page h1 {
    font-size: 30px;
    line-height: 50px;
    color: #2e2e2e;
    font-weight: 500;
    font-family: var(--font);font-weight: bold;
    /*text-transform: capitalize;*/
}
.newdet-page time {
    display: block;
    margin: 15px 0;
    font-size: 16px;
    line-height: 30px;
    color: black;
    opacity: .8;
}
.newdet-page .content {
    display: block;
    padding: 35px 0;
    border-top: 1px #ccc dashed;
    border-bottom: 1px #ccc dashed;
    font-size: 18px;
    color: #2c2c2c;
}
.newdet-page .content h2{
    font-size:25px;
    line-height: 1.5;
    font-weight:bold;
    color:#1a4172;
}
.newdet-page .content h3{
    font-size:20px;
    line-height: 1.6;
    font-weight:bold;
    color:#1a4172;
}
.newdet-page .content h4{
    font-size:20px;
    line-height: 1.7;
    font-weight:bold;
    color:#1a4172;
}
.newdet-page .content h5{
    font-size:18px;
    line-height: 1.8;
    font-weight:bold;
    color:#1a4172;
}
.newdet-page .share {
    padding-top: 20px;
    margin-bottom: 10px;
}
.newdet-page .share h4 {
    font-size: 14px;
    color: black;
}

.newdet-page .share ul li {
    width: auto;
    margin-left: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.newdet-page .share ul li:hover {
    color: #0881ca;
}






/* 联系我们 */
.p14-contact-info {
  padding: 80px 0 100px;
  background-color: #f6f7f9;
}
.p14-contact-info .mml-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
.p14-contact-info .title {
  width: 50%;
  padding: 0 110px 0 10px;
}
.p14-contact-info .detail {
  width: 50%;
}
.p14-contact-info .detail h3 {
  color: #0070bf;
  margin: 0 0 20px 10px;
}
.p14-contact-info .line {
    width: 100px;
    height: 2px;
     
    background-color: #0074c5;
    margin: 15px 0;
}

.p14-contact-info .item {
  min-height: 170px;
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 13px 15px 30px 0 rgba(169, 198, 228, 0.2);
  box-shadow: 13px 15px 30px 0 rgba(169, 198, 228, 0.2);
}
.p14-contact-info .item i {
  font-size: 30px;
  color: #00c0ff;
  margin-bottom: 10px;
}
.text.mod-1 h2 {
font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 40px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    
}
.contact.mod-1 h2 {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 66px;
    line-height: 48px;
    color: #0074c5;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    
}
.about.mod-1 h2 {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 48px;
    color: #0266ad;
    line-height: 1.2;
    padding-top: 45px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
  .text.mod-1 h2 txt {
  color: #0070bf; 
}
  .text.mod-1 h2 span {
  font-family: var(--font);
  font-style: normal;
  font-size: 30px;
  line-height: 50px;
  color: #051321;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.text.mod-1 h3 {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 40px;
    line-height: 1.2;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.contact.mod-1 h3 {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 30px;
    line-height: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.text.mod-1 p {
    color: #242424;
    letter-spacing: 0.2px;
    /*font-family: var(--font);*/
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.contact-page .contact-1 .box {
  position: relative;
  margin: 100px 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
  background: white;
  overflow: hidden;
  /*padding: 50px 40px;*/
}
.contact-page .contact-1 .box h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 40px;
  font-family: var(--font);font-weight: bold;
}

.contact-page .contact-1 .box h3 txt {
  font-size: 34px;
  color: #0070bf;
  margin-bottom: 40px;
  font-family: var(--font);font-weight: bold;
}

.contact-page .contact-1 .box .left {
      padding: 40px;
    width: 30%;
    background-color: #ffffff;
    height: 100%;
}
.contact-page .contact-1 .box .left .list ul li {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.contact-page .contact-1 .box .left .list ul li:last-child {
  border-bottom: none;
}
.contact-page .contact-1 .box .left .list ul li .box2 {
  padding-left: 60px;
  position: relative;
}
.contact-page .contact-1 .box .left .list ul li .box2 i {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 32px;
}
.contact-page .contact-1 .box .left .list ul li .box2 h5 {
  font-size: 24px;
    color: #0074c5;
    font-family: var(--font);font-weight: bold;
    margin-bottom: 10px;
}
.contact-page .contact-1 .box .left .list ul li .box2 p {
    color: #383838;
    font-weight: 500;
    font-family: var(--font);
}
.contact-page .contact-1 .box .right {
  padding: 40px;
    width: 70%;
    position: relative;
    background-color: #fbfbfb;
}
.contact-page .contact-1 .box .right::after {
  content: '';
  width: 1px;
  height: 200%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #eee;
}
.contact-page .contact-1 .box .right .form ul {
  margin: -15px;
}
.contact-page .contact-1 .box .right .form ul li {
  padding: 15px;
  position: relative;
}
.contact-page .contact-1 .box .right .form ul li input,
.contact-page .contact-1 .box .right .form ul li textarea {
  padding: 15px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    line-height: 30px;
    color: red;
    font-family: var(--font);
    border-bottom: 1px solid #eee;
    width: 100%;
    -webkit-transition: 0.5s border-bottom-color;
    -moz-transition: 0.5s border-bottom-color;
    transition: 0.5s border-bottom-color;
    padding-right: 15px;
}
.contact-page .contact-1 .box .right .form ul li input:focus,
.contact-page .contact-1 .box .right .form ul li textarea:focus {
  border-color: #1a4172;
}
.contact-page .contact-1 .box .right .form ul li textarea {
  height: 160px;
  resize: vertical;
}
.contact-page .contact-1 .box .right .form ul li input[type="submit"] {
  border-bottom: none;
    width: 260px;
    font-size: 24px;
    line-height: 44px;
    background: #1a4172;
    color: white;
    font-family: var(--font);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact-page .contact-1 .box .right .form ul li input[type="submit"]:hover {
  background: #111;
}
.contact-page .contact-1 .box .right .form ul li i {
  position: absolute;
  right: 15px;
  bottom: 33px;
  color: #666;
}
.contact-page .contact-1 .box .right .form ul li.wid-100 {
  width: 100%;
}



/* 关于我们 */
.about-page .about-1 {
  padding: 70px 0;
}
.about-page .about-1 .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 100%;
  cursor: pointer;
}
.about-page .about-1 .play:before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.72);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.about-page .about-1 h2 {
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #1a4172;
  font-family: var(--font);font-weight: bold;
}
.about-page .about-1 h4 {
  margin-bottom: 20px;
  font-size: 46px;
  line-height: 1.2;
  font-family: var(--font);font-weight: bold;
  color: #0070bf;
}
.about-page .about-1 .box {
  margin: -40px;
}
.about-page .about-1 .left {
  width: 50%;
  padding: 40px;
  vertical-align: middle;
}
.about-page .about-1 .right {
  width: 50%;
  padding: 40px;
  vertical-align: middle;
}
.about-page .about-3 {
  padding: 70px 0 80px;
    background-color: #f5f7f9;
    /*background-image: linear-gradient(180deg, #275a9b 0%, #16498a 100%);*/
}
.about-page .about-3 h3 {
  font-size: 40px;
  line-height: 1.2;
    color: #232323;
    font-family: var(--font);font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 10px;
}
.about-page .about-3 .text p {
      display: block;
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 15px;
}
.about-page .about-3 .box {
  padding-top: 50px;
}
.about-page .about-3 .box ul li .box2 {
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 96px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 96px rgba(0, 0, 0, 0.08);
  background-size: cover;
  background-position: center center;
}
.about-page .about-3 .box ul li .box2::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .box ul li .box2 i {
  display: block;
  font-size: 50px;
  line-height: 50px;
  height: 50px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: #0074c5;
}
.about-page .about-3 .box ul li .box2 h4 {
    font-family: var(--font);font-weight: bold;
    text-transform: capitalize;
    margin: 20px 0 10px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page .about-3 .box ul li .box2 p {
  color: rgba(0, 0, 0, 0.8);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  
}
.p11-value .title .text h2.tit {
    margin-bottom: 25px;
}
.about-page .about-3 .box ul li .box2:hover::after {
  background-color: rgb(4 122 205);
}
.about-page .about-3 .box ul li .box2:hover i,
.about-page .about-3 .box ul li .box2:hover h4,
.about-page .about-3 .box ul li .box2:hover p {
  color: white;
}
.about-page .about-4 {
  padding: 90px 0 150px;
  background: url("../images/about-factory-bg.jpg") center top no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.about-page .about-4 h3 {
  font-size: 40px;
  line-height: 1.2;
  color: #333;
  font-family: var(--font);font-weight: bold;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 10px;
}
.about-page .about-4 .text p {
  display: block;
  font-size: 16px;
  color: #6b6b84;
  line-height: 30px;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding-top: 15px;
}
.about-page .about-4::after {
  content: '';
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: white;
  z-index: -1;
}
.about-page .about-4 h3 {
  color: white;
}
.about-page .about-4 .line {
  background: white;
}
.about-page .about-4 .text p {
  color: white;
}
.about-page .about-4 .box {
  padding-top: 50px;
  margin-bottom: -80px;
}
.about-page .about-4 .box ul {
  margin: 0 -15px;
}
.about-page .about-4 .box ul li {
  padding: 0 15px 80px;
}
.about-page .about-4 .box ul li .box2 {
  display: block;
  position: relative;
  z-index: 1;
}
.about-page .about-4 .box ul li .box2 .img-box {
  display: block;
}
.about-page .about-4 .box ul li .box2 .img-box img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .box ul li .box2 .text {
  position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    color: white;
    background: #0266ad;
    text-align: left;
    z-index: -1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page .about-4 .box ul li .box2 .text h4 {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  font-size: 24px;
  line-height: 1;
  padding: 0 15px;
  font-family: var(--font);font-weight: bold;
}
.about-page .about-4 .box ul li .box2 .text h4 small {
  display: block;
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}
.about-page .about-4 .box ul li .box2:hover .img-box img {
  left: -10%;
}
.about-page .about-4 .box ul li .box2:hover .text {
  top: 80px;
  width: 90%;
}
.about-page .p8-s02 {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}
.about-page .p8-s02:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5f7f9;
  position: absolute;
  top: 180px;
  left: 0px;
  z-index: -1;
}
.about-page .p8-s02 h2 {
    font-size: 36px;
    line-height: 1.4;
    color: #363636;
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(37, 33, 24, 0.2);
}
.about-page .p8-s02 .num-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .p8-s02 li {
  width: 20%;
  padding: 30px 10px 20px;
  text-align: center;
  -webkit-box-shadow: 0px 30px 60px 0px rgba(118, 128, 147, 0.1);
  box-shadow: 0px 30px 60px 0px rgba(118, 128, 147, 0.1);
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 30px;
}
.about-page .p8-s02 b {
  color: #0266ad;
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  display: block;
}
.about-page .p8-s02 span {
    color: #363636;
    font-style: normal;
    display: block;
    margin-top: 10px;
}


.p11-value .title {
  position: relative;
}
.p11-value .title .word {
  position: absolute;
    top: -98px;
    /* left: 10px; */
    z-index: 2;
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 110px;
    line-height: 270px;
    color: #f7f7f7;
}
.p11-value .title .text {
  position: relative;
  z-index: 5;
}
.p11-value .title .text h2 {
  margin-bottom: 50px;
}

.p11-value .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.p11-value .item:hover .icon{
  background: #0074c5;
}
.p11-value .item:not(:last-child) {
  margin-bottom: 30px;
}
.p11-value .item h3 {
  color: #0074c5;
    margin-bottom: 8px;
    font-family: var(--font);font-weight: bold;
    font-size: 22px;
    line-height: 40px;
}
.p11-value .icon {
  width: 100%;
  max-width: 180px;
  min-height: 120px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color);
  font-size: 24px;
  line-height: 44px;
  font-family: var(--font);font-weight: bold;
  transition: .3s ease;
  overflow: hidden;
}






.p11-team .title .desc {
  /*background-color: #f6f7f9;*/
  margin-top: 20px;
  /*padding: 60px 30px;*/
}
.p11-team .title h3 {
  color: #292d31;
  margin-bottom: 20px;
}

.p11-team .item {
  padding: 10px 15px;
    border: #d2e7f5 solid 3px;
}
.p11-team .item p {
  color: #051321;
  margin-top: 10px;
}
/*.p11-team .img {
  max-width: 220px;
  max-height: 280px;
  margin: auto;
  overflow: hidden;
}*/
.p11-comment {
  max-width: 1920px;
  margin: auto;
}
.p11-comment .title h2 {
  font-size: 40px;
  font-family: var(--font);font-weight: bold;
  margin-bottom: 50px;
}
.p11-comment .logo-slider {
  max-height: 140px;
  margin: auto;
  overflow: hidden;
}
/*.p11-comment .logo-slider .item {
  display: inline-block;
  max-width: 250px;
  min-height: 140px;
  margin: 0 30px;
  overflow: hidden;
}
.p11-comment .logo-slider .item img {
  height: 100%;
}*/
@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}


/* 质量 */
.quality-sec .adv-sec {
  padding: 80px 0 20px;
}
.quality-sec .adv-sec h2 {
  font-family: var(--font);
  font-style: normal;
  color: #000;
  font-size: 40px;
  margin-top: 15px;
}
.quality-sec .adv-sec ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.quality-sec .adv-sec ul li {
  width: 48%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 380px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}
.quality-sec .adv-sec ul li .img-wrap {
  width: 23%;
  max-width: 80px;
}
.quality-sec .adv-sec ul li .img-wrap img {
  max-width: 100%;
  display: block;
}
.quality-sec .adv-sec ul li .text-wrap {
  width: 73%;
  max-width: 380px;
}
.quality-sec .adv-sec ul li .text-wrap h4 {
  font-family: var(--font);
  font-style: normal;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}
.quality-sec .adv-sec ul li .text-wrap p {
  font-style: normal;
  font-size: 14px;
  color: #888;
}
.p11-page-link {
  padding: 120px 0;
}
.p11-page-link h2 {
  font-family: var(--font);
  font-style: normal;
  color: #000;
  font-size: 40px;
  margin-bottom: 35px;
  text-align: center;
}
.p11-page-link .text h3 {
  font-family: var(--font);
  font-style: normal;
  font-size: 22px;
  line-height: 24px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.p11-page-link .text p {
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #9ba4ad;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.p11-page-link .mml-row {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
.p11-page-link .item {
  max-width: 380px;
  width: 32.5%;
  margin: 0 10px;
  padding: 60px 35px 60px 30px;
  background-color: #fff;
  -webkit-box-shadow: 13px 15px 30px 0 rgba(169, 198, 228, 0.2);
  box-shadow: 13px 15px 30px 0 rgba(169, 198, 228, 0.2);
}
.p11-page-link .item h3 {
  color: #292d31;
  margin: 10px 0 20px;
  min-height: 48px;
}
.p11-page-link .icon {
  max-width: 60px;
  max-height: 60px;
  overflow: hidden;
}
.p11-page-link .sec-link {
  margin-top: 20px;
}
.sec-link a {
  display: inline-block;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #00c0ff!important;
  text-decoration: none!important;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}


/* 生产线 */
.production-sec .pur-sec {
  padding: 60px 0;
}
.production-sec .pur-sec .mml-row {
  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;
}
.production-sec .pur-sec .container .text-wrap {
  width: 48%;
    max-width: 530px;
    padding-top: 90px;
}

.production-sec .pur-sec .container .img-wrap {
  width: 60%;
  max-width: 700px;
}
.production-sec .fig-sec {
  padding-bottom: 55px;
}
.production-sec .fig-sec .mml-row {
  display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-content: center;
}
.production-sec .fig-sec h2 {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 48px;
    line-height: 1.2;
    color: #0266ad;
    margin-bottom: 6px;
    width: 40%;
}
.production-sec .fig-sec ul {
  width: 60%;
  max-width: 700px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 45px 0px 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.production-sec .fig-sec ul li {
  /*width: 32%;*/
  max-width: 193px;
  text-align: center;
}
.production-sec .fig-sec ul li .nums {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 40px;
    line-height: 1.2;
    color: #1a4172;
}
.production-sec .fig-sec ul li p {
      font-family: var(--font);
    font-size: 18px;
    line-height: 32px;
    color: #282828;
    margin-bottom: 0px;
    margin-top: 10px;
}
.prints-sec {
  padding-bottom: 80px;
}
.prints-sec .mml-row {
  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;
}
.prints-sec .img-wrap {
  width: 46%;
  max-width: 500px;
}
.prints-sec .text-wrap {
  width: 70%;
    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;
    max-width: 700px;
}

.prints-sec .text-wrap .text h2{
  margin-bottom: 25px;
}
.prints-sec .text-wrap .text ul li {
  padding: 25px 0px;
  font-style: normal;
  font-size: 14px;
  color: #777;
  color: #888;
  border-bottom: 1px solid #d2d2d2;
}
.prints-sec .text-wrap .text ul li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}
.prints-sec .text-wrap .text ul li h4 {
  font-family: var(--font);
  font-style: normal;
  font-size: 24px;
  line-height: 44px;
  color: #303030;
  margin-bottom: 10px;
}
.prints-sec .text-wrap .text ul li p {
  margin-bottom: 0px;
}
.proto-sec h2 {
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  margin: 40px;
  text-align: center;
}
.proto-sec ul {
  font-size: 0;
  margin: -15px;
}
.proto-sec ul li {
  display: inline-block;
  width: 25%;
  padding: 15px;
}
.proto-sec ul li img {
  display: block;
  max-width: 100%;
}
.proto-sec h4 {
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  font-size: 40px;
  color: #242424;
  text-align: center;
}
.proto-sec p {
  font-style: normal;
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 0px;
}

.p11-milestone .list ul{
  margin: -15px;
}
.p11-milestone .list ul li{
  padding: 15px;
}

.p11-milestone {
      padding: 65px 0 65px;
  background-color: whitesmoke;
}
.p11-milestone .text h2 {
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #242424;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.p11-milestone .title {
  margin-bottom: 40px;
}
.p11-milestone .galaxy {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.p11-milestone .track {
  position: absolute;
  left: 0;
  top: 50%;
  margin-right: 200px;
  height: 5px;
  width: 1600px;
  -webkit-transform: translate3d(0, -2.5px, 0);
  -moz-transform: translate3d(0, -2.5px, 0);
  transform: translate3d(0, -2.5px, 0);
  will-change: transform;
}
.p11-milestone .comet,
.p11-milestone .historys {
  position: absolute;
  left: 0;
  top: 0;
  height: 5px;
  will-change: transform;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.p11-milestone .comet {
  position: relative;
  width: 0;
  border-radius: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(#307ee9), color-stop(50%, #09b6fb), to(#6ed9ff));
  background-image: -webkit-linear-gradient(left, #307ee9 0%, #09b6fb 50%, #6ed9ff 100%);
  background-image: -moz-linear-gradient(left, #307ee9 0%, #09b6fb 50%, #6ed9ff 100%);
  background-image: linear-gradient(90deg, #307ee9 0%, #09b6fb 50%, #6ed9ff 100%);
}
.p11-milestone .comet::after {
  content: '\20';
  position: absolute;
  z-index: 3;
  right: -6px;
  top: -3px;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  height: 12px;
  width: 12px;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0 0 80px #fff;
  box-shadow: 0 0 80px #fff;
}
/*.p11-milestone .comet::before {
  content: '\20';
  position: absolute;
  z-index: 2;
  right: 0;
  top: 50%;
  height: 12px;
  width: 12px;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 90px 50px rgba(11, 101, 255, 0.8);
  box-shadow: 0 0 90px 50px rgba(11, 101, 255, 0.8);
  -webkit-animation: shinning 2s linear infinite;
  -moz-animation: shinning 2s linear infinite;
  animation: shinning 2s linear infinite;
}*/
.p11-milestone .historys {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 260px;
}
.p11-milestone .historys time,
.p11-milestone .historys .text {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.p11-milestone .historys time {
  font-family: var(--font);
  font-style: normal;
  color: #242424;
  font-size: 24px;
  line-height: 24px;
}
.p11-milestone .historys .text p {
  font-style: normal;
  color: #242424;
  font-size: 16px;
  line-height: 24px;
}
.p11-milestone .historys .text .pic {
  max-width: 400px;
  max-height: 250px;
  margin: 0 auto 15px;
  overflow: hidden;
}
.p11-milestone .historys > li {
  position: relative;
  width: 400px;
  opacity: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.p11-milestone .historys > li:nth-child(even) time {
  bottom: 450%;
}
.p11-milestone .historys > li:nth-child(even) time::before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 10px;
  content: '';
  display: block;
  background-color: #fff;
  margin-left: -1px;
}
.p11-milestone .historys > li:nth-child(even) .text {
  top: 1000%;
}
.p11-milestone .historys > li:nth-child(odd) time {
  top: 450%;
}
.p11-milestone .historys > li:nth-child(odd) time::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 2px;
  height: 10px;
  content: '';
  display: block;
  background-color: #fff;
  margin-left: -1px;
}
.p11-milestone .historys > li:nth-child(odd) .text {
  bottom: 1000%;
}
.p11-milestone .historys > li.mml-show {
  opacity: 1;
}
.p11-milestone .historys > li.mml-show:nth-child(even) .text {
  -webkit-transform: translate(0, 12px);
  -moz-transform: translate(0, 12px);
  -ms-transform: translate(0, 12px);
  transform: translate(0, 12px);
}
.p11-milestone .historys > li.mml-show:nth-child(odd) .text {
  -webkit-transform: translate(0, -12px);
  -moz-transform: translate(0, -12px);
  -ms-transform: translate(0, -12px);
  transform: translate(0, -12px);
}
.p11-milestone .historys > li::before {
  content: '\20';
  position: absolute;
  left: 50%;
  top: 0;
  margin: -3px 0 0 -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0266ad;
}
@-webkit-keyframes shinning {
  20% {
    -webkit-box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.7);
    box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.5);
    box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.5);
  }
  60% {
    -webkit-box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.6);
    box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.6);
  }
  80% {
    -webkit-box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.8);
    box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.8);
  }
}
@-moz-keyframes shinning {
  20% {
    -webkit-box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.7);
    box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.5);
    box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.5);
  }
  60% {
    -webkit-box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.6);
    box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.6);
  }
  80% {
    -webkit-box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.8);
    box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.8);
  }
}
@keyframes shinning {
  20% {
    -webkit-box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.7);
    box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.5);
    box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.5);
  }
  60% {
    -webkit-box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.6);
    box-shadow: 0 0 80px 50px rgba(48, 139, 233, 0.6);
  }
  80% {
    -webkit-box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.8);
    box-shadow: 0 0 90px 50px rgba(48, 139, 233, 0.8);
  }
}
#cta {
  position: relative;
  /*padding-top: 80px;*/
}
#cta:before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  content: '';
  display: block;
  background-color: #051026;
}
#cta .cta-content {
  width: 100%;
  /*max-width: 1760px;*/
  margin: 0 auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#308be9), to(#00c0ff));
  background-image: -webkit-linear-gradient(left, #308be9 0%, #00c0ff 100%);
  background-image: -moz-linear-gradient(left, #308be9 0%, #00c0ff 100%);
  background-image: linear-gradient(90deg, #0059ae 0%, #275a9b 100%);
}
#cta .content-wrap {
  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;
  padding: 65px 0;
}
#cta h2 {
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  margin: 10px 0;
}
#cta p{
  color: #fff;
}
#cta .mml-text{
  max-width: 650px;
}
#cta .btn {
  margin: 10px 0;
}
#cta .btn a {
  position: relative;
    display: inline-block;
    /* font-style: normal; */
    font-family: var(--font);font-weight: bold;
    line-height: 24px;
    font-size: 24px;
    text-align: center;
    padding: 16px 29px;
    border-radius: 5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    border: 2px solid transparent;
}
#cta .btn a.white {
  background-color: #fff;
  color: #1a4172;;
}
#cta .btn a.white:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  #cta h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 700px) {
  #cta h2 {
    font-size: 30px;
    line-height: 1.5;
    max-width: unset;
  }
  #cta .content-wrap {
    padding: 50px 0;
  }
}




.p04-custom-parts {
  padding: 60px 0 100px;
  background-color: #f6f7f9;
}
.p04-custom-parts .text h3 {
  margin: 25px 0 5px;
}
.p04-custom-parts .mml-row {
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p04-custom-parts .item {
  /*max-width: 340px;*/
  background-color: #fff;
  -webkit-box-shadow: 13px 15px 30px 0 rgba(169, 198, 228, 0.2);
  box-shadow: 13px 15px 30px 0 rgba(169, 198, 228, 0.2);
  margin: 0 10px 20px;
  padding: 35px 40px 35px;
  width: calc(33.33% - 20px);
}
.p04-custom-parts .item h3 {
    color: #0070bf;
    font-size: 24px;
    line-height: 44px;
    margin: 25px 0 5px;
    font-family: var(--font);font-weight: bold;
}
/*.p04-custom-parts .item:nth-child(4) {
  margin-left: 150px;
}*/
.p04-custom-parts .icon {
  max-width: 60px;
  overflow: hidden;
}
.p04-custom-parts .title {
  margin: 0 10px 20px;
  width: calc(33.33% - 20px);
}
.p04-custom-parts .title h2 {
  margin-bottom: 15px;
}
.p04-custom-parts .line {
  position: absolute;
  left: 10px;
  bottom: 20px;
  width: 1px;
  height: 360px;
  /*background-color: #1a4172;*/
}
.p04-custom-parts .line::before {
  position: absolute;
  top: 0;
  left: -2px;
  content: '';
  display: block;
  width: 5px;
  height: 80px;
  /*background-color: #1a4172;*/
}
.p04-formulation {
  padding: 120px 0 110px;
}
.p04-formulation .title p {
  margin: 20px 0 55px;
}
.p04-more-than {
  padding: 120px 0;
  background-color: #f6f7f9;
}
.p04-more-than .title p {
  max-width: 920px;
  margin: 20px auto 55px;
}
.p04-more-than .item {
  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;
}
.p04-more-than .item:not(:last-child) {
  margin-bottom: 30px;
}
/*.p04-more-than .item:nth-child(odd) .img {
  margin-left: 80px;
}*/
.p04-more-than .item:nth-child(even) .img {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  /*margin-right: 80px;*/
}
.p04-more-than .item:nth-child(even) .text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.p04-more-than .item .text {
  max-width: 680px;
  width: 48%;
}
.p04-more-than .item .text h3 {
  margin-bottom: 20px;
  color: #051321;
}
.p04-more-than .item .text ul {
  margin-top: 20px;
}
.p04-more-than .item .text ul li {
  position: relative;
  font-style: normal;
  font-size: 18px;
  line-height: 32px;
  color: #242424;
  padding-left: 28px;
}
.p04-more-than .item .text ul li:not(:last-child) {
  margin-bottom: 10px;
}
.p04-more-than .item .text ul i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #00c0ff;
  margin-right: 10px;
}
.p04-more-than .img {
  max-width: 650px;
  width: 45%;
  max-height: 380px;
  overflow: hidden;
}
.end-sec {
  width: 100%;
  margin: 0 auto;
  max-width: 1740px;
  padding: 80px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*.end-sec .box {
  max-width: 1200px;
  margin: auto;
}*/
.end-sec .box > h2 {
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 35px;
}
.end-sec .tab-wrap {
  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;
}
.end-sec .tab-wrap .tab-btn {
  width: 30%;
  max-width: 350px;
}
.end-sec .tab-wrap .tab-btn ul {
  background-color: #fff;
  border-right: solid 1px #f3f4f6;
}
.end-sec .tab-wrap .tab-btn ul li {
      padding: 12px 45px 12px 40px;
    border-bottom: 1px solid #f9f9f9;
    /* font-style: normal; */
    font-size: 18px;
    line-height: 32px;
    font-family: var(--font);
    color: #5a5a5a;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
}
.end-sec .tab-wrap .tab-btn ul li.active {
  background-color: #0266ad;
    color: #fff;

}
.end-sec .tab-wrap .tab-btn ul li:before {
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #949ca2;
  border-radius: 5px;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.end-sec .tab-wrap .tab-btn ul li i {
  position: absolute;
  right: 35px;
  color: #2a84e9;
  font-size: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.end-sec .tab-wrap .tab-sec {
  width: 74.5%;
  background-color: #fff;
}
.end-sec .tab-wrap .tab-sec section {
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 50px 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.end-sec .tab-wrap .tab-sec section.current {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.end-sec .tab-wrap .tab-sec section .img-wrap {
  width: 48%;
  max-width: 400px;
}
.end-sec .tab-wrap .tab-sec section .text-wrap {
  width: 48%;
  /*max-width: 320px;*/
  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;
}
.end-sec .tab-wrap .tab-sec section .text-wrap .text h2 {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    margin-bottom: -2px;
    color: #0266ad;
}
.end-sec .tab-wrap .tab-sec section .text-wrap .text h4 {
  font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 40px;
    line-height: 1.2;
    color: #242424;
    margin-bottom: 10px;
}
.end-sec .tab-wrap .tab-sec section .text-wrap .text p {
    font-style: normal;
    font-size: 18px;
    line-height: 32px;
    color: #242424;
}


/* 产品中心 */
.products-page .top {
  display: block;
      padding: 50px 30px 5px;
  background: white;
}
.products-page .top h5 {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: black;
  text-transform: capitalize;
  margin-right: 15px;
}
.products-page .top .cat {
  display: inline-block;
  vertical-align: middle;
}
.products-page .top .cat .cat-list {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: left;
}
.products-page .top .cat .cat-list span {
  line-height: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 4px;
  width: 520px;
  font-size: 18px;
  color: #7c7c7c;
  display: block;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  cursor: hand;
  overflow: hidden;
}
.products-page .top .cat .cat-list span i {
  float: right;
  font-size: 20px;
  margin-top: 10px;
}
.products-page .top .cat .cat-list ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 15px;
  z-index: 1;
  display: none;
  max-height: 200px;
  overflow: auto;
}
.products-page .top .cat .cat-list ul li {
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.products-page .top .cat .cat-list ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.products-page .top .cat .cat-list ul li:hover {
  color: #2f80ee;
}
.products-page .top .cat div.cat-list:hover ul,
.products-page .top .cat div.cat-list:active ul {
  display: block;
}
.products-page .top .search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.products-page .top .search form {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.products-page .top .search form input {
  line-height: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 4px;
  width: 300px;
  font-size: 18px;
  color: black;
  display: block;
  border: 1px solid #e5e5e5;
  padding-right: 50px;
  background: transparent;
}
.products-page .top .search form input::-webkit-input-placeholder {
  color: #7c7c7c;
}
.products-page .top .search form input:-moz-placeholder {
  color: #7c7c7c;
}
.products-page .top .search form input::-moz-placeholder {
  color: #7c7c7c;
}
.products-page .top .search form input:-ms-input-placeholder {
  color: #7c7c7c;
}
.products-page .top .search form input[type="submit"] {
  width: 40px;
  background: url("../images/icon-search2.png") center center no-repeat;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
}


.products-page h6{
  font-size: 24px;
    font-family: var(--font);
    text-align: center;
    line-height: 44px;
    color: #0070bf;
    padding: 0px 0 20px;
}

.products-page h2 {
  font-size: 44px;
  color: #252118;
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.2;
}
.products-page .p3-s01 {
  padding: 80px 0 60px;
}
.products-page .p3-s01 .different {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5%;
}
.products-page .p3-s01 li {
  width: 20%;
  max-width: 380px;
  margin-right: 5%;
  margin-top: 40px;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  border-radius: 6px;
  overflow: hidden;
  padding-bottom: 40px;
}
.products-page .p3-s01 li img{
  display: block;
  margin: auto;
}
.products-page .p3-s01 h4 {
  font-size: 18px;
    color: #303030;
    font-family: var(--font);
    font-style: normal;
    padding: 0px 10px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 5rem;
}
/*.products-page .p3-s01 p {
  padding: 0px 10px;
  max-width: 320px;
  line-height: 1.5;
  margin: 0 auto;
  font-size: 32px;
  color: #383838;  
  font-family: var(--font);font-weight: bold;
}*/
.products-page .p3-s01 .download-btn {
  text-align: center;
  margin-top: 60px;
}
.products-page .p3-s01 .download-btn a.catalogue {
      display: inline-block;
    padding: 16px 40px;
    background-color: #0266ad;
    border-radius: 50px;
    font-size: 20px;
    line-height: 36px;
    color: #fff;
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    border: 1px solid transparent;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
}
.products-page .p3-s01 .download-btn a.catalogue:hover {
  background-color: #fff;
  border-color: #3d6cbf;
  color: #3d6cbf;
}
.products-page .p3-s02 {
  position: relative;
  overflow: hidden;
  padding: 0 0 100px;
}
.products-page .p3-s02 .tab-btn {
  background-color: #fff;
  -webkit-box-shadow: 17px 25px 60px 0px rgba(118, 128, 147, 0.15);
  box-shadow: 17px 25px 60px 0px rgba(118, 128, 147, 0.15);
  margin-top: 60px;
}
.products-page .p3-s02 .tab-btn ul {
  padding: 15px 0px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.products-page .p3-s02 .tab-btn ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0px;
  font-size: 22px;
  line-height: 40px;
  color: #252118;
  font-family: var(--font);
  font-style: normal;
  cursor: pointer;
  border-right: 1px solid rgba(61, 108, 91, 0.1);
  position: relative;
}
.products-page .p3-s02 .tab-btn ul li.active,
.products-page .p3-s02 .tab-btn ul li:hover {
  color: #3d6cbf;
}
.products-page .p3-s02 .tab-btn ul li.active::after,
.products-page .p3-s02 .tab-btn ul li:hover::after {
  opacity: 1;
}
.products-page .p3-s02 .tab-btn ul li::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: #0266ad;
  position: absolute;
  bottom: -10px;
  left: 0px;
  opacity: 0;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.products-page .p3-s02 .col {
  margin-top: 60px;
  display: none;
}
.products-page .p3-s02 .col.current {
  display: block;
}
.products-page .p3-s02 .col ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5%;
}
.products-page .p3-s02 .col li {
  width: 20%;
  margin-right: 5%;
  margin-bottom: 50px;
  text-align: center;
}
.products-page .p3-s02 .col li img{
  width: 80%;
  display: block;
  margin: auto;
}
.products-page .p3-s02 h3 {
  font-size: 26px;
  color: #0266ad;
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    text-align: center;
    margin-bottom: 30px;
}
.products-page .p3-s02 h4 {
  font-size: 18px;
    color: #303030;
    font-family: var(--font);
    font-style: normal;
    padding: 0px 10px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 5rem;
}
.products-page .p3-s02 span {
  display: inline-block;
    max-width: 195px;
    line-height: 1.4;
    font-size: 32px;
    color: #383838;
    /* font-style: normal; */
    font-family: var(--font);font-weight: bold;
}


/* 产品详情 */
.product-details .p4-s01 {
  padding: 60px 0!important;
}
.product-details .p4-s01 .mml-row {
     display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.product-details .p4-s01 .img-wrap {
  width: 45%;
  max-width: 600px;
}

.product-details .p4-s01 .img-wrap img {
  border: 1px solid #eee;
  border-radius: 8px;
}

.product-details .p4-s01 .text-wrap {
  width: 52%;
  margin: 0 auto;
  margin-right: 0px;
}
.product-details .p4-s01 .slider-nav {
  margin: 0px -10px;
  margin-top: 20px;
}
.product-details .p4-s01 .slider-nav li {
  padding: 0px 10px;
}
.product-details .p4-s01 .slider-nav button {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: none;
  padding: 0px;
  width: 60px;
  height: 60px;
  border-radius: 0px;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  background-color: #e3e6e9;
  margin: 0px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
}
.product-details .p4-s01 .slider-nav button.slick-prev {
  left: -60px;
}
.product-details .p4-s01 .slider-nav button.slick-next {
  right: -56px;
}
.product-details .p4-s01 .slider-nav button i {
  color: #fff;
  font-size: 12px;
  opacity: .8;
}
.product-details .p4-s01 .slider-nav button:hover {
  background-color: #3d6cbf;
  border-color: #3d6cbf;
}
.product-details .p4-s01 .slider-nav button:hover i {
  color: #fff;
  z-index: 222;
}
.product-details .p4-s01 .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  outline: none;
  cursor: pointer;
  text-align: center;
}
.product-details .p4-s01 .product-name {
    font-size: 30px;
    color: #252118;
    line-height: 1.4;
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    margin-bottom: 10px;
}
.product-details .p4-s01 p {
  font-size: 16px;
  line-height: 1.8;
    /*color: #1a4172; */
    /* font-style: normal; */
    /*font-family: var(--font);font-weight: bold;*/
}

.product-details .p4-s01 .contact span{
 display: inline-block;
    line-height: 50px;
    color: #3c3c3c;
    background: #e5e5e5;
    padding: 0 20px;
    border-radius: 7px;
}

.product-details .p4-s01 .btn a{
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  background: #0266ad;
  font-family: var(--font);font-weight: bold;
  padding: 10px 60px;
  border-radius: 7px;
}

.product-details .p4-s01 table {
  margin-top: 40px;
  border-radius: 0px;
  margin-bottom: 0px;
}
.product-details .p4-s02 {
  padding-bottom: 20px!important;
}
.product-details .p4-s02 .detail-tab {
  background-color: #fff;
  -webkit-box-shadow: 17px 25px 60px 0px rgba(118, 128, 147, 0.15);
  box-shadow: 17px 25px 60px 0px rgba(118, 128, 147, 0.15);
  margin-top: 60px;
}
.product-details .p4-s02 .detail-tab ul {
  padding: 15px 0px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.product-details .p4-s02 .detail-tab li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0px;
  font-size: 20px;
  line-height: 36px;
  color: #252118;
  font-family: var(--font);
  font-style: normal;
  cursor: pointer;
  border-right: 1px solid rgba(61, 108, 91, 0.1);
  position: relative;
}
.product-details .p4-s02 .detail-tab li.active,
.product-details .p4-s02 .detail-tab li:hover {
  color: #3d6cbf;
}
.product-details .p4-s02 .detail-tab li.active::after,
.product-details .p4-s02 .detail-tab li:hover::after {
  opacity: 1;
}
.product-details .p4-s02 .detail-tab li::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: #3d6cbf;
  position: absolute;
  bottom: -10px;
  left: 0px;
  opacity: 0;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.product-details .p4-s02 .detail-section .col {
  display: none;
  overflow: hidden;
}
.product-details .p4-s02 .detail-section .col.current {
  display: block;
}
.product-details .p4-s02 .detail-section .one ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  margin-right: -2%;
}
.product-details .p4-s02 .detail-section .one li {
  width: 23%;
  margin-right: 2%;
  text-align: center;
}
.product-details .p4-s02 .detail-section h4 {
  margin-bottom: 0px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 36px;
  color: #252118;
  font-family: var(--font);
  font-style: normal;
}
.product-details .p4-s02 .detail-section .text ul {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}
.product-details .p4-s02 .detail-section .text li {
  width: 33.3333%;
  max-width: unset;
  border-top: 1px solid rgba(196, 211, 236, 0.3);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  padding: 30px 0px;
  padding-left: 30px;
  padding-right: 20px;
  text-align: left;
  font-size: 14px;
  color: #777;
  font-style: normal;
  position: relative;
}
.product-details .p4-s02 .detail-section .text li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #3d6cbf;
  position: absolute;
  border: 5px solid rgba(61, 108, 191, 0.2);
  background-clip: padding-box;
  left: 0px;
  top: 28px;
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}


.product-details .p4-s02 .detail-section .slide ul li {
  margin-bottom: 15px;
}
.product-details .p4-s02 .detail-section .slide ul li h6 {
  padding: 12px 0;
    font-size: 24px;
    line-height: 44px;
    font-weight: 300;
    border-bottom: 2px solid #efefef;
    /* text-transform: uppercase; */
    padding-right: 30px;
    position: relative;
    font-family: var(--font);
}
.product-details .p4-s02 .detail-section .slide ul li h6 i {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 17px;
  right: 10px;
  cursor: pointer;
  cursor: hand;
}
.product-details .p4-s02 .detail-section .slide ul li h6 i:after,
.product-details .p4-s02 .detail-section .slide ul li h6 i:before {
  content: '';
  width: 100%;
  height: 2px;
  background: #0d95e8;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product-details .p4-s02 .detail-section .slide ul li h6 i:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.product-details .p4-s02 .detail-section .slide ul li h6 i.active:after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.product-details .p4-s02 .detail-section .slide ul li .text {
  font-size: 18px;
  line-height: 32px;
  padding: 15px;
  font-weight: 300;
  display: none;
}
.product-details .p4-s02 .detail-section .slide ul li:last-child {
  margin-bottom: 0;
}
.product-details .p4-s02 .detail-section .slide:first-child {
      padding: 0 2%;
}
.product-details .p4-s02 .detail-section .slide:last-child {
     padding: 0 2%;
}





.product-details .p4-s03 .detail-form {
  /*max-width: 980px;*/
  margin: 0 auto;
  padding: 60px 20px 90px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 30px 60px 0px rgba(61, 108, 191, 0.1);
  box-shadow: 0px 30px 60px 0px rgba(61, 108, 191, 0.1);
  border-radius: 20px 20px 12px 12px;
  position: relative;
}
.product-details .p4-s03 h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #252118;
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  text-align: center;
  margin-bottom: 40px;
}
.product-details .p4-s03 .wpcf7 {
  max-width: 580px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 30px;
}
.product-details .p4-s03 .wpcf7 p {
  margin-bottom: 0px;
  width: 100%;
}
.product-details .p4-s03 .wpcf7 p span {
  margin-bottom: 11px;
}
.product-details .p4-s03 .wpcf7 p span input {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 5px;
  border: unset;
  background-color: #f5f7f9;
  padding: 12px 10px;
  font-size: 16px;
  line-height: 30px;
  color: #252118;
  font-style: normal;
  width: 100%;
}
.product-details .p4-s03 .wpcf7 p span textarea {
  background-color: #f5f7f9;
  font-size: 14px;
  color: #252118;
  font-style: normal;
  height: 120px;
  resize: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: unset;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}
.product-details .p4-s03 .wpcf7 p input.wpcf7-submit {
  display: inline-block;
    margin-bottom: 0px;
    background-image: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px 33px;
    width: 100%;
    max-width: 380px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #3d6cbf;
    border-radius: 50px;
    border: 1px solid #3d6cbf;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
    font-size: 24px;
    color: #fff;
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.product-details .p4-s04 {
  padding: 60px 0!important;
}
.product-details .p4-s04 .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  outline: none;
  cursor: pointer;
  text-align: center;
}
.product-details .p4-s04 button {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: none;
  padding: 0px;
  width: 60px;
  height: 60px;
  border-radius: 0px;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  background-color: #e3e6e9;
  margin: 0px;
  border-radius: 50%;
  background-color: unset;
  border: solid 2px #e3e6e9;
  top: 47%;
}
.product-details .p4-s04 button.slick-prev {
  left: -5px;
}
.product-details .p4-s04 button.slick-next {
  right: -5px;
}
.product-details .p4-s04 h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #252118;
  font-family: var(--font);
  font-style: normal;
  text-align: center;
  margin-bottom: 48px;
}
.product-details .p4-s04 ul.related-products {
  margin: 0px -10px;
}
.product-details .p4-s04 ul.related-products li {
  margin: 0px 10px;
}

.product-details .p4-s04 h4 {
  font-size: 20px;
  line-height: 36px;
  color: #252118;
  font-family: var(--font);
  font-style: normal;
  margin-bottom: 0px;
  margin-top: 15px;
  text-align: center;
}
span.wpcf7-form-control-wrap {
  width: 100%;
  position: relative!important;
  display: inline-block;
  margin-bottom: 3px;
}


.product-details .mould-1 h2,
.product-details .mould-2 h2{
  font-size: 36px;
  line-height: 1.2;
  font-family: var(--font);font-weight: bold;
  color: #0266ad;
}

.product-details .mould-1 li{
  margin-left: 15px;
  list-style-type: disc;
  font-size: 18px;
  line-height: 32px;
}

.m-page {
  text-align: center;
  float: none;
  margin: 30px -5px 0;
}
.m-page a,
.m-page span {
  display: inline-block;
  text-align: center;
  width: 45px;
  height: 35px;
  font-size: 15px;
  line-height: 35px;
  border-radius: 5px;
  color: #111;
  font-weight: 500;
  -moz-box-shadow: 0 2px 10px 0 #d8dde6;
  -o-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 5px;
}

.m-page span,
.m-page a:hover {
  background: #1a4172 none repeat scroll 0 0;
  color: #fff;
}






.qua-details {
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-image: linear-gradient(180deg, #275a9b 0%, #16498a 100%);
}

@media (max-width: 540px) {
    .qua-details {
        padding:0px
    }
}

.qua-details .container {
    padding: 60px 10px
}

.qua-details .container h2 {
    text-align: center;
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0px
}

@media (max-width: 540px) {
    .qua-details .container h2 {
        font-size:32px
    }
}

.qua-details .container ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.qua-details .container ul li {
    width: 24%;
    max-width: 280px;
    margin-top: 40px
}

.qua-details .container ul li img {
    max-width: 100%
}

.qua-details .container ul li h4 {
    font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 22px;
    line-height: 40px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.qua-details .container ul li p {
    font-style: normal;
    font-size: 18px;
    color: #fff;
    margin-bottom: 0px;
    /* width: 95%; */
    /* max-width: 260px; */
    line-height: 32px;
}



.our-markets ul li{
  display: flex;
  align-items: center;
}

.our-markets ul li:not(:last-child){
  margin-bottom: 60px;
}

.our-markets ul li:nth-child(even){
  flex-direction: row-reverse;
}


.our-markets ul li:nth-child(even) .img{
  text-align: right;
}

.our-markets ul li .img{
  width: 50%;
}

.our-markets ul li .mml-text{
  width: 50%;
  padding: 0 15px;
}

.our-markets ul li .mml-text h3{
      font-family: var(--font);font-weight: bold;
    font-style: normal;
    font-size: 36px;
    line-height: 1.2;
    color: #0266ad;
    margin-top: 10px;
    margin-bottom: 10px;
}

.our-markets ul li .mml-text p{
      font-size: 18px;
    line-height: 32px;
    color: #242424;
}



.faq-page h3.title {
    color: #242424;
    text-transform: capitalize;
    font-size: 40px;
    line-height: 1.2;
    margin: 15px 0;
    position: relative;
    font-family: var(--font);font-weight: bold;
}
.faq-page .faq-1 {
  padding: 70px 0;
  text-align: center;
  background: #f6f7f9;
}
.faq-page .faq-1 .search {
  max-width: 550px;
  display: block;
  margin: 20px auto;
  position: relative;
}
.faq-page .faq-1 .search input {
  width: 100%;
  border: medium none;
  color: #111;
  left: 0;
  padding: 0 70px 0 15px;
  border-radius: 30px;
  background: white;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 18px;
}
.faq-page .faq-1 .search input::-webkit-input-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search input:-moz-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search input::-moz-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search input:-ms-input-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search button {
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  line-height: 50px;
  height: 50px;
      color: #1a4172;
}
.faq-page .faq-1 p {
  max-width: 770px;
  display: block;
  margin: 0 auto;
}
.faq-page .faq-2 {
  padding: 70px 0;
}
.faq-page .faq-2 .left {
  width: 66%;
  padding-right: 15px;
}
.faq-page .faq-2 .left ul li {
  margin-bottom: 15px;
  border: 1px solid #eee;
}
.faq-page .faq-2 .left ul li:last-child {
  margin-bottom: 0;
}
.faq-page .faq-2 .left ul li h4 {
  display: block;
  text-align: left;
  padding: 15px;
  background: #f6f7f9;
  color: #242424;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 22px;
  line-height: 40px;
  cursor: pointer;
  cursor: hand;
}
.faq-page .faq-2 .left ul li h4 span {
  margin-right: 5px;
  color: #0070bf;;
}
.faq-page .faq-2 .left ul li .content {
  padding: 20px 30px;
  line-height: 32px;
  display: none;
}
.faq-page .faq-2 .right {
  width: 34%;
  padding-left: 15px;
}
.faq-page .faq-2 .right .box2 {
  padding: 30px;
  background: #f6f7f9;
}
.faq-page .faq-2 .right .box2 h3.title {
  font-size: 24px;
  line-height: 44px;
  margin-top: 0;
  margin-bottom: 20px;
}
.faq-page .faq-2 .right .box2 .form ul li {
  width: 100%;
}



.faq-page .form ul {
  margin: -5px;
}
.faq-page .form ul li {
  padding: 5px;
}
.faq-page .form ul li.wid-100 {
  width: 100%;
}
.faq-page .form ul li input,
.faq-page .form ul li textarea {
  width: 100%;
  padding: 10px 15px;
  background: #fff none repeat scroll 0 0;
  border: medium none;
  font-size: 16px;
  line-height: 30px;
}
.faq-page .form ul li input::-webkit-input-placeholder,
.faq-page .form ul li textarea::-webkit-input-placeholder {
  color: #242424;
}
.faq-page .form ul li input:-moz-placeholder,
.faq-page .form ul li textarea:-moz-placeholder {
  color: #242424;
}
.faq-page .form ul li input::-moz-placeholder,
.faq-page .form ul li textarea::-moz-placeholder {
  color: #242424;
}
.faq-page .form ul li input:-ms-input-placeholder,
.faq-page .form ul li textarea:-ms-input-placeholder {
  color: #242424;
}
.faq-page .form ul li textarea {
  height: 120px;
  resize: vertical;
}
.faq-page .form ul li input[type="submit"] {
  background: #1a4172;
    color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-family: var(--font);font-weight: bold;
    font-size: 22px;
    line-height: 40px;
    text-transform: uppercase;
}
.faq-page .form ul li input[type="submit"]:hover {
  background: #222;
}



.team-img .text h2{
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  color: #242424;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}


.quality-sec .p11-team h4{
  font-family: var(--font);font-weight: bold;
  font-style: normal;
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
}



.module .module-1 .bg {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30%;
  text-align: center;
}
.module .module-1 .bg > div {
  width: 100%;
}
.module .module-1 .bg .img1 {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 1;
}



@media screen and (max-width: 1200px) {
  .module .module-1 .bg{
    bottom: -20%;
  }

}

@media screen and (max-width: 1000px) {
  .inner-banner{
    padding-top: 70px!important;
    height: 250px!important;
  }

  .module .module-1 .bg{
    bottom: -15%;
  }

  .inner-banner h2{
    font-size: 20px!important;
    line-height: 36px!important;
  }

  .products-page .p3-s01{
    padding: 20px 0 30px!important;
  }
}

@media screen and (max-width: 700px) {
  .module .module-1{
    height: 200px!important;
  }


  .module .module-2{
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
}

@media screen and (max-width: 500px) {
  .module .module-1 .bg .img1{
    bottom: 30%;
  }
}



/* 内页媒体查询 */

/* about */
@media screen and (max-width: 1200px) {
  .about-page .about-1 .box{
    margin: -15px;
  }

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

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

  .about-page .about-1 h2{
    font-size: 40px;
  }

  .about-page .about-1 h4{
    font-size: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .about-page .about-1 .left{
    width: 100%;
  }

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

  .about-page .p8-s02 .num-list{
    flex-wrap: wrap;
  }

  .about-page .p8-s02 li{
    width: 45%;
    max-width: 100%;
  }

  .about-page .about-3 .box ul li{
    width: 50%!important;
  }

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

}

@media screen and (max-width: 700px) {
  .p11-value .icon{
    display: none;
  }
  .about-page .p8-s02{
    padding-bottom: 20px!important;
  }
  .p11-value{
    padding: 20px 0!important;
  }
  .about-page .about-3 .box ul li{
    width: 100%!important;
  }

  .p11-value .title .word{
    display: none;
  }

  .about-page .about-1 h2{
    font-size: 30px;
    line-height: 50px;
  }
  .about-page .about-1 h4{
    font-size: 20px;
    line-height: 36px;
  }
  .about-page .p8-s02{
    padding-bottom: 40px!important;
  }
  .about-page .p8-s02 h2{
    font-size: 30px;
    line-height: 1.4;
  }
  .about.mod-1 h2{
    font-size: 30px;
  }
  .about-page .about-3 h3{
    font-size: 30px;
    line-height: 1.4;
  }
  .about-page .about-4 h3{
    font-size: 30px;
    line-height: 1.4;
  }
}


@media screen and (max-width: 500px) {
  .about-page .p8-s02 li{
    width: 100%;
  }
}
/* about-end */


/* product */
@media screen and (max-width: 1200px) {
  .products-page .p3-s01 li{
    width: 28%;
  }

  .products-page .p3-s02 .col li{
    width: 28%;
  }

  .products-page .p3-s02 .tab-btn ul li{
    font-size: 18px;
    line-height: 32px;
  }
  .products-page .p3-s02{
    padding: 0 0 20px!important;
  }
}

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

  .products-page .p3-s01 li{
    width: 45%;
  }

  .products-page .p3-s02 .col li{
    width: 100%!important;
  }
}

@media screen and (max-width: 700px) {
  /*.products-page .p3-s01 p{
    font-size: 24px;
    line-height: 40px;
  }*/
  .fenlei{
    display: none!important;
  }
  .miaoshu{
    display: none!important;
  }
  .products-page h6{
    font-size: 18px;
    line-height: 32px;
  }
  .products-page h2{
    font-size: 30px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 500px) {
  .products-page .p3-s01 li{
    width: 95%;
    max-width: 100%;
  }
}
/* product-end */


/* prodet */
@media screen and (max-width: 1500px) {
  .product-details .p4-s01 .slider-nav button.slick-prev{
    left: 0;
  }
  .product-details .p4-s01 .slider-nav button.slick-next{
    right: 0;
  }
  .product-details .p4-s01 .contact span{
    margin: 10px 0;
  }
}

@media screen and (max-width: 1200px) {
  .product-details .p4-s01 .product-name{
    font-size: 24px;
    line-height: 40px;
  }
  .product-details .p4-s01 p{
    font-size: 20px;
    line-height: 36px;
  }

  .product-details .p4-s01 .contact{
    margin: 20px 0;
  }
}

@media screen and (max-width: 1000px) {
  .product-details .p4-s01{
    padding: 60px 0;
  }

  .product-details .p4-s01 .mml-row{
    display: block;
  }

  .product-details .p4-s01 .img-wrap{
    width: 100%;
    margin: 0 auto;
  }

  .product-details .p4-s01 .text-wrap{
    width: 100%;
    margin-top: 40px;
  }

  .product-details .p4-s02 .detail-section .one ul{
    flex-wrap: wrap;
  }
  .product-details .p4-s02 .detail-section .one li{
    width: 31%;
    padding-bottom: 30px;
  }

  .product-details .p4-s02{
    padding-bottom: 60px;
  }

  .product-details .p4-s04{
    padding: 60px 0;
  }
}

@media screen and (max-width: 700px) {
  .product-details .p4-s02 .detail-tab ul{
    display: block;
  }

  .product-details .p4-s02 .detail-tab li::after{
    display: none;
  }

  .product-details .p4-s02 .detail-section .one li{
    width: 48%;
  }

  .product-details .mould-1 h2, .product-details .mould-2 h2{
    font-size: 30px;
    line-height: 1.4;
  }

  .product-details .p4-s03 h2{
    font-size: 30px;
    line-height: 1.4;
  }

  .product-details .p4-s04 h2{
    font-size: 30px;
    line-height: 1.4;
  }
  .diaoyong{
    margin: 30px 0!important;
  }
  .production-sec .pur-sec{
    padding: 20px 0!important;
  }
}
/* prodet-end */


/* production */
@media screen and (max-width: 1500px) {
  .prints-sec .img-wrap{
    width: 35%;
  }

  .prints-sec .text-wrap{
    width: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .text.mod-1 h2{
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px!important;
    padding-top: 10px!important;
  }

  .production-sec .fig-sec h2{
    font-size: 30px;
  }

  .prints-sec .img-wrap{
    width: 45%;
  }

  .prints-sec .text-wrap{
    width: 50%;
  }

  .p11-milestone .text h2{
    font-size: 30px;
    line-height: 1.4;
  }

  .team-img .text h2{
    font-size: 30px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 1000px) {
  .production-sec .pur-sec .mml-row{
    display: block;
  }

  .production-sec .pur-sec .container .text-wrap{
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .production-sec .pur-sec .container .img-wrap{
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }

  .production-sec .fig-sec .mml-row{
    display: block;
  }

  .production-sec .fig-sec h2{
    width: 100%;
    margin-bottom: 30px;
  }

  .production-sec .fig-sec ul{
    width: 100%;
    max-width: 100%;
  }

  .prints-sec .img-wrap{
    display: none;
  }

  .prints-sec .text-wrap{
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .production-sec .fig-sec ul{
    display: block;
  }
  .production-sec .fig-sec ul li{
    max-width: 100%;
    padding: 20px 0;
  }
}
/* production-end */

/* quality */
@media screen and (max-width: 1000px) {
  .our-markets ul li .mml-text h3{
    font-size: 30px;
    line-height: 1.4;
  }

  .our-markets ul li{
    display: block;
  }

  .our-markets ul li .img{
    width: 100%;
    text-align: center!important;
  }

  .our-markets ul li .mml-text{
    width: 100%;
    padding: 30px 0;
  }

  .qua-details .container ul{
    flex-wrap: wrap;
  }
  .qua-details .container ul li{
    width: 100%!important;
    text-align: center!important;
    max-width: 330px!important;
  }

  .qua-details .container h2{
    font-size: 30px;
    line-height: 1.4;
  }

  .proto-sec h2{
    font-size: 30px;
    line-height: 1.4;
  }

  .quality-sec .p11-team h4{
    font-size: 30px;
    line-height: 1.4;
  }

  .pd-110{
    padding: 20px 0!important;
  }

  .p11-team{
    padding: 30px 0;
  }
}
/* quality-end */


/* oem-odm */
@media screen and (max-width: 1200px) {
  .end-sec .tab-wrap .tab-sec section .text-wrap .text h2{
    font-size: 20px;
    line-height: 36px;
  }

  .end-sec .tab-wrap .tab-sec section .text-wrap .text h4{
    font-size: 30px;
    line-height: 1.4;
  }

  .text.mod-1 h3{
    font-size: 30px;
  }

  .text.mod-1 h3{
    font-size: 20px;
    line-height: 36px;
  }

  .end-sec .box > h2{
    font-size: 30px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 1000px) {
  .p04-custom-parts .title{
    width: calc(50% - 20px);
  }
  .p04-custom-parts .item{
    width: calc(50% - 20px);
  }

  .end-sec .tab-wrap{
    display: block;
  }
  .end-sec .tab-wrap .tab-btn{
    width: 100%;
    max-width: 100%;
  }
  .end-sec .tab-wrap .tab-sec{
    width: 100%;
  }

  .p04-more-than .item{
    display: block;
  }

  .p04-more-than .img{
    width: 100%;
    max-width: 100%;
    max-height: initial;
  }
  .p04-more-than .item .text{
    width: 100%;
    max-width: 100%;
    padding: 30px 0;
  }

  .p04-more-than{
    padding: 60px 0;
  }

  .end-sec{
    padding: 0px 0!important;
  }

  .p04-custom-parts{
    padding: 20px 0!important;
  }
}

@media screen and (max-width: 500px) {
  .p04-custom-parts .title{
    width: calc(100% - 20px);
  }
  .p04-custom-parts .item{
    width: calc(100% - 20px);
  }
  .end-sec .tab-wrap .tab-sec section.current{
    display: block;
  }
  .end-sec .tab-wrap .tab-sec section .img-wrap{
    width: 100%;
    max-width: 100%;
  }
  .end-sec .tab-wrap .tab-sec section .text-wrap{
    width: 100%;
  }
}
/* oem-odm-end */

/* faq */
@media screen and (max-width: 1200px) {
  .faq-page .faq-2 .left ul li h4{
    font-size: 16px;
  }

  .faq-page .faq-2 .right .box2{
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1000px) {
  .faq-page .faq-2 .left ul li h4{
    font-size: 18px;
    line-height: 32px;
  }

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

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

  .faq-page h3.title{
    font-size: 24px;
    line-height: 44px;
  }

  .faq-page .faq-1{
    padding: 40px 0;
  }

  .faq-page .faq-2{
    padding: 40px 0;
  }

  .faq-page .form ul li input[type="submit"]{
    font-size: 14px;
  }
}
/* faq-end */

@media screen and (max-width: 1000px) {
  .news-page .news-1 .nav-list{
    display: none;
  }

  .news-page .news-2{
    padding: 20px 0!important;
  }
}

/* contact */
@media screen and (max-width: 1500px) {
  .contact.mod-1 h2{
    font-size: 50px;
  }

  .p14-contact-info .title{
    padding: 0 60px 0 0px;
  }

}
@media screen and (max-width: 1200px) {
  .p14-contact-info .title{
    padding: 0 30px 0 0px;
  }

  .text.mod-1 h2 span{
    font-size: 20px;
    line-height: 36px;
  }

  .contact-page .contact-1 .box .left .list ul li .box2{
    padding-left: 40px;
  }

  .contact-page .contact-1 .box .left{
    padding: 20px;
  }

  .contact-page .contact-1 .box .right{
    padding: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .p14-contact-info .mml-row{
    display: block;
  }

  .p14-contact-info .title{
    width: 100%;
    padding: 0;
  }

  .p14-contact-info .detail{
    width: 100%;
    margin-top: 40px;
  }

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

  .contact-page .contact-1 .box .right{
    width: 100%;
  }

  .p14-contact-info{
    padding: 20px 0!important;
  }

  .contact-page .contact-1 .box{
    margin: 60px 0;
  }
}

@media screen and (max-width: 500px) {
  .contact.mod-1 h2{
    font-size: 40px;
  }

}
/* contact-end */

.haha{
	margin-top: 40px;
	margin-bottom: 40px;
}
.zhishi{
	font-size: 24px;
	line-height: 40px;
	color: #0070bf;
	text-align: center;
  font-family: var(--font);font-weight: bold;
}
.bankuai{
	font-size: 18px;
	line-height: 32px;
}

.huhu{
  font-size: 14px;
  line-height: 28px;
  margin-left: 10px!important;
}
.fenlei{
  font-size: 26px;
  line-height: 40px;
  margin-top: 20px;
  color: #0070bf;
  font-family: var(--font);font-weight: bold;
}
.miaoshu{
  font-size: 16px;
  line-height: 30px;
  margin-top: 10px;
}
.diaoyong{
  padding: 50px 0!important;
}



/* 落地页 */
.tit1{
  font-size: 42px;
  text-transform: uppercase;
  font-family: var(--font);font-weight: bold;
}

.luoD-1{
  background: url(../images/luoD_1_bg.jpg)no-repeat center;
  background-size: cover;
  color: #ffffff;
}

.luoD-1 h2{
  font-size: 30px;
  line-height: 1.2;
  font-family: var(--font);
}

.luoD-1 h4{
  font-size: 24px;
  font-family: var(--font);
}

.luoD-1 h4 i{
  vertical-align: bottom;
  display: inline-block;
}

.luoD-1 h4 i img{
  vertical-align: text-bottom;
}

.luoD-1 ul{
  margin: -15px -40px;
  padding-right: 15%;
}

.luoD-1 ul li{
  padding: 15px 40px;
}

.luoD-1 .form{
  width: 490px;
  margin-right: -80px;
  padding: 15px 20px;
  background-color: #0074c5;
}

.luoD-1 .form input,
.luoD-1 .form textarea{
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 5px 10px;
  border: none;
  color: #000000;
}

.luoD-1 .form textarea{
  height: 120px;
}

.luoD-1 .form button{
  background: #1a4172;
  width: 100%;
  padding: 10px 0;
  border: none;
  font-size: 18px;
  text-transform: uppercase;
}

.luoD-2{
  padding-top: 60px;
}

.luoD-2 .box{
  padding: 0 10%;
}

.luoD-2 ul{
  margin: -15px;
}

.luoD-2 ul li{
  padding: 15px;
}

.luoD-2 .img{
  width: 60%;
}

.luoD-2 .mml-text{
  width: 40%;
}

.luoD-2 .mml-text h4{
  line-height: 1.3;
  font-family: var(--font);font-weight: bold;
}

.luoD-3 ul{
  margin: -15px;
}

.luoD-3 ul li{
  padding: 15px;
}

.luoD-4 ul{
  display: flex;
  justify-content: space-between;
}

.luoD-4 ul li h4{
  font-size: 60px;
  line-height: 1;
  font-family: var(--font);font-weight: bold;
}

.luoD-4 ul li h4 b{
  font-size: 24px;
  font-family: var(--font);
}

.luoD-5{
  overflow: hidden;
  margin-bottom: -30px;
}
.luoD-5 ul li h4{
  font-size: 0;
  position: relative;
}

.luoD-5 ul li h4:after{
  content: url(../images/jt_icon.png);
  position: absolute;
  left: 100%;
  top: calc(100% - 1px);
}
.luoD-5 ul li h4 i{
  color: #0074c5;
  width: 90px;
  display: inline-block;
  font-size: 60px;
  line-height: 1.2;
  font-family: var(--font);font-weight: bold;
  vertical-align: bottom;
}

.luoD-5 ul li h4 span{
  text-transform: uppercase;
  display: inline-block;
  font-family: var(--font);
  width: calc(100% - 90px);
  border-bottom: 1px solid #cce3f3;
  vertical-align: bottom;
}

.luoD-5 ul li p{
  line-height: 1.3;
}

.luoD-5 ul li:nth-child(even) h4 i{
  border-bottom: 1px solid #cce3f3;
}
.luoD-5 ul li:nth-child(even) h4 span{
  width: auto;
}

.luoD-5 ul li:nth-child(even) h4:after{
  left: auto;
  right: 100%;
  transform: rotateY(180deg);
}

.luoD-5 ul li:last-child h4:after{
  display: none;
}
.luoD-5 ul li:last-child h4 i{
  border-color: transparent;
}

.luoD-5 ul li:last-child span{
  border-color: transparent;
}

.luoD-5 .left{
  width: 50%;
}

.luoD-5 .right{
  width: auto;
}

.luoD-6{
  background: url(../images/luoD_6_bg.jpg)no-repeat center;
  background-size: cover;
  color: #ffffff;
}
.luoD-6 h2{
  font-size: 42px;
  font-family: var(--font);
}

.luoD-6 a{
  display: inline-block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  padding: 0 50px;
  background: #1a4172;
}

.luoD-7 ul{
  margin: -5px;
}
.luoD-7 ul li{
  padding: 5px;
}
.luoD-7 ul li.wid-50{
  width: 50%!important;
}

.luoD-7 h4{
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 40px;
  font-size: 28px;
  color: #ffffff;
  font-family: var(--font);
}


.luoD-8 h2{
  width: 25%;
}
.luoD-8 .list{
  width: 70%;
}
.luoD-8 .list ul{
  margin: -30px;
}
.luoD-8 .list ul li{
  padding: 30px;
}

.luoD-8 .list .img{
  border: 4px solid #0074c5;
}


.luoD-9{
  background: url(../images/luoD_8_bg.jpg)no-repeat center;
  background-size: cover;
  color: #ffffff;
}

.luoD-9 .left{
  width: 50%;
}

.luoD-9 .left ul li{
  display: flex;
}

.luoD-9 .left ul li .img{
  width: 110px;
}

.luoD-9 .left ul li .mml-text{
  width: calc(100% - 110px);
  margin-left: 30px;
}

.luoD-9 .right{
  width: 40%;
}

.luoD-9 .right h2{
  font-size: 36px;
  font-family: var(--font);
}
.luoD-9 .right ul{
  margin: -5px;
}
.luoD-9 .right ul li{
  padding: 5px;
}
.luoD-9 .right ul li.wid-100{
  width: 100%;
}
.luoD-9 .right input,
.luoD-9 .right textarea{
  font-size: 18px;
  padding: 10px;
  width: 100%;
}

.luoD-9 .right textarea{
  height: 120px;
}

.luoD-9 .right button{
  width: 80%;
  height: 50px;
  color: #ffffff;
  background: #1a4172;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
}



@media screen and (max-width: 1200px) {
  .luoD-2 .box{
    padding: 0 15px;
  }

  .luoD-1 h2{
    font-size: 42px;
  }

  .luoD-1 .form{
    width: 400px;
  }

  .luoD-1 .form textarea{
    height: 80px;
  }

  .luoD-1 .form button{
    padding: 10px 0;
  }

  .luoD-1 ul{
    margin: -15px;
  }

  .luoD-1 ul li{
    padding: 15px;
  }

  .luoD-1 h4{
    font-size: 24px;
  }

  .luoD-5 .right{
    width: 40%;
  }

  .luoD-5{
    margin: 0;
  }

  .luoD-8 .list ul{
    margin: -15px;
  }

  .luoD-8 .list ul li{
    padding: 15px;
  }

  .tit1{
    font-size: 30px;
  }

  .luoD-6 h2{
    font-size: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .luoD-1 .form{
    display: none;
  }

  .luoD-1 ul{
    padding-right: 0;
  }

  .luoD-4 .left{
    width: 100%!important;
    padding: 0;
  }

  .luoD-4 .right{
    width: 100%!important;
    margin-top: 40px;
  }

  .luoD-4 ul li h4{
    font-size: 40px;
  }

  .luoD-5 .left{
    width: 100%;
  }

  .luoD-5 .right{
    display: none;
  }

  .luoD-8 h2{
    width: 100%;
    margin: 0;
    margin-bottom: 40px;
  }

  .luoD-8 .list{
    width: 100%;
  }
}


@media screen and (max-width: 700px) {
  .luoD-9 .left{
    width: 100%;
  }
  .luoD-9 .right{
    width: 100%;
    margin-top: 30px;
  }

  .luoD-9 .right input, .luoD-9 .right textarea{
    font-size: 14px;
  }

  .luoD-4 ul li h4{
    font-size: 30px;
  }

  .luoD-5 ul li h4:after{
    display: none;
  }

  .luoD-5 ul li h4 span{
    border: none!important;
  }

  .luoD-5 ul li h4 i{
    border: none!important;
  }

  .luoD-5 ul li:nth-child(even) h4 span{
    width: calc(100% - 90px);
  }
}

@media screen and (max-width: 500px) {
  .luoD-4 ul{
    flex-wrap: wrap;
  }
  .haha{
	display: none!important;
}
  .luoD-4 ul li{
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
  }

  .luoD-7 ul li.wid-50{
    width: 100%!important;
  }

  .luoD-1 h2{
    font-size: 30px;
  }

  .luoD-9 .right h2{
    font-size: 24px;
  }
}


/* body-slider */
.body-sidebar {
	position:fixed;
	right:10px;
	bottom:20px;
	z-index:2;
}
.body-sidebar li.ty-li {
	display:block;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:18px;
	color:white;
	background:#666;
	margin-bottom:5px;
	cursor:pointer;
	cursor:hand;
	transition:.5s;
	position:relative;
}
.body-sidebar li.ty-li:hover {
	background:#e3222b;
}



#main{
  background: url(../images/fish.jpg)no-repeat center top 40%;
}
.mml-text p{
  font-size: 18px;
  line-height: 1.8;
}
.mml-text strong{
  font-weight: bold;
}



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

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