@charset "utf-8";
@font-face {
  font-family: CenturyGothic-Bold;
  src: url(../fonts/CenturyGothic-Bold.ttf);
}
@font-face {
  font-family: CenturyGothic;
  src: url(../fonts/CenturyGothic.ttf);
}
/* base */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* font-size: calc(100vw / 7.5); */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out 0.2s;
  -moz-transition: opacity 0.2s ease-in-out 0.2s;
  -ms-transition: opacity 0.2s ease-in-out 0.2s;
  -o-transition: opacity 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -moz-outline-style: none;
}

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

b,
strong {
  font-weight: bold;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

pre {
  overflow: auto;
}


dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  outline: none;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
  outline: none;
  -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

.img_h {
  position: relative;
  cursor: pointer;
}
.img_h img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.img_h img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.img_h.img_ha:hover img {
  opacity: 1;
}
.img_h.img_ha:hover img:nth-child(2) {
  opacity: 0;
}
a:hover .img_h.img_ha img,
.img_h:hover img {
  opacity: 0;
}
a:hover .img_h.img_ha img:nth-child(2),
.img_h:hover img:nth-child(2) {
  opacity: 1;
}


.visible-xs {
  display: none !important;
}

.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

.container {
  margin: 0 auto;
  min-height: 1px;
  width: 90%;
  max-width: 1600px;
}
.container2 {
  margin: 0 auto;
  min-height: 1px;
  width: 90%;
  max-width: 1400px;
}

.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
  line-height: 24px;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 72px;
  line-height: 24px;
}

.o_fit video,
.o_fit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

[dis-select] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[dis-drag] {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-dr { /*水平*/
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.f-dc { /*垂直*/
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-1 > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block; /* IE10失效的解决办法 */
}

.f-as {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.f-ac {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-ae {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.f-js {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f-jc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-je {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.f-jsb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}

/* base */

/* scrollbar */
@media (min-width: 1024px) {
  ::-webkit-scrollbar-track-piece {
    width: 10px;
    background-color: #ccc;
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 6px
  }

  ::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #666;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #333;
  }

  ::selection {
    background: #ccc;
    color: #fff;
  }
}

/* scrollbar */

/* animation */
/*
  animation: jump_down 1.8s infinite ease-in-out;
	-moz-animation: jump_down 1.8s infinite ease-in-out;
	-webkit-animation: jump_down 1.8s infinite ease-in-out;
  -o-animation: jump_down 1.8s infinite ease-in-out;
*/
/* jump_down */
@keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-moz-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-webkit-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-o-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

/* jump_down */

/* animation */

/* page */
/*
  <div class="pagination">
    <div class="page_pc hidden-xs clearfix">
      <a href="javascript:;">上一页</a>
      <a href="javascript:;" class="page_num act">1</a>
      <a href="javascript:;" class="page_num">2</a>
      <a href="javascript:;" class="page_num">3</a>
      <a href="javascript:;">下一页</a>
      <em>共10页</em>
    </div>
    <a href="javascript:;" class="page_sj visible-xs">加载更多</a>
  </div>
*/
.pagination {
  margin: 40px auto;
}
.page_pc {
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
}

.page_pc a {
  color: #333;
  margin: 2px;
  padding: 10px 15px;
  text-decoration: none;
  background: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.page_pc a:hover,
.page_pc a.act {
  background: #ea4424;
  color: #fff;
}

.page_sj {
  width: 100px;
  height: 32px;
  background: #ea4424;
  color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 32px;
  display: none;
  text-align: center;
}
/* page */

/* common */
.md {
  position: relative;
  top: -160px;
}
.commonP {
  position: absolute;
  bottom: 0;
  z-index: 9;
}
.common_tit {
  text-align: center;
}
.common_tit h3 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1.1px;
  color: #333;
}
.common_tit h5 {
  font-family: Arial;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.3px;
  color: #999;
}
.common_tit h5::after {
  content: '';
  width: 44px;
  height: 3px;
  background-color: #ea4424;
  display: block;
  margin: 32px auto;
}

.common_btn {
  width: 200px;
  height: 50px;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: -webkit-linear-gradient(90deg, #f3900f 0%, #e62329 100%);
  background: -o-linear-gradient(90deg, #f3900f 0%, #e62329 100%);
  background: -moz-linear-gradient(90deg, #f3900f 0%, #e62329 100%);
  background: linear-gradient(90deg, #f3900f 0%, #e62329 100%);
}

.common_btn span {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.common_btn:hover span {
  margin-left: 20px;
}

.color {
  background: -webkit-linear-gradient(90deg, #f3900f 0%, #e62329 100%);
  background: -o-linear-gradient(90deg, #f3900f 0%, #e62329 100%);
  background: -moz-linear-gradient(90deg, #f3900f 0%, #e62329 100%);
  background: linear-gradient(90deg, #f3900f 0%, #e62329 100%);
}
.hasScroll ::-webkit-scrollbar-track-piece {
  width: 2px;
  background-color: #f0f0f0;
}

.hasScroll ::-webkit-scrollbar {
  width: 2px;
}

.hasScroll ::-webkit-scrollbar-thumb {
  background-color: #ea4424;
}

.hasScroll ::-webkit-scrollbar-thumb:hover {
  background: #ea4424;
}

.hasScroll ::selection {
  background: #f0f0f0;
}
/* common */

.header {
  position: fixed;
  z-index: 999;
  left: 0;
  width: 100%;
  top: 0;
  background: #fff;
  border-bottom: solid 1px #eaeaea;
}
.headeri {
  height: 100px;
}
.header .logo .text {
  font-size: 14px;
  line-height: 12px;
  color: #666;
  margin-left: 25px;
}
.header .logo .text strong {
  padding-left: 8px;
  border-left: 1px solid #ccc;
  margin-left: 8px;
}
.header_nav {
  position: absolute;
  right: 0;
  top: 0;
}
.header_nav li > a {
  height: 100px;
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #333;
  padding: 0 26px;
}
.header_nav li.on > a,
.header_nav li.active > a {
  color: #fff;
  background: -webkit-linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
  background: -o-linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
  background: -moz-linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
  background: linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
}
.header_nav li > a::after {
  content: '';
  border: 4px solid transparent;
  border-bottom: 0;
  border-top: 5px solid #333;
  margin-left: 10px;
}
.header_nav li.on > a::after,
.header_nav li.active > a::after {
  border-top-color: #fff;
}
.header_nav li:first-child > a::after,
.header_nav li:last-child > a::after {
  display: none;
}
.header_nav li:last-child > a {
  width: 160px;
  border-left: 1px solid #eaeaea;
  font-family: CenturyGothic-Bold;
  font-size: 14px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header_nav li:last-child > a:hover {
  color: #ea4424;
  background: transparent;
}

.header_nav li:nth-child(4){display: none;}


.header_nav .header_nav2 {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  height: 60px;
  width: 100%;
  background: #eee;
  text-align: center;
  font-size: 0;
}
.header_nav .header_nav2 p {
  display: inline-block;
  vertical-align: top;
}
.header_nav .header_nav2 a {
  display: block;
  line-height: 60px;
  height: 60px;
  padding: 0 24px;
  font-size: 14px;
  color: #333;
  background: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header_nav .header_nav2 a:hover {
  color: #ea4424;
}
/* header */
.headerSJ {
  display: none;
}

/* header */

/* menu */

/* menu */

/* banner */
.banner {
  position: relative;
}
.banner .swiper-slide {
  overflow: hidden;
  position: relative;
}
.banner .swiper-slide .text {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  -webkit-transition: all 0.8s ease-in-out 0.4s;
  -moz-transition: all 0.8s ease-in-out 0.4s;
  -ms-transition: all 0.8s ease-in-out 0.4s;
  -o-transition: all 0.8s ease-in-out 0.4s;
  transition: all 0.8s ease-in-out 0.4s;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}
.banner .swiper-slide-active .text {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.banner_btn {
  outline: none;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
  margin: auto;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 9;
}
.banner_prev {
  left: 60px;
}
.banner_prev img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.banner_next {
  right: 60px;
}
.inner_banner {
  position: relative;

}
.inner_banner .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.inner_banner .text h4 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 1.7px;
  color: #fff;
}
.inner_banner .text h6 {
  font-family: Arial;
  font-size: 24px;
  color: #fff;
}
.banner_nav {
}
.banner_nav .t {
  background: #eee;
}
.banner_nav .t a {
  width: 280px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-left: solid 1px #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  color: #4c4c4c;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.banner_nav .t a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 64px;
  height: 2px;
  background-color: #ea4424;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.banner_nav .t a:last-child {
  border-right: 1px solid #e5e5e5;
}
.banner_nav .t a:hover,
.banner_nav .t a.active {
  color: #ea4424;
  background: #fff;
}
.banner_nav .t a:hover::after,
.banner_nav .t a.active::after {
  opacity: 1;
}
.banner_nav .b {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  border-bottom: 2px solid #e5e5e5;
}
.banner_nav .b .container2 {
  height: 72px;
}
.banner_nav .b img {
  margin-right: 8px;
}
.banner_nav .b a {
  color: #666;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.banner_nav .b a:hover {
  color: #ea4424;
}
.banner_nav .b span {
  margin: 0 8px;
}
/* banner */

/* index */
.wrapper {
  overflow: hidden;
  padding-top: 100px;
}
.ind {
  margin: 80px 0;
}
.ind_tit h3 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1.1px;
  color: #333;
}
.ind_tit h5 {
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #333;
  font-family: Arial;
}
.ind1i {
  border: solid 1px #eee;
  padding-left: 37.5%;
  position: relative;
  margin-top: 50px;
}
.ind1i .text {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.7px;
  color: #000;
  text-align: center;
  padding: 0 12%;
}
.ind1i .text h4 {
  color: #ea4424;
}
.ind1i .text h4::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #ea4424;
  display: block;
  margin: 20px auto;
}
.ind1i .text h6 {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.6px;
  color: #808080;
}
.ind1i .l {
  width: 37.5%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.ind1i .l a {
  height: 100%;
  position: relative;
  padding-bottom: 10px;
  overflow: hidden;
}
.ind1i .l a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: -webkit-linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  background: -o-linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  background: -moz-linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  background: linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.ind1i .l a:hover::after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.ind1i .r {
  width: 100%;
}
.ind1i .r li {
  width: 50%;
  float: left;
  background: #fff;
}
.ind1i .r li:nth-child(2),
.ind1i .r li:nth-child(3) {
  background: #f8f8f8;
}
.ind1i .r li .img_h {
  width: 80%;
  margin: 0 auto;
}
.ind1i .r li .text {
  padding-bottom: 32px;
}
.ind1i .r a {
  display: block;
  position: relative;
  overflow: hidden;
}
.ind1i .r a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: -webkit-linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  background: -o-linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  background: -moz-linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  background: linear-gradient(90deg, #fbca01 0%, #e83026 100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.ind1i .r a:hover::after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.ind1i a {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind1i a:hover {
  box-shadow: 0px 3px 27px 3px rgba(0, 0, 0, 0.05);
}

.ind2 {
  padding-left: 30%;
  position: relative;
}
.ind2 .l {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: -webkit-linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
  background: -o-linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
  background: -moz-linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
  background: linear-gradient(-225deg, #f3900f 0%, #e62329 100%);
  padding-left: calc(50vw - 800px);
}
.ind2 .li {
  padding-top: 20%;
}
.ind2 .l h5 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #fff;
  margin-top: 32px;
}
.ind2 .l ul {
  max-width: 148px;
  width: 60%;
  margin-top: 36px;
}
.ind2 .l ul li a {
  font-size: 16px;
  letter-spacing: 0.2px;
  color: #fff;
  display: block;
  border-bottom: 1px solid #dddddd96;
  line-height: 46px;
  background: url(../images/jt2.png) center right no-repeat;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind2 .l ul li a:hover {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
}
.ind2 .r {
  width: 100%;
  padding-right: calc(50vw - 800px);
}
.ind2 .ri {
  padding-left: 6.8%;
  padding: 10% 0 10% 6.8%;
}
.ind2 .r h3 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1.1px;
  color: #fff;
}
.ind2 .r h5 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.7px;
  color: #fff;
  margin-top: 10px;
}
.ind2 .r ul {
  margin-top: 80px;
}
.ind2 .r li {
  color: #fff;
}
.ind2 .r li h4 span {
  font-family: Arial;
  font-size: 6vw;
  line-height: 0.76;
}
.ind2 .r li h4 em {
  font-style: normal;
  font-size: 24px;
  line-height: inherit;
  margin-left: 24px;
}
.ind2 .r li h6 {
  font-size: 16px;
  margin-top: 36px;
}

.ind3i {
  margin-top: 50px;
}
.ind3i ul li {
  max-width: 330px;
  width: 24%;
}
.ind3i ul li a {
}
.ind3i ul li h6 {
  font-family: Arial;
  font-size: 18px;
  color: #888;
}
.ind3i ul li h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-top: 12px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind3i ul li .img {
  margin-top: 10px;
  overflow: hidden;
}
.ind3i ul li .img img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind3i ul li:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ind3i ul li:hover h4 {
  color: #ea4424;
}
.ind3i ul li p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.ind3i ul li h5 {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}

.ind4 {
  background: #f5f5f5;
  padding: 80px 0;
  margin: 0;
}
.ind4 .ind_tit {
  text-align: center;
}
.ind4S {
  position: relative;
  margin-top: 50px;
}
.ind4S .img_h {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  z-index: 9;
  outline: none;
}
.ind4S .img_h.prev {
  left: 54px;
}
.ind4S .img_h.prev img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ind4S .img_h.next {
  right: 54px;
}
.ind4S .swiper-slide {
  background: #fff;
  text-align: center;
  padding: 2% 0;
}
.ind4S .swiper-slide:nth-child(2n + 1) {
  background: #e5e5e5;
}
/* index */

/* footer */
.footer {
  background: #242424;
}
.footert {
  padding-top: 44px;
  padding-bottom: 66px;
}
.footert .l {
}
.footert .l h4 {
  font-size: 14px;
  letter-spacing: 1.4px;
  color: #fff;
  margin-top: 10px;
}
.footert .l h5 {
  font-size: 16px;
  color: #fff;
  margin-top: 56px;
}
.footert .l h6 {
  font-family: Arial;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  margin-top: 10px;
}
.footert .l h6 img {
  margin-right: 10px;
}
.footert .l .icos {
  margin-top: 52px;
}
.footert .l .icos a {
  margin-right: 12px;
}
.footert .r {
}
.footert .r li {
  margin-left: 100px;
}
.footert .r li h6 {
  font-size: 16px;
  color: #fff;
}
.footert .r li h6::after {
  content: '';
  width: 28px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 20px 0;
}
.footert .r li p {
  margin-top: 20px;
}
.footert .r li p a {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  color: #ccc;
}
.footert .r li p a:hover {
  color: #ea4424;
}
.footerb {
  height: 66px;
  font-size: 12px;
  color: #666;
  position: relative;
}
.footerb::before {
  content: '';
  width: 46px;
  height: 2px;
  background-color: #e6212a;
  position: absolute;
  top: 0;
  left: 0;
}

.footert .r li:nth-child(3){display: none;}
/* footer */

/* news */
.news {
  margin: 72px auto 100px;
}
.news ul li a {
  border-bottom: 2px solid #e9e9e9;
  padding: 40px 9%;
  border-left: 4px solid transparent;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news ul li a:hover {
  box-shadow: -1px 5.9px 18.4px 1.6px rgba(0, 0, 0, 0.05);
  border-left-color: #ea4424;
}
.news ul li .img {
  width: 25%;
  overflow: hidden;
}
.news ul li .img img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news ul li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news ul li .text {
  padding-left: 36px;
  width: 75%;
}
.news ul li .text h4 {
  font-size: 20px;
  line-height: 28px;
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news ul li a:hover .text h4 {
  color: #ea4424;
}
.news ul li .text h4::after {
  content: '';
  display: block;
  max-width: 554px;
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  margin: 14px 0;
}
.news ul li .text p {
  font-size: 16px;
  line-height: 26px;
  color: #666;
}
.news ul li .text h6 {
  font-size: 16px;
  color: #999;
  margin-top: 28px;
}

.news_detail {
  margin: 72px auto;
}
.news_detail .t {
  text-align: center;
}
.news_detail .t h1 {
  font-size: 24px;
  line-height: 36px;
  color: #4c4c4c;
}
.news_detail .t h6 {
  margin-top: 18px;
}
.news_detail .t h6 span {
  font-size: 14px;
  color: #999;
  margin-right: 24px;
}
.news_detail .t h6 span:last-child {
  margin-right: 0px;
}
.news_detail .t h6 span img {
  margin-right: 6px;
}
.news_detail .m {
  margin: 24px 0;
  padding: 24px 0;
  border-top: 2px solid #e9e9e9;
  border-bottom: 2px solid #e9e9e9;
  font-size: 16px;
  line-height: 32px;
  color: #666;
}
.news_detail .b {
  position: relative;
  padding-right: 160px;
}
.news_detail .b a {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #666;
}
.news_detail .b a.back {
  width: 100px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: #ea4424;
  font-size: 14px;
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
/* news */

/* join */
.join {
  margin: 72px auto 100px;
}
.join_tit {
}
.join h4 {
  font-size: 14px;
  line-height: 26px;
  color: #666;
  height: 66px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.join h4 span {
  width: 15%;
}
.join h4 span:nth-child(7) {
  width: 10%;
  position: relative;
}
.join_con li:hover h4 {
  background: #f9f9f9;
}
.join_con h4 span:nth-child(7)::before,
.join_con h4 span:nth-child(7)::after {
  content: '';
  width: 23px;
  height: 3px;
  background-color: #ea4424;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.join_con h4 span:nth-child(7)::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.join_con li.active h4 span:nth-child(7)::after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.join_tit h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #ea4424;
}
.join_con h4 {
}
.join_con li {
  border-bottom: 1px solid #e2e2e2;
  cursor: pointer;
}
.join_con li .con {
  background: #eee;
  padding: 40px 80px;
  display: none;
}
.join_con li .con .text p {
  font-size: 14px;
  line-height: 28px;
  color: #666;
}
.join_con li .con .bot {
  margin-top: 20px;
}
.join_con li .con .bot .btn {
  width: 232px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: #ea4424;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: block;
}
.join_con li .con .bot p {
  font-size: 14px;
  line-height: 26px;
  color: #4c4c4c;
  word-break: break-all;
}
.join_con li .con .bot p a {
  color: #00e;
  text-decoration: underline;
}
/* join */

/* contact */
.contact1 {
  margin-top: 72px;
  background: #fff url(../images/contact1_bg.png) center bottom / contain no-repeat;
  padding-bottom: 56px;
}
.contact1 .t {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  height: 84px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #4c4c4c;
}
.contact1 .t span {
  color: #ea4424;
}
.contact1 .b {
  margin-top: 56px;
}
.contact1 .b .img {
  width: 50%;
}
.contact1 .b .text {
  width: 50%;
  font-size: 20px;
  line-height: 40px;
  color: #666;
  padding-left: 7%;
}
.contact1 .b .text span {
  color: #ea4424;
}
.contact2 .my-map {
  height: 500px;
}
.contact2 .my-map .icon {
  background: url(http://lbs.amap.com/console/public/show/marker.png) no-repeat;
}
.contact2 .my-map .icon-cir {
  height: 31px;
  width: 28px;
}
.contact2 .my-map .icon-cir-blue {
  background-position: -11px -55px;
}
.contact2 .amap-container {
  height: 100%;
}
.contact2 .amap-info-content {
  font-size: 14px;
  color: #4c4c4c;
}
.contact2 .amap-info-content h5 {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 10px;
}
/* contact */

/* service */
.serv1 {
  background: transparent;
  padding-bottom: 0;
}
.serv2 {
  margin: 60px auto 100px;
}
.serv2 ul li .img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: solid 1px #eee;
}
.serv2 ul li:hover .img {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.serv2 ul li .text {
  font-size: 18px;
  color: #4d4d4d;
  margin-top: 10px;
  text-align: center;
}
.serv2 .bot {
  height: 320px;
  margin-top: 50px;
}
.serv2 .bot .text {
  padding-left: 80px;
}
.serv2 .bot .text p {
  font-size: 16px;
  line-height: 32px;
  color: #666;
}
.serv2 .bot .text h4 {
  font-size: 26px;
  color: #4c4c4c;
  margin-top: 10px;
}
.serv2 .bot .text h4 span {
  font-family: Arial;
  font-size: 30px;
  color: #e74324;
}
.serv2 .bot .text h5 {
  font-family: Arial;
  font-size: 36px;
  color: #ea4424;
  margin-top: 36px;
}
.serv2 .bot .text h5 img {
  margin-right: 8px;
}
.serv2 .bot .text h5 span {
  font-size: 24px;
  line-height: 18px;
  color: #4c4c4c;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #b5b5b5;
}
.serv3 {
  margin: 72px auto;
}
@-webkit-keyframes ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1, 0.1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1)
  }
}
@-moz-keyframes ripple {
  0% {
    opacity: 0;
    -moz-transform: scale(0.1, 0.1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -moz-transform: scale(1)
  }
}
@-o-keyframes ripple {
  0% {
    opacity: 0;
    -o-transform: scale(0.1, 0.1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -o-transform: scale(1)
  }
}
@keyframes ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes ripple2 {
  0% {
    opacity: 0;
    width: 196px;
    height: 196px;
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 274px;
    height: 274px;
  }
}
@-moz-keyframes ripple2 {
  0% {
    opacity: 0;
    width: 196px;
    height: 196px;
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 274px;
    height: 274px;
  }
}
@-o-keyframes ripple2 {
  0% {
    opacity: 0;
    width: 196px;
    height: 196px;
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 274px;
    height: 274px;
  }
}
@keyframes ripple2 {
  0% {
    opacity: 0;
    width: 196px;
    height: 196px;
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 274px;
    height: 274px;
  }
}
.point-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  opacity: 1;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.point-area .point-name {
  position: absolute;
  top: -119px;
  left: -118px;
  width: 328px;
  z-index: 9;
}
.point-area .point-name .text {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  padding: 40px 44px;
}
.point-area .point-name .text h4 {
  font-size: 24px;
  line-height: 30px;
  color: #4d4d4d;
}
.point-area .point-name .text h5 {
  font-size: 16px;
  line-height: 26px;
  color: #4d4d4d;
  margin-top: 8px;
}
.point-area .point {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background: transparent;
}
.point-area .point.point-dot {
  z-index: 1;
  background-color: #e74324;
}
.point-area .point.point-10,
.point-area .point.point-40,
.point-area .point.point-80,
.point-area .point.point-shadow {
  width: 100%;
  height: 100%;
}
.point-area .point-10:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: #e74324;
  opacity: 0;
  -webkit-animation: ripple 4500ms ease-out 225ms infinite;
  -moz-animation: ripple 4500ms ease-out 225ms infinite;
  -o-animation: ripple 4500ms ease-out 225ms infinite;
  animation: ripple 4500ms ease-out 225ms infinite;
}
.point-area .point-40:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: #e74324;
  opacity: 0;
  -webkit-animation: ripple 4500ms ease-out 900ms infinite;
  -moz-animation: ripple 4500ms ease-out 900ms infinite;
  -o-animation: ripple 4500ms ease-out 900ms infinite;
  animation: ripple 4500ms ease-out 900ms infinite;
}
.point-area .point-80:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: #e74324;
  opacity: 0;
  -webkit-animation: ripple 4500ms ease-out 1800ms infinite;
  -moz-animation: ripple 4500ms ease-out 1800ms infinite;
  -o-animation: ripple 4500ms ease-out 1800ms infinite;
  animation: ripple 4500ms ease-out 1800ms infinite;
}
.point-area .point-shadow:after {
  -webkit-box-shadow: inset 0 0 5em rgba(231, 67, 36, 0.16);
  -moz-box-shadow: inset 0 0 5em rgba(231, 67, 36, 0.16);
  box-shadow: inset 0 0 5em rgba(231, 67, 36, 0.16);
}
.map_outer {
  padding: 0 100px;
  position: relative;
}
.map_outer .inner {
  position: relative;
}
.map_outer .lt {
  position: absolute;
  left: 0;
  top: 0;
}
.map_outer .lt li {
  margin-right: 50px;
}
.map_outer .lt li h5 {
  font-size: 16px;
  color: #e74324;
  line-height: 0.7;
}
.map_outer .lt li h5 span {
  font-family: Arial;
  font-size: 80px;
  color: #e74324;
  margin-left: 7px;
}
.map_outer .lt li p {
  font-size: 16px;
  line-height: 28px;
  color: #4c4c4c;
}
.map_outer .lb {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
}
.map_outer .lb .t h4::after {
  content: '';
  display: block;
  height: 1px;
  background: #444;
  width: 96px;
  margin: 12px 0;
}
.map_outer .lb .t h4 {
  font-size: 24px;
  line-height: 28px;
  color: #4c4c4c;
}
.map_outer .lb .t h5 {
  font-family: Arial;
  font-size: 24px;
  line-height: 36px;
  color: #ea4424;
}
.map_outer .lb .t h6 {
  font-size: 16px;
  color: #4c4c4c;
}
.map_outer .lb .bot {
  height: auto;
  margin-top: 42px;
}
.map_outer .lb .bot .text {
  padding-left: 0;
}
/* service */

/* product */
.product {
  margin: 72px 0 100px;
}
.product ul li {
  width: calc(25% - 9px);
  margin-right: 12px;
  float: left;
}
.product ul li:nth-child(4n) {
  margin-right: 0;
}
.product ul li:nth-child(4n + 1) {
  clear: both;
}
.product ul li a {
  display: block;
  border: solid 1px #ebebeb;
  text-align: center;
  padding: 54px 0 20px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.product ul li a:hover {
  border-color: #ea4424;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
.product ul li a p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.8px;
  color: #4c4c4c;
}
.pro_detail {
  margin: 72px 0 100px;
}
.proS {
  position: relative;
}
.proS .swiper-slide {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  border: solid 2px #ececec;
  padding: 20px 0;
}
.proS .swiper-slide-active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  border: solid 2px #ea4424;
}
.proS .img_h {
  position: absolute;
  width: 40px;
  height: 40px;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 9;
  outline: none;
}
.proS .img_h.prev {
  left: 0;
}
.proS .img_h.prev img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.proS .img_h.next {
  right: 0;
}
.pro_db {
  margin-top: 50px;
}
.pro_db .common_tit h3 {
  line-height: 1;
}
.pro_db .common_tit h5 {
  line-height: 1;
  margin-left: 20px;
}
.pro_db .common_tit h5::after {
  display: none;
}
.pro_db .text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 28px;
  color: #666;
  border-top: solid 1px #f5f5f5;
  border-bottom: solid 1px #f5f5f5;
  padding: 16px 0;
}
.pro_db .bot {
  margin-top: 30px;
}
.pro_db .bot a {
  border: 1px solid #f5f5f5;
  border-right: 0;
  height: 70px;
  line-height: 70px;
  text-align: center;
  padding: 0 60px;
  font-size: 14px;
  color: #666;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.pro_db .bot a:last-child {
  border-right: 1px solid #f5f5f5;
}
.pro_db .bot a:hover {
  background: #ea4424;
  border-color: #ea4424;
  color: #fff;
}
.pro_db .bot a .img_h {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 40px;
  height: 7px;
}
.pro_db .bot a .img_h::before {
  content: '';
  height: 1px;
  width: 0;
  background: #fff;
  position: absolute;
  top: 3px;
  right: 1px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro_db .bot a:hover .img_h::before {
  width: 8px;
}
.pro_db .bot a.prev .img_h {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pro_db .bot a.next .img_h {
  right: 40px;
  left: auto;
}
/* product */

/* honor */
.honor {
  margin: 72px auto;
}
.honori {
  border: solid 1px #dcdcdc;
}
.honori .l {
  width: 46.28%;
  position: relative;
  padding: 7.2% 8%;
}
.honori .l .swiper-container {
}
.honori .l .kuang {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.honori .r {
  width: 53.72%;
  padding: 4.5% 28px 4.5% 4%;
}
.honori .ri {
  width: 100%;
  padding-top: 55.2%;
  height: 0;
  position: relative;
}
.honori .ri ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-right: 32px;
}
.honori .ri ul li {
  width: calc(50% - 16px);
  margin-right: 32px;
  margin-top: 32px;
  height: 68px;
  border: solid 1px #dcdcdc;
  float: left;
  cursor: pointer;
  padding: 0 10px;
  font-size: 18px;
  line-height: 28px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.honori .ri ul li.active,
.honori .ri ul li:hover {
  background: #ea4424;
  color: #fff;
}
.honori .ri ul li:nth-child(2n) {
  margin-right: 0;
}
.honori .ri ul li:nth-child(-n + 2) {
  margin-top: 0;
}
/* honor */

/* culture */
.culture1 {
  margin: 72px auto;
}
.culture1 ul li {
  height: 300px;
  overflow: hidden;
  border: solid 1px #eaeaea;
  float: left;
  width: calc(33.3% - 8px);
  margin-right: 12px;
  padding-top: 58px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.culture1 ul li:nth-child(3n) {
  margin-right: 0;
}
.culture1 ul li .img {
  width: 90px;
  height: 90px;
  border: solid 1px #eaeaea;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.culture1 ul li .text {
  text-align: center;
  margin-top: 20px;
}
.culture1 ul li .text h4::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #999;
  display: block;
  margin: 10px auto;
}
.culture1 ul li .text h4 {
  font-size: 18px;
  font-weight: bold;
  color: #4c4c4c;
}
.culture1 ul li .text p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
}
.culture1 ul li:hover {
  border-color: #e74324;
  padding-top: 28px;
}
.culture1 ul li:hover .text p {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.culture2 {
  margin: 72px auto;
}
.culture2 ul li {
  cursor: pointer;
  position: relative;
  float: left;
  width: calc(25% - 9px);
  margin-right: 12px;
}
.culture2 ul li:last-child {
  margin-right: 0;
}
.culture2 ul li .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 10%;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.culture2 ul li .mask h4 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.culture2 ul li .mask h4::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 28px auto;
}
.culture2 ul li .mask h6 {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.culture2 ul li:hover .mask {
  background: #ea4424;
}
.culture2 ul li:hover .mask h4 {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.culture2 ul li:hover .mask h6 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
/* culture */

/* tech */
.tech1 {
  margin: 72px auto;
}
.tech1i p {
  font-family: MicrosoftYaHei;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0px;
  color: #666;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 20px 0;
  text-align: center;
}
.tech1i ul {
  margin-top: 70px;
}
.tech1i_area {
  position: static;
  cursor: pointer;
  width: 274px;
  height: 274px;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.tech1i_area .point-10:after {
  -webkit-animation: ripple2 2500ms ease-out 225ms infinite;
  -moz-animation: ripple2 2500ms ease-out 225ms infinite;
  -o-animation: ripple2 2500ms ease-out 225ms infinite;
  animation: ripple2 2500ms ease-out 225ms infinite;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.tech1i_area .point-40:after {
  display: none;
}
.tech1i_area .point-80:after {
  -webkit-animation: ripple2 2500ms ease-out 900ms infinite;
  -moz-animation: ripple2 2500ms ease-out 900ms infinite;
  -o-animation: ripple2 2500ms ease-out 900ms infinite;
  animation: ripple2 2500ms ease-out 900ms infinite;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.tech1i_area .point.point-dot {
  width: 196px;
  height: 196px;
  background: #bdbdbd;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tech1i li.active .tech1i_area .point.point-dot {
  background: #e74324;
}
.tech1i_area .point-10:after,
.tech1i_area .point-40:after,
.tech1i_area .point-80:after {
  background: #bdbdbd;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tech1i li.active .tech1i_area .point-10:after,
.tech1i li.active .tech1i_area .point-40:after,
.tech1i li.active .tech1i_area .point-80:after {
  background: #e74324;
}
.tech1i_area .point-shadow:after {
  -webkit-box-shadow: inset 0 0 5em rgba(189, 189, 189, 0.16);
  -moz-box-shadow: inset 0 0 5em rgba(189, 189, 189, 0.16);
  box-shadow: inset 0 0 5em rgba(189, 189, 189, 0.16);
}
.tech1i li.active .tech1i_area .point-shadow:after {
  -webkit-box-shadow: inset 0 0 5em rgba(231, 67, 36, 0.16);
  -moz-box-shadow: inset 0 0 5em rgba(231, 67, 36, 0.16);
  box-shadow: inset 0 0 5em rgba(231, 67, 36, 0.16);
}
.tech1i_area .point-name2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.tech1i_area .point-name2 h4 {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}
.tech1i_area .point-name2 h6 {
  font-size: 14px;
  letter-spacing: 0.1px;
  color: #fff;
}
.tech1i_area .point-name2 h6 span {
  font-family: Arial;
  font-size: 56px;
  font-weight: bold;
  color: #fff;
}
.tech2 {
  margin: 72px auto;
}
.tech2 ul li {
  cursor: pointer;
  position: relative;
  float: left;
  width: calc(50% - 25px);
  margin-right: 50px;
  margin-top: 50px;
}
.tech2 ul li:nth-child(-n + 2) {
  margin-top: 0;
}
.tech2 ul li:nth-child(2n) {
  margin-right: 0;
}
.tech2 ul li .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 10%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tech2 ul li .mask h4 {
  font-size: 24px;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.tech2 ul li .mask h4::after {
  content: '';
  width: 36px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin: 20px auto;
}
.tech2 ul li .mask h6 {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.tech2 ul li:hover .mask {
  background: rgba(234, 68, 36, 0.9);
}
.tech2 ul li:hover .mask h4 {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.tech2 ul li:hover .mask h6 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
/* tech */

/* development */
.development {
  margin: 72px auto;
}
.devS {
  background: url(../images/dev_bg.png) right center / 41% auto no-repeat;
  position: relative;
}
.devS .img_h {
  position: absolute;
  width: 40px;
  height: 40px;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 99;
  outline: none;
}
.devS .prev {
  left: -60px;
}
.devS .prev img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.devS .next {
  right: -60px;
}
.devS .swiper-slide {
}
.devS .swiper-slide .img {
  width: 50%;
  padding-right: 40px;
}
.devS .swiper-slide .text {
  width: 50%;
  padding-left: 20px;
}
.devS .swiper-slide .text h4 {
  font-family: Arial;
  font-size: 136px;
  line-height: 0.8;
  font-weight: bold;
  letter-spacing: 5.4px;
  color: #ea4424;
}
.devS .swiper-slide .text ul {
  margin-top: 40px;
}
.devS .swiper-slide .text li {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 32px;
  color: #666;
}
.devS .swiper-slide .text li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #ea4424;
  position: absolute;
  top: 14px;
  border-radius: 50%;
  left: 0;
}
.dev_time_line {
  position: relative;
  padding: 50px 0;
}
.dev_time_line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 56px;
  width: 100%;
  height: 1px;
  background: #ea4424;
}
.dev_time_line span {
  position: relative;
  height: 13px;
}
.dev_time_line span em {
  position: absolute;
  width: 13px;
  height: 13px;
  background: transparent;
  border: solid 1px transparent;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.dev_time_line span em::before {
  content: '';
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #ea4424;
}
.dev_time_line span em:hover,
.dev_time_line span.active em {
  background: #fff;
  border-color: #ea4424;
}
.dev_time_line span i {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #ccc;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.dev_time_line span:last-child i {
  bottom: -1px;
}
.dev_time_line span.active i {
  font-size: 24px;
  letter-spacing: 1px;
  color: #ea4424;
  opacity: 1;
}
/* development */

/* about */
.about {
  margin: 72px auto;
}
.about1 .common_tit {
  text-align: left;
}
.about1 .common_tit h5::after {
  margin: 32px 0;
}
.about1 .l {
  width: 48.5%;
  padding-right: 5%;
}
.about1 .l .text {
  height: 256px;
  overflow: auto;
  padding-right: 32px;
}
.about1 .l .text p {
  font-size: 16px;
  line-height: 32px;
  color: #666;
}
.about1 .r {
  width: 51.5%;
}
.about2i {
  height: 400px;
  padding: 0 9%;
}
.about2i ul {
  width: 100%;
}
.about2i li {
  color: #fff;
  width: 26.5%;
}
.about2i li:nth-child(3) {
  width: 42%;
}
.about2i li h4 {
  border: solid 1px #ffffff;
  height: 144px;
  padding-bottom: 24px;
}
.about2i li h4 span {
  font-family: Arial;
  font-size: 80px;
  line-height: 0.76;
}
.about2i li h4 em {
  font-style: normal;
  font-size: 24px;
  line-height: inherit;
  margin-left: 24px;
}
.about2i li h6 {
  font-size: 16px;
  border: solid 1px #ffffff;
  border-top: 0;
  text-align: center;
  height: 64px;
  line-height: 64px;
}

.about3 .l {
  padding-right: 0;
  padding-left: 5%;
  width: 50%;
}
.about3 .r {
  width: 50%;
  order: -1;
}
.about3 .l .text {
  height: 196px;
}
.about3 .l ul {
  margin-top: 50px;
  display: none;
}
.about3 .l ul li {
  position: relative;
}
.about3 .l ul li::before {
  content: '';
  width: 2px;
  height: 58px;
  background-color: #e5e5e5;
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.about3 .l ul li:first-child::before {
  display: none;
}
.about3 .l ul li p {
  font-size: 14px;
  color: #666666;
}
.about3 .l ul li p span {
  font-size: 46px;
  font-weight: bold;
  color: #ea4424;
  line-height: 0.8;
}
/* about */

@media (max-width: 1788px) {
  .ind2 .l {
    padding-left: 5%;
  }
  .ind2 .r {
    padding-right: 5%;
  }
  .ind4S .img_h.prev {
    left: 20px;
  }
  .ind4S .img_h.next {
    right: 20px;
  }
}
@media (max-width: 1440px) {
  .header_nav li > a {
    padding: 0 20px;
    font-size: 15px;
  }
  .header .logo .text {
    font-size: 12px;
  }
  .header_nav li:last-child > a {
    width: 120px;
  }
  .ind2 .r li h4 em {
    font-size: 20px;
  }
  .footert .r li {
    margin-left: 60px;
  }
  .about2i li h4 {
    font-size: 20px;
  }
  .about2i li h4 span {
    font-size: 72px;
  }
  .about3 .l ul li::before {
    left: -20px;
  }
  .honori .ri ul li {
    font-size: 16px;
  }
  .contact2 .my-map {
    height: 320px;
  }
}
@media (max-width: 1024px) {
  .header {
    display: none;
  }

  .headerSJ {
    display: block;
    position: fixed;
    left: 0px;
    top: 0px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 100%;
    background-color: #fff;
    padding: 0px 0px;
  }

  .headerSJ .headerSC {
    padding: 0px 12px;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .headerSJ .logo img {
    height: 44px;
  }
  .headerSJ .logo .text {
    padding-left: 10px;
    border-left: 1px solid #999;
    margin-left: 10px;
  }
  .headerSJ .logo .text p {
    color: #999999;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
  }
  .headerSJ .logo .text p:last-child {
    margin-top: 6px;
  }

  .headerSJ .navbar {
    position: relative;
    padding: 7px 10px;
    margin-right: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #333;
    border-radius: 4px;
    outline: none;
  }

  .headerSJ .navbar .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
  }

  .headerSJ .navbar .icon-bar + .icon-bar {
    margin-top: 4px;
  }

  .headerSJ .navwrap {
    position: fixed;
    top: 0px;
    left: -50%;
    width: 50%;
    height: 100%;
    z-index: 1100;
    background-color: #000;
    opacity: 0;
  }

  .headerSJ .navwrap .nav {
    padding: 10px 5% 0px 5%;
  }

  .headerSJ .navwrap .nav li {
    line-height: 42px;
    border-bottom: 1px solid #232530;
    padding: 0px 5%;
  }

  .headerSJ .navwrap .nav li:nth-child(4){display: none;}

  .headerSJ .navwrap .nav li a {
    display: block;
    color: #fff;
    font-size: 16px;
  }

  .headerSJ .navbg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
  }

  .headerSJ .navbg .closeSJ {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .headerSJ .navwrap .nav .SJbod {
    display: none;
  }

  .headerSJ .navwrap .nav .SJbod dd a {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .headerSJ .navwrap .nav .plus a {
    background: url(../images/plus.png) right center no-repeat;
  }

  .headerSJ .navwrap .nav .minus a {
    background: url(../images/minus.jpg) right center no-repeat;
  }

  .headerSJ .navwrap .nav .lan .SJtit a {
    display: inline-block;
  }

  .headerSJ .navwrap .nav .lan .SJtit span {
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding: 0px 5px;
  }

  .wrapper {
    padding-top: 60px;
  }

  .ind4S .img_h.prev {
    left: 3px;
  }
  .ind4S .img_h.next {
    right: 3px;
  }
  .footert .r li {
    margin-left: 30px;
  }
  .about1 .l {
    padding-right: 2%;
  }
  .about1 .l .text {
    padding-right: 12px;
  }
  .about2i {
    padding: 0 2%;
  }
  .about3 .l {
    padding-right: 0;
    padding-left: 2%;
  }
  .about3 .l ul li p span {
    font-size: 36px;
  }
  .about3 .l ul li::before {
    display: none;
  }
  .devS .prev {
    left: -44px;
  }
  .devS .next {
    right: -44px;
  }
  .devS .swiper-slide .text h4 {
    font-size: 80px;
  }
  .serv2 ul li .text {
    font-size: 15px;
  }
  .news ul li a {
    padding: 20px 4%;
  }
}

@media (max-width: 768px) {
  .banner_nav .t a {
    font-size: 15px;
    height: 48px;
    line-height: 48px;
  }
  .footert {
    display: none;
  }
  .footerb {
    display: block;
    padding: 20px 0;
    height: auto;
  }
  .footerb::before {
    display: none;
  }
  .footerb .r {
    text-align: center;
  }
  .inner_banner .text h4 {
    font-size: 28px;
    letter-spacing: .7px;
  }
  .inner_banner .text h6 {
    font-size: 15px;
    margin-top: 5px;
  }
  .common_tit h3 {
    font-size: 22px;
    letter-spacing: .1px;
  }
  .contact1 .t {
    font-size: 16px;
    line-height: 22px;
  }
  .contact1 .b {
    display: block;
  }
  .contact1 .b .img {
    width: 100%;
  }
  .contact1 .b .text {
    width: 100%;
    padding-left: 0;
    font-size: 16px;
    line-height: 28px;
    padding-top: 20px;
  }
  .join h4 span {
    width: 25%;
  }
  .join h4 span:nth-child(3),
  .join h4 span:nth-child(6),
  .join h4 span:nth-child(7) {
    display: none;
  }
  .join_con li .con {
    padding: 20px 5%;
  }
  .join_con li .con .bot {
    display: block;
  }
  .join_con li .con .bot p {
    margin-top: 10px;
  }
  .news ul li a {
    display: block;
    padding: 0;
    border: 0;
    padding-bottom: 32px;
  }
  .news ul li .img {
    width: 100%;
  }
  .news ul li .text {
    width: 100%;
    padding-left: 0;
    padding-top: 10px;
  }
  .news ul li .text h6 {
    margin-top: 12px;
  }
  .news_detail .t h1 {
    font-size: 20px;
    font-weight: bold;
  }
  .news_detail .b {
    padding-right: 0;
  }
  .news_detail .b a.back {
    display: none;
  }
  .serv2 ul {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .serv2 ul li {
    margin-top: 20px;
  }
  .serv2 ul li .img {
    width: 100px;
    height: 100px;
  }
  .serv2 .bot {
    display: block;
    height: auto;
    background: transparent!important;
  }
  .serv2 .bot .text {
    padding-left: 0;
    margin-top: 20px;
  }
  .serv2 .bot .text h4 {
    font-size: 20px;
  }
  .serv2 .bot .text h5 {
    font-size: 28px;
    margin-top: 10px;
  }
  .serv2 .bot .text h5 span {
    display: none;
  }
  .map_outer {
    padding: 0;
  }
  .map_outer .lt {
    position: static;
    margin-top: 20px;
  }
  .map_outer .lt li {
    margin: 0;
    width: 50%;
  }
  .map_outer .lt li h5 span {
    font-size: 48px;
  }
  .map_outer .lt li p {
    text-align: center;
  }
  .map_outer .lb {
    position: static;
    margin-top: 20px;
  }
  .map_outer .lb .t {
    text-align: center;
  }
  .map_outer .lb .t h4::after {
    margin: 12px auto;
  }
  .point-area .point-name {
    display: none;
  }
  .product ul li {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
  .proS .img_h.prev {
    left: 20px;
  }
  .proS .img_h.next {
    right: 20px;
  }
  .pro_db .bot a {
    padding: 0 20px;
  }
  .pro_db .bot a.bak {
    display: none;
  }
  .pro_db .bot a.prev .img_h {
    left: 8px;
  }
  .pro_db .bot a.next .img_h {
    right: 8px;
  }
  .about1 .container2 {
    display: block;
  }
  .about1 .l {
    padding: 0;
    width: 100%;
  }
  .about1 .l .text {
    height: auto;
  }
  .about1 .r {
    padding: 0;
    width: 100%;
    margin-top: 20px;
  }
  .about3 .l ul {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .about3 .l ul li {
    width: 50%;
    margin-top: 10px;
  }
  .about2i {
    height: auto;
    padding: 40px 5%;
  }
  .about2i ul {
    display: block;
  }
  .about2i li {
    width: 100%;
    margin-bottom: 10px;
  }
  .about2i li:nth-child(3) {
    width: 100%;
    margin-bottom: 0;
  }
  .about2i li h4 span {
    font-size: 60px;
  }
  .devS .swiper-slide {
    display: block;
  }
  .devS .swiper-slide .img {
    width: 100%;
    padding-right: 0;
  }
  .devS .swiper-slide .text {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .devS .swiper-slide .text h4 {
    font-size: 60px;
    letter-spacing: 2.4px;
    text-align: right;
  }
  .devS .swiper-slide .text ul {
    margin-top: 20px;
  }
  .devS .img_h {
    display: none;
  }
  .devP {
    text-align: center;
    margin-top: 20px;
  }
  .devP .swiper-pagination-bullet {
    background: #ea4424;
    margin: 0 2px;
  }
  .tech2 ul li {
    float: none;
    width: 100%;
    margin-right: 0px;
    margin-top: 20px;
  }
  .tech2 ul li:nth-child(-n + 2) {
    margin-top: 20px;
  }
  .tech2 ul li:nth-child(-n + 1) {
    margin-top: 0;
  }
  .tech2 ul li .mask h4 {
    margin-top: -40px;
  }
  .tech2 ul li .mask h4::after {
    margin: 10px auto;
  }
  .tech2 ul li .mask h6 {
    font-size: 14px;
    line-height: 20px;
  }
  .tech1i ul {
    margin-top: 20px;
  }
  .tech1i ul li {
    width: 33.3%;
  }
  .tech1i_area {
    width: auto;
    height: auto;
  }
  .tech1i_area .point {
    display: none;
  }
  .tech1i_area .point-name2 {
    position: static;
  }
  .tech1i_area .point-name2 h4,
  .tech1i_area .point-name2 h6,
  .tech1i_area .point-name2 h6 span {
    color: #333;
  }
  .tech1i_area .point-name2 h4 {
    font-size: 16px;
  }
  .honori {
    display: block;
  }
  .honori .l {
    width: 100%;
  }
  .honori .r {
    width: 100%;
    padding: 4.5% 4%;
  }
  .honori .ri {
    padding-top: 80%;
  }
  .honori .ri ul {
    padding-right: 5px
  }
  .honori .ri ul li {
    width: 100%;
    margin-right: 0px;
    margin-top: 10px;
    height: 40px;
    float: none;
    font-size: 15px;
    line-height: 20px;
  }
  .honori .ri ul li:nth-child(-n + 2) {
    margin-top: 10px;
  }
  .honori .ri ul li:nth-child(-n + 1) {
    margin-top: 0px;
  }
  .culture1 ul li {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-top: 10px;
  }
  .culture2 ul li {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-top: 10px;
  }
  .banner_btn {
    display: none;
  }
  .bannerP {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 26px;
    width: 100%;
    z-index: 9;
  }
  .bannerP .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  .bannerP .swiper-pagination-bullet-active {
    background: #ea4424;
  }
  .ind_tit h3 {
    font-size: 20px;
  }
  .common_btn {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  .ind1S {
    padding-left: 0;
    border: 0;
    background: #fff;
  }
  .ind1S a {
    padding-bottom: 20px;
  }
  .ind1S .swiper-container {
    border: solid 1px #dcdcdc;
  }
  .ind1S .animate {
    margin-top: 5px;
    width: 0;
    height: 3px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .ind1S .animate.active {
    width: 100%;
    -webkit-transition: all 4.8s linear;
    -moz-transition: all 4.8s linear;
    -ms-transition: all 4.8s linear;
    -o-transition: all 4.8s linear;
    transition: all 4.8s linear;
  }
  .ind1S .animate span {
    width: 90vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ind2 {
    padding: 0 5%;
  }
  .ind2 .r h3 {
    font-size: 20px;
  }
  .ind2 .r h5 {
    font-size: 14px;
    line-height: 20px;
  }
  .ind2 .r ul {
    margin-top: 0px;
    display: block;
  }
  .ind2 .r li {
    margin-top: 20px;
  }
  .ind2 .r li h4 span {
    font-size: 60px;
  }
  .ind2 .r li h4 em {
    margin-left: 10px;
  }
  .ind2 .r li h6 {
    margin-top: 10px;
  }
  .ind2 .r .btns {
    margin-top: 20px;
  }
  .ind2 .r .btns a {
    width: 30%;
  }
  .ind3i {
    margin-top: 0;
  }
  .ind3i ul {
    display: block;
  }
  .ind3i ul li {
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
  }
  .ind3i ul li h5 {
    display: none;
  }
  .ind4S {
    margin-top: 20px;
  }
  .ind4S .img_h {
    display: none;
  }
}
