/*================基本样式重置================*/
html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
span,
i,
a,
em,
strong,
b,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  outline: none;
}

i,
em {
  font-weight: normal;
  font-style: normal;
}

b {
  font-weight: normal;
}

a,
i,
em,
span,
b,
img {
  display: block;
}

body {
  color: #333;
  font-family: Microsoft YaHei, Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  overflow-x: hidden;
}

li {
  list-style: none;
}

a,
img,
input {
  border: 0 none;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

a:focus,
input:focus {
  outline: 0 none;
}

input::-webkit-search-cancel-button {
  display: none;
}

/*清除谷歌浏览器下的 search 叉号*/
input::-ms-clear {
  display: none;
}

/*清除IE下的 search 叉号*/
input {
  background: none;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
}

textarea {
  resize: none;
  font-size: 12px;
}

/*去掉火狐和谷歌浏览器的Textarea改变尺寸大小功能*/
/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  outline: none;
}


/* 弹窗背景遮罩 */
.pop_video_bac {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: none;
}

/* 弹窗容器 */
.pop_tip {
  position: fixed;
  top: calc(50% - 180px);
  left: calc(50% - 255px);

  z-index: 9999;
  display: none;
  background: url(../images/zjpage/pop_sybac.png) no-repeat;
  width: 506px;
  height: 337px;


}



.pop_images {
  background: url(../images/zjpage/pop_sy01.png) no-repeat;
  width: 152px;
  height: 126px;
  margin: 70px auto 35px;
  background-size: 100% 100%;
}

/* 弹窗内容 */
.pop_tip_content {
  position: relative;
  text-align: center;
}

/* 弹窗文本 */
.pop_tip_text {
  font-size: 24px;
  color: #333;
  margin: 0;
  line-height: 40px;
  height: 40px;
  text-align: center;
  font-weight: bold;
}

/* 关闭按钮 */
.pop_delete {
  position: absolute;
  top: -110px;
  right: 0px;
  /* background-color: #093b94; */
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  width: 31px;
  height: 31px;
  background: url(../images/zjpage/icon/i32.png) center no-repeat;
  border-radius: 31px;
  cursor: pointer;

}



@media screen and (max-width: 1200px) {
  .pop_tip {
    top: calc(50% - 4rem);
    left: calc(50% - 5rem);
    background: url(../images/zjpage/pop_sybac.png) no-repeat;
    width: 10rem;
    height: 8rem;
    background-size: 100% 100%;

  }

  .pop_tip_text {
    font-size: 0.7rem;
    height: 0.8rem;
    line-height: 0.8rem;
  }

  .pop_images {
    background: url(../images/zjpage/pop_sy01.png) no-repeat;
    background-size: 100% 100%;
    width: 5rem;
    height: 4.5rem;
    margin: 1rem auto 0.5rem;

  }

  .pop_delete {
    top: -2.5rem;
    right: 0rem;
    width: 1rem;
    height: 1rem;
    background: url(../images/zjpage/icon/i32.png) center no-repeat;
    background-size: 100% 100%;
  }
}

/*========定义基础样式========*/
.hide {
  display: none;
}

.vis {
  visibility: hidden;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
}

.clearfix {
  zoom: 1;
}

/*a标签鼠标hover高亮显示状态（可选用）*/
a .opacity {
  filter: alpha(opacity=100);
  opacity: 1;
  -moz-opacity: 1;
}

a:hover .opacity {
  filter: alpha(opacity=80);
  opacity: 0.8;
  -moz-opacity: 0.8;
}

.over {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text_over1 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text_over2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text_over3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text_over4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.text_over5 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.text_over6 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

/*主体宽度样式（可选用）如有新宽度，命名规则以小写w开头，后接具体宽度数据，例：*/
.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.w1600 {
  width: 83.33%;
  min-width: 1200px;
  margin: 0 auto;
}

.w1400 {
  width: 72.91%;
  min-width: 1200px;
  margin: 0 auto;
}

@font-face {
  font-family: "DINPro-Black";
  src: url("../font/DINPro-Black.otf");
}

@font-face {
  font-family: "DINPro-Bold";
  src: url("../font/DINPro-Bold.otf");
}

@font-face {
  font-family: "poppins";
  src: url("../font/Poppins-Regular.ttf");
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s;
  height: 100px;
}

.header::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -1px;
  background: rgba(255, 255, 255, 0.5);
  height: 1px;
}

.header.curr {
  opacity: 0;
  pointer-events: none;
}

.header.header_fixed,
.headerBox.headerBg .header {
  background: #fff;
  height: 100px;
  border-bottom: none;
}

.header.header_fixed:after,
.headerBox.headerBg .header:after,
.header:hover::after {
  background: #dcdcdc;
}

.header .search {
  display: flex;
}

.header .search input {
  width: 45px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  color: #fff;
}

.header .search .searchIcon {
  width: 30px;
  height: 32px;
  background: url(../images/index/search.png) center no-repeat;
  cursor: pointer;
}

.subIcon {
  width: 30px;
  height: 26px;
  background: url(../images/index/icon-18.png) center no-repeat;
  cursor: pointer;
  margin-left: 1.2vw;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 80%;
  width: auto;
  max-width: 15vw;
  min-width: 200px;
}

.hoverImg {
  display: none;
}

.header_fixed .defalutImg,
.headerBg .defalutImg {
  display: none;
}

.header_fixed .hoverImg,
.headerBg .hoverImg {
  display: block;
}

.headerRight {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex: 1;
}

.w1500 {
  width: 78.12%;
  min-width: 1200px;
  margin: 0 auto;
  max-width: 1920px;
}

.w1400 {
  width: 72.91%;
  min-width: 1200px;
  margin: 0 auto;
  max-width: 1500px;
}

/*锚点定位*/
.anchorF {
  position: relative;
}

.anchor {
  position: absolute;
  left: 0;
  top: -100px;
  width: 100%;
  height: 1px;
  z-index: -1;
  opacity: 0;
}

.content {
  min-height: 500px;
}

@media (max-width: 1200px) {

  .w,
  .w1200,
  .w1400,
  .w1600 {
    margin: 0 auto;
    width: 92%;
    min-width: 0%;
  }

  /*锚点定位*/
  .anchor {
    top: -1.8rem;
  }

  .content {
    min-height: 70vh;
  }
}

/* 去除点击选项卡时出现的蓝色边框 */
.swiper-pagination .swiper-pagination-bullet:focus,
.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

/* 去除点击选项卡时出现的蓝色背景 */
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: " ";
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}

@keyframes menu_circle {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  80% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}

.footer {
  position: relative;
  z-index: 3;
}

.m_header,
.m_nav {
  display: none;
}

.mobileShow {
  display: none;
}

@media (max-width: 1200px) {
  .pcShow {
    display: none;
  }

  .mobileShow {
    display: block;
  }

  .header {
    display: none;
  }

  .m_header {
    transition: all 0.5s;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 21;
    width: 100%;
  }

  .m_header .logo {
    display: flex;
    align-items: center;
    height: 2.2rem;
  }

  .m_header .logo img {
    display: block;
    width: 6.1rem;
    min-width: 6.1rem;
  }

  .m_header .nav_icon {
    width: 0.9rem;
    height: 2.2rem;
    background: url(../images/mobile/icon/icon-1s.png) center no-repeat;
    background-size: 0.8rem auto;
  }

  .m_header .nav_icon.cur {
    background: url(../images/mobile/icon/icon-2s.png) center no-repeat;
    background-size: 0.8rem auto;
  }

  .m_header_fixed .nav_icon.cur,
  .headerBg .m_header .nav_icon.cur {
    background-image: url(../images/mobile/icon/icon-2.png);
  }

  .m_header .search {
    margin-right: 0.84rem;
    width: 0.8rem;
    height: 2.2rem;
    background: url(../images/mobile/icon/search.png) center no-repeat;
    background-size: 100% auto;
  }

  .m_header.cur {
    background: #01409f;
  }

  .m_header_fixed,
  .page_box2 .m_header,
  .headerBg .m_header {
    background: #fff;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  }

  .m_header.m_header_fixed,
  .headerBg .m_header {
    background: #fff;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  }

  .m_header .logo .m2 {
    display: none;
  }

  .m_header.m_header_fixed .logo .m1,
  .headerBg .m_header .logo .m1 {
    display: none;
  }

  .m_header.m_header_fixed .logo .m2,
  .headerBg .m_header .logo .m2 {
    display: block;
  }

  .m_header_fixed .search,
  .headerBg .m_header .search {
    background: url(../images/mobile/icon/searchs.png) center no-repeat;
    background-size: 100% auto;
  }

  .m_header_fixed .nav_icon,
  .headerBg .m_header .nav_icon {
    background: url(../images/mobile/icon/icon-1.png) center no-repeat;
    background-size: 0.8rem auto;
  }

  .m_nav {
    transition: all 0.8s;
    display: block;
    position: fixed;
    left: 0;
    top: -100%;
    z-index: 20;
    width: 100%;
    height: 100vh;
  }

  .m_nav_bac {
    transition: all 1s;
    display: block;
    position: fixed;
    left: 0;
    bottom: calc(100% + 3rem);
    z-index: 19;
    width: 100%;
    height: calc(100vh + 3rem);
  }

  .m_nav_bac .top {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #01409f url(../images/zjpage/icon/i35.png) right bottom no-repeat;
    background-size: 7.25rem auto;
  }

  .m_nav_bac .bac {
    width: 100%;
    height: 3rem;
    background: url(../images/zjpage/icon/i34.png) left bottom no-repeat;
    background-size: 100% 3rem;
  }

  .m_nav.cur {
    transition: all 0.8s;
    top: 0;
  }

  .m_nav_bac.cur {
    transition: all 1s;
    bottom: -3rem;
  }

  .m_nav .w {
    margin-top: 2.2rem;
    width: 100%;
    height: calc(100% - 2.2rem);
    overflow-y: auto;
  }

  .m_nav .w .one {
    opacity: 0;
    transition: all 0.7s;
    position: relative;
    line-height: 2.8rem;
    transform: translateY(50%);
  }

  .m_nav .w .one:nth-child(1) {
    border-top: #557fbf 1px solid;
  }

  .m_nav .w .one .one_a {
    margin: 0 auto;
    width: 92%;
    font-size: 0.64rem;
    font-weight: bold;
    color: #fff;
    border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
  }

  .m_nav .w .one .oneMore {
    transition: all 0.5s;
    display: none;
    position: absolute;
    right: 4%;
    top: 0.4rem;
    width: 2rem;
    height: 2rem;
    background: url(../images/zjpage/icon/i33.png) center no-repeat;
    background-size: 0.36rem auto;
  }

  .m_nav .w .one.on .one_a {
    border-bottom: rgba(255, 255, 255, 0) 1px solid;
  }

  .m_nav .w .one .oneMore.on {
    background-image: url(../images/zjpage/icon/i33s.png);
  }

  .m_nav .w .one .pos {
    display: none;
    padding: 0 0.5rem;
    background: #0c3e88;
  }

  .m_nav .w .one .pos .twoNav {
    position: relative;
  }

  .m_nav .w .one .pos .two_a {
    margin: 0 auto;
    width: 92%;
    line-height: 2.4rem;
    font-size: 0.6rem;
    color: #fff;
  }

  .m_nav .w .one.cur .oneMore {
    display: block;
  }

  .m_nav.cur .w .one {
    opacity: 1;
    transition: all 0.7s;
    transform: translateY(0);
  }

  .m_nav.cur .w .one:nth-child(1) {
    transition-delay: 0.6s;
  }

  .m_nav.cur .w .one:nth-child(2) {
    transition-delay: 0.7s;
  }

  .m_nav.cur .w .one:nth-child(3) {
    transition-delay: 0.8s;
  }

  .m_nav.cur .w .one:nth-child(4) {
    transition-delay: 0.9s;
  }

  .m_nav.cur .w .one:nth-child(5) {
    transition-delay: 1s;
  }

  .w1500,
  .w1600 {
    width: 92%;
    min-width: 0%;
    margin: 0 auto;
  }

  .content .pageNav .w1500 {
    min-width: 0% !important;
    width: 100% !important;
    border-radius: 0 !important;
  }

  .content .pageNav .w1500 .swiper {
    margin: 0 0.6rem !important;
  }

  .content .pageNav .w1500 .swiper .swiper-wrapper .swiper-slide {
    width: auto !important;
    font-size: 0.56rem !important;
    line-height: 1.85rem !important;
    margin: 0 0.35rem;
  }

  .content .pageNav .w1500 .swiper .swiper-wrapper .swiper-slide:first-child {
    margin-left: 0;
  }

  .content .pageNav .w1500 .swiper .swiper-wrapper .swiper-slide:last-child {
    margin-right: 0;
  }

  .content .pageNav .w1500 .swiper .swiper-wrapper {
    justify-content: flex-start !important;
  }
}

@media (max-width: 1500px) {
  .swiper-button-prev {
    left: 2%;
  }

  .swiper-button-next {
    right: 2%;
  }
}

.navCont {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  height: 100%;
}

.navContList {
  padding: 0 1.8vw;
  height: 100%;
  position: relative;
}

.navContList:first-child {
  margin-left: 0;
}

.navContList .navDivideList {
  font-size: 18px;
  color: #fff;
  transition: all 0.5s;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.navContList .navDivideList:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #fff;
  transition: all 0.5s;
  z-index: 2;
}

.navBg {
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: fixed;
  top: 0;
  height: 36vw;
  min-height: 689px;
  transition: all 0.7s;
  background: url(../images/page/navBg.png) center no-repeat;
  background-size: cover;
  transform: translateY(-100%);
}

.navBg.curr {
  transform: translateY(0);
}

.navContList:hover .pos {
  transition: all 0.7s;
  height: auto;
  opacity: 1;
}

.navContList .pos .w1500 {
  display: flex;
  justify-content: center;
}

.navContList .pos .bacLeft {
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.header_shade {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 19;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.bacTitle {
  font-size: 28px;
}

.bacInfo {
  margin-top: 35px;
}

.bacInfoList {
  font-size: 18px;
  color: #fff;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.43, 0.195, 0.02, 1), transform 1s cubic-bezier(0.43, 0.195, 0.02, 1), color 0.3s cubic-bezier(0.43, 0.195, 0.02, 1);
  transform: translateY(20px);
}

.bacInfoList:nth-child(1) {
  transition-delay: 0.05s;
}

.bacInfoList:nth-child(2) {
  transition-delay: 0.1s;
}

.bacInfoList:nth-child(3) {
  transition-delay: 0.15s;
}

.bacInfoList:nth-child(4) {
  transition-delay: 0.2s;
}

.bacInfoList:nth-child(5) {
  transition-delay: 0.25s;
}

.bacInfoList:nth-child(6) {
  transition-delay: 0.3s;
}

.bacInfoList:nth-child(7) {
  transition-delay: 0.35s;
}

.bacInfoList:nth-child(8) {
  transition-delay: 0.4s;
}

.navContList:hover .navDivideList {
  font-weight: bold;
}

.navContList:hover .bacInfoList {
  opacity: 0.6;
  transform: translateY(0);
}

.bacInfoList:hover {
  opacity: 1 !important;
  font-weight: bold;
  transition-delay: 0s !important;
}

.navContList:hover .pos .bacLeft {
  pointer-events: auto;
}

.bacRight {
  margin-top: 75px;
  width: 41.33%;
  height: 317px;
  margin-left: 14%;
  border-radius: 15px;
  overflow: hidden;
}

.bacRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagePubNav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 100px;
  background: #fff;
  overflow: hidden;
  transition: all 0.5s;
  height: 90px;
  z-index: 15;
}

.pagePubNav:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #dcdcdc;
  height: 1px;
}

.pagePubNav .w1600,
.pubContMargin.pageNav .bot .w1600 {
  display: flex;
  align-items: center;
}

.pageNav .bot .swiper {
  overflow: hidden;
  margin-left: 0;
}

.pagePubNav .navPosSwiper {
  display: flex;
  align-items: center;
}

.navPosSwiper .swiper-slide {
  width: auto;
  font-size: 18px;
  color: #333;
  line-height: 90px;
  padding: 0 2vw;
}

.navPosSwiper .swiper-slide:first-child {
  padding-left: 0;
}

.navPosSwiper .swiper-slide:last-child {
  padding-right: 0;
}

.navPosSwiper .swiper-slide a {
  color: #333;
}

.navPosSwiper {
  overflow: hidden;
}

.navPosBtn .swiper-button-next,
.navPosBtn .swiper-button-prev {
  position: initial;
  width: 27px;
  height: 14px;
  margin: 0;
}

.navPosBtn {
  display: flex;
  align-items: center;
  margin-left: 2vw;
}

.navPosBtn .swiper-button-next:after,
.navPosBtn .swiper-button-prev:after {
  display: none;
}

.navPosBtn .swiper-button-prev {
  background: url("../images/icon/icon-10.png") center no-repeat;
  background-size: cover;
}

.navPosBtn .swiper-button-prev:hover {
  background: url("../images/icon/icon-10s.png") center no-repeat;
  background-size: cover;
}

.navPosBtn .line {
  width: 1px;
  height: 40px;
  background: #dcdcdc;
  margin: 0 18px;
  display: none;
}

.navPosBtn .swiper-button-next:before {
  content: "";
  width: 1px;
  height: 40px;
  background: #dcdcdc;
  margin-left: -64px;
}

.navPosBtn .swiper-button-next {
  background: url("../images/icon/icon-11.png") center no-repeat;
  background-size: cover;
  margin-left: 36px;
}

.navPosBtn .swiper-button-next:hover {
  background: url("../images/icon/icon-11s.png") center no-repeat;
  background-size: cover;
}

.navPosText {
  position: relative;
}

.navPosText:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #d80002;
  transition: all 0.3s;
}

.navPosSwiper .swiper-slide.curr .navPosText,
.navPosSwiper .swiper-slide:hover .navPosText {
  color: #d80002;
}

.navPosSwiper .swiper-slide.curr .navPosText:after,
.navPosSwiper .swiper-slide:hover .navPosText:after {
  width: 100%;
}

.pagePubMargin {
  margin-top: 190px !important;
}

.pagePubMargin .contentBg {
  height: calc(100vh - 190px);
}

/*.header_fixed .navContList:hover .navDivideList,
.header_fixed .navContList.curr .navDivideList,
.headerBg .navContList:hover .navDivideList,
.headerBg .navContList.curr .navDivideList {
    color: #4293f7 !important;
}*/
.navContList:hover .navDivideList:after,
.navContList.curr .navDivideList:after {
  width: 100%;
}

.header.header_fixed .navContList .navDivideList,
.headerBox.headerBg .header .navContList .navDivideList {
  color: #333;
}

.header.active .navContList .navDivideList {
  color: #fff !important;
}

.header.active .search .searchIcon {
  background: url(../images/index/search.png) center no-repeat !important;
}

.header.active .defalutImg {
  display: block;
}

.header.active .hoverImg {
  display: none;
}

.header_fixed .phoneOuter,
.headerBg .phoneOuter {
  background: url("../images/index/outer-1s.png") center no-repeat;
  background-size: cover;
}

.header_fixed .enterOuter,
.headerBg .enterOuter {
  background: url("../images/index/outer-2s.png") center no-repeat;
  background-size: cover;
}

.header_fixed .outerChainText,
.headerBg .outerChainText {
  color: #333;
}

.header_fixed .outerChain:after {
  background: #cbe6ff;
}

.header_fixed .langIcon,
.headerBg .langIcon {
  background: url(../images/icon/icon-1s.png) center no-repeat;
  background-size: cover;
}

.header_fixed .langText,
.headerBg .langText {
  color: #333;
}

.header_fixed .headerMenu,
.headerBg .headerMenu {
  background: url(../images/mobile/icon/icon-1s.png) center no-repeat;
  background-size: cover;
}

.header.header_fixed .searchIcon,
.headerBox.headerBg .header .searchIcon {
  background: url(../images/index/searchs.png) center no-repeat;
}

.header.header_fixed .subIcon,
.headerBox.headerBg .header .subIcon {
  background: url(../images/index/icon-18s.png) center no-repeat;
}

.header.header_fixed .search input,
.headerBox.headerBg .header .search input {
  color: #333;
}

.checkLang {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  margin-left: 1.2vw;
}

.langInfo {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.langInfo .pos {
  position: absolute;
  width: 110px;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  padding-top: 15px;
  display: none;
  z-index: 10;
}

.langInfo .posInfo {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  position: relative;
}

.langInfo .posInfo a {
  color: #333;
  text-align: center;
  line-height: 50px;
  border-top: 1px solid #ededed;
  margin: 0 10px;
}

.langInfo .posInfo a:hover {
  color: #da0e10;
}

.langInfo .posInfo a:first-child {
  border-top: none;
}

.langInfo .posInfo:after {
  content: "";
  position: absolute;
  background: url(../images/public/top.png) center no-repeat;
  width: 13px;
  height: 6px;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.langInfo:hover .pos {
  display: block;
}

.langIcon {
  width: 19px;
  height: 19px;
  background: url("../images/icon/icon-1.png") center no-repeat;
  background-size: cover;
}

.langText {
  color: #fff;
  font-size: 18px;
  margin-left: 7px;
}

.navContList .pos {
  position: absolute;
  left: 50%;
  top: 99px;
  transform: translateX(-50%);
  width: 120%;
  height: 0;
}

.navContList .pos .posInfo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navPosList {
  height: 90px;
}

/* .header .navContList:hover .navPosList{
    height: 90px;
} */
.navPosList a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 18px;
  margin: 0 45px;
}

.navPosList a:hover {
  color: #0a3c95;
}

.header .navContList .pos .w1600 {
  display: flex;
  height: 100%;
  padding-top: 10vh;
  box-sizing: border-box;
}

.opticalLeft,
.opticalRight {
  position: relative;
  z-index: 1;
}

.consultingText {
  font-size: 42px;
  margin-top: 25px;
}

.consultingText p {
  line-height: 1;
  font-weight: bold;
  font-family: "DINPRO-BOLD";
}

.consultingText em {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 20px;
  color: #e7e7e7;
  font-family: "DINPRO-MEDIUM";
}

.opticalRight:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 70%;
  background: #dcdcdc;
}

.opticalRight {
  margin-left: 8vw;
}

.opticalList {
  display: flex;
  flex-wrap: wrap;
  width: 45vw;
}

.opticalList a {
  color: #333;
  margin-top: 30px;
  font-size: 18px;
  margin-left: 8vw;
  width: calc((100% - 16vw) / 2);
}

.opticalList a:hover {
  color: #d80002;
}

.header .navContList .pos1 {
  background: #eee;
}

.header .headerNewBox {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.goTop {
  width: 74px;
  cursor: pointer;
  margin: 0 auto;
}

.content {
  position: relative;
  z-index: 1;
}

.contentBg {
  position: sticky;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  pointer-events: none;
  overflow: hidden;
}

/*.contentBg.curr{
    position: fixed;
    top: 100px;
}*/
.firstBg {
  width: 66.82%;
  position: absolute;
  transform: translate(-40%, -40%);
  animation: bgMoveLeft 4s ease-in-out infinite;
}

@keyframes bgMoveLeft {
  0% {
    transform: translate(-40%, -40%);
  }

  50% {
    transform: translate(-55%, -55%);
  }

  100% {
    transform: translate(-40%, -40%);
  }
}

.lastBg {
  width: 66.82%;
  position: absolute;
  transform: translate(40%, 40%);
  animation: bgMoveRight 4s ease-in-out infinite;
  right: 0;
  bottom: 0;
}

@keyframes bgMoveRight {
  0% {
    transform: translate(40%, 40%);
  }

  50% {
    transform: translate(55%, 55%);
  }

  100% {
    transform: translate(40%, 40%);
  }
}

.pubContMargin {
  margin-top: calc(-100vh + 100px);
}

.pagePubMargin .pubContMargin {
  margin-top: calc(-100vh + 190px);
}

.pageSearch {
  padding-top: 110px;
}

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

.consultingMore {
  margin-top: 10px;
  position: relative;
  color: #333;
}

.consultingMore span {
  font-size: 18px;
  padding-right: 50px;
}

.consultingMore .arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  right: -20px;
  top: -18px;
  z-index: -1;
}

.consultingMore .arrow:before,
.consultingMore .arrow:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.consultingMore .arrow em {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  z-index: 10;
}

.consultingMore .arrow em:before,
.consultingMore .arrow em:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #da0e10;
  margin: -1px 0 0 -5px;
  display: block;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
  z-index: 10;
}

.consultingMore .arrow em:before {
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.consultingMore .arrow em:after {
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}

.consultingMore .arrow div {
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(222, 28, 28, 0.8);
  border-radius: 50%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.consultingMore .arrow div:before {
  content: "";
  position: absolute;
  right: -5%;
  top: -5%;
  width: 0;
  height: 110%;
  background: #fff;
}

.consultingMore .arrow div:after {
  content: "";
  position: absolute;
  left: -5%;
  top: -5%;
  width: 110%;
  height: 110%;
  background: #fff;
}

.consultingMore:after {
  content: "";
  position: absolute;
  right: 20px;
  z-index: 10;
  margin-top: 1px;
  width: 22px;
  height: 2px;
  background: #da0e10;
  margin-right: -12px;
  transform: translateY(-50%);
  transition: all ease 0.3s;
  top: 11px;
}

.consultingMore .arrow.animate em:before {
  animation: arrowUp 1.6s ease forwards;
}

.consultingMore .arrow.animate em:after {
  animation: arrowDown 1.6s ease forwards;
}

.consultingMore .arrow.animate em {
  animation: arrow 1.6s ease forwards;
}

.consultingMore .arrow.animate div:before {
  width: 110%;
  transition: all ease 0.5s;
  transition-delay: 0.6s;
}

.consultingMore .arrow.animate div:after {
  width: 0;
  transition: all ease 0.5s;
  transition-delay: 0.3s;
}

@keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.footer {
  background: #0f419a;
  padding-top: 75px;
}

.footerImg img {
  width: 100%;
}

.footerLogo {
  width: 81.25%;
  height: 40px;
  display: flex;
  align-items: center;
}

.footerLogo img {
  width: 100%;
}

.mobileCode img {
  width: 100%;
}

.footerTop {
  display: flex;
  justify-content: space-between;
}

.footerTopInfo {
  display: flex;
  align-items: center;
}

.informationList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 200px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  margin-left: 20px;
  cursor: pointer;
}

.informationList:first-child {
  margin-left: 0;
}

.informationListTitle {
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.informationIcon {
  margin-left: 10px;
}

.informationList .pos {
  position: absolute;
  top: 100%;
  left: 0;
  background: url("../images/public/footerTabBg.png") center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  display: none;
  z-index: 1;
  max-height: 260px;
  overflow-y: auto;
}

.informationList .pos .posList {
  color: #333333;
  text-align: center;
  font-size: 18px;
  position: relative;
  padding: 10px 0;
}

.informationList .pos .posList:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #edd73f;
  transition: width 0.3s ease-in-out;
}

.informationList .pos .posList:hover:after {
  width: 100%;
}

.characteristicTitle {
  font-size: 64px;
  color: #fff;
}

.characteristicCont {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.characteristicCode {
  position: relative;
  cursor: pointer;
}

.characteristicCodeIcon {
  width: 62px;
}

.characteristicCodeImg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 161px;
  top: calc(100% + 20px);
  display: none;
}

.footerMain {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* padding-bottom: 60px; */
}

.friendshipLink {
  display: flex;
  align-items: center;
  height: 55px;
  cursor: pointer;
  position: relative;
  background: #577ab8;
  margin-top: 40px;
  width: 16.41vw;
  padding: 0 20px 0 25px;
  box-sizing: border-box;
  border: 1px solid #fff;
}

.friendshipLinkDefault {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.friendshipLinkCont {
  display: flex;
  align-items: center;
}

.friendshipLinkText {
  font-size: 16px;
  color: #fff;
  margin-left: 8px;
}

.friendshipLinkIcon {
  width: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.friendshipLinkIcon img {
  width: 18px;
}

.friendshipLink .pos {
  position: absolute;
  bottom: 100%;
  left: -1px;
  background: #fff;
  background-size: cover;
  width: calc(100% + 2px);
  padding: 20px 25px;
  box-sizing: border-box;
  z-index: 1;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid #ededed;
  display: none;
}

.friendshipLink .pos .posList {
  color: #666;
  text-align: center;
  font-size: 16px;
  position: relative;
  padding: 10px 0;
}

.friendshipLink .pos .posList:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #0a3c95;
  transition: width 0.3s ease-in-out;
}

.friendshipLink .pos .posList:hover:after {
  width: 100%;
}

.friendshipLink .pos::-webkit-scrollbar {
  width: 4px;
  height: 2px;
}

.friendshipLink .pos::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #0a3c95;
}

.friendshipLink .pos::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0);
  background: #f7f7f7;
}

.ewmInfo {
  display: flex;
  margin-top: 55px;
}

.ewmInfoList {
  margin-left: 34px;
}

.ewmInfoList:first-child {
  margin-left: 0;
}

.ewmInfoText {
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
}

.footerCont {
  display: flex;
}

.footerContMain {
  margin-top: 200px;
  display: flex;
  align-items: center;
}

.footerContList {
  font-size: 18px;
  position: relative;
}

.footerContListTitle {
  font-size: 20px;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.footerContInfo {
  margin-top: 40px;
}

.footerContInfoList {
  margin-top: 18px;
  color: #fff;
  font-size: 16px;
  opacity: 0.6;
  transition: all 0.5s;
}

.footerContInfoList:hover {
  opacity: 1;
}

.footerContInfoList:first-child {
  margin-top: 0;
}

.footerContList:first-child {
  margin-left: 0;
}

.footerContName {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
  box-sizing: border-box;
  border-bottom: 1px solid #d9d9d9;
}

.footerContTitle {
  margin-left: 10px;
  color: #fff;
  font-size: 16px;
}

.footerContText {
  font-size: 18px;
  color: #fff;
  margin-top: 25px;
}

.footerContText.phone {
  font-size: 30px;
  font-weight: bold;
}

.footerContText.address {
  font-size: 18px;
  width: 240px;
}

.footerLeft {
  width: 21.33%;
}

.footerRight {
  width: calc(100% - 34%);
}

.footerCont {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footerCode {
  margin-left: 5vw;
}

.footerCodeText {
  font-size: 14px;
  color: #999999;
  margin-left: 1vw;
  /* text-align: center; */
  margin-bottom: 10px;
}

.footerCodeIcon {
  margin-left: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerCodeIcon .icon1 {
  margin-right: 10px;
  width: 42px;
  height: 42px;
}

.footerCodeIcon .icon1 img {
  background-size: 100% 100%;
  background-size: cover;
}

.footerCodeIcon .icon2 {
  margin-right: 10px;
  width: 42px;
  height: 42px;
}

.footerCodeIcon .icon2 img {
  background-size: 100% 100%;
  background-size: cover;
}

.footerCodeImg {
  margin-top: 8px;
}

.footerBottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 75px;
}

.copyright {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
}

.copyrightCont {
  display: flex;
  align-items: center;
}

.copyrightCont a {
  color: rgba(255, 255, 255, 0.4);
  margin-left: 12px;
  transition: all 0.5s;
}

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

.copyrightCont img {
  margin-left: 12px;
}

.copyrightRight {
  display: flex;
  align-items: center;
  line-height: 1;
}

.copyrightLetters {
  display: flex;
  align-items: center;
}

.support {
  display: flex;
  align-items: center;
}

.copyrightLettersText {
  margin-left: 8px;
}

.copyrightRightList {
  margin-left: 15px;
}

.copyrightRightList {
  color: #fff;
  opacity: 0.4;
  transition: all 0.5s;
}

.copyrightRightList:hover {
  opacity: 1;
}

.supportText {
  color: #fff;
}

.regional01 .regionalCon .mapBox .position6 {
  position: absolute;
  left: 60.28%;
  top: 35.2%;
}

.regional01 .regionalCon .mapBox .position7 {
  position: absolute;
  left: 70.28%;
  top: 56.1%;
}

.airportMap {
  margin-top: 20px;
}

.reserveFixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 148px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  left: -160px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.reserveFixed.active {
  left: 10px;
}

.reserveTop {
  display: flex;
  align-items: center;
  background: #0a3c95;
  height: 60px;
  justify-content: center;
}

.reserveTopText {
  color: #fff;
  margin-left: 10px;
  font-size: 20px;
}

.reserveList {
  padding: 20px 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #ececec;
}

.reserveList:last-child {
  border-bottom: 0;
}

.reserveCode {
  width: 100%;
}

.reserveCode img {
  width: 100%;
}

.reserveCodeText {
  font-size: 14px;
  color: #999999;
  text-align: center;
  margin-top: 10px;
}

.briefInfoCenter {
  line-height: 30px;
  white-space: normal;
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
  min-height: 150px;
}

.briefInfoCenterText {
  max-height: 90px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.briefInfoCenterText::-webkit-scrollbar {
  width: 4px;
  height: 2px;
}

.briefInfoCenterText::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #0a3c95;
}

.briefInfoCenterText::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0);
  background: #f7f7f7;
}

.briefInfoCenterList {
  font-weight: bold;
}

.briefInfoCenterList b {
  display: inline-block;
}

.regional01 .regionalCon .briefBox .briefCon .briefTitle {
  font-weight: bold;
}

.briefInfoCenterText2 {
  max-height: 150px;
}

.memberAirports {
  padding-bottom: 110px;
  background: #f8f8fa;
}

.memberAirports .title p {
  text-align: left !important;
  color: #093b94 !important;
}

.airportMap {
  margin-top: 20px;
}

.mobileBreadcrumb {
  display: none;
  width: 100%;
}

@media (max-width: 1200px) {
  .footer {
    margin-top: 0;
    padding-top: 1.9rem;
  }

  .footerMain {
    flex-wrap: wrap;
  }

  .footerLeft {
    width: 100%;
  }

  .footerLogo {
    width: 10.1rem;
  }

  .footerLogo img {
    width: 100%;
  }

  .friendshipLink {
    width: 100%;
    height: 1.65rem;
    margin-top: 0.8rem;
    padding: 0 0.6rem;
    border: none;
    border-radius: 0.1rem;
  }

  .friendshipLinkIcon {
    width: 0.6rem;
  }

  .friendshipLinkIcon img {
    width: 100%;
  }

  .friendshipLinkText {
    font-size: 0.52rem;
    margin-left: 0.25rem;
  }

  .friendshipLinkArrow {
    width: 0.25rem;
  }

  .friendshipLinkArrow img {
    width: 100%;
  }

  .footerRight {
    width: 100%;
  }

  .footerCont {
    flex-wrap: wrap;
  }

  .footerContList {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    margin-top: 0.55rem;
  }

  .footerContList:first-child {
    align-items: center;
    margin-top: 0.9rem;
  }

  .footerContName {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footerContText {
    margin-top: 0;
  }

  .footerContText.phone {
    font-size: 0.6rem;
  }

  .footerContIcon {
    width: 0.65rem;
  }

  .footerContIcon img {
    width: 100%;
  }

  .footerContTitle {
    font-size: 0.52rem;
    margin-left: 0.3rem;
  }

  .footerContList {
    margin-left: 0;
  }

  .footerContText.address {
    font-size: 0.5rem;
    flex: 1;
    line-height: 0.8rem;
    margin-left: 0.3rem;
  }

  .footerInfoCode {
    width: 5.25rem;
  }

  .footerInfoCode img {
    width: 100%;
  }

  .footerBottom {
    margin-top: 0.7rem;
    padding: 0.6rem 0 1.7rem 0;
    line-height: 0.8rem;
  }

  .copyright {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .copyrightRight {
    width: 100%;
    flex-wrap: wrap;
  }

  .copyrightCont {
    flex-wrap: wrap;
    font-size: 0.48rem;
    margin-top: 0.6rem;
  }

  .copyrightLettersIcon {
    width: 0.6rem;
  }

  .copyrightLettersIcon img {
    width: 100%;
  }

  .copyrightLettersText {
    margin-left: 0.2rem;
  }

  .copyrightRightList {
    margin-left: 0;
    margin-right: 0.4rem;
    font-size: 0.48rem;
  }

  .copyrightCont img {
    margin-left: 0.4rem;
    width: 0.5rem;
    margin-right: 0.2rem;
  }

  .copyrightCont a {
    margin-left: 0;
  }

  .friendshipLink .pos {
    padding: 0.6rem;
    max-height: 8rem;
  }

  .friendshipLink .pos .posList {
    font-size: 0.52rem;
    padding: 0.3rem 0;
  }
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    -ms-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp_box {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp_box {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    -ms-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp150 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp150 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 150px, 0);
    -ms-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@keyframes smallToBig {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

@keyframes fadeInUp100 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.pageImg {
  width: 100%;
}

.clounmInfo {
  position: fixed;
  z-index: 99;
  height: 100vh;
  bottom: 0;
  right: -120px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.clounmInfo.active {
  opacity: 1;
  visibility: visible;
}

.indexFooter .clounmInfo {
  height: 100vh;
}

.menuHand {
  padding-right: 10px;
  box-sizing: border-box;
  width: 66px;
  height: 63px;
}

.menuHand .menuHandImg {
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}

.clounmCont {
  bottom: 0;
  right: 0;
  height: 100%;
  background: rgba(10, 60, 149, 0.56);
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s;
}

.clounmList {
  text-align: center;
  padding: 10px 0 20px 0;
  cursor: pointer;
  position: relative;
}

.clounmList .pos {
  position: absolute;
  width: 0;
  height: 112px;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  overflow: hidden;
}

.clounmList:hover .pos {
  width: 112px;
}

.flightInfo .pos {
  width: 0;
  min-height: 420px;
  right: 110px;
  background: #d9e3f5;
  border-top: 3px solid #0a3c95;
  padding: 20px 0;
  top: 0;
  transform: translateY(0);
}

.flightClounmTitle {
  font-size: 20px;
  color: #144499;
  white-space: nowrap;
}

.flightClounmCont {
  margin-top: 20px;
}

.flightClounmList {
  font-size: 16px;
  color: #0a3c95;
  background: #fff;
  border-radius: 50px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 10px 30px;
  box-sizing: border-box;
  border: 1px solid #0a3c95;
  width: 220px;
  transition: all 0.5s;
}

.flightClounmList:hover {
  background: #0a3c95;
  color: #fff;
}

.flightInfo:hover .pos {
  width: 290px;
}

.clounmIcon {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 65%;
}

.clounmIcon img {
  width: 100%;
}

.clounmText {
  color: #fff;
}

.clounmInfo.curr {
  right: 0;
}

.clounmList:hover {
  background: rgba(10, 60, 149, 0.9);
}

/* .hkwlInfo{
    position: relative;
}
.hkwPos{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.hkwPosBox{
    display: flex;
    align-items: center;
    height: 26.05vw;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 50px;
}
.hkwlVideo{
    height: 100%;
    flex: 1;
}
.hkwlVideo video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
    border-radius: 5px 0 0 5px;
}
.hkwCont{
    width: 40%;
}
.hkwCont img{
    width: 100%;
}
.hkwlTitle{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-top: 0px;
    font-family: "Source Han Sans CN";
}
.hkwlTitle2 {
    font-size: 30px;
    text-align: center;
    color: #333;
    margin-top: 10px;
    font-family: "Source Han Sans CN";
} */
.qrCodeInfo {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background: rgba(10, 60, 149, 0.92);
}

.qrCodeInfo .w1600 {
  display: flex;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 50px 0 30px 0;
  box-sizing: border-box;
}

.qrCodeImg {
  width: 76%;
}

.closeCode {
  position: absolute;
  right: 0;
  top: 30px;
  cursor: pointer;
}

.mobileFootAdd,
.mobileClounm {
  display: none;
}

@media (max-width: 1200px) {
  .clounmInfo {
    display: none;
  }

  .mobileFootAdd {
    right: 0.3rem;
    bottom: 0.3rem;
    position: fixed;
    width: 2.8rem;
    height: 2.8rem;
    z-index: 10;
    display: block;
  }

  .mobileFootAdd img {
    width: 100%;
  }

  .mobileClounm {
    display: block;
    background: #fff;
    border-radius: 0.6rem 0.6rem 0 0;
    padding: 0.6rem 0.6rem 1rem 0.6rem;
    box-sizing: border-box;
    position: fixed;
    bottom: -100%;
    left: 0;
    z-index: 10;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
  }

  .mobileClounm.curr {
    bottom: 0;
  }

  .mobileClounmClose {
    display: flex;
    justify-content: flex-end;
  }

  .mobileClounmClose img {
    width: 0.6rem;
  }

  .mobileClounmCount {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .mobileClounmList {
    width: calc((100% - 0.4rem) / 2);
    margin-left: 0.4rem;
    margin-top: 0.4rem;
  }

  .mobileClounmList:nth-child(2n + 1) {
    margin-left: 0;
  }

  .mobileClounmMain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top right, #2a69b7, #1458ae);
    border-radius: 0.2rem;
    padding: 0.6rem 0.65rem 0.6rem 0.5rem;
    box-sizing: border-box;
  }

  .mobileClounmList:nth-child(2) .mobileClounmMain,
  .mobileClounmList:nth-child(6) .mobileClounmMain {
    background: linear-gradient(to top right, #266ec9, #4082d5);
  }

  .mobileClounmList:nth-child(3) .mobileClounmMain,
  .mobileClounmList:nth-child(7) .mobileClounmMain {
    background: linear-gradient(to top right, #2799ba, #1986b3);
  }

  .mobileClounmList:nth-child(4) .mobileClounmMain,
  .mobileClounmList:nth-child(8) .mobileClounmMain {
    background: linear-gradient(to top right, #27bab5, #19aeb3);
  }

  .mobileClounmList:nth-child(5) .mobileClounmMain {
    background: linear-gradient(to top right, #2a69b7, #1458ae);
  }

  .mobileClounmListCount {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .mobileClounmIcon {
    width: 68%;
  }

  .mobileClounmIcon img {
    width: 100%;
  }

  .mobileClounmText {
    margin-left: 0;
    font-size: 0.56rem;
    color: #fff;
    flex: 1;
  }

  .mobileClounmArrow {
    width: 0.26rem;
    margin-left: 0.3rem;
    transition: all 0.5s;
    display: none;
  }

  .mobileClounmArrow img {
    width: 100%;
  }

  .mobileClounmList .pos {
    padding: 0.54rem 0.54rem 0.9rem 0.54rem;
    box-sizing: border-box;
  }

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

  .posInfoText {
    margin-left: 0.75rem;
    width: calc((100% - 0.75rem) / 2);
    margin-top: 0.36rem;
    border: 0.02rem solid #0a3c95;
    color: #0a3c95;
    padding: 0.3rem 0.5rem;
    box-sizing: border-box;
    border-radius: 1rem;
    text-align: center;
    font-size: 0.52rem;
  }

  .posInfoText:nth-child(2n + 1) {
    margin-left: 0;
  }

  .mobileClounmList.curr .mobileClounmArrow {
    transform: rotate(90deg);
  }

  .ewmInfo {
    display: none;
  }

  .mobileBreadcrumb {
    display: block;
    height: 2rem;
    border-top: 0.01rem solid #e5e5e5;
    background: #fff;
  }

  .mobileBreadcrumb .w1500 {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.54rem;
  }

  .mobileBreadcrumb .w1500 .one {
    width: 0.9rem;
    height: 0.9rem;
    background: url(../images/lytimages/icon/home3.png) center no-repeat;
    background-size: cover;
    margin-right: 0.3rem;
  }

  .mobileBreadcrumb .w1500 i {
    margin: 0 0.3rem;
    color: #999;
  }

  .mobileBreadcrumb .w1500 a {
    color: #999;
  }
}

/*支点建设*/
.pivotBanner .pic {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.pivotBanner .pic i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.airportNavMobile {
  display: none;
}

@media (max-width: 1200px) {
  .pivotBanner .pic {
    height: 12.95rem;
  }

  .airportNavMobile {
    transition: all 0.5s;
    position: fixed;
    left: 0;
    top: 2.5rem;
    z-index: 18;
    width: 100%;
    display: block;
  }

  .airportNavMobile .swiper-slide {
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 0.6rem;
    height: 2rem;
    line-height: 0.82rem;
    font-size: 0.6rem;
    color: #333;
  }

  .airportNavMobile .swiper-slide img {
    margin-left: 1rem;
    margin-right: 0.5rem;
    height: 0.82rem;
  }

  .airportNavMobile .swiper-slide p {
    margin-right: 1rem;
    position: relative;
    color: #fff;
  }

  .airportNavMobile .swiper-slide p::after {
    transition: all 0.5s;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 100%;
    height: 0.31rem;
    background: url(../images/zjpage/icon/i39.png) left center no-repeat;
    background-size: auto 100%;
    content: "";
  }

  .airportNavMobile .swiper-slide.cur {
    opacity: 1;
  }

  .airportNavMobile .swiper-slide.cur p::after {
    transition: all 0.5s;
    opacity: 1;
  }

  .airportNavMobile.curr {
    transition: all 0.5s;
    top: 2.2rem;
    background: #fff;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
  }

  .airportNavMobile.curr .swiper-slide p {
    color: #333;
  }

  .airportNavMobile.curr .swiper-slide p::after {
    opacity: 0;
  }
}