/*================基本样式重置================*/
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;
}
/* @font-face {
    font-family: "DIN-Bold";
    src: url("../font/DIN-Bold.otf");
} */
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;
}
[v-cloak] {
  display: 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-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.text_over3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.text_over4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
/*主体宽度样式（可选用）如有新宽度，命名规则以小写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;
}
.content {
  position: relative;
  padding-bottom: 1px;
  margin: 0 auto;
  min-height: 500px;
  max-width: 1920px;
}
/*锚点定位*/
.anchorF {
  position: relative;
}
.anchor {
  position: absolute;
  left: 0;
  top: -120px;
  width: 100%;
  height: 1px;
  z-index: -1;
  opacity: 0;
}
/* 去除点击选项卡时出现的蓝色边框 */
.swiper-pagination .swiper-pagination-bullet:focus,
.swiper-button-next,
.swiper-button-prev {
  outline: none;
}
/* 去除点击选项卡时出现的蓝色背景 */
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: auto;
}
.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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s;
}
.header .headerTop {
  width: 100%;
  position: relative;
  border-bottom: #d9d9d9 1px solid;
}
.header .headerTop:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 10%;
  background: #0844bc;
  height: 1px;
  animation: toRight infinite 4.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.header .headerTop .logo {
  float: left;
  display: flex;
  align-items: center;
  margin-right: 10%;
  width: 102px;
  height: 100px;
}
.header .headerTop .logo img {
  width: 100%;
  height: auto;
}
.header .headerTop .nav {
  float: left;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 102px - 10% - 160px - 10%);
}
.header .headerTop .nav .one {
  position: relative;
}
.header .headerTop .nav .one .one_a {
  position: relative;
  line-height: 100px;
  font-size: 18px;
  color: #333;
}
.header .headerTop .nav .one .one_a::after {
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0844bc;
  content: "";
}
.header .headerTop .nav .one:hover .one_a,
.header .headerTop .nav .one.cur .one_a {
  color: #0844bc;
}
.header .headerTop .nav .one:hover .one_a::after,
.header .headerTop .nav .one.cur .one_a::after {
  transition: all 0.5s;
  width: 100%;
}
.header .headerTop .nav .one:hover .pos1 {
  transition: all 0.5s;
  max-height: 416px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.11);
}
.header .headerTop .nav .one:hover .pos2 {
  transition: all 0.8s;
  opacity: 1;
  max-height: 700px;
}
.header .headerTop .nav .pos1 {
  transition: all 0.5s;
  position: fixed;
  left: 0;
  top: 100px;
  width: 100%;
  max-height: 0px;
  background: #fff url(../images/icon/i12.png) right bottom no-repeat;
  background-size: 34.16% auto;
  overflow: hidden;
}
.header .headerTop .nav .pos1 .tab_title {
  float: left;
  box-sizing: border-box;
  padding-top: 50px;
  width: 17.5%;
  height: 416px;
  background: #f0f0f0;
}
.header .headerTop .nav .pos1 .tab_title a {
  position: relative;
  padding: 0 10% 0 12%;
  font-size: 18px;
  line-height: 52px;
  color: #333;
}
.header .headerTop .nav .pos1 .tab_title a::after {
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: #ee1d23;
  transform: translateY(-50%);
  content: "";
}
.header .headerTop .nav .pos1 .tab_title a p {
  padding-right: 15px;
}
.header .headerTop .nav .pos1 .tab_title a.cur {
  background: #fff;
  color: #0844bc;
}
.header .headerTop .nav .pos1 .tab_title a.cur::after {
  transition: all 0.5s;
  height: 100%;
}
.header .headerTop .nav .pos1 .tab_title a.cur p {
  background: url(../images/icon/i13.png) right center no-repeat;
  background-size: 7px auto;
}
.header .headerTop .nav .pos1 .tab_next1 {
  float: left;
  width: 82.5%;
}
.header .headerTop .nav .pos1 .tab_next1 .tab_title2 {
  float: left;
  width: 21.3%;
  background: #f6f6f6;
}
.header .headerTop .nav .pos1 .tab_next1 .tab_title2 a {
  font-size: 16px;
}
.header .headerTop .nav .pos1 .tab_next1 .tab_next2 {
  float: left;
  width: 78.7%;
}
.header .headerTop .nav .pos1 .tab_next1 .next2 a {
  float: left;
  margin: 100px 4% 0;
  width: 25.3%;
}
.header .headerTop .nav .pos1 .tab_next1 .next2 a .pic {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  width: 100%;
  height: 145px;
}
.header .headerTop .nav .pos1 .tab_next1 .next2 a .pic img {
  max-width: 100%;
  max-height: 100%;
}
.header .headerTop .nav .pos1 .tab_next1 .next2 a p {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #333;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header .headerTop .nav .pos1 .tab_next1 .next2 a:hover p {
  color: #0844bc;
}
.header .headerTop .nav .pos2 {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  max-height: 0px;
  overflow: hidden;
}
.header .headerTop .nav .pos2 .bor {
  position: relative;
  margin: 20px 10px 10px;
  padding: 8px 0;
  background: #fff;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
}
.header .headerTop .nav .pos2 span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 100%;
  height: 15px;
}
.header .headerTop .nav .pos2 span::after {
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.header .headerTop .nav .pos2 a {
  min-width: 130px;
  padding: 0 15px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
  text-align: center;
  white-space: nowrap;
}
.header .headerTop .nav .pos2 a.cur,
.header .headerTop .nav .pos2 a:hover {
  color: #0844bc;
}
.header .headerTop .right {
  float: right;
}
.header .headerTop .right .language {
  float: right;
  margin-top: 31px;
  padding: 0 14px;
  border: #b6b7ba 1px solid;
  cursor: pointer;
}
.header .headerTop .right .language p {
  padding-left: 24px;
  font-size: 12px;
  line-height: 36px;
  color: #333;
  font-family: Arial;
  background: url(../images/icon/i3s.png) left center no-repeat;
  background-size: 14px auto;
}
.header .headerTop .right .language:hover {
  border-color: #0844bc;
  background: #0844bc;
}
.header .headerTop .right .language:hover p {
  color: #fff;
  background-image: url(../images/icon/i3.png);
}
.header .headerTop .right .car_icon {
  float: right;
  margin-right: 30px;
  width: 17px;
  height: 100px;
  background: url(../images/icon/i2s.png) center no-repeat;
  background-size: 100% auto;
}
.header .headerTop .right .car_icon:hover {
  background-image: url(../images/icon/i2ss.png);
}
.header .headerTop .right .search_icon {
  float: right;
  margin-right: 30px;
  width: 16px;
  height: 100px;
  background: url(../images/icon/i1s.png) center no-repeat;
  background-size: 100% auto;
}
.header .headerTop .right .search_icon:hover {
  background-image: url(../images/icon/i1ss.png);
}
.header.header_fixed,
.header.header_NoBanner,
.header:hover {
  transition: all 0.5s;
  background: #fff;
}
.footer {
  position: relative;
  z-index: 2;
  background: url(../images/index/footer_bac.png) bottom center no-repeat;
  background-size: 100% auto;
}
.footer .w1400 {
  position: relative;
  z-index: 3;
}
.footer .upAuto {
  overflow: hidden;
}
.footer .top {
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
}
.footer .top .flex-logo {
  margin-right: 30px;
  width: 100px;
}
.footer .top .flex-logo img {
  width: 100%;
}
.footer .top .lie {
  flex: 1;
  height: 1px;
  background: #c9c9c9;
}
.footer .top .rightIcon {
  margin-left: 35px;
  display: flex;
}
.footer .top .rightIcon .icon {
  position: relative;
  margin-right: 20px;
  width: 65px;
  height: 65px;
  border-radius: 100%;
  border: #cecece 1px solid;
  cursor: pointer;
}
.footer .top .rightIcon .icon:last-child {
  margin-right: 0;
}
.footer .top .rightIcon .icon i {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.footer .top .rightIcon .icon .pos {
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  bottom: 75px;
  transform: translateX(-50%);
  width: 134px;
  height: 0px;
  overflow: hidden;
  background: url(../images/icon/i90s.png) top left no-repeat;
}
.footer .top .rightIcon .icon .pos img {
  padding: 17px 16px;
  width: 100px;
  height: 100px;
}
.footer .top .rightIcon .icon.iconWx i {
  background-image: url(../images/icon/i14.png);
}
.footer .top .rightIcon .icon.iconWx:hover {
  background-color: #0844bc;
  border: #0844bc 1px solid;
}
.footer .top .rightIcon .icon.iconWx:hover i {
  background-image: url(../images/icon/i14s.png);
}
.footer .top .rightIcon .icon.iconF i {
  background-image: url(../images/icon/i15.png);
}
.footer .top .rightIcon .icon.iconF:hover {
  background-color: #0844bc;
  border: #0844bc 1px solid;
}
.footer .top .rightIcon .icon.iconF:hover i {
  background-image: url(../images/icon/i15s.png);
}
.footer .top .rightIcon .icon.iconIn i {
  background-image: url(../images/icon/i16.png);
}
.footer .top .rightIcon .icon.iconIn:hover {
  background-color: #0844bc;
  border: #0844bc 1px solid;
}
.footer .top .rightIcon .icon.iconIn:hover i {
  background-image: url(../images/icon/i16s.png);
}
.footer .top .rightIcon .icon:hover .pos {
  transition: all 0.5s;
  height: 134px;
}
.footer .list {
  margin: 40px 0 80px;
  display: flex;
  justify-content: space-between;
}
.footer .list dt a {
  margin-bottom: 26px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.footer .list dd .tNav {
  float: left;
}
.footer .list dd .tNav:nth-child(1) {
  margin-right:70px;
}


.footer .list dd a {
  font-size: 16px;
  line-height: 36px;
  color: #333;
}
.footer .list dd a:hover {
  color: #0844bc;
}
.footer .bot {
  display: flex;
  justify-content: space-between;
  height: 56px;
}
.footer .bot .left,
.footer .bot .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.footer .bot p {
  font-size: 16px;
  color: #333;
}
.footer .bot a {
  margin-left: 16px;
  font-size: 16px;
  color: #333;
}
.footer .bot a:hover {
  color: #0844bc;
}
.footer .footerAniAuto {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.footer .footerAni {
  position: absolute;
  width: 38vw;
  height: 38vw;
  left: 50%;
  top: 50%;
  margin-left: -19vw;
  margin-top: -19vw;
  transform: translateX(0) translateY(100px) translateZ(-20px) rotateX(-110deg) rotateY(-6deg) rotateZ(0deg) scaleX(2.6) scaleY(1) scaleZ(1);
  transform-style: preserve-3d;
  opacity: 0.8;
}
.footer .footerAni img {
  animation: z 5s linear 0s infinite;
  transform-style: preserve-3d;
}
.m_header,
.m_nav,
.m_footer {
  display: none;
}
@media (max-width: 1200px) {
  .w1400,
  .w {
    margin: 0 auto;
    width: 92%;
    min-width: 300px;
  }
  .anchor {
    top: -2.5rem;
  }
  .header,
  .footer {
    display: none;
  }
  .m_header {
    transition: all 0.5s;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    width: 100%;
    border-bottom: #d9d9d9 1px solid;
  }
  .m_header .logo {
    display: flex;
    align-items: center;
    height: 2.2rem;
  }
  .m_header .logo img {
    display: block;
    height: 1.34rem;
  }
  .m_header .nav_icon {
    width: 0.73rem;
    height: 2.2rem;
    background: url(../images/mobile/icon/i1.png) center no-repeat;
    background-size: 100% auto;
  }
  .m_header .nav_icon.cur {
    background: url(../images/mobile/icon/i1ss.png) center no-repeat;
    background-size: 0.74rem auto;
  }
  .m_header .lang {
    margin-right: 0.54rem;
    width: 0.74rem;
    height: 2.2rem;
    background: url(../images/mobile/icon/i6.png) center no-repeat;
    background-size: 100% auto;
  }
  .m_header .search {
    margin-right: 0.54rem;
    width: 0.76rem;
    height: 2.2rem;
    background: url(../images/mobile/icon/i2.png) center no-repeat;
    background-size: 100% auto;
  }
  .m_header.cur,
  .m_header.m_header_fixed,
  .m_header.m_header_NoBanner {
    background: #fff;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
    border-bottom: none;
  }
  .m_nav {
    transition: all 0.7s;
    display: block;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    background: #fff;
  }
  .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.22rem auto;
  }
  .m_nav .w .one .oneMore.on {
    background: url(../images/mobile/icon/icon_3s.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;
    /* &:last-child{
                            .two_a{
                                border-bottom: 0px;
                            }
                        } */
  }
  .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.52rem;
    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.22rem auto;
  }
  .m_nav .w .one .pos .twoNav .twoMore.on {
    /* transform: rotate(90deg); */
    background: url(../images/mobile/icon/icon_3s.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: #0844bc;
  }
  .m_nav .w .one.cur.on .twoNav.on .two_a {
    color: #0844bc;
  }
  .m_nav.cur {
    transition: all 0.7s;
    left: 0%;
  }
  .m_footer {
    position: relative;
    z-index: 2;
    display: block;
    background: url(../images/mobile/index/m_footer_bac.png) left bottom no-repeat;
    background-size: 100% auto;
  }
  .m_footer .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.3rem 0 0.7rem;
  }
  .m_footer .top .flex-logo {
    height: 1.24rem;
  }
  .m_footer .top .flex-logo img {
    height: 100%;
  }
  .m_footer .top .rightIcon {
    display: flex;
  }
  .m_footer .top .rightIcon .icon {
    position: relative;
    margin-right: 0.4rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    border: #cecece 1px solid;
  }
  .m_footer .top .rightIcon .icon i {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .m_footer .top .rightIcon .icon .pos {
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    bottom: 1.7rem;
    transform: translateX(-50%);
    width: 104px;
    height: 0px;
    overflow: hidden;
    background: url(../images/icon/i90s.png) top left no-repeat;
    background-size: 100% auto;
  }
  .m_footer .top .rightIcon .icon .pos img {
    padding: 7px 6px;
    width: 90px;
    height: 90px;
  }
  .m_footer .top .rightIcon .icon.iconWx i {
    background-image: url(../images/icon/i14.png);
  }
  .m_footer .top .rightIcon .icon.iconWx.on i {
    background-image: url(../images/icon/i14s.png);
  }
  .m_footer .top .rightIcon .icon.iconF i {
    background-image: url(../images/icon/i15.png);
  }
  .m_footer .top .rightIcon .icon.iconIn i {
    background-image: url(../images/icon/i16.png);
  }
  .m_footer .top .rightIcon .icon.on {
    background-color: #0844bc;
  }
  .m_footer .top .rightIcon .icon.on .pos {
    transition: all 0.5s;
    height: 109px;
  }
  .m_footer .upAuto {
    overflow: hidden;
  }
  .m_footer .fNav {
    width: 100%;
  }
  .m_footer .fNav .one {
    position: relative;
    line-height: 2rem;
  }
  .m_footer .fNav .one .one_a {
    margin: 0 auto;
    width: 92%;
    font-size: 0.58rem;
    font-weight: bold;
    color: #333;
    border-bottom: #c9c9c9 1px solid;
  }
  .m_footer .fNav .one .oneMore {
    transition: all 0.5s;
    transform: rotate(0deg);
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: url(../images/mobile/icon/i7.png) center no-repeat;
    background-size: 0.25rem auto;
  }
  .m_footer .fNav .one .oneMore.on {
    transform: rotate(90deg);
  }
  .m_footer .fNav .one .pos {
    display: none;
    padding: 0 0.25rem;
  }
  .m_footer .fNav .one .pos .twoNav {
    position: relative;
  }
  .m_footer .fNav .one .pos .twoNav .two_a {
    margin: 0 auto;
    width: 92%;
    line-height: 1.8rem;
    font-size: 0.54rem;
    color: #333;
    border-bottom: #c9c9c9 1px solid;
  }
  .m_footer .fNav .one .pos .twoNav .threeNav {
    display: none;
    margin: 0.2rem auto;
    width: 92%;
    border-bottom: #c9c9c9 1px solid;
  }
  .m_footer .fNav .one .pos .twoNav .threeNav a {
    line-height: 1.6rem;
    font-size: 0.52rem;
    color: #333;
  }
  .m_footer .fNav .one .pos .twoNav .twoMore {
    transition: all 0.5s;
    transform: rotate(0deg);
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    background: url(../images/mobile/icon/i7.png) center no-repeat;
    background-size: 0.25rem auto;
  }
  .m_footer .fNav .one .pos .twoNav .twoMore.on {
    transform: rotate(90deg);
  }
  .m_footer .fNav .one .pos .twoNav.cur .twoMore {
    display: block;
  }
  .m_footer .fNav .one.cur .oneMore {
    display: block;
  }
  .m_footer .fText {
    padding: 0.52rem 0;
    line-height: 0.8rem;
    font-size: 0.48rem;
    color: #666;
  }
  .m_footer .fText a {
    display: inline;
    padding-right: 0.2rem;
    color: #666;
  }
  .m_footer .fText .link {
    display: flex;
    align-items: center;
  }
}
/* 悬浮侧边栏 */
.suspension {
  transition: all 0.5s;
  position: fixed;
  right: -80px;
  bottom: 20%;
  z-index: 13;
  width: 58px;
  background: #fff;
  cursor: pointer;
}
.suspension .sus {
  transition: all 0.5s;
  position: relative;
  padding: 13px 0 10px;
  width: 100%;
  color: #333;
}
.suspension .sus p {
  padding-top: 22px;
  font-size: 12px;
  text-align: center;
  background-position: center top;
  background-repeat: no-repeat;
}
.suspension .sus .pos {
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  right: 75px;
  transform: translateY(-50%);
  overflow: hidden;
}
.suspension .sus .pos1 {
  width: 0px;
  height: 139px;
  background: url(../images/icon/i90.png) top left no-repeat;
}
.suspension .sus .pos1 img {
  display: block;
  padding: 17px 16px;
  width: 100px;
  height: 100px;
}
.suspension .sus .pos2 {
  max-width: 0;
  height: 50px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.suspension .sus .pos2 em {
  padding: 0 15px;
  line-height: 50px;
  color: #333;
  text-align: center;
}
.suspension .sus:hover {
  transition: all 0.5s;
  color: #fff;
  background-color: #0844bc;
}
.suspension .sus:hover .pos1 {
  transition: all 0.5s;
  width: 134px;
}
.suspension .sus:hover .pos2 {
  transition: all 0.5s;
  max-width: 200px;
}
.suspension .sus.kf p {
  background-image: url(../images/icon/i25.png);
  background-size: 18px auto;
}
.suspension .sus.kf:hover p {
  background-image: url(../images/icon/i25s.png);
}
.suspension .sus.yj p {
  padding-top: 19px;
  background-image: url(../images/icon/i18.png);
  background-size: 19px auto;
}
.suspension .sus.yj:hover p {
  background-image: url(../images/icon/i18s.png);
}
.suspension .sus.wx p {
  padding-top: 21px;
  background-image: url(../images/icon/i19.png);
  background-size: 21px auto;
}
.suspension .sus.wx:hover p {
  background-image: url(../images/icon/i19s.png);
}
.suspension .sus.top p {
  padding-top: 21px;
  background-image: url(../images/icon/i20.png);
  background-size: 17px auto;
}
.suspension .sus.top:hover p {
  background-image: url(../images/icon/i20s.png);
}
.suspension.suspension_fixed {
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.title_01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title_01 .titLeft {
  display: flex;
  font-size: 40px;
}
.title_01 .titLeft b {
  font-weight: bold;
}
.title_01 .titLeft i {
  /* color: #ee1d23; */
  font-weight: bold;
}
.title_01.cen {
  justify-content: center;
}
.title_02 {
  line-height: 60px;
  border-bottom: #e3e3e3 1px solid;
}
.title_02 b {
  float: left;
  position: relative;
  font-size: 26px;
  color: #0844bc;
  font-weight: bold;
  font-family: Arial;
}
.title_02 b::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #e21b20;
  content: "";
}
.more_01 {
  position: relative;
  padding: 0 20px;
  background: #0844bc;
  cursor: pointer;
}
.more_01::after {
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #ee1d23;
  content: "";
}
.more_01 em {
  position: relative;
  z-index: 2;
  width: 150px;
  line-height: 52px;
  font-size: 14px;
  color: #fff;
}
.more_01 i {
  transition: all 0.5s;
  transform: rotate(0deg);
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: url(../images/icon/i4.png) center no-repeat;
  background-size: 100% auto;
}
.more_01:hover::after {
  transition: all 0.5s;
  width: 100%;
}
.more_01:hover i {
  transition: all 0.5s;
  transform: rotate(180deg);
}
.more_02 {
  position: relative;
  box-sizing: border-box;
  padding: 0 20px 0 10px;
  width: 118px;
  line-height: 42px;
  font-size: 14px;
  color: #ed1d25;
  border-bottom: #ed1d25 1px solid;
}
.more_02 i {
  transition: all 0.5s;
}
.more_02 em {
  transition: all 0.5s;
  transform: rotate(0deg);
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 2;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: url(../images/icon/i8.png) center no-repeat;
  background-size: 100% auto;
}
.more_02:hover i {
  margin-left: 20px;
  transition: all 0.5s;
}
.more_02:hover em {
  transition: all 0.5s;
  transform: rotate(180deg);
}
/*分页*/
.paging {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 0;
  text-align: center;
}
.paging li {
  display: inline-block;
  margin: 0 14px;
  font-size: 16px;
  color: #666;
  font-weight: normal;
}
.paging li a,
.paging li span {
  color: #666;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 100%;
  border: #b6b6b6 1px solid;
}
.paging li.active a,
.paging li.active span {
  color: #fff;
  background: #0844bc;
  border: #0844bc 1px solid;
}
.paging li a:hover {
  color: #0844bc;
  border: #0844bc 1px solid;
}
.paging li:first-child span,
.paging li:first-child a {
  background: url(../images/icon/i39ss.png) center no-repeat;
  background-size: 10px auto;
}
.paging li:first-child:hover span,
.paging li:first-child:hover a {
  background-color: #0844bc;
  background-image: url(../images/icon/i39sss.png);
  border: #0844bc 1px solid;
}
.paging li:first-child.disabled:hover span {
  background-color: #fff;
  background-image: url(../images/icon/i39ss.png);
  border: #b6b6b6 1px solid;
}
.paging li:last-child span,
.paging li:last-child a {
  background: url(../images/icon/i40s.png) center no-repeat;
  background-size: 10px auto;
}
.paging li:last-child:hover span,
.paging li:last-child:hover a {
  background-color: #0844bc;
  background-image: url(../images/icon/i40ss.png);
  border: #0844bc 1px solid;
}
.paging li:last-child.disabled:hover span {
  background-color: #fff;
  background-image: url(../images/icon/i40s.png);
  border: #b6b6b6 1px solid;
}
.paging .el-pagination.is-background {
  display: flex;
  justify-content: center;
  width: 100%;
}
.paging .el-pagination.is-background button:disabled {
  cursor: text;
}
.paging .el-pagination.is-background .btn-prev,
.paging .el-pagination.is-background .btn-next {
  margin: 0 14px;
  width: 50px;
  background: none;
}
.paging .el-pagination.is-background .btn-prev span,
.paging .el-pagination.is-background .btn-next span {
  height: 50px;
  font-size: 0px;
  border-radius: 100%;
  border: #0844bc 1px solid;
}
.paging .el-pagination.is-background .btn-prev span {
  background: url(../images/icon/i39ss.png) center no-repeat;
  background-size: 10px auto;
}
.paging .el-pagination.is-background .btn-prev:hover span {
  background-color: #0844bc;
  background-image: url(../images/icon/i39sss.png);
}
.paging .el-pagination.is-background .btn-prev.disabled:hover span {
  background-color: #fff;
  background-image: url(../images/icon/i39ss.png);
}
.paging .el-pagination.is-background .btn-next span {
  background: url(../images/icon/i40s.png) center no-repeat;
  background-size: 10px auto;
}
.paging .el-pagination.is-background .btn-next:hover span {
  background-color: #0844bc;
  background-image: url(../images/icon/i40ss.png);
}
.paging .el-pagination.is-background .btn-next.disabled:hover span {
  background-color: #fff;
  background-image: url(../images/icon/i40s.png);
}
.paging .el-pagination.is-background .el-pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging .el-pagination.is-background .el-pager li {
  display: block;
  color: #666;
  margin: 0 14px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 100%;
  border: #b6b6b6 1px solid;
  cursor: pointer;
  box-sizing: content-box;
}
.paging .el-pagination.is-background .el-pager li svg {
  width: 1em;
  height: 1em;
}
.paging .el-pagination.is-background .el-pager li:hover {
  color: #0844bc;
  border: #0844bc 1px solid;
}
.paging .el-pagination.is-background .el-pager li.active,
.paging .el-pagination.is-background .el-pager li.is-active {
  color: #fff;
  background: #0844bc;
  border: #0844bc 1px solid;
  cursor: default;
}
.paging .el-pagination.is-background .el-pager .el-icon-more {
  position: relative;
  height: 50px;
}
.paging .el-pagination.is-background .el-pager .el-icon-more::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "...";
  letter-spacing: 2px;
  line-height: 43px;
  text-align: center;
}
@media (max-width: 1200px) {
  /* 悬浮侧边栏 */
  .suspension {
    right: -80px;
    width: 58px;
  }
  .suspension .sus {
    display: none;
    padding: 13px 0 10px;
  }
  .suspension .sus p {
    padding-top: 22px;
    font-size: 12px;
  }
  .suspension .sus .pos {
    right: 75px;
    height: 121px;
  }
  .suspension .sus .pos img {
    display: block;
    width: 132px;
    height: 121px;
  }
  .suspension .sus:hover .pos {
    width: 132px;
  }
  .suspension .sus.kf p {
    background-image: url(../images/icon/i25.png);
  }
  .suspension .sus.kf:hover p {
    background-image: url(../images/icon/i25s.png);
  }
  .suspension .sus.top p {
    padding-top: 21px;
    background-image: url(../images/icon/i20.png);
  }
  .suspension .sus.top:hover p {
    background-image: url(../images/icon/i20s.png);
  }
  .suspension .sus:last-child,
  .suspension .sus:first-child {
    display: block;
  }
  .suspension.suspension_fixed {
    right: 0;
  }
  .title_01 .titLeft {
    font-size: 0.9rem;
  }
  .title_02 {
    line-height: 1.65rem;
  }
  .title_02 b {
    font-size: 0.72rem;
  }
  .title_02 b::after {
    height: 2px;
  }
  .more_01 {
    padding: 0 0.4rem 0 0.5rem;
  }
  .more_01 em {
    width: 3rem;
    line-height: 1.3rem;
    font-size: 0.5rem;
  }
  .more_01 i {
    right: 0.4rem;
    margin-top: -0.175rem;
    width: 0.35rem;
    height: 0.35rem;
  }
  .more_02 {
    padding: 0 20px 0 10px;
    width: 118px;
    line-height: 42px;
    font-size: 14px;
  }
  .more_02 em {
    right: 10px;
    z-index: 2;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    background-image: url(../images/icon/i8.png);
  }
  .more_02:hover i {
    margin-left: 20px;
  }
  /*分页*/
  .paging {
    margin-bottom: 0.2rem;
    align-items: center;
  }
  .paging li {
    margin: 0 0.16rem;
    font-size: 0.56rem;
  }
  .paging li a,
  .paging li span {
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
  }
  .paging li:first-child span,
  .paging li:first-child a {
    padding: 0;
    font-size: 0px;
    width: 1.2rem;
    background-color: #fff;
    background-size: 0.26rem auto;
  }
  .paging li:last-child span,
  .paging li:last-child a {
    padding: 0;
    font-size: 0px;
    width: 1.2rem;
    background-color: #fff;
    background-size: 0.26rem auto;
  }
  .paging .el-pagination.is-background .btn-prev,
  .paging .el-pagination.is-background .btn-next {
    margin: 0 0.16rem;
    width: 1.2rem;
  }
  .paging .el-pagination.is-background .btn-prev span,
  .paging .el-pagination.is-background .btn-next span {
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 0;
    background-color: #fff;
    border-radius: 100%;
  }
  .paging .el-pagination.is-background .btn-prev {
    left: 0;
    margin-left: 0;
  }
  .paging .el-pagination.is-background .btn-prev span {
    background-size: 0.26rem auto;
  }
  .paging .el-pagination.is-background .btn-next {
    right: 0;
    margin-right: 0;
  }
  .paging .el-pagination.is-background .btn-next span {
    background-size: 0.26rem auto;
  }
  .paging .el-pagination.is-background .el-pager li {
    margin: 0 0.16rem;
    width: 1.2rem;
    padding: 0;
    line-height: 1.2rem;
  }
  .paging .el-pagination.is-background .el-pager li svg {
    width: 0.4rem;
    height: 0.4rem;
  }
  .paging .el-pagination.is-background .el-pager .el-icon-more {
    height: 1.2rem;
  }
  .paging .el-pagination.is-background .el-pager .el-icon-more::after {
    letter-spacing: 1px;
    line-height: 1rem;
  }
}
/*导航跑动线*/
@keyframes toRight {
  0% {
    transform: translateX(-101%);
  }
  30% {
    transform: translateX(-101%);
  }
  100% {
    transform: translateX(200vh);
  }
}
/*footer跑动的线*/
@keyframes z {
  0% {
    transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
  }
  100% {
    transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(360deg) scaleX(1) scaleY(1) scaleZ(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.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;
  }
}
.anchor2 {
  position: absolute;
  left: 0;
  top: -100px;
  width: 100%;
  height: 1px;
  z-index: -1;
  opacity: 0;
}
