@charset "utf-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
#bsWXBox {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
html,
body {
  position: relative;
}
body {
  font-family: arial, "microsoft yahei";
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  background: #fff;
  overflow-x:hidden;
}
.bodyHIdden {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
a:link,
a:visited {
  text-decoration: none;
  outline: #333;
  color: #333;
}
a:hover,
a:active,
a:focus {
  color: #000;
}
ul,
li {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
  max-height: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type=text],
textarea,
button {
  border: none;
  font-family: arial, "microsoft yahei";
  font-size: 14px;
  -webkit-appearance: none;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin-top: -2px;
  margin-bottom: 1px;
  margin-left: 5px;
  margin-right: 5px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  color: #666;
  outline: none;
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
.font20 {
  font-size: 20px;
}
.textCenter {
  text-align: center;
}
.color333 {
  color: #333;
}
.hide {
  overflow: hidden;
}
.rel {
  position: relative;
}
/*清楚浮动*/
.clearfix {
  clear: both;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.middleCenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
/*图片垂直右对齐*/
.middleRight {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  margin: auto;
}
/*图片垂直左对齐*/
.middleLeft {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  margin: auto;
}
/*页面主体区域的宽*/
.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1599px) {
  .container {
    padding: 0 30px;
    max-width: 1260px;
  }
}
@media screen and (max-width: 1279px) {
  .container {
    padding: 0 15px;
    max-width: 1000px;
  }
}
@media screen and (max-width: 1023px) {
  .container {
    padding: 0 15px;
    max-width: 640px!important;
  }
}
.container-2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1279px) {
  .container-2 {
    padding: 0 15px;
    max-width: 1000px;
  }
}
@media screen and (max-width: 1023px) {
  .container-2 {
    padding: 0 15px;
    max-width: 414px;
  }
}
.indent2 {
  text-indent: 2em;
}
.animated {
  -webkit-animation-duration: .5s;
  -moz-animation-duration: .5s;
  -o-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  0% {
    -o-transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.animated.slideDown {
  -webkit-animation-name: slideDown;
  -moz-animation-name: slideDown;
  -o-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-100%);
  }
}
@-o-keyframes slideUp {
  0% {
    -o-transform: translateY(0);
  }
  100% {
    -o-transform: translateY(-100%);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.animated.slideUp {
  -webkit-animation-name: slideUp;
  -moz-animation-name: slideUp;
  -o-animation-name: slideUp;
  animation-name: slideUp;
}
.prompt {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 99999;
  background: #fff;
  filter: alpha(opacity=90);
  opacity: 80;
}
.prompt a {
  color: #000;
  text-decoration: underline;
}
.prompt span {
  position: absolute;
  font-size: 16px;
  font-family: 'Microsoft YaHei';
  top: 55%;
  left: 50%;
  margin-left: -200px;
  width: 400px;
  display: block;
  line-height: 24px;
  color: #000;
}
.prompt_close {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 30px;
  font-weight: 100;
  cursor: pointer;
}
.prompt_close:hover {
  background: #ff0000;
  color: #fff;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/*slick-theme*/
/* Slider */
.slick-loading .slick-list {
  background: #ffffff url('../ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Icons */
}
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
}
.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}
.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #000000;
  opacity: 0.75;
}
@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont.eot?t=1681202314792');
  src: url('../fonts/iconfont.eot?t=1681202314792#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/iconfont.woff2?t=1681202314792') format('woff2'), url('../fonts/iconfont.woff?t=1681202314792') format('woff'), url('../fonts/iconfont.ttf?t=1681202314792') format('truetype'), url('../fonts/iconfont.svg?t=1681202314792#iconfont') format('svg');
  
  /* Project id 3998845 */
  /* IE9 */
}
.iconfont {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-double-right:before {
  content: '\e627';
}
.icon-up:before {
  content: '\e612';
}
.icon-down:before {
  content: '\e614';
}
.icon-arrow-right-2:before {
  content: '\e625';
}
.icon-weixin:before {
  content: '\e643';
}
.icon-menu-2:before {
  content: '\e633';
}
.icon-prev:before {
  content: '\e613';
}
.icon-next:before {
  content: '\e615';
}
.icon-play:before {
  content: '\e639';
}
.icon-search:before {
  content: '\e62c';
}
.iconfont {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-webkit-input-placeholder {
  color: #666;
}
:-moz-placeholder {
  color: #666;
  opacity: 1;
}
::-moz-placeholder {
  color: #666;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #666;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
@keyframes zhuanquan {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    visibility: visible;
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.zhuanquan {
  -webkit-animation-name: zhuanquan;
  animation-name: zhuanquan;
}
@keyframes myfirst04 {
  0% {
    opacity: 0.5;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@font-face {
  font-family: 'dincond-mediumregular';
  src: url('../fonts/dincond-medium-webfont.eot');
  src: url('../fonts/dincond-medium-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/dincond-medium-webfont.woff2') format('woff2'), url('../fonts/dincond-medium-webfont.woff') format('woff'), url('../fonts/dincond-medium-webfont.svg#dincond-mediumregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
#container {
  overflow: hidden;
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.header {
  width: 100%;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.5s;
  background: rgba(253, 252, 250, 0.85);
}
.header:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
}
.header a {
  color: #333333;
}
.header > .container {
  max-width: 1440px;
  padding-left: 340px;
  padding-right: 220px;
  position: relative;
}
.header > .container:after {
  content: '';
  display: block;
  clear: both;
}
.header img {
  vertical-align: top;
}
.header .logo {
  position: relative;
  z-index: 999;
  width: 189px;
  float: left;
  display: inline-block;
  transition: all 0.5s;
  position: absolute;
  top: 33px;
  left: 0;
}
.header .logo img {
  position: relative;
}
.header .other {
  font-size: 0;
  line-height: 30px;
  position: absolute;
  top: 45px;
  right: 0;
}
.header .other .searchBtn {
  color: #333333;
  display: inline-block;
  vertical-align: top;
}
.header .other .searchBtn .iconfont {
  font-size: 20px;
  vertical-align: top;
}
.header .other .language {
  font-size: 14px;
  color: #333333;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.header .other .language:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(51, 51, 51, 0.6);
  position: absolute;
  left: 15px;
  top: 7px;
}
.header .other .language a {
  margin: 0 5px;
}
.header .other .language a:hover {
  color: #eb3d00;
  text-decoration: underline;
}
.header-2 {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.header-2 a {
  color: #333;
}
.header-2 .nav > .list > li > a {
  color: #333;
}
.header-2 .nav > .list > li > a:after {
  background: #de6c1e;
}
.header-2 .nav > .list .active > a {
  color: #eb3d00;
}
.header-2 .other .searchBtn {
  color: #333;
}
.header-2 .other .language {
  color: #333;
}
.header-2 .other .language:before {
  background-color: #848383;
}
#searchPopup {
  position: absolute;
  top: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}
#searchPopup .searchBox {
  color: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  top: 105px;
  opacity: 0;
  transition: all 0.5s;
}
#searchPopup .searchBox.fadeIn {
  top: 95px;
  opacity: 1;
  z-index: 9999999;
}
#searchPopup .searchBox .container {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  transform: translateX(-70px);
}
#searchPopup .searchBox input {
  border: 1px #fff solid;
  background: #fff;
  color: #333;
  width: 40%;
  padding: 0 10px;
  font-size: 14px;
  height: 36px;
  line-height: 34px;
}
#searchPopup .searchBox input:focus {
  color: #333;
}
#searchPopup .searchBox .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  height: 36px;
  width: 36px;
  line-height: 36px;
  background: #eb3d00;
  color: #fff;
  text-align: center;
}
#searchPopup .searchBox .btn .iconfont {
  font-size: 18px;
}
#searchPopup .searchBox .btn:hover {
  background: #de6c1e;
}
#searchPopup .searchBox .close {
  display: none;
}
#searchPopup .searchBox2.fadeIn {
  top: 95px;
}
.nav:after {
  content: '';
  display: block;
  clear: both;
}
.nav > .list {
  width: 100%;
  font-size: 0;
  display: flex;
  justify-content: space-between;
}
.nav > .list > li {
  text-align: center;
  float: left;
  position: relative;
}
.nav > .list > li > a {
  display: inline-block;
  font-size: 18px;
  color: #333333;
  vertical-align: middle;
  line-height: 120px;
  position: relative;
}
.nav > .list > li > a:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background-color: #eb3d00;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  transition: width 0.5s;
}
.nav > .list > li:hover a:after {
  width: 100%;
}
.nav > .list .subnav {
  display: none;
  position: absolute;
  top: 120px;
  width: 180px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  background: rgba(235, 61, 0, 0.85);
  padding: 20px 0;
}
.nav > .list .list-2 > li a {
  display: block;
  color: #fff !important;
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
  padding: 0 10px;
  transition: padding-left 0.5s;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.nav > .list .list-2 > li a:hover {
  padding-left: 25px;
  background-color: #fff;
  color: #eb3d00 !important;
}
.nav > .list > li.active a {
  color: #eb3d00;
}
.nav > .list > li.active a:after {
  width: 100%;
}
.banner {
  position: relative;
}
.banner .slick-prev,
.banner .slick-next {
  width: 74px;
  height: 74px;
  background: rgba(0, 0, 0, 0.18);
  z-index: 9;
  transition: all 0.5s;
}
.banner .slick-prev:before,
.banner .slick-next:before {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  font-weight: bolder;
}
.banner .slick-prev:hover,
.banner .slick-next:hover {
  background: rgba(0, 0, 0, 0.5);
}
.banner .slick-prev {
  left: 0;
}
.banner .slick-prev:before {
  content: '\e613';
}
.banner .slick-next {
  right: 0;
}
.banner .slick-next:before {
  content: '\e615';
}
.banner .slick-slide {
  position: relative;
}
.banner .img {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.banner .img img {
  display: none;
}
.banner .playBtn {
  display: block;
  width: 126px;
  height: 126px;
  line-height: 124px;
  border: 1px #fff solid;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 60px;
}
.banner .playBtn .iconfont {
  font-size: 60px;
}
.anniu {
  position: absolute;
  bottom: 45px;
  width: 21px;
  z-index: 99;
  left: 50%;
  margin-left: -11px;
}
.anniu img {
  -webkit-animation: myfirst04 2s linear infinite;
  animation: myfirst04 2s linear infinite;
}
@media(max-width:1280px){
	.nav > .list .subnav{
		top:60px;
	}
}
@media screen and (max-width: 1023px) {
  .anniu {
    display: none;
  }
}
.home-more a {
  color: #fff;
}
.home-more span {
  animation: zhuanquan 10s linear 0s infinite;
  width: 75px;
  height: 75px;
  border: dotted 1px #ffffff;
  border-radius: 50%;
  display: block;
  position: relative;
  margin: 0 auto 8px auto;
}
.home-more span:after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: solid 2px #ffffff;
}
.home-more span:before {
  content: '';
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: #eb3d00;
}
.bg {
  padding-top: 100vh;
  position: relative;
  z-index: 300;
  background-size: cover;
  background-position: center center;
}
/*footer*/
.fp-auto-height {
  height: auto !important;
}
.footer {
  background-color: #2e2e31;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: rgba(255, 255, 255, 0.8);
}
.footer .container {
  max-width: 1440px;
}
.footer img {
  vertical-align: top;
}
.footer a {
  color: rgba(255, 255, 255, 0.8);
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer .contact-menu {
  padding: 60px 0 40px 0;
}
.footer .left {
  width: 30%;
  float: left;
}
.footer .left .logo {
  width: 120px;
  height: 140px;
  margin: auto auto 30px auto;
}
.footer .left .text {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
}
.footer .title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.footer .title a {
  color: #fff;
}
.footer .footer-contact .tel {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}
.footer .footer-contact .tel a {
  color: #fff;
}
.footer .footer-contact .p-1 {
  font-size: 16px;
  line-height: 2;
  color: #c3c3c3;
  position: relative;
}
.footer .footer-contact .p-1 .icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-top: -3px;
}
.footer .shareSocial {
  line-height: 40px;
  padding-top: 20px;
  margin-bottom: 10px;
}
.footer .shareSocial .bt {
  font-size: 16px;
  color: #c3c3c3;
}
.footer .shareSocial a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 38px;
  border: 1px transparent solid;
  color: #fff;
  vertical-align: top;
  margin: 0 5px 0 0;
  text-align: center;
  position: relative;
}
.footer .shareSocial a:last-child {
  margin-right: 0;
}
.footer .shareSocial a:hover {
  text-decoration: none;
  background: #eb3d00;
  border-color: #eb3d00;
}
.footer .shareSocial a:hover .open {
  display: block;
}
.footer .shareSocial a .open {
  display: none;
  padding-bottom: 15px;
  position: absolute;
  z-index: 999;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.footer .shareSocial a .open .openCon {
  cursor: initial;
  background: #333;
  border: 1px #eb3d00 solid;
  padding: 4px 4px 4px 4px;
  text-align: center;
  color: #666;
  font-size: 14px;
  position: relative;
}
.footer .shareSocial a .open .openCon:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #eb3d00;
  border-right: 1px #eb3d00 solid;
  border-bottom: 1px #eb3d00 solid;
  position: absolute;
  z-index: -1;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.footer .shareSocial a .open img {
  max-width: 170px;
  vertical-align: middle;
}
.footer .shareSocial .icon {
  width: 30px;
  height: 30px;
  margin: 3px;
}
.footer .right {
  width: 70%;
  float: left;
  text-align: left;
}
.footer .menu {
  display: inline-block;
  padding-right: 40px;
  text-align: left;
}
.footer .menu li {
  float: left;
  padding: 0 20px;
}
.footer .child {
  line-height: 38px;
  max-width: 160px;
}
.footer .child a {
  display: block;
  line-height: 38px;
  height: 38px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.footer .ewm {
  border-left: 1px rgba(255, 255, 255, 0.1) solid;
  float: right;
  width: 500px;
}
.footer .ewm .div-1 {
  text-align: center;
  float: right;
}
.footer .ewm p {
  padding: 10px 0;
}
@media screen and (max-width: 1280px) {
  .footer .menu li {
    padding: 0 10px;
  }
  .footer .right{
	  width:65%;
  }
}
@media screen and (max-width: 1023px) {
  .footer {
    padding-bottom: 55px;
  }
  .footer .title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .footer .contact-menu {
    padding: 30px 0 20px 0;
  }
  .footer .contact-menu .tel {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .footer .contact-menu .p-1 {
    font-size: 14px;
  }
  .footer .shareSocial {
    padding-top: 0;
  }
  .footer .shareSocial .bt {
    font-size: 14px;
  }
  .footer .shareSocial a {
    margin-right: 0;
  }
  .footer .left {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px rgba(255, 255, 255, 0.1) solid;
  }
  .footer .center {
    width: 100%;
  }
  .footer .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .footer .menu {
    width: 100%;
    padding-left: 0;
    border-bottom: 1px rgba(255, 255, 255, 0.1) solid;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
    display: none;
  }
  .footer .menu li {
    width: 100%;
    padding: 0 0 10px 0;
  }
  .footer .menu li:last-child {
    padding-bottom: 0;
  }
  .footer .child div {
    width: 50%;
    float: left;
  }
  .footer .ewm {
    width: 100%;
    border-left: none;
    text-align: left;
  }
  .footer .ewm .div-1 {
    float: initial;
    text-align: left;
  }
 .footer .ewm .div-1 .renzheng img{width:25%;}
}
/*copyright*/
.copyright {
  border-top: 1px rgba(255, 255, 255, 0.1) solid;
  color: #6c6c6c;
  font-size: 14px;
  line-height: 30px;
  padding: 15px 0;
  position: relative;
  text-align: center;
}
.copyright a {
  color: #6c6c6c;
}
.copyright a:hover {
  color: #fff;
}
.copyright .a-1 {
  margin-left: 10px;
}
@media screen and (max-width: 1023px) {
  .copyright {
    line-height: 1.5;
    text-align: left;
  }
}
#fp-nav {
  z-index: 999;
}
#fp-nav.right {
  right: 20px;
}
#fp-nav ul li a {
  background: #383e94;
}
#fp-nav ul li a.active {
  background: #de6c1e;
}
@media screen and (max-width: 1023px) {
  #fp-nav {
    display: none;
  }
}
.navPhoneBtn {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  float: left;
  position: absolute;
  z-index: 9;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 36px;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #eb3d00;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 20px;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.navPhoneBtn span:nth-last-child(2) {
  transform: rotate(0);
  transition: width 0.5s ease;
}
.navPhoneBtn span:last-child {
  margin-bottom: 0;
}
.navPhoneBtn.close,
.navPhoneBtn.closeMember {
  opacity: 1;
  z-index: 10;
}
.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
  opacity: 1;
  transform: rotate(45deg);
}
.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}
.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width 0.5s;
}
.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .navPhoneBtn {
    display: block;
  }
}
.navM .transparent {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
}
.navM .navMCon {
  background-color: #f3f3f3;
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  right: auto;
  left: -100%;
  transition: all 0.5s;
}
.navM .navMWrap {
  overflow-y: auto;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.navM.open .transparent {
  display: block;
}
.navM.open .closeBtn {
  display: block;
}
.navM.open .navMCon {
  left: 0;
}
.navM .closeBtn {
  display: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #eb3d00;
  color: #fff;
  position: absolute;
  z-index: 999;
  right: -40px;
  top: 0;
}
.navM .closeBtn:before,
.navM .closeBtn:after {
  content: '';
  display: block;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.navM .closeBtn:before {
  width: 15px;
  height: 1px;
}
.navM .closeBtn:after {
  width: 1px;
  height: 15px;
}
.navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.navM .navMWrap > .list .title {
  margin-bottom: 10px;
  padding: 10px 5px;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
  position: relative;
}
.navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.navM .navMWrap > .list .title .icon:after {
  content: '';
  margin: auto;
  height: 8px;
  width: 8px;
  border-top: 1px #aaa solid;
  border-right: 1px #aaa solid;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: center center;
}
.navM .navMWrap > .list .has .title .icon {
  display: block;
}
.navM .navMWrap > .list .active .title .icon {
  transform: rotate(135deg);
}
.navM .child {
  padding: 0 5px 20px 5px;
  display: none;
  position: relative;
}
.navM .child a {
  color: #666;
  display: block;
  font-size: 14px;
  line-height: 28px;
  padding: 5px 0;
  transition: all 0.5s;
  position: relative;
}
.navM .child a:hover {
  color: #000;
  margin-left: 10px;
}
.navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  height: 56px;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.navM .mSearch .btn {
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  right: 15px;
}
.navM .mSearch .btn .iconfont {
  font-size: 18px;
}
.navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box !important;
  color: #333;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 30px 5px 15px;
  border-radius: 2px;
  font-size: 16px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
.navM .other {
  padding: 10px;
}
.navM .languageBtn {
  padding: 10px 0;
}
.navM .languageBtn a {
  display: block;
  width: 50%;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px #ccc solid;
  margin-right: -1px;
  background: #fff;
}
.transparent {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 6666666;
}
.floatRigth {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 50px;
}
.floatRigth img {
  vertical-align: top;
}
.floatRigth li {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  position: relative;
}
.floatRigth li:last-child {
  margin-bottom: 0;
}
.floatRigth .box {
  display: block;
  cursor: pointer;
  background-color: #aaa;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  width: 60px;
  height: 60px;
  padding: 6px 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
}
.floatRigth .icon {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 24px;
  text-align: center;
  color: #fff;
  display: block;
  margin: auto;
  background-repeat: no-repeat;
  position: relative;
}
.floatRigth .hoverDiv {
  border: 1px #eb3d00 solid;
  background-color: #fff;
  width: 180px;
  color: #333;
  font-size: 18px;
  line-height: 58px;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -180px;
  transition: right 0.5s;
}
.floatRigth .hoverDivC {
  position: relative;
}
.floatRigth .ewm {
  width: 160px;
  height: 160px;
  text-align: left;
  padding: 5px 5px;
}
.floatRigth .box:hover {
  background: #eb3d00;
  color: #fff;
}
.floatRigth .box:hover .hoverDiv {
  right: 100%;
}
.floatRigth .box:hover .iconfont {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .floatRigth {
    display: none;
  }
}
@media screen and (max-width: 1599px) {
  .header .logo {
    left: 30px;
  }
  .header .other {
    right: 30px;
  }
  .header > .container {
    padding-left: 280px;
  }
  .banner .playBtn {
    width: 96px;
    height: 96px;
    line-height: 94px;
  }
  .banner .playBtn .iconfont {
    font-size: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .header .logo {
    width: 140px;
    top: 10px;
  }
  .nav > .list > li > a {
    font-size: 14px;
  }
  .footer .menu li {
    padding: 0 10px;
  }
  .header .other {
    top: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .header {
    background-color: #fff;
  }
  .header > .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    height: 60px;
  }
  .header .logo {
    width: 105px;
    top: 15px;
  }
  .header .other {
    top: 15px;
    right: 60px;
    color: #333;
  }
  .header .other .searchBtn {
    color: #333;
  }
  .header .other a {
    color: #333;
  }
  .header .other .language {
    display: none;
  }
  .nav {
    display: none;
  }
  #searchPopup .searchBox {
    padding: 0 15px;
  }
  #searchPopup .searchBox .container {
    padding: 0;
    transform: translateX(0);
  }
  #searchPopup .searchBox input {
    width: 100%;
  }
  .banner .img {
    background-image: none !important;
    min-height: 280px;
    position: relative;
  }
  .banner .img img {
    display: block;
  }
	.banner .video{
		display:none;
	}
	.banner .video2{
		display:block;
	}  
  .banner .slick-prev,
  .banner .slick-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: 30px;
  }
  .banner .slick-prev:before,
  .banner .slick-next:before {
    font-size: 20px;
    font-weight: 400;
  }
  .banner .playBtn {
    width: 56px;
    height: 56px;
    line-height: 54px;
    margin-top: 30px;
  }
  .banner .playBtn .iconfont {
    font-size: 20px;
  }
  .home-product .img,
  .home-service .img {
    display: none;
    position: relative;
  }
  .home-product .img img,
  .home-service .img img {
    display: none;
  }
  .home-product .text,
  .home-service .text {
    position: static;
    padding-top: 60px;
    padding-bottom: 60px;
    transform: translateY(0);
  }
  .home-product .text .title,
  .home-service .text .title {
    font-size: 20px;
  }
  .home-product .text .info,
  .home-service .text .info {
    font-size: 14px;
    line-height: 24px;
  }
  .home-more span {
    width: 55px;
    height: 55px;
  }
  .home-more span:after {
    width: 22px;
    height: 22px;
  }
}
.headerH {
  height: 120px;
  display: none;
}
@media screen and (max-width: 1023px) {
  .headerH {
    height: 60px;
  }
}
.inside-banner {
  overflow: hidden;
  position: relative;
  background-size: cover !important;
}
.inside-banner img {
  vertical-align: top;
}
.inside-banner .pic {
  position: relative;
}
.inside-banner .pc {
  position: relative;
}
.inside-banner .pc img {
  width: 100%;
}
.inside-banner .mobile {
  display: none;
  position: relative;
}
.inside-banner .mobile img {
  width: 100%;
}
.inside-banner .text {
  width: 100%;
  color: #fff;
  text-align: left;
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 120px;
}
.inside-banner .text a {
  color: #fff;
}
.inside-banner .text a:hover {
  color: #fff;
  text-decoration: underline;
}
.inside-banner .bread {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #b5b5b6;
}
.inside-banner .bread a {
  color: #b5b5b6;
}
.inside-banner .bread a:hover {
  color: #fff;
}
.inside-banner .bread span,.inside-banner .bread .item1 {
  color: #fff;
}
.inside-banner .title-1 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.inside-banner .title-2 {
  color: #bfc0c0;
  font-size: 26px;
  font-weight: 400;
}
@media screen and (max-width: 1599px) {
  .inside-banner .title-1 {
    font-size: 42px;
  }
  .inside-banner .title-2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .inside-banner .pc {
    display: none;
  }
  .inside-banner .mobile {
    display: block;
  }
  .inside-banner .text .container {
    padding: 0 15px;
  }
  .inside-banner .title-1 {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .inside-banner .title-2 {
    font-size: 16px;
  }
  .inside-banner .bread {
    position: relative;
    color: #333;
  }
  .inside-banner .bread a {
    color: #333;
  }
  .inside-banner .bread span,.inside-banner .bread .item1 {
    color: #666;
  }
}
.bread {
  padding: 20px 0;
  color: #999999;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  border-bottom: 1px #dcdddd solid;
}
.bread a {
  display: inline-block;
  color: #999999;
  margin: 0 5px;
}
.bread a:hover {
  color: #eb3d00;
  text-decoration: underline;
}
.bread .iconfont {
  color: #eb3d00;
  margin-right: 10px;
  font-size: 18px;
}
.bread span,.bread .item1 {
  color: #eb3d00;
  font-style: normal;
  margin: 0 5px;
}
@media screen and (max-width: 1023px) {
  .bread {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.navSub-1 {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  margin-bottom: 60px;
}
.navSub-1 .list {
  text-align: center;
  font-size: 0;
  display: inline-block;
  position: relative;
  margin-left: -3px;
  margin-right: -2px;
}
.navSub-1 .box {
  display: block;
  position: relative;
  z-index: 1;
}
.navSub-1 li {
  display: inline-block;
  position: relative;
  margin-left: -1px;
}
.navSub-1 .box {
  min-width: 260px;
  padding: 0 10px;
  display: block;
  background: #fff;
  border: 1px #ddd solid;
  line-height: 48px;
  color: #666666;
  font-size: 16px;
  text-align: center;
  position: relative;
}
.navSub-1 .box:after {
  content: '';
  display: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #eb3d00 transparent transparent transparent;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
}
.navSub-1 .box:hover {
  border-color: #eb3d00;
  background: #eb3d00;
  color: #fff;
}
.navSub-1 .box:hover:after {
  display: block;
}
.navSub-1 .active .box {
  border-color: #eb3d00;
  background: #eb3d00;
  color: #fff;
}
.navSub-1 .active .box:after {
  display: block;
}
@media screen and (max-width: 1279px) {
  .navSub-1 .box {
    min-width: 200px;
    font-size: 16px;
    line-height: 44px;
  }
  .navSub-1 .box:after {
    border-width: 8px 5px 0 5px;
    bottom: -8px;
  }
}
@media screen and (max-width: 1023px) {
  .navSub-1 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .navSub-1 li {
    padding-left: 5px;
    padding-right: 5px;
  }
  .navSub-1 .box {
    min-width: 80px;
    font-size: 14px;
    padding: 0 5px;
    line-height: 44px;
  }
  .navSub-1 .box:after {
    border-width: 8px 5px 0 5px;
    bottom: -8px;
  }
}
.navSub-2 {
  text-align: center;
  padding-top: 70px;
}
.navSub-2 .list {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  margin-left: -23px;
  margin-right: -22px;
}
.navSub-2 .list li {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px 0 10px;
}
.navSub-2 .list .box {
  display: inline-block;
  min-width: 160px;
  line-height: 36px;
  padding: 0 10px;
  color: #666666;
  border: 1px #dcdddd solid;
  border-radius: 36px;
  font-size: 18px;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
}
.navSub-2 .list .box:hover {
  background: #eb3d00;
  border-color: #eb3d00;
  color: #fff;
}
.navSub-2 .list .active .box {
  background: #eb3d00;
  border-color: #eb3d00;
  color: #fff;
}
@media screen and (max-width: 1599px) {
  .navSub-2 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .navSub-2 {
    padding-top: 40px;
  }
  .navSub-2 .list li {
    padding: 0 5px 10px 5px;
  }
  .navSub-2 .list .box {
    font-size: 14px;
    min-width: auto;
  }
}
.inside-title {
  line-height: 1;
  text-align: center;
  font-size: 36px;
  color: #eb3d00;
  font-weight: 700;
  position: relative;
}
.inside-title:after {
  content: '';
  display: block;
  width: 74px;
  height: 5px;
  border-radius: 5px;
  background-color: #de6c1e;
  margin: 20px auto auto auto;
}
@media screen and (max-width: 1023px) {
  .inside-title {
    font-size: 24px;
  }
  .inside-title:after {
    width: 60px;
    height: 3px;
  }
}
.inside-title-2 {
  text-align: center;
  font-size: 36px;
  color: #eb3d00;
  position: relative;
}
.inside-title-2 .title-1 {
  color: #333333;
  font-size: 36px;
}
.inside-title-2 .title-2 {
  color: #999999;
  font-size: 16px;
  margin-bottom: 10px;
}
.inside-title-2 .info {
  color: #999999;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .inside-title-2 .title-1 {
    font-size: 24px;
  }
  .inside-title-2 .title-2 {
    font-size: 14px;
  }
  .inside-title-2 .info {
    font-size: 14px;
  }
}
.inside-title-3 {
  text-align: center;
  font-size: 36px;
  color: #eb3d00;
  position: relative;
}
.inside-title-3 .title-1 {
  color: #eb3d00;
  font-size: 36px;
  font-weight: 700;
}
.inside-title-3 .title-2 {
  color: #999999;
  font-size: 16px;
  margin-bottom: 10px;
}
.inside-title-3 .info {
  color: #999999;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .inside-title-3 .title-1 {
    font-size: 24px;
  }
  .inside-title-3 .title-2 {
    font-size: 14px;
  }
  .inside-title-3 .info {
    font-size: 14px;
  }
}
.inside-2 {
  padding-top: 80px;
}
.inside-2 > .container {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.inside-2 .leftCon {
  width: 18.75%;
  float: left;
}
.inside-2 .leftCon .titleBig {
  background: #eb3d00;
  color: #fff;
  line-height: 1;
  padding: 30px 20px 20px 20px;
  border-top-right-radius: 20px;
  position: relative;
}
.inside-2 .leftCon .cn {
  font-size: 30px;
}
.inside-2 .leftCon .en {
  font-size: 44px;
  opacity: 0.08;
  position: absolute;
  top: 15px;
  left: 20px;
}
.inside-2 .classifyPro {
  margin-bottom: 30px;
}
.inside-2 .classifyPro .nr {
  border-left: 1px #d3d3d3 solid;
  border-right: 1px #d3d3d3 solid;
  border-bottom: 1px #d3d3d3 solid;
}
.inside-2 .classifyPro .list li {
  border-bottom: 1px #d3d3d3 solid;
  padding: 20px 20px;
}
.inside-2 .classifyPro .list li:last-child {
  border-bottom: none;
}
.inside-2 .classifyPro .list .first {
  font-size: 18px;
  margin-bottom: 10px;
  padding-right: 30px;
  height: 30px;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.inside-2 .classifyPro .list .first .iconfont {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.5s;
}
.inside-2 .classifyPro .list .sencond {
  display: none;
  overflow: hidden;
}
.inside-2 .classifyPro .list .sencond a {
  color: #666666;
  font-size: 16px;
  display: block;
  height: 40px;
  line-height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.inside-2 .classifyPro .list .sencond a:hover {
  color: #eb3d00;
  text-decoration: underline;
}
.inside-2 .classifyPro .list .sencond .active a {
  color: #eb3d00;
}
.inside-2 .classifyPro .list .active .first a {
  color: #eb3d00;
}
.inside-2 .classifyPro .list .active .first .iconfont {
  transform: rotate(90deg);
  color: #eb3d00;
}
.inside-2 .classifyProM {
  display: none;
  margin-left: -5px;
  margin-right: -5px;
  padding-bottom: 10px;
  overflow: hidden;
}
.inside-2 .classifyProM li {
  width: 50%;
  float: left;
  padding: 0 5px;
}
.inside-2 .classifyProM .select-form {
  width: 100%;
}
.inside-2 .newsLeft {
  border-bottom: 1px #eb3d00 solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.inside-2 .newsLeft .pic img {
  width: 100%;
}
.inside-2 .newsLeft .titleBig-2 {
  font-size: 22px;
  color: #eb3d00;
  margin-bottom: 10px;
  position: relative;
}
.inside-2 .newsLeft .titleBig-2 .more {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px #b5b5b6 solid;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.inside-2 .newsLeft .titleBig-2 .more:before,
.inside-2 .newsLeft .titleBig-2 .more:after {
  content: '';
  display: block;
  background: #b4b4b5;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.inside-2 .newsLeft .titleBig-2 .more:before {
  width: 6px;
  height: 2px;
}
.inside-2 .newsLeft .titleBig-2 .more:after {
  height: 6px;
  width: 2px;
}
.inside-2 .newsLeft .titleBig-2 .more:hover {
  border-color: #eb3d00;
}
.inside-2 .newsLeft .titleBig-2 .more:hover:before,
.inside-2 .newsLeft .titleBig-2 .more:hover:after {
  background: #eb3d00;
}
.inside-2 .newsLeft .list .box {
  display: block;
  color: #333;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 15px;
  position: relative;
}
.inside-2 .newsLeft .list .box:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px #898989 solid;
  position: absolute;
  top: 12px;
  left: 0;
}
.inside-2 .newsLeft .list .box:hover {
  color: #eb3d00;
}
.inside-2 .newsLeft .list .box:hover:before {
  border-color: #eb3d00;
}
.inside-2 .contactLeft {
  border-bottom: 1px #bfbfbf solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.inside-2 .contactLeft .box {
  display: flex;
}
.inside-2 .contactLeft .pic {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  border: 1px #b5b5b6 solid;
  position: relative;
}
.inside-2 .contactLeft .text {
  padding-left: 18px;
}
.inside-2 .contactLeft .title {
  font-size: 18px;
  color: #3e3a39;
  text-align: center;
  margin-bottom: 5px;
}
.inside-2 .contactLeft .tel {
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  background: #eb3d00;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.inside-2 .rightCon {
  width: 81.25%;
  float: left;
  padding-left: 45px;
}
@media screen and (max-width: 1280px) {
  .inside-2 .contactLeft .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .inside-2 {
    padding-top: 40px;
  }
  .inside-2 > .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .inside-2 .leftCon {
    width: 100%;
  }
  .inside-2 .leftCon .titleBig {
    padding: 12px 20px;
  }
  .inside-2 .leftCon .titleBig .cn {
    font-size: 18px;
  }
  .inside-2 .leftCon .titleBig .en {
    font-size: 20px;
  }
  .inside-2 .classifyPro {
    display: none;
    padding-bottom: 20px;
  }
  .inside-2 .classifyPro .list li {
    padding: 10px 10px;
  }
  .inside-2 .classifyPro .list .first {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .inside-2 .newsLeft {
    display: none;
  }
  .inside-2 .contactLeft {
    display: none;
  }
  .inside-2 .classifyProM {
    display: block;
  }
  .inside-2 .rightCon {
    width: 100%;
    padding-left: 0;
  }
}
.inside-3 {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 70px;
}
@media screen and (max-width: 1023px) {
  .inside-3 {
    padding-top: 40px;
  }
}
.listProduct {
  margin-left: -15px;
  margin-right: -15px;
}
.listProduct > li,
.listProduct .slick-slide {
  width: 25%;
  float: left;
  padding: 0 8px 28px 8px;
}
.listProduct .box {
  display: block;
  padding: 8px;
  border: 1px #c9caca solid;
}
.listProduct .pic {
  border: 1px #c9caca solid;
  overflow: hidden;
  position: relative;
}
.listProduct .pic:after {
  content: '';
  display: block;
  padding-top: 75%;
}
.listProduct .pic:before {
  content: '';
  cursor: pointer;
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 444;
  background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: skewX(-45deg);
  transition: all 1s;
}
.listProduct .pic img {
  transition: all 0.5s;
}
.listProduct .text {
  padding: 10px 15px;
  border: 1px #c9caca solid;
  border-top: none;
}
.listProduct .title {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 400;
  height: 25px;
  line-height: 25px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 30px;
  position: relative;
}
.listProduct .iconfont {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-weight: 400;
  background: #de6c1e;
  position: absolute;
  top: 5px;
  right: 0;
  transform: scale(0.8);
}
.listProduct .info {
  color: #555;
  height: 30px;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .listProduct .box:hover .pic {
    border-color: #eb3d00;
  }
  .listProduct .box:hover .pic:before {
    left: 120%;
  }
  .listProduct .box:hover .pic img {
    transform: scale(1.1);
  }
  .listProduct .box:hover .text {
    border-color: #eb3d00;
    background: #eb3d00;
  }
  .listProduct .box:hover .title {
    color: #fff;
  }
  .listProduct .box:hover .info {
    color: #fff;
  }
  .listProduct .box:hover .iconfont {
    background: #fff;
    color: #de6c1e;
  }
}
@media screen and (max-width: 1023px) {
  .listProduct {
    margin-left: -5px;
    margin-right: -5px;
  }
  .listProduct li {
    width: 50%;
    padding: 0 5px 10px 5px;
  }
  .listProduct .box {
    border: none;
    padding: 0;
  }
  .listProduct .text {
    padding: 5px;
  }
  .listProduct .title {
    font-size: 14px;
  }
  .listProduct .info {
    height: 24px;
    line-height: 24px;
  }
}
.product {
  padding-top: 176px;
  padding-bottom: 0;
}
.product .page {
  padding-top: 50px;
}
@media screen and (max-width: 1023px) {
  .product .page {
    padding-top: 30px;
  }
}
.pinfo {
  padding: 74px 0 0 0;
}
.product01 {
  padding: 163px 0 120px 0;
  background: url(../images/pbg1.png) no-repeat top center;
  background-size: cover;
}
.product01 .box {
  position: relative;
  font-size: 0;
}
.product01 .text {
  width: 41%;
  display: inline-block;
  vertical-align: middle;
  padding-top: 161px;
  float: left;
}
.product01 .text .bt,
.product01 .text .span {
  color: #333;
  font-size: 48px;
  line-height: 72px;
  letter-spacing: 4px;
  color: #333333;
}
.product01 .text ul {
  font-size: 0;
  margin-top: 71px;
  margin-bottom: 67px;
}
.product01 .text ul li {
  width: 25%;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.product01 .text ul li .box {
  position: relative;
}
.product01 .text ul li .box:after {
  content: '';
  display: block;
  width: 1px;
  height: 80px;
  background: #cccccc;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.product01 .text ul li .pic {
  width: 50px;
  margin: 0 auto;
  float: none;
  overflow: hidden;
  position: relative;
}
.product01 .text ul li .pic:after {
  padding-bottom: 100%;
  content: '';
  display: block;
}
.product01 .text ul li .h3 {
  font-size: 16px;
  color: #666666;
  margin-top: 8px;
}
.product01 .text ul li:nth-last-child(1) .box:after {
  display: none;
}
.product01 .text .jsh {
  margin-top: 46px;
}
.product01 .text .video {
  margin-top: 83px;
}
.product01 .text .video a {
  width: 57px;
  height: 57px;
  background: url('../images/video1.png') no-repeat center center;
  display: block;
  border: 2px solid #999;
  border-radius: 50%;
  background-size: 100% !important;
}
.product01 .text .video a:hover {
  border: 2px solid #eb3d00;
  background: url('../images/video2.png') no-repeat center center;
}
.product01 .text .more p {
  display: block;
  width: 156px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  border-radius: 30px;
  padding: 0 31px;
  position: relative;
  background: #eb3d00;
  font-size: 16px;
}
.product01 .text .more p .iconfont {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  color: #eb3d00;
  margin-left: 5px;
  font-weight: 400;
  background: #fff;
}
.product01 .pic {
  display: inline-block;
  vertical-align: middle;
  width: 42%;
  position: relative;
  overflow: hidden;
  float: right;
}
.product01 .pic:after {
  padding-bottom: 100%;
  content: '';
  display: block;
}
.product01 .pic img {
  transition: 0.5s;
}
@media (min-width: 1025px) {
  .product01:hover .pic img {
    transform: scale(1.03);
  }
  .product01:hover .more p {
    background: #de6c1e;
  }
}
.product02 {
  background: url(../images/pbg2.png) no-repeat top center;
  background-size: cover;
}
.product02 .text {
  width: 41%;
  float: right;
}
.product02 .pic {
  float: left;
}
.ZSmart-bottom {
  padding-top: 81px;
}
.ZSmart-bottom .list {
  position: relative;
}
.ZSmart-bottom .list .slick-prev,
.ZSmart-bottom .list .slick-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ebebeb;
  border: 1px #ebebeb solid;
  margin-top: 0;
  transform: translateY(-50%);
  z-index: 44;
}
.ZSmart-bottom .list .slick-next {
  right: 20px;
}
.ZSmart-bottom .list .slick-prev {
  left: 20px;
}
.ZSmart-bottom .list .slick-prev:before,
.ZSmart-bottom .list .slick-next:before {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #666;
}
.ZSmart-bottom .list .slick-prev:hover,
.ZSmart-bottom .list .slick-next:hover {
  border-color: #eb3d00;
  background-color: #eb3d00;
  color: #fff;
}
.ZSmart-bottom .list .slick-prev:hover:before,
.ZSmart-bottom .list .slick-next:hover:before {
  color: #fff;
}
.ZSmart-bottom .list .slick-prev:before {
  content: '\e613';
}
.ZSmart-bottom .list .slick-next:before {
  content: '\e615';
}
.ZSmart-bottom .list ul {
  padding: 0 107px;
}
.ZSmart-bottom .list li {
  width: 25%;
  float: left;
  padding: 0 13px;
}
.ZSmart-bottom .list li a {
  display: block;
  position: relative;
  font-size: 24px;
}
.ZSmart-bottom .list li a:after {
  content: '';
  display: block;
  width: 100%;
  height: 21px;
  background-image: url(../images/dot2.png);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
}
.ZSmart-bottom .list li .pic {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  position: relative;
}
.ZSmart-bottom .list li .pic:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(235, 61, 0, 0.44);
}
.ZSmart-bottom .list li .pic:after {
  padding-bottom: 71.90082645%;
  content: '';
  display: block;
}
.ZSmart-bottom .list li .bt {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
  z-index: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  word-break: break-word;
  padding: 0 5px;
}
.ZSmart-bottom .list .slick-current a .pic:before {
  background-color: #eb3d00;
}
.ZSmart-bottom .list .slick-current a:after {
  opacity: 1;
}
.ZSmart-bottom .show {
  margin-bottom: 100px;
  position: relative;
}
.ZSmart-bottom .show .info {
  padding: 130px 114px 132px 74px;
  background-color: #fff;
  box-shadow: 0px 2px 12px 3px rgba(28, 28, 27, 0.18);
  overflow: hidden;
  margin: 0 20px 20px 20px;
}
.ZSmart-bottom .show .info .text {
  display: inline-block;
  vertical-align: middle;
  width: 58%;
  float: left;
  padding-top: 58px;
}
.ZSmart-bottom .show .info .bt {
  color: #333;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}
.ZSmart-bottom .show .info .jsh {
  font-size: 16px;
  line-height: 29px;
  color: #999999;
}
.ZSmart-bottom .show .info .img {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 38%;
  float: right;
}
.ZSmart-bottom .show .info .img a {
  display: block;
  position: relative;
  overflow: hidden;
}
.ZSmart-bottom .show .info .img a:after {
  padding-bottom: 65.45842217%;
  content: '';
  display: block;
}
.ZSmart-bottom .show .info .img a:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 44;
  background: url(../images/video.png) no-repeat center center;
}
.ZSmart-bottom .show .info .img a .hover {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  padding: 5px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
}
.moreBtn-2 a,
.moreBtn-2 span {
  display: inline-block;
  min-width: 155px;
  line-height: 40px;
  height: 42px;
  border-radius: 42px;
  text-align: center;
  padding: 0 10px;
  font-size: 16px;
  background-color: #eb3d00;
  border: 1px #eb3d00 solid;
  color: #fff;
  position: relative;
}
.moreBtn-2 a .iconfont,
.moreBtn-2 span .iconfont {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  background: #fff;
  color: #de6c1e;
  font-size: 12px;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 15px;
}
.moreBtn-2 a:hover,
.moreBtn-2 span:hover {
  border-color: #de6c1e;
  background: #de6c1e;
}
.moreBtn-2 .iconfont {
  margin-left: 10%;
}
@media screen and (max-width: 1023px) {
  .moreBtn-2 a,
  .moreBtn-2 span {
    min-width: 120px;
    font-size: 14px;
    height: 36px;
    line-height: 34px;
  }
  .moreBtn-2 a .iconfont,
  .moreBtn-2 span .iconfont {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
#privacyPopup1 {
  z-index: 10000000;
  position: fixed;
  width: 800px;
  background: #fff;
  border: 4px solid rgba(0, 0, 0, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
#privacyPopup1 video {
  display: block;
}
#privacyPopup1 .close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}
/*page*/
.page {
  clear: both;
  text-align: center;
  font-size: 0;
  font-family: arial;
  line-height: 16px;
}
.page em {
  font-style: normal;
  font-size: 14px;
  line-height: 38px;
  vertical-align: top;
}
.page a,
.page span {
  color: #333;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  min-width: 40px;
  line-height: 40px;
  height: 40px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #e6e6e6;
  margin: 0 5px;
  padding: 0 0;
  vertical-align: top;
}
.page a.cur,
.page span.cur,
.page a.active,
.page span.active,
.page a:hover,
.page span:hover {
  box-shadow: 0 0 0 1px #fff;
  background-color: #eb3d00;
  color: #fff;
}
.page a.cur svg,
.page span.cur svg,
.page a.active svg,
.page span.active svg,
.page a:hover svg,
.page span:hover svg {
  fill: #fff;
}
.page a.prev,
.page span.prev,
.page a.next,
.page span.next {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1023px) {
  .page a,
  .page span {
    display: none;
  }
  .page .prev,
  .page .next {
    display: inline-block;
  }
}
.news {
  padding-top: 50px;
  padding-bottom: 100px;
}
.news .list li {
  border-bottom: 1px #eeeeee solid;
}
.news .list .box {
  display: block;
  display: flex;
  padding: 30px 180px 30px 30px;
  position: relative;
}
.news .list .pic {
  width: 260px;
  overflow: hidden;
  position: relative;
}
.news .list .pic:after {
  content: '';
  display: block;
  padding-top: 58.69565217%;
}
.news .list .pic img {
  transition: transform 0.5s;
}
.news .list .text {
  flex: 1;
  padding-left: 40px;
  float: right;
  padding-top: 15px;
}
.news .list .title {
  color: #333;
  font-size: 18px;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  margin-bottom: 10px;
}
.news .list .info {
  color: #999;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}
.news .list .info-2 {
  color: #999;
  font-size: 12px;
  line-height: 30px;
}
.news .list .date-more {
  position: absolute;
  top: 60px;
  right: 30px;
}
.news .list .date {
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
  color: #999999;
}
.news .list .date .day {
  display: block;
  padding: 0 10px;
  font-size: 38px;
}
.news .list .date .year {
  font-size: 14px;
}
.news .list .more a,
.news .list .more span {
  display: inline-block;
  min-width: 90px;
  text-align: center;
  padding: 0 10px;
  color: #999999;
  border: 1px #cccccc solid;
  border-radius: 5px;
  line-height: 26px;
}
.news .list .box:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.news .list .box:hover img {
  transform: scale(1.1);
}
.news .list .box:hover .title {
  color: #eb3d00;
}
.news .list .box:hover .more a,
.news .list .box:hover .more span {
  background: #eb3d00;
  color: #fff;
  border-color: #eb3d00;
}
.news .page {
  padding-top: 100px;
}
@media screen and (max-width: 1599px) {
  .news {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .news .page {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .news {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .news .list li {
    width: 100%;
    padding: 0 0 30px 0;
  }
  .news .list .box {
    display: block;
    padding: 0;
    box-shadow: none !important;
  }
  .news .list .pic {
    width: 100%;
  }
  .news .list .pic img {
    width: 100%;
    position: static;
  }
  .news .list .pic:after {
    display: none;
  }
  .news .list .text {
    position: static;
    width: 100%;
    clear: left;
    padding: 20px 0 0 0;
  }
  .news .list .title {
    font-size: 16px;
    margin-bottom: 0;
  }
  .news .list .info {
    margin-bottom: 5px;
  }
  .news .list .info-2 {
    margin-bottom: 5px;
  }
  .news .list .date-more {
    position: static;
    clear: both;
  }
  .news .list .date {
    display: none;
    text-align: left;
  }
  .news .list .date .day {
    display: inline-block;
    font-size: 14px;
    padding: 0;
  }
  .news .list .date .year {
    display: inline-block;
    font-size: 14px;
  }
  .news .list .more a,
  .news .list .more span {
    font-size: 12px;
    border-radius: 3px;
  }
  .news .page {
    padding-top: 40px;
  }
}
.news-show {
  font-size: 18px;
  line-height: 2;
  padding-bottom: 80px;
}
.news-show .hd {
  background: #f7f7f7;
  padding-top: 40px;
  padding-bottom: 25px;
  border-bottom: 1px #dcdcdc dashed;
  position: relative;
}
.news-show .hd .icon {
  width: 48px;
  height: 8px;
  border-top: 1px #de6c1e solid;
  margin: auto;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
}
.news-show .hd .icon:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #de6c1e transparent transparent transparent;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.news-show .hd .icon:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #f7f7f7 transparent transparent transparent;
  margin: auto;
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
}
.news-show .show-title {
  color: #333333;
  text-align: center;
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 10px;
}
.news-show .show-info {
  text-align: center;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin-top: 10px;
  padding-bottom: 35px;
  position: relative;
}
.news-show .show-info .date {
  position: relative;
}
.news-show .show-info .date:after {
  content: '';
  width: 1px;
  height: 22px;
  background: #dcdcdc;
  display: inline-block;
  vertical-align: top;
  margin: 3px 10px;
}
.news-show .show-info .iconfont {
  font-size: 20px;
  margin-right: 5px;
  vertical-align: top;
}
.news-show .hd .container{
  max-width: 1000px;
}
.news-show .nr {
  border-bottom: 1px #d0d0d0 dashed;
  padding-top: 60px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.news-show2 .nr {
  max-width: 1000px;
	margin: 0 auto;
}
.news-show .p-1 {
  font-weight: 700;
  color: #eb3d00;
  font-size: 20px;
  margin-bottom: 20px;
}
.news-show .p-1 span {
  border-left: 5px #eb3d00 solid;
  padding-left: 10px;
}
.news-show .p-2 {
  font-weight: 700;
  color: #333333;
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.news-show .shareSocial {
  line-height: 40px;
  margin-bottom: 40px;
}
.news-show .shareSocial .bt {
  font-size: 16px;
  color: #c3c3c3;
}
.news-show .shareSocial a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 38px;
  border: 1px transparent solid;
  background-color: #efefef;
  color: #b3b3b3;
  vertical-align: top;
  margin: 0 5px 0 0;
  text-align: center;
  position: relative;
}
.news-show .shareSocial a img {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-show .shareSocial a:last-child {
  margin-right: 0;
}
.news-show .shareSocial a:hover {
  text-decoration: none;
  background: #eb3d00;
  border-color: #eb3d00;
  color: #fff;
}
.news-show .shareSocial a:hover .open {
  display: block;
}
.news-show .shareSocial a .open {
  display: none;
  padding-bottom: 15px;
  position: absolute;
  z-index: 999;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.news-show .shareSocial a .open .openCon {
  cursor: initial;
  background: #eb3d00;
  border: 1px #eb3d00 solid;
  padding: 4px 4px 4px 4px;
  text-align: center;
  color: #666;
  font-size: 14px;
  position: relative;
}
.news-show .shareSocial a .open .openCon:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #eb3d00;
  border-right: 1px #eb3d00 solid;
  border-bottom: 1px #eb3d00 solid;
  position: absolute;
  z-index: -1;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.news-show .shareSocial a .open img {
  max-width: 170px;
  vertical-align: middle;
}
.news-show .shareSocial .bds_weixin {
  background: #efefef url(../images/icon/weixin-2.png) center center no-repeat;
  background-size: 30px 30px;
}
.news-show .shareSocial .bds_weixin:hover {
  background: #eb3d00 url(../images/icon/weixin.png) center center no-repeat;
  background-size: 30px 30px;
}
.news-show .shareSocial .bds_tqq {
  background: #efefef url(../images/icon/qq-2.png) center center no-repeat;
  background-size: 30px 30px;
}
.news-show .shareSocial .bds_tqq:hover {
  background: #eb3d00 url(../images/icon/qq.png) center center no-repeat;
  background-size: 30px 30px;
}
.news-show .shareSocial .bds_tsina {
  background: #efefef url(../images/icon/weibo-2.png) center center no-repeat;
  background-size: 30px 30px;
}
.news-show .shareSocial .bds_tsina:hover {
  background: #eb3d00 url(../images/icon/weibo.png) center center no-repeat;
  background-size: 30px 30px;
}
@media screen and (max-width: 1599px) {
  .news-show {
    padding-bottom: 60px;
    font-size: 14px;
  }
  .news-show .show-title {
    font-size: 30px;
  }
  .news-show .show-info {
    font-size: 14px;
    padding-bottom: 40px;
  }
  .news-show .p-2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .news-show {
    padding-bottom: 40px;
    font-size: 14px;
  }
  .news-show .hd {
    padding-top: 30px;
  }
  .news-show .show-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .news-show .show-info {
    font-size: 14px;
    padding-bottom: 0px;
  }
  .news-show .p-1 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .news-show .p-1 span {
    border-left-width: 3px;
  }
  .news-show .p-2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news-show .nr {
    padding-top: 40px;
  }
  .news-show .shareSocial {
    line-height: 30px;
    height: 30px;
  }
  .news-show .shareSocial a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .news-show .bds_weixin {
    background-size: 24px 24px !important;
  }
  .news-show .bds_tqq {
    background-size: 24px 24px !important;
  }
  .news-show .bds_tsina {
    background-size: 24px 24px !important;
  }
}
.prev-next-return {
  overflow: hidden;
  position: relative;
  font-size: 16px;
}
.prev-next-return a {
  color: #333333;
  display: block;
  height: 94px;
  line-height: 94px;
  overflow: hidden;
}
.prev-next-return em {
  font-style: initial;
}
.prev-next-return .prev,
.prev-next-return .next {
  width: 40%;
  float: left;
  transition: all 0.5s;
  overflow: hidden;
}
.prev-next-return .prev a,
.prev-next-return .next a {
  background-color: #efefef;
  color: #999999;
  padding: 0 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.prev-next-return .prev .iconfont,
.prev-next-return .next .iconfont {
  font-size: 20px;
  vertical-align: middle;
  display: inline-block;
}
.prev-next-return .prev:hover a,
.prev-next-return .next:hover a {
  background-color: #eb3d00;
  color: #fff;
}
.prev-next-return .prev {
  padding-right: 2px;
  text-align: left;
}
.prev-next-return .prev .iconfont {
  margin-right: 10px;
  position: absolute;
  top: 0;
  left: 40px;
}
.prev-next-return .prev a {
  padding-left: 80px;
}
.prev-next-return .next {
  padding-left: 2px;
  text-align: right;
}
.prev-next-return .next .iconfont {
  margin-left: 10px;
  position: absolute;
  top: 0;
  right: 40px;
}
.prev-next-return .next a {
  padding-right: 80px;
}
.prev-next-return .return {
  width: 20%;
  float: left;
}
.prev-next-return .return a {
  display: block;
  background-color: #efefef;
  text-align: center;
  color: #999999;
}
.prev-next-return .return a:hover {
  background: #eb3d00;
  color: #fff;
}
.prev-next-return .return .iconfont {
  margin-right: 10px;
  font-size: 20px;
  vertical-align: middle;
  margin-top: -3px;
}
@media screen and (max-width: 1599px) {
  .prev-next-return {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .prev-next-return {
    font-size: 14px;
  }
  .prev-next-return a {
    height: 40px;
    line-height: 40px;
  }
  .prev-next-return .prev,
  .prev-next-return .next {
    height: 40px;
    line-height: 40px;
    width: 33.33333333%;
  }
  .prev-next-return .prev a,
  .prev-next-return .next a {
    padding: 0 15px;
    text-align: center;
  }
  .prev-next-return .prev .iconfont,
  .prev-next-return .next .iconfont {
    font-size: 16px;
    position: static;
    vertical-align: top;
    margin-right: 5px;
  }
  .prev-next-return .prev em,
  .prev-next-return .next em {
    display: none;
  }
  .prev-next-return .prev a {
    padding-left: 5px;
    padding-right: 5px;
  }
  .prev-next-return .next a {
    padding-left: 5px;
    padding-right: 5px;
  }
  .prev-next-return .return {
    height: 40px;
    line-height: 40px;
    width: 33.33333333%;
  }
  .prev-next-return .return a {
    height: 40px;
    line-height: 40px;
  }
  .prev-next-return .return .icon-caidan {
    font-size: 14px;
  }
}
.product-show {
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 189px;
}
.product-show img {
  vertical-align: top;
}
.product-show .slick-prev:before,
.product-show .slick-next:before {
  display: none;
}
.product-show .slick-prev,
.product-show .slick-next {
  background-color: #e6e6e6;
  width: 48%;
  height: 15px;
  margin-top: 0;
  z-index: 9;
  bottom: 0;
  transform: translateY(0);
}
.product-show .slick-prev:before,
.product-show .slick-next:before {
  color: #fff;
  opacity: 1;
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}
.product-show .slick-prev:hover,
.product-show .slick-next:hover {
  background: #eb3d00;
}
.product-show .slick-prev:hover:before,
.product-show .slick-next:hover:before {
  color: #fff;
}
.product-show .slick-prev {
  left: 0;
  top: auto;
  bottom: 0;
}
.product-show .slick-prev:before {
  content: '\e612';
}
.product-show .slick-next {
  right: 0;
  top: auto;
  bottom: 0;
}
.product-show .slick-next:before {
  content: '\e614';
}
.product-show .hd {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 63px;
  background-color: #fafafa;
}
.product-show .hd .left {
  width: 55%;
  float: left;
  display: inline-flex;
}
.product-show .hd .pics {
  width: 100%;
  overflow: hidden;
}
.product-show .hd .pro-max {
  width: 80%;
  padding: 0 0 0 16px;
  overflow: hidden;
  text-align: center;
  position: relative;
  cursor: pointer;
  float: left;
}
.product-show .hd .pro-max .pic {
  position: relative;
}
.product-show .hd .pro-max .pic:after {
  content: '';
  display: block;
  padding-top: 75%;
}
.product-show .hd .pro-max .list {
  border: 1px #e6e6e6 solid;
  width: 100%;
  max-width: 602px;
}
.product-show .hd .slick-dots {
  bottom: 10px;
  font-size: 0;
  z-index: 999;
  overflow: initial;
  padding-top: 10px;
}
.product-show .hd .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 0px;
  overflow: hidden;
  float: none;
}
.product-show .hd .slick-dots li button {
  padding: 0;
  display: block;
  width: 10px;
  height: 10px;
  border: 2px #ccc solid;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.product-show .hd .slick-dots li button:before {
  display: none;
}
.product-show .hd .slick-dots .slick-active button {
  border-color: #eb3d00;
}
.product-show .hd .slick-vertical .slick-slide {
  border: none;
}
.product-show .hd .pro-min {
  width: 20%;
  max-width: 132px;
  float: left;
  max-height: 452px;
  overflow: hidden;
  padding: 1px 4px 0 0;
}
.product-show .hd .pro-min .list {
  padding-bottom: 20px;
  position: relative;
}
.product-show .hd .pro-min .slick-list {
  overflow: hidden;
}
.product-show .hd .pro-min .item {
  cursor: pointer;
  display: block;
  padding: 9px;
  border: 1px #e6e6e6 solid;
  margin-bottom: 7px;
}
.product-show .hd .pro-min .item:hover {
  border-color: #eb3d00;
}
.product-show .hd .pro-min .pic {
  position: relative;
}
.product-show .hd .pro-min .pic:before {
  content: '';
}
.product-show .hd .pro-min .pic:after {
  content: '';
  display: block;
  padding-top: 75%;
}
.product-show .hd .pro-min .pic:hover {
  border-color: #eb3d00;
}
.product-show .hd .pro-min .pic img {
  
}
.product-show .hd .pro-min .slick-current .item .pic {
  border-color: #eb3d00;
}
.product-show .hd .pro-min .slick-current .item img {
  opacity: 1;
}
.product-show .hd .right {
  width: 45%;
  float: left;
  padding-top: 80px;
  padding-left: 80px;
}
.product-show .hd .text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  padding-top: 6px;
  padding-left: 20px;
}
.product-show .hd .text .jsh {
  margin-top: 20px;
  margin-bottom: 60px;
  line-height: 24px;
}
.product-show .hd .text .div-1 {
  width: 50%;
  float: left;
  padding: 0 10px;
  line-height: 30px;
}
.product-show .hd .text .div-1 .box {
  display: flex;
  padding: 10px 0;
  position: relative;
}
.product-show .hd .text .div-1 .bt {
  width: 90px;
  padding: 5px 0;
}
.product-show .hd .text .div-1 .info {
  flex: 1;
  background: #e5e5e5;
  color: #333;
  padding: 5px 10px;
}
.product-show .hd .title-1 {
  color: #eb3d00;
  font-size: 16px;
}
.product-show .hd .show-title {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px #e6e6e6 solid;
}
.product-show .show {
  color: #666;
  line-height: 2;
  font-size: 16px;
  padding: 100px 0 0 0;
  position: relative;
}
.product-show .show .left {
  width: 78.125%;
  float: left;
  padding-right: 10%;
}
.product-show .show .right {
  width: 21.875%;
  float: left;
  z-index: 9;
}
.product-show .show .title {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  font-size: 30px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.product-show .show .item {
  border-bottom: 1px #f3f3f3 solid;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}
.product-show .show .item .anchor {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -120px;
}
.product-show .show .item:last-child {
  margin-bottom: 0;
}
.product-show .show .menuTabs {
  text-align: center;
  padding: 0 0 20px 0;
}
.product-show .show .menuTabs .box {
  display: block;
  color: #333;
  line-height: 48px;
  cursor: pointer;
  border-right: 2px transparent solid;
}
.product-show .show .menuTabs .box:hover {
  background: #efefef;
  color: #eb3d00;
  border-right: 2px #eb3d00 solid;
}
.product-show .show .menuTabs .active .box {
  background: #efefef;
  color: #eb3d00;
  border-right: 2px #eb3d00 solid;
}
.product-show .leftContact .pic img {
  width: 100%;
}
.product-show .leftContact .titleBig {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}
.product-show .leftContact .text {
  background: #efefef;
  color: #333;
  padding: 25px 20px;
}
.product-show .leftContact .text a {
  color: #333;
}
.product-show .leftContact .text a:hover {
  color: #eb3d00;
  text-decoration: underline;
}
.product-show .leftContact .p-1 {
  position: relative;
}
.product-show .leftContact .p-1 .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.product-show .leftContact .btn {
  padding-top: 20px;
}
.product-show .leftContact .btn a {
  display: block;
  line-height: 46px;
  background: #eb3d00;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.product-show .leftContact .btn a:hover {
  background: #de6c1e;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1599px) {
  .product-show .hd .show-title {
    font-size: 24px;
  }
  .product-show .hd .right {
    padding-top: 30px;
  }
  .product-show .hd .text {
    font-size: 14px;
  }
  .product-show .hd .text .jsh {
    margin-bottom: 30px;
  }
  .product-show .hd .text .div-1 .box {
    padding: 5px 0;
  }
  .product-show .show .title {
    font-size: 24px;
  }
  .product-show .leftContact .titleBig {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .product-show .hd {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .product-show .hd .left {
    width: 100%;
    display: block;
  }
  .product-show .hd .pro-min {
    display: none;
  }
  .product-show .hd .pro-max {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: none;
  }
  .product-show .hd .right {
    width: 100%;
    padding: 0;
  }
  .product-show .hd .show-title {
    font-size: 24px;
  }
  .product-show .hd .text {
    font-size: 14px;
    padding: 30px 0 0 0;
  }
  .product-show .hd .text .jsh {
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .product-show .hd .text .div-1 {
    width: 100%;
  }
  .product-show .hd .text .div-1 .box {
    padding: 5px 0;
  }
  .product-show .hd .moreBtn-2 {
    padding-top: 20px;
  }
  .product-show .show {
    padding-top: 40px;
	font-size: 12px;
  }
  .product-show .show .left {
    width: 100%;
    padding: 0;
  }
  .product-show .show .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .product-show .show .title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .product-show .show .right {
    width: 100%;
    padding: 0;
  }
  .product-show .show .right .menuTabs {
    display: none;
  }
  .product-show .show .leftContact {
    padding: 30px 0 0 0;
  }
  .product-show .show .leftContact .titleBig {
    font-size: 16px;
  }
  .product-show .show .leftContact .btn a {
    line-height: 40px;
  }
}
.likeProduct {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 70px;
}
.likeProduct .listProduct .title {
  font-size: 18px;
  height: 40px;
  line-height: 40px;
}
.likeProduct .listProduct .iconfont {
  top: 10px;
}
.likeProduct .nr {
  margin-top: 70px;
}
.likeProduct .titleBig {
  text-align: center;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  font-size: 30px;
}
.likeProduct .slick-dots {
  bottom: 20px;
  font-size: 0;
  z-index: 999;
  overflow: initial;
  position: static;
  padding-top: 10px;
}
.likeProduct .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 0px;
  overflow: hidden;
  float: none;
}
.likeProduct .slick-dots li button {
  padding: 0;
  display: block;
  width: 10px;
  height: 10px;
  border: 2px #ccc solid;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.likeProduct .slick-dots li button:before {
  display: none;
}
.likeProduct .slick-dots .slick-active button {
  border-color: #eb3d00;
}
@media screen and (max-width: 1599px) {
  .likeProduct {
    padding-top: 20px;
  }
  .likeProduct .nr {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .likeProduct {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .likeProduct .nr {
    margin-top: 30px;
  }
  .likeProduct .titleBig {
    font-size: 24px;
  }
  .likeProduct .listProduct .title {
    font-size: 14px;
    height: 35px;
    line-height: 35px;
  }
  .likeProduct .listProduct .iconfont {
    top: 8px;
  }
}
.case {
  padding-top: 40px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.case .list {
  margin-left: -15px;
  margin-right: -15px;
}
.case .list li {
  width: 33.33333333%;
  float: left;
  padding: 0 15px 30px 15px;
}
.case .list .box {
  display: block;
  transition: all 0.5s;
}
.case .list .pic {
  overflow: hidden;
  position: relative;
}
.case .list .pic:after {
  content: '';
  display: block;
  padding-top: 58.69565217%;
}
.case .list .pic:before {
  content: '';
  cursor: pointer;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.case .list .pic img {
  transition: all 0.5s;
}
.case .list .text {
  border-top: none;
  padding: 30px 65px 30px 25px;
  position: relative;
}
.case .list .title {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 30px;
  position: relative;
}
.case .list .iconfont {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  color: #b2b2b2;
  font-weight: 400;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 35px;
  right: 20px;
  opacity: 0;
  transition: all 0.5s;
}
.case .list .info {
  font-size: 16px;
  color: #666;
  height: 30px;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.case .list .box:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.case .list .box:hover .pic:before {
  opacity: 1;
}
.case .list .box:hover .pic img {
  transform: scale(1.1);
}
.case .list .box:hover .iconfont {
  color: #eb3d00;
  opacity: 1;
}
.case .page {
  padding-top: 40px;
}
@media screen and (max-width: 1599px) {
  .case {
    padding-bottom: 80px;
  }
  .case .list .text {
    padding: 20px 55px 20px 20px;
  }
  .case .list .title {
    font-size: 16px;
  }
  .case .list .info {
    font-size: 14px;
  }
  .case .list .iconfont {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    top: 20px;
  }
  .case .page {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .case {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .case .list {
    margin-left: -5px;
    margin-right: -5px;
  }
  .case .list li {
    width: 100%;
    padding: 0 5px 10px 5px;
  }
  .case .list .box {
    border: none;
    padding: 0;
  }
  .case .list .text {
    padding: 10px;
  }
  .case .list .title {
    font-size: 14px;
  }
  .case .list .info {
    font-size: 14px;
    height: 24px;
    line-height: 24px;
  }
  .case .list .iconfont {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    top: 15px;
    right: 10px;
  }
  .case .page {
    padding-top: 30px;
  }
}
.select-form {
  display: inline-block;
  position: relative;
}
.select-form:after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1px #333333 solid;
  border-bottom: 1px #333333 solid;
  position: absolute;
  right: 12px;
  top: 15px;
  pointer-events: none;
}
.select-form:after {
  transform: rotate(45deg);
  top: auto;
  bottom: 23px;
}
.select-form select {
  width: 100%;
  background: none;
  height: 50px;
  line-height: 48px;
  padding: 0 28px 0 15px;
  background-image: none;
  background-color: transparent;
  appearance: none;
  border: 1px #e4e4e4 solid;
  cursor: pointer;
  font-size: 14px;
  vertical-align: top;
}
.select-form option {
  background-color: #fff;
}
.contact .lxfs li {
  width: 25%;
  float: left;
}
.contact .lxfs .box {
  text-align: center;
  transition: all 0.5s;
}
.contact .lxfs .icon {
  display: block;
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background-color: #eb3d00;
  transition: all 0.5s;
  position: relative;
}
.contact .lxfs .icon img {
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact .lxfs .text {
  padding: 15px 0;
}
.contact .lxfs .title {
  color: #333333;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
}
.contact .lxfs .info {
  color: #666666;
  font-size: 14px;
}
.contact .lxfs .box:hover {
  transform: translateY(-20px);
}
.contact .lxfs .box:hover .icon {
  background-color: #de6c1e;
}
@media screen and (max-width: 1023px) {
  .contact {
    padding-top: 40px;
  }
  .contact .lxfs .list li {
    width: 50%;
    padding: 0 5px 20px 5px;
  }
  .contact .lxfs .list .icon {
    width: 40px;
    height: 40px;
  }
  .contact .lxfs .list .icon img {
    width: 20px;
    height: 20px;
  }
  .contact .lxfs .list .text {
    padding: 5px 0;
  }
  .contact .lxfs .list .title {
    font-size: 14px;
  }
}
.message {
  padding: 50px 0 80px 0;
  position: relative;
}
.message .anchor {
  position: absolute;
  top: -100px;
  left: 0;
}
.message .titleBig {
  font-weight: 700;
  color: #333333;
  font-size: 30px;
  text-align: center;
  position: relative;
}
.message .nr {
  margin-top: 50px;
}
.message .list {
  position: relative;
}
.message li {
  width: 33.33333333%;
  float: left;
  padding: 0 8px 16px 8px;
  position: relative;
}
.message li:last-child {
  padding-bottom: 0;
}
.message .select-form {
  width: 100%;
}
.message .select-form select {
  background: #fff;
  color: #666;
  padding-left: 30px;
  font-size: 14px;
}
.message .col-1 {
  width: 100%;
}
.message .col-2 {
  width: 50%;
}
.message .box {
  position: relative;
}
.message .red {
  position: absolute;
  z-index: 9;
  left: 20px;
  top: 14px;
  color: #2f318b;
}
.message .error {
  background: #ff0000;
  color: #fff;
  padding: 0 6px;
  border-bottom-left-radius: 6px;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
}
.message .input-form,
.message .textarea-form {
  border: none;
  border-radius: 3px;
  color: #333;
  vertical-align: middle;
  border: #d1d1d1 solid 1px;
  padding: 0 30px;
  height: 50px;
  line-height: 48px;
  font-size: 14px;
  width: 100%;
}
.message .input-form:focus,
.message .textarea-form:focus {
  border: #eb3d00 solid 1px;
}
.message .textarea-form {
  line-height: 30px;
  padding: 10px 30px 10px 30px;
  width: 100%;
  min-height: 140px;
}
.message .textarea-form:focus {
  border: #eb3d00 solid 1px;
}
.message .btn {
  width: 100%;
  text-align: left;
  padding-top: 20px;
}
.message .btn .col-2 {
  width: 50%;
}
.message .agree {
  color: #666666;
  font-size: 14px;
}
.message .agree .a-1 {
  color: #666666;
}
.message .agree .a-1:hover {
  color: #eb3d00;
  text-decoration: underline;
}
.message .submit {
  font-size: 24px;
  width: 33.3333333%;
  display: inline-block;
  max-width: 200px;
  text-align: center;
  line-height: 48px;
  height: 50px;
  border-radius: 50px;
  color: #eb3d00;
  margin-right: 20px;
  background: none;
  border: 1px #eb3d00 solid;
}
.message .submit .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.message .submit:hover {
  background: #eb3d00;
  border-color: #eb3d00;
  color: #fff;
}
.message .verify {
  height: 50px;
  background-color: #e5e5e5;
  position: relative;
}
.message .verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  color: #959595;
  border: 1px #e5e5e5 solid;
  background: #fff;
  background-size: 20px 20px;
  z-index: 2;
  cursor: move;
}
.message .verify .drag-btn:before {
  font-family: 'iconfont' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e627';
  font-size: 16px;
}
.message .verify .suc-drag-btn {
  background: #fff;
  background-size: 20px 20px;
}
.message .verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  line-height: 48px;
  width: 0;
  background-color: #eb3d00;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.message .verify .fix-tips,
.message .verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #333;
  z-index: 1;
  line-height: 50px;
  padding-left: 50px;
  text-align: center;
}
.message .verify .fix-tips:before,
.message .verify .verify-msg:before {
  font-family: 'iconfont' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '';
  font-size: 16px;
  vertical-align: top;
  margin-right: 10px;
}
.message .verify .verify-msg {
  padding-left: 0;
  padding-right: 50px;
}
.message .verify .verify-msg {
  background-color: #eb3d00;
  color: #fff;
  display: none;
}
.message .verify .sucMsg:before {
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .message .verify {
    height: 40px;
  }
  .message .verify .drag-btn {
    height: 40px;
    line-height: 38px;
  }
  .message .verify .drag-btn:before {
    font-size: 20px;
  }
  .message .verify .drag-progress {
    height: 40px;
    line-height: 38px;
  }
  .message .verify .fix-tips,
  .message .verify .verify-msg {
    line-height: 40px;
  }
  .message .verify .sucMsg:before {
    font-size: 20px;
  }
}
.message .verifyDiv {
  width: 30%;
  vertical-align: middle;
}
@media screen and (max-width: 1599px) {
  .message .titleBig {
    font-size: 30px;
  }
  .message .submit {
    font-size: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .message {
    padding: 40px 0 40px 0;
  }
  .message .nr {
    margin-top: 30px;
  }
  .message .titleBig {
    font-size: 24px;
  }
  .message li {
    width: 100%;
    padding-bottom: 10px;
  }
  .message .input-form,
  .message .textarea-form {
    font-size: 14px;
    padding-left: 30px;
    padding-right: 15px;
  }
  .message .verifyDiv {
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 0;
  }
  .message .btn {
    text-align: center;
  }
  .message .btn .col-2 {
    width: 100%;
    padding: 0;
  }
  .message .select-form select {
    font-size: 14px;
  }
  .message .agree {
    font-size: 14px;
  }
  .message .submit {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}
#privacyPopup {
  position: relative;
  box-sizing: border-box;
  display: none;
}
#privacyPopup .transparent {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
#privacyPopup .con {
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  width: 90%;
  max-width: 1000px;
  font-size: 14px;
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#privacyPopup .privacyHd {
  width: 100%;
  position: relative;
  padding: 0 10px;
  box-sizing: border-box;
  background: #f3f3f3;
}
#privacyPopup .privacyHd .title {
  width: 100%;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
}
#privacyPopup .privacyHd .closeBtn-1 {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  color: #c5c5c5;
  cursor: pointer;
}
#privacyPopup .privacyHd .closeBtn-1:hover {
  color: #ff0000;
}
#privacyPopup .privacyTitle {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
#privacyPopup .p-1 {
  font-size: 20px;
}
#privacyPopup .p-2 {
  font-size: 16px;
}
#privacyPopup .privacyBd {
  box-sizing: border-box;
  width: 100%;
  height: 480px;
  padding: 20px 30px;
  overflow: auto;
  position: relative;
}
#privacyPopup .privacyFt {
  width: 100%;
  padding: 10px 0;
  margin-top: 19px;
  text-align: center;
  border-top: 1px #eee solid;
}
#privacyPopup .closeBtn-2 {
  min-width: 120px;
  line-height: 38px;
  height: 40px;
  padding: 0 10px;
  text-align: center;
  display: inline-block;
  background: #fff;
  color: #333;
  border: 1px solid #e3e8f2;
  border-radius: 40px;
  cursor: pointer;
}
#privacyPopup .closeBtn-2:hover {
  background: #ff0000;
  color: #fff;
}
#allmap {
  width: 100%;
  height: 630px;
  font-size: 12px;
}
#allmap .BMap_bubble_content > div {
  font-size: 12px !important;
}
#allmap .BMap_bubble_content .div-text {
  width: 300px !important;
}
#allmap img {
  max-width: none;
  max-height: none;
}
@media screen and (max-width: 1023px) {
  #allmap {
    height: 300px;
  }
  #allmap .BMap_bubble_content .div-text {
    width: 240px !important;
  }
}
.job {
  padding-bottom: 80px;
}
.job .list {
  background: #fff;
  overflow: hidden;
}
.job .span-01 {
  display: block;
  width: 20%;
  padding-left: 30px;
  float: left;
}
.job .span-02 {
  display: block;
  width: 20%;
  float: left;
  text-align: center;
}
.job .span-03 {
  display: block;
  width: 20%;
  float: left;
  text-align: center;
}
.job .span-04 {
  display: block;
  width: 20%;
  float: left;
  text-align: center;
}
.job .span-05 {
  display: block;
  width: 20%;
  padding-left: 30px;
  float: left;
}
.job .title {
  overflow: hidden;
  font-size: 16px;
  line-height: 55px;
  background-color: #eb3d00;
  color: #fff;
}
.job .title span {
  position: relative;
}
.job .title .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.job dl {
  border-bottom: 1px #f5f5f5 solid;
}
.job dt {
  font-size: 14px;
  overflow: hidden;
  padding: 15px 0;
  line-height: 24px;
  cursor: pointer;
  position: relative;
}
.job dt:hover a {
  color: #fff;
}
.job dd {
  background: #fff;
  color: #000;
  height: 0;
  overflow: hidden;
}
.job dd .nr {
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px 30px 30px 30px;
  background-color: #f7f8f8;
}
.job .cur {
  padding-bottom: 20px;
  border-bottom: none;
}
.job .cur dd {
  height: auto;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.job .div-1 {
  border-bottom: 1px #dcdddd solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.job .div-1 .div-3 {
  width: 33.33333333%;
  float: left;
}
.job .div-2 {
  border-bottom: 1px #dcdddd solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.job .p-1 {
  color: #333333;
  font-size: 16px;
  margin-bottom: 10px;
}
.job .p-2 {
  color: #666666;
  font-size: 16px;
}
.job .p-2 .icon {
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.job .a-1 {
  margin-right: 5px;
  color: #eb3d00;
}
.job .a-1:hover {
  text-decoration: underline;
}
.job .fbrqM {
  display: none;
}
@media (max-width: 1023px) {
  .job {
    font-size: 12px;
    padding-bottom: 40px;
  }
  .job .title {
    font-size: 12px;
  }
  .job .span-01 {
    width: 43%;
  }
  .job .span-02 {
    width: 23%;
  }
  .job .span-03 {
    width: 30%;
  }
  .job .span-04 {
    width: 20%;
    display: none;
  }
  .job .span-05 {
    width: 20%;
    display: none;
  }
  .job .fbrqM {
    display: block;
  }
  .job .div-1 {
    display: block;
    line-height: 24px;
  }
  .job .div-1 .div-3 {
    width: 100%;
  }
  .job .div-2 {
    line-height: 24px;
  }
  .job .p-2 {
    font-size: 14px;
  }
  .job dd .nr {
    padding: 10px 10px 10px 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.about {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #fafbfd;
}
.brief {
  color: #666666;
  font-size: 14px;
  line-height: 2;
  padding-top: 220px;
}
.brief .bt {
  font-size: 36px;
  color: #eb3d00;
  margin-bottom: 20px;
  position: relative;
}
.brief .bt .title-1 {
  display: inline-block;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1;
  padding-left: 50px;
  padding-bottom: 30px;
}
.brief .bt .title-2 {
  font-size: 106px;
  color: rgba(102, 102, 102, 0.21);
  font-family: 'dincond-mediumregular';
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1;
}
.brief .bt .year {
  font-style: normal;
  font-size: 76px;
  margin-left: 40px;
}
.brief .list {
  padding: 45px 0;
}
.brief .list ul {
  margin: 0 -11px;
}
.brief .list li {
  width: 33.33333%;
  float: left;
  padding: 0 11px;
}
.brief .list li .box {
  padding: 10px;
  background: #fff;
  box-shadow: 0px 0px 27px 2px rgba(51, 51, 51, 0.26);
}
.brief .list li .pic {
  position: relative;
  overflow: hidden;
}
.brief .list li .pic:after {
  content: '';
  display: block;
  padding-bottom: 60.94808126%;
}
.brief .youshi {
  background-color: #fafafa;
  padding: 50px 0 0 0;
}
.brief .youshi .container {
  padding-left: 0;
  padding-right: 0;
}
.brief .youshi .list {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.brief .youshi .list:after {
  display: none;
}
.brief .youshi li {
  padding: 0 0.1rem;
  width: 33.33333333%;
  float: left;
  color: #000;
  font-size: 0.16rem;
  position: relative;
}
.brief .youshi .num {
  line-height: 0.5rem;
  font-size: 69px;
  font-weight: 700;
  color: #eb3d00;
}
.brief .youshi .num em {
  font-size: 69px;
  margin-left: 0.05rem;
  font-style: inherit;
  vertical-align: top;
}
.brief .youshi .num .sub-1 {
  vertical-align: bottom;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}
.brief .youshi .counter {
  font-size: 69px;
  margin-right: 5px;
  font-weight: 700;
  color: #eb3d00;
  line-height: 1;
}
.brief .youshi .info {
  color: rgba(35, 35, 35, 0.8);
  font-size: 20px;
}
@media screen and (max-width: 1023px) {
  .brief .youshi {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .brief .youshi .list {
    display: block;
    margin-left: -10px;
    margin-right: -10px;
  }
  .brief .youshi li {
    width: 50%;
    padding: 0 10px 10px 10px;
  }
  .brief .youshi li:after {
    height: 20px;
  }
  .brief .youshi .num {
    font-size: 16px;
    line-height: 30px;
  }
  .brief .youshi .num sup {
    font-size: 14px;
  }
  .brief .youshi .counter {
    font-size: 24px;
  }
  .brief .youshi .info {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .brief {
    padding-top: 60px;
  }
  .brief .bt {
    font-size: 24px;
  }
  .brief .bt .title-2 {
    font-size: 60px;
  }
}
@media (max-width: 413px) {
  .brief .bt {
    font-size: 20px;
  }
  .brief .bt .en {
    font-size: 50px;
    bottom: 4px;
  }
  .brief .bt .year {
    font-size: 50px;
  }
}
.history {
  padding-top: 60px;
  padding-bottom: 0;
}
.history .nr {
  margin-top: 60px;
  position: relative;
}
.history .nr:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #999999;
  position: absolute;
  top: 90px;
  left: 0;
}
.history .list {
  position: relative;
}
.history .list > li,
.history .list .slick-slide {
  width: 16.66666667%;
  float: left;
}
.history .list .box {
  text-align: center;
  color: #333333;
  transform: scale(0.9);
  transition: all 0.5s;
}
.history .list .dot {
  display: block;
  width: 45px;
  height: 80px;
  margin: 0 auto 10px auto;
  background: url(../images/icon/dot-1.png) no-repeat 0 0;
}
.history .list .year {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 30px;
  line-height: 60px;
}
.history .list .info {
  font-size: 21px;
  line-height: 34px;
}
.history .list .slick-current .box {
  color: #eb3d00;
  transform: scale(1);
}
.history .list .slick-current .year {
  color: #eb3d00;
}
.history .list .slick-current .dot {
  background: url(../images/icon/dot-2.png) no-repeat 0 0;
}
.history .list .slick-current .info {
  color: #eb3d00;
}
.history .list .box:hover .box {
  color: #eb3d00;
}
.history .list .box:hover .year {
  color: #eb3d00;
}
.history .list .box:hover .dot {
  background: url(../images/icon/dot-2.png) no-repeat 0 0;
}
.history .list .box:hover .info {
  color: #eb3d00;
}
.history .slick-prev,
.history .slick-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px #c8caca solid;
  top: 70px;
  transform: translateY(0);
}
.history .slick-prev:before,
.history .slick-next:before {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
}
.history .slick-prev:hover,
.history .slick-next:hover {
  border-color: #dfad74;
  background-color: #dfad74;
  color: #fff;
}
.history .slick-prev:hover:before,
.history .slick-next:hover:before {
  color: #fff;
}
.history .slick-prev:before {
  content: '\e613';
}
.history .slick-next:before {
  content: '\e615';
}
.history .swiper-button-prev,
.history .swiper-button-next {
  width: 32px;
  height: 32px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px #c8caca solid;
  background: none;
  text-align: center;
  background: #fff;
  position: absolute;
  top: 95px;
  transform: translateY(0);
}
.history .swiper-button-prev:before,
.history .swiper-button-next:before {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ccc;
  font-size: 20px;
}
.history .swiper-button-prev:hover,
.history .swiper-button-next:hover {
  border-color: #eb3d00;
  background: #eb3d00;
  color: #fff;
}
.history .swiper-button-prev:hover:before,
.history .swiper-button-next:hover:before {
  color: #fff;
}
.history .swiper-button-prev {
  left: -30px;
}
.history .swiper-button-prev:before {
  content: '\eb9a';
}
.history .swiper-button-next {
  right: -30px;
}
.history .swiper-button-next:before {
  content: '\eb9c';
}
.honor {
  padding-top: 60px;
  padding-bottom: 0;
}
.honor .list1 {
  text-align: center;
  padding-top: 10px;
}
.honor .list1 li {
  display: inline-block;
  vertical-align: top;
  margin: 0 13px;
}
.honor .list1 li a {
  width: 112px;
  line-height: 29px;
  border-radius: 15px;
  display: block;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  padding: 0 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border: solid 1px #dcdddd;
}
.honor .list1 .active a {
  background: #eb3d00;
  color: #fff;
  border: solid 1px #eb3d00;
}
.honor .show .info {
  display: none;
}
.honor .slick-prev,
.honor .slick-next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px #c8caca solid;
}
.honor .slick-prev:before,
.honor .slick-next:before {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
}
.honor .slick-prev:hover,
.honor .slick-next:hover {
  border-color: #de6c1e;
  background-color: #de6c1e;
  color: #fff;
}
.honor .slick-prev:hover:before,
.honor .slick-next:hover:before {
  color: #fff;
}
.honor .slick-prev:before {
  content: '\e613';
}
.honor .slick-next:before {
  content: '\e615';
}
.honor .nr {
  margin-top: 50px;
}
.honor .nr .list {
  margin-left: 0;
  margin-right: 0;
}
.honor .nr .list > li,
.honor .nr .list .slick-slide {
  padding: 0 15px 0 15px;
  width: 25%;
  float: left;
}
.honor .nr .list .box {
  background-color: #fff;
  display: block;
  border: 2px #dddddd solid;
}
.honor .nr .list .pic {
  overflow: hidden;
  position: relative;
}
.honor .nr .list .pic:after {
  content: '';
  display: block;
  padding-top: 127.94117647%;
}
.honor .nr .list .pic img {
  transition: all 0.5s;
}
.honor .nr .list .box:hover {
  border-color: #eb3d00;
}
.honor .nr .list .box:hover img {
  transform: scale(1.1);
}
.inmain-title {
  text-align: center;
  font-size: 60px;
  font-weight: normal;
  letter-spacing: 2px;
  color: #666666;
}
.inmain-title:after {
  content: '';
  display: block;
  width: 85px;
  height: 3px;
  background-color: #666666;
  margin-top: 11px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.list3 {
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}
.list3 ul {
  text-align: center;
}
.list3 ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0 35px;
  font-size: 18px;
}
.list3 ul li a {
  color: #333333;
  line-height: 73px;
  display: block;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.list3 ul li a:after {
  content: '';
  display: block;
  width: 0;
  transition: 0.5s;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #eb3d00;
}
@media (min-width: 1025px) {
  .list3 ul li:hover a {
    color: #eb3d00;
  }
  .list3 ul li:hover a:after {
    width: 100%;
  }
}
.list3 ul .active a {
  color: #eb3d00;
}
.list3 ul .active a:after {
  width: 100%;
}
.partner {
  padding-top: 60px;
  padding-bottom: 80px;
}
.partner .nr {
  margin-top: 50px;
}
.partner .list {
  margin-left: -10px;
  margin-right: -10px;
}
.partner .list li {
  width: 20%;
  float: left;
  padding: 0 10px 20px 10px;
}
.partner .list .box {
  display: block;
  background-color: #fff;
  border: 1px #e9e9e9 solid;
}
.partner .list .pic {
  overflow: hidden;
  position: relative;
}
.partner .list .pic:after {
  content: '';
  display: block;
  padding-top: 44.64285714%;
}
.partner .list .pic img {
  transition: all 0.5s;
}
.partner .list .box:hover {
  border-color: #eb3d00;
}
.partner .list .box:hover img {
  transform: scale(1.1);
}
.service {
  padding-top: 60px;
  padding-bottom: 100px;
}
.service img {
  vertical-align: top;
}
.service .part {
  clear: both;
  padding-bottom: 100px;
}
.service .part:last-child {
  padding-bottom: 0;
}
.service .list li {
  margin-bottom: 90px;
}
.service .list li:last-child {
  margin-bottom: 0;
}
.service .list li:nth-child(2n) .box {
  flex-direction: row-reverse;
}
.service .list li:nth-child(2n) .left {
  float: right;
}
.service .list li:nth-child(2n) .right {
  padding-left: 0;
  padding-right: 5%;
}
.service .list .box {
  color: #333333;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: #666666;
  overflow: hidden;
}
.service .list .left {
  width: 50%;
  float: left;
}
.service .list .pic {
  border: 2px #efefef solid;
}
.service .list .right {
  width: 50%;
  float: left;
  padding-left: 7%;
}
.service .list .title {
  color: #383e94;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service .list .title-2 {
  color: #383e94;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}
.service .list .p-1 {
  margin-bottom: 15px;
}
.service .titleBig {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  position: relative;
}
.service .titleBig:after {
  content: '';
  display: block;
  width: 100px;
  height: 7px;
  background: #ea7f13;
  margin: 20px auto auto auto;
}
.service .titleBig b {
  color: #ea7f13;
}
.service .nr {
  margin-top: 70px;
}
.service .part-2 .nr {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.service .part-2 .left {
  background-color: #e1e1e0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 45%;
  float: left;
  border-radius: 40px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 80px 70px;
}
.service .part-2 .left .title-1 {
  line-height: 90px;
  background: #b8b8b8;
  border-radius: 20px;
  border: 3px #fff solid;
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}
.service .part-2 .leftC {
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}
.service .part-2 .right {
  background-color: #383e94;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 55%;
  float: left;
  border-radius: 40px;
  padding: 80px 70px;
  color: #fff;
}
.service .part-2 .right .title-1 {
  line-height: 90px;
  background: #f1f2f8;
  border-radius: 20px;
  border: 3px #f1f2f8 solid;
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  color: #403e3f;
}
.service .part-2 .right .list-2 .info {
  color: #fff;
}
.service .list-2 li {
  border-bottom: 1px #757577 dashed;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.service .list-2 li:last-child {
  margin-bottom: 0;
}
.service .list-2 .box {
  color: #403e3f;
  font-size: 16px;
  line-height: 30px;
}
.service .list-2 .info {
  padding-left: 45px;
  color: #403e3f;
  position: relative;
}
.service .list-2 .icon {
  width: 30px;
  height: 30px;
  vertical-align: top;
  margin-top: 0;
  margin-right: 15px;
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1023px) {
  .service {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .service .part {
    padding-bottom: 40px;
  }
  .service .part:last-child {
    padding-bottom: 0;
  }
  .service .list li {
    margin-bottom: 40px;
  }
  .service .list li:last-child {
    margin-bottom: 0;
  }
  .service .list .box {
    display: block;
    font-size: 14px;
  }
  .service .list .left {
    width: 100%;
  }
  .service .list .right {
    width: 100%;
    padding-left: 0;
    padding-top: 40px;
  }
  .service .titleBig {
    font-size: 24px;
  }
  .service .titleBig:after {
    width: 80px;
    height: 3px;
    margin-top: 15px;
  }
  .service .nr {
    margin-top: 30px;
  }
  .service .part-2 .nr {
    display: block;
  }
  .service .part-2 .left {
    padding: 20px 10px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
  }
  .service .part-2 .left .title-1 {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .service .part-2 .right {
    padding: 20px 10px;
    border-radius: 10px;
    width: 100%;
  }
  .service .part-2 .right .title-1 {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .service .list-2 li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .service .list-2 .info {
    padding-left: 35px;
  }
}
.table-1 {
  line-height: 40px;
  font-size: 20px;
  color: #333333;
}
.table-1 .title-1 {
  background: #383e94;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
}
.table-1 th {
  padding: 40px 40px;
  border: 1px #fff solid;
  text-align: left;
}
.table-1 tr {
  background-color: #eaeff7;
}
.table-1 tr:nth-child(2n) {
  background-color: #d2deef;
}
.table-1 td {
  padding: 20px 40px;
  border: 1px #fff solid;
}
@media screen and (max-width: 1023px) {
  .table-1 {
    font-size: 14px;
    line-height: 24px;
  }
  .table-1 th {
    padding: 10px 10px;
  }
  .table-1 .title-1 {
    font-size: 16px;
  }
  .table-1 td {
    padding: 10px 10px;
  }
  .table-1 td:nth-child(1) {
    width: 60px;
    text-align: center;
  }
}
/*map*/
.site-map {
  margin: 160px auto 40px auto;
  font-size: 16px;
  overflow: hidden;
}
.site-map dl {
  border: #d6dbe1 solid 1px;
  border-top: #eb3d00 solid 2px;
  border-bottom: none;
  margin: 0 0 20px 0;
}
.site-map dl dt {
  background: #fcfcfc;
  color: #eb3d00;
  font-size: 16px;
  line-height: 50px;
  border-bottom: #d6dbe1 solid 1px;
  padding: 0 0 0 20px;
  width: 100%;
  text-align: left;
  clear: both;
}
.site-map dl dt a {
  color: #333;
}
.site-map dl dt a:hover {
  color: #eb3d00;
}
.site-map dl dt img {
  margin-left: 20px;
}
.site-map dl dd {
  line-height: 40px;
  overflow: hidden;
  padding-top: 10px;
  clear: both;
}
.site-map dl dd .p2 {
  padding: 10px 0 0 20px;
  clear: both;
}
.site-map dl dd .p2 a {
  color: #eb3d00;
  font-weight: bold;
  line-height: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.site-map dl dd .p2 a:hover {
  color: #eb3d00;
}
.site-map dl dd > div {
  clear: both;
  overflow: hidden;
  line-height: 40px;
  border-bottom: #d6dbe1 solid 1px;
  padding: 10px 20px 20px 10px;
}
.site-map dl dd > div a {
  color: #333;
  float: left;
  padding: 0 10px 0 10px;
}
.site-map dl dd > div a:hover {
  color: #eb3d00;
  background: #eb3d00;
  color: #fff;
}
.site-map dl:hover {
  background: rgba(47, 49, 139, 0.05);
}
@media screen and (max-width: 1023px) {
  .site-map {
    font-size: 14px;
    margin-top: 60px;
  }
  .site-map dl dt {
    font-size: 14px;
  }
}
.home-main {
  background: url('../images/bg1.jpg') no-repeat top center;
}
.home-product {
  padding: 92px 0 71px 0;
  background: url(../images/bg.jpg) no-repeat top center;
  background-size: cover;
}
.plist {
  margin: 0 -15px;
  padding-top: 61px;
}
.plist li {
  width: 33.33333333%;
  float: left;
  padding: 0 15px;
  margin-bottom: 30px;
}
.plist li .box {
  padding: 10px 8px;
  border: 1px solid #c9caca;
  background: #fff;
}
.plist li .box .text {
  padding: 10px 28px;
  letter-spacing: 1px;
  border: 1px solid #dcdddd;
  border-top: 1px solid #fff;
}
.plist li .box .text .bt {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.7);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: bold;
  position: relative;
  margin-bottom: 3px;
  padding-right: 35px;
}
.plist li .box .text .bt:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #eb3d00 url('../images/more1.png') no-repeat center center;
  background-size: 20px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 6px;
  transition: 0.5s;
}
.plist li .box .text .p {
  color: #000;
  opacity: 0.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .plist li .box:hover .text .bt:after {
    right: 5px;
  }
  .plist li .box:hover .pic img {
    transform: scale(1.04);
  }
}
.plist li .pic {
  border: 1px solid #dcdddd;
  position: relative;
  overflow: hidden;
}
.plist li .pic img {
  transition: 0.5s;
}
.plist li .pic:after {
  padding-bottom: 81.77676538%;
  content: '';
  display: block;
}
.home-title {
  text-align: center;
}
.home-title h3 {
  font-size: 24px;
  text-transform: uppercase;
  font-family: arial;
  font-weight: normal;
  color: rgba(35, 35, 35, 0.8);
}
.home-title p {
  font-size: 36px;
  color: #eb3d00;
}
@keyframes zhuanquan {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zhuanquan1 {
  100% {
    transform: rotate(-360deg);
  }
}
.home-about {
  padding: 70px 0 99px 0;
  background: #f8f8f8;
}
.home-about .img {
  float: left;
  width: 49.4%;
  position: relative;
}
.home-about .img:before {
  content: '';
  display: block;
  width: 103px;
  height: 104px;
  top: 50%;
  transform: translateY(-50%);
  right: -55px;
  background: url('../images/jiantou.png') no-repeat center center;
  position: absolute;
  z-index: 3;
}
.home-about .img .slick-prev,
.home-about .img .slick-next {
  width: 20px;
  height: 22px;
  margin-top: -12px;
  z-index: 5;
  transform: none;
  background: url('../images/j1.png') no-repeat center center;
}
.home-about .img .slick-prev:before,
.home-about .img .slick-next:before {
  content: '';
}
@media (min-width: 1025px) {
  .home-about .img .slick-prev:hover,
  .home-about .img .slick-next:hover {
    background: url('../images/j1h.png') no-repeat center center;
  }
}
.home-about .img .slick-prev {
  left: auto;
  right: 2px;
}
.home-about .img .slick-next {
  right: -26px;
  transform: rotate(180deg);
}
.home-about .img .item {
  width: 100%;
}
.home-about .img .item a {
  display: block;
}
.home-about .img .pic {
  position: relative;
  overflow: hidden;
}
.home-about .img .pic:after {
  padding-bottom: 87.20112518%;
  content: '';
  display: block;
}
.home-about .text {
  float: right;
  width: 46%;
  padding-top: 41px;
}
.home-about .text .bt {
  position: relative;
  padding-top: 58px;
  margin-bottom: 29px;
  font-size: 36px;
  color: #eb3d00;
}
.home-about .text .bt span {
  font-size: 90px;
  color: #232323;
  opacity: 0.1;
  font-family: arial;
  position: absolute;
  top: 0;
  left: 0;
}
.home-about .text .bt p {
  font-size: 30px;
  color: #232323;
  margin-top: 19px;
}
.home-about .text .p {
  font-size: 16px;
  line-height: 30px;
  height: 150px;
  overflow: hidden;
  color: #232323;
  margin-bottom: 33px;
}
.home-about .text ul {
  margin-top: 45px;
}
.home-about .text ul li {
  float: left;
  margin-right: 110px;
}
.home-about .text ul li .num {
  color: #eb3d00;
}
.home-about .text ul li .num .counter {
  font-size: 38px;
  font-weight: bold;
}
.home-about .text ul li .num b {
  display: inline-block;
  vertical-align: top;
}
.home-about .text ul li .h3 {
  font-size: 16px;
  color: #232323;
}
.home-about .text ul li:nth-child(1) b {
  font-size: 38px;
}
.home-about .text ul li:nth-last-child(1) {
  margin-right: 0;
  float: right;
}
.home-other {
  padding: 30px 0;
  background: url('../images/bg1.jpg') no-repeat top center;
  background-size: cover;
}
.home-other .text {
  float: left;
  width: 28%;
  color: #fff;
}
.home-other .text .bt {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 7px;
}
.home-other .text .p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
}
.home-other .text .tel .tphone {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding-left: 34px;
  background: url(../images/p.png) no-repeat center left;
  background-size: 22px;
  display: block;
  line-height: 24px;
  float: left;
}
.home-other .text .tel .zx {
  width: 82px;
  height: 24px;
  line-height: 24px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  background: #eb3d00;
  display: inline-block;
  vertical-align: top;
  margin-left: 25px;
}
@media (min-width: 1025px) {
  .home-other .text .tel .zx:hover {
    background: #eb3d00;
    color: #fff;
  }
}
.home-other ul {
  float: right;
  width: 65%;
  padding-top: 10px;
}
.home-other ul li {
  width: 25%;
  float: left;
  text-align: center;
  color: #fff;
  font-size: 20px;
}
.home-other ul li .pic {
  width: 90px;
  margin: 0 auto;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
.home-other ul li .pic:after {
  padding-bottom: 100%;
  content: '';
  display: block;
}
.home-other ul li .bt {
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .home-other ul li:hover .pic {
    transform: rotateY(360deg);
  }
}
.vlist {
  margin-top: 31px;
  margin-bottom: 41px;
}
.vlist ul {
  text-align: center;
}
.vlist ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0 9px;
  font-size: 16px;
  margin-bottom: 5px;
}
.vlist ul li a {
  color: rgba(0, 0, 0, 0.5);
  max-width: 190px;
  line-height: 30px;
  border-radius: 30px;
  border: 1px solid #dcdddd;
  display: block;
  padding: 0 22px;
  min-width: 110px;
  height:30px;
  overflow:hidden;
}
@media (min-width: 1025px) {
  .vlist ul li:hover a {
    background: #eb3d00;
    color: #fff;
    border: 1px solid #eb3d00;
  }
}
.vlist ul .active a {
  background: #eb3d00;
  color: #fff;
  border: 1px solid #eb3d00;
}
.more a {
  display: block;
  width: 156px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  border-radius: 30px;
  padding: 0 31px;
  position: relative;
  background: #eb3d00;
}
.more a:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #ffffff url('../images/more3.png') no-repeat center center;
  background-size: 20px;
  border-radius: 50%;
  position: absolute;
  right: 27px;
  top: 10px;
  transition: 0.5s;
}
.more1 a {
  display: block;
  width: 156px;
  height: 42px;
  line-height: 40px;
  color: #eb3d00;
  border-radius: 30px;
  padding: 0 31px;
  position: relative;
  margin: 0 auto;
  font-size: 16px;
  background: none;
  border: 1px solid #aeaeae;
}
.more1 a:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #eb3d00 url('../images/more1.png') no-repeat center center;
  background-size: 20px;
  border-radius: 50%;
  position: absolute;
  right: 27px;
  top: 10px;
  transition: 0.5s;
}
@media (min-width: 1025px) {
  .more1 a:hover {
    color: #fff;
    background: #eb3d00;
    border: 1px solid #eb3d00;
  }
  .more1 a:hover:after {
    background: #ffffff url('../images/more3.png') no-repeat center center;
    background-size: 20px;
  }
}
.home-video {
  padding: 96px 0 88px 0;
  background: #f5f5f5;
}
.home-video .show .info {
  display: none;
}
.videolist {
  margin: 0 -16px;
}
.videolist li {
  width: 33.33333333%;
  float: left;
  padding: 0 16px;
  margin-bottom: 37px;
}
.videolist li .pic {
  position: relative;
  overflow: hidden;
}
.videolist li .pic img {
  transition: 0.5s;
}
.videolist li .pic:after {
  content: '';
  display: block;
  padding-bottom: 58.51528384%;
}
/*.videolist li .pic:before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.49) url('../images/video1.png') no-repeat center center;
  width: 100%;
  height: 100%;
  z-index: 3;
  content: '';
  display: none;
}*/
.videolist li .bt {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 7px;
}
.videolist li .jsh {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  height: 24px;
  line-height: 24px;
}
.videolist li .text {
  padding: 27px 23px;
}
@media (min-width: 1025px) {
  .videolist li:hover .pic img {
    transform: scale(1.04);
  }
  /*.videolist li:hover .pic:before {
    display: block;
  }*/
  .videolist li:hover .text {
    background: #ffffff url('../images/re.png') no-repeat 97% center;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
	padding-right:65px;
  }
}
.home-news {
  padding: 0 0 98px 0;
  background: #f5f5f5;
}
.home-news .slick-prev,
.home-news .slick-next {
  width: 32px;
  height: 32px;
  margin-top: -108px;
  z-index: 5;
  opacity: 0.5;
  border: 1px solid #d3d4d4;
  border-radius: 50%;
}
.home-news .slick-prev:before,
.home-news .slick-next:before {
  content: '';
}
@media (min-width: 1025px) {
  .home-news .slick-prev:hover,
  .home-news .slick-next:hover {
    opacity: 1;
  }
}
.home-news .slick-prev {
  left: -48px;
  background: url('../images/left3.png') no-repeat center center;
}
@media (min-width: 1025px) {
  .home-news .slick-prev:hover {
    border: 1px solid #eb3d00;
    background: #eb3d00 url('../images/left3.png') no-repeat center center;
  }
}
.home-news .slick-next {
  right: -48px;
  background: url('../images/right3.png') no-repeat center center;
}
@media (min-width: 1025px) {
  .home-news .slick-next:hover {
    border: 1px solid #eb3d00;
    background: #eb3d00 url('../images/right3.png') no-repeat center center;
  }
}
.home-news .slick-dots {
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.home-news .slick-dots li {
  float: none;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}
.home-news .slick-dots li button:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7f7f7f;
  opacity: 1;
}
.home-news .slick-dots .slick-active button:before {
  background-color: #eb3d00;
}
.home-news .show .info {
  display: none;
  position: relative;
}
.home-news .show .info .newslist {
  padding-bottom: 70px;
}
.newslist {
  margin: 0 -15px;
}
.newslist li {
  width: 33.33333333%;
  float: left;
  padding: 0 15px;
}
.newslist li .pic {
  position: relative;
  overflow: hidden;
}
.newslist li .pic img {
  transition: 0.5s;
}
.newslist li .pic:after {
  content: '';
  display: block;
  padding-bottom: 58.51528384%;
}
.newslist li .text {
  padding: 21px 0 0 0;
  position: relative;
}
.newslist li .text .bt {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 15px;
  position: relative;
  padding-right: 130px;
}
.newslist li .text .bt span {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(0, 0, 0, 0.5);
}
.newslist li .text .jsh {
  font-size: 16px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.7);
  padding-right:30px;
}
.newslist li .text .more {
  width: 20px;
  height: 20px;
  border: 1px solid #eb3d00;
  border-radius: 50%;
  background: #eb3d00 url('../images/more1.png') no-repeat center center;
  background-size: 20px;
  position: absolute;
  bottom: 4px;
  right: 6px;
}
@media (min-width: 1025px) {
  .newslist li:hover .pic img {
    transform: scale(1.04);
  }
  .newslist li:hover .text .more {
    background: #ffffff url('../images/more3.png') no-repeat center center;
    background-size: 20px;
    border: 1px solid #fff;
  }
}
.home-youshi {
  background: url(../images/bg2.jpg) no-repeat top center;
  background-size: cover;
}
.home-youshi .list {
  overflow: hidden;
}
.home-youshi .list li {
  width: 25%;
  height: 575px;
  float: left;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  overflow: hidden;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0;
  position: relative;
}
.home-youshi .list li .box {
  top: 50%;
  left: 0;
  width: 100%;
  padding-left: 93px;
  padding-right: 93px;
  position: absolute;
  transform: translateY(-50%);
}
.home-youshi .list .title {
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 6px;
}
.home-youshi .list .info {
  font-size: 18px;
  line-height: 24px;
  color: #666666;
  padding-bottom: 43px;
  border-bottom: 3px solid #666666;
}
@media (min-width: 1025px) {
  .home-youshi .list:hover li {
    width: 21.66666666666667%;
  }
  .home-youshi .list li:hover,
  .home-youshi .list li.cur {
    width: 35%;
    background-size: cover;
  }
  .home-youshi .list li:hover .title {
    color: #fff;
  }
  .home-youshi .list li:hover .info,
  .home-youshi .list li.cur .info {
    color: #fff;
    border-bottom: 3px solid #fff;
  }
}
@media screen and (max-width: 1599px) {
  .footer .container {
    max-width: 1260px;
  }
  .header > .container {
    max-width: 1260px;
  }
  .footer .menu li {
    padding: 0 10px;
  }
  .footer .menu {
    padding-right: 0;
  }
  .footer .child {
    max-width: 116px;
  }
  .home-about .text ul li {
    margin-right: 70px;
  }
  .home-about .text {
    padding-top: 0px;
  }
  .home-youshi .list .title {
    font-size: 38px;
  }
  .home-youshi .list .info {
    font-size: 16px;
    padding-bottom: 30px;
  }
  .home-other .text .tel .tphone {
    font-size: 16px;
  }
  .home-other ul li {
    font-size: 16px;
  }
  .list3 ul li {
    margin: 0 25px;
    font-size: 16px;
  }
  .inmain-title {
    font-size: 50px;
  }
  .product01 .text .bt,
  .product01 .text .span {
    font-size: 38px;
    line-height: 52px;
  }
  .product01 .text {
    padding-top: 100px;
  }
  .product01 {
    padding: 123px 0 100px 0;
  }
  .ZSmart-bottom .show .info .bt {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .ZSmart-bottom .show .info .text {
    padding-top: 34px;
  }
  .ZSmart-bottom .show .info {
    padding: 100px 114px 102px 74px;
  }
  .ZSmart-bottom .list li a {
    font-size: 20px;
  }
  .brief .bt .title-2 {
    font-size: 80px;
  }
  .brief {
    padding-top: 168px;
  }
  .history .list .info {
    font-size: 16px;
    line-height: 27px;
  }
}

.banner .video2{
	display:none;
}

@media (max-width: 1280px) {

  .nav > .list > li > a {
    line-height: 60px;
  }
  .inside-banner .text {
    padding-top: 60px;
  }
}
@media (max-width: 1023px) {
  .footer {
    padding-bottom: 0;
  }
  .inside-banner {
    margin-top: 60px;
  }
  .inside-banner .text {
    padding-top: 0;
    margin-top: -20px;
  }
  .brief .bt .title-2 {
    font-size: 30px;
  }
  .brief {
    padding-top: 40px;
  }
  .brief .bt .year {
    font-size: 20px;
    margin-left: 10px;
  }
  .brief .list li {
    width: 100%;
    margin-bottom: 20px;
  }
  .brief .list {
    padding: 25px 0;
  }
  .brief .youshi {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .history {
    padding-top: 30px;
  }
  .history .nr {
    margin-top: 20px;
  }
  .history .slick-prev {
    left: 0;
  }
  .history .slick-next {
    right: 0;
  }
  .honor .slick-prev {
    left: 0;
    z-index: 5;
  }
  .honor .slick-next {
    right: 0;
    z-index: 5;
  }
  .partner .list li {
    width: 50%;
  }
  .partner .nr {
    margin-top: 20px;
  }
  .partner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header .logo {
    left: 15px;
  }
  .header .other {
    display: none;
  }
  .home-about {
    padding: 30px 0 39px 0;
  }
  .home-about .text .bt {
    padding-top: 28px;
    font-size: 20px;
  }
  .home-about .img {
    width: 100%;
  }
  .home-about .text {
    width: 100%;
    padding-top: 0;
  }
  .home-about .text .bt span {
    font-size: 20px;
  }
  .home-about .text .bt p {
    font-size: 16px;
  }
  .home-about .img:before {
    display: none !important;
  }
  .home-about .img .slick-prev,
  .home-about .img .slick-next {
    display: none !important;
  }
  .home-about .text ul li {
    margin-right: 0;
    width: 50%;
  }
  .home-title h3 {
    font-size: 16px;
  }
  .home-title p {
    font-size: 22px;
  }
  .plist li .box .text .bt {
    font-size: 14px;
    line-height: 25px;
    padding-right: 0;
  }
  .home-product {
    padding: 31px 0;
  }
  .plist li {
    width: 50%;
  }
  .plist li .box .text .p {
    font-size: 12px;
  }
  .plist {
    margin: 0 -6px;
    padding-top: 21px;
  }
  .plist li {
    padding: 0 6px;
    margin-bottom: 18px;
  }
  .plist li .box .text .bt:after {
    top: 0;
  }
  .plist li .box {
    padding: 0;
    border: 0;
  }
  .plist li .box .text {
    padding: 10px;
  }
  .home-other .text {
    width: 100%;
    text-align: center;
  }
  .home-other ul {
    width: 100%;
    padding-top: 10px;
  }
  .home-other ul li {
    width: 50%;
    margin-bottom: 10px;
  }
  .home-other .text .bt {
    font-size: 22px;
  }
  .home-other .text .p {
    font-size: 12px;
  }
  .home-other .text .tel .tphone {
    font-size: 14px;
  }
  .home-other .text .tel .zx {
    font-size: 12px;
  }
  .home-other ul li .pic {
    width: 50px;
  }
  .home-other ul li {
    font-size: 14px;
  }
  .home-video {
    padding: 30px 0;
  }
  .vlist ul li {
    font-size: 14px;
  }
  .vlist ul li a {
    padding: 0 12px;
  }
  .vlist {
    margin-top: 21px;
    margin-bottom: 20px;
  }
  .videolist {
    margin: 0 -6px;
  }
  .videolist li {
    padding: 0 6px;
    margin-bottom: 18px;
  }
  .videolist li .text {
    padding: 15px;
  }
  .videolist li .bt {
    font-size: 14px;
  }
  .videolist li .jsh {
    font-size: 12px;
  }
  .videolist li .text {
    background-size: 40px !important;
  }
  .videolist li .pic:before {
    background-size: 40px;
  }
  .videolist li {
    width: 50%;
    margin-bottom: 0;
  }
  .vlist ul li {
    padding: 0 3px;
  }
  .more1 a {
    width: 126px;
    height: 35px;
    line-height: 33px;
    padding: 0px 19px;
    font-size: 12px;
  }
  .more1 a:after {
    right: 16px;
    top: 7px;
  }
  .home-news {
    padding: 0 0 30px 0;
  }
  .newslist li .text .bt {
    font-size: 14px;
    margin-bottom: 10px;
    padding-right: 130px;
  }
  .newslist li .text .jsh {
    font-size: 12px;
  }
  .page a,
  .page span {
    font-size: 12px;
  }
  .home-youshi .list li {
    width: 100%;
    height: auto;
  }
  .home-youshi .list li .box {
    top: auto;
    left: auto;
    position: relative;
    transform: none;
    padding: 20px;
  }
  .home-youshi .list .title {
    font-size: 20px;
  }
  .home-youshi .list .info {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .product {
    padding-top: 76px;
  }
  .inmain-title {
    font-size: 26px;
  }
  .list3 ul li a {
    line-height: 40px;
  }
  .list3 ul li {
    margin: 0 9px;
    font-size: 14px;
  }
  .pinfo {
    padding: 30px 0 0 0;
  }
  .product01 {
    padding: 30px 0;
  }
  .product01 .text {
    padding-top: 0;
    width: 100%;
  }
  .product01 .text .bt,
  .product01 .text .span {
    font-size: 18px;
    line-height: 28px;
  }
  .product01 .text ul li .pic {
    width: 25px;
  }
  .product01 .text ul li {
    width: 50%;
    margin-bottom: 5px;
  }
  .product01 .text ul li .h3 {
    font-size: 14px;
  }
  .product01 .text .more p {
    width: 126px;
    height: 35px;
    line-height: 35px;
    padding: 0px 24px;
    font-size: 12px;
	margin-bottom:20px;
  }
  .product01 .text ul {
    font-size: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .product01 .pic {
    width: 100%;
  }
  .product01 .text ul li:nth-child(2n) .box:after {
    display: none;
  }
  .inmain-title:after {
    margin-bottom: 20px;
  }
  .product-show {
    padding-top: 76px;
    padding-bottom: 10px;
  }
  .product-show .hd {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
  }
  .product-show .show {
    padding-top: 20px;
  }
  .likeProduct .titleBig {
    font-size: 20px;
  }
  .ZSmart-bottom {
    padding-top: 31px;
  }
  .ZSmart-bottom .list ul {
    padding: 0;
  }
  .ZSmart-bottom .list .slick-prev,
  .ZSmart-bottom .list .slick-next {
    display: none !important;
  }
  .ZSmart-bottom .show .info {
    padding: 20px 5px;
    margin: 0;
    box-shadow: none;
  }
  .ZSmart-bottom .list li {
    padding: 0 5px;
  }
  .ZSmart-bottom .show .info .bt {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .ZSmart-bottom .show .info .jsh {
    font-size: 14px;
    line-height: 24px;
  }
  .ZSmart-bottom .show .info .text {
    width: 100%;
    padding-top: 0;
  }
  .ZSmart-bottom .show .info .img {
    width: 100%;
    margin-top: 10px;
  }
  .ZSmart-bottom .show {
    margin-bottom: 30px;
  }
  .ZSmart-bottom .list li a {
    font-size: 14px;
  }
  .ZSmart-bottom .list li a:after {
    height: 10px;
    background-position: top center;
  }
  .home-about .text .bt {
    padding-top: 18px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .home-about .text .p {
    font-size: 14px;
    line-height: 25px;
    height: 125px;
    margin-bottom: 13px;
  }
  #privacyPopup1 {
    width: 96%;
  }
}
.banner .slick-prev:before,
.banner .slick-next:before {
  line-height: 40px;
}
