@font-face {
  font-family: 'mbk';
  src: url(../fonts/Metropolis-Black.ttf) format('truetype'), url(../fonts/Metropolis-Black.eot) format('eot'), url(../fonts/Metropolis-Black.woff) format('woff'), url(../fonts/Metropolis-Black.woff2) format('woff2');
}
@font-face {
  font-family: 'mb';
  src: url(../fonts/Metropolis-Bold.ttf) format('truetype'), url(../fonts/Metropolis-Bold.eot) format('eot'), url(../fonts/Metropolis-Bold.woff) format('woff'), url(../fonts/Metropolis-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'meb';
  src: url(../fonts/Metropolis-ExtraBold.ttf) format('truetype'), url(../fonts/Metropolis-ExtraBold.eot) format('eot'), url(../fonts/Metropolis-ExtraBold.woff) format('woff'), url(../fonts/Metropolis-ExtraBold.woff2) format('woff2');
}
@font-face {
  font-family: 'mel';
  src: url(../fonts/Metropolis-ExtraLight.ttf) format('truetype'), url(../fonts/Metropolis-ExtraLight.eot) format('eot'), url(../fonts/Metropolis-ExtraLight.woff) format('woff'), url(../fonts/Metropolis-ExtraLight.woff2) format('woff2');
}
@font-face {
  font-family: 'mm';
  src: url(../fonts/Metropolis-Medium.ttf) format('truetype'), url(../fonts/Metropolis-Medium.eot) format('eot'), url(../fonts/Metropolis-Medium.woff) format('woff'), url(../fonts/Metropolis-Medium.woff2) format('woff2');
}
@font-face {
  font-family: 'mr';
  src: url(../fonts/Metropolis-Regular.ttf) format('truetype'), url(../fonts/Metropolis-Regular.eot) format('eot'), url(../fonts/Metropolis-Regular.woff) format('woff'), url(../fonts/Metropolis-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'mt';
  src: url(../fonts/Metropolis-Thin.ttf) format('truetype'), url(../fonts/Metropolis-Thin.eot) format('eot'), url(../fonts/Metropolis-Thin.woff) format('woff'), url(../fonts/Metropolis-Thin.woff2) format('woff2');
}
body {
  font-family: 'mr', Arial, sans-serif;
}
img {image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */      
image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */ 
image-rendering: crisp-edges; 
-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */}

.ui.container {
  padding: 0 15px;
  position: relative;
  max-width: 1210px;
  margin: auto;
}
#header {
  z-index: 20;
  position: relative;
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: #da0428;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
#header .nav .ui.menu {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
  background-color: #fff;
  padding: 8px 3rem 8px 1rem;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 2vw;
  font-size: 0.9rem;
  font-family: 'mb';
  color: white;
  -webkit-perspective: 500px;
  perspective: 500px;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover::after {
  left: 0;
  width: 100%;
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  perspective: 500px;
  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;
  transform-origin: 0 0 0;
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #fd2318;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 15px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-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:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #fff;
  padding: 25px 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .language {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  padding: 0 1.5rem;
}
#header .nav .ui.menu .language a {
  display: inline-block;
  width: 8rem;
  font-size: 16px;
  font-family: 'mb';
  line-height: 3rem;
  border-radius: 3rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  color: #da0428;
  background-color: #fff;
  padding: 0 1rem;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .language a:hover {
  transform: scale(0.95);
}
#header .nav .ui.menu .language a.cn {
  position: absolute;
  top: 100%;
  right: 1.5rem;
  display: none;
}
#header .nav .ui.menu .language a.third {
  position: absolute;
  top: 200%;
  right: 1.5rem;
  display: none;
}
#header .nav .ui.menu .language:hover a.cn,
#header .nav .ui.menu .language:hover a.third {
  display: block;
}
#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%);
  -o-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;
  -ms-transition: .5s;
  -o-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: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
#index-body .partner .par-box ul.slick-dots {
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#index-body .partner .par-box ul ul.slick-dots li {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 8px;
  background-color: #e5e5e5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#index-body .partner .par-box ul ul.slick-dots li button {
  display: none;
}
#index-body .partner .par-box ul ul.slick-dots li.slick-active {
  width: 31px;
  background-color: #da0428;
}
#index-body .news .news-box ul.slick-dots {
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#index-body .news .news-box ul ul.slick-dots li {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 8px;
  background-color: #e5e5e5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#index-body .news .news-box ul ul.slick-dots li button {
  display: none;
}
#index-body .news .news-box ul ul.slick-dots li.slick-active {
  width: 31px;
  background-color: #da0428;
}
table {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
table td,
table th {
  /*padding: 5px 10px;
  border: 1px solid #666;
  width: 50%;*/
}
table td:first-child {
  color: #2d2d2d;
}
table td:last-child {
  color: #666;
}
.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;
  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;
  -moz-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: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
}
#mobile .yy {
  content: '';
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 100%;
  top: 10px;
  cursor: pointer;
  cursor: hand;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100vh;
  display: block;
  background: #222;
  padding: 40px 10%;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: #fd2318;
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: #fd2318;
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active .yy {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  -o-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  -o-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#banner {
  position: relative;
}
#banner ul li {
  position: relative;
}
#banner ul li > img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}
#banner ul li .text {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
#banner ul li .text .ui.container {
  max-width: 1720px;
}
#banner ul li .text .left {
  width: 55%;
  vertical-align: middle;
}
#banner ul li .text .left img {
  margin: auto;
}
#banner ul li .text .right {
  width: 45%;
  vertical-align: middle;
  background-color: #fff;
  padding: 2rem 1.5rem 0;
}
#banner ul li .text .right h3 {
  font-size: 1.5rem;
  font-family: 'mbk';
  text-transform: uppercase;
  line-height: 1.3;
  color: #1d1d1d;
  padding: 0 1rem;
  font-weight: bold; 
}
#banner ul li .text .right p {
font-size: 14px;
  color: #020202;
  padding: 1.5rem 1rem 1.25rem;
}
#banner ul li .text .right .grid-box .column {
  text-align: center;
  padding: 0 10px;
}
#banner ul li .text .right .grid-box .column img {
  display: inline-block;
  height: 18px;
  margin-bottom: 15px;
}
#banner ul li .text .right .grid-box .column h4 {
  font-size: 0.9rem;
  font-family: 'mbk';
  text-transform: uppercase;
  line-height: 1.299;
  color: #1d1d1d;
  font-weight: bold; 
}
#banner ul li .text .right .more {
  text-align: center;
  padding-top: 2rem;
}
#banner ul li .text .right .more a {
  display: inline-block;
  font-size: 0.9rem;
  font-family: 'meb';
  line-height: 52px;
  border-radius: 52px;
  box-shadow: 0px 0px 68.62px 4.38px rgba(131, 26, 26, 0.32);
  color: #fff;
  background-color: #da0428;
  padding: 0 2.5rem;
  transform: translateY(50%);
  transition: .5s;
}
#banner ul li .text .right .more a:hover {
  transform: translateY(40%);
}
#index-body .product {
  padding: 5rem 0;
}
#index-body .product h3 {
  font-size: 2.2rem;
  font-family: 'mbk';
  color: #1d1d1d;
}
#index-body .product .grid-box .left {
  width: 24%;
}
#index-body .product .grid-box .left .list ul li {
  padding: 10px 1.5rem 10px 0;
}
#index-body .product .grid-box .left .list ul li span {
  position: relative;
  display: block;
  font-size: 15px;
  text-align: center;
  color: #434343;
  background-color: #f4f4f4;
  padding: 1rem 0;
  transition: .3s;
}
#index-body .product .grid-box .left .list ul li span::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 11px 0 11px 12px;
  border-color: transparent transparent transparent #434343;
  opacity: 0;
  transition: .3s;
}
#index-body .product .grid-box .left .list ul li span:hover {
  color: #fff;
  background-color: #434343;
}
#index-body .product .grid-box .left .list ul li span:hover::after {
  opacity: 1;
}
/*#index-body .product .grid-box .left .list ul .slick-slide.slick-current li a,*/
#index-body .product .grid-box .left .list ul li.active span {
  color: #fff;
  background-color: #434343;
}
/*#index-body .product .grid-box .left .list ul .slick-slide.slick-current li a::after,*/
#index-body .product .grid-box .left .list ul li.active span::after {
  opacity: 1;
}
#index-body .product .grid-box .left .prev-next {
  display: flex;
  font-size: 0;
  padding-top: 10px;
  padding-right: 1.5rem;
}
#index-body .product .grid-box .left .prev-next a {
  display: inline-block;
  font-size: 30px;
  width: 50%;
  line-height: 62px;
  text-align: center;
  color: #434343;
  background-color: #f4f4f4;
  margin: 0 1px;
  transition: .3s;
}
#index-body .product .grid-box .left .prev-next a:hover {
  color: #fff;
  background-color: #434343;
}
#index-body .product .grid-box .left .prev-next a:hover::after {
  opacity: 1;
}
#index-body .product .grid-box .right {
  width: 76%;
}
#index-body .product .grid-box .right .box ol > li {
  display: none;
}
#index-body .product .grid-box .right .box ol > li.active {
  display: block;
}
#index-body .product .grid-box .right .box ul li {
  padding: 10px;
}
#index-body .product .grid-box .right .box ul li .ig {
  text-align: center;
}
#index-body .product .grid-box .right .box ul li .ig a {
  display: block;
  /*border: 1px solid #eeeeee;*/
}
#index-body .product .grid-box .right .box ul li .ig a img {
  display: inline-block;
}
#index-body .product .grid-box .right .box ul li .ig h4 {
  font-size: 16px;
  text-align: center;
  color: #434343;
  padding: 8px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index-body .product .grid-box .right .box .more {
  text-align: center;
  padding-top: 2rem;
}
#index-body .product .grid-box .right .box .more a {
  display: inline-block;
  font-size: 18px;
  font-family: 'meb';
  color: #da0444;
}
#index-body .product .grid-box .right .box .more a i {
  position: relative;
  left: 5px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: .3s;
}
#index-body .product .grid-box .right .box .more a:hover i {
  left: 10px;
}
#index-body .solution {
  position: relative;
  padding: 4rem 0;
}
#index-body .solution::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  height: 62%;
  width: 100%;
  background-color: #f4f4f4;
}
#index-body .solution h3 {
  font-size: 2.2rem;
  font-family: 'mbk';
  text-align: center;
  color: #1d1d1d;
  padding-bottom: 2rem;
}
#index-body .solution ul li {
  padding: 0 10px;
}
#index-body .solution ul li .ig .img img {
  width: 100%;
}
#index-body .solution ul li .ig .text {
  padding-right: 1rem;
}
#index-body .solution ul li .ig .text h4 {
  font-size: 16px;
  font-family: 'mb';
  color: #2c2b2b;
  padding: 15px 0;
}
#index-body .solution ul li .ig .text .con {
  font-size: 16px;
  color: #2c2b2b;
  line-height: 1.75;
}
#index-body .solution ul li .ig .text .more {
  padding-top: 1.8rem;
}
#index-body .solution ul li .ig .text .more a {
  display: inline-block;
  font-size: 16px;
  font-family: 'meb';
  color: #e01c28;
}
#index-body .solution ul li .ig .text .more a i {
  position: relative;
  left: 5px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: .3s;
}
#index-body .solution ul li .ig .text .more a:hover i {
  left: 10px;
}
#index-body .app {
  position: relative;
}
#index-body .app::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  height: 85%;
  width: 75%;
  background-color: #da0428;
}
#index-body .app .grid-box {
  padding-bottom: 2rem;
}
#index-body .app .grid-box .left {
  position: relative;
  vertical-align: bottom;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
#index-body .app .grid-box .left ul {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
}
#index-body .app .grid-box .left .prev-next a {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  background-color: #da0428;
  padding: 10px 24px;
}
#index-body .app .grid-box .left .prev-next a.prev {
  left: 0;
}
#index-body .app .grid-box .left .prev-next a.next {
  right: 1rem;
}
#index-body .app .grid-box .right {
  vertical-align: bottom;
  padding: 0 0 3rem 2rem;
}
#index-body .app .grid-box .right .text {
  color: #fff;
}
#index-body .app .grid-box .right .text h3 {
  font-size: 2rem;
  font-family: 'mbk';
}
#index-body .app .grid-box .right .text p {
  font-size: 16px;
}
#index-body .app .grid-box .right .text .more {
  padding-top: 1.5rem;
}
#index-body .app .grid-box .right .text .more a {
  display: inline-block;
  font-size: 1rem;
  font-family: 'mbk';
  color: #da0428;
  background-color: #fff;
  padding: 0 2.5rem 0 1rem;
}
#index-body .app .grid-box .right .text .more a i {
  position: relative;
  left: 5px;
  font-size: 1.2em;
  transition: .3s;
}
#index-body .app .grid-box .right .text .more a:hover i {
  left: 10px;
}
#index-body .app .grid-box.list {
  padding-left: 15%;
}
#index-body .app .grid-box.list .column {
  padding-bottom: 10px;
}
#index-body .app .grid-box.list .column a {
  font-size: 18px;
  font-family: 'mb';
  color: #fff;
}
#index-body .app .grid-box.list .column a i {
  position: relative;
  left: 5px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: .5s;
}
#index-body .app .grid-box.list .column a:hover i {
  left: 10px;
}
#index-body .choose {
  padding: 4rem 0;
}
#index-body .choose .ui.container {
  max-width: 1820px;
}
#index-body .choose h3 {
  font-size: 2.2rem;
  font-family: 'mbk';
  text-align: center;
  color: #1d1d1d;
}
#index-body .choose .choose-box ul {
  display: flex;
  flex-wrap: wrap;
}
#index-body .choose .choose-box ul li {
  padding: 4rem 10px 0;
}
#index-body .choose .choose-box ul li .ig {
  position: relative;
  height: 100%;
  text-align: center;
  box-shadow: 0 0 15px 5px #eee;
  padding: 0 2rem 2rem;
  transition: .5s;
  cursor: pointer;
}
#index-body .choose .choose-box ul li .ig:hover {
  transform: translateY(-15px);
}
#index-body .choose .choose-box ul li .ig span {
  display: inline-block;
  font-size: 1.1rem;
  font-family: 'mbk';
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  border-radius: 50%;
  text-align: center;
  transform: translateY(-50%);
  color: #434343;
  background-color: #f4f4f4;
}
#index-body .choose .choose-box ul li .ig h4 {
  font-size: 18px;
  font-family: 'mb';
  color: #1d1d1d;
  padding-bottom: 1rem;
}
#index-body .choose .choose-box ul li .ig .con {
  font-size: 16px;
  line-height: 1.75;
  color: #1d1d1d;
}
#index-body .about {
  padding: 2rem 0 7rem;
}
#index-body .about .grid-box .left {
  padding-right: 2rem;
}
#index-body .about .grid-box .left .text h3 {
  font-size: 2rem;
  font-family: 'mbk';
  line-height: 1.25;
  color: #1d1d1d;
}
#index-body .about .grid-box .left .text p {
  font-size: 16px;
  line-height: 1.75;
  color: #1d1d1d;
  padding: 1rem 0 3rem;
}
#index-body .about .grid-box .left .text a {
  display: inline-block;
  font-size: 16px;
  font-family: 'meb';
  color: #e01c28;
}
#index-body .about .grid-box .left .text a i {
  position: relative;
  left: 5px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: .3s;
}
#index-body .about .grid-box .left .text a:hover i {
  left: 10px;
}
#index-body .about .grid-box .right .img {
  font-size: 0;
  padding-top: 2.5rem;
}
#index-body .about .grid-box .right .img img {
  position: relative;
  display: inline-block;
  width: 48%;
  margin: 0 1%;
}
#index-body .about .grid-box .right .img img:nth-child(2) {
  top: -3.5rem;
}
#index-body .factory-teach {
  position: relative;
}
#index-body .factory-teach::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 49%;
  height: 90%;
  background-color: #f4f4f4;
}
#index-body .factory-teach .factory {
  /*padding: 1.25rem 0;*/
}
#index-body .factory-teach .factory .grid-box .left {
  vertical-align: middle;
}
#index-body .factory-teach .factory .grid-box .left .img {
  display: block;
  overflow: hidden;
}
#index-body .factory-teach .factory .grid-box .left .img img {
  width: 100%;
  transition: 1s linear;
}
#index-body .factory-teach .factory .grid-box .left .img:hover img {
  transform: scale(1.1);
}
#index-body .factory-teach .factory .grid-box .right {
  vertical-align: middle;
}
#index-body .factory-teach .factory .grid-box .right .text {
  max-width: 620px;
  padding-left: 3.5rem;
  padding-right: 1rem;
}
#index-body .factory-teach .factory .grid-box .right .text h3 {
  font-size: 2rem;
  font-family: 'mbk';
  line-height: 1.25;
  color: #1d1d1d;
}
#index-body .factory-teach .factory .grid-box .right .text p {
  font-size: 16px;
  line-height: 1.75;
  color: #1d1d1d;
  padding: 0.5rem 0 4.5rem;
}
#index-body .factory-teach .factory .grid-box .right .text a {
  font-size: 16px;
  font-family: 'meb';
  color: #e01c28;
}
#index-body .factory-teach .factory .grid-box .right .text a i {
  position: relative;
  left: 5px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: .3s;
}
#index-body .factory-teach .factory .grid-box .right .text a:hover i {
  left: 10px;
}
#index-body .factory-teach .teaching {
  padding: 1.25rem 0;
}
#index-body .factory-teach .teaching .grid-box .left {
  vertical-align: middle;
}
#index-body .factory-teach .teaching .grid-box .left .text h3 {
  font-size: 2rem;
  font-family: 'mbk';
  line-height: 1.25;
  color: #1d1d1d;
}
#index-body .factory-teach .teaching .grid-box .left .text .con {
  font-size: 16px;
  line-height: 1.625;
  color: #1d1d1d;
  padding: 0.5rem 0 3.5rem;
}
#index-body .factory-teach .teaching .grid-box .left .text .con li {
  position: relative;
  padding-left: 20px;
}
#index-body .factory-teach .teaching .grid-box .left .text .con li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-color: transparent transparent transparent #da0428;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  transition: .5s;
}
#index-body .factory-teach .teaching .grid-box .left .text a {
  font-size: 16px;
  font-family: 'meb';
  color: #e01c28;
}
#index-body .factory-teach .teaching .grid-box .left .text a i {
  position: relative;
  left: 5px;
  font-size: 1.2em;
  vertical-align: middle;
  transition: .3s;
}
#index-body .factory-teach .teaching .grid-box .left .text a:hover i {
  left: 10px;
}
#index-body .factory-teach .teaching .grid-box .right {
  vertical-align: middle;
  padding-left: 3.5rem;
}
#index-body .adv {
  padding: 5rem 0;
}
#index-body .adv h3 {
  font-size: 2rem;
  font-family: 'mbk';
  text-align: center;
  color: #1d1d1d;
}
#index-body .adv ul li {
  padding: 2rem 10px 0;
}
#index-body .adv ul li .ig img {
  display: block;
  margin: auto;
}
#index-body .adv ul li .ig .text h4 {
  font-size: 18px;
  font-family: 'mbk';
  color: #1d1d1d;
  font-weight: bold; 
}
#index-body .adv ul li .ig .text .con {
  font-size: 14px;
  line-height: 1.75;
  color: #1d1d1d;
  margin-top: 20px;
}
#index-body .partner {
  padding-bottom: 4rem;
      margin-top: 100px;
}
#index-body .partner .title {
  text-align: center;
}
#index-body .partner .title h3 {
  font-size: 2rem;
  font-family: 'mbk';
  color: #1d1d1d;
}
#index-body .partner .title p {
  font-size: 16px;
  font-family: 'mm';
  color: #1d1d1d;
}
#index-body .partner .par-icon {
  text-align: center;
  padding: 2rem 0 1.5rem;
}
#index-body .partner .par-icon a {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  background-color: #f4f4f4;
}
#index-body .partner .par-icon a img {
  display: inline-block;
  vertical-align: middle;
}
#index-body .partner .par-box {
  width: 100%;
  box-shadow: 0 0 15px 5px #eee;
  padding: 1.5rem 4rem 3.5rem;
}
#index-body .partner .par-box ul .slick-slide {
  padding-top: 2rem;
}
#index-body .partner .par-box ul li .ig {
  position: relative;
  text-align: center;
  color: #1d1d1d;
  padding: 0 2rem;
  max-width: 940px;
  margin: auto;
}
#index-body .partner .par-box ul li .ig i {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  font-size: 30px;
  color: #e5e5e5;
}
#index-body .partner .par-box ul li .ig i.l {
  left: 0;
}
#index-body .partner .par-box ul li .ig i.r {
  right: 0;
}
#index-body .partner .par-box ul li .ig .con {
  font-size: 16px;
}
#index-body .partner .par-box ul li .ig h4 {
  font-size: 16px;
  font-family: 'mbk';
  padding-top: 1rem;
}
#index-body .news {
  padding: 1rem 0;
}
#index-body .news h3 {
  font-size: 2rem;
  font-family: 'mbk';
  line-height: 1.2;
  text-align: center;
  color: #1d1d1d;
}
#index-body .news .news-box {
  position: relative;
  padding: 2rem 0;
}
#index-body .news .news-box ul {
  margin: 0 -10px;
}
#index-body .news .news-box ul li {
  padding: 0 10px;
}
#index-body .news .news-box ul li .ig {
  display: block;
  color: #1d1d1d;
}
#index-body .news .news-box ul li .ig img {
  width: 100%;
}
#index-body .news .news-box ul li .ig h4 {
  font-size: 1.3rem;
  font-family: 'mbk';
  text-align: center;
  padding-top: 10px;
}
#index-body .news .news-box .prev-next a {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  background-color: #da0428;
  padding: 0.5rem 1.2rem;
}
#index-body .news .news-box .prev-next a.prev {
  left: 0;
}
#index-body .news .news-box .prev-next a.next {
  right: 0;
}
#footer {
  color: #c6c6c6;
  background-color: #252525;
}
#footer .f-menu {
  padding: 4rem 0 0;
}
#footer .f-menu .ui.container {
  max-width: 1720px;
}
#footer .f-menu .grid-box .column dl {
  text-align: center;
  max-width: 420px;
  margin: auto;
  padding-bottom: 3rem;
}
#footer .f-menu .grid-box .column dl dt {
  font-size: 20px;
  font-family: 'mb';
  line-height: 1.2;
  color: #d4d4d4;
  padding-bottom: 1rem;
}
#footer .f-menu .grid-box .column dl dd {
  font-size: 14px;
  line-height: 1.714;
}
#footer .f-menu .grid-box .column:nth-child(1) {
  position: relative;
  top: -1rem;
}
#footer .f-menu .grid-box .column:nth-child(3) dl dd a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #565656;
  color: #fff;
  margin-top: 15px;
  transition: .3s;
}
#footer .f-menu .grid-box .column:nth-child(3) dl dd a:hover {
  color: #fd2318;
}
#footer .f-copy {
  position: relative;
  text-align: center;
  border-top: 40px solid #000000;
}
#footer .f-copy .back_top {
  position: absolute;
  right: 2.5rem;
  bottom: 10px;
  cursor: pointer;
}
#footer .f-copy .back_top i {
  transform: rotateZ(-35deg);
}
#footer .f-copy .back_top:hover {
  color: #fff;
}
#footer .f-copy p {
  font-size: 14px;
  color: #8d8d8d;
  padding: 1rem 0;
}
#footer .f-copy p a {
  padding: 0 5px;
}
#footer .f-copy p a:hover {
  text-decoration: underline;
}
#footer .f-copy p a img {
  max-height: 18px;
}
@media screen and (max-width: 1600px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 1rem;
  }
  #header .nav .ui.menu .logo {
    padding: 8px 1rem;
  }
  #header .nav .ui.menu .language {
    padding: 0 1.5rem 0 0;
  }
  #index-body .app::after {
    width: 85%;
  }
}
@media screen and (max-width: 1440px) {
  #banner ul li .text .grid-box .left {
    width: 50%;
  }
  #banner ul li .text .grid-box .left img {
    width: 80%;
  }
  #banner ul li .text .grid-box .right {
    width: 50%;
  }
}
@media screen and (max-width: 1200px) {
  #banner ul li .text .grid-box .right h3 {
    padding-bottom: 2rem;
  }
  /*#banner ul li .text .grid-box .right p {
    display: none;
  }*/
  #index-body .choose .choose-box ul li {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  #header .nav .ui.menu .logo {
    width: 16.5rem;
  }
}
@media screen and (max-width: 992px) {
  #header .nav .ui.menu .logo {
    background-color: transparent;
    padding: 10px 0;
  }
  #header .nav .ui.menu .logo img {
    height: 40px;
  }
  #banner ul li .text .grid-box .left {
    width: 40%;
  }
  #banner ul li .text .grid-box .right {
    width: 60%;
  }
  #banner ul li .text .grid-box .right h3 {
    padding-bottom: 0;
  }
  #banner ul li .text .right p {
    padding: 1rem;
  }
  #banner ul li .text .grid-box .right .more {
    padding-top: 0;
  }
  #index-body .product .grid-box .left {
    display: none;
  }
  #index-body .product .grid-box .right {
    width: 100%;
  }
  #index-body .app::after {
    width: 90%;
    height: 95%;
  }
  #index-body .about .grid-box .left {
    width: 100%;
    text-align: center;
  }
  #index-body .about .grid-box .right {
    display: none;
  }
  #index-body .adv ul li {
    width: 100%;
    text-align: center;
  }
  #footer .f-copy .back_top {
    bottom: 120px;
  }
}
@media screen and (max-width: 700px) {
  #banner ul li .text .grid-box .left {
    width: 100%;
  }
  #banner ul li .text .grid-box .left img {
    width: auto;
    max-height: 200px;
  }
  #banner ul li .text .grid-box .right {
    display: none;
  }
  #index-body .product .grid-box .right .box ul li {
    width: 50%;
  }
  #index-body .product .grid-box .right .box ul li .ig h4 {
    font-size: 14px;
  }
  #index-body .app::after {
    width: 100%;
    height: 95%;
  }
  #index-body .app .grid-box .left {
    width: 100%;
  }
  #index-body .app .grid-box .left img {
    width: 100%;
  }
  #index-body .app .grid-box .right {
    width: 100%;
  }
  #index-body .app .grid-box.list .column {
    width: 50%;
  }
  #index-body .choose .choose-box ul li {
    width: 100%;
  }
  #index-body .choose .choose-box ul li .ig .con {
    font-size: 14px;
  }
  #index-body .factory-teach::after {
    width: 100%;
  }
  #index-body .factory-teach .factory .grid-box .left {
    display: none;
  }
  #index-body .factory-teach .factory .grid-box .right {
    width: 100%;
  }
  #index-body .factory-teach .factory .grid-box .right .text {
    padding: 0 15px;
  }
  #index-body .factory-teach .factory .grid-box .right .text p {
    padding-bottom: 2rem;
  }
  #index-body .factory-teach .teaching .grid-box .left {
    width: 100%;
    padding-top: 2rem;
  }
  #index-body .factory-teach .teaching .grid-box .right {
    display: none;
  }
  #index-body .partner .par-box {
    padding: 1.5rem 1rem 3.5rem;
  }
  #index-body .partner .par-box ul li .ig .con {
    font-size: 14px;
  }
  #index-body .adv ul li .ig .text .con {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  #banner ul li {
    background: url(../images/banner.jpg) no-repeat left;
    background-size: cover;
  }
  #banner ul li > img {
    opacity: 0;
  }
}
/* 解决方案区域 */
.inner-page.solution-page .title {
    text-align: center;
    max-width: 700px;
    margin: auto;
    padding: 4rem 0;
  }

  .inner-page.solution-page .title h3 {
    font-size: 1.9rem;
    font-family: 'pb';
    line-height: 1.42;
    color: #404040;
  }

  .inner-page.solution-page .title p {
    color: #616161;
    font-size: 18px;
    line-height: 24px;
  }

  .inner-page.solution-page ul li {
    position: relative;
    margin-bottom: 24px;
  }

  .inner-page.solution-page ul li .ig .left,
  .inner-page.solution-page ul li .ig .right {
    text-align: center;
  }

  .inner-page.solution-page ul li .ig .right .text {
    display: inline-block;
    width: 85%;
    text-align: center;
    background-color: #f5f5f5;
    padding: 2rem 1.5rem;
  }

  .inner-page.solution-page ul li .ig .right .text .img img {
    max-width: 280px;
  }

  .inner-page.solution-page ul li .ig .right .text a.btn {
    display: inline-block;
    font-family: 'pb';
    border: 1px solid transparent;
    text-transform: uppercase;
    color: #fff;
    background-color: #ff4015;
    padding: 5px 10px;
    margin: 1rem 0 1.8rem;
    transition: .5s;
  }

  .inner-page.solution-page ul li .ig .right .text a.btn:hover {
    color: #ff4015;
    border-color: #ff4015;
    background-color: #fff;
  }

  .inner-page.solution-page ul li .ig .right .text h4 {
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    color: #404040;
  }

  .inner-page.solution-page ul li .ig .right .text p {
    font-size: 16px;
    color: #616161;
    margin: 1.3rem 0;
  }

  .inner-page.solution-page ul li .ig .right .text .more a {
    display: inline-block;
    color: #2d2d2d;
    font-weight: bold;
    font-size: 14px;
    transition: .5s;
  }

  .inner-page.solution-page ul li .ig .right .text .more a i {
    position: relative;
    left: 0;
    color: #ff4015;
    transition: .5s;
  }

  .inner-page.solution-page ul li .ig .right .text .more a:hover {
    color: #ff4015;
  }

  .inner-page.solution-page ul li .ig .right .text .more a:hover i {
    left: 5px;
  }

  .inner-page.solution-page ul li::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    height: 6px;
    width: 100%;
    background-color: #ff4015;
  }

  .inner-page.solution-page ul li:nth-child(odd) .grid .left {
    position: relative;
    left: 50%;
  }

  .inner-page.solution-page ul li:nth-child(odd) .grid .right {
    position: relative;
    left: -50%;
  }

  @media screen and (max-width: 1600px) {
    .inner-page.solution-page ul li .ig .right .text {
      width: 70%;
    }
  }

  @media screen and (max-width: 1300px) {
    .inner-page.solution-page ul li .ig .right .text {
      width: 80%;
      padding: 2rem 1rem;
    }
  }

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

    .inner-page.solution-page ul li:nth-child(odd) .grid .left,
    .inner-page.solution-page ul li:nth-child(odd) .grid .right {
      left: 0;
    }

    .inner-page.solution-page ul li .ig .left {
      width: 100%;
    }

    .inner-page.solution-page ul li .ig .right {
      width: 100%;
      transform: translateY(-10%);
    }
  }

  @media screen and (max-width: 500px) {
    .inner-page.solution-page .title h3 {
      font-size: 18px;
    }
    .inner-page.solution-page .title p {
      font-size: 14px;
    }
    .inner-page.solution-page ul li .ig .right {
      transform: translateY(-25%);
    }

    .inner-page.solution-page ul li .ig .right .text {
      width: 95%;
    }

    .inner-page.solution-page ul li .ig .right .text h4 {
      font-size: 16px;
    }

    .inner-page.solution-page ul li .ig .right .text p {
      font-size: 14px;
    }
  }
/* 解决方案区域End */

/* 单页 */
.support-page {
  padding: 2rem 0;
}
.support-page .ui.container {
  max-width: 910px;
}
.support-page .title {
  text-align: center;
  color: #000;
}
.support-page .title h3 {
  font-size: 1.8rem;
}
.support-page .title span {
  display: inline-block;
  font-size: 14px;
}
.support-page .support-1 {
  text-align: center;
}
.support-page .support-1 ul {
  margin: 2rem 0 3rem;
}
.support-page .support-1 ul li {
  padding: 0 1rem;
}
.support-page .support-1 ul li h4 {
  font-size: 14px;
  color: #2d2d2d;
  padding: 10px;
}
.support-page .support-2 ul {
  margin: 2rem 0 3rem;
}
.support-page .support-2 ul li {
  padding: 12px 0;
}
.support-page .support-2 ul li .ig h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.support-page .support-2 ul li .ig .con {
  font-size: 14px;
}
.support-page .support-3 {
  text-align: center;
}
.support-page .support-3 ul {
  margin: 2rem 0 3rem;
}
.support-page .support-3 ul li {
  display: inline-block;
  padding: 0.6rem;
}
.support-page .support-3 ul li img {
  width: 100%;
}
.support-page .support-3 ul li h4 {
  font-size: 14px;
  color: #2d2d2d;
}

/* 单页End */

/* 内页区域 */
.inner-banner {
  height: 400px;
  background-size: cover;
  background-position: center center;
  position: relative;
  text-align: center;
  padding-top: 180px;
  color: white;
  z-index: 1;
}
.inner-banner:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.inner-banner h3 {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  font-family: "POPPINS-MEDIUM";
}
.inner-banner .mbx {
  font-size: 16px;
}
.inner-banner .mbx a,
.inner-banner .mbx span {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  line-height: 24px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-banner .mbx a:first-child:before {
  content: "\f015";
  font-family: "FontAwesome";
  color: #da251c;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  font-size: 20px;
}
.inner-banner .mbx a:hover {
  color: #da251c;
}
.inner-page {
  font-size: 14px;
  line-height: 1.8;
  position:relative;
  z-index:1;
}
.inner-page p {
  line-height: 1.8;
  color: #333;
  font-size: 14px;
}
.inner-page .text {
  color: #828893;
}
.inner-page .text p {
  color: inherit;
}
.inner-page i.small-tit {
  color: #da251c;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "POPPINS-MEDIUM";
}
.inner-page h3.title {
  color: #111;
  text-transform: capitalize;
  font-size: 32px;
  line-height: 38px;
  margin: 15px 0;
  position: relative;
  font-family: "POPPINS-SEMIBOLD";
}
.inner-page h3.title.mt0 {
  margin-top: 0;
}
.inner-page .form ul {
  margin: -5px;
}
.inner-page .form ul li {
  padding: 5px;
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
  width: 100%;
  padding: 10px 15px;
  background: #f8f9fa none repeat scroll 0 0;
  border: medium none;
  font-size: 14px;
}
.inner-page .form ul li input::-webkit-input-placeholder,
.inner-page .form ul li textarea::-webkit-input-placeholder {
  color: #242424;
}
.inner-page .form ul li input:-moz-placeholder,
.inner-page .form ul li textarea:-moz-placeholder {
  color: #242424;
}
.inner-page .form ul li input::-moz-placeholder,
.inner-page .form ul li textarea::-moz-placeholder {
  color: #242424;
}
.inner-page .form ul li input:-ms-input-placeholder,
.inner-page .form ul li textarea:-ms-input-placeholder {
  color: #242424;
}
.inner-page .form ul li textarea {
  height: 120px;
  resize: vertical;
}
.inner-page .form ul li input[type="submit"] {
  background: #da251c;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  font-family: "POPPINS-MEDIUM";
  font-size: 14px;
  text-transform: uppercase;
}
.inner-page .form ul li input[type="submit"]:hover {
  background: #222;
}
.inner-page .sidebar-box .sidebar-left {
  width: 28%;
  padding-right: 15px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav {
  padding: 30px;
  background: #edeff2;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li {
  margin: 5px 0;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li a {
  display: block;
  text-transform: uppercase;
  color: #072948;
  font-family: "POPPINS-MEDIUM";
  font-size: 14px;
  padding: 15px 20px;
  background: #fff;
  border-left: 4px solid #333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li a i {
  float: right;
  font-size: 20px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li li a {
  background: #fbf9f7;
  border-color: #d7d7d7;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li li a:before {
  content: '-';
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li:hover > a,
.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li.active > a {
  background: #da251c none repeat scroll 0 0;
  color: #fff;
  border-left: 4px solid #072948;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf {
  margin: 30px 0;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf h4 {
  color: #111;
  font-size: 22px;
  text-transform: capitalize;
  line-height: 25px;
  font-family: "POPPINS-MEDIUM";
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf h4:after {
  position: absolute;
  height: 4px;
  width: 30%;
  background: #da251c none repeat scroll 0 0;
  content: "";
  left: 0;
  bottom: -20px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf h4:before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 35%;
  height: 4px;
  width: 15px;
  background: #ddd none repeat scroll 0 0;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf ul li a {
  display: block;
  text-align: left;
  text-transform: uppercase;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 30px;
  border: 1px solid #eee;
  letter-spacing: 1px;
  margin-bottom: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf ul li a i {
  margin-right: 5px;
  color: #da251c;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf ul li a i.fa-download {
  float: right;
  margin-top: 6px;
  color: #111;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf ul li a:hover {
  background: #da251c none repeat scroll 0 0;
  color: #fff;
}
.inner-page .sidebar-box .sidebar-left .sidebar-pdf ul li a:hover i {
  color: inherit;
}
.inner-page .sidebar-box .sidebar-left .sidebar-info {
  padding: 30px;
  background: url("../images/sidebar-info.jpg") center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
      margin-top: 33px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-info:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #da251c;
  z-index: -1;
  opacity: .83;
}
.inner-page .sidebar-box .sidebar-left .sidebar-info h4 {
  color: #fff;
  font-size: 25px;
  text-transform: capitalize;
  line-height: 30px;
  font-family: "POPPINS-MEDIUM";
  font-weight: 500;
  margin-bottom: 15px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-info p {
  color: inherit;
}
.inner-page .sidebar-box .sidebar-left .sidebar-info a.tel {
  color: #fff;
  font-weight: 600;
  font-family: 'Ubuntu', sans-serif;
  letter-spacing: 1px;
  margin: 20px 0;
  display: block;
  font-size: 1rem;
}
.inner-page .sidebar-box .sidebar-left .sidebar-info a.contact {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #fff;
  color: #da251c;
  background: #fff none repeat scroll 0 0;
  padding: 12px 35px;
  letter-spacing: 1px;
  margin-top: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebar-box .sidebar-left .sidebar-info a.contact:hover {
  background: transparent;
  color: #fff;
}
.inner-page .sidebar-box .sidebar-right {
  width: 72%;
  padding-left: 15px;
}
.inner-page .m-page {
  text-align: right;
  float: none;
  margin: 30px -5px 0;
}
.inner-page .m-page a,
.inner-page .m-page span {
  display: inline-block;
  text-align: center;
  width: 45px;
  height: 35px;
  font-size: 15px;
  line-height: 35px;
  border-radius: 5px;
  color: #111;
  font-weight: 500;
  -moz-box-shadow: 0 2px 10px 0 #d8dde6;
  -o-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 5px;
}
.inner-page .m-page a:hover {
  background: #da251c none repeat scroll 0 0;
  color: #fff;
}
.about-page .about-1 {
  padding: 70px 0;
}
.about-page .about-1 .left {
  width: 42%;
  padding-right: 15px;
  vertical-align: middle;
}
.about-page .about-1 .left .box2 {
  position: relative;
  z-index: 1;
}
.about-page .about-1 .left .box2:after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(222, 123, 34, 0.33);
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: -1;
}
.about-page .about-1 .left .box2:before {
  content: '';
  background: rgba(0, 0, 0, 0.17) none repeat scroll 0 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.about-page .about-1 .left .box2 .play {
  position: absolute;
  color: white;
  bottom: 20px;
  font-family: "POPPINS-MEDIUM";
  right: 20px;
  text-transform: uppercase;
  font-size: 16px;
  z-index: 1;
  cursor: pointer;
  cursor: hand;
}
.about-page .about-1 .left .box2 .play i {
  background: #da251c none repeat scroll 0 0;
  border: 2px solid #da251c;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 24px;
  height: 58px;
  line-height: 15px;
  margin: 0 10px 0 0;
  padding: 20px;
  text-align: center;
  width: 58px;
}
.about-page .about-1 .right {
  width: 58%;
  padding-left: 15px;
  vertical-align: middle;
}
.about-page .about-1 .right h5 {
  color: #111;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 20px;
  margin-top: 35px;
  position: relative;
  line-height: 30px;
  margin-bottom: 10px;
  font-family: "POPPINS-MEDIUM";
}
.about-page .about-1 .right h5:before {
  position: absolute;
  height: 4px;
  width: 10%;
  background: #da251c none repeat scroll 0 0;
  content: "";
  left: 0;
  top: -20px;
}
.about-page .about-1 .right h5:after {
  position: absolute;
  content: "";
  top: -20px;
  left: 11%;
  height: 4px;
  width: 15px;
  background: #ddd none repeat scroll 0 0;
}
.about-page .about-1 .right .text ul {
  display: inline-block;
  width: 100%;
  margin: 20px 0;
}
.about-page .about-1 .right .text ul li {
  color: #111;
  margin: 5px 0;
  text-transform: capitalize;
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  font-family: "POPPINS-REGULAR";
  width: 50%;
  float: left;
}
.about-page .about-1 .right .text ul li:after {
  content: "\f101";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "FontAwesome";
  color: #da251c;
}
.about-page .about-2 {
  background: #f8f9fc;
  padding: 70px 0;
}
.about-page .about-2 .left {
  padding-right: 15px;
}
.about-page .about-2 .right {
  padding-left: 15px;
}
.about-page .about-2 .right .content {
  background: white none repeat scroll 0 0;
  padding: 20px 5px;
  border-radius: 5px;
}
.about-page .about-2 .right .content li {
  text-transform: capitalize;
  color: #333;
    padding: 10px 54px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  font-size: 15px;
}
.about-page .about-2 .right .content li i {
  color: #da251c;
  margin-right: 10px;
}
.about-page .about-3 {
  padding: 70px 0;
  background: url("../images/about-3-bg.png") center center #da251c;
  color: white;
  text-align: center;
}
.about-page .about-3 h3,
.about-page .about-3 p {
  color: inherit;
}
.about-page .about-3 p {
  max-width: 850px;
  display: block;
  margin: 30px auto;
}
.about-page .about-3 a.more {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-family: "POPPINS-REGULAR";
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #fff;
  color: #da251c;
  background: #fff none repeat scroll 0 0;
  padding: 12px 35px;
  letter-spacing: 1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.about-page .about-3 a.more:hover {
  background: transparent;
  color: #fff;
}
.about-page .about-4 {
  padding: 70px 0;
}
.about-page .about-4 .top {
  display: block;
}
.about-page .about-4 .top .left {
  vertical-align: middle;
}
.about-page .about-4 .top .right {
  text-align: right;
  vertical-align: middle;
}
.about-page .about-4 .top .right a.more {
  display: inline-block;
  vertical-align: middle;
  color: #da251c;
  line-height: 40px;
  height: 40px;
  padding: 0 10px;
  font-size: 18px;
  font-family: "POPPINS-REGULAR";
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: 1;
}
.about-page .about-4 .top .right a.more:after {
  content: '';
  height: 100%;
  width: 2px;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  background: #da251c;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: -1;
}
.about-page .about-4 .top .right a.more i {
  margin-left: 5px;
}
.about-page .about-4 .top .right a.more:hover {
  color: white;
}
.about-page .about-4 .top .right a.more:hover:after {
  width: 100%;
}
.about-page .about-4 .bottom {
  padding-top: 50px;
}
.about-page .about-4 .bottom ul {
  margin: -15px;
}
.about-page .about-4 .bottom ul li {
  padding: 15px;
}
.about-page .about-4 .bottom ul li .box {
  box-shadow: 0 0 15px rgba(72, 73, 121, 0.3);
  padding: 10px;
  border-radius: 5px;
}
.about-page .about-4 .bottom ul li .box a.img-box {
  margin-bottom: 10px;
  display: block;
}
.about-page .about-4 .bottom ul li .box h5 {
  display: block;
  color: #111;
  font-family: "POPPINS-MEDIUM";
  font-size: 22px;
  padding: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .bottom ul li .box:hover h5 {
  background: #da251c;
  color: white;
}
.faq-page .faq-1 {
  padding: 70px 0;
  text-align: center;
  background: #edeff2;
}
.faq-page .faq-1 .search {
  max-width: 550px;
  display: block;
  margin: 20px auto;
  position: relative;
}
.faq-page .faq-1 .search input {
  width: 100%;
  border: medium none;
  color: #111;
  left: 0;
  padding: 0 70px 0 15px;
  border-radius: 30px;
  background: white;
  display: block;
  line-height: 50px;
  height: 50px;
}
.faq-page .faq-1 .search input::-webkit-input-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search input:-moz-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search input::-moz-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search input:-ms-input-placeholder {
  color: #242424;
}
.faq-page .faq-1 .search button {
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  line-height: 50px;
  height: 50px;
  color: #da251c;
}
.faq-page .faq-1 p {
  max-width: 770px;
  display: block;
  margin: 0 auto;
}
.faq-page .faq-2 {
  padding: 70px 0;
}
.faq-page .faq-2 .left {
  width: 66%;
  padding-right: 15px;
}
.faq-page .faq-2 .left ul li {
  margin-bottom: 15px;
  border: 1px solid #eee;
}
.faq-page .faq-2 .left ul li:last-child {
  margin-bottom: 0;
}
.faq-page .faq-2 .left ul li h4 {
  display: block;
  text-align: left;
  padding: 15px;
  background: #f7f7f7 none repeat scroll 0 0;
  color: #111;
  border-radius: 0;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
  cursor: hand;
}
.faq-page .faq-2 .left ul li h4 span {
  margin-right: 5px;
  color: #da251c;
}
.faq-page .faq-2 .left ul li .content {
  padding: 20px 30px;
  display: none;
}
.faq-page .faq-2 .right {
  width: 34%;
  padding-left: 15px;
}
.faq-page .faq-2 .right .box2 {
  padding: 30px;
  background: #edeff2;
}
.faq-page .faq-2 .right .box2 h3.title {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 30px;
}
.faq-page .faq-2 .right .box2 .form ul li {
  width: 100%;
}
.service-page {
  padding: 70px 0;
}
.service-page.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li:first-child {
  display:none;
}
.service-page.inner-page .sidebar-box .sidebar-left .sidebar-nav ul li ul {
  display:none !important;
}
.service-page h3.title {
  font-size: 24px;
}
.service-page .form {
  padding-top: 30px;
}
.news-page {
  padding: 70px 0;
}
.news-page .news-list ul {
  margin: -15px;
}
.news-page .news-list ul li {
  padding: 15px;
}
.news-page .news-list ul li:last-child {
  margin-bottom: 0;
}
.news-page .news-list ul li a.img-box {
  display: block;
}
.news-page .news-list ul li a.img-box img {
  width: 100%;
}
.news-page .news-list ul li .box {
  padding: 10px;
  -moz-box-shadow: 0 0 10px rgba(72, 73, 121, 0.15);
  -o-box-shadow: 0 0 10px rgba(72, 73, 121, 0.15);
  box-shadow: 0 0 10px rgba(72, 73, 121, 0.15);
}
.news-page .news-list ul li .box .content {
  padding: 20px;
  position: relative;
}
.news-page .news-list ul li .box .content time {
  position: absolute;
  width: 65px;
  height: 65px;
  top: -35px;
  background: #da251c none repeat scroll 0 0;
  color: #fff;
  line-height: 23px;
  text-align: center;
  border-radius: 5px;
  display: block;
  font-family: "POPPINS-MEDIUM";
  font-weight: 500;
  font-size: 20px;
  padding: 8px 0;
  left: 15px;
}
.news-page .news-list ul li .box .content h3 {
  margin-top: 25px;
  font-family: "POPPINS-MEDIUM";
  font-size: 20px;
  margin-bottom: 15px;
  color: #111;
  display: inline-block;
  line-height: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  height: 54px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.news-page .news-list ul li .box .content h3:hover {
  color: #da251c;
}
.news-page .news-list ul li .box .content a.more {
  text-transform: capitalize;
  font-weight: 500;
  padding: 5px 0 5px 20px;
  margin-top: 20px;
  display: inline-block;
  color: #da251c;
  border-left: 1px solid #da251c;
  font-size: 16px;
  font-family: "POPPINS-REGULAR";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.news-page .news-list ul li .box .content a.more i {
  -webkit-transition: 0.5s padding-left;
  -moz-transition: 0.5s padding-left;
  -ms-transition: 0.5s padding-left;
  -o-transition: 0.5s padding-left;
  transition: 0.5s padding-left;
}
.news-page .news-list ul li .box .content a.more:hover {
  color: #111;
  border-left: 1px solid #111;
}
.news-page .news-list ul li .box .content a.more:hover i {
  padding-left: 5px;
}
.newdet-page {
  padding: 70px 0;
}
.newdet-page .news-content h3.title {
  font-size: 24px;
}
.newdet-page .news-content a.img-box {
  display: block;
}
.newdet-page .news-content a.img-box img {
  width: 100%;
}
.newdet-page .news-content time {
  width: 65px;
  height: 65px;
  margin-top: -35px;
  background: #da251c none repeat scroll 0 0;
  color: #fff;
  line-height: 23px;
  text-align: center;
  border-radius: 5px;
  display: block;
  font-family: "POPPINS-MEDIUM";
  font-weight: 500;
  font-size: 20px;
  padding: 8px 0;
  left: 15px;
  position: relative;
  z-index: 1;
}
.newdet-page .news-content .tag {
  font-size: 14px;
  color: #828893;
  font-family: "POPPINS-REGULAR";
}
.newdet-page .news-content .tag em {
  color: black;
}
.newdet-page .news-content .tag h6,
.newdet-page .news-content .tag div {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .news-content .tag div {
  margin-left: 15px;
}
.newdet-page .news-content .tag div i {
  color: #da251c;
  margin-right: 5px;
}
.newdet-page .news-content .content {
  padding: 15px 0;
  margin: 10px 0;
  border-top: 1px #eee dashed;
  border-bottom: 1px #eee dashed;
  text-align: left;
}
.newdet-page .news-content .content p {
  padding: 5px 0;
}
.newdet-page .news-content .share {
  text-align: left;
}
.newdet-page .news-content .share h4 {
  display: inline-block;
  vertical-align: middle;
  font-family: "POPPINS-REGULAR";
  color: #333;
  font-size: 14px;
}
.newdet-page .news-content .share ul {
  display: inline-block;
}
.newdet-page .news-content .share ul li {
  width: auto;
  padding: 5px;
}
.newdet-page .news-content .share ul li a {
  display: block;
  padding: 0 15px;
  line-height: 32px;
  height: 32px;
  border-radius: 5px;
  background: #edeff2;
  font-size: 12px;
  color: #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.newdet-page .news-content .share ul li a:hover {
  color: white;
  background: #da251c;
}
.newdet-page .news-content .m-link {
  padding-top: 15px;
  text-align: left;
  margin-top: 15px;
  border-top: 1px #eee dashed;
}
.newdet-page .news-content .m-link a {
  font-size: 14px;
  color: #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.newdet-page .news-content .m-link a:hover {
  color: #da251c;
  text-decoration: underline;
}
.contact-page {
  padding: 70px 0;
}
.contact-page .button-group .button {
  background: #da251c !important;
}
.contact-page .amap-copyright,
.contact-page .amap-logo {
  display: none !important;
}
.contact-page .contact-2 {
  padding-top: 70px;
}
.contact-page .contact-2 .left {
  width: 55%;
  padding-right: 15px;
}
.contact-page .contact-2 .left .form {
  -moz-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  -o-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  padding: 30px;
}
.contact-page .contact-2 .right {
  width: 45%;
  padding-left: 15px;
}
.contact-page .contact-2 .right .info {
  position: relative;
}
#ewm {
  float: right;
  max-width: 6rem;
  border: 5px solid #fff;
}
.contact-page .contact-2 .right h3.title {
  position: relative;
  padding-bottom: 15px;
}
.contact-page .contact-2 .right h3.title:after {
  position: absolute;
  height: 4px;
  width: 18%;
  background: #da251c none repeat scroll 0 0;
  content: "";
  left: 0;
  bottom: 0;
}
.contact-page .contact-2 .right h3.title:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 20%;
  height: 4px;
  width: 20px;
  background: #ddd none repeat scroll 0 0;
}
.contact-page .contact-2 .right ul {
  padding-top: 20px;
  margin: -10px;
}
.contact-page .contact-2 .right ul li {
  padding: 10px;
}
.contact-page .contact-2 .right ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .right ul li h6 {
  font-size: 14px;
  margin-bottom: 7px;
  text-transform: capitalize;
  color: #828893;
  font-family: "POPPINS-MEDIUM";
}
.contact-page .contact-2 .right ul li p {
  font-size: 15px;
  color: #111;
  /*text-transform: capitalize;*/
  line-height: normal;
  letter-spacing: 1px;
}
.product-page {
  padding: 70px 0;
}
.product-page .product-list ul {
  margin: -10px;
}
.product-page .product-list ul li {
  padding: 10px;
}
.product-page .product-list ul li .box {
  display: block;
  background: white;
  -moz-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  -o-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
}
.product-page .product-list ul li .box a.img-box {
  display: block;
}
.product-page .product-list ul li .box .content {
  display: block;
  padding: 20px 10px;
  text-align: center;
}
.product-page .product-list ul li .box .content h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  color: #111;
  font-family: "POPPINS-MEDIUM";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.product-page .product-list ul li .box .content h3:hover {
  color: #da251c;
}
.product-page .product-list ul li .box .content h5 {
  display: block;
  font-size: 14px;
  color: #da251c;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
  font-family: "POPPINS-REGULAR";
  font-weight: bold;
}
.product-page .product-list ul li .box .content p {
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 20px;
  font-family: "opensans-Regular";
  margin: 5px 0 10px;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.product-page .product-list ul li .box .content a.more {
  display: inline-block;
  vertical-align: middle;
  line-height: 28px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid #da251c;
  font-size: 12px;
  font-family: "Poppins-Bold";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  color: #da251c;
}
.product-page .product-list ul li .box .content a.more i {
  margin-left: 5px;
}
.product-page .product-list ul li .box .content a.more:hover {
  color: white;
  background: #da251c;
}
.prodet-page {
  padding: 70px 0;
}
.prodet-page .product-box .prodet-1 .left {
  width: 48%;
}
.prodet-page .product-box .prodet-1 .left a {
  display: block;
  border: 1px solid #eee;
}
.prodet-page .product-box .prodet-1 .left a img {
  width: 100%;
}
.prodet-page .product-box .prodet-1 .left ul {
  margin: -5px;
  padding: 0;
}
.prodet-page .product-box .prodet-1 .left ul li {
  padding: 5px;
}
.prodet-page .product-box .prodet-1 .left ul li i,
.prodet-page .product-box .prodet-1 .left ul li span {
  display: none !important;
}
.prodet-page .product-box .prodet-1 .left ul li img {
  display: block;
  margin: 0 auto;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-indent: -9999em;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  background-size: 8px;
  background-position: center center;
  background-repeat: no-repeat;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-prev {
  background-image: url("../images/banner-btn-l.png");
  left: 10px;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-next {
  background-image: url("../images/banner-btn-r.png");
  right: 10px;
}
.prodet-page .product-box .prodet-1 .right {
  padding-left: 15px;
  width: 40%;
}
.prodet-page .product-box .prodet-1 .right h3.title {
  font-size: 24px;
}
.prodet-page .product-box .prodet-1 .right .share {
  padding: 10px 0;
}
.prodet-page .product-box .prodet-1 .right .share h4 {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-family: "POPPINS-REGULAR";
}
.prodet-page .product-box .prodet-1 .right .share ul {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .product-box .prodet-1 .right .share ul li {
  width: auto;
  color: #666;
  margin: 5px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .product-box .prodet-1 .right .share ul li:hover {
  color: #da251c;
}
.prodet-page .product-box .prodet-1 .right a.tel {
  font-size: 18px;
  font-family: 'mb';
  color: #da251c;
  display: block;
}
.prodet-page .product-box .prodet-1 .right a.contact {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
  height: 32px;
  background: #da251c;
  color: white;
  padding: 0 25px;
  font-size: 14px;
  margin-top: 10px;
}
.prodet-page .product-box .prodet-2 {
  padding: 30px 0;
}
.prodet-page .product-box .prodet-2 .options ul {
  background: #f8f8f8;
}
.prodet-page .product-box .prodet-2 .options ul li {
  width: auto;
  line-height: 40px;
  height: 40px;
  padding: 0 20px;
  color: #3d474a;
  border-radius: 0;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
}
.prodet-page .product-box .prodet-2 .options ul li:hover,
.prodet-page .product-box .prodet-2 .options ul li.active {
  color: white;
  background: #da251c;
}
.prodet-page .product-box .prodet-2 .ret {
  padding-top: 20px;
}
.prodet-page .product-box .prodet-2 .ret p {
  padding: 5px 0;
}
.prodet-page .product-box .prodet-2 .ret table {
  margin: 5px 0;
}
.prodet-page .product-box .prodet-2 .ret table td {
  border: 1px solid #eee;
  font-size: 12px;
  padding-left: 7px;
}
.prodet-page .product-box .prodet-2 .ret table td p {
  padding: 0;
}
.prodet-page .product-box .prodet-2 .ret table tr:nth-child(odd) {
  background: #f9f9f9;
}
.prodet-page .product-box .prodet-3 h3.title {
  font-size: 24px;
}
.prodet-page .product-box .prodet-3 ul {
  margin: -10px;
}
.prodet-page .product-box .prodet-3 ul li {
  padding: 10px;
}
.prodet-page .product-box .prodet-3 ul li .box {
  display: block;
  background: white;
  -moz-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  -o-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
}
.prodet-page .product-box .prodet-3 ul li .box a.img-box {
  display: block;
}
.prodet-page .product-box .prodet-3 ul li .box .content {
  display: block;
  padding: 20px 10px;
  text-align: center;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  color: #111;
  font-family: "POPPINS-MEDIUM";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3:hover {
  color: #da251c;
}
.prodet-page .product-box .prodet-3 ul li .box .content h5 {
  display: block;
  font-size: 14px;
  color: #da251c;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
  font-family: "POPPINS-REGULAR";
  font-weight: bold;
}
.prodet-page .product-box .prodet-3 ul li .box .content p {
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 20px;
  font-family: "opensans-Regular";
  margin: 5px 0 10px;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more {
  display: inline-block;
  vertical-align: middle;
  line-height: 28px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid #da251c;
  font-size: 12px;
  font-family: "Poppins-Bold";
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  color: #da251c;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more i {
  margin-left: 5px;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more:hover {
  color: white;
  background: #da251c;
}
.gallery-page {
  padding: 70px 0;
}
.gallery-page .gallery-list ul {
  margin: -15px;
}
.gallery-page .gallery-list ul li {
  padding: 15px;
}
.gallery-page .gallery-list ul li .box {
  box-shadow: 0 0 10px rgba(72, 73, 121, 0.3);
  padding: 10px;
  border-radius: 5px;
}
.gallery-page .gallery-list ul li .box a.img-box {
  margin-bottom: 10px;
  display: block;
}
.gallery-page .gallery-list ul li .box h5 {
  display: block;
  color: #111;
  font-family: "POPPINS-MEDIUM";
  font-size: 18px;
  padding: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.gallery-page .gallery-list ul li .box:hover h5 {
  background: #da251c;
  color: white;
}
@media screen and (max-width: 1250px) {
  .inner-page .sidebar-box .sidebar-left .sidebar-nav {
    padding: 15px;
  }
  .prodet-page .product-box .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .product-box .prodet-1 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .inner-page .sidebar-box .sidebar-left .sidebar-info h4 {
    font-size: 20px;
  }
  .inner-page .sidebar-box .sidebar-left .sidebar-info a.tel {
    font-size: 1.2rem;
    margin: 15px 0;
  }
  .inner-page .sidebar-box .sidebar-left .sidebar-info a.contact {
    padding: 6px 25px;
  }
  .product-page .product-list ul li {
    width: 50% !important;
  }
  .inner-banner h3 {
    font-size: 34px;
    line-height: 34px;
  }
  .inner-banner .mbx {
    font-size: 14px;
  }
  .inner-page h3.title {
    font-size: 28px;
    line-height: 28px;
  }
  #mapContainer {
    height: 300px !important;
  }
  .news-page .news-list ul li .box .content h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .faq-page .faq-2 .left ul li h4 {
    font-size: 16px;
    padding: 12px;
  }
  .faq-page .faq-2 .right .box2 {
    padding: 20px 10px;
  }
  .faq-page .faq-2 .right .box2 h3.title {
    margin-bottom: 20px;
  }
  .inner-page .form ul li input,
  .inner-page .form ul li textarea {
    padding: 8px 15px;
  }
  .about-page .about-1 .right h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .about-page .about-1 .right .text ul {
    margin: 10px 0;
  }
  .about-page .about-1 .right .text ul li {
    font-size: 14px;
    margin: 3px 0;
  }
  .inner-page i.small-tit {
    font-size: 16px;
  }
  .about-page .about-4 .bottom ul li .box h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  #ewm {
    display: none;
  }
  .inner-page h3.title {
    font-size: 24px;
    line-height: 26px;
  }
  .about-page .about-1 .right h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .about-page .about-1,
  .about-page .about-2,
  .about-page .about-3,
  .gallery-page,
  .faq-page .faq-1,
  .faq-page .faq-2,
  .prodet-page,
  .product-page,
  .news-page,
  .newdet-page,
  .service-page,
  .contact-page,
  .about-page .about-4 {
    padding: 40px 0;
  }
  .contact-page .contact-2 {
    padding-top: 40px;
  }
  .about-page .about-2 .right .content li {
    font-size: 13px;
    padding: 2px 10px;
  }
  .about-page .about-3 a.more {
    padding: 6px 25px;
  }
  .about-page .about-4 .top .right a.more {
    font-size: 16px;
    line-height: 34px;
    height: 34px;
  }
  .about-page .about-4 .bottom ul li {
    padding: 10px;
  }
  .about-page .about-4 .bottom ul {
    margin: -10px;
  }
  .about-page .about-4 .bottom ul li .box h5 {
    font-size: 16px;
    padding: 5px;
  }
  .inner-page .sidebar-box .sidebar-left {
    display: none;
  }
  .faq-page .faq-2 .left {
    width: 100%;
    padding-right: 0;
  }
  .faq-page .faq-2 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .inner-page .sidebar-box .sidebar-right {
    width: 100%;
    padding-left: 0;
  }
  .gallery-page .gallery-list ul li .box h5 {
    font-size: 16px;
  }
  .inner-page .m-page {
    text-align: center;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    width: 35px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    -moz-box-shadow: 0 2px 5px 0 #d8dde6;
    -o-box-shadow: 0 2px 5px 0 #d8dde6;
    box-shadow: 0 2px 5px 0 #d8dde6;
  }
  .inner-page h3.title {
    font-size: 20px !important;
    line-height: 24px;
  }
  .faq-page .faq-2 .left ul li h4 {
    font-size: 14px;
  }
  .inner-banner {
    height: 300px;
    padding-top: 120px;
  }
  .inner-banner h3 {
    font-size: 28px;
    line-height: 28px;
  }
  .product-page .product-list ul li {
    width: 33.333% !important;
  }
  .news-page .news-list ul li .box .content time,
  .newdet-page .news-content time {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 20px;
    top: -25px;
  }
  .newdet-page .news-content time {
    top: 0;
    margin-top: -25px;
  }
  .news-page .news-list ul li .box .content a.more {
    font-size: 14px;
    padding: 2px 0 2px 15px;
  }
  .contact-page .contact-2 .right ul li p {
    font-size: 13px;
  }
  .contact-page .contact-2 .right ul li h6 {
    margin-bottom: 3px;
  }
  .about-page .about-4 .bottom {
    padding-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-2 .left {
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-2 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .inner-page .form ul li {
    width: 100% !important;
  }
  .product-page .product-list ul li {
    width: 50% !important;
  }
  .gallery-page .gallery-list ul li .box h5 {
    font-size: 14px;
  }
  .about-page .about-1 .left,
  .about-page .about-2 .left,
  .about-page .about-4 .top .left {
    padding-right: 0;
    width: 100%;
  }
  .about-page .about-1 .right,
  .about-page .about-2 .right,
  .about-page .about-4 .top .right {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }
  .about-page .about-4 .top .right {
    text-align: left;
    padding-top: 20px;
  }
  .about-page .about-4 .bottom ul li .box h5 {
    font-size: 14px;
  }
  .prodet-page .product-box .prodet-2 .ret table {
    display: block;
    overflow: auto;
    white-space: nowrap;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner h3 {
    font-size: 24px;
    line-height: 24px;
  }
  .about-page .about-1 .right .text ul li {
    font-size: 12px;
  }
  .faq-page .faq-2 .left ul li h4 {
    padding: 8px;
  }
  .product-page .product-list ul li {
    width: 100% !important;
  }
  .prodet-page .product-box .prodet-2 .options ul li {
    font-size: 13px;
    padding: 0 10px;
  }
  .inner-page p,
  .inner-page {
    font-size: 13px;
    line-height: 1.8;
  }
  .news-page .news-list ul li .box .content h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .contact-page .contact-2 .left .form {
    padding: 10px;
  }
  .button-group .button:nth-child(2) {
    display: none;
  }
  .button-group {
    padding: 5px !important;
    bottom: 0 !important;
    right: 15px !important;
  }
  .inner-banner {
    height: 240px;
    padding-top: 80px;
  }
}

.zz-bat {width: 77%;
margin: 0 auto;
    margin-top: 38px;
    margin-bottom: 60px;}

.zz-bat p strong{font-weight: bold;}