/* 1.header */
header {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  /* overflow: hidden; */
  box-sizing: border-box;
  background-color: rgba(71, 129, 198, 0.7);
  /* box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08); */
}

header .inside {
  height: 100%;
  /* background-color: #ffffff; */
}

.header-shadow {
  top: 0;
  background-color: rgba(71, 129, 198, 1);
  /* background-color: #ffffff; */
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  animation: skell-header-top 1s ease-out 0s backwards;
}

header .logo {
  float: right;
  display: block;
  width: auto;
  height: 56px;
  line-height: 100px;
  margin-right: 50px;
}

header .logo img {
  width: auto;
  height: 100%;
}

header .gation {
  float: right;
  box-sizing: border-box;
  font-size: 17px;
  line-height: 100px;
  text-align: right;
}

header .gation li {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #ffffff;
  position: absolute;
  bottom: 23px;
  left: 0;
  opacity: 0;
  border-radius: 5px;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li.active::after,
header .gation li:hover::after {
  opacity: 1;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li:not(:last-child) {
  margin-right: 30px;
}

header .gation li a {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li.active a,
header .gation li:hover a {
  /* color: #860f48; */
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gatopen {
  display: none;
  float: right;
  width: 27px;
  height: 27px;
  cursor: pointer;
  line-height: 47px;
  cursor: pointer;
}

header .gatopen img {
  width: 100%;
  height: 100%;
}

header .lang {
  float: right;
  width: auto;
  height: 36px;
  line-height: 32px;
  text-align: center;
  position: relative;
  color: #000000;
  margin-left: 50px;
  margin-top: 32px;
  font-size: 16px;
  padding: 0 13px;
  border: 2px solid #e4e4e4;
  border-radius: 3px;
}

header .lang .lan-ico {
  width: 20px;
  height: auto;
  margin-right: 6px;
  margin-bottom: 3px;
}

header .lang .lan-row {
  width: 13px;
  height: auto;
  margin-left: 6px;
  margin-bottom: 4px;
}

header .lang .lan-pull {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

header .lang .lan-drop {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 10px 0;
  background-color: #ffffff;
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  z-index: 101;
}

header .lang .lan-drop a {
  display: block;
  color: #666666;
  line-height: 32px;
  font-size: 14px;
}

header .lang .lan-drop a img {
  width: 15px;
  margin-right: 7px;
  vertical-align: middle;
  margin-bottom: 4px;
}

header .lang .lan-drop a:hover {
  font-weight: bold;
}

@media (max-width: 1400px) {
  header {
    height: 75px;
  }
  header .logo {
    height: 40px;
    line-height: 75px;
    margin-right: 30px;
  }
  header .gation {
    font-size: 15px;
    line-height: 75px;
    margin-left: 70px;
  }
  header .lang {
    margin-top: 19px;
    margin-left: 30px;
    font-size: 15px;
  }
  header .gation li::after {
    bottom: 17px;
    height: 3px;
  }
}

@media (max-width: 1000px) {
  header {
    height: 47px;
    top: 0;
    /* background-color: #ffffff; */
    background-color: rgba(71, 129, 198, 1);
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .gatopen {
    display: block;
  }
  header .logo {
    float: left;
    height: 26px;
    line-height: 47px;
    margin-right: 0;
  }
  header .gation {
    display: none;
    float: none;
    position: absolute;
    top: 47px;
    left: 0;
    width: 105%;
    margin-left: -3%;
    height: auto;
    box-sizing: border-box;
    padding: 13px 3% 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 1);
    line-height: 43px;
    text-align: center;
    z-index: 100;
    /* background-color: #ffffff; */
    background-color: rgba(71, 129, 198, 1);
    overflow: hidden;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .gation li {
    display: block;
  }
  header .gation li:not(:last-child) {
    margin-right: 0;
  }
  header .gation li a {
    width: 100%;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    /* color: #000000; */
  }
  header .gation li:hover a,
  header .gation li.active a {
    color: #fecb41;
    border-bottom: 0;
  }
  header .lang {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 15px;
    font-size: 13px;
    border: 1px solid #e4e4e4;
    height: 28px;
    line-height: 26px;
  }
  header .lang .lan-drop a {
    font-size: 13px;
    line-height: 24px;
  }
  header .lang .lan-drop {
    top: 28px;
  }
  header .lang .lan-drop a img {
    width: 13px;
    margin-bottom: 3px;
  }
  header .lang .lan-ico {
    width: 13px;
    margin-right: 3px;
    margin-bottom: 3px;
  }
  header .lang .lan-row {
    width: 10px;
    margin-left: 1px;
    margin-bottom: 2px;
  }
  header .gation li::after {
    display: none;
  }
  header .gation li.active a,
  header .gation li:hover a {
    font-weight: bold;
  }
}

/* 3.index-swiper */
.index-swiper {
  width: 100%;
  height: 920px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.index-swiper .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-swiper .swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* .index-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
} */

/* .index-swiper .img {
  width: 100%;
  height: 100%;
}

.index-swiper .img img {
  height: 100%;
} */

.index-swiper .videocons {
  width: 100%;
  height: 100%;
}

.index-swiper video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.index-swiper .video-poster,
.index-swiper .video-poster img {
  width: 100%;
  height: 100%;
}

.index-swiper .cons {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: left;
  color: #ffffff;
}

.index-swiper .inside {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.index-swiper .cons h2 {
  position: relative;
  padding-bottom: 23px;
}

.index-swiper .cons h2::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.index-swiper .cons h2 s {
  display: block;
  color: #ffffff;
  font-size: 45px;
}

.index-swiper .cons h2 i {
  font-size: 18px;
  color: #fecb41;
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
}

.index-swiper .cons p {
  width: 100%;
  max-width: 580px;
  margin-top: 40px;
  font-size: 18px;
  line-height: 34px;
}

.index-swiper .cons .more {
  margin-top: 50px;
  display: block;
  width: 140px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  font-size: 14px;
  /* border: 1px solid #ffffff; */
  background-color: #0057aa;
}

/* 默认样式修改 */
.index-swiper .swiper-pagination {
  width: 100%;
  text-align: center;
  bottom: 30px;
}
.index-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #ffffff;
}
.index-swiper .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 10px;
  background-color: #ffffff;
  opacity: 1;
}
.index-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

@media (max-width: 1400px) {
  .index-swiper {
    height: 720px;
  }
  .index-swiper .cons h2 s {
    font-size: 32px;
  }
  .index-swiper .cons h2 i {
    font-size: 15px;
  }
  .index-swiper .cons p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 28px;
  }
  .index-swiper .cons .more {
    margin-top: 30px;
    width: 120px;
    height: 38px;
    line-height: 38px;
  }
  /* 默认样式修改 */
  .index-swiper .swiper-pagination {
    bottom: 10px;
  }
  .index-swiper .swiper-pagination-bullet-active {
    width: 30px;
  }
}

@media (max-width: 1000px) {
  .index-swiper {
    margin-top: 47px;
    height: 520px;
  }
  .index-swiper .cons h2 {
    padding-bottom: 15px;
  }
  .index-swiper .cons h2::before {
    height: 2px;
  }
  .index-swiper .cons h2 s {
    font-size: 21px;
  }
  .index-swiper .cons h2 i {
    font-size: 13px;
  }
  .index-swiper .cons p {
    margin-top: 15px;
    font-size: 12px;
    line-height: 23px;
  }
  .index-swiper .cons .more {
    margin-top: 20px;
    width: 100px;
    height: 33px;
    line-height: 33px;
    font-size: 12px;
  }
  .index-swiper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
  .index-swiper .swiper-pagination-bullet-active {
    width: 20px;
  }
}

@media (max-width: 768px) {
  .index-swiper {
    height: 380px;
  }
}

@media (max-width: 580px) {
  .index-swiper {
    height: 280px;
  }
}

/* 4.banner */
.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  /* margin-top: 100px; */
}

.banner .img {
  width: 100%;
  height: 100%;
}

.banner .img img {
  height: 100%;
}

.banner .sub {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* background-color: rgba(0, 0, 0, 0.1); */
  color: #ffffff;
  /* font-size: 48px; */
  /* padding-top: 90px; */
}

.banner .sub .inside {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.banner .sub .ico {
  width: auto;
  height: 50px;
  margin-right: 23px;
  display: inline-block;
}

.banner .sub .ico img {
  width: auto;
  height: 100%;
}

.banner .sub span {
  display: inline-block;
}

.banner .sub span i {
  display: block;
  font-size: 40px;
  line-height: 40px;
}

.banner .sub span s {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 20px;
  margin-top: 10px;
}

@media (max-width: 1400px) {
  /* .banner {
    margin-top: 75px;
  } */
  .banner .sub .ico {
    height: 38px;
    margin-right: 15px;
  }
  .banner .sub span i {
    font-size: 32px;
    line-height: 32px;
  }
  .banner .sub span s {
    font-size: 17px;
    line-height: 17px;
    margin-top: 10px;
  }
}

@media (max-width: 1000px) {
  /* .banner {
    margin-top: 47px;
  } */
  /* .banner .img {
    height: 200px;
  } */
  .banner .sub .ico {
    height: 25px;
    margin-right: 10px;
  }
  .banner .sub span i {
    font-size: 24px;
    line-height: 24px;
  }
  .banner .sub span s {
    font-size: 15px;
    line-height: 15px;
    margin-top: 10px;
  }
}

@media (max-width: 780px) {
  .banner .img {
    height: 200px;
  }
}

/* 5.inner-tabs */
.inner-tabs {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  border: 2px solid #0057aa;
  box-sizing: border-box;
}

.inner-tabs a {
  display: inline-block;
  flex: 1;
  height: 50px;
  line-height: 50px;
  color: #0057aa;
  font-size: 17px;
}

.inner-tabs a:not(:last-child) {
  border-right: 2px solid #0057aa;
}

.inner-tabs a.active,
.inner-tabs a:hover {
  color: #ffffff;
  background-color: #0057aa;
}

@media (max-width: 1400px) {
  .inner-tabs a {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }
}

@media (max-width: 1000px) {
  .inner-tabs {
    border-right: 1px solid #0057aa;
  }
  .inner-tabs a {
    height: 34px;
    line-height: 34px;
    font-size: 13px;
  }
  .inner-tabs a:not(:last-child) {
    border-right: 1px solid #0057aa;
  }
}

/* 6.footer */
footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #48484c;
  color: #ffffff;
  /* background: url(./../img/footer-bg.png) no-repeat center/cover; */
}

footer .above {
  padding: 60px 0;
}

footer .top,
footer .bom {
  display: flex;
  justify-content: space-between;
}

footer .logo {
  width: 280px;
  height: auto;
  cursor: pointer;
}

footer .logo img {
  width: 100%;
}

footer .top {
  position: relative;
  z-index: 10;
}

footer .bom {
  z-index: 5;
}

footer .info {
  margin-top: 50px;
}

footer .info li:not(:first-child) {
  margin-top: 13px;
}

footer .info li span {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

footer .info li img {
  margin-right: 10px;
  width: 26px;
  height: 26px;
}

footer .link {
  display: flex;
  width: 52%;
  justify-content: space-between;
}

footer .link li {
  width: 18%;
}

footer .link a {
  display: block;
  color: #ffffff;
  opacity: 0.7;
  font-size: 15px;
  line-height: 37px;
  text-align: right;
  text-transform: uppercase;
}

footer .link a:first-child {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
  opacity: 1;
}

footer .link a:hover {
  opacity: 1;
  transform: scale(1.09);
}

footer .code {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .code h3 {
  font-size: 17px;
  font-weight: bold;
  color: #707070;
}

footer .code ul {
  display: flex;
  margin-left: 30px;
}

footer .code ul li:not(:last-child) {
  margin-right: 32px;
}

footer .code ul li {
  position: relative;
}

footer .code ul li .qr {
  width: 86px;
  height: 96px;
  display: none;
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

footer .code ul li .icon {
  width: 37px;
  height: 37px;
  cursor: pointer;
}

footer .code ul li:first-child .icon {
  width: 25px;
  height: 25px;
}

footer .code ul li:hover .qr {
  display: block;
}

footer .copy {
  width: 100%;
  height: auto;
  padding: 10px 0;
  text-align: center;
  background-color: #2a2a2e;
}

footer .copy a {
  color: #ffffff;
  font-size: 14px;
}

footer .copy img {
  width: 20px;
  height: auto;
  margin: 0 10px;
}

@media (max-width: 1400px) {
  footer .top {
    flex-direction: column;
    align-items: center;
  }
  footer .link {
    margin-top: 40px;
    width: 100%;
    justify-content: space-between;
  }
  footer .link a {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  footer .above {
    padding: 40px 0;
  }
  footer .link {
    display: none;
  }
  footer .logo {
    width: 190px;
    margin: 0 auto;
  }
  footer .info li span {
    font-size: 13px;
  }
  footer .info li img {
    margin-right: 7px;
    width: 20px;
    height: 20px;
  }
  footer .code {
    margin-top: 100px;
  }
  footer .code h3 {
    font-size: 15px;
  }
  footer .code ul li .qr {
    width: 56px;
    height: 66px;
    top: -70px;
  }
  footer .code ul li .icon {
    width: 27px;
    height: 27px;
  }
  footer .code ul li:first-child .icon {
    width: 18px;
    height: 18px;
    margin-top: 4px;
  }
  footer .copy a {
    display: block;
    font-size: 12px;
    line-height: 27px;
  }
  footer .copy a:not(:last-child) {
    margin-right: 0;
  }
}

/* 7.title */
.title {
  text-align: center;
}

.title-lf {
  text-align: left;
}

.title-rg {
  text-align: right;
}

.title em {
  font-family: "Impact";
  display: block;
  color: #e5eef6;
  font-size: 60px;
  line-height: 60px;
  margin-top: 5px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.title h2 {
  font-size: 40px;
  position: relative;
  margin-top: -50px;
  font-weight: bold;
}

.title h2 img {
  width: 18px;
  height: auto;
  margin-right: 7px;
  vertical-align: super;
}

.title-no h2 {
  margin-top: 7px;
}

@media (max-width: 1400px) {
  .title h2 {
    font-size: 34px;
    margin-top: -40px;
  }
  .title em {
    font-size: 47px;
    line-height: 47px;
  }
}

@media (max-width: 1000px) {
  .title h2 {
    font-size: 26px;
    margin-top: -30px;
  }
  .title-no h2 {
    margin-top: 5px;
  }
  .title em {
    font-size: 36px;
    line-height: 36px;
  }
  .title h2 img {
    width: 13px;
    margin-right: 5px;
  }
}
