/*================基本样式重置================*/
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;
}

/*========定义基础样式========*/
.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");
}

.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: 0;
    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{
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #dcdcdc;
    height: 1px;
}
.header .search {
    transition: all 0.5s;
    display: flex;
    align-items: center;
    width: 80px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: rgba(201, 43, 47, 0) 1px solid;
    border-radius: 50px;
    padding-left: 15px;
  }
  .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/index5/search.png) center no-repeat;
    cursor: pointer;
  }
  .subIcon{
    width: 30px;
    height: 26px;
    background: url(../images/index5/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: 1500px;
  }
  .w1400 {
    width: 72.91%;
    min-width: 1200px;
    margin: 0 auto;
    max-width: 1500px;
  }
  /*锚点定位*/
  .anchorF {
    position: relative;
  }
  .anchor {
    position: absolute;
    left: 0;
    top: -70px;
    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;
  }
  .header {
    transition: all 0.5s;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
  }
  .header img {
    width: 100%;
  }
  .header img.img1 {
    display: block;
  }
  .header img.img2 {
    display: none;
  }
  .header.header_fixed img.img1 {
    display: none ;
  }
  .header.header_fixed img.img2 {
    display: block;
  }
  @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;
  }
  .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-2.png) center no-repeat!important;
      background-size: 0.8rem auto!important;;
    }
    .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,
    .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, .m_header.cur .logo .m1, .headerBg .m_header .logo .m1{
      display: none;
    }
    .m_header.m_header_fixed .logo .m2, .m_header.cur .logo .m2, .headerBg .m_header .logo .m2{
      display: block;
    }
    .m_header.cur .search, .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.7s;
      display: block;
      position: fixed;
      left: 100%;
      top: 0;
      z-index: 20;
      width: 100%;
      height: 100vh;
      background: #fff;
    }
    .m_nav.cur {
      transition: all 0.7s;
      left: 0%;
    }
    .m_nav .w {
      margin-top: 2.8rem;
      width: 100%;
      height: calc(100% - 3.2rem);
      overflow-y: auto;
    }
    .m_nav .w .one {
      position: relative;
      line-height: 2.8rem;
    }
    .m_nav .w .one .one_a {
      margin: 0 auto;
      width: 92%;
      font-size: 0.64rem;
      font-weight: bold;
      color: #333;
      border-bottom: #ccc 1px solid;
    }
    .m_nav .w .one .oneMore {
      transition: all 0.5s;
      transform: rotate(0deg);
      display: none;
      position: absolute;
      right: 4%;
      top: 0.4rem;
      width: 2rem;
      height: 2rem;
      background: url(../images/mobile/icon/icon-3.png) center no-repeat;
      background-size: 0.38rem auto;
    }
    .m_nav .w .one .oneMore.on {
      transform: rotate(90deg);
      background: url(../images/mobile/icon/icon-3.png) center no-repeat;
      background-size: 0.38rem auto;
    }
    .m_nav .w .one .pos {
      display: none;
      padding: 0 0.5rem;
    }
    .m_nav .w .one .pos .twoNav {
      position: relative;
    }
    .m_nav .w .one .pos .twoNav .two_a {
      margin: 0 auto;
      width: 92%;
      line-height: 2.4rem;
      font-size: 0.6rem;
      color: #333;
      border-bottom: #ccc 1px solid;
    }
    .m_nav .w .one .pos .twoNav .threeNav {
      display: none;
      margin: 0 auto;
      width: 92%;
      border-bottom: #ccc 1px solid;
    }
    .m_nav .w .one .pos .twoNav .threeNav a {
      line-height: 1.6rem;
      font-size: 0.32rem;
      color: #666;
    }
    .m_nav .w .one .pos .twoNav .twoMore {
      transition: all 0.5s;
      transform: rotate(0deg);
      display: none;
      position: absolute;
      right: 4%;
      top: 0.2rem;
      width: 2rem;
      height: 2rem;
      background: url(../images/mobile/icon/icon-3.png) center no-repeat;
      background-size: 0.38rem auto;
    }
    .m_nav .w .one .pos .twoNav .twoMore.on {
      transform: rotate(90deg);
      background: url(../images/mobile/icon/icon-3.png) center no-repeat;
      background-size: 0.38rem auto;
    }
    .m_nav .w .one .pos .twoNav.cur .twoMore {
      display: block;
    }
    .m_nav .w .one.cur .oneMore {
      display: block;
    }
    .m_nav .w .one.cur.on .one_a {
      color: #063c96;
    }
    .m_nav .w .one.cur.on .twoNav.on .two_a {
      color: #063c96;
    }
    .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.2vw;
    height: 100%;
}

.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;
}
.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 .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;
}*/

.header_fixed .navContList.curr .navDivideList:after,
.headerBg .navContList.curr .navDivideList:after {
    background: #0a3c95;
}

.header_fixed .navContList:hover .navDivideList:after,
.headerBg .navContList:hover .navDivideList:after {
    background: #0a3c95;
}

.navContList:hover .navDivideList:after,
.navContList.curr .navDivideList:after {
    width: 100%;
}

.header.header_fixed .navContList .navDivideList,
.headerBox.headerBg .header .navContList .navDivideList {
    color: #333;
}

.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 .search, .headerBox.headerBg .header .search{
    border: 1px solid #0a3c95;
}
.header.header_fixed .searchIcon, .headerBox.headerBg .header .searchIcon{
    background: url(../images/index5/searchs.png) center no-repeat;
}
.header.header_fixed .subIcon, .headerBox.headerBg .header .subIcon{
    background: url(../images/index5/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;
}
.header .navContList .pos {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    /* opacity: 0;
    transition: all 0.5s; */
}
.header .navContList .pos .posInfo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.navPosList{
    height: 90px;
}
.header .navContList:hover .pos {
    opacity: 1;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
/* .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;
}

.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 .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .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 .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 .5s;
    transition-delay: 0.6s;
}
.consultingMore .arrow.animate div:after {
    width: 0;
    transition: all ease .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: url("../images/index5/footerBg.png") center no-repeat;
    background-size: cover;
    padding-top: 80px;
    box-sizing: border-box;
}
.footerLogo{
    width: 13.8vw;
}
.footerLogo img{
    width: 120%;
}
.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 .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: #fff;
    margin-top: 40px;
    width: 16.41vw;
    padding: 0 20px 0 25px;
    box-sizing: border-box;
}
.friendshipLinkDefault{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.friendshipLinkCont{
    display: flex;
    align-items: center;
}
.friendshipLinkText{
    font-size: 16px;
    color: #666666;
    margin-left: 8px;
}
.friendshipLinkIcon{
    width: 19px;
    border-left: 1px solid #fff;
    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 30px;
    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 .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;
}
.footerCont{
    display: flex;
}
.footerContMain{
    margin-top: 200px;
    display: flex;
    align-items: center;
}
.footerContList{
    font-size: 18px;
    position: relative;
    margin-left: 50px;
    min-width: 11.5vw;
}
.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: #666666;
    font-size: 16px;
}
.footerContText {
    font-size: 18px;
    color: #666;
    margin-top: 25px;
}
.footerContText.phone{
    font-size: 30px;
    font-weight: bold;
}
.footerContText.address{
    font-size: 18px;
        width: 240px;
}
.footerRight{
    display: flex;
    height: 210px;
}
.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 #d7d7d7;
}
.copyright{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999999;
}
.copyrightCont{
    display: flex;
    align-items: center;
}
.copyrightCont a{
    color: #999999;
    margin-left: 12px;
}
.copyrightCont img{
    margin-left: 12px;
}
.copyrightRight{
    display: flex;
    align-items: center;
}
.copyrightLetters{
    display: flex;
    align-items: center;
}
.support{
    display: flex;
    align-items: center;
}
.copyrightLettersText{
    margin-left: 8px;
}
.copyrightRightList{
    margin-left: 15px;
}
.copyrightRightList, .supportText{
    color: #999;
}
.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: 50px 0 120px 0;
}
.airportMap{
    margin-top: 20px;
}
@media (max-width: 1200px) {
    .footer{
        padding-top: 1.2rem;
    }
    .footerMain{
        flex-wrap: wrap;
    }
    .footerLeft{
        width: 100%;
    }
    .footerLogo{
        width: 10rem;
    }
    .footerLogo img{
        width: 100%;
    }
    .friendshipLink{
        width: 100%;
        height: 1.65rem;
        margin-top: 0.9rem;
        padding: 0 0.7rem;
    }
    .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%;
    }
    .footerCont{
        flex-wrap: wrap;
    }
    .footerContList{
        display: flex;
        align-items: flex-start;
        width: 100%;
        min-width: auto;
        margin-top: 0.5rem;
    }
    .footerContList:first-child{
        align-items: center;
    }
    .footerContName{
        padding-bottom: 0;
        border-bottom: 0;
        margin-right: 0.3rem;
    }
    .footerContText{
        margin-top: 0;
    }
    .footerContText.phone{
        font-size: 0.6rem;
    }
    .footerRight{
        height: auto;
    }
    .footerContIcon{
        width: 0.65rem;
    }
    .footerContIcon img{
        width: 100%;
    }
    .footerContTitle{
        font-size: 0.52rem;
        margin-left: 0.3rem;
    }
    .footerContList{
        margin-left: 0;
    }
    .footerContList:nth-child(2) .footerContTitle{
        display: none;
    }
    .footerContText.address{
        font-size: 0.5rem;
        flex: 1;
        line-height: 0.8rem;
    }
    .footerInfoCode{
        width: 5.25rem;
    }
    .footerInfoCode img{
        width: 100%;
    }
    .footerBottom{
        margin-top: 0.7rem;
        padding: 0.6rem 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;
    }
    .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: 10;
    height: calc(100vh - 100px);
    bottom: 0;
    right: -110px;
    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;
}
.clounmCont{
    bottom: 0;
    right: 0;
    height: 100%;
    background: rgba(10, 60, 149, 0.56);
    width: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s;
}
.clounmList{
    text-align: center;
    padding: 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;
}
.clounmText{
    margin-top: 15px;
    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.34rem;
        height: 2.34rem;
        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;
    } 
    .mobileClounmList:last-child{
       width: 100%; 
       background: #f0f5fe;
       border-radius: 0 0 0.3rem 0.3rem;
    }
    .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.75rem;
        box-sizing: border-box;
    }
    .mobileClounmList:nth-child(2) .mobileClounmMain{
        background: linear-gradient(to top right, #266ec9, #4082d5);
    }
    .mobileClounmList:nth-child(3) .mobileClounmMain{
        background: linear-gradient(to top right, #2799ba, #1986b3);
    }
    .mobileClounmList:nth-child(4) .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;
    }
    .mobileClounmIcon{
        width: 1.16rem;
    }
    .mobileClounmIcon img{
        width: 100%;
    }
    .mobileClounmText{
        margin-left: 0.3rem;
        font-size: 0.56rem;
        color: #fff;
    }
    .mobileClounmArrow{
        width: 0.26rem;
        margin-left: 0.8rem;
        transition: all 0.5s;
    }
    .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);
    }
}