@charset "utf-8";

/* 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;
}

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: #337ab7;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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%;
}

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;
}

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;
}

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;
}

.visible-xs {
  display: none !important;
}

.container::after,
.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

.container {
  margin: auto;
  min-height: 1px;
  width: 100%;
  max-width: 1400px;
}
.container-outer {
  padding-left: 100px;
  padding-right: 100px;
  min-height: 1px;
  width: 100%;
}

.container.no-a::after {
  display: none;
}

.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;
}

@media (max-width: 1560px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 1360px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}

/* base */

/* scrollbar */
@media (min-width: 768px) {
  ::-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 */


@-webkit-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-o-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes zhuan {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes zhuan {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
  }

  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
  }

  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
  }

  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zhuan2 {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes zhuan2 {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(-360deg);
  }

  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(-360deg);
  }

  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(-360deg);
  }

  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@-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);
  }
}
/* animation */

/* page */
/*
  <div class="pagination">
    <div class="page_pc hidden-xs clearfix">
      <span><a href="javascript:;">上一页</a></span>
      <span class="page_num current"><a href="javascript:;">1</a></span>
      <span class="page_num"><a href="javascript:;">2</a></span>
      <span class="page_num"><a href="javascript:;">3</a></span>
      <span><a href="javascript:;">下一页</a></span>
      <em>共10页</em>
    </div>
    <a href="javascript:;" class="page_sj visible-xs">加载更多</a>
  </div>
*/
.pagination {
  margin: 40px auto;
}
.pagination .page_pc {
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
}

.pagination .page_pc span {
  display: inline-block;
}
.pagination .page_pc span a {
  display: block;
  color: #333;
  padding: 0px 10px;
  height: 30px;
  line-height: 30px;
  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;
}

.pagination .page_pc span a:hover,
.pagination .page_pc span.current a {
  background: #f7b41c;
  color: #fff;
}

.pagination .page_pc span {
  margin: 2px;
}

.pagination .page_pc em {
  font-style: normal;
  font-size: 14px;
  color: #999;
}

.pagination .page_pc i {
  font-style: normal;
  font-size: 14px;
  color: #4d4d4d;
  margin-left: 20px;
}

.pagination .page_pc i input {
  width: 30px;
  height: 30px;
  margin: 0 5px;
}

.pagination .page_sj {
  width: 100px;
  height: 32px;
  background: #f7b41c;
  color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 32px;
  display: none;
  text-align: center;
}

/* page */

/* common */
.commonP {
  position: absolute;
  bottom: 0;
  z-index: 9;
  text-align: center;
  font-size: 0;
}
.commonP .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: solid 1px #fff;
  background: transparent;
  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;
}
.commonP .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #f6ab00;
  background: #f6ab00;
}
.common_btn a {
  width: 158px;
  height: 40px;
  border-radius: 5px;
  font-family: Arial;
  font-size: 12px;
  line-height: 40px;
  letter-spacing: 0.5px;
  color: #fff;
  display: block;
  text-align: center;
}
.common_bg {
  position: relative;
  overflow: hidden;
  transition: background-position 0.6s ease;
  background-size: 200% 100%;
  background-image: linear-gradient(128deg,
  #f6ab00 0%,
  #f8e14a 50%,
  #f6ab00 100%);
}
.common_bg span {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #fff;
}
.common_bg:hover {
  background-position: right center;
}

.md {
  position: relative;
  top: -80px;
}

.point-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  opacity: 1;
  text-align: center;
  -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;
  cursor: pointer;
}
.point-area .point-name {
  position: absolute;
  top: 40px;
  left: 52px;
  width: 40px;
}
.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: #f7b41c;
}
.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%;
  border: 2px solid #f7b41c;
  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%;
  border: 2px solid #f7b41c;
  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%;
  border: 2px solid #f7b41c;
  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(247, 180, 28, 0.16);
  -moz-box-shadow: inset 0 0 5em rgba(247, 180, 28, 0.16);
  box-shadow: inset 0 0 5em rgba(247, 180, 28, 0.16);
}
/* common */

/* header */
.headerSJ {
  display: none;
}
.header {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  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;
  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;
}
.header.active {
  background: #333333;
}
.header.hidden {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header .logo {
  width: 195px;
}
.header .logo a {
  display: block;
}
.header .header_nav {
  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;
  padding-top: 15px;
  min-width: 1000px;
  width: calc(100% - 560px)
}
.header .header_nav li {
  position: relative;
}
.header .header_nav li a {
  display: block;
  line-height: 40px;
  padding: 0 16px 15px 16px;
  font-size: 18px;
  letter-spacing: 0.5px;
  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;
}
.header .header_nav li .header_nav2_inner h4 a:hover,
.header .header_nav li .header_nav2_inner h4 a {
  display: inline;
  padding: 0;
  background: transparent;
  color: inherit;
}
.header .header_nav2 {
  display: none;
  position: fixed;
  left: calc(50vw - 600px);
  top: 70px;
  z-index: 999;
  width: 1200px;
  background: #fff;
  padding: 40px 80px;
  font-size: 0;
}
.header .header_nav2::after {
  content: '';
  position: absolute;
  bottom: 40px;
  height: 1px;
  background: #fff;
  left: 0;
  width: 100%;
}


.header .header_nav li.r_ico a {
  padding: 0 30px 15px 20px;
  background: url(../images/nav_down.png) top 15px right 14px no-repeat;
}
.header .header_nav li.r_ico a:hover {
  background: #fff;
}
.header .header_nav li a:hover,
.header .header_nav li.active a {
  color: #f6ab00;
}
.header .header_nav li.r_ico.active > a {
  background: url(../images/nav_down_a.png) top 15px right 14px no-repeat;
}
.header .header_nav li.r_ico a:hover {
  background: #fff url(../images/nav_down_a.png) top 15px right 14px no-repeat;
}

.header .header_r {
  font-size: 0;
  letter-spacing: 0;
  margin-top: 15px;
}
.header .header_r li {
  display: inline-block;
  position: relative;
}
.header .header_r li a {
  display: block;
  padding: 9px 20px 24px 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;
}
.header .header_r li a .img {
  display: block;
  position: relative;
}
.header .header_r li a 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;
}
.header .header_r li a img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header .header_r li a:hover {
  background: #fff;
}
.header .header_r li a:hover img {
  opacity: 0;
}
.header .header_r li a:hover img:nth-child(2) {
  opacity: 1;
}
.header .header_r .r_ico 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;
  padding: 9px 30px 24px 20px;
  background: url(../images/nav_down.png) top 15px right 14px no-repeat;
}
.header .header_r .r_ico a:hover {
  background: #fff url(../images/nav_down_a.png) top 15px right 14px no-repeat;
}
.header_r .search .inp {
  display: none;
  position: absolute;
  right: 0;
  top: 55px;
  z-index: 999;
  width: 400px;
  background: #fff;
  padding: 20px 50px;
}
.header_r .search .inp input {
  border: 1px solid #f7b41d;
  height: 36px;
  background-color: #fff;
  border-radius: 3px;
  width: calc(100% - 100px);
  padding: 0 18px;
  color: #666;
  outline: none;
  font-size: 16px;
}

.header_r .search .inp button {
  height: 36px;
  border-radius: 3px;
  background: #f7b41d;
  color: #fff;
  font-size: 16px;
  width: 80px;
  border: 0;
  float: right;
}
.header_r .lan .header_nav3 {
  right: 0;
  left: auto;
  margin-left: 0;
  width: 160px;
}
.header .header_r .lan .header_nav3 h6 a {
  font-size: 16px;
  line-height: 36px;
  padding: 0;
  color: #666;
}
.header .header_r .lan .header_nav3 h6 a:hover {
  color: #f6ab00;
  background: transparent;
}
/* header */

/* menu */

/* menu */

/* banner */
.banner {
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide {
  overflow: hidden;
  position: relative;
}
.banner .swiper-slide video {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.banner .swiper-slide .bg {
  width: 100%;
  height: 100vh;
}
.banner .swiper-slide .text {
  text-align: center;
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
}
.banner .swiper-slide .text h3 {
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 3.1px;
  color: #fff;
  -webkit-transition: all 1s ease-in-out 0.2s;
  -moz-transition: all 1s ease-in-out 0.2s;
  -ms-transition: all 1s ease-in-out 0.2s;
  -o-transition: all 1s ease-in-out 0.2s;
  transition: all 1s ease-in-out 0.2s;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.banner .swiper-slide .text h5 {
  font-size: 22px;
  letter-spacing: 4.4px;
  color: #ccc;
  margin-top: 28px;
  -webkit-transition: all 1s ease-in-out 0.4s;
  -moz-transition: all 1s ease-in-out 0.4s;
  -ms-transition: all 1s ease-in-out 0.4s;
  -o-transition: all 1s ease-in-out 0.4s;
  transition: all 1s ease-in-out 0.4s;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.banner .swiper-slide.swiper-slide-active .text h3,
.banner .swiper-slide.swiper-slide-active .text h5 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.banner .swiper_btn {
  position: absolute;
  top: 50%;
  z-index: 9;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.6;
  -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 .swiper_btn.prev img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.banner .swiper_btn img {
  display: block;
}
.banner .prev {
  left: 100px;
}
.banner .next {
  right: 100px;
}
.banner .swiper_btn:hover {
  opacity: 1;
}
.bannerP_outer {
  position: absolute;
  bottom: calc(25% + 70px);
  left: 0;
  z-index: 9;
  width: 100%;
  text-align: center;
}
.bannerP_outer .bannerP {
  display: inline-block;
  position: static;
}
.bannerP_outer .bannerP span {
  margin-right: 15px;
}
.bannerP_outer .play {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.bannerP_outer .play::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 0;
  width: 2px;
  height: 12px;
  background: #fff;
}
.bannerP_outer .play::after {
  content: '';
  position: absolute;
  right: 1px;
  top: 0;
  width: 2px;
  height: 12px;
  background: #fff;
}
.bannerP_outer .play span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  opacity: 0;
}
.bannerP_outer .play.active::before,
.bannerP_outer .play.active::after {
  opacity: 0;
}
.bannerP_outer .play.active span {
  opacity: 1;
}
.banner_menu {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 140px;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 0 50px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.banner_menu.hidden {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.banner_menu ul {
  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;
}
.banner_menu li {
  height: 60px;
  text-align: center;
}
.banner_menu li.line {
  content: '';
  display: block;
  height: 60px;
  width: 1px;
  background: rgba(217, 217, 217, 0.1);
}
.banner_menu li .img {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  margin: auto;
}
.banner_menu li .img img {
  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;
  display: block;
}
.banner_menu li .img img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.banner_menu li a:hover .img img {
  opacity: 0;
}
.banner_menu li a:hover .img img:nth-child(2) {
  opacity: 1;
}
.banner_menu li p {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.4px;
  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;
  margin-top: 6px;
}
.banner_menu li a:hover p {
  color: #f6ab00;
}
.banner_inner {
  position: relative;
}
.banner_inner .pc_banner {
  height: 470px;
  width: 100%;
}
.banner_inner .text {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;

}
.banner_inner .text h3 {
  font-size: 40px;
  letter-spacing: 4px;
  color: #fff;
}
.banner_inner .text h5 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 3.6px;
  color: #fff;
  margin-top: 18px;
}
.banner_inner .text h6 {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  color: #fff;
}
.banner_inner .text h6::before {
  content: '';
  width: 1px;
  height: 80px;
  background: #fff;
  opacity: 0.8;
  margin: 36px auto;
  display: block;
}
.banner_gif {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  opacity: .1;
}
/* banner */

/* index */
.wrapper {
  overflow: hidden;
}
.ind_sec1_nav {
  border-bottom: 2px solid #f3f3f3;
}
.ind_sec1_nav ul {
  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;
}
.ind_sec1_nav ul li a {
  height: 72px;
  line-height: 72px;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #666;
  position: relative;
  display: block;
}
.ind_sec1_nav ul li a:after {
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background-color: #f6ab00;
  -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;
}
.ind_sec1_nav ul li.active a:after,
.ind_sec1_nav ul li a:hover:after {
  width: 100%;
}
.ind_sec1_s {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.ind_sec1_s .inner {
  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;
}
.ind_sec1_s .text {
  width: 58%;
}
.ind_sec1_s .text h3 {
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 1.2px;
  color: #333;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s ease-in-out 0.2s;
  -moz-transition: all 1s ease-in-out 0.2s;
  -ms-transition: all 1s ease-in-out 0.2s;
  -o-transition: all 1s ease-in-out 0.2s;
  transition: all 1s ease-in-out 0.2s;
}
.ind_sec1_s .text h3 span {
  font-family: Arial;
  color: #f7b41c;
  font-weight: bold;
}
.ind_sec1_s .text h5 {
  font-size: 20px;
  line-height: 30px;
  color: #666;
  margin-top: 60px;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s ease-in-out 0.4s;
  -moz-transition: all 1s ease-in-out 0.4s;
  -ms-transition: all 1s ease-in-out 0.4s;
  -o-transition: all 1s ease-in-out 0.4s;
  transition: all 1s ease-in-out 0.4s;
}
.ind_sec1_s .text a {
  margin-top: 110px;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: opacity 1s ease-in-out 0.6s, -webkit-transform 1s ease-in-out 0.6s, background 0.4s ease-in-out;
  -moz-transition: opacity 1s ease-in-out 0.6s, -moz-transform 1s ease-in-out 0.6s, background 0.4s ease-in-out;
  -ms-transition: opacity 1s ease-in-out 0.6s, -ms-transform 1s ease-in-out 0.6s, background 0.4s ease-in-out;
  -o-transition: opacity 1s ease-in-out 0.6s, -o-transform 1s ease-in-out 0.6s, background 0.4s ease-in-out;
  transition: opacity 1s ease-in-out 0.6s, transform 1s ease-in-out 0.6s, background 0.4s ease-in-out;
}
.ind_sec1_s .swiper-slide-active .text h3,
.ind_sec1_s .swiper-slide-active .text h5,
.ind_sec1_s .swiper-slide-active .text a {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.ind_sec1_s .img {
  position: relative;
  width: 42%;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 1s ease-in-out 0.2s;
  -moz-transition: all 1s ease-in-out 0.2s;
  -ms-transition: all 1s ease-in-out 0.2s;
  -o-transition: all 1s ease-in-out 0.2s;
  transition: all 1s ease-in-out 0.2s;
}
.ind_sec1_s .swiper-slide-active .img {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.ind_sec1_s .img img {
  display: block;
  width: 100%;
}

.ind_sec1_s .img .img2 {
  animation: zhuan 10s infinite linear;
  -webkit-animation: zhuan 10s infinite linear;
}

.ind_sec1_s .img .img3 {
  animation: zhuan2 12s infinite linear;
  -webkit-animation: zhuan2 12s infinite linear;
}

.ind_sec1_s .img .img2,
.ind_sec1_s .img .img3,
.ind_sec1_s .img .img4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ind_sec1_s .img .img4 {
  padding: 21%;
  box-sizing: border-box;
  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;
}
.ind_sec1_s .swiper_btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 9;
}
.ind_sec1_s .swiper_btn img {
  opacity: 1;
  display: block;
  -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;
}
.ind_sec1_s .swiper_btn img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.ind_sec1_s .swiper_btn:hover img {
  opacity: 0;
}
.ind_sec1_s .swiper_btn:hover img:nth-child(2) {
  opacity: 1;
}
.ind_sec1_s .swiper_btn.prev {
  left: calc(50% - 50vw + 104px);
}
.ind_sec1_s .swiper_btn.next {
  right: calc(50% - 50vw + 104px);
}
.ind_sec1_s .swiper_btn.next img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.ind_sec1_s .ind1P {
  margin: 20px 0;
  position: static;
}
.ind_sec1_s .ind1P span {
  background: #e2e2e2;
  border: 0;
  margin: 0 5px;
}

.ind_sec2_l {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35%;
  float: left;
  padding: 0 60px 0 100px;
}
.ind_sec2_tit {
  max-width: 100%
}
.ind_sec2_tit h3 {
  font-size: 40px;
  letter-spacing: 1.6px;
  color: #fff;
  position: relative;
  margin-bottom: 52px;
}
.ind_sec2_tit h3::before {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ind_sec2_tit h3::after {
  content: '';
  display: block;
  margin-top: 20px;
  width: 200px;
  height: 1px;
  background-color: #fff;
  opacity: 0.36;
}
.ind_sec2_tit h5 {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.6px;
  color: #fff;
  margin-top: 28px;
}
.ind_sec2_l a {
  margin: 100px 0 0;
}
.ind_sec2_r {
  padding: 90px 0;
  width: 65%;
  float: left;
}
.ind_sec2_r_inner {
  width: calc(100% - 100px);
  padding: 60px 150px;
  background: rgba(255, 255, 255, 0.9);
}
.ind_sec2_r_inner ul li {
  width: calc(50% - 60px);
  float: left;
  margin-right: 120px;
  margin-top: 80px;
}
.ind_sec2_r_inner ul li:nth-child(-n + 2) {
  margin-top: 0;
}
.ind_sec2_r_inner ul li:nth-child(2n) {
  margin-right: 0;
}
.ind_sec2_r_inner ul li:nth-child(2n + 1) {
  clear: both;
}
.ind_sec2_r_inner ul li img {
  display: block;
}
.ind_sec2_r_inner ul li h4 {
  font-family: Arial;
  font-size: 40px;
  color: #444;
  margin-top: 20px;
}
.ind_sec2_r_inner ul li h6 {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin-top: 20px;
}
.ind_sec3 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.ind_sec3_l {
  width: calc(50% - 5px);
  float: left;
  margin-right: 10px;
}
.ind_sec3_lb {
  margin-top: 10px;
}
.ind_sec3_lt,
.ind_sec3_lb {
  padding: 60px;
  display: block;
  position: relative;
  overflow: hidden;
}
.ind_sec3_lt .img,
.ind_sec3_lb .img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -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;
}
.ind_sec3_lt:hover .img,
.ind_sec3_lb:hover .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);
}
.ind_sec3_lt h3,
.ind_sec3_lb h3 {
  font-size: 40px;
  letter-spacing: 1.6px;
  color: #fff;
}
.ind_sec3_lt h6,
.ind_sec3_lb h6 {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.6px;
  color: #fff;
  margin-top: 32px;
  max-width: 480px;
}
.ind_sec3_r {
  width: calc(50% - 5px);
  float: left;
  position: relative;
  overflow: hidden;
}
.ind_sec3_r img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.ind_sec3_r:hover 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);
}
.ind_sec3_r .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 150px 160px;
}
.ind_sec3_r .text h3 {
  font-size: 40px;
  letter-spacing: 1.6px;
  color: #fff;
  margin-bottom: 32px;
}
.ind_sec3_r .text .swiper-slide {
}
.ind_sec3_r .text .swiper-slide span {
  padding: 0 8px;
  height: 28px;
  background-color: #fff;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.6px;
  color: #4f4f4f;
  text-align: center;
}
.ind_sec3_r .text .swiper-slide h4 {
  font-size: 20px;
  height: 28px;
  line-height: 28px;
  letter-spacing: 0.8px;
  color: #fff;
  margin-top: 12px;
}
.ind_sec3_r .text .swiper-slide h6 {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.6px;
  color: #fff;
  height: 56px;
  margin-top: 22px;
}
.ind3rP {
  font-size: 0;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
}
.ind3rP .swiper-pagination-bullet {
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  margin: 0 4px;
}
.ind_sec4 {
  background: url(../images/ind4_bg.jpg) center / cover;
}
.ind_sec4_inner {
  position: relative;
  padding: 100px 0;
}
.ind4_1,
.ind4_2,
.ind4_3,
.ind4_4 {
  width: 160px;
  height: 160px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
.ind4_1 img,
.ind4_2 img,
.ind4_3 img,
.ind4_4 img {
  width: 100%;
  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;
}
.ind4_0 {
  width: 386px;
  height: 386px;
  margin: auto;
  position: relative;
}
.ind4_0 .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ind4_0 .text h4 {
  font-size: 30px;
  line-height: 32px;
  color: #333333;
  text-align: center;
}
.ind4_0 .text h6 {
  font-size: 24px;
  color: #333333;
  text-align: center;
}
.ind4_0 .text h6:before {
  content: '';
  display: block;
  margin: 8px auto 24px;
  width: 1px;
  height: 40px;
  opacity: 0.86;
  background: #333;
}
.ind4_0 .text h6 span {
  font-size: 30px;
}
.ind4_1 {
  left: 0;
}
.ind4_2 {
  left: 18%;
}
.ind4_2::before,
.ind4_3::before {
  content: '';
  height: 0px;
  width: 92px;
  border-bottom: 1px dashed #666;
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ind4_2::after,
.ind4_3::after {
  content: '';
  height: 0px;
  width: 100px;
  border-bottom: 1px dashed #666;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ind4_3::before {
  width: 100px;
}
.ind4_3::after {
  width: 92px;
}
.ind4_3 {
  right: 18%;
}
.ind4_4 {
  right: 0;
}
.ind4_1 a,
.ind4_2 a,
.ind4_3 a,
.ind4_4 a {
  display: block;
  border: solid 1px #f6ab00;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ind4_1:hover img,
.ind4_2:hover img,
.ind4_3:hover img,
.ind4_4:hover img {
  opacity: 1;
}
.ind4_1 .text,
.ind4_2 .text,
.ind4_3 .text,
.ind4_4 .text {
  display: none;
  position: absolute;
  width: 208px;
  margin-left: -24px;
  top: 100%;
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #666;
  text-align: center;
}
.ind4_1 h4,
.ind4_2 h4,
.ind4_3 h4,
.ind4_4 h4 {
  font-size: 24px;
  line-height: 32px;
  color: #f6ab00;
  text-align: center;
  margin-top: -16px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -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;
}
.ind4_1:hover h4,
.ind4_2:hover h4,
.ind4_3:hover h4,
.ind4_4:hover h4 {
  top: 0;
  margin-top: -60px;
}
/* index */

/* footer */
.footer {
  background: url(../images/footer_bg.jpg) center top / cover;
}
.footer_t {
  padding-top: 80px;
  padding-bottom: 80px;
}
.footer_l {
  float: left;
}
.footer_l .logo {
  display: inline-block;
  opacity: .5;
  max-width: 220px
}
.footer_l .inp {
  font-size: 0;
  margin-top: 54px;
}
.footer_l .inp input {
  width: 220px;
  height: 48px;
  border: solid 1px rgba(80, 80, 80, 0.48);
  background: transparent;
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #ccc;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.footer_l .inp a {
  width: 80px;
  height: 48px;
  background-color: rgba(80, 80, 80, 0.36);
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: 0.4px;
  color: #ccc;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.footer_l .inp input:focus,
.footer_l .inp:hover input {
  border-color: #f6ab00;
}
.footer_l .inp input:focus + a,
.footer_l .inp:hover a {
  background-color: #f6ab00;
  color: #fff;
}
.ewm_outer {
  margin-top: 30px;
}
.ewm_outer li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.ewm_outer li:last-child {
  margin-right: 0;
}
.ewm_outer li a {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
  border: 1px solid #656565;
  -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;
}
.ewm_outer li a:hover {
  border-color: #034387;
  background: #034387;
}
.ewm_outer li a img {
  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;
}
.ewm_outer li a img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.ewm_outer li a:hover img {
  opacity: 0;
}
.ewm_outer li a:hover img:nth-child(2) {
  opacity: 1;
}
.ewm_outer li a + .ewm {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 70px;
  left: -60px;
  width: 160px;
  z-index: 9;
  -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;
}
.ewm_outer li a + .ewm::before {
  content: '';
  border: 15px solid rgba(0, 0, 0, 0);
  border-top: 0;
  border-bottom: 15px solid #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  top: -15px;
}
.ewm_outer li a + .ewm img {
}
.ewm_outer li a:hover + .ewm {
  opacity: 1;
  visibility: visible;
}

.footer_r {
  /*float: right;
  width: calc(100% - 300px);
  padding-left: 9%;*/
}
.footer_r ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer_r ul li:last-child {
  width: auto;
}
.footer_r ul li h4 {
  margin-bottom: 40px;
}
.footer_r ul li h4 a {
  font-size: 20px;
  color: #ccc;
}
.footer_r ul li h6 {
  font-size: 16px;
  line-height: 30px;
  color: #888;
}
.footer_r ul li h6 a {
  color: inherit;
  display: inline-block;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.footer_r ul li:not(:last-child) h6 a:hover {
  color: #f6ab00;
  -webkit-transform: translateX(-6px);
  -moz-transform: translateX(-6px);
  -ms-transform: translateX(-6px);
  -o-transform: translateX(-6px);
  transform: translateX(-6px);
}
.footer_b {
}
.footer_b h3 {
  font-size: 14px;
  line-height: 60px;
  color: #888;
  padding-top: 20px;
  background: url(../images/footer_b_bg.png) center top / auto 55px no-repeat;
}
.footer_b h3 i {
  font-style: normal;
  float: right;
}
.footer_b h3 span {
  margin-left:20px
}
.footer_b h3 span a {
  color: inherit;
}
/* footer */

/* product */
.second_nav {
  width: 100%;
  height: 60px;
  background-color: #f6f6f6;
}
.second_nav .home {
  float: left;
  display: block;
}
.second_nav .first,
.second_nav .second,
.second_nav .third {
  cursor: pointer;
  float: left;
  position: relative;
}
.second_nav .first h4,
.second_nav .second h4,
.second_nav .third h4 {
  height: 60px;
  line-height: 60px;
  min-width: 180px;
  font-size: 16px;
  color: #333;
  padding: 0 42px 0 30px;
  position: relative;
  border-right: 1px solid #eaebeb;
}
.second_nav .active h4 {
  border-bottom: 3px solid #f6ab00;
  color: #f7b41c;
}
.second_nav .first h4::after,
.second_nav .second h4::after {
  content: '';
  border: 4px solid transparent;
  border-top: 4px solid #333;
  border-bottom: none;
  position: absolute;
  width: 0;
  height: 0;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.second_nav .active h4::after {
  border-top-color: #f7b41c;
}
.second_nav .first.no-a h4,
.second_nav .second.no-a h4,
.second_nav .third h4 {
  padding-right: 30px;
}
.second_nav .first.no-a h4::after,
.second_nav .second.no-a h4::after {
  display: none;
}
.second_nav .first ul,
.second_nav .second ul {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 99;
  min-width: 100%;
}
/*.second_nav .first ul li,
.second_nav .second ul li {
}
.second_nav .first ul li a,
.second_nav .second ul li a {
  font-size: 14px;
  color: #333;
  display: block;
  background: #f6f6f6;
  padding: 0 30px;
  line-height: 48px;
  height: 48px;
  width: 180px;
  -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;
}*/
.second_nav .first ul li a, .second_nav .second ul li a {
  font-size: 14px;
  color: #333;
  display: block;
  background: #f6f6f6;
  padding: 0 30px;
  line-height: 48px;
  height: 48px;
  width: 100%;
  -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;
}
.second_nav .first ul li a:hover,
.second_nav .second ul li a:hover {
  color: #fff;
  background: #f7b41c;
}
.second_nav .right {
  float: right;
}
.second_nav .right a {
  font-size: 16px;
  line-height: 60px;
  color: #333;
  margin-left: 60px;
}
.second_nav .right a:first-child {
  margin-left: 0;
}
.second_nav .right a.active {
  color: #f7b41c;
}
.pro_sec {
  margin-top: 60px;
  margin-bottom: 120px;
}
.pro_slide {
  float: left;
  width: 300px;
  padding-bottom: 100px;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 7, 0.1);
}
.pro_slide h3 {
  height: 60px;
  line-height: 60px;
  background-color: #666;
  width: 100%;
  padding: 0 30px;
  font-size: 24px;
  color: #fff;
  position: relative;
}
.pro_slide h3::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 130px;
  height: 1px;
  background-color: #6c6c6c;
  right: 24px;
}
.pro_slide ul {
}
.pro_slide ul li {
}
.pro_slide ul li h4 {
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  padding: 0 30px 0 45px;
  position: relative;
  cursor: pointer;
  overflow: 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;
}
.pro_slide ul li h4 a {
  color: inherit;
}
.pro_slide ul li h4::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
  width: 3px;
  height: 15px;
  background-color: #e5e5e5;
  -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_slide ul li h4::after {
  content: '';
  border: 4px solid transparent;
  border-top: 4px solid #888;
  border-bottom: none;
  position: absolute;
  width: 0;
  height: 0;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotateZ(-90deg);
  -moz-transform: rotateZ(-90deg);
  -ms-transform: rotateZ(-90deg);
  -o-transform: rotateZ(-90deg);
  transform: rotateZ(-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;
}
.pro_slide ul li.active h4,
.pro_slide ul li h4:hover {
  color: #f5b51f;
}
.pro_slide ul li.active h4::before,
.pro_slide ul li h4:hover::before {
  background-color: #f5b51f;
}
.pro_slide ul li.active h4::after,
.pro_slide ul li h4:hover::after {
  border-top-color: #f5b51f;
}
.pro_slide ul li.active h4::after {
  -webkit-transform: rotateZ(0);
  -moz-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  transform: rotateZ(0);
}
.pro_slide ul li .pro_second {
  display: none;
  padding: 0 0px 24px 15px;
  margin: 0 30px;
  border-bottom: 1px solid #e5e5e5;
}
.pro_slide ul li .pro_second h6 {
  line-height: 30px;
  height: 30px;
}
.pro_slide ul li .pro_second h6 a {
  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;
  display: block;
  padding-left: 12px;
}
.pro_slide ul li .pro_second h6 a::before {
  content: '';
  width: 8px;
  height: 2px;
  background: #666;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -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_slide ul li .pro_second h6.active a,
.pro_slide ul li .pro_second h6 a:hover {
  color: #f5b51f;
}
.pro_slide ul li .pro_second h6.active a::before,
.pro_slide ul li .pro_second h6 a:hover::before {
  background: #f5b51f;
}
.pro_main {
  float: left;
  width: calc(100% - 340px);
  margin-left: 40px;
}
.pro_main ul {
}
.pro_main ul li {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  float: left;
  margin-top: 30px;
}
.pro_main ul li:nth-child(-n + 3) {
  margin-top: 0;
}
.pro_main ul li:nth-child(3n) {
  margin-right: 0;
}
.pro_main ul li:nth-child(3n + 1) {
  clear: both;
}
.pro_main ul li a {
  display: block;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.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;
}
.pro_main ul li a:hover {
  box-shadow: 0px 0px 13px rgba(6, 6, 6, 0.1);
}
.pro_main ul li a .img {
  overflow: hidden;
}
.pro_main ul li a .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;
}
.pro_main 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);
}
.pro_main ul li a .text {
  padding: 20px 30px 36px 30px;
}
.pro_main ul li a .text h4 {
  font-size: 24px;
  line-height: 30px;
  color: #333;
  font-family: Arial;
  font-weight: bold;
}
.pro_main ul li a .text h6 {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  height: 60px;
  margin-top: 28px;
}
.pro_main ul li a .text .btn {
  width: 120px;
  height: 40px;
  background: #666;
  border-radius: 2px;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.6px;
  color: #fffefe;
  text-align: center;
  -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;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.pro_main ul li a .text .btn span {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #fff;
}
.pro_main ul li a:hover .text .btn {
  background: #f6ab00;
}

.pro_detail_outer {
  margin: 100px 0 120px;
}
.pro_detail {
  background: #fff;
  box-shadow: 0px 8px 36.8px 3.2px rgba(0, 0, 7, 0.08);
  padding: 30px 0;
}
.pro_detail .tit {
  text-align: center;
  margin: 30px 0;
}
.pro_detail .tit h3 {
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0.8px;
  color: #333;
}
.pro_detail .tit h5 {
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin-top: 24px;
}
.pro_detail .proP {
  margin: 20px 0;
  position: static;
}
.pro_detail .proP span {
  background: #e2e2e2;
  border: 0;
}

.pro_swiper {
  position: relative;
  max-width: 80%;
  margin: auto;
}
.pro_swiper .swiper-slide img {
  display: block;
  margin: auto;
}
.pro_swiper_outer {
  position: relative;
}
.pro_swiper_outer .swiper_btn {
  position: absolute;
  top: 50%;
  z-index: 9;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.6;
  -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_swiper_outer .swiper_btn.prev img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.pro_swiper_outer .swiper_btn img {
  display: block;
}
.pro_swiper_outer .prev {
  left: 50px;
}
.pro_swiper_outer .next {
  right: 50px;
}
.pro_swiper_outer .swiper_btn:hover {
  opacity: 1;
}
.pro_con_outer {
  padding: 0 100px;
}
.pro_con {
  max-width: 1400px;
  width: 100%;
  margin: auto;
}
.pro_con_nav {
  width: 100%;
  height: 60px;
  background-color: #f2f2f2;
  margin-top: 40px;
}
.pro_con_nav li {
  float: left;
}
.pro_con_nav li a {
  width: 200px;
  height: 60px;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 60px;
  color: #666;
  position: relative;
  text-align: center;
  -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_con_nav li a::after {
  content: '';
  position: absolute;
  bottom: -9px;
  height: 0;
  width: 0;
  margin: auto;
  left: 0;
  right: 0;
  border: 9px solid transparent;
  border-top: 9px solid #f6ab00;
  border-bottom: none;
  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;
}
.pro_con_nav li.active a {
  background: #f6ab00;
  color: #fff;
}
.pro_con_nav li.active a::after {
  opacity: 1;
}
.pro_con_inner {
  padding: 40px;
  display: none;
}
.pro_con_inner ol {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 40px;
}
/* product */

/* download */
.download .download_table {
  margin-bottom: 80px;
}
.download_table {
  overflow-x: auto;
  border-radius: 4px 4px 0px 0px;
}
.service_sec3 ::-webkit-scrollbar-track-piece,
.download_main ::-webkit-scrollbar-track-piece,
.pro_con_inner ::-webkit-scrollbar-track-piece {
  width: 2px;
  height: 2px;
  background-color: transparent;
}
.service_sec3 ::-webkit-scrollbar,
.download_main ::-webkit-scrollbar,
.pro_con_inner ::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.service_sec3 ::-webkit-scrollbar-thumb,
.service_sec3 ::-webkit-scrollbar-thumb:hover,
.download_main ::-webkit-scrollbar-thumb,
.download_main ::-webkit-scrollbar-thumb:hover,
.pro_con_inner ::-webkit-scrollbar-thumb,
.pro_con_inner ::-webkit-scrollbar-thumb:hover {
  background: #004e97;
}
.download_table table {
  width: 100%;
  min-width: 600px;
}
.download_table table thead {
  border-bottom: 1px solid #e2e2e2;
}
.download_table table tbody tr {
  -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;
}

.download_table table tbody tr:first-child td {
  padding-top: 18px;
  height: 88px;
}
.download_table table tbody tr:hover {
  background: #f0f0f0;
}
.download_table table thead tr td {
  height: 70px;
}
.download_table table tr td {
  height: 54px;
  padding: 0 25px;
  font-size: 16px;
  color: #666;
}
.download_table p {
  font-size: 16px;
  line-height: 34px;
  color: #333;
  /*padding-left: 25px;*/
}
.download_main {
  float: left;
  width: calc(100% - 340px);
  margin-left: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 7, 0.1);
  padding: 40px;
}
.download_main h4 {
  font-size: 16px;
  line-height: 34px;
  color: #f5b51f;
  font-weight: bold;
}
/* download */

/* news */
.news_bot {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid rgba(229, 229, 229, 0.7);
}
.news_bot a {
  font-size: 16px;
  line-height: 60px;
  color: #444;
  -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_bot .prev {
  float: left;
}
.news_bot .next {
  float: right;
}
.news_bot .prev .img {
  margin-right: 20px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.news_bot .next .img {
  margin-left: 20px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.news_bot a .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;
  opacity: 1;
  display: block;
}
.news_bot .next .img img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.news_bot a .img img:nth-child(2),
.news_bot a .img img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.news_bot a:hover {
  color: #f7b41c;
}
.news_bot a:hover .img img,
.news_bot a:hover .img img {
  opacity: 0;
}
.news_bot a:hover .img img:nth-child(2),
.news_bot a:hover .img img:nth-child(2) {
  opacity: 1;
}
.news_bot .back {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 60px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  color: #666;
}
.news_bot .back .img {
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
/* news */

/* solve */
.solve_sec {
  margin: 60px 0 100px;
}
.solve_sec a {
  display: block;
  position: relative;
  overflow: hidden;
}
.solve_sec a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  -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;
  opacity: 0;
}
.solve_sec a:hover::after {
  opacity: 1;
}
.solve_img2 {
  margin-top: 10px;
}
.solve_img2_l {
  width: calc(960% / 17.2);
  float: left;
}
.solve_img2_lb {
  margin-top: 10px;
}
.solve_img2_r {
  width: calc(760% / 17.2 - 10px);
  margin-left: 10px;
  float: left;
}
.solve_img3 {
  margin-top: 10px;
}
.solve_img3 .solve_img2_r {
  margin-right: 10px;
  margin-left: 0;
}
.solve_img4 {
  margin-top: 10px;
}
.solve_img5 a {
  width: calc(50% - 5px);
  margin-right: 10px;
  float: left;
  margin-top: 10px;
}
.solve_img5 a:nth-child(2n) {
  margin-right: 0px;
}
.solve_img5 a:nth-child(2n + 1) {
  clear: both;
}
.solve_sec a .tit {
  font-size: 40px;
  color: #fff;
  position: absolute;
  left: 100px;
  top: 100px;
  z-index: 9;
  -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;
}
.solve_sec a .tit::after {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #fff;
  opacity: 0.8;
  margin-top: 16px;
  display: block;
  -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;
}
.solve_sec a:hover .tit {
  color: #333;
}
.solve_sec a:hover .tit::after {
  background: #333;
}
.solve_list {
}
.solve_list_main {
  float: left;
  width: calc(100% - 340px);
  margin-left: 40px;
}
.solve_list_main li {
  margin-bottom: 20px;
}
.solve_list_main li a {
  display: block;
  height: 60px;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 7, 0.1);
  line-height: 60px;
  padding: 0 100px 0 50px;
  font-size: 16px;
  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;
}
.solve_list_main li a:hover {
  background: #f7b41c;
  color: #fff;
}
.solve_list_main li a .img {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 70px;
  margin: auto;
}
.solve_list_main li a .img 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;
}
.solve_list_main li a .img img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.solve_list_main li a:hover .img img {
  opacity: 0;
}
.solve_list_main li a:hover .img img:nth-child(2) {
  opacity: 1;
}
.solve_detail h1 {
  text-align: center;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0.8px;
  color: #333;
}
.solve_detail h6.des {
  text-align: center;
  font-size: 14px;
  line-height: 28px;
  color: #666;
  margin-bottom: 20px;
}
.solve_detail h6.des span {
  margin-left: 20px;
}
.solve_detail a.download {
  height: 80px;
  background-color: #666;
  line-height: 80px;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  margin: 40px 0;
}
.solve_detail a.download span {
  font-size: 20px;
}
.solve_detail a.download img {
  margin-right: 22px;
  position: relative;
  top: -3px;
}
.solve_detail_box {
  border-top: 1px solid rgba(229, 229, 229, 0.7);
  padding: 24px 0 40px;
}
.solve_detail_box h5 {
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
}
.solve_detail_box p {
  font-size: 14px;
  line-height: 28px;
  color: #666;
}
/* solve */

/* service */
.service_sec {
  margin: 80px auto;
}
.service_sec .tit {
  font-size: 30px;
  line-height: 36px;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
}
.service1_list {
}
.service1_list li {
  background-color: #fff;
  box-shadow: 0px 2px 13px rgba(0, 0, 7, 0.1);
  width: calc((100% - 120px) / 5);
  margin-right: 30px;
  float: left;
  padding: 40px 10px;
}
.service1_list li:last-child {
  margin-right: 0;
}
.service1_list li a {
  display: block;
}
.service1_list li a .img {
  position: relative;
  display: block;
  width: 53px;
  height: 49px;
  margin: auto;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.service1_list li a:hover .img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.service1_list li a .img img {
  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;
}
.service1_list li a .img img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.service1_list li a:hover .img img {
  opacity: 0;
}
.service1_list li a:hover .img img:nth-child(2) {
  opacity: 1;
}
.service1_list li a h4 {
  font-size: 18px;
  line-height: 36px;
  color: #333;
  margin-top: 20px;
  text-align: center;
  -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;
}
.service1_list li a:hover h4 {
  color: #f7b41c;
}
.service1_list li a h6 {
  font-size: 16px;
  line-height: 36px;
  color: #666;
  opacity: 0.8;
  text-align: center;
  margin-top: 36px;
}
.service2_list {
}
.service2_list li {
  margin-right: 24px;
  width: calc((100% - 72px) / 4);
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.service2_list li:last-child {
  margin-right: 0;
}
.service2_list li a {
  display: block;
  padding: 45px 10px;
  position: relative;
  z-index: 3;
}
.service2_list li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 142, 233, 0.8);
  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;
}
.service2_list li:hover::after {
  opacity: 1;
}
.service2_list li a img {
  display: block;
  margin: auto;
  opacity: 1;
  width: 54px;
  -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;
}
.service2_list li a:hover img {
  opacity: 0;
  -webkit-transform: translateY(-50px) rotateY(90deg);
  -moz-transform: translateY(-50px) rotateY(90deg);
  -ms-transform: translateY(-50px) rotateY(90deg);
  -o-transform: translateY(-50px) rotateY(90deg);
  transform: translateY(-50px) rotateY(90deg);
}
.service2_list li a h4 {
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  color: #fff;
  margin-top: 12px;
  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;
}
.service2_list li a h4::after {
  content: '';
  display: block;
  margin: 24px auto;
  width: 24px;
  height: 3px;
  background-color: #fff;
}
.service2_list li a h4 span {
  position: absolute;
  width: 100%;
  left: 0;
  top: 90px;
  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;
}
.service2_list li a:hover h4 {
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}
.service2_list li a:hover h4 span {
  opacity: 1;
}
.service_sec3 {
  padding: 100px;
}
.service_sec3 .tit {
  color: #fff;
}
.service_sec3 .download_table table thead tr {
  background: #adb0b5;
  border-bottom: 0;
}
.service_sec3 .download_table table tbody tr {
  border-bottom: 1px solid rgba(226, 226, 226, 0.5);
}
.service_sec3 .download_table table tbody tr:hover {
  background: rgba(226, 226, 226, 0.1);
}
.service_sec3 .download_table table tbody tr:last-child {
  border-bottom: 0;
}
.service_sec3 .download_table table thead tr td {
  color: #333;
}
.service_sec3 .download_table table tr td {
  color: #fff;
}
.download_table table tr.pt {
  height: 18px;
}
.service_sec3 .common_btn a {
  width: 120px;
  height: 40px;
  background-color: #f6b520;
  border-radius: 2px;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.6px;
  color: #fffefe;
  margin: 60px auto 0;
}
.service4_list {
}
.service4_list li {
  float: left;
  margin-right: 40px;
  width: calc((100% - 120px) / 4);
}
.service4_list li:last-child {
  margin-right: 0;
}
.service4_list li a {
  background-color: #fff;
  box-shadow: 0px 2px 13px rgba(0, 0, 7, 0.14);
  display: block;
  padding: 30px;
}
.service4_list li h4 {
  font-size: 16px;
  color: #666;
  font-family: Arial;
}
.service4_list li h4 span {
  font-size: 48px;
}
.service4_list li i {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background-color: #666;
  border-radius: 2px;
  padding: 0 8px;
  margin-top: 32px;
  font-size: 12px;
  color: #fff;
  font-style: normal;
  -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;
}
.service4_list li a:hover i {
  background: #f7b41c;
}
.service4_list li p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 30px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 180px;
}
.service4_list li h6 {
  position: relative;
  border-top: 1px solid #eee;
  font-size: 16px;
  color: #999;
  line-height: 46px;
  -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;
}
.service4_list li a:hover h6 {
  color: #f7b41c;
}
.service4_list li h6 .img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
}
.service4_list li h6 .img 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;
}
.service4_list li h6 .img img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.service4_list li a:hover h6 .img img {
  opacity: 0;
}
.service4_list li a:hover h6 .img img:nth-child(2) {
  opacity: 1;
}
.service_sec4 .common_btn a {
  width: 120px;
  height: 40px;
  background-color: #666;
  border-radius: 2px;
  font-size: 16px;
  margin: 60px auto 0;
}
/* service */

/* partner */
.partner_sec {
  margin: 100px auto;
}
.partner_list li {
  float: left;
  width: calc((100% - 340px) / 6);
  margin-right: 68px;
  margin-top: 54px;
}
.partner_list li:nth-child(6n) {
  margin-right: 0;
}
.partner_list li:nth-child(6n + 1) {
  clear: both;
}
.partner_list li:nth-child(-n + 6) {
  margin-top: 0px;
}
.partner_list li .img {
  border: solid 1px #f5f5f5;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.partner_list li:hover .img {
  box-shadow: 0px 0px 9px 3px rgba(0, 0, 0, 0.1);
}
.partner_list li p {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  margin-top: 18px;
  text-align: center;
}
/* partner */

/* news */
.news_sec {
  margin: 80px auto;
}
.news_sec .tit {
  position: relative;
  text-align: center;
  font-size: 30px;
  color: #333;
  margin-bottom: 64px;
}
.news_sec .tit a {
  font-size: 16px;
  color: #f7b41c;
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 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;
}
.news_sec .tit a:hover {
  color: #f28a00;
}
.news_sec .tit a i {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #f6ab00;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -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_sec .tit a:hover i {
  background-color: #f28a00;
}
.news_sec .tit a i::before,
.news_sec .tit a i::after {
  content: '';
  width: 9px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.news_sec .tit a i::after {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.news1_l {
  float: left;
  width: calc(50% - 30px);
  position: relative;
  margin-right: 48px;
}
.news1_l img {
  width: 100%;
}
.news1_l .news1P {
  text-align: right;
  position: absolute;
  bottom: 25px;
  left: auto;
  right: 25px;
  font-size: 0;
  z-index: 9;
}
.news1_l .news1P .swiper-pagination-bullet {
  width: 19px;
  height: 3px;
  background-color: #fff;
  border-radius: 1.5px;
  opacity: 1;
}
.news1_l .news1P .swiper-pagination-bullet-active {
  background: #f7b41c;
}
.news1_r {
  float: left;
  width: calc(50% - 18px);
  background-color: #fff;
  /*box-shadow: 0px 0px 4px rgba(0, 0, 7, 0.1);*/
  overflow-y: auto;
  height: 1px;
  padding-right: 40px;
}
.news1_r_list li {
  position: relative;
  padding-left: 12px;
}
.news1_r_list li::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  height: 100%;
  width: 12px;
  background: url(../images/news_list_r.png) center 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;
}
.news1_r_list li.active::after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.news1_r_list li a {
  display: block;
  padding: 25px 48px;
  background: #fff;
  position: relative;
  z-index: 3;
}
.news1_r_list li a h4 {
  font-size: 22px;
  line-height: 30px;
  height: 30px;
  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;
}
.news1_r_list li a:hover h4 {
  color: #f7b41d;
}
.news1_r_list li a h5 {
  font-size: 16px;
  line-height: 24px;
  height: 24px;
  color: #666;
  margin-top: 12px;
}
.news1_r_list li a h6 {
  font-size: 16px;
  line-height: 18px;
  color: #808080;
  padding-left: 20px;
  margin-top: 24px;
  background: url(../images/time_ico.png) left center no-repeat;
}
.news_sec1 ::-webkit-scrollbar-track-piece {
  width: 4px;
  background-color: transparent;
}
.news_sec1 ::-webkit-scrollbar {
  width: 4px;
}
.news_sec1 ::-webkit-scrollbar-thumb,
.news_sec1 ::-webkit-scrollbar-thumb:hover {
  background: #f6ab00;
}
.news_sec2_list {
}
.news_sec2_list li {
  margin-right: 65px;
  margin-top: 60px;
  width: calc((100% - 130px) / 3);
  float: left;
}
.news_sec2_list li:nth-child(3n) {
  margin-right: 0;
}
.news_sec2_list li:nth-child(-n + 3) {
  margin-top: 0;
}
.news_sec2_list li:nth-child(3n + 1) {
  clear: both;
}
.news_sec2_list li a {
  display: block;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-color: #fff;
  box-shadow: 0px 2px 18px rgba(0, 0, 7, 0.08);
}
.news_sec2_list li a:hover {
  box-shadow: 0px 2px 18px rgba(7, 7, 7, 0.2);
}
.news_sec2_list li a .img {
  overflow: hidden;
  position: relative;
}

.news_sec2_list li a .img img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.news_sec2_list li a .text {
  padding: 20px;
}
.news_list2.news_list_40 .news_sec2_list li a .text {
  padding: 20px 20px 40px 20px;
}
.news_sec2_list li a h4 {
  font-size: 22px;
  line-height: 30px;
  height: 30px;
  color: #333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.news_sec2_list li a:hover h4 {
  color: #f6ab00;
}
.news_sec2_list li a h6 {
  font-size: 16px;
  line-height: 18px;
  color: #808080;
  margin-top: 18px;
}
.news_sec2_list li a h6.addr {
  padding-left: 20px;
  background: url(../images/map_ico.png) left center no-repeat;
}
.news_sec2_list li a h6.time {
  padding-left: 20px;
  background: url(../images/time_ico.png) left center no-repeat;
}
.news_sec2_list li a h6.more {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 30px;
  color: #f6ab00;
  margin-top: 12px;
}
.news_sec2_list li a h6.more i {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #f6ab00;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.news_sec2_list li a h6.more i::before,
.news_sec2_list li a h6.more i::after {
  content: '';
  width: 6px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.news_sec2_list li a h6.more i::after {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.news_sec2_list li a .text_bot {
  padding: 20px;
  font-size: 16px;
  line-height: 18px;
  color: #888;
  border-top: 1px solid #e5e5e5;
}
.news_sec2_list li a .text_bot span.date {
  float: left;
  padding-left: 20px;
  background: url(../images/date_ico.png) left center no-repeat;
}
.news_sec2_list li a .text_bot span.house {
  float: right;
  padding-left: 20px;
  background: url(../images/house_ico.png) left center no-repeat;
}
.news_sec2_list li a p {
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  letter-spacing: 0.1px;
  color: #666;
  margin-top: 20px;
}
.news_sec2_list 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_list {
  margin: 80px auto;
}
.news_list1_inner a {
  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;
}
.news_list1_inner .img {
  width: 40%;
  overflow: hidden;
}
.news_list1_inner a .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_list1_inner 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_list1_inner .text {
  width: 60%;
  padding-left: 66px;
}
.news_list1_inner .text h6 {
  padding-left: 20px;
  background: url(../images/time_ico.png) left center no-repeat;
  font-size: 16px;
  line-height: 18px;
  color: #808080;
}
.news_list1_inner .text h4 {
  margin-top: 16px;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.6px;
  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_list1_inner a:hover .text h4 {
  color: #f7b41d;
}
.news_list1_inner .text h5 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #666;
  margin-top: 36px;
}
.news_list1_inner .text .btn {
  width: 120px;
  height: 40px;
  line-height: 40px;
  background-color: #666;
  border-radius: 2px;
  margin: 60px 0 0;
  display: block;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.6px;
  color: #fffefe;
  -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_list1_inner a:hover .text .btn {
  background-color: #f7b41d;
}
.news_list1_inner .text_bot {
  font-size: 16px;
  line-height: 18px;
  margin-top: 32px;
  color: #888;
}
.news_list1_inner .text_bot span.date {
  padding-left: 20px;
  background: url(../images/date_ico.png) left center no-repeat;
}
.news_list1_inner .text_bot span.house {
  padding-left: 20px;
  margin-left: 42px;
  background: url(../images/house_ico.png) left center no-repeat;
}
/* news */

/* investment */
.inv_sec {
  margin: 80px auto;
}
.inv_sec ul {
}
.inv_sec ul li {
  border-bottom: 1px solid #ebebeb;
}
.inv_sec ul li a {
  display: block;
  height: 80px;
  line-height: 80px;
  position: relative;
  padding: 0 180px 0 180px;
  font-size: 16px;
  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;
}
.inv_sec ul li a:hover {
  color: #f7b41c;
}
.inv_sec ul li a:hover span {
  background-image: linear-gradient(128deg,
  #f6ab00 0%,
  #f8c34a 100%);
}
.inv_sec ul li a span {
  width: 130px;
  height: 32px;
  background-color: #666;
  border-radius: 3px;
  line-height: 32px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.inv_sec ul li a i {
  font-style: normal;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 16px;
  text-align: center;
  font-family: Arial;
}
.inv_sec ul li a i img {
  margin-left: 25px;
  position: relative;
  top: -2px;
}
/* investment */

/* about */
.about_sec {
  margin: 80px auto;
}
.about_t img {
  float: left;
  margin-right: 65px;
  margin-bottom: 40px;
}
.about_t p {
  font-size: 18px;
  line-height: 30px;
  color: #666;
  margin-bottom: 32px;
  text-indent: 2em;
}
.about_b {
  margin-top: 80px;
}
.about_b ul {
  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-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
}
.about_b ul li {
}
.about_b ul li h4 {
  font-size: 40px;
  color: #f7b41c;
  font-family: Arial;
}
.about_b ul li h6 {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin-top: 12px;
}
.about_b ul li.line {
  width: 1px;
  height: 70px;
  background-color: #e1e1e1;
}
/* about */

/* subordinate */
.subo_sec {
  margin: 80px 0;
}
.subo_sec ul {
}
.subo_sec ul li {
  margin-bottom: 60px;
}
.subo_sec ul li:last-child {
  margin-bottom: 0;
}
.subo_sec ul li:nth-child(2n) .text {
  order: -1;
}
.subo_sec ul li {
  background: #fff;
  box-shadow: 0px 4px 30px rgba(0, 0, 7, 0.08);
  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;
}
.subo_sec ul li .img {
  width: 35%;
  position: relative;
  overflow: hidden;
}
.subo_sec ul li .img img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.subo_sec 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);
}
.subo_sec ul li .text {
  width: 65%;
  padding: 30px 45px 35px 75px;
  overflow: hidden;
}
.subo_sec ul li .text h3 {
  background: url(../images/subo_ico.png) left center no-repeat;
  font-size: 24px;
  line-height: 32px;
  color: #333;
  padding-left: 30px;
}
.subo_sec ul li .text .inner {
  margin: 36px 0;
  overflow: auto;
  padding-right: 40px;
  cursor: pointer;
}
.subo_sec ::-webkit-scrollbar-track-piece {
  width: 5px;
  background-color: transparent;
}
.subo_sec ::-webkit-scrollbar {
  width: 5px;
  border-radius: 2.5px;
}
.subo_sec ::-webkit-scrollbar-thumb,
.subo_sec ::-webkit-scrollbar-thumb:hover {
  background: #cbcbcb;
}
.subo_sec ul li .text .inner p {
  font-size: 14px;
  line-height: 28px;
  color: #666;
  margin-bottom: 10px;
}
.subo_sec ul li .text .inner p:last-child {
  margin-bottom: 0;
}
.subo_sec ul li .text h5 {
  line-height: 42px;
}
.subo_sec ul li .text h5 a {
  color: inherit;
}
.subo_sec ul li .text h5 span {
  font-size: 14px;
  line-height: 30px;
  color: #f6ab00;
  padding-left: 20px;
  position: relative;
}
.subo_sec ul li .text h5 span i {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #f6ab00;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.subo_sec ul li .text h5 span i::before,
.subo_sec ul li .text h5 span i::after {
  content: '';
  width: 6px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.subo_sec ul li .text h5 span i::after {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.subo_sec ul li .text h5 em {
  float: right;
  font-family: Arial;
  font-size: 16px;
  color: #f6ab00;
  font-style: normal;
}
.subo_sec ul li .text h5 em img {
  margin-right: 12px;
}
#subo_model {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
}
#subo_model .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
#subo_model .inner {
  width: 800px;
  max-width: 94%;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9;
  border-radius: 6px;
}
#subo_model .inner p {
  font-size: 15px;
  line-height: 28px;
  color: #666;
  margin: 10px 0;
}
#subo_model .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
#subo_model .close::before,
#subo_model .close::after {
  content: '';
  width: 20px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  background: #333
}
#subo_model .close::after {
  transform: rotateZ(-45deg);
  -webkit-transform: rotateZ(-45deg);

}
/* subordinate */

/* honer */
.honer_sec {
  margin: 80px auto;
}
.honer_sec .tit {
  font-size: 30px;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
}
.honer_sec .swiper-slide p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 28px;
  color: #333;
  text-align: center;
}
.honerP {
  text-align: right;
  position: static;
  margin-top: 40px;
  font-size: 0;
}
.honerP .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  opacity: 1;
  margin-left: 10px;
  margin-right: 0;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #4d4d4d;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
}
.honerP .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f7b41c;
  color: #fff;
}
/* honer */

/* contact */
.contact_sec1 {
  position: relative;
}
.my-map {
  margin: 0 auto;
  width: 100%;
  height: 650px;
}
.my-map .icon {
  background: url(../images/marker.png) no-repeat;
}
.my-map .icon-cir {
  height: 52px;
  width: 40px;
}
.amap-copyright,
.amap-logo {
  display: none !important;
}
.amap-container {
  height: 100%;
}
.contact_sec1 .text {
  position: absolute;
  right: 100px;
  height: 100%;
  background: rgba(16, 142, 233, 0.88);
  width: 480px;
  z-index: 9;
  top: 0;
  padding: 35px;
}
.contact_sec1 .text h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 50px;
  color: #fff;
  position: relative;
  margin-bottom: 48px;
}
.contact_sec1 .text h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #fff;
}
.contact_sec1 .text h3::after {
  content: '';
  display: block;
  width: 200px;
  height: 1px;
  background-color: #fff;
  opacity: 0.36;
  margin-top: 20px;
}
.contact_sec1 .text p {
  padding: 18px 0 18px 24px;
  line-height: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16px;
  color: #fff;
}
.contact_sec1 .text p:empty {
  display: none;
}
.contact_sec1 .text p:nth-of-type(1) {
  background: url(../images/contact_addr.png) left top 22px no-repeat;
}
.contact_sec1 .text p:nth-of-type(2) {
  background: url(../images/contact_ask.png) left top 22px no-repeat;
}
.contact_sec1 .text p:nth-of-type(3) {
  background: url(../images/contact_hot.png) left top 22px no-repeat;
}
.contact_sec1 .text p:nth-of-type(4) {
  background: url(../images/contact_tel.png) left top 22px no-repeat;
}
.contact_sec1 .text p:nth-of-type(5) {
  background: url(../images/contact_email.png) left top 22px no-repeat;
}
.contact_sec1 .text p:nth-of-type(6) {
  background: url(../images/contact_code.png) left top 22px no-repeat;
}
.contact_sec1 .text p:nth-of-type(7) {
  background: url(../images/contact_fax.png) left top 22px no-repeat;
}

#market .box{margin-top:60px;margin-bottom:60px;padding:40px 0;box-shadow:0px 8px 36.8px 3.2px rgba(0,0,7,0.08)}
#market .box.flexBetween{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}
#market .box .boxLeft{width:23%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left: 60px;padding-top: 30px;padding-bottom: 30px;border-right:2px solid #eee;position:relative}
#market .box .boxLeft ul li{cursor:pointer;position:relative}
#market .box .boxLeft ul li .flexStart{display:-webkit-box;display:-ms-flexbox;display:flex;display:-webkit-flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}
#market .box .boxLeft ul li > span{position:absolute;top:50%;right:0;border:10px solid transparent;border-left-color:#eee;display:block;-webkit-transform:translateX(100%) translateY(-50%);-ms-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%);-webkit-transition:0.4s;-o-transition:0.4s;transition:0.4s;opacity:0}
#market .box .boxLeft ul li > span::after{content:'';position:absolute;top:-8px;left:-11px;z-index:1;border:8px solid transparent;border-left-color:#ffffff}
#market .box .boxLeft ul li:not(:last-child){margin-bottom:20px}
#market .box .boxLeft ul li .text{font-size:20px;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-transition:0.4s;-o-transition:0.4s;transition:0.4s}
#market .box .boxLeft ul .active > span{opacity:1}
#market .box .boxLeft ul .active .text{color:#f6ab00;font-weight:500}
#market .box .boxRight{width:77%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top: 30px;padding-bottom: 30px;padding-left: 6%;padding-right: 5%;}
#market .box .boxRight .main .toggMain{display:none}
#market .box .boxRight .main .toggMain .bot h6{font-size:24px}
#market .box .boxRight .main .toggMain .bot div{margin-top:40px}
#market .box .boxRight .main .toggMain .bot div p{font-size:18px;padding-left:35px}
#market .box .boxRight .main .toggMain .bot div p:not(:last-child){margin-bottom:20px}
#market .box .boxRight .main .toggMain .bot p.add{background:url(../images/add.png) top 2px left no-repeat}
#market .box .boxRight .main .toggMain .bot p.sale{background:url(../images/sale.png) top 2px left no-repeat}
#market .box .boxRight .main .toggMain .bot p.tech{background:url(../images/tech.png) top 2px left no-repeat}
#market .box .boxRight .main .toggMain .bot p.mail{background:url(../images/mail1.png) top 2px left no-repeat}
#market .box .boxRight .main .toggMain .bot p.fax{background:url(../images/fax.png) top 2px left no-repeat}
#market .box .boxRight .main .active{display:block}

.contact_sec2 {
  margin: 80px auto;
  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;
}
.contact2_l {
  margin-left: 6%;
  width: 45%;
}
.contact2_l .map {
  display: inline-block;
  position: relative;
}
.contact2_l .map .dot_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact2_l .map .dot_list .point-area:nth-child(1) {
  left: 56%;
  top: 30%;
}
.contact2_l .map .dot_list .point-area:nth-child(2) {
  left: 67%;
  top: 23%;
}
.contact2_l .map .dot_list .point-area:nth-child(3) {
  left: 46%;
  top: 45%;
}
.contact2_l .map .dot_list .point-area:nth-child(4) {
  left: 53%;
  top: 45%;
}
.contact2_l .map .dot_list .point-area:nth-child(5) {
  left: 62%;
  top: 51%;
}
.contact2_l .map .dot_list .point-area:nth-child(6) {
  left: 66%;
  top: 53%;
}
.contact2_l .map .dot_list .point-area:nth-child(7) {
  left: 38%;
  top: 54%;
}
.contact2_l .map .dot_list .point-area:nth-child(8) {
  left: 34%;
  top: 70%;
}
.contact2_l .map .dot_list .point-area:nth-child(9) {
  left: 54%;
  top: 54%;
}
.contact2_l .map .dot_list .point-area:nth-child(10) {
  left: 54%;
  top: 73%;
}
.contact2_l .map .dot_list .point-area:nth-child(11) {
  left: 55%;
  top: 76%;
}
.contact2_r {
  width: 49%;
  position: relative;
}
.cont2S {
  width: 100%;
  max-width: 520px;
  margin: auto;
}
.cont2S .swiper-slide .inner,
.cont2Sm .swiper-slide .inner,
.cont2S .swiper-slide li {
  -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;
  padding: 40px;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
  cursor: pointer;
  background: #fff url(../images/cont2_bg2.jpg) right bottom no-repeat;
}
.cont2S  {
  border-bottom: 1px solid #e5e5e5;
}
.cont2S .swiper-slide .inner h3,
.cont2Sm .swiper-slide .inner h3,
.cont2S .swiper-slide li h3 {
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  -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;
}
.cont2S .swiper-slide .inner h6,
.cont2Sm .swiper-slide .inner h6,
.cont2S .swiper-slide li h6 {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
  padding-left: 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;
}
.cont2S .swiper-slide .inner h6.addr,
.cont2Sm .swiper-slide .inner h6.addr,
.cont2S .swiper-slide li h6.addr {
  background: url(../images/contact_addr2.png) top 2px left no-repeat;
}
.cont2S .swiper-slide .inner h6.tel,
.cont2Sm .swiper-slide .inner h6.tel,
.cont2S .swiper-slide li h6.tel {
  background: url(../images/contact_tel2.png) top 2px left no-repeat;
}
.cont2S .swiper-slide .inner h6.fax,
.cont2Sm .swiper-slide .inner h6.fax,
.cont2S .swiper-slide li h6.fax {
  background: url(../images/contact_fax2.png) top 2px left no-repeat;
}
.cont2Sm .swiper-slide .inner {
  padding: 0px;
  border: 0;
  background: transparent;
}
.cont2S .swiper-slide-active .inner,
.cont2S .swiper-slide:hover .inner {
  background: #36a0ed url(../images/cont2_bg.jpg) right bottom no-repeat;
}
.cont2S .swiper-slide-active .inner h3,
.cont2S .swiper-slide-active .inner h6,
.cont2S .swiper-slide:hover .inner h3,
.cont2S .swiper-slide:hover .inner h6 {
  color: #fff;
}
.cont2S .swiper-slide-active .inner h6.addr,
.cont2S .swiper-slide:hover .inner h6.addr {
  background: url(../images/contact_addr2a.png) top 2px left no-repeat;
}
.cont2S .swiper-slide-active .inner h6.tel,
.cont2S .swiper-slide:hover .inner h6.tel {
  background: url(../images/contact_tel.png) top 2px left no-repeat;
}
.cont2S .swiper-slide-active .inner h6.fax,
.cont2S .swiper-slide:hover .inner h6.fax {
  background: url(../images/contact_fax.png) top 2px left no-repeat;
}
.mapP {
  position: static;
  text-align: center;
  font-size: 0;
  width: 100%;
  max-width: 520px;
  margin: 35px auto 0;
}
.mapP .swiper-pagination-bullet {
  border-color: #d0d0d0;
  margin: 0 7px;
}
.culture_sec {
  margin: 100px 0;
}
.culture_sec li {
  border-radius: 10px;
  overflow: hidden;
  width: calc(33.3% - 20px);
  margin-right: 30px;
  margin-top: 55px;
  float: left;
  position: relative;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 7, 0.1);
}
.culture_sec li:nth-child(-n + 3) {
  margin-top: 0;
}
.culture_sec li:nth-child(3n) {
  margin-right: 0;
}
.culture_sec li:nth-child(3n + 1) {
  clear: both;
}
.culture_sec li a {
  display: block;
  padding: 105px 0 80px;
  z-index: 3;
  position: relative;
}
.culture_sec li:hover {

}
.culture_sec li .img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
}
.culture_sec li .img img {
  display: block;
}
.culture_sec li h3 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-top: 64px;
  -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;
}
.culture_sec li h5 {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  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;
}
.culture_sec li h6 {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  margin-top: 24px;
  -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;
}
.culture_sec li .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}
.culture_sec li:hover .bg {
  opacity: 1;
}
.culture_sec li:hover h3,
.culture_sec li:hover h5,
.culture_sec li:hover h6 {
  color: #fff
}
/* contact */

/* join */
.join_sec {
  margin: 80px auto;
}
.join_sec .tit {
  font-size: 30px;
  color: #333;
  text-align: center;
}
.join_sec .des {
  font-size: 16px;
  line-height: 32px;
  color: #888;
  margin-top: 32px;
  text-align: center;
}
.join_t {
  margin-top: 60px;
}
.join_l {
  float: left;
}
.join_l input {
  width: 320px;
  height: 48px;
  border: solid 1px #d3d3d3;
  font-size: 16px;
  color: #666;
  padding: 0 42px;
  float: left;
}
.join_l a {
  border: solid 1px #d3d3d3;
  width: 90px;
  height: 48px;
  line-height: 48px;
  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;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #666;
  float: left;
  margin-left: 6px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.join_l a:hover {
  border-color: #f6ad00;
  color: #f6ad00;
}
.join_l a img {
  margin-right: 6px;
}
.join_r {
  float: right;
}
.join_r h6 {
  padding-left: 42px;
  line-height: 24px;
  font-size: 16px;
  color: #666;
  background: url(../images/join_ico_email.png) left center no-repeat;
}
.join_r h6 a {
  color: #f8b31a;
}
.join_b {
  margin-top: 50px;
}
.join_b_tit {
  font-size: 0;
  letter-spacing: 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;
}
.join_b_tit span {
  display: inline-block;
  width: 25%;
  height: 80px;
  font-size: 16px;
  line-height: 80px;
  letter-spacing: 0.4px;
  color: #666;
  padding-left: 85px;
  -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;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.join_b_tit.outer span {
  color: #fff;
  font-weight: bold;
}
.join_b_tit.outer span:nth-child(1) {
  background: #666 url(../images/join_ico_name.png) left 50px center no-repeat;
}
.join_b_tit.outer span:nth-child(2) {
  background: #666 url(../images/join_ico_comp.png) left 50px center no-repeat;
}
.join_b_tit.outer span:nth-child(3) {
  background: #666 url(../images/join_ico_addr.png) left 50px center no-repeat;
}
.join_b_tit.outer span:nth-child(4) {
  background: #666 url(../images/join_ico_time.png) left 50px center no-repeat;
}
.join_b ul li.active h4 {
  background: #f7b41c;
}
.join_b ul li.active h4 span {
  color: #fff;
}
.join_b_con {
  background: url(../images/join_bg.jpg);
  display: none;
  padding: 30px 40px 55px 85px;
}
.join_b_con a {
  float: right;
}
.join_b_text h5,
.join_b_text p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #666;
}
.join_b_text h5:nth-of-type(2) {
  margin-top: 32px;
}
.join_b ul {
  border-bottom: 1px solid #d9d9d9;
}
.join_b ul li .join_b_tit {
  cursor: pointer;
}
.join_b ul li .join_b_tit:hover {
  background-color: #eee;
}
.join_form_inner {
  background-color: #fff;
  box-shadow: 0px 8px 36.8px 3.2px rgba(0, 0, 7, 0.08);
  padding: 100px 0;
}
.join_form_list {
  padding: 0 50px;
  margin-top: 80px;
}
.join_form_list li {
  font-size: 0;
  margin-bottom: 48px;
}
.join_form_list li label {
  display: inline-block;
  width: 25%;
  font-size: 16px;
  line-height: 48px;
  color: #333;
  position: relative;
}
.join_form_list li label .red {
  color: red;
}
.join_form_list li label.ls2:first-letter {
  letter-spacing: 2em;
}
.join_form_list li label select,
.join_form_list li label input {
  border: 1px solid #f0f0f0;
  height: 48px;
  background-color: #fff;
  border-radius: 3px;
  width: calc(100% - 116px);
  padding: 0 18px;
  color: #666;
  outline: none;
}
.join_form_list li label input {

}
.join_form_list li label select {
}
.join_form_list li.comp label {
  width: 50%;
}
.join_form_list li.comp label select {
}
.join_form_list li.upload {
  margin-bottom: 0;
}
.join_form_list li.upload label {
  width: auto;
}
.join_form_list li.upload label .upload {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  height: 48px;
  line-height: 48px;
  padding: 0 12px;
}
.join_form_list li.upload label .upload img {
  margin-right: 15px;
  position: relative;
  top: -2px;
}
.join_form_list li.upload label .upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.join_form_list li.bot {
  padding-left: 86px;
}
.join_form_list li.bot textarea {
  height: 220px;
  border: 1px solid #f0f0f0;
  font-size: 16px;
  line-height: 28px;
  color: #666;
  background-color: #fff;
  border-radius: 3px;
  padding: 18px;
  width: 100%;
  resize: none;
  outline: none;
}
.join_form_list li.bot a {
  font-size: 14px;
  margin-top: 50px;
}
/* join */

/* activity */
.activity_sec {
  margin: 100px 0;
}

.activity_sec .tit {
  font-size: 30px;
  color: #333;
  text-align: center;
}
.activity_sec ul {
  margin-top: 60px;
}
.activity_sec ul li {
  float: left;
  width: calc((100% - 132px) / 3);
  margin-right: 66px;
  margin-top: 50px;
  cursor: pointer;
}
.activity_sec ul li:nth-child(-n + 3) {
  margin-top: 0;
}
.activity_sec ul li:nth-child(3n) {
  margin-right: 0;
}
.activity_sec ul li:nth-child(3n + 1) {
  clear: both;
}
.activity_sec ul li .img {
  position: relative;
  overflow: hidden;
}
.activity_sec ul li .img::after {
  content: '';
  border: 0 solid #f5f5f5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.activity_sec ul li .img img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.activity_sec 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);
}
.activity_sec ul li:hover .img::after {
  border: 8px solid #f6ab00;
}
.activity_sec ul li p {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f5f5f5;
  font-size: 16px;
  color: #333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.activity_sec ul li:hover p {
  background: #f6ab00;
  color: #fff;
}
/* activity */

/* plan */
.plan_sec {
  margin: 80px 0;
}
.plan_sec .tit {
  font-size: 30px;
  color: #333;
  text-align: center;
}
.plan_sec1_con {
  margin-top: 60px;
}
.plan_sec1_con li {
  width: 25%;
  float: left;
  padding: 5% 4% 0;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.plan_sec1_con li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 171, 0, 0.9);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.plan_sec1_con li:hover::after {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.plan_sec1_con li .inner {
  position: relative;
  z-index: 1;
}
.plan_sec1_con li img {
  display: block;
  margin: auto;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.plan_sec1_con li:hover img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.plan_sec1_con li h4 {
  font-size: 36px;
  color: #fefefe;
  margin-top: 64px;
  text-align: center;
  font-weight: bold;
}
.plan_sec1_con li h5 {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #cfcfcf;
}
.plan_sec1_con li h6 {
  text-align: center;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: #fff;
  opacity: 0.8;
  margin-top: 24px;
}
.plan_sec1_con li:hover h6 {
  opacity: 1;
}
.plan_sec2 img {
  display: block;
  margin: 20px auto 0;
}
/* plan */

/* welfare */
.welfare_sec {
  margin: 80px 0;
}
.welfare_sec .tit {
  font-size: 30px;
  color: #333;
  text-align: center;
}
.welfare_tit {
  height: 50px;
  line-height: 50px;
  background: #666 url(../images/welf_ico1.png) left 34px center no-repeat;
  padding-left: 70px;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #fff;
  margin-top: 60px;
}
.welfare_tit2 {
  background: #666 url(../images/welf_ico2.png) left 34px center no-repeat;
}
.welfare_sec li h5 {
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #f6ab00;
}
.welfare_sec li p {
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #666;
  line-height: 24px;
}
.welfare1_list {
  padding: 36px 0;
  border-bottom: 1px solid #e5e5e5;
}
.welfare1_list li {
  width: calc(100% / 3);
  float: left;
  border-right: 1px solid #e6e6e6;
  padding: 0 4%;
}
.welfare1_list li:last-child {
  border-right: none;
}
.welfare1_list li h5 {
}
.welfare1_list li p {
  margin-top: 20px;
}
.welfare2_list {
  padding: 20px 40px;
}
.welfare2_list li {
  border-bottom: 1px solid #e5e5e5;
  padding: 0 28px;
}
.welfare2_list li:last-child {
  border-bottom: none;
}
.welfare2_list li::after {
  content: '';
  clear: both;
  display: block;
  height: 0;
}
.welfare2_list li h5 {
  float: left;
  width: 188px;
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 60px;
}
.welfare2_list li p {
  float: left;
  width: calc(100% - 188px);
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 60px;
}
/* welfare */

/* submit */
.comm_submit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  z-index: 999;
}
.comm_submit .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
}
.comm_submit_inner {
  position: relative;
  z-index: 9;
  width: 83%;
  background: #fff url(../images/activity_form_bg.png) center / cover no-repeat;
  padding: 72px 120px;
  box-sizing: border-box;
  border-radius: 3px;
  border: solid 1px #e5e5e5;
}
.comm_submit_inner::after {
  content: '';
  clear: both;
  display: block;
  height: 0;
}
.comm_submit_l {
  float: left;
  width: 30%;
}
.comm_submit_inner .close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.comm_submit_inner .close:hover {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.comm_submit_l h4 {
  font-size: 24px;
  font-weight: normal;
  color: #444444;
  margin: 0 0 30px 0;
}
.comm_submit_l h6 {
  font-size: 16px;
  line-height: 28px;
  font-weight: normal;
  color: #808080;
  margin: 0;
}
.comm_submit_r {
  float: right;
  width: 65%;
}
.comm_submit_t {
  font-size: 0;
}
.comm_submit_t label {
  display: inline-block;
  width: 32%;
  margin-right: 2%;
  font-size: 14px;
  color: #666;
  line-height: 24px;
  vertical-align: middle;
}
.comm_submit_t label:last-child {
  margin-right: 0;
}
.comm_submit_t label input {
  background: transparent;
  border: 1px solid #c1c1c2;
  display: block;
  width: 100%;
  height: 38px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
  border-radius: 3px;
}
.comm_submit_b {
  margin-top: 20px;
}
.comm_submit_b label {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  vertical-align: middle;
}
.comm_submit_b label:last-of-type {
  margin-right: 0;
  width: 66%;
}
.comm_submit_b label textarea {
  height: 38px;
  border-radius: 3px;
  resize: none;
  display: block;
  background: transparent;
  border: 1px solid #c1c1c2;
  padding: 0 10px;
  box-sizing: border-box;
  outline: none;
  width: 100%;
  line-height: 36px;
}
.comm_submit_b a.sub {
  line-height: 33px;
  border: 1px solid #c1c1c2;
  width: 120px;
  height: 35px;
  border-radius: 17.5px;
  display: block;
  text-align: center;
  margin-top: 28px;
  overflow: hidden;
  position: relative;
  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;
}
.comm_submit_b a.sub span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: #333333;
  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;
}
.comm_submit_b a.sub:hover {
  background: #333;
}
.comm_submit_b a.sub:hover span {
  color: #fff;
}
/* .comm_submit_b a.sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 17.5px;
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  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;
  opacity: 0;
  background: #333;
  width: 120px;
  height: 35px;
}
.comm_submit_b a.sub:hover::before {
  opacity: 1;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
} */
/* submit */


@media (max-width: 1780px) {
  .ind_sec1_s .inner {
    padding: 0 50px;
  }
}
@media (max-width: 1600px) {
  .header .header_nav {
    min-width: 940px
  }

  .banner .prev {
    left: 50px;
  }

  .banner .next {
    right: 50px;
  }

  .ind_sec1_s .swiper_btn.prev {
    left: calc(50% - 50vw + 54px);
  }

  .ind_sec1_s .swiper_btn.next {
    right: calc(50% - 50vw + 54px);
  }

  .ind_sec2_l {
    padding-left: 50px;
  }

  .container-outer {
    padding-left: 50px;
    padding-right: 50px;
  }

  .ind_sec1_s .text h3 {
    font-size: 36px;
    line-height: 42px;
  }
  .ind_sec2_r_inner ul li {
    width: calc(50% - 30px);
    margin-right: 60px;
    margin-top: 40px;
  }
  .ind_sec2_r_inner {
    width: calc(100% - 50px);
    padding: 40px 80px;
  }
  .ind_sec3_r .text {
    padding: 100px;
  }
  .solve_sec a .tit {
    top: 50px;
    left: 50px;
  }
  .partner_list li {
    width: calc((100% - 160px) / 5);
    margin-right: 40px;
    margin-top: 40px;
  }
  .partner_list li:nth-child(6n) {
    margin-right: 40px;
  }
  .partner_list li:nth-child(5n) {
    margin-right: 0px;
  }
  .partner_list li:nth-child(6n + 1) {
    clear: none;
  }
  .partner_list li:nth-child(5n + 1) {
    clear: both;
  }
  .partner_list li:nth-child(-n + 6) {
    margin-top: 40px;
  }
  .partner_list li:nth-child(-n + 5) {
    margin-top: 0px;
  }
  .join_b_tit span:nth-child(1) {
    width: 35%;
  }
  .join_b_tit span:nth-child(2) {
    width: 20%;
  }
  .join_b_tit span:nth-child(3) {
    width: 30%;
  }
  .join_b_tit span:nth-child(4) {
    width: 15%;
  }
  .footer_r ul li h4 a {
    font-size: 18px;
  }
  .footer_r ul li h6 {
    font-size: 15px;
  }
}

@media (max-width: 1440px) {
  .header .logo {
    width: 160px;
  }

  .header .header_nav {
    min-width: 900px;
  }
  .header .header_nav li a {
    font-size: 16px;
  }
  .ind4_0 {
    width: 320px;
    height: 320px;
  }
  .ind4_1, .ind4_2, .ind4_3, .ind4_4 {
    width: 125px;
    height: 125px;
  }
  .ind4_1 .text, .ind4_2 .text, .ind4_3 .text, .ind4_4 .text {
    width: 185px;
    margin-left: -35px;
    font-size: 14px;
  }
  .ind_sec4_inner {
    max-width: 1200px;
  }
  .subo_sec ul li a .text .inner {
    margin: 20px 0;
  }
  .culture_sec li h3 {
    margin-top: 32px;
    font-size: 28px;
  }
  .pro_main ul li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-top: 20px;
  }
  .pro_main ul li:nth-child(-n + 3) {
    margin-top: 20px;
  }
  .pro_main ul li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .pro_main ul li:nth-child(3n) {
    margin-right: 20px;
  }
  .pro_main ul li:nth-child(2n) {
    margin-right: 0;
  }
  .pro_main ul li:nth-child(3n + 1) {
    clear: none;
  }
  .pro_main ul li:nth-child(2n + 1) {
    clear: both;
  }
  .solve_sec a .tit {
    font-size: 34px;
  }
}

@media (max-width: 1366px) {
  .header .header_nav {
    min-width: 840px
  }
  .header .header_nav li a {
    font-size: 15px;
  }
  .banner .prev {
    left: 25px;
  }

  .banner .next {
    right: 25px;
  }

  .ind_sec1_s .swiper_btn.prev {
    left: calc(50% - 50vw + 29px);
  }

  .ind_sec1_s .swiper_btn.next {
    right: calc(50% - 50vw + 29px);
  }

  .ind_sec2_l {
    padding-left: 25px;
  }

  .container-outer {
    padding-left: 25px;
    padding-right: 25px;
  }
  .ind_sec2_r_inner {
    width: calc(100% - 25px);
  }
  .ind_sec3_r .text {
    padding: 60px;
  }

  .pro_con_nav {
    margin-top: 20px;
  }
}

@media (max-width: 1280px) {
  .banner .swiper-slide .text h3 {
    font-size: 48px;
  }
  .banner .swiper-slide .text h5 {
    font-size: 18px;
  }
}
@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: 36px;
    display: block;
  }

  .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: -80%;
    width: 80%;
    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 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;
    cursor: pointer;
  }

  .headerSJ .navbg .closeSJ {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
  }

  .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;
  }
  .banner .swiper-slide .text {
    bottom: 45%;
  }
  .banner .swiper-slide .text h3 {
    font-size: 42px;
  }
  .banner_menu {
    height: 100px;
    padding: 10px 0;
  }
  .bannerP_outer {
    bottom: 110px;
  }
  .ind_sec3_lt, .ind_sec3_lb {
    padding: 30px;
    display: block;
  }
  .ind_sec1_s .text h3,
  .ind_sec2_r_inner ul li h4,
  .ind_sec2_tit h3,
  .ind_sec3_r .text h3,
  .ind_sec3_lt h3, .ind_sec3_lb h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .ind_sec3_lt h6, .ind_sec3_lb h6 {
    margin-top: 20px;
  }
  .footer_t {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer_l {
    float: none;
    text-align: center;
  }
  .footer_l .inp {
    margin-top: 20px;
  }
  .footer_l .submit {
    margin: 20px auto 0;
  }
  .footer_r {
    display: none;
  }
  .pro_main {
    width: calc(100% - 280px);
  }
  .solve_sec a .tit {
    font-size: 28px;
    left: 36px;
    top: 36px;
  }
  .service1_list li {
    width: calc((100% - 64px) / 5);
    margin-right: 16px;
  }
  .service4_list li {
    margin-right: 20px;
    width: calc((100% - 60px) / 4);
  }
  .pro_slide {
    width: 240px;
  }
  .pro_slide h3 {
    font-size: 20px;
  }
  .pro_slide h3::after {
    width: 90px;
  }
  .download_main {
    width: calc(100% - 280px);
  }
  .download_table table tr td {
    padding: 0 12px;
    font-size: 14px;
  }
  .download_table p {
    font-size: 14px;
  }
  .solve_list_main li a {
    font-size: 14px;
  }
  .partner_list li {
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
    margin-top: 20px;
  }
  .partner_list li:nth-child(6n),
  .partner_list li:nth-child(5n) {
    margin-right: 20px;
  }
  .partner_list li:nth-child(4n) {
    margin-right: 0px;
  }
  .partner_list li:nth-child(5n + 1) {
    clear: none;
  }
  .partner_list li:nth-child(4n + 1) {
    clear: both;
  }
  .partner_list li:nth-child(-n + 6),
  .partner_list li:nth-child(-n + 5) {
    margin-top: 20px;
  }
  .partner_list li:nth-child(-n + 4) {
    margin-top: 0px;
  }
  .news1_r_list li a {
    padding: 15px 36px;
  }
  .news1_r_list li a h4 {
    font-size: 20px;
  }
  .news1_r_list li a h5 {
    font-size: 15px;
    margin-top: 8px;
  }
  .news1_r_list li a h6 {
    font-size: 14px;
    margin-top: 20px;
  }
  .news_sec2_list li {
    margin-right: 20px;
    margin-top: 20px;
    width: calc((100% - 40px) / 3);
  }
  .news_sec2_list li a h4 {
    font-size: 18px;
  }
  .news_list1_inner .text h4 {
    font-size: 20px;
  }
  .news_list1_inner .text h5 {
    font-size: 14px;
    margin-top: 24px;
  }
  .news_list1_inner .text_bot {
    margin-top: 24px;
  }
  .news_list1_inner .text a {
    margin-top: 28px;
  }
  .inv_sec ul li a {
    font-size: 15px;
  }
  .inv_sec ul li a i {
    font-size: 14px;
  }
  .about_t img {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
  }
  .about_t p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .subo_sec ul li a .text h3 {
    font-size: 20px;
  }
  .subo_sec ul li a .text {
    padding: 24px;
  }
  .culture_sec {
    margin: 80px 0;
  }
  .join_b_tit span {
    padding-left: 45px;
  }
  .join_b_tit.outer span:nth-child(1) {
    background: #666 url(../images/join_ico_name.png) left 20px center no-repeat;
  }
  .join_b_tit.outer span:nth-child(2) {
    background: #666 url(../images/join_ico_comp.png) left 20px center no-repeat;
  }
  .join_b_tit.outer span:nth-child(3) {
    background: #666 url(../images/join_ico_addr.png) left 20px center no-repeat;
  }
  .join_b_tit.outer span:nth-child(4) {
    background: #666 url(../images/join_ico_time.png) left 20px center no-repeat;
  }
  .join_b_con {
    background: url(../images/join_bg.jpg);
    display: none;
    padding: 20px 20px 25px 45px;
  }
  .activity_sec ul li {
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
    margin-top: 40px;
  }
  .plan_sec1_con li img {
    width: 40%;
  }
  .plan_sec1_con li h4 {
    font-size: 28px;
    margin-top: 40px;
  }
  .plan_sec1_con li h5 {
    font-size: 16px;
  }
  .ind4_0 {
    width: 100%;
    height: auto;
    position: static;
    padding: 0 3%;
    margin-bottom: 32px;
  }
  .ind4_1, .ind4_2, .ind4_3, .ind4_4 {
    width: 100%;
    height: auto;
    position: static;
    padding: 0 3%;
    margin-top: 16px;
  }
  .ind4_1 a, .ind4_2 a, .ind4_3 a, .ind4_4 a {
    display: block;
    border: 0;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    border-radius: 0%;
  }
  .ind4_0 img, .ind4_1 img, .ind4_2 img, .ind4_3 img, .ind4_4 img {
    display: none;
  }
  .ind4_1 h4, .ind4_2 h4, .ind4_3 h4, .ind4_4 h4 {
    position: static;
    margin: 0 0 10px 0;
  }
  .ind4_0 .text, .ind4_1 .text, .ind4_2 .text, .ind4_3 .text, .ind4_4 .text {
    position: static;
    display: block;
    width: 100%;
    margin: 0;
  }
  .ind4_0 .text br,
  .ind4_1 .text br,
  .ind4_2 .text br,
  .ind4_3 .text br,
  .ind4_4 .text br {
    display: none;
  }
  .ind4_0 .text h4 {
    font-size: 24px;
  }
  .ind4_0 .text h6 {
    font-size: 18px;
  }
  .ind4_0 .text h6 span {
    font-size: 20px;
  }
  .ind4_0 .text h6::before {
    display: none;
  }
  .contact2_l {
    margin-left: 0%;
    width: 60%;
  }
  .contact2_r {
    width: 40%;
  }
  
  #market .box{margin-top:30px;margin-bottom:30px;padding:30px 0}
  #market .box .boxLeft{padding-left:5%;padding-right:5%;width:100%;border:0;border-bottom:2px solid #eee;padding-bottom:30px}
  #market .box .boxLeft ul li{float:left;text-align:left;width:50%}
  #market .box .boxLeft ul .active > span{display:none}
  #market .box .boxLeft ul li .text{font-size:16px}
  #market .box .boxRight{width:100%;padding-left:5%;padding-right:5%;padding-top:30px}
  #market .box .boxRight .main .toggMain .bot h6{font-size:18px}
  #market .box .boxRight .main .toggMain .bot div{margin-top:30px}
  #market .box .boxRight .main .toggMain .bot div p{font-size:14px}
}

@media (max-width: 768px) {
  .subo_sec ul li a .text h5 em {
    float: none;
  }
  .wrapper {
    padding-top: 60px;
  }
  .container-outer {
    padding-left: 3%;
    padding-right: 3%;
  }
  .bannerP_outer {
    position: absolute;
    bottom: 10px;
  }
  .banner .swiper-slide .text {
    padding: 0 3%;
  }
  .banner .swiper-slide .text h3 {
    font-size: 28px;
    letter-spacing: 0px;
  }
  .banner .swiper-slide .text h5 {
    font-size: 16px;
    letter-spacing: 0px;
    margin-top: 12px;
  }
  .ind_sec1_s .inner {
    flex-direction: column;
    padding: 0;
  }
  .ind_sec1_s .text {
    width: 100%;
  }
  .ind_sec1_s .text h3 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0px;
  }
  .ind_sec1_s .text h5 {
    font-size: 15px;
    line-height: 24px;
    margin-top: 20px;
  }
  .ind_sec1_s .text a {
    margin-top: 40px;
  }
  .ind_sec1_s .img {
    width: 100%;
    order: -1;
  }
  .ind_sec1_s .swiper_btn.prev {
    left: 3%;
  }
  .ind_sec1_s .swiper_btn.next {
    right: 3%;
  }
  .ind_sec1_s .img > img,
  .ind_sec1_s .img > .img1,
  .ind_sec1_s .img > .img2,
  .ind_sec1_s .img > .img3 {
    display: none;
  }
  .ind_sec1_s .img > .img4 {
    position: static;
    padding: 0;
  }
  .ind_sec2_l {
    width: 100%;
    float: none;
    padding: 40px 3%;
    height: auto!important;
  }
  .ind_sec2_tit h3 {
    font-size: 28px;
    letter-spacing: 0px;
    margin-bottom: 0px;
  }
  .ind_sec2_tit h5 {
    font-size: 14px;
    margin-top: 16px;
  }
  .ind_sec2_l a {
    margin: 20px 0 0;
  }
  .ind_sec2_r {
    padding: 40px 3%;
    width: 100%;
    float: none;
  }
  .ind_sec2_r_inner {
    width: 100%;
    padding: 20px;
  }
  .ind_sec2_r_inner ul li {
    width: 50%;
    margin-right: 0px;
    margin-top: 20px;
  }
  .ind_sec2_r_inner ul li img {
    margin: auto;
  }
  .ind_sec2_r_inner ul li h4 {
    font-size: 28px;
    margin-top: 10px;
    text-align: center;
  }
  .ind_sec2_r_inner ul li h6 {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    text-align: center;
  }
  .ind_sec3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ind_sec3_l {
    width: 100%;
    float: none;
    margin-right: 0px;
  }
  .ind_sec3_lb {
    margin-top: 0px;
  }
  .ind_sec3_lt,
  .ind_sec3_lb {
    padding: 40px 3%;
    height: auto!important;
    display: block;
  }
  .ind_sec3_lt h3,
  .ind_sec3_lb h3 {
    font-size: 28px;
    letter-spacing: 0px;
  }
  .ind_sec3_lt h6,
  .ind_sec3_lb h6 {
    font-size: 15px;
    line-height: 22px;
    margin-top: 18px;
  }
  .ind_sec3_r {
    width: 100%;
    float: none;
  }
  .ind_sec3_r .text {
    padding: 40px 3%;
  }
  .ind_sec3_r .text h3 {
    font-size: 28px;
    letter-spacing: 0px;
    margin-bottom: 18px;
  }
  .ind_sec3_r .text .swiper-slide span {
    height: 22px;
    font-size: 15px;
    line-height: 22px;
  }
  .ind_sec3_r .text .swiper-slide h4 {
    font-size: 18px;
    font-weight: bold;
  }
  .ind_sec3_r .text .swiper-slide h6 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
    height: 48px;
    margin-top: 16px;
  }
  .ind_sec3 {
    padding: 0;
  }
  .ind_sec4_inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer_b h3 {
    line-height: 24px;
    text-align: center;
    padding: 5px 0;
    background: #222;
  }
  .footer_b h3 i {
    display: block;
    float: none;
    text-align: center;
  }
  .footer_b h3 i span {
    float:none;
  }
  .banner_inner .text {
    padding: 0 3%;
  }
  .banner_inner .text h3 {
    font-size: 28px;
    letter-spacing: 0px;
  }
  .banner_inner .text h5 {
    font-size: 16px;
  }
  .banner_inner .text h6 {
    font-size: 12px;
  }
  .banner_inner .text h6::before {
    content: '';
    height: 20px;
    margin: 10px auto;
  }
  .second_nav {
    line-height: 60px;
    background: #fff;
  }
  .second_nav p {
    display: inline-block;
    font-size: 16px;
    color: #333;
  }
  .second_nav p::after {
    content: '>';
    display: inline-block;
    margin: 0 10px;
  }
  .second_nav p:last-child::after {
    display: none;
  }
  .second_nav p a {
    color: inherit;
  }
  .pro_sec {
    margin-top: 0px;
    margin-bottom: 40px;
  }
  .pro_slide {
    float: none;
    width: 100%;
    padding-bottom: 0px;
    box-shadow: none;
    font-size: 0;
  }
  .pro_slide select {
    width: 49%;
    margin-right: 2%;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    padding: 0 6px;
    outline: none;
  }
  .pro_slide select:last-child {
    margin-right: 0;
  }
  .download_main,
  .solve_list_main,
  .pro_main {
    float: none;
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  .pro_main ul li {
    width: 100%;
    margin-right: 0;
    margin-top: 2%;
  }
  .pro_main ul li:nth-child(-n + 3) {
    margin-top: 4%;
  }
  .pro_main ul li:nth-child(-n + 1) {
    margin-top: 0;
  }
  .pro_main ul li a .text {
    padding: 20px 10px;
  }
  .pro_main ul li a .text h4 {
    font-size: 18px;
    line-height: 26px;
  }
  .pro_main ul li a .text h6 {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    margin-top: 16px;
  }
  .pro_main ul li a .text .btn {
    width: 80px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    margin: 20px auto 0;
  }
  .pro_detail_outer {
    margin: 0px 0 40px;
  }
  .pro_detail .tit {
    margin-top: 0;
  }
  .pro_detail .tit h3 {
    font-size: 24px;
  }
  .pro_con_nav {
    margin-top: 20px;
    height: 40px;
  }
  .pro_con_inner {
    padding: 20px 0;
  }
  .pro_con_nav li {
    width: calc(100% / 3);
  }
  .pro_con_nav li a {
    width: 100%;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .download_table table tr td {
    padding: 0 6px;
    font-size: 12px;
  }
  .news_bot .prev,
  .news_bot .next {
    float: none;
    display: block;
    line-height: 28px;
  }
  .news_bot .prev::before {
    content: '上一条：';
    display: inline;
  }
  .news_bot .next::before {
    content: '下一条：';
    display: inline;
  }
  .news_bot .prev .img,
  .news_bot .next .img {
    display: none;
  }
  .news_bot .back {
    position: static;
    display: block;
    width: 100px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #666;
    border: 1px solid #666;
    margin: 20px auto 0;
  }
  .solve_sec {
    margin: 0px 0 40px;
  }
  .solve_img2_l {
    float: none;
    width: 100%;
    margin-top: 10px;
  }
  .solve_img2_r {
    width: 100%;
    margin-left: 0px;
    float: none;
    margin-top: 10px;
  }
  .solve_sec a .tit {
    font-size: 24px;
  }
  .solve_list_main li a {
    height: 60px;
    line-height: 60px;
    padding: 0 35px 0 10px;
    font-size: 14px;
  }
  .solve_list_main li a .img {
    right: 10px;
  }
  .solve_detail h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .service_sec {
    margin: 0px auto 40px;
  }
  .service_sec .tit {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .service1_list li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-top: 10px;
    padding: 20px 10px;
  }
  .service1_list li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .service1_list li:nth-child(2n) {
    margin-right: 0;
  }
  .service1_list li:nth-child(2n + 1) {
    clear: both;
  }
  .service1_list li a h4 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
  .service1_list li a h6 {
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
  }
  .service2_list li {
    margin-right: 10px;
    margin-top: 10px;
    width: calc((100% - 10px) / 2);
  }
  .service2_list li a {
    padding: 25px 3%;
  }
  .service2_list li a h4 span {
    font-size: 14px;
    line-height: 24px;
  }
  .service_sec3 {
    padding: 40px 3%;
  }
  .service_sec3 a {
    width: 100px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    margin: 40px auto 0;
  }
  .service1_list li:nth-child(-n + 2),
  .service2_list li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .service1_list li:nth-child(2n),
  .service2_list li:nth-child(2n){
    margin-right: 0;
  }
  .service1_list li:nth-child(2n + 1),
  .service2_list li:nth-child(2n + 1) {
    clear: both;
  }
  .service4_list li {
    margin-right: 0px;
    width: 100%;
    margin-top: 10px;
  }
  .service4_list li:nth-child(1) {
    margin-top: 0;
  }
  .service4_list li a {
    padding: 20px;
  }
  .service4_list li i {
    margin-top: 16px;
  }
  .service4_list li p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 24px;
    -webkit-line-clamp: 3;
    height: 72px;
  }
  .service_sec4 .common_btn {
    width: 100px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    margin: 40px auto 0;
  }
  .download_main {
    padding: 20px;
  }
  .solve_detail a.download {
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    width: 100%;
    margin: 20px 0;
  }
  .partner_sec {
    margin: 0px auto 40px;
  }
  .partner_list li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-top: 10px;
  }
  .partner_list li:nth-child(6n),
  .partner_list li:nth-child(5n),
  .partner_list li:nth-child(4n) {
    margin-right: 10px;
  }
  .partner_list li:nth-child(2n) {
    margin-right: 0px;
  }
  .partner_list li:nth-child(4n + 1) {
    clear: none;
  }
  .partner_list li:nth-child(2n + 1) {
    clear: both;
  }
  .partner_list li:nth-child(-n + 6),
  .partner_list li:nth-child(-n + 5),
  .partner_list li:nth-child(-n + 4) {
    margin-top: 10px;
  }
  .partner_list li:nth-child(-n + 2) {
    margin-top: 0px;
  }
  .news_sec {
    margin: 40px auto;
  }
  .news_sec .tit {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .news1_l {
    float: none;
    width: 100%;
    margin-right: 0px;
  }
  .news1_r {
    float: none;
    width: 100%;
    padding-right: 20px;
    margin-top: 20px;
  }
  .news1_r_list li {
    padding-left: 12px;
  }
  .news1_r_list li::after {
    left: 12px;
    width: 12px;
  }
  .news1_r_list li a {
    padding: 10px 3%;
    background: #fff;
    position: relative;
    z-index: 3;
  }
  .news1_r_list li a h4 {
    font-size: 18px;
    line-height: 24px;
    height: 24px;
  }
  .news1_r_list li a h5 {
    font-size: 14px;
    line-height: 20px;
    height: 20px;
    margin-top: 8px;
  }
  .news1_r_list li a h6 {
    font-size: 12px;
    padding-left: 20px;
    margin-top: 12px;
  }
  .news_sec2_list li {
    margin-right: 0px;
    margin-top: 20px;
    width: 100%;
    float: none;
  }
  .news_sec2_list li:nth-child(-n + 3) {
    margin-top: 20px;
  }
  .news_sec2_list li:nth-child(-n + 1) {
    margin-top: 0;
  }
  .news_list {
    margin: 40px auto;
  }
  .news_list1_inner {
    flex-direction: column;
  }
  .news_list1_inner .img {
    width: 100%;
  }
  .news_list1_inner .text {
    width: 100%;
    padding: 20px 0;
  }
  .inv_sec {
    margin: 40px auto;
  }
  .inv_sec ul li a {
    height: 60px;
    line-height: 60px;
    padding: 0 0px 0 90px;
    font-size: 14px;
    overflow: hidden;
  }
  .inv_sec ul li a span {
    width: 80px;
    font-size: 12px;
  }
  .inv_sec ul li a i {
    display: none;
  }
  .about_t img {
    float: none;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .about_b ul {
    flex-direction: column;
    text-align: center;
  }
  .about_b ul li.line {
    display: none;
  }
  .about_b ul li {
    margin-top: 20px;
  }
  .about_b ul li:first-child {
    margin-top: 0;
  }
  .about_b ul li h6 {
    margin-top: 0;
  }
  .about_sec {
    margin: 40px auto;
  }
  .about_b {
    margin-top: 40px;
  }
  .subo_sec {
    margin: 40px 0;
  }
  .subo_sec ul li {
    margin-bottom: 20px;
  }
  .subo_sec ul li a {
    flex-direction: column;
  }
  .subo_sec ul li a .img {
    width: 100%;
  }
  .subo_sec ul li a .text {
    width: 100%;
    padding: 20px;
  }
  .subo_sec ul li:nth-child(2n) a .text {
    order: 1;
  }
  .subo_sec ul li a .text .inner {
    padding-right: 10px;
  }
  .culture_sec {
    margin: 40px 0;
  }
  .culture_sec li {
    width: 100%;
    margin-right: 0px;
    margin-top: 10px;
    float: none;
  }
  .culture_sec li:nth-child(-n + 2) {
    margin-top: 10px;
  }
  .culture_sec li:nth-child(-n + 1) {
    margin-top: 0;
  }
  .culture_sec li a {
    padding: 40px 0;
  }
  .culture_sec li .img {
    width: 80px;
    height: 80px;
  }
  .culture_sec li h3 {
    margin-top: 24px;
    font-size: 24px;
  }
  .honer_sec {
    margin: 40px auto;
  }
  .honer_sec .tit {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .my-map {
    height: 240px;
  }
  .contact_sec1 .text {
    position: static;
    width: 100%;
    padding: 20px 3%;
  }
  .contact_sec1 .text h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .contact_sec1 .text ul {
    margin-top: 24px;
  }
  .contact_sec1 .text ul li {
    padding: 10px 0 10px 20px;
    font-size: 14px;
    line-height: 20px;
    background-position: 0 13px!important;
  }
  .contact_sec2 {
    flex-direction: column;
  }
  .contact2_l {
    display: none;
  }
  .contact2_r {
    width: 100%;
  }
  .m_nav {
    text-align: center;
    font-size: 0;
    padding: 0 3%;
  }
  .m_nav a {
    font-size: 15px;
    color: #333;
    display: inline-block;
    width: 25%;
    line-height: 40px;
    height: 40px;
    background: #eee;
  }
  .m_nav a.active {
    background: #f7b41c;
    color: #fff;
  }
  .join_sec {
    margin: 40px auto;
  }
  .join_sec .tit {
    font-size: 24px;
  }
  .join_sec .des {
    font-size: 14px;
    line-height: 24px;
    margin-top: 24px;
  }
  .join_sec .des br {
    display: none;
  }
  .join_l {
    width: 100%;
    float: none;
    font-size: 0;
  }
  .join_l input {
    width: calc(100% - 80px);
    padding: 0 10px;
    font-size: 14px;
  }
  .join_l a {
    width: 80px;
    margin-left: 0;
    border-left: none;
    font-size: 14px;
  }
  .join_r {
    width: 100%;
    margin-top: 20px;
    float: none;
  }
  .join_b_tit span {
    width: 25%!important;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0;
    text-align: center;
  }
  .join_b_tit.outer span {
    background: #666!important;
  }
  .join_b_con {
    padding: 20px;
  }
  .join_form_inner {
    padding: 40px 0;
  }
  .join_form_list {
    padding: 0 20px;
    margin-top: 40px;
  }
  .join_form_list li {
    margin-bottom: 0px;
  }
  .join_form_list li label {
    width: 100%;
    margin-bottom: 10px;
    line-height: 40px;
  }
  .join_form_list li.comp label {
    width: 100%;
  }
  .join_form_list li label select, .join_form_list li label input {
    height: 40px;
    width: calc(100% - 90px);
    padding: 0 10px;
    float: right;
  }
  .join_form_list li.bot a {
    margin-top: 10px;
  }
  .welfare_sec {
    margin: 40px 0;
  }
  .welfare_sec .tit {
    font-size: 24px;
  }
  .welfare_tit {
    margin-top: 20px;
  }
  .welfare_sec li h5 {
    font-size: 15px;
  }
  .welfare_sec li p {
    font-size: 14px;
  }
  .welfare1_list {
    padding: 0;
  }
  .welfare1_list li {
    width: 100%;
    padding: 10px 0;
    border-right: none;
  }
  .welfare1_list li p {
    margin-top: 10px;
  }
  .welfare2_list {
    padding: 0;
  }
  .welfare2_list li {
    padding: 0 10px;
  }
  .welfare2_list li h5 {
    width: 132px;
    height: 80px;
  }
  .welfare2_list li p {
    width: calc(100% - 132px);
    line-height: 20px;
    height: 80px;
  }
  .plan_sec {
    margin: 40px 0;
  }
  .plan_sec .tit {
    font-size: 24px;
  }
  .plan_sec1_con {
    margin-top: 20px;
  }
  .plan_sec1_con li {
    width: 100%;
    padding: 40px 3%;
    height: auto;
  }
  .plan_sec1_con li img {
    width: 25%;
  }
  .plan_sec1_con li h4 {
    font-size: 24px;
    margin-top: 20px;
  }
  .activity_sec {
    margin: 40px 0;
  }
  .activity_sec ul li {
    float: none;
    width: 100%;
    margin-right: 0px;
    margin-top: 10px;
  }
  .activity_sec ul li:nth-child(-n + 3) {
    margin-top: 10px;
  }
  .activity_sec ul li:nth-child(-n + 1) {
    margin-top: 0;
  }
  .activity_sec ul li:nth-child(3n + 1) {
    clear: none;
  }
  .comm_submit_inner {
    width: 94%;
    padding: 20px 20px;
  }
  .comm_submit_l h4 {
    font-size: 20px;
    margin: 0 0 16px 0;
  }
  .comm_submit_l h6 {
    font-size: 15px;
    line-height: 24px;
  }
  .comm_submit_l {
    width: 100%;
    float: none;
  }
  .comm_submit_r {
    width: 100%;
    float: none;
    margin-top: 16px;
  }
  .comm_submit_t label {
    width: 100%;
    display: block;
    margin-top: 8px;
  }
  .comm_submit_b label:last-of-type {
    width: 100%;
  }
  .comm_submit_b {
    margin-top: 0;
  }
  .comm_submit_t label input,
  .comm_submit_b label textarea {
    height: 32px;
  }
  .comm_submit_b a.sub {
    margin: 16px auto 0;
  }
  .download_table table tr.pt {
    height: 8px;
  }
  .download_table table tr td {
    height: 42px;
  }
  .download_table table thead tr td {
    height: 50px;
  }
  .mapP .swiper-pagination-bullet {
    margin: 0 3px;
  }
  .pro_con_outer {
    padding: 0 3%;
  }
  .pro_swiper_outer .prev {
    left: 3%;
  }
  .pro_swiper_outer .next {
    right: 3%;
  }
  .footer_l .logo {
    width: 160px;
  }
  .activity_sec .tit {
    font-size: 24px;
  }
  .activity_sec ul {
    margin-top: 20px;
  }
  .solve_img5 a {
    width: 100%;
    margin-right: 0px;
    float: none;
  }
  .footer_t {
    display: none
  }
  .subo_sec ul li {
    flex-direction:column;

  }
  .subo_sec ul li .img  {
    width: 100%;
    order: -1;
  }
  .subo_sec ul li .text {
    height: auto!important;
    width: 100%;
    padding: 20px;
  }
  .subo_sec ul li .text h3 {
    font-size: 20px;
    font-weight: bold;
}
  .subo_sec ul li .text .inner {
    margin: 10px 0;
    height: 84px!important;
  }
  .subo_sec ul li .text h5 em {
    float: left;
  }
}