/* 1.header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  box-sizing: border-box;
  background-color: #9b2b2e;
  /* box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08); */
}

header .inside {
  height: 100%;
}

.header-shadow {
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  animation: skell-header-top 1s ease-out 0s backwards;
}

header .logo {
  float: left;
  display: block;
  width: auto;
  height: 90px;
  line-height: 90px;
}

header .logo img {
  width: auto;
  height: 100%;
}

header .gation {
  float: right;
  box-sizing: border-box;
  font-size: 17px;
  line-height: 90px;
  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;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  visibility: hidden;
  background-color: #ffffff;
  transform: scaleX(0);
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

header .gation li.active::after,
header .gation li:hover::after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

header .gation li:not(:last-child) {
  margin-right: 60px;
}

header .gation li a {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

header .gation li.active a,
header .gation li:hover a {
  font-weight: bolder;
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

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: 100%;
  line-height: 36px;
  text-align: center;
  position: relative;
  color: #ffffff;
  font-size: 16px;
  margin-left: 60px;
}

header .lang .lan-ico {
  width: 23px;
  height: auto;
  margin-left: 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%;
  line-height: 90px;
  cursor: pointer;
  font-weight: bold;
}

header .lang .lan-drop {
  display: none;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  padding: 10px;
  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: 13px;
  margin-right: 7px;
  vertical-align: middle;
  margin-bottom: 4px;
}

header .lang .lan-drop a:hover {
  color: #009fe8;
}

@media (max-width: 1400px) {
  header {
    height: 75px;
  }
  header .logo {
    height: 65px;
    line-height: 75px;
  }
  header .gation {
    font-size: 15px;
    line-height: 75px;
  }
  header .gation li::after {
    height: 3px;
  }
  header .gation li:not(:last-child) {
    margin-right: 30px;
  }
  header .lang {
    margin-left: 30px;
    font-size: 15px;
  }
  header .lang .lan-pull {
    line-height: 75px;
  }
  header .lang .lan-drop {
    top: 55px;
  }
}

@media (max-width: 1000px) {
  header {
    height: 47px;
    top: 0;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .inside {
    background-color: transparent;
  }
  header .gatopen {
    display: block;
  }
  header .logo {
    height: 32px;
    line-height: 47px;
    margin-left: 0;
  }
  header .gation {
    display: none;
    width: 106%;
    margin-right: -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;
    background-color: #9b2b2e;
    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;
  }
  header .gation li.active::after,
  header .gation li:hover::after {
    display: none;
  }
  header .gation li.active a,
  header .gation li:hover a {
    font-weight: bold;
  }
  header .lang {
    margin-left: 0;
    margin-right: 15px;
    font-size: 14px;
  }
  header .lang .lan-pull {
    line-height: 47px;
  }
  header .lang .lan-drop {
    top: 38px;
  }
  header .lang .lan-drop a {
    font-size: 12px;
    line-height: 28px;
  }
  header .lang .lan-drop a img {
    width: 12px;
    margin-bottom: 3px;
  }
  header .lang .lan-ico {
    width: 18px;
    margin-right: 2px;
    margin-bottom: 3px;
  }
  header .lang .lan-row {
    width: 10px;
    margin-left: 1px;
    margin-bottom: 2px;
  }
}

/* 2.index-swiper */
.index-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}

.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: flex-start;
  justify-content: center;
}

.index-swiper h2 {
  font-size: 45px;
  line-height: 55px;
}

.index-swiper p {
  font-size: 35px;
  line-height: 45px;
  margin-top: 20px;
}

/* 初始状态，注意设置相对定位 */
.index-swiper em {
  margin-top: 40px;
  display: block;
  width: 130px;
  height: 47px;
  line-height: 45px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  font-size: 14px;
  border: 1px solid #ffffff;
  text-transform: uppercase;
  position: relative;
}

.index-swiper em:hover {
  background-color: #9b2b2e;
  border: 1px solid #9b2b2e;
}

/* 默认样式修改 */
.index-swiper .swiper-pagination {
  width: 95%;
  max-width: 1400px;
  text-align: right;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}
.index-swiper .swiper-pagination-bullet {
  width: 80px;
  height: 6px;
  opacity: 1;
  background-color: #ffffff;
  border-radius: 0;
}
.index-swiper .swiper-pagination-bullet-active {
  background-color: #1d2087;
  opacity: 1;
}
.index-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

@media (max-width: 1400px) {
  .index-swiper {
    margin-top: 75px;
  }
  .index-swiper h2 {
    font-size: 32px;
    line-height: 43px;
  }
  .index-swiper p {
    font-size: 23px;
    line-height: 37px;
    margin-top: 15px;
  }
  .index-swiper em {
    margin-top: 30px;
    font-size: 12px;
    width: 120px;
    height: 38px;
    line-height: 36px;
  }
  .index-swiper .swiper-pagination {
    bottom: 15px;
  }
  .index-swiper .swiper-pagination-bullet {
    width: 60px;
    height: 4px;
  }
}

@media (max-width: 1000px) {
  .index-swiper {
    margin-top: 47px;
  }
  .index-swiper h2 {
    font-size: 21px;
    line-height: 30px;
  }
  .index-swiper p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 7px;
  }
  .index-swiper em {
    margin-top: 20px;
    width: 110px;
    height: 34px;
    line-height: 32px;
    font-size: 12px;
  }
  .index-swiper .swiper-pagination {
    bottom: 7px;
  }
  .index-swiper .swiper-pagination-bullet {
    width: 32px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .index-swiper {
    height: 230px;
  }
}

/* 3.banner */
.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-top: 90px;
}

.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: 12px;
}

@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 .sub .ico {
    height: 25px;
    margin-right: 10px;
  }
  .banner .sub span i {
    font-size: 22px;
    line-height: 22px;
  }
  .banner .sub span s {
    font-size: 12px;
    line-height: 12px;
    margin-top: 10px;
  }
}

@media (max-width: 500px) {
  .banner {
    height: 150px;
  }
}

/* 4.footer */
footer {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-color: #9b2b2e;
    color: #ffffff;
    /* background: url(/images/liman/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: 180px;
  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: 30px;
}

footer .info li:not(:first-child) {
  margin-top: 15px;
}

footer .info li span {
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
  opacity: 0.7;
}

footer .info li span i:first-child {
  margin-right: 15px;
}

footer .info li img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

footer .link {
  display: flex;
}

footer .link li:not(:last-child) {
  margin-right: 40px;
}

footer .link a {
  display: block;
  color: #ffffff;
  opacity: 0.8;
  font-size: 15px;
  line-height: 37px;
  text-align: center;
}

footer .link a:first-child {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
  opacity: 0.7;
}

footer .link a:hover {
  opacity: 1;
  text-decoration: underline;
}

footer .code {
  margin-top: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .code h3 {
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
}

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 img {
  opacity: 0.6;
}

footer .code ul li:hover img {
  opacity: 1;
}

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: 28px;
  height: 28px;
  cursor: pointer;
}

footer .code ul li:first-child .icon {
  width: 21px;
  height: 21px;
}

footer .code ul li:hover .qr {
  display: block;
}

footer .copy {
  width: 100%;
  height: auto;
  padding: 10px 0;
  text-align: center;
  background-color: #006029;
}

footer .copy a {
  color: #ffffff;
  opacity: 0.7;
  font-size: 14px;
}

footer .copy a:hover {
  text-decoration: underline;
}

footer .copy a:not(:last-child) {
  margin-right: 55px;
}

@media (max-width: 1400px) {
  footer .bom {
    margin-top: 40px;
  }
  footer .logo {
    width: 160px;
  }
  footer .link li:not(:last-child) {
    margin-right: 30px;
  }
}

@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: 120px;
    margin: 0 auto;
  }
  footer .info {
    margin-top: 15px;
  }
  footer .info li:not(:first-child) {
    margin-top: 10px;
  }
  footer .info li img {
    margin-right: 7px;
    width: 18px;
    height: 18px;
  }
  footer .info li span {
    font-size: 13px;
    line-height: 27px;
  }
  footer .info li span i:first-child {
    margin-right: 7px;
  }
  footer .code {
    margin-top: 80px;
  }
  footer .code ul li:not(:last-child) {
    margin-right: 20px;
  }
  footer .code h3 {
    font-size: 15px;
  }
  footer .code ul li .qr {
    width: 56px;
    height: 66px;
    top: -70px;
  }
  footer .code ul li .icon {
    width: 21px;
    height: 21px;
  }
  footer .code ul li:first-child .icon {
    width: 15px;
    height: 15px;
  }
  footer .copy a {
    display: block;
    font-size: 12px;
    line-height: 27px;
  }
  footer .copy a:not(:last-child) {
    margin-right: 0;
  }
}

/* 5.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: 45px;
  line-height: 45px;
  margin-top: 5px;
  font-weight: bold;
}

.title h2 {
  font-size: 35px;
  padding-bottom: 20px;
  position: relative;
  margin-top: -40px;
}

.title h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  background-color: #1d2087;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.title-lf h2::after {
  left: 0;
  transform: translateX(0);
}

.title-line-rg h2 {
  padding-bottom: 0;
}

.title-line-rg h2::after {
  left: calc(100% + 20px);
  bottom: 43%;
}

.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-more {
  display: block;
  width: 140px;
  height: 50px;
  line-height: 50px;
  background-color: #1d2087 !important;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.title-more:hover {
  color: #ffffff;
  background-color: #9b2b2e !important;
}

@media (max-width: 1400px) {
  .title-abu h3 {
    font-size: 30px;
  }
  .title-more {
    width: 120px;
    height: 42px;
    line-height: 42px;
  }
}

@media (max-width: 1000px) {
  .title-abu h3 {
    font-size: 24px;
  }
  .title h2 {
    font-size: 24px;
    margin-top: -26px;
    padding-bottom: 15px;
  }
  .title-noline h2 {
    padding-bottom: 0;
  }
  .title-line-rg h2 {
    padding-bottom: 0;
  }
  .title h2::after {
    width: 30px;
  }
  .title-line-rg h2::after {
    left: calc(100% + 15px);
  }
  .title em {
    font-size: 32px;
    line-height: 32px;
  }
  .title-more {
    width: 90px;
    height: 37px;
    line-height: 37px;
    font-size: 12px;
  }
}
