/* 1.header */
header {
  width: 100%;
  height: 100px;
  z-index: 100;
  box-sizing: border-box;
  /* box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08); */
}

header .inside {
  height: 100%;
  background-color: #ffffff;
}

.header-shadow {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  animation: header 1s ease-out 0s backwards;
}

@keyframes header {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

header .logo {
  float: left;
  display: block;
  width: auto;
  height: 56px;
  line-height: 100px;
}

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: 3px;
  background-color: #fd7f00;
  position: absolute;
  bottom: 23px;
  left: 0;
  opacity: 0;
  /* 过渡 */
  -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: 60px;
}

header .gation li a {
  display: inline-block;
  color: #000000;
  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: #fd7f00;
  /* 过渡 */
  -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;
  }
  header .gation {
    font-size: 15px;
    line-height: 75px;
    margin-left: 70px;
  }
  header .gation li:not(:last-child) {
    margin-right: 30px;
  }
  header .lang {
    margin-top: 19px;
    margin-left: 30px;
    font-size: 15px;
  }
  header .gation li::after {
    bottom: 17px;
  }
}

@media (max-width: 1000px) {
  header {
    height: 47px;
    top: 0;
    background-color: #ffffff;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .inside {
    background-color: transparent;
  }
  header .gatopen {
    display: block;
  }
  header .logo {
    height: 26px;
    line-height: 47px;
    margin-left: 0;
  }
  header .gation {
    display: none;
    float: none;
    width: 105%;
    margin-left: -3%;
    height: auto;
    box-sizing: border-box;
    padding: 13px 3% 20px;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 1);
    line-height: 43px;
    text-align: center;
    background-color: #ffffff;
    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 {
    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;
  }
}

/* 2.topside */
.topside {
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  background-color: #fd7f00;
  font-size: 14px;
}

.topside i:first-child {
  margin-right: 60px;
}

@media (max-width: 1000px) {
  .topside {
    font-size: 11px;
    padding: 5px 0;
  }
  .topside i {
    display: block;
  }
  .topside i:first-child {
    margin-right: 0;
  }
}

/* 3.index-swiper */
.index-swiper {
  width: 100%;
  height: auto;
  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 .cons {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: left;
  color: #ffffff;
}

.index-swiper .inside {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.index-swiper .cons h2 {
  font-size: 60px;
}

.index-swiper .cons p {
  margin-top: 20px;
  font-size: 24px;
  text-transform: uppercase;
}

.index-swiper .cons em {
  margin-top: 50px;
  display: block;
  width: 160px;
  height: 48px;
  line-height: 46px;
  border-radius: 32px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  font-size: 14px;
  border: 1px solid #ffffff;
}

@media (max-width: 1700px) {
  .index-swiper .cons h2 {
    font-size: 50px;
  }
  .index-swiper .cons p {
    font-size: 20px;
  }
}

@media (max-width: 1400px) {
  .index-swiper .cons h2 {
    font-size: 38px;
  }
  .index-swiper .cons p {
    font-size: 17px;
  }
  .index-swiper .cons em {
    margin-top: 30px;
    font-size: 12px;
    width: 120px;
    height: 38px;
    line-height: 36px;
  }
}

@media (max-width: 1000px) {
  .index-swiper .cons h2 {
    font-size: 24px;
  }
  .index-swiper .cons p {
    margin-top: 10px;
    font-size: 15px;
  }
  .index-swiper .cons em {
    margin-top: 23px;
    width: 110px;
    height: 34px;
    line-height: 32px;
  }
}

@media (max-width: 580px) {
  .index-swiper .img {
    height: 240px;
  }
}

/* 4.banner */
.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  /* 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%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.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: 768px) {
  .banner .img {
    height: 160px;
  }
} */

/* 5.inner-tabs */
.inner-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.inner-tabs a {
  display: inline-block;
  width: 220px;
  height: 50px;
  line-height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 17px;
}

.inner-tabs a:not(:last-child) {
  margin-right: 30px;
}

.inner-tabs a.active,
.inner-tabs a:hover {
  background-color: #fd7f00;
}

@media (max-width: 1400px) {
  .inner-tabs a {
    width: 180px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }
}

@media (max-width: 1000px) {
  .inner-tabs a {
    width: 110px;
    height: 34px;
    line-height: 34px;
    font-size: 13px;
  }
  .inner-tabs a:not(:last-child) {
    margin-right: 5px;
  }
}

/* 6.footer */
footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #1c2028;
  color: #ffffff;
  /* background: url(/images/tianbi/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: 170px;
  height: auto;
  cursor: pointer;
}

footer .logo img {
  width: 100%;
}

footer .top {
  position: relative;
  z-index: 10;
}

footer .bom {
  z-index: 5;
}

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;
}

footer .link li:not(:last-child) {
  margin-right: 60px;
}

footer .link a {
  display: block;
  color: #ffffff;
  opacity: 0.8;
  font-size: 15px;
  line-height: 37px;
  text-align: center;
  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: #101318;
}

footer .copy a {
  color: #88898c;
  font-size: 14px;
}

footer .copy a:not(:last-child) {
  margin-right: 55px;
}

@media (max-width: 1400px) {
  footer .top {
    flex-direction: column;
    align-items: center;
  }
  footer .bom {
    margin-top: 40px;
  }
  footer .logo {
    margin-bottom: 40px;
  }
  footer .link {
    width: 100%;
    justify-content: space-between;
  }
  footer .link li:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 1000px) {
  footer .above {
    padding: 40px 0;
  }
  footer .bom {
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
  }
  footer .link {
    display: none;
  }
  footer .logo {
    width: 140px;
    margin-bottom: 30px;
  }
  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-abu {
  text-align: center;
}

.title-abu h3 {
  font-size: 36px;
}

.title {
  text-align: center;
}

.title-lf {
  text-align: left;
}

.title em {
  font-family: "Arial";
  display: block;
  color: #f2eeee;
  font-size: 70px;
  line-height: 70px;
  margin-top: 5px;
  font-weight: bold;
}

.title h2 {
  font-size: 37px;
  padding-bottom: 20px;
  position: relative;
  margin-top: -50px;
}

.title h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  background-color: #fd7f00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.title-w h2,
.title-w h2::after {
  color: #ffffff;
}

.title-noline h2 {
  padding-bottom: 0;
}

.title-noline h2::after {
  display: none;
}

.title-w em {
  opacity: 0.2;
}

.title-w h2::after {
  background-color: #ffffff;
}

.title-ify {
  text-align: right;
}

.title-ify a {
  font-size: 18px;
}

.title-ify a:not(:last-child) {
  margin-right: 30px;
}

.title-ify a:hover,
.title-ify a.active {
  color: #fd7f00;
}

@media (max-width: 1400px) {
  .title-abu h3 {
    font-size: 30px;
  }
}

@media (max-width: 1000px) {
  .title-abu h3 {
    font-size: 24px;
  }
  .title h2 {
    font-size: 26px;
    margin-top: -35px;
    padding-bottom: 15px;
  }
  .title-noline h2 {
    padding-bottom: 0;
  }
  .title h2::after {
    width: 30px;
  }
  .title em {
    font-size: 50px;
    line-height: 50px;
  }
  .title-ify a {
    font-size: 15px;
  }
  .title-ify a:not(:last-child) {
    margin-right: 10px;
  }
}
