/*================基本样式重置================*/
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;
}
i,
em {
  font-weight: normal;
  font-style: normal;
}
b {
  font-weight: normal;
}
a,
i,
em,
span,
b,
img {
  display: block;
}
body {
  /* font-family: "Microsoft Yahei", "PingFang SC"; */
  font-family: "Source Han Sans CN";
}
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;
}
textarea {
  resize: none;
  font-size: 12px;
}
/*去掉火狐和谷歌浏览器的Textarea改变尺寸大小功能*/
/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}
/*========定义基础样式========*/
.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-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text_over3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/*主体宽度样式（可选用）如有新宽度，命名规则以小写w开头，后接具体宽度数据，例：*/
.w1500 {
  width: 78.12%;
  min-width: 1200px;
  margin: 0 auto;
}
.w1400 {
  width: 72.91%;
  min-width: 1200px;
  margin: 0 auto;
}
/*锚点定位*/
.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: 11;
    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;
    background-size: 0.8rem auto;
  }
  .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 {
    background: #fff;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  }
  .m_header.m_header_fixed{
    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{
    display: none;
  }
  .m_header.m_header_fixed .logo .m2, .m_header.cur .logo .m2{
    display: block;
  }
  .m_header.cur .search, .m_header_fixed .search{
    background: url(../images/mobile/icon/searchs.png) center no-repeat;
    background-size: 100% auto;
  }
  .m_header_fixed .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: 10;
    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%;
  }
}
.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;
  }
}
