/* 公共样式表css */
html,
body {
  color: #333;
  height: 100%;
  touch-action: none;
  user-select: none;
  width: 100vw; /* 元素宽度等于视口宽度 */
  height: 100vh; /* 元素高度等于视口高度 */
  font-family: "Myriad Set Pro", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

html,
body,
div,
dl,
dt,
dd,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
button,
fieldset,
form,
input,
legend,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  text-decoration: none;
}

img {
  border: 0;
}

button {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  outline: none;
}

li {
  list-style: none;
}

/* @清浮动 */
.clearfix:after {
  display: block;
  content: " ";
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* @浮动 */
.fl {
  float: left;
}

.fr {
  float: right;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: end;
}

.mg-tp-10 {
  margin-top: 10px;
}

.mg-tp-20 {
  margin-top: 20px;
}

.mg-bt-10 {
  margin-bottom: 10px;
}

.mg-bt-20 {
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

.colorBlue {
  color: #143E89;
}

.swiper-button-prev {
  background-image: url("../images/icon/arrow_left.webp") !important;
}
.swiper-button-next {
  background-image: url("../images/icon/arrow_right.webp") !important;
}

.swiper-pagination-bullet-active {
  background: #143E89 !important;
}

/* 屏幕自适应 */
/* 大于1920的时候 底部导航栏 样式改变 */
@media screen and (max-width: 1920px) {
  body .footer_style {
    padding: 0px 100px;
  }
}

/* 小于1440的时候 顶部导航栏 样式改变 */
@media screen and (min-width: 1440px) and (max-width: 1920px) {
  body .headerStyle .hl_nav .nav_list>li {
    width: 120px;
  }

  body .footer_style {
    height: 341px;
  }

  body .footer_style .footer_content {
    height: 280px;
  }

  body .footer_style .left_content .sub_content {
    font-size: 14px;
  }

  body .footer_style .left_content .imgStyle {
    width: 182px;
    height: 48px;
  }

  body .footer_style .center_content .sub_content li {
    height: 42px;
    line-height: 42px;
  }

  body .footer_style .center_content .sub_content li .title {
    font-size: 20px;
  }

  body .footer_style .center_content .sub_content li .text {
    font-size: 15px;
  }

  body .footer_style .right_content .sub_content img {
    width: 90px;
    height: 90px;
  }

  body .footer_style .right_content .sub_content p {
    font-size: 14px;
  }

  body .footer_style .right_content .emails {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }
}

/* 小于1440的时候 顶部导航栏及body 样式固定 */
@media screen and (max-width: 1440px) {
  body {
    width: 100%;
    min-width: 1200px;
  }
  body .headerStyle {
    width: 100%;
    min-width: 1200px;
  }
  body .headerStyle .hl_nav {
    width: 100%;
    min-width: 1200px;
  }
  body .headerStyle .hl_nav .nav_list>li {
    width: 120px;
    cursor: pointer;
  }
  body .footer_style .left_content .sub_content {
    font-size: 14px;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



/* 头部 start */
.headerStyle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 80px;
  width: 100%;
  background: rgba(0, 0, 0, 0.54);
  border-bottom: 1px solid #C3C3C3;
}

.scrolled_style {
  background: rgba(255, 255, 255, 1);
}

.hl_nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  padding: 0 40px;
}

.hl_nav .left_nav {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hl_nav .logo {
  width: 152px;
  overflow: hidden;
}

.hl_nav .logo a {
  display: block;
}

.hl_nav .logo a img {
  max-width: 100%;
}

.hl_nav .phone {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.hl_nav .phone img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

.hl_nav .nav_list {
  display: inline-flex;
  flex: 1;
  padding-left: 50px;
}

.hl_nav .nav_list>li {
  width: 160px;
  cursor: pointer;
}

.hl_nav .nav_head {
  height: 80px;
  line-height: 80px;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  width: 100%;
  position: relative;
  font-weight: 400;
}

.hl_nav .nav_list>li .active,
.hl_nav .nav_list>li .on_scroll {
  font-weight: 600;
}

.hl_nav .nav_list>li .active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 4px;
  transform: translate(-50%, 0);
  background: #ffffff;
  transition: all .4s;
}

.hl_nav .nav_list>li .on_scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 4px;
  transform: translate(-50%, 0);
  background: #143E89;
  transition: all .4s;
}

.hl_nav .nav_list>li:hover .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 4px;
  transform: translate(-50%, 0);
  background: #ffffff;
  transition: all .4s;
}

.hl_nav .nav_list>li.on_scroll:hover .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 4px;
  transform: translate(-50%, 0);
  background: #143E89;
  transition: all .4s;
}

/* 头部 end */


/* 底部 start */
.footer_style {
  /* width: 100%; */
  min-width: 1200px;
  height: 371px;
  padding: 0px 140px;
  background: #262626;
  /* position: relative; */
}

.footer_style .footer_content {
  height: 310px;
  padding-top: 42px;
}

.footer_style .bottom_content {
  display: flex;
  justify-content: center;
}

.footer_style .bottom_content .left_content {
  width: 400px;
}

.footer_style .bottom_content .center_content {
  width: 300px;
}

.footer_style .bottom_content .right_content {
  width: 400px;
}

.left_content .sub_content {
  color: #ffffff;
  font-size: 16px;
}

.left_content .sub_content li {
  height: 32px;
  line-height: 32px;
}

.left_content .imgStyle {
  width: 222px;
  height: 64px;
  margin-bottom: 14px;
}

.center_content .sub_content li {
  height: 46px;
  line-height: 46px;
}

.center_content .sub_content li .title {
  font-size: 22px;
  color: #ffffff;
}

.center_content .sub_content li .text {
  display: inline-block;
  font-size: 18px;
  color: #888888;
  cursor: pointer;
}

.center_content .sub_content li a:hover .text {
  color: #ffffff;
}

.right_content .sub_content {
  display: flex;
  flex-direction: row;
  color: #ffffff;
}

.right_content .sub_content li {
  margin-right: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.right_content .emails {
  height: 46px;
  line-height: 46px;
  color: #ffffff;
}

.right_content .sub_content img {
  width: 100px;
  height: 100px;
}


.bottom_info {
  border-top: 1px solid #666666;
  height: 60px;
  line-height: 60px;
  width: 100%;
  font-size: 15px;
  text-align: center;
  color: #888888;
}

.bottom_info a {
  color: #888888;
}

.bottom_info a:hover {
  color: #ffffff;
}

.bottom_info .companyName {
  padding-left: 20px;
}
