@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Light.ttf) format('truetype'), url(../fonts/Montserrat-Light.eot) format('eot'), url(../fonts/Montserrat-Light.woff) format('woff'), url(../fonts/Montserrat-Light.woff2) format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
  font-weight: bold;
}

#ewm{
  width: 100px;
  margin-top: 20px;
}

body {
  font-family: "Montserrat";
  font-weight: 400;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1440px;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 130px;
  line-height: 130px;
  transition: .5s ease;
}
#header.fixed {
  background-color: #036eb8;
}
#header::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#header .nav {
  max-width: 1740px;
  margin-left: auto;
  padding-left: 15px;
}
#header .nav .ui.menu {
  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;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle;
}
#header .nav .ui.menu .logo a {
  display: block;
  vertical-align: middle;
  line-height: 1;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 60px;
  font-size: 18px;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  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;
  width: 0;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #5fbeff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: #5fbeff;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::after {
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#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: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  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);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#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:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-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 .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 .formMsg {
  min-width: 340px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
#header .nav .ui.menu .formMsg > div {
  height: 65px;
  line-height: 65px;
}
#header .nav .ui.menu .formMsg .p-search {
  padding: 0 15%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#header .nav .ui.menu .formMsg form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#header .nav .ui.menu .formMsg form input {
  background-color: transparent;
  border: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  color: white;
  margin-left: 20px;
}
#header .nav .ui.menu .formMsg form input::-webkit-input-placeholder,
#header .nav .ui.menu .formMsg form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input:-moz-placeholder,
#header .nav .ui.menu .formMsg form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input::-moz-placeholder,
#header .nav .ui.menu .formMsg form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input:-ms-input-placeholder,
#header .nav .ui.menu .formMsg form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input::-webkit-input-placeholder, #header .nav .ui.menu .formMsg form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input:-moz-placeholder, #header .nav .ui.menu .formMsg form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input::-moz-placeholder, #header .nav .ui.menu .formMsg form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input:-ms-input-placeholder, #header .nav .ui.menu .formMsg form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form input::placeholder,
#header .nav .ui.menu .formMsg form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#header .nav .ui.menu .formMsg form button {
  border: none;
  background-color: transparent;
}
#header .nav .ui.menu .formMsg form button img {
  vertical-align: middle;
}
#header .nav .ui.menu .formMsg .baseMsg {
  color: white;
}
#header .nav .ui.menu .h-search {
  display: none;
  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);
}
#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: #fd2318;
}
#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: 50%;
  right: 5%;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
#banner ul.slick-dots li {
  width: 11px;
  height: 11px;
  margin: 12px 0;
  background-color: white;
  opacity: .2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  opacity: 1;
}
#banner .slick-slide .content {
  display: none;
}




#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}

.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 .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#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: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 120px;
  }
  #ewm{
    display: none;
  }

}
.language-box .language-img {
  width: auto;
  vertical-align: middle;
}
.language-box .language-img img {
  vertical-align: middle;
}
.language-box .zhuyu {
  color: #FFFFFF;
  font-size: 20px;
  display: block;
}
.language-box .zhuyu i {
  margin-left: 15px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 0;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.language-box ul.sub-menu li:hover a {
  background: #ffb11b;
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner {
  position: relative;
}
#banner li {
  position: relative;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .left {
  margin-left: 5%;
}
#banner h2 {
  margin-bottom: 30px;
  font-size: 62px;
  line-height: 1.3;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
#banner p {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 2;
  color: white;
  font-weight: 300;
}
#banner .story {
  position: absolute;
  right: 5%;
  bottom: 10%;
  color: white;
  padding-left: 25px;
}
#banner .story img {
  position: absolute;
  left: 0;
  top: 2px;
}
.baseTit {
  font-size: 48px;
}
.base-color {
  color: #036eb8;
}
.baseBtn {
  line-height: 55px;
  color: white;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 210px;
  padding: 0 24px;
}
.maskBtn span {
  z-index: 1;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.maskBtn::before,
.maskBtn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.maskBtn::before {
  left: 0;
  border-radius: 0 50% 50% 0;
}
.maskBtn::after {
  right: 0;
  border-radius: 50% 0 0 50%;
}
.maskBtn:hover {
  color: black;
}
.maskBtn:hover::before,
.maskBtn:hover::after {
  width: 100%;
  border-radius: 0;
  background-color: #ffffff;
}
.more-btn {
  display: inline-block;
}
.i-advantage {
  padding: 50px 0;
  background-color: #f7fafd;
}
.i-advantage ul {
  margin: 0 -4%;
}
.i-advantage ul li {
  padding: 0 4%;
}
.i-category1 {
  padding: 60px 0 120px;
}
.i-category1 .list ul {
  margin: -15px;
}
.i-category1 .list ul li {
  padding: 15px;
  width: 30%;
}
.i-category1 .list ul li:first-child {
  width: 40%;
}
.i-category1 .list ul li:first-child > div {
  height: 840px;
}
.i-category1 .list ul li > div {
  overflow: hidden;
  height: 405px;
}
.i-category1 .list ul li > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.i-category1 .list ul li > div .name,
.i-category1 .list ul li > div .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 30px;
  color: white;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-category1 .list ul li > div .text {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 110, 184, 0)), to(rgba(3, 110, 184, 0.45)));
  background-image: -webkit-linear-gradient(rgba(3, 110, 184, 0), rgba(3, 110, 184, 0.45));
  background-image: -moz-linear-gradient(rgba(3, 110, 184, 0), rgba(3, 110, 184, 0.45));
  background-image: linear-gradient(rgba(3, 110, 184, 0), rgba(3, 110, 184, 0.45));
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.i-category1 .list ul li > div:hover .name {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.i-category1 .list ul li > div:hover .text {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.i-contact {
  background: url(../images/contact-bg.jpg) no-repeat center;
  color: white;
  padding: 80px 0 40px;
  background-attachment: fixed;
}
.i-contact span.tag {
  display: inline-block;
  padding: 20px 0;
  border-bottom: 1px solid white;
}
.i-contact .name {
  font-size: 38px;
}
.i-contact .form {
  margin-top: 80px;
}
.i-contact .form ul {
  margin-right: -5%;
}
.i-contact .form ul li {
  padding-right: 5%;
}
.i-contact .form ul li input,
.i-contact .form ul li textarea {
  width: 100%;
  background: 0 0;
  border: none;
  border-bottom: 1px solid white;
  outline: none;
  padding: 10px 20px;
  font-size: 18px;
  color: white;
}
.i-contact .form ul li input::-webkit-input-placeholder,
.i-contact .form ul li textarea::-webkit-input-placeholder,
.i-contact .form ul li input::-webkit-input-placeholder,
.i-contact .form ul li textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input:-moz-placeholder,
.i-contact .form ul li textarea:-moz-placeholder,
.i-contact .form ul li input:-moz-placeholder,
.i-contact .form ul li textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input::-moz-placeholder,
.i-contact .form ul li textarea::-moz-placeholder,
.i-contact .form ul li input::-moz-placeholder,
.i-contact .form ul li textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input:-ms-input-placeholder,
.i-contact .form ul li textarea:-ms-input-placeholder,
.i-contact .form ul li input:-ms-input-placeholder,
.i-contact .form ul li textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input::-webkit-input-placeholder, .i-contact .form ul li textarea::-webkit-input-placeholder, .i-contact .form ul li input::-webkit-input-placeholder, .i-contact .form ul li textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input:-moz-placeholder, .i-contact .form ul li textarea:-moz-placeholder, .i-contact .form ul li input:-moz-placeholder, .i-contact .form ul li textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input::-moz-placeholder, .i-contact .form ul li textarea::-moz-placeholder, .i-contact .form ul li input::-moz-placeholder, .i-contact .form ul li textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input:-ms-input-placeholder, .i-contact .form ul li textarea:-ms-input-placeholder, .i-contact .form ul li input:-ms-input-placeholder, .i-contact .form ul li textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input::placeholder,
.i-contact .form ul li textarea::placeholder,
.i-contact .form ul li input::placeholder,
.i-contact .form ul li textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.i-contact .form ul li input:focus,
.i-contact .form ul li textarea:focus {
  border-color: #eca21a;
}
.i-contact .form ul li input[type='submit'] {
  color: white;
  background-color: #036eb8;
  border: none;
  font-size: 20px;
}
.i-category2 {
  padding: 150px 0 200px;
  overflow: hidden;
  position: relative;
}
.i-category2::after {
  content: attr(data-text);
  font-size: 208px;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: .05;
  position: absolute;
  left: 10%;
  bottom: 0;
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
}
.i-category2 .dots {
  padding-left: 55px;
  position: relative;
}
.i-category2 .dots::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 50px;
  border-bottom: 1px solid #fff200;
}
.i-category2 .dots i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #036eb8;
}
.i-category2 .dots i + i {
  margin-left: 5px;
}
.i-category2 .left {
  width: 40%;
}
.i-category2 .left .desc {
  line-height: 2;
}
.i-category2 .right {
  width: 60%;
}
.i-category2 .right .slick-list {
  padding-right: 80px;
}
.i-category2 .right > div {
  margin-right: -webkit-calc(-50vw + 705px);
  margin-right: -moz-calc(-50vw + 705px);
  margin-right: calc(-50vw + 705px);
}
.i-category2 .right ul {
  margin: -20px;
}
.i-category2 .right ul li {
  padding: 20px;
}

.i-category2 .right .small-img{
  margin: -10px;
}
.i-category2 .right .small-img > div{
  width: 33.33%;
  padding: 10px;
}
.i-category2 .right .small-img img{
  border: 1px solid #036eb8;
}

.our-test {
  position: relative;
}
.our-test::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  z-index: 0;
  background-color: #f2f8fb;
}
.our-test .num {
  color: #036eb8;
}
.our-test .num::before {
  content: "";
  width: 35%;
  height: 1px;
  background-color: #036eb8;
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
}
.our-test .box {
  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;
}
.our-test .box .left .slick-one {
  margin-left: -webkit-calc(-50vw + 705px);
  margin-left: -moz-calc(-50vw + 705px);
  margin-left: calc(-50vw + 705px);
  margin-right: -80px;
}
.our-test .box .right {
  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;
}
.our-test .box .right .tab-list {
  padding-left: 150px;
}
.our-test .box .right .tab-list i {
  height: 0;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: #004694;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  transition: 0s;
  opacity: 0;
}
.our-test .box .right .tab-list ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.our-test .box .right .tab-list ul li {
  margin-top: 50px;
}
.our-test .box .right .tab-list ul li:first-child,
.our-test .box .right .tab-list ul li:nth-child(4) {
  margin-top: 0;
}
.our-test .box .right .tab-list ul li.active i {
  opacity: 1;
  -webkit-transition: 5s height linear,opacity 0s;
  -moz-transition: 5s height linear,opacity 0s;
  transition: 5s height linear,opacity 0s;
  height: 100%;
}
.our-test .box .right .tab-list ul li.active .c-business_pagination_item {
  color: #004a7a;
}
.our-test .box .right .slick-two {
  background-color: #fff;
  padding: 50px 80px;
}
.c-business_pagination_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 21px;
  color: #c1c4cb;
  font-size: 16px;
  -webkit-transition: color 0.6s;
  -moz-transition: color 0.6s;
  transition: color 0.6s;
}
.c-business_pagination_progress {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 25px;
  margin: auto;
  margin-top: 0;
  background-color: #d5d7de;
}
.c-business_pagination_progress-bar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3455fc;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-business_pagination_number {
  width: 35px;
}
.c-business_pagination_title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* Nanuk */
.bg-3 a {
  color: #036eb8;
  border-color: #036eb8;
}
.bg-3 .button {
  color: #fff;

}
.button--border-thin {
  border: 1px solid;
}
.button--nanuk {
  display: block;
  padding: 0 2em;
  overflow: hidden;
  background: #036eb8;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button--nanuk.button--inverted {
  background: #fff;
  color: #7986cb;
}
.button--nanuk > span {
  display: inline-block;
  vertical-align: top;
  line-height: 60px;
  height: 60px;
}
.button--nanuk:hover {
  background-color: #036eb8;
}
.button--nanuk:hover > span:nth-child(odd) {
  -webkit-animation: anim-nanuk-1 0.5s forwards;
  -moz-animation: anim-nanuk-1 0.5s forwards;
  animation: anim-nanuk-1 0.5s forwards;
}
.button--nanuk:hover > span:nth-child(even) {
  -webkit-animation: anim-nanuk-2 0.5s forwards;
  -moz-animation: anim-nanuk-2 0.5s forwards;
  animation: anim-nanuk-2 0.5s forwards;
}
.button--nanuk:hover > span:nth-child(odd),
.button--nanuk:hover > span:nth-child(even) {
  -webkit-animation-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-animation-function: cubic-bezier(0.75, 0, 0.125, 1);
}
@-webkit-keyframes anim-nanuk-1 {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    opacity: 1;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: inherit;
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@-moz-keyframes anim-nanuk-1 {
  0%,
  100% {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    opacity: 1;
    -moz-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  50% {
    opacity: 0;
    -moz-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: inherit;
  }
  51% {
    opacity: 0;
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@keyframes anim-nanuk-1 {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    opacity: 1;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: inherit;
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@-webkit-keyframes anim-nanuk-2 {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    opacity: 1;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    color: inherit;
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@-moz-keyframes anim-nanuk-2 {
  0%,
  100% {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    opacity: 1;
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  50% {
    opacity: 0;
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    color: inherit;
  }
  51% {
    opacity: 0;
    -moz-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@keyframes anim-nanuk-2 {
  0%,
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  49% {
    opacity: 1;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    color: inherit;
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
.our-company {
  background-color: #f2f8fb;
}
.our-company .button--nanuk {

}
.our-company .left {
  z-index: 1;
}
.our-company .left .content {
  background-color: #fff;
  padding: 70px 60px 100px;
}
.our-company .left .content h2 {
  font-size: 40px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 50px;
}
.our-company .left .content .desc {
  line-height: 2;
  color: #a1a1a1;
}
.our-company .left .content .desc span {
  color: #036eb8;
}
.our-company .right > div {
  margin-left: -55px;
  margin-right: -webkit-calc(-50vw + 705px);
  margin-right: -moz-calc(-50vw + 705px);
  margin-right: calc(-50vw + 705px);
}
.our-company .right .btns {
  background: url(../images/company-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 0 90px 100px;
  overflow: hidden;
}
.our-company .right .btns > div {
  margin-right: 7%;
  margin-bottom: 70px;
}
.our-news {
  padding: 90px 0;
}
.our-news .left {
  width: 40%;
}
.our-news .right {
  width: 60%;
}
.c-news-list_link {
  display: block;
  position: relative;
  border-bottom: 1px solid #e9ebf3;
  padding: 30px 20px 30px 20px;
}
.c-head {
  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;
}
.c-head_date {
  color: #c1c4cb;
}
.c-news-list_text {
  margin-top: 30px;
  line-height: 2;
}
.c-news-list_text span {
  display: inline-block;
  border: 1px solid #036eb8;
  color: #036eb8;
  padding: 0 20px;
  border-radius: 30px;
  line-height: 1.8;
  margin-left: 25px;
}
.c-head_category {
  letter-spacing: .05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e9edef;
  border: 1px solid #dee2e5;
  width: 150px;
  height: 35px;
  margin-left: 19px;
}
.c-news-list_link:hover .c-news-list_text {
  color: #004a7a;
}
.c-news-list {
  border-top: 1px solid #e9ebf3;
}
.c-news-list_line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.c-news-list_line i {
  height: 1px;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #004694;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  transition: 0s;
  opacity: 0;
}
.c-news-list a:hover .c-news-list_line i {
  opacity: 1;
  -webkit-transition: 1s width linear,opacity 0s;
  -moz-transition: 1s width linear,opacity 0s;
  transition: 1s width linear,opacity 0s;
  width: 100%;
}
.gxs-4 {
  padding-top: 100px;
  padding-bottom: 40px;
  background: url(../images/index-factory-bk.jpg) top center no-repeat;
  background-size: cover;
}
.gxs-4 .top {
  text-align: right;
  margin-bottom: 50px;
}
.gxs-4 .top .text {
  margin-left: auto;
  margin-right: 0;
  max-width: 550px;
  text-align: left;
}
.gxs-4 .top .text span.tt {
  padding-left: 70px;
  color: white;
  position: relative;
}
.gxs-4 .top .text span.tt::before {
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: white;
}
.gxs-4 .top .text .h3 {
  color: #fff;
  margin: 25px 0;
}
.gxs-4 .top .text p {
  color: #afafaf;
}
.gxs-4 .bottom {
  position: relative;
  padding: 0 90px;
}
.gxs-4 .bottom span.btn {
  position: absolute;
  top: 40%;
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
  cursor: pointer;
}
.gxs-4 .bottom span.btn i {
  font-size: 36px;
  color: #fff;
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
}
.gxs-4 .bottom span.btn:hover i {
  color: #036eb8;
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
}
.gxs-4 .bottom span.btn.slick-prev {
  left: 0;
}
.gxs-4 .bottom span.btn.slick-next {
  right: 0;
}
.gxs-4 .bottom ul.factorylist {
  margin: 0 -15px;
}
.gxs-4 .bottom ul.factorylist li {
  padding: 0 15px;
}
.gxs-4 .bottom ul.factorylist li .item {
  padding-bottom: 35px;
  position: relative;
}
.gxs-4 .bottom ul.factorylist li .item::before {
  content: "";
  width: 80%;
  height: 5px;
  background: rgba(163, 163, 163, 0.3);
  -webkit-box-shadow: 0 0px 10px 0 rgba(163, 163, 163, 0.3);
  box-shadow: 0 0px 5px 5px rgba(163, 163, 163, 0.3);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.gxs-4 .bottom ul.factorylist li .img-box {
  border-radius: 12px;
  border: 4px solid #dcdcdc;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.gxs-4 .bottom ul.factorylist li .img-box:hover {
  border-color: #036eb8;
}
#footer .footer-top .flex {
  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;
}
#footer .footer-top .box {
  padding: 80px 0;
}
#footer .footer-top .list-warp {
  margin: -30px;
  padding-bottom: 50px;
}
#footer .footer-top .list-item {
  width: 25%;
  padding: 30px;
}
.c-footer-list_title_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-footer-list_title_inner i {
  color: #036eb8;
}
.c-footer-list_border {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #e9ebf3;
  margin: 10px 0 20px;
}
.c-footer-list_border i {
  height: 1px;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #004694;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  transition: 0s;
  opacity: 0;
}
#footer .footer-top .list-item > a:hover .c-footer-list_border i {
  opacity: 1;
  -webkit-transition: .3s width linear,opacity 0s;
  -moz-transition: .3s width linear,opacity 0s;
  transition: .3s width linear,opacity 0s;
  width: 100%;
}
#footer .footer-top .list-item ul li > a {
  padding-bottom: .5em;
  display: inline-block;
  position: relative;
}
.c-footer-list_hover-line {
  height: 1px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #004694;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  transition: 0s;
  opacity: 0;
}
#footer .footer-top .list-item ul li > a:hover .c-footer-list_hover-line {
  opacity: 1;
  -webkit-transition: .3s width linear,opacity 0s;
  -moz-transition: .3s width linear,opacity 0s;
  transition: .3s width linear,opacity 0s;
  width: 100%;
}
#footer .footer-top .list-item ul li {
  font-weight: 300;
  line-height: 2;
}
#footer .footer-top .list-item ul li:nth-child(n+2) {
  margin-top: 10px;
}
#footer .footer-bottom {
  background-color: #036eb8;
  padding: 35px 0;
  color: #fff;
}
#footer .footer-bottom a {
  display: inline-block;
  vertical-align: middle;
}
.t-footer_nav {
  padding: 80px 0;
}
.t-footer_nav a {
  display: inline-block;
  padding-left: 10px;
  position: relative;
}
.t-footer_nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background-color: #036eb8;
}
.t-footer_nav a + a {
  margin-left: 70px;
}
.t-footer_content_smoothTop {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  color: #fff;
  font-size: 24px;
  background-color: #036eb8;
  border-color: #036eb8;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  border: 1px solid currentcolor;
}
.t-footer_content_smoothTop:hover {
  background-color: transparent;
  color: #036eb8;
}
@media (max-width: 1750px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 30px;
  }
}
@media (max-width: 1440px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .formMsg {
    display: none;
  }
  #header .nav .ui.menu .h-search {
    display: block;
  }
  #header {
    height: auto;
    line-height: normal;
  }
  .language-box .language-img img {
    width: 30px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a {
    padding: 25px 0;
  }
  #banner h2 {
    font-size: 40px;
  }
  .i-contact .form ul {
    margin-right: -3%;
  }
  .i-contact .form ul li {
    padding-right: 3%;
  }
  .i-contact .form ul li input {
    padding: 10px;
  }
  .i-contact .form ul li input[type='submit'] {
    font-size: 18px;
  }
  .baseTit {
    font-size: 36px;
  }
  .i-category2 .right > div {
    margin-right: -webkit-calc(-50vw + 585px);
    margin-right: -moz-calc(-50vw + 585px);
    margin-right: calc(-50vw + 585px);
  }
  .i-category2 .dots {
    display: none;
  }
  .i-category2::after {
    font-size: 150px;
  }
  .our-test .box .left .slick-one {
    margin-left: -webkit-calc(-50vw + 585px);
    margin-left: -moz-calc(-50vw + 585px);
    margin-left: calc(-50vw + 585px);
  }
  .our-test .box .right .slick-two {
    padding: 30px;
  }
  .font-36 {
    font-size: 30px;
  }
  .font-24 {
    font-size: 20px;
  }
  .our-test .box .right .tab-list ul li {
    margin-top: 30px;
  }
  .our-test .box .right .tab-list {
    padding-left: 100px;
  }
  .our-company .right > div {
    margin-right: -webkit-calc(-50vw + 585px);
    margin-right: -moz-calc(-50vw + 585px);
    margin-right: calc(-50vw + 585px);
  }
  .our-company .left .content {
    padding: 30px;
  }
  .our-company .left .content h2 {
    font-size: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .our-company .left .content .desc {
    margin-bottom: 30px;
  }
  .button--nanuk {
    padding: 0 1em;
  }
  .our-company .right .btns > div {
    margin-right: 5%;
    margin-bottom: 30px;
  }
  .font-20 {
    font-size: 18px;
  }
  .gxs-4 .bottom {
    padding: 0 60px;
  }
  #footer .footer-top .list-warp {
    margin: -15px;
  }
  #footer .footer-top .list-item {
    padding: 15px;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 20px;
    font-size: 16px;
  }
  #header .nav .ui.menu .logo {
    width: 100px;
  }
  #banner h2 {
    font-size: 30px;
  }
  .font-18 {
    font-size: 16px;
  }
  .baseBtn {
    min-width: auto;
  }
  .i-advantage ul {
    margin: 0 -15px;
  }
  .i-advantage ul li {
    padding: 0 15px;
  }
  #banner h2 {
    margin-bottom: 15px;
  }
  #banner p {
    margin-bottom: 20px;
  }
  .i-category1 .list ul li:first-child > div {
    height: 640px;
  }
  .i-category1 .list ul li > div {
    height: 305px;
  }
  .i-category1 .list ul li > div .name,
  .i-category1 .list ul li > div .text {
    padding: 15px;
  }
  .i-contact .name {
    font-size: 30px;
  }
  .i-contact .form ul li input,
  .i-contact .form ul li textarea {
    font-size: 14px;
  }
  .i-contact .form ul li input[type='submit'] {
    font-size: 16px;
  }
  .i-contact .form ul {
    margin-right: -15px;
  }
  .i-contact .form ul li {
    padding-right: 15px;
  }
  .i-category2 .right > div {
    margin-right: -webkit-calc(-50vw + 485px);
    margin-right: -moz-calc(-50vw + 485px);
    margin-right: calc(-50vw + 485px);
  }
  .i-category2 .right .slick-list {
    padding-right: 35%;
  }
  .our-test .box .left .slick-one {
    margin-left: -webkit-calc(-50vw + 485px);
    margin-left: -moz-calc(-50vw + 485px);
    margin-left: calc(-50vw + 485px);
  }
  .c-business_pagination_item {
    font-size: 14px;
    padding-left: 15px;
  }
  .font-36 {
    font-size: 24px;
  }
  .our-test .box .right .tab-list ul li {
    margin-top: 20px;
  }
  .font-16 {
    font-size: 14px;
  }
  .font-20 {
    font-size: 16px;
  }
  .our-company .right > div {
    margin-right: -webkit-calc(-50vw + 485px);
    margin-right: -moz-calc(-50vw + 485px);
    margin-right: calc(-50vw + 485px);
  }
  .our-company .left .content h2 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .button--nanuk > span {
    line-height: 50px;
    height: 50px;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner .story {
    display: none;
  }
  .i-advantage ul {
    margin: -15px;
  }
  .i-advantage ul li {
    width: 100%!important;
    padding: 15px;
  }
  .baseTit {
    font-size: 28px;
  }
  .i-category1 {
    padding: 60px 0;
  }
  .i-category1 .list ul li {
    width: 50%!important;
  }
  .i-category1 .list ul li:first-child > div {
    height: 540px;
  }
  .i-category1 .list ul li > div {
    height: 255px;
  }
  .i-contact {
    padding: 60px 0;
  }
  .i-contact .form {
    margin-top: 40px;
  }
  .i-contact .form ul {
    margin: -15px;
  }
  .i-contact .form ul li {
    padding: 15px;
  }
  .i-category2 {
    padding: 60px 0 120px;
  }
  .i-category2 .right .slick-list {
    padding: 0;
  }
  .i-category2 .right > div {
    margin-right: 0;
  }
  .i-category2 .left {
    padding: 0;
    width: 100%;
    margin-bottom: 40px;
  }
  .i-category2 .left .desc {
    margin-bottom: 30px;
  }
  .i-category2 .right {
    width: 100%;
  }
  .font-24 {
    font-size: 18px;
  }
  .our-test .box .right .tab-list {
    display: none;
  }
  .our-test .box .left {
    width: 100%;
  }
  .our-test .box .left .slick-one {
    margin-left: 0;
    margin-right: 0;
  }
  .hide-1000 {
    display: none;
  }
  .our-test .box .right {
    width: 100%;
  }
  .our-company .left {
    width: 100%!important;
  }
  .our-company .right {
    width: 100%!important;
  }
  .our-company .right > div {
    margin-left: 0;
    margin-right: 0;
  }
  .our-company .right .btns {
    padding: 30px 0 0 5%;
    text-align: center;
  }
  .our-company {
    padding-bottom: 0;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .left {
    width: 100%;
  }
  .our-news .left img {
    display: none;
  }
  .our-news .right {
    width: 100%;
  }
  .gxs-4 .top .text {
    max-width: 100%;
  }
  .gxs-4 .top .text p {
    color: white;
  }
  .gxs-4 {
    padding-top: 60px;
  }
  #footer .footer-top .box {
    padding: 40px 0;
  }
  #footer .footer-top .list-item {
    width: 50%;
  }
  .t-footer_nav {
    display: none;
  }
  .t-footer_content_smoothTop {
    display: none;
  }
  #footer .footer-bottom .fl,
  #footer .footer-bottom .fr {
    float: none;
    text-align: center;
  }
  #footer .footer-bottom {
    padding: 15px 0;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #banner h2 {
    font-size: 24px;
  }
  #banner h2 br {
    display: none;
  }
  #banner p br {
    display: none;
  }
  #banner p {
    font-size: 14px;
  }
  .font-18 {
    font-size: 14px;
  }
  #banner .left {
    margin-left: 0;
  }
  .baseBtn {
    line-height: 40px;
  }
  .i-advantage {
    display: none;
  }
  .baseTit {
    font-size: 24px;
  }
  .i-category1 .list ul {
    margin: -10px;
  }
  .i-category1 .list ul li {
    padding: 10px;
  }
  .i-category1 .list ul li > div {
    height: 260px;
  }
  .i-contact .name {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .i-contact .name br {
    display: none;
  }
  .i-contact .form ul {
    margin: -5px;
  }
  .i-contact .form ul li {
    padding: 5px;
  }
  .i-category2 .right ul {
    margin: -10px;
  }
  .i-category2 .right ul li {
    padding: 10px;
  }
  .i-category2::after {
    font-size: 80px;
    left: 0;
  }
  .gxs-4 {
    display: none;
  }
}
@media (max-width: 500px) {
  #banner li {
    height: 300px;
  }
  #banner li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .i-category1 .list ul li {
    width: 100%!important;
  }
  .i-category1 .list ul li > div .name {
    display: none;
  }
  .i-category1 .list ul li > div .text {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .i-category2 {
    padding: 60px 0;
  }
  .our-test .box .right .slick-two {
    padding: 15px;
  }
  .font-36 {
    font-size: 20px;
  }
  .font-24 {
    font-size: 16px;
  }
  .our-company .left .content {
    padding: 15px;
  }
  .our-company .left .content h2 {
    font-size: 20px;
  }
  .our-company .right .btns > div {
    display: block;
    margin-bottom: 20px;
  }
  .our-company .right .btns {
    padding: 20px 0 0 5%;
  }
  .hide-500 {
    display: none!important;
  }
  #footer .footer-top .list-item {
    width: 100%;
  }
}


.inner-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center center;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.inner-banner .text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
}
.inner-banner .text h2 {
  margin-bottom: 15px;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
}
.inner-banner .text .mbx {
  font-size: 17px;
}
.inner-page .more {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  text-align: center;
  line-height: 61px;
  font-size: 18px;
}
.inner-page .more img {
  vertical-align: middle;
  margin-left: 24px;
}
.inner-page .more::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  z-index: -1;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #000;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.inner-page .more:hover {
  color: #fff;
}
.inner-page .more:hover::before {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.inner-page .m-page {
  margin-top: 60px;
  text-align: center;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 1px solid rgba(24, 24, 24, 0.3);
  text-align: center;
  font-size: 18px;
  color: #333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: inline-block;
}
.inner-page .m-page a:hover {
  background: #036eb8;
  color: #fff;
  border-color: #036eb8;
}
.inner-page .m-page span.current {
  background: #036eb8;
  color: #fff;
  border-color: #036eb8;
}
.about-page h2.title {
  font-size: 48px;
  color: #036eb8;
  font-weight: bold;
}
.about-page .tab {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 122px;
  padding: 18px 0;
  background-color: #fcfcf7;
  border: solid 1px #dfddda;
  font-weight: 500;
  color: #036eb8;
}
.about-page .tab .ui.container {
  max-width: 1230px;
  width: 100%;
}
.about-page .tab .list {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .tab .list a {
  font-size: 14px;
}
.about-page .tab .list a::before {
  content: '';
  width: 13px;
  height: 13px;
  border: solid 1px #036eb8;
  display: inline-block;
  vertical-align: top;
  margin-right: 7px;
  margin-top: 3px;
}
.about-page .tab .list a.active::before {
  background: #036eb8;
}
.about-page .tab ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .tab ul li a {
  font-size: 14px;
}
.about-page .tab ul li a::before {
  content: '';
  width: 13px;
  height: 13px;
  border: solid 1px #036eb8;
  display: inline-block;
  vertical-align: top;
  margin-right: 7px;
  margin-top: 3px;
}
.about-page .tab ul li a.active a::before {
  background: #036eb8;
}
.about-page .about-1 {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.about-page .about-1 .img {
  width: 44.33%;
}
.about-page .about-1 .text {
  padding: 24px 0 0 88px;
}
.about-page .about-1 .text span {
  font-size: 24px;
  font-weight: bold;
  color: #036eb8;
}
.about-page .about-1 .text h3 {
  font-size: 36px;
  color: #292929;
  font-weight: bold;
  margin-top: 14px;
}
.about-page .about-1 .text .con {
  font-size: 16px;
  color: #151515;
  margin-top: 50px;
}
.about-page .about-1::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 57%;
  background: #f2f8fb;
}
.about-page .about-2 {
  background: #f2f8fb;
  padding-bottom: 92px;
  position: relative;
  z-index: 1;
}
.about-page .about-2 .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.about-page .about-2 li .text {
  padding: 80px 53px 0 0;
  width: 49%;
}
.about-page .about-2 li .text h3 {
  font-size: 36px;
  color: #292929;
  font-weight: bold;
}
.about-page .about-2 li .text .desc {
  font-size: 16px;
  color: #232323;
  margin-top: 40px;
}
.about-page .about-2 li .img {
  width: 51%;
}
.about-page .about-2 li:nth-child(even) .img {
  float: left;
}
.about-page .about-2 li:nth-child(even) .text {
  float: right;
  padding: 80px 0 0 100px;
}
.about-page .about-histroy {
  padding: 106px 0;
}
.about-page .about-histroy h2.title {
  text-align: center;
}
.about-page .about-histroy .histroy-list {
  position: relative;
  margin-top: 50px;
}
.about-page .about-histroy .histroy-list::after {
  content: '';
  position: absolute;
  background: #9e9e9e;
  width: 100%;
  height: 1px;
  left: 0;
  top: 20px;
  z-index: -1;
}
.about-page .about-histroy .histroy-list ul li {
  padding: 0 20px;
  padding-top: 80px;
  position: relative;
}
.about-page .about-histroy .histroy-list ul li::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 48px;
  background: url(../images/accd.png) no-repeat center;
  left: 46px;
  top: 6px;
  z-index: 2;
}
.about-page .about-histroy .histroy-list ul li h3 {
  font-size: 36px;
  color: #036eb8;
  font-weight: bold;
}
.about-page .about-histroy .histroy-list ul li p {
  font-size: 18px;
  line-height: 2;
  color: #292929;
  margin-top: 20px;
}
.about-page .about-3 {
  padding: 40px 0 54px;
}
.about-page .about-3 .info {
  background-color: #f4f2e6;
  border-radius: 30px;
  text-align: center;
  padding: 63px 111px 97px 127px;
}
.about-page .about-3 .info .desc {
  margin-top: 60px;
  font-size: 18px;
  color: #292929;
}
.about-page .about-3 .shows {
  padding-top: 27px;
}
.about-page .about-3 .shows ul {
  padding: 0 86px 0 102px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align-items: center;
  -moz-box-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
}
.about-page .about-3 .shows ul li {
  display: inline-block;
}
.about-page .about-4 {
  padding: 90px 0;
  overflow: hidden;
}
.about-page .about-4 .left {
  width: 22%;
  padding-top: 113px;
}
.about-page .about-4 .left .arrow {
  margin-top: 205px;
}
.about-page .about-4 .left .arrow .al,
.about-page .about-4 .left .arrow .ar {
  display: inline-block;
  cursor: pointer;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  border: solid 1px #120e0e;
  font-size: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .left .arrow .al:hover,
.about-page .about-4 .left .arrow .ar:hover {
  background: #036eb8;
  border-color: #036eb8;
  color: #fff;
}
.about-page .about-4 .left .arrow .ar {
  margin-left: 20px;
}
.about-page .about-4 .right {
  width: 98%;
  margin-right: -20%;
}
.about-page .about-4 .right ul .slick-list {
  padding-right: 490px !important;
}
.about-page .about-4 .right ul li {
  position: relative;
}
.about-page .about-4 .right ul li a {
  display: block;
}
.about-page .about-4 .right ul li h3 {
  position: absolute;
  top: 27px;
  left: 39px;
  min-width: 256px;
  height: 60px;
  background-color: #ffffff;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .klopfg,
  .klopws,
  .iertyry {
    display: none !important;
  }
}
@media screen and (max-width: 1400px) {
  .about-page .about-4 .right ul .slick-list {
    padding-right: 400px !important;
  }
}
@media screen and (max-width: 1300px) {
  .about-page .about-4 .right ul .slick-list {
    padding-right: 320px !important;
  }
}
@media screen and (max-width: 1200px) {
  .about-page .about-1 .text {
    padding: 24px 0 0 48px;
  }
  .about-page .about-4 .left {
    width: 30%;
  }
  .about-page .about-4 .right ul .slick-list {
    padding-right: 0 !important;
  }
  .about-page .about-4 .right {
    width: 70%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-1::after{
    display: none;
  }

  .about-page .about-1 .text h3{
    font-size: 24px;
  }

  .about-page .about-1 .text .con{
    font-size: 14px;
  }

  .about-page h2.title{
    font-size: 24px;
  }

  .about-page .about-2 li .text h3{
    font-size: 24px;
  }

  .inner-banner .text h2{
    font-size: 20px;
  }

  .inner-banner .text{
    transform: translateY(-50%);
    line-height: 2;
  }

  .about-page .tab .list {
    display: block;
  }
  .about-page .tab .list a {
    width: 30%;
    display: inline-block;
  }
  .about-page .about-1 .img {
    width: 100%;
  }
  .about-page .about-1 .text {
    width: 100%;
  }
  .about-page .about-2 li .text {
    width: 100%;
  }
  .about-page .about-2 li .img {
    width: 100%;
    padding-top: 30px;
  }
  .about-page .about-2 li:nth-child(even) .text {
    padding: 40px 0;
  }
  .about-page .about-3 .info {
    padding: 63px 60px 97px 60px;
  }
  .about-page .about-3 .shows ul {
    padding: 0 40px;
  }
  .about-page .about-2 .icon {
    display: none;
  }
  .about-page .tab {
    top: 60px;
  }

  .about-page .about-4 .left {
    width: 100%;
    padding-top: 0;
  }
  .about-page .about-4 .left .arrow {
    margin-top: 40px;
  }
  .about-page .about-4 .right {
    width: 100%;
    padding-top: 40px;
  }
  .about-page .about-4 .right ul li h3 {
    top: 5px;
    left: 5px;
    width: 180px;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner .text .mbx{
    font-size: 14px;
  }

  .about-page .tab {
    display: none;
  }
  .about-page .about-1 .img {
    width: 100%;
  }
  .about-page .about-1 .text {
    width: 100%;
    padding: 30px 15px 0 15px;
  }
  .about-page .about-2 li .text {
    padding: 80px 0 0 0;
  }
  .about-page .about-2 li .text .desc {
    font-size: 15px;
  }
  .about-page .about-histroy .histroy-list ul li p {
    font-size: 15px;
  }
  .about-page .about-3 {
    display: none;
  }
  
}
.application-page {
  padding: 100px 0 107px;
}
.application-page .app-1 {
  margin-bottom: 60px;
  text-align: center;
}
.application-page .app-1 h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}
.application-page .ap-list li {
  margin-bottom: 204px;
}
.application-page .ap-list li .img {
  width: 52.95%;
  vertical-align: middle;
}
.application-page .ap-list li .text {
  width: 47.05%;
  vertical-align: middle;
  padding-left: 30px;
  font-size: 16px;
  line-height: 2;
  color: #120e0e;
}
.application-page .ap-list li .text h3 {
  font-size: 48px;
  line-height: 1;
  color: #120e0e;
  font-weight: bold;
  margin-bottom: 49px;
}
.application-page .ap-list li .text p {
  font-size: 16px;
  line-height: 1.5;
  color: #120e0e;
  margin-top: 49px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.application-page .ap-list li .text strong {
  font-weight: bold;
}
.application-page .ap-list li .text .more {
  width: 137px;
  height: 48px;
  background-color: #036eb8;
  border-radius: 24px;
  line-height: 48px;
  color: #f4f2e6;
  font-size: 16px;
  margin-top: 42px;
}
.application-page .ap-list li .text .products {
  margin-top: 40px;
}
.application-page .ap-list li .text .products h4 {
  border-bottom: 1px solid #151515;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 17px;
}
.application-page .ap-list li .text .products .content {
  margin-top: 18px;
}
.application-page .ap-list li .text .products .content ul {
  margin-right: -11px;
}
.application-page .ap-list li .text .products .content ul .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.application-page .ap-list li .text .products .content ul .slick-slide {
  padding-right: 11px;
}
.application-page .ap-list li .text .products .content ul li {
  margin-bottom: 0;
}
.application-page .ap-list li .text .products .content ul li a.img-box {
  display: block;
  background: #f4f2e6;
  position: relative;
}
.application-page .ap-list li .text .products .content ul li a.img-box img {
  width: 100%;
}
.application-page .ap-list li .text .products .content ul li .icon {
  position: absolute;
  top: 46%;
  left: 43%;
  width: 32px;
  height: 32px;
  background-color: #036eb8;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.application-page .ap-list li .text .products .content ul li .icon img {
  display: inline-block;
  vertical-align: middle;
  width: auto !important;
}
.application-page .ap-list li .text .products .content ul li h5 {
  font-size: 14px;
  color: #151515;
  font-weight: bold;
  text-align: center;
  padding-top: 10px;
}
.application-page .ap-list li .text .products .content ul li:hover .icon {
  opacity: 1;
}
.application-page .ap-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .application-page .ap-list li .text p {
    margin-top: 20px;
  }
  .application-page .ap-list li .text .more {
    margin-top: 40px;
  }
  .application-page .ap-list li .text .products {
    margin-top: 40px;
  }
  .application-page .ap-list li .text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .application-page .ap-list li .img {
    width: 100%;
  }
  .application-page .ap-list li .text {
    width: 100%;
    padding: 40px 0 0 0;
  }
  .application-page .ap-list li .text .products h4 {
    font-size: 18px;
  }
}
.contact-page {
  padding: 80px 0 30px;
}
.contact-page .contact-1 {
  position: relative;
  z-index: 1;
}
.contact-page .contact-1 .info {
  width: 48%;
}
.contact-page .contact-1 .info h3 {
  font-size: 86px;
  color: #036eb8;
  margin-left: 90px;
  font-weight: bold;
}
.contact-page .contact-1 .info .list {
  padding: 0 40px 0 165px;
  margin-top: 26px;
}
.contact-page .contact-1 .info .list p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(47, 30, 18, 0.6);
}
.contact-page .contact-1 .info .list ul {
  margin-top: 60px;
}
.contact-page .contact-1 .info .list ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #292929;
  margin-bottom: 28px;
}
.contact-page .contact-1 .info .list ul li i {
  display: inline-block;
  width: 22px;
  vertical-align: top;
}
.contact-page .contact-1 .info .list ul li span {
  display: inline-block;
  width: 90%;
  padding-left: 20px;
}
.contact-page .contact-1 .info .list ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-1 .info .list ul li:nth-child(2) i {
  margin-top: 5px;
}

.contact-page .contact-1 .form {
  width: 52%;
  padding-right: 80px;
  vertical-align: bottom;
 
}
.contact-page .contact-1 .form h3 {
  font-size: 35px;
  color: #2f1e12;
  font-weight: bold;
}
.contact-page .contact-1 .form form {
  margin-top: 40px;
}
.contact-page .contact-1 .form form input[type="text"],
.contact-page .contact-1 .form form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(41, 41, 41, 0.6);
  height: 36px;
  font-size: 18px;
  color: #868686;
  margin-bottom: 44px;
}
.contact-page .contact-1 .form form input[type="text"]:focus,
.contact-page .contact-1 .form form textarea:focus {
  border-bottom-color: #036eb8;
}
.contact-page .contact-1 .form form input[type="submit"] {
  width: 137px;
  height: 48px;
  background-color: #036eb8;
  border-radius: 24px;
  border: none;
  text-align: center;
  font-size: 16px;
  color: #f4f2e6;
  margin-top: 17px;
}
.contact-page .contact-1 .icons {
  position: absolute;
 
  width: 45%;
  z-index: -1;
}
.contact-page .contact-2 {
  margin-top: 112px;
}
@media screen and (max-width: 1120px) {
  .contact-page .contact-1 .info h3 {
    font-size: 100px;
  }
  .contact-page .contact-1 .info .list {
    padding: 0 40px 0 65px;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .icons {
    display: none;
  }
  .contact-page .contact-1 .info h3 {
    font-size: 80px;
  }
  .contact-page .contact-1 .info .list {
    padding: 0 0px 0 5px;
  }
  .contact-page .contact-1 .form {
    padding-right: 60px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-1 .info {
    width: 100%;
  }
  .contact-page .contact-1 .info .list::after {
    display: none;
  }
  .contact-page .contact-1 .form {
    width: 100%;
    padding: 40px 0 0 0;
  }
  .contact-page .contact-1 .form h3 {
    font-size: 22px;
  }
  .contact-page .contact-1 .form form input[type="text"],
  .contact-page .contact-1 .form form textarea {
    font-size: 15px;
  }
}
.faq-page {
  padding: 135px 0;
}
.faq-page .faq-1 .left {
  width: 26%;
}
.faq-page .faq-1 .left h4 {
  font-size: 42px;
  font-weight: bold;
}
.faq-page .faq-1 .left p {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.67);
  margin-top: 13px;
}
.faq-page .faq-1 .left .img {
  margin-top: 45px;
}
.faq-page .faq-1 .right {
  width: 74%;
  padding-left: 90px;
}
.faq-page .faq-1 .right ul li {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}
.faq-page .faq-1 .right ul li h4 {
  position: relative;
  padding: 10px 48px;
  font-size: 20px;
}
.faq-page .faq-1 .right ul li h4::before {
  content: "\f067";
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 16px;
  font-family: 'fontAwesome';
}
.faq-page .faq-1 .right ul li h4::after {
  content: "\f105";
  position: absolute;
  right: 0;
  top: 5px;
  width: 33px;
  height: 33px;
  background-color: #036eb8;
  border: solid 1px #036eb8;
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  line-height: 33px;
  font-family: 'fontAwesome';
  color: #fff;
}
.faq-page .faq-1 .right ul li .con {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  padding: 22px 48px;
  display: none;
}
.faq-page .faq-1 .right ul li.active h4::before {
  content: "\f068";
}
.faq-page .faq-1 .right ul li.active h4::after {
  content: "\f107";
}
@media screen and (max-width: 1000px) {
  .faq-page .faq-1 .left {
    display: none;
  }
  .faq-page .faq-1 .right {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .faq-1 .right ul li h4 {
    font-size: 18px;
    padding-right: 40px;
  }
  .faq-page .faq-1 .right ul li .con {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .faq-1 .right ul li h4 {
    font-size: 16px;
    line-height: 2;
  }
  .faq-page .faq-1 .right ul li .con {
    font-size: 15px;
    line-height: 2;
  }
}
.news-page {
  padding: 93px 0;
}
.news-page .news-list ul {
  margin-right: -19px;
  margin-bottom: -127px;
}
.news-page .news-list ul li {
  padding-right: 19px;
  margin-bottom: 127px;
}
.news-page .news-list ul li a {
  display: block;
}
.news-page .news-list ul li .img {
  position: relative;
}
.news-page .news-list ul li .img img {
  width: 100%;
}
.news-page .news-list ul li .img time {
  position: absolute;
  top: 35px;
  left: 33px;
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  padding: 7px 15px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.news-page .news-list ul li .img time span {
  display: block;
  border-bottom: 1px solid rgba(21, 21, 21, 0.56);
}
.news-page .news-list ul li .text {
  padding-top: 25px;
}
.news-page .news-list ul li .text h3 {
  font-size: 20px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-page .news-list ul li .text p {
  font-size: 16px;
  line-height: 2;
  color: rgba(51, 51, 51, 0.8);
  margin-top: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-page .news-list ul li .text .mores {
  margin-top: 16px;
  font-size: 16px;
  color: #036eb8;
  text-decoration: underline;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-list ul li .text .mores:hover {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
@media screen and (max-width: 1000px) {
  .news-page .news-list ul li {
    width: 50% !important;
  }
}
@media screen and (max-width: 700px) {
  .news-page .news-list ul li {
    width: 100% !important;
  }
  .news-page .news-list ul li .img time {
    top: 10px;
    left: 10px;
  }
  .news-page .news-list ul li .text h3 {
    font-size: 18px;
  }
  .news-page .news-list ul li .text p {
    font-size: 14px;
  }
  .news-page .news-list ul li .text .mores {
    font-size: 14px;
  }
}
.newdet-page {
  padding: 108px 0 91px;
}
.newdet-page .newdet-list h1 {
  font-size: 36px;
  font-weight: bold;
  line-height: 2;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
  text-transform: uppercase;
}
.newdet-page .newdet-list time {
  display: block;
  margin-top: 32px;
  font-size: 16px;
  color: #036eb8;
}
.newdet-page .newdet-list time img {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .newdet-list time span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 19px;
}
.newdet-page .newdet-list .content {
  margin-top: 60px;
  font-size: 18px;
  line-height: 2;
}
.newdet-page .newdet-list .share {
  text-align: right;
  margin-top: 160px;
}
.newdet-page .newdet-list .share span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.newdet-page .newdet-list .share ul {
  display: inline-block;
  vertical-align: middle;
  padding-left: 19px;
}
.newdet-page .newdet-list .share ul li {
  display: inline-block;
  font-size: 18px;
  margin-right: 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .newdet-list .share ul li:last-child {
  margin-right: 0;
}
.newdet-page .newdet-list .share ul li:hover {
  color: #036eb8;
}
.newdet-page .m-link {
  border: 1px solid rgba(0, 0, 0, 0.7);
  margin-top: 30px;
  padding: 12px;
}
.newdet-page .m-link a span {
  font-size: 16px;
  color: #151515;
  
}
.newdet-page .m-link a em {
  font-size: 16px;
}
.newdet-page .m-link .next {
  text-align: right;
}
@media screen and (max-width: 700px) {
  .newdet-page .newdet-list .content {
    font-size: 16px;
  }
  .newdet-page .m-link .prev {
    width: 100%;
  }
  .newdet-page .m-link .next {
    width: 100%;
    text-align: left;
  }
  .newdet-page .m-link a em {
    font-size: 16px;
  }
  .newdet-page .m-link a span {
    font-size: 14px;
  }
}
.product-page {
  padding: 108px 0 131px;
}
.product-page .sidebox .sideleft {
  width: 75%;
}
.product-page .sidebox .sideleft .text h1 {
  font-size: 48px;
  line-height: 1.5;
  font-weight: bold;
}
.product-page .sidebox .sideleft .text h3 {
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
}
.product-page .sidebox .sideleft .text .desc {
  font-size: 18px;
  line-height: 2;
  color: #181818;
  margin-top: 28px;
}
.product-page .sidebox .sideleft .list {
  margin-top: 58px;
}
.product-page .sidebox .sideleft .list ul {
  margin: 0 -18px -120px 0;
}
.product-page .sidebox .sideleft .list ul li {
  padding-right: 18px;
  margin-bottom: 120px;
}
.product-page .sidebox .sideleft .list ul li a {
  display: block;
}
.product-page .sidebox .sideleft .list ul li .img {
  background: #fff;
  position: relative;
  border: 1px solid #ccc;
}
.product-page .sidebox .sideleft .list ul li .img img {
  width: 100%;
}
.product-page .sidebox .sideleft .list ul li .img .icon {
  position: absolute;
  top: 45%;
  left: 43%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #036eb8;
  text-align: center;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sidebox .sideleft .list ul li .img .icon img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
.product-page .sidebox .sideleft .list ul li .title {
  text-align: center;
  padding-top: 18px;
  font-size: 18px;
  font-weight: bold;
  color: #151515;
  line-height: 1.8;
}
.product-page .sidebox .sideleft .list ul li:hover .img .icon {
  opacity: 1;
}
.product-page .sidebox .sideleft .list dd p.ms {
  font-size: 18px;
  line-height: 2;
  color: #181818;
  margin-top: 32px;
}
.product-page .sidebox .sideleft .list dd .con {
  margin-top: 83px;
  font-size: 16px;
}
.product-page .sidebox .sideleft .product1-1 {
  margin-top: 83px;
}
.product-page .sidebox .sideleft .product1-1 .con {
  margin-top: 38px;
}
.product-page .sidebox .sideleft .product1-1 .con ul {
  margin-right: -11px;
}
.product-page .sidebox .sideleft .product1-1 .con ul li {
  padding-right: 11px;
}
.product-page .sidebox .sideright {
  width: 25%;
  padding-left: 3.5%;
  position: -webkit-sticky;
  position: sticky;
  top: 122px;
}
.product-page .sidebox .sideright form {
  position: relative;
  width: 100%;
}
.product-page .sidebox .sideright form input {
  width: 100%;
  line-height: 50px;
  height: 50px;
  padding: 0 60px 0 15px;
  background: #eee;
  font-size: 16px;
  color: #333;
  border: none;
}
.product-page .sidebox .sideright form input::-webkit-input-placeholder {
  color: #3f3e3e;
  opacity: 0.5;
}
.product-page .sidebox .sideright form input:-moz-placeholder {
  color: #3f3e3e;
  opacity: 0.5;
}
.product-page .sidebox .sideright form input::-moz-placeholder {
  color: #3f3e3e;
  opacity: 0.5;
}
.product-page .sidebox .sideright form input:-ms-input-placeholder {
  color: #3f3e3e;
  opacity: 0.5;
}
.product-page .sidebox .sideright form input::placeholder {
  color: #3f3e3e;
  opacity: 0.5;
}
.product-page .sidebox .sideright form input[type="submit"] {
  width: 21px;
  position: absolute;
  right: 16px;
  top: 0;
  padding: 0;
  background: url(../images/s-icon.png) center center no-repeat;
}
.product-page .sidebox .sideright h3 {
  font-size: 24px;
  color: #036eb8;
  font-weight: bold;
}
.product-page .sidebox .sideright h3::after {
  content: '';
  width: 55px;
  height: 1px;
  background-color: #036eb8;
  opacity: 0.8;
  display: block;
  margin-top: 12px;
}
.product-page .sidebox .sideright .category {
  padding-top: 76px;
}
.product-page .sidebox .sideright .category .navList {
  padding: 24px 0 0 20px;
}
.product-page .sidebox .sideright .category .navList li {
  font-size: 16px;
  line-height: 1.6;
  color: #151515;
  margin-bottom: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.product-page .sidebox .sideright .category .navList li i {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  cursor: pointer;
}
.product-page .sidebox .sideright .category .navList li:hover,
.product-page .sidebox .sideright .category .navList li.active {
  color: #036eb8;
}
.product-page .sidebox .sideright .category .navList li:last-child {
  margin-bottom: 0;
}
.product-page .sidebox .sideright .category .navList li ul.children {
  padding: 20px 0 0 10px;
  display: none;
}
.product-page .sidebox .sideright .category .navList li ul.children li {
  color: #666;
  padding-left: 26px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
.product-page .sidebox .sideright .category .navList li ul.children li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
  height: 1px;
  background: #666;
}
.product-page .sidebox .sideright .category .navList li ul.children li:hover,
.product-page .sidebox .sideright .category .navList li ul.children li.active {
  color: #036eb8;
}
.product-page .sidebox .sideright .category .navList li ul.children li:hover::before,
.product-page .sidebox .sideright .category .navList li ul.children li.active::before {
  background: #036eb8;
}
.product-page .sidebox .sideright .recommend {
  padding-top: 88px;
}
.product-page .sidebox .sideright .recommend ul {
  margin-top: 40px;
}
.product-page .sidebox .sideright .recommend ul li {
  margin-bottom: 40px;
}
.product-page .sidebox .sideright .recommend ul li .img {
  vertical-align: middle;
  background: #fff;
  width: 37%;
}
.product-page .sidebox .sideright .recommend ul li .text {
  width: 63%;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.6;
  color: #151515;
  padding-left: 17px;
}
.product-page .sidebox .sideright .recommend ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1100px) {
  .product-page .sidebox .sideright .recommend ul li .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .product-page .sidebox .sideleft .text h1{
    font-size: 24px;
  }

  .product-page .sidebox .sideleft .text .desc{
    font-size: 14px;
  }

  .product-page .sidebox .sideleft {
    width: 100%;
  }
  .product-page .sidebox .sideright {
    display: none;
  }
  .product-page .sidebox .sideleft .list ul li {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .product-page .sidebox .sideleft .list ul li {
    width: 100%;
  }
}
.prodet-page {
  padding: 106px 0 96px;
}
.prodet-page .prodet-1 .img {
  width: 58%;
}
.prodet-page .prodet-1 .img .imgbox {
  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;
}
.prodet-page .prodet-1 .img .imgbox .small {
  width: 26.5%;
  padding-right: 30px;
}
.prodet-page .prodet-1 .img .imgbox .small ul {
  margin-bottom: -21px;
}
.prodet-page .prodet-1 .img .imgbox .small ul li {
  padding-bottom: 21px;
}
.prodet-page .prodet-1 .img .imgbox .small ul li a {
  background: #fff;
  display: block;
}
.prodet-page .prodet-1 .img .imgbox .small ul li img {
  width: 100%;
  border: 1px solid #ccc;
}
.prodet-page .prodet-1 .img .imgbox .big {
  width: 73.5%;
  /*background: #f4f2e6;*/
}
.prodet-page .prodet-1 .img .imgbox .big ul {
  margin: -2px;
}
.prodet-page .prodet-1 .img .imgbox .big ul li {
  position: relative;
  padding: 2px;
}
.prodet-page .prodet-1 .img .imgbox .big ul li img {
  width: 100%;
  border: 1px solid #ccc;
}
.prodet-page .prodet-1 .img .imgbox .big ul li .icon {
  position: absolute;
  right: 25px;
  bottom: 17px;
  width: 60px;
  height: 60px;
  border: solid 1px rgba(21, 21, 21, 0.6);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
}
.prodet-page .prodet-1 .img .imgbox .big ul li .icon img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  border: none;
}
.prodet-page .prodet-1 .img .imgbox .big .slick-arrow {
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 63px;
  height: 38px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .img .imgbox .big .slick-arrow:hover {
  background-color: #036eb8;
}
.prodet-page .prodet-1 .img .imgbox .big .slick-prev {
  background: url("../images/pl.png") no-repeat center center #ffffff;
  left: 0;
}
.prodet-page .prodet-1 .img .imgbox .big .slick-next {
  background: url("../images/pr.png") no-repeat center center #ffffff;
  right: 0;
}
.prodet-page .prodet-1 .img .info {
  background: #fff;
  margin-top: 30px;
  padding-left: 26.5%;
}
.prodet-page .prodet-1 .img .info h4 {
  font-size: 18px;
  color: #151515;
  line-height: 1;
  font-weight: bold;
}
.prodet-page .prodet-1 .img .info h1 {
  font-size: 36px;
  color: #151515;
  font-weight: bold;
  line-height: 2;
}
.prodet-page .prodet-1 .img .info .con {
  font-size: 18px;
  line-height: 1.6;
  color: #151515;
  margin-top: 0px;
}
.prodet-page .prodet-1 .img .info .con strong {
  font-weight: bold;
}
.prodet-page .prodet-1 .text {
  width: 42%;
  vertical-align: bottom;
  padding: 0 0 0 43px;
}
.prodet-page .prodet-1 .text h4 {
  font-size: 18px;
  color: #151515;
  line-height: 1;
  font-weight: bold;
}
.prodet-page .prodet-1 .text h1 {
  font-size: 36px;
  color: #151515;
  font-weight: bold;
  line-height: 2;
}
.prodet-page .prodet-1 .text .con {
  font-size: 18px;
  line-height: 2;
  color: #151515;
  margin-top: 0px;
}
.prodet-page .prodet-1 .text .con strong {
  font-weight: bold;
}
.prodet-page .prodet-1 .text .btn {
  margin-top: 87px;
}
.prodet-page .prodet-1 .text .btn .more {
  display: inline-block;
  width: 137px;
  height: 48px;
  background-color: #036eb8;
  border-radius: 24px;
  text-align: center;
  line-height: 48px;
  color: #f4f2e6;
  font-size: 16px;
  margin-right: 31px;
}
.prodet-page .prodet-1 .text .btn .more:last-child {
  margin-right: 0;
}
.prodet-page .prodet-1 .text .share {
  margin-top: 100px;
}
.prodet-page .prodet-1 .text .share span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.prodet-page .prodet-1 .text .share ul {
  display: inline-block;
  vertical-align: middle;
  padding-left: 19px;
}
.prodet-page .prodet-1 .text .share ul li {
  display: inline-block;
  font-size: 18px;
  margin-right: 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .text .share ul li:last-child {
  margin-right: 0;
}
.prodet-page .prodet-1 .text .share ul li:hover {
  color: #036eb8;
}
.prodet-page .prodet-2 {
  padding-top: 60px;
}
.prodet-page .prodet-2 .options ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
.prodet-page .prodet-2 .options ul li {
  background-color: #f4f2e6;
  margin-right: 16px;
  text-align: center;
  font-size: 18px;
  color: #020202;

  line-height: 1.5;
  padding: 11px 0;
}
.prodet-page .prodet-2 .options ul li:last-child {
  margin-right: 0;
}
.prodet-page .prodet-2 .options ul li.active {
  background-color: #2f1e12;
  color: #fff;
}
.prodet-page .prodet-2 .box {
  margin-top: 39px;
}
.prodet-page .prodet-3 {
  padding-top: 100px;
}
.prodet-page .prodet-3 h3 {
  font-size: 36px;
  line-height: 1.8;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: 1px solid #151515;
  padding-bottom: 26px;
}
.prodet-page .prodet-3 .content {
  margin-top: 44px;
}
.prodet-page .prodet-3 .content ul {
  margin-right: -20px;
}
.prodet-page .prodet-3 .content ul .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.prodet-page .prodet-3 .content ul li {
  padding-right: 20px;
}
.prodet-page .prodet-3 .content ul li .img {
  background: #fff;
  position: relative;
}
.prodet-page .prodet-3 .content ul li .img img {
  width: 100%;
}
.prodet-page .prodet-3 .content ul li .img .icon {
  position: absolute;
  top: 43%;
  left: 43%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #036eb8;
  text-align: center;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .img .icon img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
.prodet-page .prodet-3 .content ul li h5 {
  font-size: 18px;
  color: #151515;
  line-height: 1.8;
  padding-top: 18px;
  text-align: center;
  font-weight: bold;
}
.prodet-page .prodet-3 .content ul li:hover .img .icon {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-1 .img {
    width: 100%;
  }
  .prodet-page .prodet-1 .text {
    width: 100%;
    padding-top: 40px;
  }
  .prodet-page .prodet-2 .options ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-2 .options ul li {
    width: 31.8%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .prodet-1 .img .imgbox .big ul li .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: 10px;
    bottom: 10px;
  }
  .prodet-page .prodet-1 .text {
    padding: 40px 0 0 0;
  }
  .prodet-page .prodet-2 .options ul li {
    width: 47%;
  }
  .prodet-page .prodet-1 .img .info {
    padding-left: 0;
  }
}
.why-page {
  padding: 130px 0;
}
.why-page h3 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
.why-page li {
  margin-bottom: 100px;
}
.why-page .list {
  margin: 115px -68px 0;
}
.why-page .list .item {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
}
.why-page .list .item .text {
  max-width: 710px;
  background-color: #f4f2e6;
  width: 87%;
  padding: 35px 40px 55px;
  margin: -86px auto 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.why-page .list .item .text h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
.why-page .list .item .text .desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
  padding: 31px 0 0 24px;
}
.why-page .list .swiper-slide {
  padding-bottom: 100px;
}
.why-page .list .swiper-slide-active .item {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
.why-page .list .swiper-slide-active .item .text {
  opacity: 1;
}
.why-page .list .swiper-pagination {
  bottom: 0;
}
.why-page .list .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  margin-right: 18px;
}
.why-page .list .swiper-pagination .swiper-pagination-bullet-active {
  background: #036eb8;
}
.why-page .list .swiper-button-prev,
.why-page .list .swiper-button-next {
  width: 37px;
  height: 37px;
  background: #036eb8;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  color: #fff;
  font-size: 18px;
  top: 34%;
}
.why-page .list .swiper-button-prev {
  left: 28.6%;
}
.why-page .list .swiper-button-next {
  right: 28.7%;
}

.prodet-page .prodet-2 .box td {
 padding: 10px 10px 10px 32px;
}



@media screen and (max-width: 1000px) {
  .why-page .list .swiper-slide-active .item .img img {
    width: 100%;
  }
  .why-page .list .item {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .why-page .list .swiper-slide-active .item {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  .why-page .list .item .text {
    max-width: 100%;
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .why-page .list .swiper-button-prev {
    left: 16%;
  }
  .why-page .list .swiper-button-next {
    right: 16%;
  }
}
.gallery-page {
  padding: 120px 0;
}
.gallery-page .list ul {
  margin: -10px;
}
.gallery-page .list ul li {
  padding: 10px;
}
.gallery-page .list ul li a.img-box {
  display: block;
}
.gallery-page .list ul li a.img-box img {
  width: 100%;
}
.gallery-page .list ul li h5 {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.gallery-page .list ul li:hover h5 {
  color: #036eb8;
}
.pageBox {
  margin-top: 140px;
  text-align: center;
}
.pageBox span {
  display: inline-block;
  width: 32px;
  height: 31px;
  line-height: 31px;
  border: solid 1px rgba(24, 24, 24, 0.3);
  font-size: 16px;
  text-align: center;
  color: #181818;
}
.pageNav {
  display: inline-block;
  vertical-align: top;
}
.pageNav a {
  display: inline-block;
  width: 32px;
  height: 31px;
  line-height: 31px;
  border: solid 1px rgba(24, 24, 24, 0.3);
  font-size: 16px;
  text-align: center;
  color: #181818;
  text-decoration: none;
}
.pageNav a.active,
#pageNav a:hover {
  
  color: #fff;
}
.prev:hover,
.next:hover {
  cursor: pointer;
 
  color: #fff;
}


.newdet-page .m-link a span:hover{
    color: #036eb8;
}



/*seo*/

.index-body .our-company .right column{


   margin-top: 115px;
}

#index-body .our-company .font-16 h1{
  display: inline;
}

.fmianyang{
  display: inline;
  line-height: 2;
}
@media screen and (max-width: 1000px){
  .seo_title, 
  ._text,
  .shuaf {
    display: none !important;
  }

  h1.Auxil-h1.wow.fadeInUp,
  div#seo_about {
    display: none !important;
  }
  div#seo_news {
    display: none !important;
  }
  .shuafs {
    display: none !important;
  }
  .newdet-page .newdet-list h1 {
    font-size: 20px;
  }
  .inner-banner {
    height: 271px;
  }
  .prodet-page .prodet-1 .text h1 {
    font-size: 28px;
  }
}

.font-16 {
  line-height: 2;
}
._name.font-20.font-bold {
    line-height: 2;
}
a.shuafs {
    width: 265px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.right_nav_list{position:fixed;bottom:40px;right:20px;z-index:10} 
.right_nav_list ul li{transition:all .5s;border-radius:50%;margin-top:10px;cursor:pointer;padding:0;position:relative;color:#fff;width:58px;height:58px;font-size:30px;background-color:#036eb8;text-align:center;line-height:58px}
.right_nav_list ul li .text{padding:0;width:100%;height:100%}
.right_nav_list ul li:hover{background-color:#000}
.right_nav_list ul li .cont{position:absolute;left:-150px;top:0;width:150px;min-height:100%;padding:0 5px;-webkit-perspective:500px;-moz-perspective:500px;perspective:500px;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;transform:rotate3d(1,0,0,-90deg);-webkit-transform:rotate3d(1,0,0,-90deg);-moz-transform:rotate3d(1,0,0,-90deg);-ms-transform:rotate3d(1,0,0,-90deg);-o-transform:rotate3d(1,0,0,-90deg);opacity:0;-webkit-transition:opacity 0.3s,-webkit-transform 0.5s;transition:opacity 0.3s,-webkit-transform 0.5s;-o-transition:opacity 0.3s,-o-transform 0.5s;-moz-transition:transform 0.5s,opacity 0.3s,-moz-transform 0.5s;transition:transform 0.5s,opacity 0.3s;transition:transform 0.5s,opacity 0.3s,-webkit-transform 0.5s,-moz-transform 0.5s,-o-transform 0.5s;transition:transform 0.5s,opacity 0.3s,-webkit-transform 0.5s;-webkit-transition:-webkit-transform 0.5s,opacity 0.3s;-moz-transition:-moz-transform 0.5s,opacity 0.3s;overflow:hidden;-webkit-transform-origin:top;-moz-transform-origin:top;-ms-transform-origin:top;-o-transform-origin:top;transform-origin:top}
.right_nav_list ul li .cont #ewm{width:100%;background-color:#fff;border-radius:5px;padding:8px;border:1px solid #ccc}
.right_nav_list ul li:hover .cont{-webkit-transform:rotate3d(0,0,0,-90deg);-moz-transform:rotate3d(0,0,0,-90deg);transform:rotate3d(0,0,0,-90deg);opacity:1}
@media (max-width:500px){.right_nav_list{right:5px;bottom:150px}
}#pups_shadow{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:0.6;z-index:21;display:none}
#seo_form_cont{position:fixed;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-height:80%;width:500px;max-width:90%;-o-box-shadow:0 0 10px rgba(0,0,0,0.1);-webkit-box-shadow:0 0 10px rgba(0,0,0,0.1);box-shadow:0 0 10px rgba(0,0,0,0.1);z-index:22;background:white;padding:30px;overflow:auto}
#seo_form_cont h4{font-size:18px;color:#222;text-transform:capitalize;line-height:1;font-weight:bold;position:absolute;left:0;width:100%;top:0;padding:15px 20px;background:#f5f5f5;-o-box-shadow:0 0 5px rgba(0,0,0,0.1);-webkit-box-shadow:0 0 5px rgba(0,0,0,0.1);box-shadow:0 0 5px rgba(0,0,0,0.1)}
#seo_form_cont form{margin-top:40px}
#seo_form_cont i.close{width:30px;height:30px;position:absolute;top:10px;right:10px;background:#eee;cursor:pointer;cursor:hand;-webkit-transition:0.5s;transition:0.5s}
#seo_form_cont i.close::after,#seo_form_cont i.close::before{content:'';-webkit-transition:0.5s;transition:0.5s;width:70%;height:2px;margin-top:-1px;background:black;position:absolute;top:50%;left:15%;-webkit-transform:rotate(45deg);transform:rotate(45deg)}
#seo_form_cont i.close::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}
#seo_form_cont i.close:hover{background:#1c5715}
#seo_form_cont i.close:hover::before,#seo_form_cont i.close:hover::after{background:white}
#seo_form_cont ul li{margin-bottom:10px;position:relative}
#seo_form_cont ul li label{font-size:14px;margin-bottom:10px;display:block}
#seo_form_cont ul li label em{color:red;margin-right:2px}
#seo_form_cont ul li input,#seo_form_cont ul li textarea{width:100%;line-height:24px;padding:6px 15px;border:1px solid #eee;-webkit-transition:0.5s;transition:0.5s;font-size:16px}
#seo_form_cont ul li input:focus,#seo_form_cont ul li textarea:focus{border-color:#1c5715}
#seo_form_cont ul li textarea{height:80px}
#seo_form_cont ul li input[type="submit"]{width:auto;padding:6px 40px;display:inline-block;background:#000000;color:white;-webkit-transition:0.5s;transition:0.5s;cursor:pointer}
#seo_form_cont ul li input[type="submit"]:hover{opacity:0.7}
#seo_form_cont ul li:last-child{margin-bottom:0}
