/*================基本样式重置================*/
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
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,
button {
  margin: 0;
  padding: 0;
}
i,
em {
  font-weight: normal;
  font-style: normal;
}
b {
  font-weight: normal;
}
a,
i,
em,
span,
b,
img {
  display: block;
}
body {
  overflow-x: hidden;
  font-family: "Microsoft Yahei";
}
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 {
  display: block;
  background: none;
}
input[type=file]::-webkit-file-upload-button {
  width: 0;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  border: none;
}
button {
  display: block;
  border: none;
  cursor: pointer;
}
textarea {
  border: none;
  resize: none;
  outline: none;
  font-family: "Microsoft Yahei";
}
/*去掉火狐和谷歌浏览器的Textarea改变尺寸大小功能*/
/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}
/* 去除点击选项卡时出现的蓝色边框 */
.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;
}
.wow {
  visibility: hidden;
}
[v-cloak] {
  display: none;
}
/*========定义基础样式========*/
.hide {
  display: none;
}
.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_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;
}
/*主体宽度样式（可选用）如有新宽度，命名规则以小写w开头，后接具体宽度数据，例：*/
.w1400 {
  width: 72.91%;
  min-width: 1200px;
  margin: 0 auto;
}
body {
  font-size: 18px;
}
.content {
  margin: 0 auto;
  min-height: 500px;
  max-width: 1920px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s;
}
.header .logo {
  float: left;
  display: flex;
  align-items: center;
  width: 336px;
  height: 100px;
}
.header .logo img {
  width: auto;
  height: 49px;
}
.header .logo .img2 {
  display: none;
}
.header .nav {
  float: right;
  display: flex;
  /* justify-content: space-between;
        width: calc(100% - 336px - 6% - 22px - 10px); */
}
.header .nav .one {
  position: relative;
  margin-right: 1.6vw;
}
.header .nav .one .one_a {
  position: relative;
  line-height: 100px;
  padding: 0 4px;
  font-size: 18px;
  color: #fff;
}
.header .nav .one .one_a::after {
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 3px;
  background: #fff;
  content: "";
}
.header .nav .one .pos {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  max-height: 0px;
  overflow: hidden;
}
.header .nav .one .pos .bor {
  margin: 20px 10px 10px;
  padding: 8px 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
}
.header .nav .one .pos a {
  min-width: 130px;
  padding: 0 12px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
  text-align: center;
  white-space: nowrap;
}
.header .nav .one .pos a.cur,
.header .nav .one .pos a:hover {
  color: #ba1912;
}
.header .nav .one:hover .one_a::after,
.header .nav .one.cur .one_a::after {
  transition: all 0.5s;
  width: 100%;
}
.header .nav .one:hover .pos {
  transition: all 0.8s;
  opacity: 1;
  max-height: 700px;
}
.header .search_icon {
  float: right;
  width: 22px;
  height: 100px;
  background: url(../images/icon/i1ss.png) center no-repeat;
  background-size: 100% auto;
}
.header .search_icon:hover {
  background-image: url(../images/icon/i1s.png);
}
.header.header_fixed .logo .img1,
.header.header_index .logo .img1 {
  display: none;
}
.header.header_fixed .logo .img2,
.header.header_index .logo .img2 {
  display: block;
}
.header.header_fixed .nav .one .one_a,
.header.header_index .nav .one .one_a {
  color: #333;
}
.header.header_fixed .nav .one .one_a::after,
.header.header_index .nav .one .one_a::after {
  background: #ba1912;
}
.header.header_fixed .nav .one .one_a:hover,
.header.header_index .nav .one .one_a:hover {
  color: #ba1912;
}
.header.header_fixed .search_icon,
.header.header_index .search_icon {
  background-image: url(../images/icon/i1.png);
}
.header.header_fixed .search_icon:hover,
.header.header_index .search_icon:hover {
  background-image: url(../images/icon/i1s.png);
}
.header.header_fixed {
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.footer {
  position: relative;
  padding: 50px 0 0;
  background: #f8f8f8;
  overflow: hidden;
}
.footer::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 41%;
  height: 100%;
  background: url(../images/index/footer_bac.jpg) center no-repeat;
  background-size: cover;
  content: "";
}
.footer .left {
  width: 60%;
}
.footer .left .Flogo {
  margin-bottom: 50px;
  /* width: 430px; */
  height: 58px;
}
.footer .left .Flogo img {
  width: auto;
  height: 100%;
}
.footer .left .Fnav {
  padding-bottom: 20px;
}
.footer .left .Fnav a {
  float: left;
  margin-bottom: 30px;
  width: 25%;
  font-size: 16px;
  color: #333;
}
.footer .left .Fnav a p {
  position: relative;
  float: left;
}
.footer .left .Fnav a p::after {
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ba1912;
  content: "";
}
.footer .left .Fnav a:hover {
  color: #ba1912;
}
.footer .left .Fnav a:hover p::after {
  transition: all 0.5s;
  width: 100%;
}
.footer .left .Ftext {
  margin-right: 20px;
  padding: 20px 0;
  font-size: 16px;
  color: #999;
  border-top: #f2f2f2 2px solid;
}
.footer .left .Ftext div {
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.footer .left .Ftext a {
  color: #999;
}
.footer .left .Ftext .r15 {
  margin-right: 15px;
}
.footer .left .Ftext .bj110 {
  padding: 0 15px 0 43px ;
  line-height: 40px;
  background: url(../images/icon/i7.jpg) left 13px center no-repeat;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.footer .left .Ftext .aHoverColor a:hover {
  color: #ba1912;
}
.footer .right {
  position: relative;
  z-index: 3;
  width: 33%;
  padding-top: 0px;
  color: #333;
}
.footer .right .tit {
  margin-bottom: 38px;
  font-size: 22px;
  font-weight: bold;
}
.footer .right .msg {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 32px;
}
.footer .right .msg i {
  display: inline;
  font-size: 24px;
  font-weight: bold;
}
.footer .right .code {
  display: flex;
}
.footer .right .code .icon {
  position: relative;
  margin-right: 23px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  cursor: pointer;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .right .code .icon .pos {
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  bottom: 66px;
  transform: translateX(-50%);
  width: 134px;
  height: 0px;
  overflow: hidden;
  background: url(../images/icon/i90.png) top left no-repeat;
}
.footer .right .code .icon .pos img {
  padding: 17px 16px;
  width: 100px;
  height: 100px;
}
.footer .right .code .icon:hover .pos {
  transition: all 0.5s;
  height: 139px;
}
.footer .right .code .i_wx {
  background-image: url(../images/icon/i8.png);
}
.footer .right .code .i_wb {
  background-image: url(../images/icon/i9.png);
}
/* 悬浮侧边栏 */
.suspension {
  transition: all 0.7s;
  position: fixed;
  right: -120px;
  bottom: 15%;
  z-index: 13;
  width: 70px;
  cursor: pointer;
  background: #fff;
}
.suspension .kh {
  position: relative;
  z-index: 2;
  margin: -38px 0 10px -3px;
  width: 76px;
  height: 76px;
  border-radius: 100%;
  background: url(../images/icon/i10.png) center no-repeat;
  background-size: 100% auto;
}
.suspension .kh::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 102%;
  height: 102%;
  border-radius: 100%;
  border: #ba1912 3px solid;
  opacity: 0.24;
  content: "";
  animation-duration: 1.6s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-name: scale105;
}
.suspension .kh .text {
  padding-top: 12px;
}
.suspension .kh .text .icon {
  margin-bottom: 0;
}
.suspension .kh p {
  color: #fff;
}
.suspension .text .icon {
  position: relative;
  margin-bottom: 3px;
  width: 100%;
  height: 30px;
}
.suspension .text .icon img {
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
}
.suspension .text .icon .m2 {
  opacity: 0;
}
.suspension .text p {
  font-size: 14px;
  text-align: center;
}
.suspension .sus {
  transition: all 0.5s;
  position: relative;
  padding: 12px 0;
  width: 100%;
  color: #999;
  background: #fff;
  border-bottom: #eee 1px solid;
}
.suspension .sus:last-child {
  border-bottom: none;
}
.suspension .sus .pos {
  transition: all 0.5s;
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 134px;
  overflow: hidden;
  background: url(../images/icon/i79.png) left top no-repeat;
  background-size: 111px 134px;
}
.suspension .sus .pos .bor {
  box-sizing: border-box;
  padding: 15px 17px 0 15px;
  width: 108px;
}
.suspension .sus .pos img {
  display: block;
  margin-bottom: 5px;
  width: 76px;
  height: 76px;
}
.suspension .sus .pos i {
  font-size: 15px;
  text-align: center;
  color: #999;
}
.suspension .sus:hover {
  transition: all 0.5s;
  color: #fff;
  background-color: #ba1912;
}
.suspension .sus:hover .text .icon .m1 {
  transition: all 0.5s;
  opacity: 0;
}
.suspension .sus:hover .text .icon .m2 {
  transition: all 0.5s;
  opacity: 1;
}
.suspension .sus:hover .pos {
  transition: all 0.5s;
  width: 108px;
}
.suspension.suspension_fixed {
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@keyframes scale105 {
  0% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(1);
  }
  99.8% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(1);
  }
}
.head_bacfff .header,
.head_bacfff .m_header {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.m_header,
.m_nav,
.m_footer,
.m_suspension {
  display: none;
}
@media (max-width: 1200px) {
  .w1400,
  .w {
    margin: 0 auto;
    width: 92%;
    min-width: 300px;
  }
  body {
    font-size: 0.48rem;
  }
  .content {
    min-height: 50vh;
  }
  .header,
  .footer,
  .suspension {
    display: none;
  }
  .head_bacfff .m_header {
    background: #fff;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  }
  .m_header {
    transition: all 0.5s;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    border-bottom: rgba(255, 255, 255, 0.3) 1px solid;
  }
  .m_header .logo {
    display: flex;
    align-items: center;
    height: 2rem;
  }
  .m_header .logo img {
    display: block;
    height: 1.1rem;
  }
  .m_header .logo .m2 {
    display: none;
  }
  .m_header .nav_icon {
    width: 0.84rem;
    height: 2rem;
    background: url(../images/mobile/icon/mi1.png) center no-repeat;
    background-size: 100% auto;
  }
  .m_header .nav_icon.cur {
    background-image: url(../images/mobile/icon/mi1ss.png);
    background-size: 0.76rem auto;
  }
  .m_header .search {
    margin-right: 0.8rem;
    width: 0.74rem;
    height: 2rem;
    background: url(../images/mobile/icon/mi2.png) center no-repeat;
    background-size: 100% auto;
  }
  .m_header.cur,
  .m_header.m_header_fixed,
  .m_header.m_header_index {
    background: #fff;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  }
  .m_header.cur .logo .m1,
  .m_header.m_header_fixed .logo .m1,
  .m_header.m_header_index .logo .m1 {
    display: none;
  }
  .m_header.cur .logo .m2,
  .m_header.m_header_fixed .logo .m2,
  .m_header.m_header_index .logo .m2 {
    display: block;
  }
  .m_header.cur .nav_icon,
  .m_header.m_header_fixed .nav_icon,
  .m_header.m_header_index .nav_icon {
    background-image: url(../images/mobile/icon/mi1s.png);
  }
  .m_header.cur .nav_icon.cur,
  .m_header.m_header_fixed .nav_icon.cur,
  .m_header.m_header_index .nav_icon.cur {
    background-image: url(../images/mobile/icon/mi1ss.png);
  }
  .m_header.cur .search,
  .m_header.m_header_fixed .search,
  .m_header.m_header_index .search {
    background-image: url(../images/mobile/icon/mi2s.png);
  }
  .m_nav {
    transition: all 0.7s;
    display: block;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 13;
    width: 100%;
    height: 100vh;
    background: #fff;
  }
  .m_nav.cur {
    transition: all 0.7s;
    left: 0%;
  }
  .m_nav ul {
    margin-top: 2.2rem;
    width: 100%;
    height: calc(100% - 2.2rem);
    overflow-y: auto;
  }
  .m_nav ul li {
    position: relative;
    overflow-x: hidden;
  }
  .m_nav ul .one {
    transition: all 0.5s;
    position: relative;
    padding: 0 4%;
    font-size: 0.68rem;
    line-height: 2rem;
    color: #333;
    border-bottom: #e7e5e5 1px solid;
  }
  .m_nav ul .go .more {
    transition: all 0.5s;
    position: absolute;
    right: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: url(../images/mobile/icon/icon_3.png) center no-repeat;
    background-size: 0.18rem auto;
  }
  .m_nav ul .go .more.cur {
    transform: rotate(90deg);
  }
  .m_nav ul .pos {
    display: none;
    padding: 0.4rem 0;
    background: #fbfbfb;
  }
  .m_nav ul .pos a {
    padding-left: 1.56rem;
    line-height: 1.8rem;
    font-size: 0.6rem;
    color: #333;
  }
  .m_nav ul .on .on a {
    color: #c7161e;
  }
  .m_nav ul .on .one,
  .m_nav ul .one:hover {
    transition: all 0.5s;
    color: #c7161e;
  }
  .m_nav .search {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    color: #fff;
    border-top: #ccc 1px solid;
  }
  .m_nav .search input {
    float: left;
    width: calc(100% - 1.6rem);
    height: 2.28rem;
    font-size: 0.6rem;
    color: #333;
  }
  .m_nav .search input::-moz-placeholder {
    color: #333;
    opacity: 1;
  }
  .m_nav .search input::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
  }
  .m_nav .search input::-o-input-placeholder {
    color: #333;
    opacity: 1;
  }
  .m_nav .search input::-ms-input-placeholder {
    color: #333;
    opacity: 1;
  }
  .m_nav .search .but {
    display: block;
    float: left;
    width: 1.24rem;
    height: 2.28rem;
    background: url(../images/mobile/icon/mi2.png) left center no-repeat;
    background-size: 0.84rem auto;
  }
  .m_footer {
    display: block;
    padding: 1rem 0;
    line-height: 0.9rem;
    font-size: 0.48rem;
    color: #999;
    background: url(../images/mobile/index/footer_bac.jpg) center no-repeat;
    background-size: cover;
  }
  .m_footer .w {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .m_footer .icon1 {
    max-height: 0.5rem;
  }
  .m_footer a {
    color: #999;
  }
  .m_footer a:hover {
    color: #ba1912;
  }
  .m_footer .r15 {
    margin: 0 0.32rem;
  }
  .m_footer .bj110 {
    margin-top: 0.1rem;
    padding: 0 0.21rem 0 0.76rem;
    line-height: 0.9rem;
    background: #fff url(../images/icon/i7.jpg) left 0.23rem center no-repeat;
    background-size: 0.38rem auto;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  }
  .m_suspension {
    transition: all 0.5s;
    opacity: 0;
    display: block;
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0.5rem 0 0 0;
    background: linear-gradient(to right, #bc1b14, #db3a33);
  }
  .m_suspension.m_suspension_fixed {
    transition: all 0.5s;
    opacity: 1;
    z-index: 11;
  }
  .m_suspension .w {
    display: flex;
    width: 100%;
  }
  .m_suspension .sus {
    position: relative;
    padding: 0.5rem 0;
    flex: 1;
    color: #fff;
  }
  .m_suspension .sus::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0.62rem;
    background: #fff;
    content: "";
  }
  .m_suspension .sus:last-child::after {
    display: none;
  }
  .m_suspension .sus .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.2rem;
    width: 100%;
    height: 0.7rem;
  }
  .m_suspension .sus .icon img {
    width: 0.72rem;
  }
  .m_suspension .sus p {
    width: 100%;
    text-align: center;
  }
  .m_suspension .sus .pos {
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    bottom: 3rem;
    transform: translateX(-50%);
    width: 3.4rem;
    height: 0rem;
    background: #fff;
    border-radius: 0.2rem;
    overflow: hidden;
  }
  .m_suspension .sus .pos img {
    padding: 0.2rem;
    width: 3rem;
    height: 3rem;
  }
  .m_suspension .sus.cur .pos {
    transition: all 0.5s;
    height: 3.4rem;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  }
  .m_suspension .top {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background: #d7d7d7;
  }
  .m_suspension .top::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #d7d7d7;
    content: "";
  }
  .m_suspension .top p {
    padding-left: 0.87rem;
    line-height: 1.28rem;
    font-size: 0.48rem;
    color: #ba1912;
    background: url(../images/mobile/icon/mi11.png) left center no-repeat;
    background-size: 0.42rem auto;
  }
}
.title_01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title_01 .titLeft {
  display: flex;
  line-height: 40px;
  font-size: 30px;
  color: #333;
}
.title_01 .titLeft b {
  color: #ba1912;
  font-weight: bold;
}
.title_01 .titLeft i {
  font-weight: bold;
}
.title_01 .titLeft.white {
  color: #fff;
}
.title_01 .titLeft.white b {
  color: #fff;
}
.more_01 p {
  transition: all 0.5s;
  padding-right: 40px;
  font-size: 18px;
  color: #999;
  background: url(../images/icon/i5.png) right 10px center no-repeat;
}
.more_01:hover p {
  transition: all 0.5s;
  padding-right: 30px;
  background-position: right center;
  color: #ba1912;
}
.more_01.white p,
.more_01.white:hover p {
  color: #fff;
  background-image: url(../images/icon/i5s.png);
}
.more_02 {
  transition: all 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
}
.more_02::after {
  transition: all 0.5s;
  transform: scale(0.5);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ba1913, #dd3b34);
  border-radius: 40px;
  content: "";
}
.more_02 p {
  transition: all 0.5s;
  position: relative;
  z-index: 2;
  padding-right: 26px;
  font-size: 16px;
  color: #999;
  background: url(../images/icon/i5.png) right center no-repeat;
}
.more_02:hover {
  padding: 0 16px;
}
.more_02:hover::after {
  transition: all 0.5s;
  transform: scale(1.06);
  opacity: 1;
}
.more_02:hover p {
  transition: all 0.5s;
  color: #fff;
  background-image: url(../images/icon/i5s.png);
}
/*分页*/
.paging {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 48px;
  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;
  min-width: 38px;
  padding: 0 5px;
  background: #fff;
  border-radius: 100%;
  border: #b6b6b6 1px solid;
}
.paging li.active a,
.paging li.active span {
  color: #fff;
  background: #ba1912;
  border: #ba1912 1px solid;
}
.paging li a:hover {
  color: #ba1912;
  border: #ba1912 1px solid;
}
.paging li:first-child span,
.paging li:first-child a {
  padding: 0 120px 0 40px;
  border: rgba(255, 255, 255, 0) 1px solid;
  border-radius: 0;
}
.paging li:first-child a:hover {
  color: #ba1912;
}
.paging li:last-child span,
.paging li:last-child a {
  padding: 0 40px 0 120px;
  border: rgba(255, 255, 255, 0) 1px solid;
  border-radius: 0;
}
.paging li:last-child a:hover {
  color: #ba1912;
}
.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 {
  width: 90px;
  padding: 0;
  background: none;
}
.paging .el-pagination.is-background .btn-prev span,
.paging .el-pagination.is-background .btn-next span {
  line-height: 48px;
  font-size: 16px;
  color: #666;
}
.paging .el-pagination.is-background .btn-prev {
  margin-left: 100px;
}
.paging .el-pagination.is-background .btn-prev span {
  padding-left: 40px;
  background: url(../images/icon/i24.png) left center no-repeat;
}
.paging .el-pagination.is-background .btn-prev:hover span {
  color: #ba1912;
  background-image: url(../images/icon/i24s.png);
}
.paging .el-pagination.is-background .btn-prev:disabled:hover span {
  color: #666;
  background-image: url(../images/icon/i24.png);
}
.paging .el-pagination.is-background .btn-next {
  margin-right: 100px;
}
.paging .el-pagination.is-background .btn-next span {
  padding-right: 40px;
  background: url(../images/icon/i25.png) right center no-repeat;
}
.paging .el-pagination.is-background .btn-next:hover span {
  color: #ba1912;
  background-image: url(../images/icon/i25s.png);
}
.paging .el-pagination.is-background .btn-next:disabled:hover span {
  color: #666;
  background-image: url(../images/icon/i25.png);
}
.paging .el-pagination.is-background .el-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: calc(100% - 200px - 180px);
}
.paging .el-pagination.is-background .el-pager li {
  display: block;
  color: #666;
  margin: 0 14px;
  padding: 0 5px;
  min-width: 38px;
  height: auto;
  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: #ba1912;
  border: #ba1912 1px solid;
}
.paging .el-pagination.is-background .el-pager li.active,
.paging .el-pagination.is-background .el-pager li.is-active {
  color: #fff;
  background: #ba1912;
  border: #ba1912 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) {
  .title_01 .titLeft {
    line-height: 1rem;
    font-size: 0.84rem;
  }
  .more_01 p {
    padding-right: 0.65rem;
    font-size: 0.52rem;
    background-position: right center;
    background-size: 0.41rem auto;
  }
  .more_01:hover p {
    padding-right: 0.65rem;
  }
  .more_02 {
    height: 1.2rem;
    border-radius: 1.2rem;
  }
  .more_02::after {
    border-radius: 1.2rem;
  }
  .more_02 p {
    padding-right: 0.8rem;
    font-size: 0.48rem;
    background-size: 0.48rem auto;
  }
  .more_02:hover {
    padding: 0 0.8rem 0 0;
  }
  /*分页*/
  .paging {
    justify-content: space-between;
    align-items: center;
    line-height: 1.2rem;
  }
  .paging li {
    margin: 0 0.16rem;
    font-size: 0.56rem;
  }
  .paging li a,
  .paging li span {
    min-width: 1.2rem;
    padding: 0;
  }
  .paging li:first-child span,
  .paging li:first-child a {
    padding: 0;
    font-size: 0px;
    width: 1.2rem;
    background-color: #fff;
    background-position: center;
    background-size: 0.26rem auto;
    border-radius: 100%;
  }
  .paging li:last-child span,
  .paging li:last-child a {
    padding: 0;
    font-size: 0px;
    width: 1.2rem;
    background-color: #fff;
    background-position: center;
    background-size: 0.26rem auto;
    border-radius: 100%;
  }
  .paging .el-pagination.is-background .btn-prev,
  .paging .el-pagination.is-background .btn-next {
    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 {
    padding-left: 0;
    background-size: 0.72rem auto;
    background-position: center;
  }
  .paging .el-pagination.is-background .btn-next {
    right: 0;
    margin-right: 0;
  }
  .paging .el-pagination.is-background .btn-next span {
    padding-right: 0;
    background-size: 0.72rem auto;
    background-position: center;
  }
  .paging .el-pagination.is-background .el-pager {
    width: calc(100% - 3rem);
  }
  .paging .el-pagination.is-background .el-pager li {
    margin: 0 0.16rem;
    min-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;
  }
}
.cta {
  display: flex;
  text-decoration: none;
  overflow: hidden;
  backface-visibility: hidden;
  position: relative;
}
.cta .btn-text-parent {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.cta .wrap_text {
  display: inline-block;
}
.cta .buildin-btn-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  transform: translateY(100%);
}
.cta .buildin-btn-text .btn-letter {
  opacity: 0;
}
.cta .btn-letter {
  display: inline-block;
  margin: 0em 0.05em;
  position: relative;
  transition: transform 300ms, opacity 300ms ease;
}
.cta .current-btn-text .btn-letter:nth-child(1) {
  transition-delay: 49ms;
}
.cta .current-btn-text .btn-letter:nth-child(2) {
  transition-delay: 99ms;
}
.cta .current-btn-text .btn-letter:nth-child(3) {
  transition-delay: 149ms;
}
.cta .current-btn-text .btn-letter:nth-child(4) {
  transition-delay: 199ms;
}
.cta .current-btn-text .btn-letter:nth-child(5) {
  transition-delay: 249ms;
}
.cta .current-btn-text .btn-letter:nth-child(6) {
  transition-delay: 299ms;
}
.cta .current-btn-text .btn-letter:nth-child(7) {
  transition-delay: 349ms;
}
.cta .current-btn-text .btn-letter:nth-child(8) {
  transition-delay: 399ms;
}
.cta .current-btn-text .btn-letter:nth-child(9) {
  transition-delay: 449ms;
}
.cta .current-btn-text .btn-letter:nth-child(10) {
  transition-delay: 499ms;
}
.cta .current-btn-text .btn-letter:nth-child(11) {
  transition-delay: 549ms;
}
.cta .current-btn-text .btn-letter:nth-child(12) {
  transition-delay: 599ms;
}
.cta .current-btn-text .btn-letter:nth-child(13) {
  transition-delay: 649ms;
}
.cta .current-btn-text .btn-letter:nth-child(14) {
  transition-delay: 699ms;
}
.cta .current-btn-text .btn-letter:nth-child(15) {
  transition-delay: 749ms;
}
.cta .current-btn-text .btn-letter:nth-child(16) {
  transition-delay: 799ms;
}
.cta .current-btn-text .btn-letter:nth-child(17) {
  transition-delay: 849ms;
}
.cta .current-btn-text .btn-letter:nth-child(18) {
  transition-delay: 899ms;
}
.cta .current-btn-text .btn-letter:nth-child(19) {
  transition-delay: 949ms;
}
.cta .current-btn-text .btn-letter:nth-child(20) {
  transition-delay: 999ms;
}
.cta .current-btn-text .btn-letter:nth-child(21) {
  transition-delay: 1049ms;
}
.cta .current-btn-text .btn-letter:nth-child(22) {
  transition-delay: 1099ms;
}
.cta .current-btn-text .btn-letter:nth-child(23) {
  transition-delay: 1149ms;
}
.cta .current-btn-text .btn-letter:nth-child(24) {
  transition-delay: 1199ms;
}
.cta .current-btn-text .btn-letter:nth-child(25) {
  transition-delay: 1249ms;
}
.cta .current-btn-text .btn-letter:nth-child(26) {
  transition-delay: 1299ms;
}
.cta .current-btn-text .btn-letter:nth-child(27) {
  transition-delay: 1349ms;
}
.cta .current-btn-text .btn-letter:nth-child(28) {
  transition-delay: 1399ms;
}
.cta .current-btn-text .btn-letter:nth-child(29) {
  transition-delay: 1449ms;
}
.cta .current-btn-text .btn-letter:nth-child(30) {
  transition-delay: 1499ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(1) {
  opacity: 0;
  transition-delay: 49ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(2) {
  opacity: 0;
  transition-delay: 99ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(3) {
  opacity: 0;
  transition-delay: 149ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(4) {
  opacity: 0;
  transition-delay: 199ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(5) {
  opacity: 0;
  transition-delay: 249ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(6) {
  opacity: 0;
  transition-delay: 299ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(7) {
  opacity: 0;
  transition-delay: 349ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(8) {
  opacity: 0;
  transition-delay: 399ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(9) {
  opacity: 0;
  transition-delay: 449ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(10) {
  opacity: 0;
  transition-delay: 499ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(11) {
  opacity: 0;
  transition-delay: 549ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(12) {
  opacity: 0;
  transition-delay: 599ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(13) {
  opacity: 0;
  transition-delay: 649ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(14) {
  opacity: 0;
  transition-delay: 699ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(15) {
  opacity: 0;
  transition-delay: 749ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(16) {
  opacity: 0;
  transition-delay: 799ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(17) {
  opacity: 0;
  transition-delay: 849ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(18) {
  opacity: 0;
  transition-delay: 899ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(19) {
  opacity: 0;
  transition-delay: 949ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(20) {
  opacity: 0;
  transition-delay: 999ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(21) {
  opacity: 0;
  transition-delay: 1049ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(22) {
  opacity: 0;
  transition-delay: 1099ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(23) {
  opacity: 0;
  transition-delay: 1149ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(24) {
  opacity: 0;
  transition-delay: 1199ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(25) {
  opacity: 0;
  transition-delay: 1249ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(26) {
  opacity: 0;
  transition-delay: 1299ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(27) {
  opacity: 0;
  transition-delay: 1349ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(28) {
  opacity: 0;
  transition-delay: 1399ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(29) {
  opacity: 0;
  transition-delay: 1449ms;
}
.cta .buildin-btn-text .btn-letter:nth-child(30) {
  opacity: 0;
  transition-delay: 1499ms;
}
.cta:hover .current-btn-text .btn-letter {
  opacity: 0;
  transform: translateY(-100%);
}
.cta:hover .buildin-btn-text .btn-letter {
  opacity: 1;
  transform: translateY(-100%);
}
.flash .btn-text-parent {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.flash .wrap_text {
  display: inline-block;
}
.flash .buildin-btn-text {
  display: none;
}
.flash .btn-letter {
  display: inline-block;
  margin: 0em 0.05em;
  position: relative;
}
.flash:hover .current-btn-text .btn-letter,
.flash.on .current-btn-text .btn-letter {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-name: flashText;
  animation-name: flashText;
}
@keyframes flashText {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flash .current-btn-text .btn-letter:nth-child(1),
.flash .current-btn-text .btn-letter:nth-child(9),
.flash .current-btn-text .btn-letter:nth-child(11) {
  animation-delay: 0.1s;
}
.flash .current-btn-text .btn-letter:nth-child(2),
.flash .current-btn-text .btn-letter:nth-child(6),
.flash .current-btn-text .btn-letter:nth-child(13) {
  animation-delay: 0.5s;
}
.flash .current-btn-text .btn-letter:nth-child(3),
.flash .current-btn-text .btn-letter:nth-child(8),
.flash .current-btn-text .btn-letter:nth-child(15) {
  animation-delay: 0.2s;
}
.flash .current-btn-text .btn-letter:nth-child(4),
.flash .current-btn-text .btn-letter:nth-child(10),
.flash .current-btn-text .btn-letter:nth-child(14) {
  animation-delay: 0.4s;
}
.flash .current-btn-text .btn-letter:nth-child(5),
.flash .current-btn-text .btn-letter:nth-child(7),
.flash .current-btn-text .btn-letter:nth-child(12) {
  animation-delay: 0.3s;
}
.fadeInUp150 {
  -webkit-animation-name: fadeInUp150;
  animation-name: fadeInUp150;
}
@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 scale1 {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
