@charset "utf-8";

/* base */
@font-face {
  font-family: Gotham-XLight;
  src: url(/fonts/Gotham-XLight.ttf)
}
@font-face {
  font-family: Bebas;
  src: url(/fonts/Bebas.ttf)
}
@font-face {
  font-family: MyriadPro-Regular;
  src: url(/fonts/MyriadPro-Regular.ttf)
}
@font-face {
  font-family: MyriadPro-Bold;
  src: url(/fonts/MyriadPro-Bold.ttf)
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* font-size: calc(100vw / 7.5); */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out 0.2s;
  transition: all 0.2s ease-in-out 0.2s;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -moz-outline-style: none;
}

a:active,
a:hover {
  outline: 0;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

b,
strong {
  font-weight: bold;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

pre {
  overflow: auto;
}


dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  outline: none;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
  outline: none;
  -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

.img_h {
  position: relative;
  cursor: pointer;
}
.img_h img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.img_h img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.img_h.img_ha:hover img {
  opacity: 1;
}
.img_h.img_ha:hover img:nth-child(2) {
  opacity: 0;
}
a:hover .img_h.img_ha img,
.img_h:hover img {
  opacity: 0;
}
a:hover .img_h.img_ha img:nth-child(2),
.img_h:hover img:nth-child(2) {
  opacity: 1;
}


.visible-xs {
  display: none !important;
}

.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

.container {
  margin: auto;
  min-height: 1px;
  width: 100%;
  max-width: 1400px;
}

.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
  line-height: 24px;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 72px;
  line-height: 24px;
}

.o_fit video,
.o_fit img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

[dis-select] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[dis-drag] {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-dr { /*水平*/
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.f-dc { /*垂直*/
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-1 > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block; /* IE10失效的解决办法 */
}

.f-as {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.f-ac {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-ae {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.f-js {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f-jc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-je {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.f-jsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@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: 1024px) {
  .container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hidden-ms {
    display: none !important;
  }

  .visible-ms {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}

/* base */

/* scrollbar */
@media (min-width: 1024px) {
  ::-webkit-scrollbar-track-piece {
    width: 10px;
    background-color: #ccc;
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 6px
  }

  ::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #666;
    -webkit-transition: all 0.4s ease-in-out;
    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);
  }
}

@-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);
  }
}

/* jump_down */

/* animation */

/* page */
/*
  <div class="pagination">
    <div class="page_pc hidden-xs clearfix">
      <a href="javascript:;">上一页</a>
      <a href="javascript:;" class="page_num act">1</a>
      <a href="javascript:;" class="page_num">2</a>
      <a href="javascript:;" class="page_num">3</a>
      <a href="javascript:;">下一页</a>
      <em>共10页</em>
    </div>
    <a href="javascript:;" class="page_sj visible-xs">加载更多</a>
  </div>
*/
.page_pc {
  text-align: center;
}

.page_pc a {
  color: #888;
  font-size: 14px;
  margin: 0 3px;
  text-align: center;
  padding: 0 14px;
  height: 36px;
  line-height: 34px;
  border-radius: 3px;
  border: solid 1px #e5e5e5;
  text-decoration: none;
  background: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.page_pc a:hover,
.page_pc a.act {
  background: #09408a;
  border-color: #09408a;
  color: #fff;
}

.page_sj {
  width: 100px;
  height: 40px;
  background: #09408a;
  color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 40px;
  display: none;
  text-align: center;
}

/* page */

/* common */
.md {
  position: relative;
  top: -100px;
}
.commonP {
  font-size: 0;
  margin-top: 54px;
  text-align: center;
}
.commonP .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #efefef;
  opacity: 1;
  outline: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.commonP .swiper-pagination-bullet-active {
  background: #174b90;
}
.common_tit {
  text-align: center;
}
.common_tit h3 {
  font-size: 48px;
  color: #333;
}
.common_tit h5 {
  font-family: Gotham-XLight;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 3.6px;
  color: #555;
  position: relative;
}
.common_tit h5::before {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #09408a;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.common_tit h5::after {
  content: '';
  width: 188px;
  height: 1px;
  background-color: #e0e0e0;
  display: block;
  margin: 20px auto 0;
}
.common_tit p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-top: 32px;
}
.common_tit.w h3,
.common_tit.w h5,
.common_tit.w p {
  color: #fff;
}
.common_tit.w h5::before,
.common_tit.w h5::after {
  background: #fff;
}
.common_tit.l {
  text-align: left;
}
.common_tit.l h5::before {
  right: auto;
}
.common_tit.l h5::after {
  margin: 20px 0 0;
}
.common_tit.m h3 {
  font-size: 28px;
}
.common_tit.m h5 {
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 2.8px;
}
.common_btn {
  width: 200px;
  height: 50px;
  border-radius: 3px;
  border: solid 1px #fff;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.common_btn:hover {
  background: #fff;
  color: #09408a;
}
.common_btn .img_h {
  margin-left: 40px;
}
.common_btn.b {
  border: solid 1px #09408a;
  color: #09408a;
}
.common_btn.b:hover {
  background: #09408a;
  color: #fff;
}
.common_nav {
  margin-top: 50px;
}
.common_nav a {
  height: 40px;
  margin: 0 7px;
  line-height: 38px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  border: solid 1px #eee;
  font-size: 14px;
  color: #666;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 0 10px;
}
.common_nav a:hover,
.common_nav a.active {
  background: #09408a;
  border-color: #09408a;
  color: #fff;
}
/* common */

/* header */
.headerSJ {
  display: none;
}
.header {
  padding: 0 80px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header.index {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header_i {
  max-width: 1600px;
  margin: 0 auto;
  height: 100px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .logo a {
  display: block;
  position: relative;
}
.header .logo a img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .logo a img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.header.index .logo a img {
  opacity: 0;
}
.header.index .logo a img:nth-child(2) {
  opacity: 1;
}
.header_nav li {
  margin-left: 45px;
  position: relative;
  height: 100px;
  line-height: 100px;
}
.header_nav li a {
  display: block;
  font-size: 16px;
  color: #666;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header_nav li::after {
  content: '';
  width: 0px;
  height: 2px;
  background: #333;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header.index .header_nav li::after {
  background: #fff;
}
.header_nav li:hover::after,
.header_nav li.active::after {
  width: 100%;
}
.header_nav li:nth-child(1):hover::after,
.header_nav li:nth-child(1).active::after {
  width: 18px;
}
.header.index .header_nav li a {
  color: #fff;
}
.header_nav li.search {
  width: 140px;
  margin-left: 0;
}
.header_nav li.search::after {
  display: none;
}
.header_nav li.search .search_i {
  width: 30px;
  height: 30px;
  background-color: rgba(238, 238, 238, 0.8);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header.index .header_nav li.search .search_i {
  background-color: rgba(255, 255, 255, 0.8);
}
.header_nav li.search input {
  width: 100%;
  height: 30px;
  background: transparent;
  border: 0;
  font-size: 14px;
  color: #333;
  padding: 0 15px;
}
.header_nav li.search.active .search_i {
  width: 120px;
}
.header_nav li.search .img {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 9px;
  border-radius: 15px;
  overflow: hidden;
}
.header_nav li.search .img img {
  display: block;
}
.header_nav .header_nav2 {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  height: 60px;
  width: 100%;
  background: #eee;
  text-align: center;
  font-size: 0;
}
.header.index .header_nav .header_nav2 {
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header_nav .header_nav2 a {
  display: inline-block;
  vertical-align: top;
  line-height: 60px;
  height: 60px;
  padding: 0 24px;
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header_nav .header_nav2 a:hover {
  color: #09408a;
}

/* header */

/* banner */
.banner {
  position: relative;
}
.banner .swiper-slide {
  overflow: hidden;
  position: relative;
}
.banner .swiper-slide .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.banner .swiper-slide .mask_i {
  position: relative;
}
.banner .swiper-slide .mask_i .text {
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}
.banner .swiper-slide-active .mask_i .text {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.banner .swiper-slide .mask h4 {
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  color: #fff;
}
.banner .swiper-slide .mask h4::after {
  content: '';
  background: #fff;
  width: 110px;
  height: 2px;
  margin-left: 28px;
}
.banner .swiper-slide .mask h6 {
  font-family: Arial;
  font-size: 18px;
  letter-spacing: 3.6px;
  color: #e3e2e2;
  margin-top: 20px;
}
.banner .swiper-slide .mask .block {
  width: 630px;
  height: 310px;
  background-color: #09408a;
  opacity: 0.8;
  position: absolute;
  left: 145px;
  bottom: -28px;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}
.banner .swiper-slide-active .mask .block {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.banner .swiper-slide .mask .common_btn {
  margin-top: 52px;
}
.banner .bannerP {
  font-size: 0;
  bottom: 34px;
  position: absolute;
  z-index: 9;
  left: 0;
  width: 100%;
  text-align: center;
}
.banner .bannerP .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 1px solid #fff;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 4px;
  outline: none;
}
.banner .bannerP .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background-color: transparent;
}
#bNav {
  position: relative;
  top: -100px;
}
.inner_banner {
  padding: 60px 60px 0;
  position: relative;
}

.inner_banner  img{display: block;width: 100%;}

.banner .swiper-container  img{display: block;width: 100%;}

.banner_nav {
  margin-top: -33px;
}
.banner_nav li {
  max-width: 350px;
}
.banner_nav a {
  height: 66px;
  text-align: center;
  background-color: #fff;
  border: solid 1px #eee;
  border-right: 0;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.banner_nav li:last-child a {
  border-right: solid 1px #eee;
}
.banner_nav li a:hover,
.banner_nav li.active a {
  background-color: #09408a;
  border-color: #09408a;
  color: #fff;
}

/* banner */

/* index */
.wrapper {
  overflow: hidden;
  padding-top: 100px;
}
.wrapper.index {
  padding-top: 0;
}
.ind1 {
  margin-top: 160px;
}
.ind1_t {
}
.ind1_l {
  width: 50%;
  padding-right: 125px;
}
.ind1_l .common_btn {
  margin-top: 48px;
}
.ind1_r {
  width: 50%;
  padding-bottom: 16px;
  margin-top: -80px;
}
.ind1_b {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 16px rgba(200, 200, 200, 0.25);
          box-shadow: 0px 8px 16px rgba(200, 200, 200, 0.25);
  padding: 75px 0;
  margin-top: -25px;
}
.ind1_b ul {
}
.ind1_b ul li {
  border-right: 1px solid #eee;
  width: 25%;
  float: left;
}
.ind1_b ul li:last-child {
  border-right: 0;
}
.ind1_b ul li img {
}
.ind1_b ul li h5 {
  font-size: 16px;
  color: #666;
  margin-top: -53px;
}
.ind1_b ul li h5 span {
  font-family: Bebas;
  font-size: 64px;
  color: #09408a;
  margin-left: 24px;
  margin-right: 10px;
}
.ind1_b ul li h5 span i {
  font-style: normal;
}
.ind2 {
  margin-top: 200px;
}
.ind2S {
  margin-top: 64px;
}
.ind2S .swiper-slide {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.ind2S .swiper-slide .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind2S .swiper-slide .mask2 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 83, 174, 0.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind2S .swiper-slide:hover .mask,
.ind2S .swiper-slide:hover .mask2 {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ind2S .swiper-slide .mask .text {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.ind2S .swiper-slide .mask .text h4 {
  font-size: 20px;
  color: #fff;
}
.ind2S .swiper-slide .mask .text h6 {
  font-size: 14px;
  line-height: 20px;
  color: #aaa;
}
.ind2S .swiper-slide .mask .text::before {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #0065b2;
  position: absolute;
  left: 30px;
  top: -1px;
}
.ind2S .swiper-slide .mask2 .text {
  text-align: center;
}
.ind2S .swiper-slide .mask2 .text h4 {
  font-size: 20px;
  color: #fff;
}
.ind2S .swiper-slide .mask2 .text h6 {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.ind2S .swiper-slide .mask2 .text h6::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto 0;
  display: block;
}
.ind2S .swiper-slide .mask2 .img {
  margin-top: 100px;
  width: 30px;
}
.ind3 {
  margin-top: 120px;
  padding: 100px 0;
}
.ind3S {
  margin-top: 60px;
}
.ind3S .swiper-slide {
  border-radius: 3%;
  overflow: hidden;
  background: rgba(76, 165, 228, 0.7);
  height: 220px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind3S .swiper-slide:nth-child(2) {
  background: rgba(77, 147, 201, 0.7);
}
.ind3S .swiper-slide:nth-child(3) {
  background: rgba(71, 130, 175, 0.7);
}
.ind3S .swiper-slide:nth-child(4) {
  background: rgba(59, 108, 145, 0.7);
}
.ind3S .swiper-slide:nth-child(5) {
  background: rgba(59, 92, 115, 0.7);
}
.ind3S .swiper-slide:hover {
  background: #4ca5e4;
}
.ind3S .swiper-slide:nth-child(2):hover {
  background: #4d93c9;
}
.ind3S .swiper-slide:nth-child(3):hover {
  background: #4782af;
}
.ind3S .swiper-slide:nth-child(4):hover {
  background: #3b6c91;
}
.ind3S .swiper-slide:nth-child(5):hover {
  background: #3b5c73;
}
.ind3S .swiper-slide a {
  display: block;
  padding: 36px 24px;
  height: 100%;
}
.ind3S .swiper-slide .text {
  font-size: 18px;
  margin-top: 16px;
  font-weight: bold;
  line-height: 28px;
  color: #fefefe;
}
.ind3S .swiper-slide .text::after {
  content: '';
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 56px;
  left: 24px;
}

.ind4 {
  background: #0e478c;
}

.ind4_l {
  width: 50%;
}
.ind4_l .text {
  max-width: 540px;
  padding-right: 40px;
}
.ind4_l .common_btn {
  margin-top: 90px;
  background: transparent;
}
.ind4_l .common_btn:hover {
  background: #fff;
}
.ind4_r {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}
.ind4_r ul {
  width: 100%;
}
.ind4_r li {
  width: 20%;
  float: left;
  min-height: 1px;
}
.ind4_r li:nth-child(5n + 1) {
  clear: both;
}
.ind5 {
  padding: 100px 0;
  background: #f5f5f5;
}
.ind5i {
  margin-top: 64px;
  border: solid 1px #e5e5e5;
}
.ind5i li {
  width: 25%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  border-left: solid 1px #e5e5e5;
}
.ind5i li:last-child {
  border-left: 0;
}
.ind5i li.active {
  width: 50%;
}
.ind5i li .content1 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ind5i li .content1 .img_o {
  width: 100%;
  overflow: hidden;
}
.ind5i li .content1 .img {
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind5i li:hover .content1 .img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.ind5i li .content1 .text .l {
  width: 100px;
  height: 100px;
  background-color: #0e478c;
  font-size: 14px;
  color: #fff;
  font-family: Arial;
}
.ind5i li .content1 .text .l span {
  font-weight: bold;
  font-size: 36px;
}
.ind5i li .content1 .text .r {
  padding: 0 36px;
  height: 100px;
  background-color: #fff;
  width: calc(100% - 100px);
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  color: #333;

}
.ind5i li .content1 .text .r p {
  font-size: 20px;
  color: #333;
  text-align: center;
  font-weight: bold;
}
.ind5i li .content2 {
  opacity: 1;
  visibility: visible;
  background: #ededed;
  padding: 90px 15% 70px 10%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind5i li:nth-child(2) .content2 {
  background: #fff;
}
.ind5i li .content2 h6 {
  font-family: Arial;
  font-size: 14px;
  line-height: 32px;
  color: #09408a;
}
.ind5i li .content2 h6 span {
  font-family: Arial;
  font-size: 36px;
  font-weight: bold;
  display: block;
}
.ind5i li .content2 h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  height: 64px;
  color: #333;
  margin-top: 36px;
}
.ind5i li .content2 p {
  margin-top: 28px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  height: 72px;
}
.ind5i li .content2 .img {
  margin: 48px 0 0;
  width: 30px;
}
.ind5i li.active .content1 {
  opacity: 1;
  visibility: visible;
}
.ind5i li.active .content2 {
  opacity: 0;
  visibility: hidden;
}
/* index */

/* service */
.serv_list {
  padding: 60px;
}
.serv_list ul {
  margin-top: 60px;
}
.serv_list li {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
}
.serv_list li:last-child {
  margin-bottom: 0;
}
.serv_list li img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.serv_list li:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.serv_list li .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.serv_list li .mask h5 {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  color: #fff;
  margin-bottom: 80px;
}
.serv_list li .mask .common_btn {
  background: transparent;
}
.serv_list li .mask:hover .common_btn {
  background: #fff;
  color: #09408a;
}


.serv_detail {
  padding: 60px 0;
}
.serv_detail ul {
  margin-top: 28px;
  background: #f5f5f5;
  padding: 0 80px;
}
.serv_detail li {
  border-bottom: solid 1px #bfbfbf;
  padding: 80px 0;
}
.serv_detail li:last-child {
  border-bottom: 0;
}
.serv_detail li .text {
  width: 480px;
}
.serv_tz_i h5,
.serv_detail li .text h5 {
  font-size: 18px;
  font-weight: bold;
  color: #09408a;
  margin: 16px 0;
}
.serv_detail li .text h5:first-child {
  margin-top: 0;
}
.serv_tz_i .text_i,
.serv_detail li .text_i {
  font-size: 14px;
  line-height: 28px;
  color: #333;
}
.serv_detail li .text .btn {
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  margin-top: 36px;
  background: #09408a;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}
.serv_detail li .img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
}
.serv_dot li .img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.serv_dot li:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.serv_detail li:nth-child(2n + 1) .text {
  padding-right: 60px;
}
.serv_detail li:nth-child(2n) .text {
  padding-left: 60px;
}
.serv_detail li:nth-child(2n) .img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.serv_dot ul {
  padding: 0;
  background: transparent;
}
.serv_dot li {
  width: calc(25% - 18px);
  margin-right: 24px;
  margin-top: 24px;
  float: left;
  padding: 0;
  border: 0;
}
.serv_dot li:nth-child(-n + 4) {
  margin-top: 0;
}
.serv_dot li:nth-child(4n) {
  margin-right: 0;
}
.serv_dot li:nth-child(4n + 1) {
  clear: both;
}
.serv_dot li p {
  background: #09408a;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.serv_dot .common_btn {
  margin: 68px auto 0;
  border-color: #999;
  color: #999;
}
.serv_dot .common_btn:hover {
  border-color: #09408a;
  background: #09408a;
  color: #fff;
}

.serv_tz_i {
  margin-top: 50px;
}
.serv_tz_i .con {
  background-color: #f5f5f5;
  padding: 80px 80px 60px;
}
.serv_tz_i img {
  display: block;
  margin: 36px auto 0;
}

.serv_bottom {
  margin-top: 50px;
}
.serv_bottom .back {
  margin: 0 75px;
}
.serv_bottom .btn {
  width: calc(50% - 91.5px);
  height: 80px;
  line-height: 78px;
  background-color: #fff;
  border: solid 1px #eee;
  font-size: 18px;
  color: #444;
  position: relative;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 80px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.serv_bottom .btn:hover {
  color: #fff;
  border-color: #09408a;
  background: #09408a;
}
.serv_bottom .btn span {
  font-size: 14px;
  color: #999;
  position: absolute;
  left: 32px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.serv_bottom .btn:hover span {
  color: #fff;
}
/* service */

/* case */
.case_list {
  padding: 60px 0;
}
.case_list ul {
  margin-top: 60px;
}
.case_list li {
  width: calc(33.3% - 11px);
  margin-right: 16px;
  margin-top: 60px;
  float: left;
}
.case_list li:nth-child(3n) {
  margin-right: 0;
}
.case_list li:nth-child(-n + 3) {
  margin-top: 0;
}
.case_list li:nth-child(3n + 1) {
  clear: both;
}
.case_list li .img {
  overflow: hidden;
}
.case_list li .img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(1.0001);
  transform: scale(1.0001);
}
.case_list li:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.case_list li .text {
  font-size: 18px;
  line-height: 80px;
  color: #333;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.case_list li .text::after {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #09408a;
  position: absolute;
  bottom: 0;
  left: 0;
}
.case_list .pagination {
  margin-top: 70px;
}
/* case */

/* news */
.news_list {
  padding: 60px 0;
}
.news_list ul {
  margin-top: 60px;
}
.news_list ul li {
  float: left;
  width: calc(33.3% - 22px);
  margin-right: 33px;
  margin-top: 33px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news_list li:nth-child(3n) {
  margin-right: 0;
}
.news_list li:nth-child(-n + 3) {
  margin-top: 0;
}
.news_list li:nth-child(3n + 1) {
  clear: both;
}
.news_list ul li .img {
  overflow: hidden;
}
.news_list ul li .img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(1.0001);
  transform: scale(1.0001);
}
.news_list ul li:hover {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.news_list ul li:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news_list ul li .text {
  padding: 32px 26px;
  background: #f5f5f5;
}
.news_list ul li .text h4 {
  font-size: 18px;
  line-height: 24px;
  color: #333;
}
.news_list ul li .text h6 {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}
.news_list .pagination {
  margin-top: 60px;
}
.news_detail {
  padding: 60px 0;
}
.news_detail_i {
  max-width: 1200px;
}
.news_detail_i .t {
  text-align: center;
}
.news_detail_i .t h1 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.news_detail_i .t h6 {
  font-size: 14px;
  margin-top: 24px;
  color: #999;
}
.news_detail_i .t h6 span {
  margin-right: 60px;
}
.news_detail_i .t h6 span:last-child {
  margin-right: 0px;
}
.news_detail_i .m {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  padding: 36px 0;
  border-top: 1px dotted #dbdbdb;
  border-bottom: 1px dotted #dbdbdb;
  margin: 32px 0;
}
.news_detail_i .m p {
  margin: 10px 0;
}
.news_detail_i .m img {
  margin: 10px auto;
}
.news_detail_i .b {
  position: relative;
  padding-right: 120px;
}
.news_detail_i .b p {
  font-size: 14px;
  line-height: 36px;
  color: #999;
}
.news_detail_i .b .back {
  width: 116px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  line-height: 38px;
  text-align: center;
  border-radius: 3px;
  border: solid 1px #eee;
  font-size: 14px;
  color: #999;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news_detail_i .b .back .img_h {
  margin-left: 10px;
}
.news_detail_i .b .back:hover {
  border-color: #09408a;
  background: #09408a;
  color: #fff;
}
/* news */

/* join */
.join_list {
  padding: 60px 0;
}
.join_list .common_tit p {
  margin-top: 60px;
  font-size: 16px;
}
.join_list ul {
  margin-top: 50px;
  border-top: 1px solid #e5e5e5;
}
.join_list ul li h4 {
  height: 60px;
  line-height: 60px;
  background: #fff;
  padding: 0 80px 0 50px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.join_list ul li.active h4 {
  background: #09408a;
  border-bottom-color: #09408a;
  color: #fff;
}
.join_list ul li h4 span {
  width: 27px;
  height: 27px;
  border: 1px solid #999;
  position: absolute;
  right: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.join_list ul li h4 span::before,
.join_list ul li h4 span::after {
  content: '';
  width: 14px;
  height: 1px;
  background: #999;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.join_list ul li h4 span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.join_list ul li.active h4 span {
  border-color: #fff;
}
.join_list ul li.active h4 span::before,
.join_list ul li.active h4 span::after {
  background: #fff;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.join_list ul li .con {
  display: none;
  background: #f8f8f8;
  padding: 50px;
}
.join_list ul li .con h5 {
  font-size: 16px;
  font-weight: bold;
  color: #595656;
  margin-top: 32px;
  margin-bottom: 12px;
}
.join_list ul li .con h5:first-child {
  margin-top: 0;
}
.join_list ul li .con p {
  font-size: 14px;
  line-height: 24px;
  color: #595656;
}
/* join */

/* inst */
.inst {
  margin: 60px 0;
}
.inst1 .content {
  border: solid 1px #f5f5f5;
  margin-top: 50px;
}
.inst1 .content .l {
  width: 34.28%;
  background: #f5f5f5 url(../images/inst1l_bg.png) bottom center / contain no-repeat;
  padding: 6% 4% 20%;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.inst1 .content .r {
  width: 65.72%;
  padding: 0 22px 0 48px;
}
.inst1 .content .r ul li {
  float: left;
  width: calc(33.33% - 10px);
  margin-right: 15px;
}
.inst1 .content .r ul li:nth-child(3n) {
  margin-right: 0;
}
.inst1 .content .r ul li:nth-child(3n + 1) {
  clear: both;
}
.inst1 .content .r ul li p {
  line-height: 16px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
  text-align: center;
}
.inst2 {
  padding: 80px 0;
  margin: 80px 0;
}
.inst2S {
  position: relative;
  margin-top: 50px;
  padding: 0 46px;
}
.inst2S::before {
  content: '';
  position: absolute;
  left: 46px;
  right: 46px;
  height: 1px;
  background: #ccc;
  top: 50%;
}
.inst2 .swiper-slide {
  height: 400px;
  width: 220px;
}
.inst2 .swiper-slide:nth-child(2n + 1) {
  padding-top: 200px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.inst2 .swiper-slide:nth-child(2n) {
  padding-bottom: 200px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.inst2 .swiper-slide .inner {
  min-height: 114px;
  border-left: 1px solid #999999;
  padding-left: 12px;
  position: relative;
}
.inst2 .swiper-slide .inner::before {
  content: '';
  width: 9px;
  height: 9px;
  background-color: #09408a;
  position: absolute;
  left: -5px;
  top: -5px;
  border-radius: 50%;
}
.inst2 .swiper-slide .inner::after {
  content: '';
  width: 9px;
  height: 9px;
  background-color: #999999;
  position: absolute;
  left: -5px;
  bottom: -5px;
  border-radius: 50%;
}
.inst2 .swiper-slide .inner h4 {
  font-family: Arial;
  font-size: 30px;
  font-weight: bold;
  line-height: 32px;
  color: #09408a;
}
.inst2 .swiper-slide:nth-child(2n + 1) .inner h4 {
  margin-top: 20px;
}
.inst2 .swiper-slide .inner h6 {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  margin-top: 10px;
}
.inst2 .swiper-slide:nth-child(2n) .inner h6 {
  margin-bottom: 20px;
}
.inst2 .partyBtn {
  position: absolute;
  width: 46px;
  height: 46px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  outline: none !important;
  z-index: 999;
}
.inst2 .partyBtn.inst2Prev {
  left: 0;
}
.inst2 .partyBtn.inst2Prev img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.inst2 .partyBtn.inst2Next {
  right: 0;
}
.inst3 .content {
  margin-top: 50px;
  text-align: center;
}
/* inst */

/* work */
.work {
  margin: 60px 0;
}
.work1 {
}
.work1 .content {
  margin-top: 50px;
}
.work1 .l {
  font-size: 14px;
  line-height: 28px;
  color: #333;
  width: 50%;
  background: #f8f8f8;
  padding: 6%;
}
.work1 .r {
  width: 50%;
}
.work2 {
  display: none;
}
.work2 .content {
}
.work2 .content li {
  width: calc(50% - 22px);
  margin-right: 44px;
  margin-top: 44px;
  float: left;
}
.work2 .content li:nth-child(2n) {
  margin-right: 0;
}
.work2 .content li:nth-child(2n + 1) {
  clear: both;
}
.work2 .content li a {
  padding: 36px 26px;
  background: #f8f8f8;
}
.work2 .content li a .img {
  width: 46%;
  overflow: hidden;
}
.work2 .content li a .img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.work2 .content li a:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.work2 .content li a .text {
  width: 54%;
  padding-left: 30px;
}
.work2 .content li a .text h4::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 20px;
  background-color: #09408a;
}
.work2 .content li a .text h4 {
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.work2 .content li a .text h6 {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-top: 20px;
}
/* work */

/* device */
.device {
  margin: 60px 0;
}
.device1 h6 {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin: 40px 0;
  text-align: center;
}
.device1 .content .l {
  width: calc(50% - 10px);
}
.device1 .content .l ul li {
  width: calc(50% - 11px);
  margin-right: 22px;
  float: left;
}
.device1 .content .l ul li:nth-child(2n) {
  margin-right: 0;
}
.device1 .content .l ul li:nth-child(2n + 1) {
  clear: both;
}
.device1 .content .l ul li p {
  font-size: 16px;
  line-height: 20px;
  height: 44px;
  color: #333;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.device1 .content .r {
  width: calc(50% + 10px);
  padding-left: 3px;
}
.device2 .content {
  margin-top: 50px;
}
.device2 .content li {
  float: left;
  width: calc(33.3% - 14px);
  margin-right: 21px;
  margin-top: 20px;
}
.device2 .content ul li:nth-child(3n) {
  margin-right: 0;
}
.device2 .content ul li:nth-child(-n + 3) {
  margin-top: 0;
}
.device2 .content ul li:nth-child(3n + 1) {
  clear: both;
}
.device2 .content li a {
  display: block;
  position: relative;
}
.device2 .content li a p {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.48);
  font-size: 18px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.device2 .content li a:hover p {
  opacity: 1;
}
.device3 {
}

.device3 .partyS {
  margin-top: 40px;
  padding: 0 100px;
  position: relative;
}
.device3 .partyBtn {
  position: absolute;
  width: 46px;
  height: 46px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  outline: none !important;
  z-index: 999;
}
.device3 .partyBtn.partyPrev {
  left: 0;
}
.device3 .partyBtn.partyPrev img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.device3 .partyBtn.partyNext {
  right: 0;
}
.device3 .partyBtn.resPrev {
  left: 20px;
}
.device3 .partyBtn.resNext {
  right: 20px;
}
.device3 .partyBtn.devPrev {
  left: -60px;
}
.device3 .partyBtn.devNext {
  right: -60px;
}
.device3 .partyS .swiper-slide {
  width: 694px;
}
.device3 .partyS .swiper-slide p {
  font-size: 16px;
  line-height: 56px;
  color: #666;
  text-align: center;
  opacity: 0;
}
.device3 .partyS .swiper-slide-active p {
  opacity: 1;
}
/* device */

/* rdresult */
.rdresult {
  margin: 60px 0;
}
.rdresult1 {
}
.rdresult1 .content {
  margin-top: 50px;
}
.rdresult1 .content p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  text-align: center;
}
.rdresult1 .table {
  margin-top: 50px;
  width: 100%;
}
.rdresult1 table {
  width: 100%;
}
.rdresult1 table thead td {
  background: #09408a;
  font-weight: bold;
  color: #fff;
}
.rdresult1 table tbody tr:nth-child(2n) {
  background: #eff6ff;
}
.rdresult1 table td {
  font-size: 14px;
  height: 60px;
  color: #666;
  border: solid 1px #d2d2d2;
  text-align: center;
  min-width: 60px;
}

.rdresult2 {
  padding: 80px 0;
}
.rdresult2 .content h6 {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin: 50px auto;
  text-align: center;
}
.rdresult2S {
  margin-top: 50px;
  width: 1100px;
}
.rdresult2S .swiper-slide .img {
  position: relative;
}
.rdresult2S .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.rdresult2S .swiper-slide p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.rdresult2S .swiper-slide-active p {
  opacity: 1;
}
.rdresult2S .swiper-slide-active .img::after {
  opacity: 0;
}
.rdresult3 .content {
  margin-top: 50px;
}
.rdresult3P {
  text-align: center;
  margin-top: 42px;
}
.rdresult3P span.swiper-pagination-bullet {
  background: #efefef;
  margin: 0 6px;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.rdresult3P span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #174b90;
}
/* rdresult */

/* contact */
.contact1 {
  margin: 60px 0;
}
.contact1 .map {
  max-width: 852px;
  width: 90%;
  margin: 60px auto 0;
  position: relative;
}
.contact1 .map .dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact1 .map .map_line {
  position: absolute;
  top: 0;
  left: 0;
}
.contact1 .map .dot {
  position: absolute;
}
.contact1 .map .dot img {
  display: block;
  margin: 0 auto;
}
.contact1 .map .dot p {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
  text-align: center;
}
.contact1 .map .dot:nth-child(1) {
  top: 29%;
  left: 22%;
}
.contact1 .map .dot:nth-child(2) {
  top: 33%;
  left: 59%;
}
.contact1 .map .dot:nth-child(3) {
  top: 27%;
  left: 84%;
}
.contact1 .map .dot:nth-child(4) {
  top: 37%;
  left: 71%;
}
.contact1 .map .dot:nth-child(5) {
  top: 42%;
  left: 66%;
}
.contact1 .map .dot:nth-child(6) {
  top: 43%;
  left: 77%;
}
.contact1 .map .dot:nth-child(7) {
  top: 52%;
  left: 81%;
}
.contact1 .map .dot:nth-child(8) {
  top: 60%;
  left: 50%;
}
.contact1 .map .dot:nth-child(9) {
  top: 69%;
  left: 66%;
}
.contact1 .map .dot:nth-child(10) {
  top: 68%;
  left: 74%;
}
.contact1 .map .dot:nth-child(11) {
  top: 79%;
  left: 46%;
}
.contact1 .map .dot:nth-child(12) {
  top: 79%;
  left: 62%;
}
.contact1 .map .dot:nth-child(13) {
  top: 78%;
  left: 70%;
}
.contact1 .map .dot:nth-child(14) {
  top: 62%;
  left: 82%;
}
.contact2 {
  margin: 60px 0;
}
.contact2 .my-map {
  height: 460px;
  margin-top: 15px;
}
.contact2 .my-map .icon {
  background: url(http://lbs.amap.com/console/public/show/marker.png) no-repeat;
}
.contact2 .my-map .icon-cir {
  height: 31px;
  width: 28px;
}
.contact2 .my-map .icon-cir-blue {
  background-position: -11px -55px;
}
.contact2 .amap-container {
  height: 100%;
}
.contact2 .contact2_b {
  margin-top: 60px;
}
.contact2 .contact2_b .l {
  /* height: 205px;
  background-color: #fff;
  border: solid 1px #dbdbdb;
  width: calc(50% - 15px);
  float: left;
  padding: 42px 24px; */
  height: 250px;
  background-color: #fff;
  border: solid 1px #dbdbdb;
  width: 48%;
  margin-right: 1.5%;
  float: left;
  padding: 45px 24px 0;
}
.contact2 .contact2_b .l ul {
  list-style-type: square;
  padding-left: 28px;
}
.contact2 .contact2_b .l li {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #333;
}
.contact2 .contact2_b .l li span {
  color: #555;
}
.contact2 .contact2_b .r {
  height: 250px;
  background-color: #fff;
  border: solid 1px #dbdbdb;
  width: 48%;
  float: right;
  font-size: 14px;
  line-height: 24px;
  color: #888;
  padding: 42px 20px;
}

.contact2 .contact2_b .r:last-child{
  margin-right: 0;
}


.contact2 .contact2_b .r h5 {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  margin-bottom: 16px;
}
.contact3 {
  margin: 60px 0;
}
.contact3 .t {
  margin-top: 60px;
}
.contact3 .t .inp {
  position: relative;
  float: left;
  width: calc(33.3% - 21.4px);
  margin-right: 32px;
}
.contact3 .t .inp:nth-child(3n) {
  margin-right: 0;
}
.contact3 .m span,
.contact3 .t .inp span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  line-height: 20px;
  margin: auto;
  padding: 15px 0;
  font-size: 14px;
  color: #666;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contact3 .m.active span,
.contact3 .t .inp.active span {
  left: 0;
  top: -40px;
}
.contact3 .t .inp input,.contact3 .t .inp select {
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  border: solid 1px #09408a;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
}
.contact3 .m {
  position: relative;
  margin-top: 32px;
  display: block;
}
.contact3 .m textarea {
  display: block;
  width: 100%;
  height: 285px;
  background-color: #fff;
  border: solid 1px #09408a;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.contact3 .b a {
  display: block;
  margin: 32px auto 0;
  font-size: 14px;
  text-align: center;
  width: 110px;
  height: 38px;
  line-height: 36px;
  border-radius: 5px;
  border: solid 1px #09408a;
  background-color: #09408a;
  color: #fff;
}
/* contact */

/* product */
.pro_list {
  padding: 60px 0;
}
.pro_list li {
  float: left;
  width: calc(50% - 7.5px);
  margin-right: 15px;
  margin-top: 15px;
}
.pro_list li:nth-child(2n) {
  margin-right: 0;
}
.pro_list li:nth-child(-n + 2) {
  margin-top: 0;
}
.pro_list li:nth-child(2n + 1) {
  clear: both;
}
.pro_list li a {
  display: block;
  position: relative;
  overflow: hidden;
}
.pro_list li a img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro_list li a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.pro_list li a .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 35px 52px;
}
.pro_list li a .text p {
  color: #fff;
  font-size: 18px;
  position: relative;
  width: 100%;
}
.pro_list li a .text p::before {
  content: '';
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #09408a;
}
.pro_list li a .text p::after {
  content: '';
  width: 75%;
  height: 1px;
  display: block;
  margin-top: 10px;
  background-color: #e0e0e0;
}

.pro_detail {
  padding: 60px 0;
}
.pro_detail ul {
  margin-top: 60px;
}
.pro_detail ul li {
  width: 50%;
  float: left;
  padding-left: 72px;
  padding-bottom: 36px;
}
.pro_detail ul li:nth-child(2n + 1) {
  border-right: 1px solid #d2d2d2;
  padding-left: 0;
  padding-right: 72px;
  clear: both;
}
.pro_detail ul li .t {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  color: #333;
  position: relative;
}
.pro_detail ul li .t::after {
  content: '';
  width: 72px;
  height: 2px;
  background-color: #e0e0e0;
  margin: 12px 0 30px;
  display: block;
}
.pro_detail ul li .t::before {
  content: '';
  width: 20px;
  height: 3px;
  background-color: #09408a;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pro_detail ul li .b {

}
.pro_detail ul li .b .img {
  float: left;
  width: 52%;
  overflow: hidden;
}
.pro_detail ul li .b .img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro_detail ul li:hover .b .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.pro_detail ul li .b .text {
  float: left;
  width: 48%;
}
.pro_detail ul li .b .text p {
  position: relative;
  font-size: 12px;
  line-height: 24px;
  color: #666;
  padding-left: 40px;
}
.pro_detail ul li .b .text p::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 18px;
  background-color: #09408a;
}

.pro_dot {
  padding: 60px 0;
}
.pro_dot .common_tit p {
  text-align: left;
  margin-top: 60px;
}
.serv_dot h4,
.pro_dot h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  color: #333;
  margin-top: 20px;
}
.serv_dot h4 {
  margin-top: 50px;
}
.pro_dot ul {
  margin-top: 28px;
}
.pro_dot_t ul {
}
.pro_dot_t ul li {
  float: left;
  border-radius: 5px;
  border: solid 1px #eee;
  width: 14.7%;
  margin-right: 2.36%;
  margin-top: 2.36%;
}
.pro_dot_t ul li:hover {
  -webkit-animation-name: swing;
  animation-name: swing;
  animation-duration: .5s;
  -webkit-animation-duration: .5s;
}
.pro_dot_t ul li:nth-child(6n) {
  margin-right: 0;
}
.pro_dot_t ul li:nth-child(-n + 6) {
  margin-top: 0;
}
.pro_dot_t ul li:nth-child(6n + 1) {
  clear: both;
}
.pro_detail_list ul,
.pro_dot_b {
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 55px;
  margin-bottom: 42px;
}
.pro_dot_b ul li {
  float: left;
  border-radius: 5px;
  border: solid 1px #eee;
  width: calc(33.3% - 24px);
  margin-right: 36px;
  margin-top: 36px;
  overflow: hidden;
}
.pro_dot_b ul li img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro_dot_b ul li:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.pro_dot_b ul li:nth-child(3n) {
  margin-right: 0;
}
.pro_dot_b ul li:nth-child(-n + 3) {
  margin-top: 0;
}
.pro_dot_b ul li:nth-child(3n + 1) {
  clear: both;
}
.pro_detail_list .back,
.pro_dot .back {
  width: 116px;
  height: 40px;
  margin: auto;
  line-height: 38px;
  text-align: center;
  border-radius: 3px;
  border: solid 1px #eee;
  font-size: 14px;
  color: #999;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro_detail_list .back .img_h,
.pro_dot .back .img_h {
  margin-left: 10px;
}
.pro_detail_list .back:hover,
.pro_dot .back:hover {
  border-color: #09408a;
  background: #09408a;
  color: #fff;
}
/* product */

/* result */
.result .inner {
  display: none;
}
.result .news_list ul {
  margin-top: 0;
}
.result .pro_detail_list ul {
  border-bottom: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 0;
}
.result_search {
  position: relative;
  max-width: 770px;
  width: 90%;
  margin: 50px auto 0;
}
.result_search input {
  display: block;
  width: 100%;
  border: 0;
  height: 52px;
  background-color: #f7f8f9;
  padding: 0 50px 0 20px;
}
.result_search .img {
  position: absolute;
  width: 21px;
  height: 21px;
  right: 21px;
  top: 0;
  bottom: 0;
  margin: auto;
}
/* result */

/* about */
.about1 {
  padding: 60px 0;
}
.about1_con {
  margin-top: 60px;
}
.about1_con p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-top: 20px;
}
.about1_con p:first-child {
  margin-top: 0;
}

.about1_con .vdimg{position: relative;overflow: hidden;display: none;}

.about1_con .vdimg .bf{display: block;width: 100px;height: 100px;background: url(/images/bf.png) center no-repeat;background-size: cover;position: absolute;top: 50%;left: 50%;z-index: 5;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);cursor: pointer;}

.about1_con .vdimg img{display: block;width: 100%;}

.about1_con .vdimg video{display: none;width: 100%;position: absolute;top: 0;left: 0;z-index: 3;-o-object-fit: cover;object-fit: cover;}


.about2 .about2_t {
  margin-top: -115px;
}
.about2 .ind1_b {
  background: #09408a;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.about2 .ind1_b ul li h5,
.about2 .ind1_b ul li h5 span {
  color: #fff;
}
/* about */

/* development */
.dev {
  padding: 60px 0;
  background: url(/images/dev_bg.png) right 12% top 50% / 32% no-repeat;
}
.devS {
  width: 876px;
  margin: 60px auto 0;
  position: relative;
}
.devS .img {
  width: 40%;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.devS .text {
  width: 50%;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.devS .swiper-slide-active .text,
.devS .swiper-slide-active .img {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.devS .text h4 {
  font-family: MyriadPro-Bold;
  font-size: 160px;
  color: #09408a;
}
.devS .text h5 {
  font-size: 18px;
  line-height: 30px;
  color: #333;
}
.devS .text h6 {
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.dev_time_line {
  margin-top: 120px;
  margin-bottom: 40px;
  border-bottom: 1px dotted #000;
}
.dev_time_line span {
  background: url(/images/time_line_bg.png) left bottom / 100% 100% no-repeat;
  height: 11px;
  position: relative;
}
.dev_time_line span:last-of-type {
  max-width: 0;
}
.dev_time_line span i {
  font-style: normal;
  font-size: 14px;
  line-height: 48px;
  color: #333;
  width: 40px;
  margin-left: -20px;
  position: absolute;
  top: 100%;
  font-family: MyriadPro-Regular;
}
.dev_time_line span.active i {
  color: #09408a;
}
.dev_time_line .inner {
  position: relative;
}
.dev_time_line .inner .dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 2px #09408a;
  margin-left: -6px;
  margin-top: 6px;
  z-index: 9;
}
.dev_time_line .inner .btn {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 9;
  outline: none;
}

.devS .partyBtn {
  position: absolute;
  width: 46px;
  height: 46px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  outline: none !important;
  z-index: 999;
}
.devS .partyBtn.devPrev {
  left: -60px;
}
.devS .partyBtn.devPrev img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.devS .partyBtn.devNext {
  right: -60px;
}
/* development */

/* organization */
.org {
  padding: 60px 0;
}
.org .org_img {
  margin-top: 60px;
}
/* organization */

/* honor */
.honer {
  padding: 60px 0;
}
.honorS_o {
  margin-top: 45px;
}
.honorS_o > div {
  display: none;
}
.honorS_o .swiper-slide .img {
  border: solid 1px #ccc;
  padding: 16px;
}
.honorS_o .swiper-slide .text {
  font-size: 14px;
  color: #333;
  line-height: 48px;
  text-align: center;
}
/* honor */

/* culture */
.culture {
  padding: 60px 0;
}
.culture_i {
  margin: 60px -25px 0;
  font-size: 0;
  text-align: center;
}
.culture_i li {
  margin: 50px 25px 0;
  width: calc(33.3% - 50px);
  display: inline-block;
  position: relative;
  background: #000;
  cursor: pointer;
}
.culture_i li:nth-child(-n + 3) {
  margin-top: 0;
}
.culture_i li > img {
  opacity: .37;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.culture_i li:hover > img {
  opacity: 1;
}
.culture_i li .mask1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.culture_i li .mask2 {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
  background: #fff;
  text-align: left;
  padding: 32px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.culture_i li .mask2 h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 32px;
  color: #09408a;
}
.culture_i li .mask2 h4::after {
  content: '';
  width: 28px;
  height: 1px;
  background-color: #09408a;
  display: block;
  margin: 10px 0 20px;
}
.culture_i li .mask2 p {
  font-size: 12px;
  line-height: 24px;
  color: #333;
}
.culture_i li .mask2 img {
  position: absolute;
  right: 18px;
  bottom: 18px;
}
.culture_i li:hover .mask1 {
  opacity: 0;
}
.culture_i li:hover .mask2 {
  opacity: 1;
}
.culture_i li .mask1 .img {
  width: 72px;
  height: 72px;
  border: solid 2px #fff;
  border-radius: 50%;
}
.culture_i li .mask1 .img img {
  width: 32px;
}
.culture_i li .mask1 p {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-top: 12px;
  text-align: center;
}
/* culture */

/* speech */
.speech {
  padding: 60px 0;
}
.speech_con img {
  display: block;
  margin: 0 auto 20px;
}
.speech_con p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
/* speech */

/* party */
.party {
  margin: 60px 0;
}
.party1 {
}
.party1 .top {
  margin-top: 50px;
}
.party1 .top h6 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.party1 .bottom {
  margin-top: 42px;
}
.party1 .bottom .bl {
  width: 37.5%;
  background: #eee;
  padding: 16px 32px 10px;
}
.partyS {
  width: 100%;
}
.party1 .bottom .bl .btns {
  margin-top: 18px;
}
.party2 .btns .partyBtn,
.party1 .bottom .bl .btns .partyBtn {
  width: 46px;
  outline: none;
}
.party2 .btns .partyBtn.party2lPrev,
.party2 .btns .partyBtn.party3lPrev,
.party1 .bottom .bl .btns .partyBtn.partyPrev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 12px;
}
.party1 .bottom .br {
  width: 62.5%;
  padding-left: 5px;
}
.party1 .bottom .brt img {
  width: calc(50% - 1px);
}
.party1 .bottom .brb {
  margin-top: 2px;
  width: 100%;
}
.party1 .bottom .brb img {
  width: calc(33.3% - 1.5px);
}
.party1 .bottom .br img {
  margin-right: 2px;
}
.party1 .bottom .br img:last-child {
  margin-left: 0px;
}
.party2 .content {
  background: #fafafa;
  position: relative;
  margin-top: 50px;
}
.party2 .content::before {
  content: '';
  width: 22.85%;
  height: 100%;
  background: #09408a;
  position: absolute;
  top: 0;
  left: 0;
}
.party2 .content .l {
  width: 54.3%;
  position: relative;
  padding: 0 40px 0 60px;
}
.party2 .content .l .partyS3l,
.party2 .content .l .partyS2l {
  background: #fff;
  padding: 14% 10% 6%;
}
.party2 .content .l h4 {
  font-size: 18px;
  line-height: 24px;
  color: #333;
}
.party2 .content .l h6 {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-top: 20px;
}
.party2 .content .l .btns {
  margin-top: 24px;
}
.party2 .content .l .swiper-container {
  width: 100%;
  margin-top: 16px;
}
.party2 .content .l .swiper-slide-active {
  border: 2px solid #09408a;
}
.party2 .content .r {
  width: 45.7%;
}
.party3 .content::before {
  left: auto;
  right: 0;
}
/* party */

/* footer */
.footer {
  background: #313131;
}
.footer_t {
  padding: 54px 0 40px;
}
.footer_t .l {
  width: 345px;
}
.footer_t .l .logo {
}
.footer_t .l h4 {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-top: 24px;
}
.footer_t .l h6 {
  font-size: 14px;
  line-height: 24px;
  color: #999;
}
.footer_t .l .ewm {
  margin-top: 20px;
}
.footer_t .l .ewm img {
  display: block;
  margin: 0 auto;
}
.footer_t .l .ewm p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 24px;
  color: #ccc;
  text-align: center;
}
.footer_t .r {
  border-left: 1px solid #444;
  width: calc(100% - 350px);
}
.footer_t .r ul {
  padding-left: 10px;
}
.footer_t .r ul li {
  float: left;
  padding:0 5px  ;
  width: 12.5%;

}
.footer_t .r ul li h5 {
  margin-bottom: 16px;
  font-size: 18px;
  color: #fff;
}
.footer_t .r ul li h6 {
  font-size: 14px;
  line-height: 28px;
}
.footer_t .r ul li h6 a {
  color: #999;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_t .r ul li h6 a:hover {
  color: #09408a;
}
.footer_b {
  height: 54px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #444;
}
/* footer */


/* 投资者 */

.tz1{margin: 80px 0 55px;}

.tz1 .tbox{display: block;width: 100%;height: 280px;border: 1px solid #ddd; -webkit-box-shadow:0px 1px 10px #ddd; box-shadow:0px 1px 10px #ddd;}

.tz1 .tbox .tlt{width: 50%;height: 100%;float: left;padding: 50px 80px 0;background: url(/images/tz2.jpg) center no-repeat;}

.tz1 .tbox .tlt .ltt1{font-size: 18px;}

.tz1 .tbox .tlt .ltt2{margin: 40px 0;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: end;-ms-flex-align: end;align-items: flex-end;font-size: 20px;color: #da251d;font-weight: bold;}

.tz1 .tbox .tlt .ltt2 .num{font-size: 60px;height: 54px;line-height: 1;color: #222;font-family: arial;}

.tz1 .tbox .tlt .ltt2 .xia{padding-left: 30px;height: 30px; background: url(/images/jt_u.png) center left no-repeat;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: end;-ms-flex-align: end;align-items: flex-end;}

.tz1 .tbox .tlt .ltt2.lv{color: #87c122;}

.tz1 .tbox .tlt .ltt2.lv .xia{background: url(/images/jt_d.png) center left no-repeat;}

.tz1 .tbox .tlt .ltc{color: #666;line-height: 20px;text-align: justify;}

.tz1 .tbox .trt{width: 50%;height: 100%;float: right;padding:100px 80px 0 ;display: -webkit-box;display: -ms-flexbox;display: flex;}

.tz1 .tbox .trt li{width: 25%;text-align: center;font-size: 16px;}

.tz1 .tbox .trt li .num{font-size: 30px;font-weight: bold;font-family: arial;margin-top: 20px;}

.tz2{}

.tz2 .tt{display: -webkit-box;display: -ms-flexbox;display: flex;position: relative;padding-bottom: 20px;font-size: 28px;-webkit-box-align: end;-ms-flex-align: end;align-items: flex-end;border-bottom: 1px solid #ddd;margin-top:20px;}

.tz2 .tt span{font-size: 14px;color: #555;margin-left: 35px;}

.tz2 .tt s{display: block;position: absolute;width: 50px;height: 2px;background: #09408a;left: 0;bottom: 0;z-index: 2;}

.tz2 .tlt{width: 71%;float: left;padding: 0 40px 60px 0;border-right: 1px solid #ddd; }

.alltime,.alltime *{-webkit-transition: all .4s cubic-bezier(.4,0,.2,1); transition: all .4s cubic-bezier(.4,0,.2,1);}

.tz2 .tlt .ul1{margin-bottom: 65px;}

.tz2 .tlt .ul1 li{}

.tz2 .tlt .ul1 li a{display: block;padding: 50px 40px;border-bottom: 1px dashed #ddd;}

.tz2 .tlt .ul1 li a .rq{width: 90px;height: 90px;float: left;background: #f5f5f5;text-align: center;padding: 0 6px;color: #999;}

.tz2 .tlt .ul1 li a .rq .day{line-height: 54px;color: #09408a;font-size: 30px;font-weight: bold;border-bottom: 1px solid #ddd;margin-bottom: 12px;}

.tz2 .tlt .ul1 li a:hover{background: #f5f5f5;border-bottom: 1px dashed #f5f5f5;}

.tz2 .tlt .ul1 li a .txt{width: calc(100% - 140px);float: right;}

.tz2 .tlt .ul1 li a .txt div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

.tz2 .tlt .ul1 li a .txt .att{font-size: 22px;margin: 15px 0 ;}

.tz2 .trt{width: calc(29% - 80px);float: right;margin-top: 40px;height: 265px;color: #fff;background: url(/images/tz3.jpg) bottom right no-repeat;padding: 30px 40px;}

.tz2 .trt .att{ font-size: 28px;font-weight: 100;}

.tz2 .trt .en{font-size: 18px;opacity: 0.6;margin-top: 5px;}




/* 2023-4-12 sg */
.rdresult1 .table{-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}



@media (max-width: 1600px) {


  .header_nav li{margin-left: 20px;}
}
@media (max-width: 1440px) {


  .header_i {
    height: 80px;
  }

  .header_nav li {
    height: 80px;
    line-height: 80px;
  }

  .header_nav .header_nav2 {
    top: 80px;
  }

  .culture_i li .mask2 {
    padding: 16px;
  }

  .culture_i li .mask2 h4::after {
    margin: 6px 0 10px;
  }
}
@media (max-width: 1366px) {
  .banner .swiper-slide .mask h4 {
    font-size: 48px;
    line-height: 48px;
  }

  .common_tit h3 {
    font-size: 36px;
    color: #333;
  }
  .header_nav li a {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .header {
    padding: 0 40px;
  }
  .header .logo a {
    width: 180px;
  }
  .header_nav li {
    margin-left: 24px;
}
.culture_i li {
  margin: 50px 10px 0;
  width: calc(33.3% - 20px);
}
.contact2 .contact2_b .l,
.contact2 .contact2_b .r { 
  padding: 24px;
}
}
@media (max-width: 1024px) {
  .header {
    display: none;
  }

  .headerSJ {
    display: block;
    position: fixed;
    left: 0px;
    top: 0px;
    -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
            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 5%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .headerSJ .logo img {
    height: 32px;
  }

  .headerSJ .navbar {
    position: relative;
    padding: 7px 10px;
    margin-right: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #333;
    border-radius: 4px;
    outline: none;
  }

  .headerSJ .navbar .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
  }

  .headerSJ .navbar .icon-bar + .icon-bar {
    margin-top: 4px;
  }

  .headerSJ .navwrap {
    position: fixed;
    top: 0px;
    left: -50%;
    width: 50%;
    height: 100%;
    z-index: 1100;
    background-color: #000;
    opacity: 0;
  }

  .headerSJ .navwrap .nav {
    padding: 10px 5% 0px 5%;
  }

  .headerSJ .navwrap .nav li {
    line-height: 42px;
    border-bottom: 1px solid #232530;
    padding: 0px 5%;
  }

  .headerSJ .navwrap .nav li a {
    display: block;
    color: #fff;
    font-size: 16px;
  }

  .headerSJ .navbg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
  }

  .headerSJ .navbg .closeSJ {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .headerSJ .navwrap .nav .SJbod {
    display: none;
  }

  .headerSJ .navwrap .nav .SJbod dd a {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .headerSJ .navwrap .nav .plus a {
    background: url(/images/plus.png) right center no-repeat;
  }

  .headerSJ .navwrap .nav .minus a {
    background: url(/images/minus.jpg) right center no-repeat;
  }

  .headerSJ .navwrap .nav .lan .SJtit a {
    display: inline-block;
  }

  .headerSJ .navwrap .nav .lan .SJtit span {
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding: 0px 5px;
  }

  .wrapper {
    padding-top: 60px;
  }

  .wrapper.index {
    padding-top: 60px;
  }

  .banner_nav a {
    font-size: 15px;
  }

  .common_btn {
    width: 160px;
    height: 40px;
    font-size: 15px;
  }

  .footer_t .l {
    display: block;
    width: 100%;
  }

  .footer_t .l::after {
    content: '';
    clear: both;
    display: block;
  }

  .footer_t .l .lt {
    float: left;
  }

  .footer_t .l .ewm {
    float: right;
  }

  .footer_t .r {
    display: none;
  }

  .inner_banner {
    padding: 40px 5% 0;
  }

  .common_tit h3 {
    font-size: 30px;
    color: #333;
  }

  .common_tit h5 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 2.4px;
  }

  .ind1_l {
    padding-right: 40px;
  }

  .ind1_l .common_btn {
    margin-top: 32px;
  }

  .ind1_r {
    margin-top: -20px;
  }

  .ind1_b ul li h5 {
    margin-top: -42px;
  }

  .ind1_b ul li h5 span {
    font-size: 52px;
    margin-left: 12px;
    margin-right: 6px;
  }

  .ind2S .swiper-slide .mask .text {
    padding: 20px 12px;
  }

  .ind2S .swiper-slide .mask .text::before {
    left: 12px;
  }

  .ind2S .swiper-slide .mask .text h4 {
    font-size: 18px;
  }

  .ind3S .swiper-slide .text {
    font-size: 16px;
    line-height: 24px;
  }

  .ind4_l .common_btn {
    margin-top: 28px;
  }

  .ind5i li .content1 .text .l {
    width: 80px;
    height: 80px;
  }

  .ind5i li .content1 .text .r {
    padding: 0 16px;
    height: 80px;
    width: calc(100% - 80px);
  }

  .ind5i li .content1 .text .r p {
    font-size: 16px;
    line-height: 24px;
  }

  .ind5i li .content2 {
    padding: 40px 8%;
  }

  .ind5i li .content2 h4 {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    margin-top: 12px;
  }

  .ind5i li .content2 p {
    margin-top: 12px;
  }

  .ind5i li .content2 .img {
    margin-top: 12px;
  }

  .case_list li .text {
    font-size: 16px;
    line-height: 60px;
  }

  .pro_detail ul li .b .text {
    padding-top: 0;
  }

  .news_list ul li .text {
    padding: 24px 16px;
  }

  .news_list ul li .text h4 {
    font-size: 16px;
  }

  .news_list ul li .text h6 {
    margin-top: 12px;
  }

  .contact2 .my-map {
    height: 320px;
  }

  .contact2 .contact2_b .l {
    width: 100%;
    margin: 0;
  }

  .contact2 .contact2_b .r {
    margin-top: 16px;
    width: 32%;
    margin-right: 2%;
    margin-left: 0;
  }

  /* .contact2 .contact2_b .r:nth-of-type(3) {
    margin-left: 16px;
  } */

  .culture_i li {
    width: calc(50% - 50px);
  }

  .culture_i li:nth-child(-n + 3) {
    margin-top: 50px;
  }

  .culture_i li:nth-child(-n + 2) {
    margin-top: 0px;
  }

  .culture_i li .mask2 {
    padding: 32px;
  }


  .rdresult1 .table {
    display: block;
  }
  .rdresult1 table {
    width: 100%;
  }
  .rdresult1 table thead {
    display: none;
  }
  .rdresult1 table:nth-child(1) thead{display: table-header-group;}

  .rdresult1 table td:nth-child(1) {
    width: 52px;
  }
  .rdresult2S {
    width: 960px;
  }
  .party2 .content .l {
    padding: 0 10px;
  }
  .party2 .content .l .partyS3l, .party2 .content .l .partyS2l {
    background: #fff;
    padding: 20px;
  }

}

@media (max-width: 768px) {
  .common_btn {
    width: 120px;
    height: 36px;
    font-size: 14px;
  }

  .common_btn .img_h {
    margin-left: 12px;
  }

  .banner .swiper-slide .mask h4 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    display: block;
  }

  .banner .swiper-slide .mask h4::after {
    display: none;
  }

  .banner .swiper-slide .mask h6 {
    font-size: 14px;
    letter-spacing: 0.6px;
    margin-top: 0px;
    display: block;
    text-align: center;
  }

  .banner .swiper-slide .mask .block {
    display: none;
  }

  .banner .swiper-slide .mask .common_btn {
    margin: 10px auto 0;
  }

  .banner .bannerP {
    bottom: 10px;
  }

  .common_tit h3 {
    font-size: 24px;
  }

  .common_tit.m h3 {
    font-size: 24px;
  }

  .commonP {
    margin-top: 20px;
  }

  .ind1 {
    margin-top: 0px;
  }

  .ind1_t {
    display: block;
    padding-top: 60px;
  }

  .ind1_l {
    width: 100%;
    padding-right: 0px;
  }

  .ind1_r {
    margin-top: 20px;
    width: 100%;
  }

  .ind1_b {
    padding: 40px 0;
    margin-top: -75px;
  }

  .ind1_b ul li {
    width: 50%;
    float: left;
    margin-top: 10px;
    border-right: 0;
  }

  .ind1_b ul li:nth-child(-n + 2) {
    margin-top: 0;
  }

  .ind1_b ul li img {
    width: 40px;
  }

  .ind1_b ul li h5 {
    margin-top: -32px;
    font-size: 15px;
  }

  .ind1_b ul li h5 span {
    font-size: 40px;
  }

  .ind2 {
    margin-top: 160px;
  }

  .ind2S {
    margin-top: 32px;
  }

  .ind2S .swiper-slide .mask .text {
    padding: 20px 30px;
  }

  .ind2S .swiper-slide .mask .text::before {
    left: 30px;
  }

  .ind2S .swiper-slide img {
    max-width: inherit;
    width: 100%;
  }

  .ind3 {
    margin-top: 60px;
    padding: 60px 0;
  }

  .ind3S {
    margin-top: 32px;
  }

  .ind3P.commonP .swiper-pagination-bullet {
    background: #fff;
  }

  .ind3P.commonP .swiper-pagination-bullet-active {
    background: #174b90;
  }

  .ind4 .container {
    display: block;
  }

  .ind4_l {
    width: 100%;
    padding-top: 60px;
  }

  .ind4_r {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 5%;
  }

  .ind4_r li {
    width: 33.3%;
  }

  .ind4_r li:empty {
    display: none;
  }

  .ind4_r li:nth-child(5n + 1) {
    clear: none;
  }

  .ind5 {
    padding: 60px 0;
  }

  .ind5i {
    margin-top: 32px;
    border: 0;
  }

  .ind5i li .content1 {
    position: static;
    opacity: 1;
    visibility: visible;
  }

  .ind5i li .content1 .img {
    height: auto !important;
  }

  .ind5i li .content2 {
    display: none;
  }

  .ind5P.commonP .swiper-pagination-bullet {
    background: #fff;
  }

  .ind5P.commonP .swiper-pagination-bullet-active {
    background: #09408a;
  }

  .footer_t .l .ewm {
    float: left;
  }

  .footer_b {
    display: block;
    padding: 5px;
    line-height: 22px;
  }

  .inner_banner {
    padding: 0;
  }

  .banner_nav {
    display: none;
  }

  .serv_list {
    padding: 60px 5%;
  }

  .serv_list ul {
    margin-top: 32px;
  }

  .serv_list li .mask h5 {
    margin-bottom: 40px;
  }

  .serv_detail ul {
    padding: 0 5%;
  }

  .serv_detail li {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .serv_detail li:nth-child(2n) .text,
  .serv_detail li:nth-child(2n + 1) .text {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }

  .serv_detail li .img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .serv_bottom {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .serv_bottom .btn {
    width: 100%;
    height: 50px;
    line-height: 48px;
    font-size: 15px;
    padding: 0 20px 0 66px;
  }

  .serv_bottom .next {
    margin-top: 10px;
  }

  .serv_bottom .btn span {
    left: 12px;
  }

  .serv_bottom .back {
    display: none;
  }

  .serv_dot ul {
    padding: 0;
  }

  .serv_dot li {
    width: 100%;
    margin-right: 0;
    float: none;
    padding: 0;
  }

  .serv_dot li:nth-child(-n + 4) {
    margin-top: 24px;
  }

  .serv_dot li:nth-child(-n + 1) {
    margin-top: 0px;
  }

  .serv_dot .common_btn {
    margin: 32px auto;
  }

  .serv_tz_i .con {
    padding: 40px 5%;
  }

  .case_list li {
    width: 100%;
    margin-right: 0px;
    margin-top: 20px;
    float: none;
  }

  .case_list li:nth-child(-n + 3) {
    margin-top: 20px;
  }

  .case_list li:nth-child(-n + 1) {
    margin-top: 0;
  }

  .pro_list li {
    float: none;
    width: 100%;
    margin-right: 0px;
  }

  .pro_list li:nth-child(-n + 2) {
    margin-top: 15px;
  }

  .pro_list li:nth-child(-n + 1) {
    margin-top: 0;
  }

  .pro_list li a .text {
    padding: 20px;
  }

  .pro_detail ul li {
    width: 100%;
    float: none;
    padding-left: 0px;
    padding-bottom: 36px;
  }

  .pro_detail ul li:nth-child(2n + 1) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0px;
  }

  .pro_detail_list ul,
  .pro_dot_b {
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .pro_detail ul {
    margin-top: 32px;
  }

  .pro_detail ul li .b .img {
    float: none;
    width: 100%;
  }

  .pro_detail ul li .b .text {
    float: none;
    width: 100%;
    padding-top: 24px;
  }

  .pro_dot_t ul li {
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
  }

  .pro_dot_t ul li:nth-child(6n) {
    margin-right: 2%;
  }

  .pro_dot_t ul li:nth-child(-n + 6) {
    margin-top: 2%;
  }

  .pro_dot_t ul li:nth-child(6n + 1) {
    clear: none;
  }

  .pro_dot_t ul li:nth-child(2n) {
    margin-right: 0%;
  }

  .pro_dot_t ul li:nth-child(-n + 2) {
    margin-top: 0%;
  }

  .pro_dot_t ul li:nth-child(2n + 1) {
    clear: both;
  }

  .pro_dot .common_tit p {
    margin-top: 32px;
  }

  .pro_dot_b ul li {
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
  }

  .pro_dot_b ul li:nth-child(3n) {
    margin-right: 2%;
  }

  .pro_dot_b ul li:nth-child(-n + 3) {
    margin-top: 2%;
  }

  .pro_dot_b ul li:nth-child(3n + 1) {
    clear: none;
  }

  .pro_dot_b ul li:nth-child(2n) {
    margin-right: 0;
  }

  .pro_dot_b ul li:nth-child(-n + 2) {
    margin-top: 0;
  }

  .pro_dot_b ul li:nth-child(2n + 1) {
    clear: both;
  }

  .news_list ul li {
    float: none;
    width: 100%;
    margin-right: 0px;
    margin-top: 20px;
  }

  .news_list li:nth-child(-n + 3) {
    margin-top: 20px;
  }

  .news_list li:nth-child(-n + 1) {
    margin-top: 0;
  }

  .news_list ul {
    margin-top: 32px;
  }

  .news_list .pagination {
    margin-top: 32px;
  }

  .join_list .common_tit p {
    margin-top: 32px;
    font-size: 14px;
  }

  .join_list ul li h4 {
    padding: 0 50px 0 20px;
  }

  .join_list ul li h4 span {
    right: 20px;
  }

  .join_list ul li .con {
    padding: 20px;
  }

  .contact2 .contact2_b .l {
    padding: 20px;
    height: auto;
  }

  .contact2 .contact2_b .r {
    width: 100%;
    padding: 20px;
    height: auto;
  }

  .contact2 .contact2_b .r:nth-of-type(3) {
    margin-left: 0px;
  }

  .contact3 .t {
    margin-top: 32px;
  }

  .contact3 .t .inp {
    float: none;
    width: 100%;
    margin-right: 0px;
    margin-top: 32px;
    display: block;
  }

  .about1_con {
    margin-top: 32px;
  }

  .about2 .about2_t {
    margin: 0;
    padding: 0;
  }

  .about2 .ind1_b {
    margin: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .devS {
    width: 100%;
  }

  .devS .swiper-slide {
    display: block;
  }

  .devS .img {
    width: 100%;
  }

  .devS .text h4 {
    font-size: 40px;
  }

  .dev_time_line {
    display: none;
  }

  .org .org_img {
    margin-top: 32px;
  }

  .honorS_o .swiper-slide .img {
    padding: 0;
    border: 0;
  }

  .culture_i {
    margin: 32px 0;
  }

  .culture_i li {
    width: 100%;
    margin: 20px 0 0;
    display: block;
  }

  .culture_i li:nth-child(-n + 2) {
    margin-top: 20px;
  }

  .culture_i li:nth-child(-n + 3) {
    margin-top: 20px;
  }

  .culture_i li .mask2 {
    padding: 16px;
  }

  .culture_i li .mask2 p {
    line-height: 20px;
  }

  .culture_i li .mask2 img {
    right: 8px;
    bottom: 8px;
  }

  .contact1 .map {
    margin-top: 32px;
  }

  .contact2 .my-map {
    height: 240px;
    margin-top: 32px;
  }

  .contact2 .contact2_b .l li {
    font-size: 14px;
  }

  .join_list ul {
    margin-top: 32px;
  }

  .common_nav {
    margin-top: 32px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .common_nav a{margin: 0 7px 7px;}
  .party1 .bottom {
    display: block;
  }
  .party1 .bottom .bl {
    width: 100%;
    height: auto!important;
  }
  .party1 .bottom .br {
    width: 100%;
  }
  .party2 .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .party2 .content .l {
    width: 100%;
    padding: 0;
  }
  .party2 .content .r {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .party2 .content::before {
    display: none;
  }
  .inst1 .content {
    display: block;
  }
  .inst1 .content .l {
    width: 100%;
    padding-bottom: 50%;
  }
  .inst1 .content .r {
    width: 100%;
    padding: 20px;
  }
  .inst1 .content .r ul li {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  .inst1 .content .r ul li:nth-child(3n) {
    margin-right: 10px;
  }
  .inst1 .content .r ul li:nth-child(3n + 1) {
    clear: none;
  }
  .inst1 .content .r ul li:nth-child(2n) {
    margin-right: 0px;
  }
  .inst1 .content .r ul li:nth-child(2n + 1) {
    clear: both;
  }
  .inst2 .swiper-slide {
    width: 100%;
  }
  .work1 .content {
    display: block;
  }
  .work1 .l {
    width: 100%;
  }
  .work1 .r {
    width: 100%;
  }
  .work2 .content li {
    width: 100%;
    margin-right: 0px;
    margin-top: 20px;
    float: none;
  }
  .work2 .content li a {
    display: block;
  }
  .work2 .content li a .img {
    width: 100%;
  }
  .work2 .content li a .text {
    width: 100%;
    padding: 0;
  }
  .work2 .content li a .text h6 {
    margin-top: 10px;
  }
  .device1 .content {
    display: block;
  }
  .device1 .content .l {
    width: 100%;
  }
  .device1 .content .r {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
  .device2 .content li {
    float: left;
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-top: 10px;
  }
  .device2 .content ul li:nth-child(3n) {
    margin-right: 10px;
  }
  .device2 .content ul li:nth-child(-n + 3) {
    margin-top: 10px;
  }
  .device2 .content ul li:nth-child(3n + 1) {
    clear: none;
  }
  .device2 .content ul li:nth-child(2n) {
    margin-right: 0;
  }
  .device2 .content ul li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .device2 .content ul li:nth-child(2n + 1) {
    clear: both;
  }
  .device3 .partyS {
    padding: 0;
  }
  .device3 .partyBtn {
    background: #fff;
  }
  .rdresult2S {
    width: 100%;
  }

  .devS .partyBtn {
    background: #fff;
  }
  .devS .partyBtn.devPrev {
    left: 10px;
  }
  .devS .partyBtn.devNext {
    right: 10px;
  }

  .tz1{margin: 30px 0;height: auto;}

  .tz1 .tbox .tlt,.tz1 .tbox .trt{width: 100%;padding: 20px 5%;float: none;height: auto;}

  .tz1 .tbox .tlt .ltt2{margin: 20px 0;}

  .tz1 .tbox .tlt .ltt2 .num{font-size: 30px;height: 30px;}

  .tz1 .tbox .tlt .ltt2 .xia{font-size: 16px;}

  .tz1 .tbox{height: auto;}

  .tz1 .tbox .trt li{width: 50%;margin-bottom: 20px;}

  .tz1 .tbox .trt{-ms-flex-wrap: wrap;flex-wrap: wrap;}

  .tz2 .tt{font-size: 20px;}

  .tz2 .tt span{margin-left: 20px;}

  .tz2 .tlt{width: 100%;border: 0;padding: 0;float: none;}

  .tz2 .tlt .ul1 li a{padding: 20px 0;}

  .tz2 .tlt .ul1 li a .txt{width: calc(100% - 100px);}

  .tz2 .tlt .ul1 li a .txt .att{font-size: 16px;font-weight: bold;}

  .tz2 .tlt .ul1{margin-bottom: 30px;}

  .tz2 .trt{width: 100%;float: none;margin: 30px auto;}

  .tz2 .trt .att{font-size: 20px;}

  .about1_con .vdimg .bf{width: 50px;height: 50px;}


}
<!--0.00023698806762695-->