/* CSS Document */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #E50000;
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 5px;
  background: #aaaaaa;
}

:root {
  --vh: 1vh; /*calc(var(--vh) * 100) == 100vh */
}

@keyframes divAnimate {
  100% {
    transform: translateY(0);
  }
}
@keyframes lineAnimate {
  0% {
    opacity: 1;
  }
  90%, 100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes showAnimate {
  100% {
    opacity: 1;
  }
}
@keyframes hideAnimate {
  100% {
    opacity: 0;
  }
}
@keyframes next_before {
  100% {
    transform: translateY(-50%) scale(0.9);
  }
}
@keyframes next_small {
  100% {
    /*transform: translateX(-33px) scale(0.175);*/
    transform: translate(-50%,-.22rem ) scale(0.25);
  }
}
@keyframes hide_y {
  100% {
    /*transform: translate(-33px, -15px) scale(0.175);*/
    transform: translate(-50%, -.2rem) scale(0.25);
  }
}
@keyframes center_y {
  100% {
    /*transform: translateY(-15px);*/
  }
}
@keyframes mix {
  100% {
    mix-blend-mode: screen;
  }
}
@keyframes scale1Animate {
  100% {
    transform: translate(-50%, -50%) scale(40);
  }
}
.loading {
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading.start .wrapbox .fist {
  opacity: 1;
}

.loading.on {
  animation: mix 0.6s 3.2s ease forwards;
}

.loading.on .fist {
  animation: hideAnimate 0.6s ease forwards;
}

.loading.on .next {
  animation: showAnimate 0.6s ease forwards, next_small 0.8s 0.8s ease forwards, hideAnimate 1s 1.8s ease forwards, hide_y 0.6s 2.2s ease forwards;
}

.loading.on .next:before {
  animation: next_before 0.6s 0.2s ease forwards;
}

.loading.on .center {
  animation: showAnimate 1s 1.5s ease forwards;
}

.loading.on .center .y {
  animation: center_y 0.6s 2.2s ease forwards, hideAnimate 0.6s 2.8s ease forwards;
}

.loading.on .scale {
  animation: showAnimate 0.6s 3.3s ease forwards, scale1Animate 3s 3.5s ease forwards;
}

.loading .wrapbox {
  position: relative;
  width: 480px;
  height: 480px;
}

.loading .wrapbox .fist {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  /*  border: 1px solid #C6C6C6; */
  position: relative;
  opacity: 0;
  transition: 0.6s ease;
}

.loading .wrapbox .fist svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 123%;
  height: 123%;
  transition: 0.6s;
}

.loading .wrapbox .fist svg path {
  stroke-dashoffset: 157px;
  fill: none;
  stroke: #E50000;
  stroke-miterlimit: 10;
  stroke-width: 0.1px;
}

.loading .wrapbox .next {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.6s ease;
}

.loading .wrapbox .next:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #E50000;
  z-index: 2;
}

.loading .wrapbox .next:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%) scale(1);
  right: 0;
  border-radius: 50%;
  background: #fff;
  z-index: 3;
  transform-origin: right;
}

.loading .wrapbox .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
}

.loading .wrapbox .center .s1 {
  width: 152px;
  width: 6.47rem;
  width: 647px;
  object-fit: contain;
}

.loading .wrapbox .center .s2 {
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translate(-50%, 0);
  top: 112%;
}

.loading .wrapbox .scale {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #000;
  opacity: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Microsoft YaHei, Arial;
  margin: 0;
  padding: 0;
  font-style: normal !important;
  font-variant: normal !important;
  color: #000;
  font-size: 12px;
  margin: 0px auto;
  padding: 0px;
}

.albb_font {
  font-family: albb;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
}

a:hover {
  /*    color:#1b99bb; */
  text-decoration: none;
  outline: none;
}

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

.clear {
  clear: both;
  font-size: 0vw;
  line-height: 0;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

.cell, .cell2, .cell3 {
  border-collapse: collapse;
  border-spacing: 0;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

a, img {
  border: 0px;
}

br {
  font-family: SimSun;
}

p {
  margin: 0px;
  padding: 0px;
  line-height: 1.75;
}

i {
  margin: 0px;
  padding: 0px;
  font-style: normal;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

br {
  margin: 0px;
  padding: 0px;
}

.clearheight {
  width: 100%;
  height: 1px;
  overflow: hidden;
}

input, select, textarea {
  font-family: "SourceHanSansCN-Regular", -apple-system, BlinkMacSystemFont, PingFang SC, Microsoft YaHei, Arial;
  outline: none;
}

input::-ms-clear, input::-ms-reveal {
  display: none;
}

input[type=text]:disabled {
  background-color: #999;
}

input::-moz-placeholder {
  color: #000;
}

input::-moz-placeholder {
  color: #000;
}

input::-ms-input-placeholder {
  color: #000;
}

input::-webkit-input-placeholder {
  color: #000;
}

input[type=text], input[type=button], input[type=submit], input[type=reset], select, textarea, button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0vw 13.3333vw white inset;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

input[type=button], input[type=text], input[type=password] {
  -webkit-appearance: none;
  outline: none;
}

a, a:hover, a:active, a:visited, a:link, a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
}

.container {
  width: 100%;
}

.section {
  width: 100%;
  background-color: #fff;
}

.section .pagefr_n {
  width: 100%;
  height: calc(var(--vh) * 100);
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
}

.section.active .pagefr_n {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}

@-webkit-keyframes an_0 {
  0% {
    box-shadow: 0 0 0px 0px rgba(24, 152, 242, 0);
  }
  50% {
    box-shadow: 0 0 10px 3px rgba(24, 152, 242, 0.6);
  }
  100% {
    box-shadow: 0 0 0px 0px rgba(24, 152, 242, 0);
  }
}
@keyframes an_0 {
  0% {
    box-shadow: 0 0 0px 0px rgba(24, 152, 242, 0);
  }
  50% {
    box-shadow: 0 0 10px 3px rgba(24, 152, 242, 0.6);
  }
  100% {
    box-shadow: 0 0 0px 0px rgba(24, 152, 242, 0);
  }
}
@-webkit-keyframes an_02 {
  0% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
@keyframes an_02 {
  0% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
.an_02 {
  -webkit-animation-name: an_02;
  animation-name: an_02;
}

@-webkit-keyframes an_01 {
  0% {
    transform: scale(0.99, 0.99);
    -moz-transform: scale(0.99, 0.99);
    -webkit-transform: scale(0.99, 0.99);
  }
  50% {
    transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
  }
  100% {
    transform: scale(0.99, 0.99);
    -moz-transform: scale(0.99, 0.99);
    -webkit-transform: scale(0.99, 0.99);
  }
}
@keyframes an_01 {
  0% {
    transform: scale(0.99, 0.99);
    -moz-transform: scale(0.99, 0.99);
    -webkit-transform: scale(0.99, 0.99);
  }
  50% {
    transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
  }
  100% {
    transform: scale(0.99, 0.99);
    -moz-transform: scale(0.99, 0.99);
    -webkit-transform: scale(0.99, 0.99);
  }
}
@-webkit-keyframes an_03 {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes an_03 {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.an_03 {
  -webkit-animation-name: an_03;
  animation-name: an_03;
}

@-webkit-keyframes an_zdy {}
@keyframes an_zdy {}
.an_zdy {
  -webkit-animation-name: an_zdy;
  animation-name: an_zdy;
}

@-webkit-keyframes an_04 {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
  50% {
    transform: translateX(-0.05rem);
    -webkit-transform: translateX(-0.05rem);
    -moz-transform: translateX(-0.05rem);
  }
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
}
@keyframes an_04 {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
  50% {
    transform: translateX(-0.05rem);
    -webkit-transform: translateX(-0.05rem);
    -moz-transform: translateX(-0.05rem);
  }
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
}
@-webkit-keyframes an_05 {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
  50% {
    transform: translateX(0.05rem);
    -webkit-transform: translateX(0.05rem);
    -moz-transform: translateX(0.05rem);
  }
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
}
@keyframes an_05 {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
  50% {
    transform: translateX(0.05rem);
    -webkit-transform: translateX(0.05rem);
    -moz-transform: translateX(0.05rem);
  }
  100% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
}
@-webkit-keyframes an_06 {
  0% {
    transform: translateX(-0.05rem);
    -webkit-transform: translateX(-0.05rem);
    -moz-transform: translateX(-0.05rem);
  }
  50% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
  100% {
    transform: translateX(0.05rem);
    -webkit-transform: translateX(0.05rem);
    -moz-transform: translateX(0.05rem);
  }
}
@keyframes an_06 {
  0% {
    transform: translateX(-0.05rem);
    -webkit-transform: translateX(-0.05rem);
    -moz-transform: translateX(-0.05rem);
  }
  50% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
  }
  100% {
    transform: translateX(0.05rem);
    -webkit-transform: translateX(0.05rem);
    -moz-transform: translateX(0.05rem);
  }
}
@-webkit-keyframes ksan {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ksan {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes ksan_01 {
  0% {
    -webkit-transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}
@keyframes ksan_01 {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes an_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes an_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/*common*/
.in_body {
  min-height: 100vh;
  position: relative;
  background-color: #fff;
  opacity: 0;
}

.other_body {
  background-color: #f9f9f9;
}

.home_body {
  overflow: hidden;
  height: 100vh;
}

.wrap {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
}

.wrap_in {
  margin: 0px 1.1rem;
}

.wrap_c {
  margin: 0px 1.6rem;
}

.wrap_c1 {
  margin: 0px 2.1rem;
}

.wrap_nr {
  margin: 0px 2.5rem;
}

.wrap_c2 {
  margin: 0px 2.6rem;
}

.w_wap {
  display: none !important;
}

.topfr {
  overflow: visible;
  position: fixed;
  left: 0px;
  top: 0;
  z-index: 9999;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  -moz-transition: 0.3s linear; /*  border-bottom: solid rgba(255,255,255,.1) 1px; */
  width: 100%;
  background: #fff;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.08);
}

.topc {
  width: 100%;
  height: 1rem;
  overflow: visible;
  border-radius: 1rem;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  display: flex;
  justify-content: space-between;
}

.topc .fl {
  float: left;
  height: 1rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.topc .fl img {
  display: block;
  width: 2.4rem;
}

.topc .fr {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.topc .fr .topsearch {
  display: flex;
  width: 2.2rem;
  height: 0.45rem;
  border-radius: 0.225rem;
  border: solid #E50101 1px;
  overflow: hidden;
}
.topc .fr .topsearch input {
  border: none;
  background: none;
  padding: 0.1rem 0.2rem;
  box-sizing: border-box;
  width: calc(100% - 0.5rem);
}
.topc .fr .topsearch input::placeholder {
  color: #999;
}
.topc .fr .topsearch button {
  width: 0.5rem;
  background: #E50101;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.topc .fr .topsearch button img {
  width: 0.17rem;
}
.topc .fr .login {
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
  color: #707070;
}
.topc .fr .login i {
  margin-right: 0.1rem;
}
.topc .fr .login i img {
  height: 0.15rem;
}
.topc .fr .lang {
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
  color: #707070;
}
.topc .fr .lang i {
  margin-right: 0.1rem;
}
.topc .fr .lang i img {
  height: 0.15rem;
}
.topc .fr .lang em {
  margin-left: 0.15rem;
}
.topc .fr .lang em img {
  width: 0.05rem;
}

.menufr {
  float: left;
  margin-left: 1rem;
}

.menufr ul li {
  float: left;
  margin-right: 0.7rem; /* position:relative; */
}

.menufr ul li:last-child {
  margin-right: 0px;
}

.menufr ul li .mu_t {
  width: 100%;
  height: 1rem;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  font-family: SourceHanSansCN-Medium;
  position: relative;
}

.menufr ul li .mu_t:hover::after,
.menufr ul li .mu_t.active::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #E50000;
    position: absolute;
    left: 0;
    bottom: .23rem;
}
.menufr ul li .mu_t:hover>a
.menufr ul li .mu_t.active>a{
    color: #E50000;
}
.menufr ul li .mu_t a {
      color: #000;
    font-weight: bold;
}

.menufr ul li .mu_t a img {
  margin-left: 0.1rem;
  width: 0.09rem;
}

.menufr ul li .pc_mu {
  width: 100%;
  position: absolute;
  left: 0;
  top: 1rem;
  display: none;
  background: #fff;
}
.menufr ul li .pc_mu .sec_menu {
  background: #fff;
  padding: 0.54rem 0;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.08) inset;
}
.menufr ul li .pc_mu .sec_menu ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.3rem;
}
.menufr ul li .pc_mu .sec_menu ul a {
  border-bottom: solid #fff 2px;
  padding-bottom: 0.1rem;
}
.menufr ul li .pc_mu .sec_menu ul a:hover {
  border-bottom: solid #E50000 2px;
  color: #E50000;
  font-weight: bold;
}

.menufr ul li .mu_c {
  display: none;
}

.menufr ul li .mu_c .muc_c {
  width: 100%;
  overflow: hidden;
  display: flex;
  padding-top: 1rem;
}

.menufr ul li .mu_c b {
  display: none;
}

.menufr ul li .mu_c .muc_c {
  width: 100%;
  padding: 0.1rem;
  overflow: hidden;
  position: relative;
  z-index: 9;
  background-color: #fff;
}

.menufr ul li .mu_c .muc_c p {
  width: 100%;
  overflow: hidden;
  line-height: 1.5;
  padding: 0.05rem 0px;
  text-align: center;
}

.menufr ul li .mu_c .muc_c p a {
  color: #666;
}

/* .top_on{top:0px;}
.top_on{width:calc(100%);background: #fff;
  .menufr ul li .mu_t a{color:#333;}
  .topc .fl img:nth-child(2){display: block;}
  .topc .fl img:nth-child(1){display: none;}
}

.top_on .topc .fl{margin-left:0px;}
.top_on .topc .fr{margin-right:0px;}
 */
.in_01 {
  overflow: hidden; 
   height:calc(100vh - 1rem);
   min-height: 9.8rem;
   max-height: 10.8rem;
  position: relative;
  margin-top: 1rem;
}

.in_01_slide {
  width: 100%;
  overflow: hidden; /* height:calc(100vh - 1rem); */
}

.in_01_slide .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.in_01_slide .swiper-slide .in_01_bg {
  width: 100%; /* height:100%;overflow:hidden;position:absolute;left:0px;top:0px;z-index:1; */
  height: 100%;
}

.in_01_slide .swiper-slide .in_01_bg img {
  width: 100%; /* height:100%;display:block;position:absolute;left:0px;top:0px;object-fit:cover; */ /* object-position:50%; */
  height: 100%;
  transition: 3s linear;
  -webkit-transition: 3s linear;
  -o-transition: 3s linear;
  -moz-transition: 3s linear;
  height: 100%;
}

.in_01_slide .swiper-slide .in_01_bg.on img {
  transform: scale(1.03, 1.03);
  -moz-transform: scale(1.03, 1.03);
  -webkit-transform: scale(1.03, 1.03);
}

/* .in_01_slide .swiper-slide .in_01_txt{width:100%;overflow:visible;position:absolute;left:0px;top:0px;z-index:9;height:100%;display:flex;display:-webkit-flex;align-items:center;justify-content:center;}
.in_01_slide .swiper-slide .in_01_txt .c{width:100%;overflow:visible;}
.in_01_slide .swiper-slide .in_01_txt .p{width:100%;overflow:visible;color:#fff;opacity:0;}
.in_01_slide .swiper-slide .in_01_txt .p1{line-height:1.3;color:rgba(255,255,255,.6);}
.in_01_slide .swiper-slide .in_01_txt .p2{font-family:SourceHanSansCN-Bold;line-height:1.5; font-weight: bold;}
.in_01_slide .swiper-slide .in_01_txt .p3{margin-top:1.5rem;}
.in_01_slide .swiper-slide .in_01_txt .p4{margin-top:.2rem;}
.in_01_slide .swiper-slide .in_01_txt .p3 a{display:inline-flex;line-height:.5rem;
  width:1.8rem;border-radius:.5rem;color:#0E883B;transition:0s linear;-webkit-transition:0s linear;-o-transition:0s linear;-moz-transition:0s linear;
  align-items: center;justify-content: center; background: #fff;}
.in_01_slide .swiper-slide .in_01_txt .p3 span{display:inline-block;position:relative;padding-right:.2rem;}
.in_01_slide .swiper-slide .in_01_txt .p3  b{width: .15rem; height: .05rem;display:block;background:url("../images/more_arr1.png") center no-repeat;background-size: 100%;}


.in_01_slide .swiper-slide .in_01_txt .p3 a:hover{background-color:#eee;}

.in_01_slide .swiper-slide .in_01_txt .c1{
  width: 100%;
  .wrap_c{
    width: 6.25rem;
    margin-left: auto;
  }
  .p{


    img{width: 2.77rem;padding-bottom: .38rem;}
  }
}
.in_01_slide .swiper-slide .in_01_txt .c2{
  text-align: center;
} */
.in_01spbt {
  position: absolute;
  bottom: 0.7rem !important;
  width: 100%;
  z-index: 9;
  padding-left: 1.6rem;
  display: flex;
  justify-content: flex-start;
}
.in_01spbt span.swiper-pagination-bullet {
  width: 0.34rem;
  height: 0.02rem;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 0.06rem !important;
}
.in_01spbt span.swiper-pagination-bullet-active {
  width: 0.95rem;
  height: 0.02rem;
  background: rgb(255, 255, 255);
  opacity: 1;
}

.pn0 {
  position: absolute;
  bottom: 0.7rem !important;
  width: 50%;
  z-index: 9;
  right: 1.6rem;
  display: flex;
  justify-content: flex-end;
  z-index: 999999;
}
.pn0 a.prev, .pn0 a.next {
  width: 0.47rem;
  height: 0.47rem;
  border-radius: 50%;
  border: solid rgba(255, 255, 255, 0.29) 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.29);
  margin-left: 0.16rem;
  /* img:nth-child(2){display: none;} */
}
.pn0 a.prev img, .pn0 a.next img {
  width: 0.1rem;
}

.idownbox {
  position: absolute;
  width: 0.22rem;
  left: calc(50% - 0.11rem);
  bottom: 0.2rem;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.in_02 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0 0.94rem;
  background: url(../images/i_bg2.png) center no-repeat;
  background-size: cover;
}
.in_02 .in_02_1 {
  display: flex;
  align-items: flex-end;
}
.in_02 .in_02_1 .fl {
  width: 37.3125%;
  padding-right: 1.17rem;
  box-sizing: border-box;
}
.in_02 .in_02_1 .fr {
  width: 62.6875%;
  display: flex;
  align-items: center;
}
.in_02 .in_02_1 .fr .a-prev1, .in_02 .in_02_1 .fr .a-next1 {
  display: inline-block;
  padding: 0.2rem;
  cursor: pointer;
}
.in_02 .in_02_1 .fr .a-prev1 img, .in_02 .in_02_1 .fr .a-next1 img {
  width: 0.07rem;
  display: block;
}
.in_02 .in_02_1 .fr .a-prev1 img:nth-child(2), .in_02 .in_02_1 .fr .a-next1 img:nth-child(2) {
  display: none;
}
.in_02 .in_02_1 .fr .a-prev1:hover img:nth-child(1), .in_02 .in_02_1 .fr .a-next1:hover img:nth-child(1) {
  display: none;
}
.in_02 .in_02_1 .fr .a-prev1:hover img:nth-child(2), .in_02 .in_02_1 .fr .a-next1:hover img:nth-child(2) {
  display: block;
}
.in_02 .a_swiper2, .in_02 .a_swiper1 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.in_02 .a_swiper2 .swiper-slide img, .in_02 .a_swiper1 .swiper-slide img {
  width: 100%;
}
.in_02 .a_swiper1 {
  position: relative;
  margin: 0 0.15rem;
}
.in_02 .a_swiper1 .swiper-slide {
  overflow: hidden;
  /* background: #fff; */
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.in_02 .a_swiper1 .swiper-slide span {
  color: #707070;
}
.in_02 .a_swiper1 .swiper-slide-thumb-active span {
  color: #E50000;
  font-weight: bold;
}
.in_02 .a_swiper2 {
  margin-top: 0.58rem;
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide {
  display: flex;
  align-items: center;
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fl {
  width: 37.3125%;
  padding-right: 1.17rem;
  box-sizing: border-box;
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fl p {
  margin-top: 0.15rem;
  color: #707070;
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr {
  width: 62.6875%;
  /*  .asub-prev:hover,.asub-next:hover{
     img:nth-child(1){display: none;}
     img:nth-child(2){display: block;}
   } */
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-prev, .in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-next {
  display: inline-flex;
  position: absolute;
  align-items: center;
  z-index: 99;
  top: 35%;
  justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  /*  img:nth-child(2){display: none;} */
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-prev img, .in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-next img {
  width: 0.07rem;
  display: block;
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-prev {
  left: 0;
}
.in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-next {
  right: 0;
}
.in_02 .asub_swiper {
  width: 100%;
  height: 4.3rem;
  overflow: hidden;
  position: relative;
  padding-bottom: 0.5rem;
}
.in_02 .asub_swiper .swiper-slide a {
  display: flex;
  flex-direction: column;
}
.in_02 .asub_swiper .swiper-slide a span {
  text-align: center;
  margin-top: 0.25rem;
}
.in_02 .asub_swiper .swiper-slide:hover i {
  border: solid #E50000 1px;
  display: block;
  box-sizing: border-box;
}
.in_02 .asub_swiper .swiper-slide:hover a {
  color: #E50000;
}
.in_02 .asub_swiper .prog_01spbt {
  position: absolute;
  bottom: 0 !important;
  width: 100%;
  z-index: 9;
  display: flex;
  justify-content: center;
  /*   justify-content: center; */
  background: none;
}
.in_02 .asub_swiper .prog_01spbt span.swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  background: #AFAFAF;
  border-radius: 50%;
  margin: 0 0.08rem !important;
  opacity: 1;
}
.in_02 .asub_swiper .prog_01spbt span.swiper-pagination-bullet-active {
  width: 0.12rem;
  height: 0.12rem;
  background: #E50000;
  opacity: 1;
  border-radius: 50%;
}

a.more01 {
  width: 1.7rem;
  height: 0.5rem;
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  color: #E50000;
  border: solid #E50000 1px;
}
a.more01 img {
  width: 0.45rem !important;
  margin-left: 0.1rem;
}

.tc {
  text-align: center;
  width: 100%;
}

.in_03 {
  width: 100%;
  position: relative;
  background: url(../images/i_bg3.png) center no-repeat;
  padding: 1.5rem 0 0;
  background-size: cover;
}
.in_03 .title2 h4, .in_03 .title2 h2 {
  color: #fff;
}
.in_03 .more01 {
  color: #fff;
  border-color: #fff;
}
.in_03 .more01:hover {
  background: #E50000;
  border-color: #E50000;
}
.in_03 .i_introbox {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.in_03 .i_introbox .itxt {
  margin-top: 0.68rem;
  width: 65.375%;
}
.in_03 .i_introbox .itxt p {
  line-height: 2.1;
  color: #fff;
}
.in_03 ul.ul1 {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
}
.in_03 ul.ul1 li {
  position: relative;
  height: 2.8rem;
  background: rgba(0, 0, 0, 0.37);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.in_03 ul.ul1 li::before {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(200deg, rgba(0, 0, 0, 0) 0%, #FFFFFF 26%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0px 0px 0px 0px;
  content: "";
  left: 0;
  top: 0;
}
.in_03 ul.ul1 li img {
  width: 0.64rem;
}
.in_03 ul.ul1 li h4 {
  margin-top: 0.25rem;
}
.in_03 ul.ul1 li p {
  margin-top: 0.11rem;
  opacity: 0.8;
}
.in_03 .i_bgbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.in_03 .i_bgbox i {
  display: block;
  width: 100%;
  height: 100%;
  display: none;
}
.in_03 .i_bgbox i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_03 .i_bgbox i.on {
  display: block;
}

.title1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title1 p {
  margin-top: 0.3rem;
}
.title1 .fl {
  width: 30%;
}
.title1 .fr {
  width: 60%;
  display: flex;
  justify-content: flex-end;
}
.title1 .fr a {
  display: flex;
  width: 1.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
}
.title1 .fr a.on {
  color: #E50000;
  font-weight: bold;
}

.title2 h2 {
  color: #E50000;
}
.title2 h4 {
  color: #000;
}

.h2tit1 {
  font-weight: bold;
}
.h2tit1 i {
  color: #e81432;
}

.in_04 {
  padding: 1.77rem 0 1.37rem;
}
.in_04 .title1 h2 {
  color: #E50000;
}
.in_04 .inewsbox {
  width: 100%;
  margin-top: 0.84rem;
}
.in_04 .inewsbox .item {
  display: none;
  justify-content: space-between;
}
.in_04 .inewsbox .item .fl {
  width: 41.875%;
}
.in_04 .inewsbox .item .fl a {
  display: block;
}
.in_04 .inewsbox .item .fl i {
  display: block;
  overflow: hidden;
  height: 3.7rem;
}
.in_04 .inewsbox .item .fl i img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s linear;
}
.in_04 .inewsbox .item .fl h4 {
  margin-top: 0.32rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 100%;
  font-weight: bold;
}
.in_04 .inewsbox .item .fl p {
  color: #707070;
  margin: 0.15rem 0;
}
.in_04 .inewsbox .item .fl span {
  color: #707070;
}
.in_04 .inewsbox .item .fl:hover img {
  transform: scale(1.2);
}
.in_04 .inewsbox .item .fr {
  width: 55.4%;
}
.in_04 .inewsbox .item .fr a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.24rem;
  padding-bottom: 0.24rem;
  border-bottom: solid #EAEAEA 1px;
}
.in_04 .inewsbox .item .fr a .img1 {
  width: 2.42rem;
  height: 1.33rem;
}
.in_04 .inewsbox .item .fr a .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_04 .inewsbox .item .fr a .txt1 {
  width: calc(100% - 2.74rem);
  color: #000;
}
.in_04 .inewsbox .item .fr a .txt1 h4 {
  font-weight: bold;
}
.in_04 .inewsbox .item .fr a .txt1 p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 0.56rem;
  color: #707070;
  margin: 0.2rem 0 0.15rem;
}
.in_04 .inewsbox .item .fr a .txt1 span {
  color: #707070;
}
.in_04 .inewsbox .item .fr a:last-child {
  margin-bottom: 0;
}
.in_04 .inewsbox .item .fr a:hover {
  border-color: #E50101;
}
.in_04 .inewsbox .item .fr a:hover .txt1 h4 {
  color: #E50000;
}
.in_04 .inewsbox .item .fr a:hover .txt1 span i img:nth-child(2) {
  display: block;
}
.in_04 .inewsbox .item .fr a:hover .txt1 span i img:nth-child(1) {
  display: none;
}
.in_04 .inewsbox .item.on {
  display: flex;
}

.btnfr {
  overflow: hidden;
  position: relative;
  background: #333;
  width: 100%;
}

.p3_c {
  width: 100%;
  overflow: hidden;
  padding: 0.71rem 0;
  color: #fff;
}
.p3_c .wrap_c {
  display: flex;
}

.p3_c .fl {
  /*width: 25%;*/
  overflow: hidden;
  position: relative;
  padding-right: .6rem;
}
.p3_c .fl::after {
  position: absolute;
  right: 0;
  top: 0;
  height: 0.41rem;
  background: #E50101;
  content: "";
  width: 2px;
  z-index: 3;
}
.p3_c .fl::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: #484848;
  content: "";
  width: 1px;
  z-index: 1;
}
.p3_c .fl dl {
  display: flex;
  align-items: center;
  margin-top: 0.37rem;
}
.p3_c .fl dl dt {
  width: 0.42rem;
}
.p3_c .fl dl dt img {
  width: 100%;
}
.p3_c .fl dl dd {
  width: calc(100% - 0.52rem);
  margin-left: 0.1rem;
  color: #fff;
}
.p3_c .fl dl dd b {
  display: block;
  line-height: 1;
}
.p3_c .fl ul {
  margin-top: 0.2rem;
  color: #fff;
}
.p3_c .fl ul li {
  line-height: 2.1;
}
.p3_c .fl .blink {
  margin-top: 0.34rem;
  display: flex;
}
.p3_c .fl .blink a {
  margin-right: 0.24rem;
}
.p3_c .fl .blink a img {
  height: 0.21rem;
}
.p3_c .fl .share {
  width: 100%;
  margin: 0.4rem 0;
}
.p3_c .fl .share span {
  display: flex;
}
.p3_c .fl .share a {
  margin-left: 0.1rem;
  position: relative;
}
.p3_c .fl .share a img {
  width: 0.45rem;
  display: block;
}
.p3_c .fl .tel1 {
  display: flex;
  flex-direction: column;
}

.p3_c .fl p.p1 {
  width: 100%;
}

.p3_c .fl p.p1 span {
  display: block;
  text-align: center;
  color: #fff;
  margin-top: 0.2rem;
}

.p3_c .fl p.p1 img {
  width: 2.7rem;
  width: 4.3rem;
}

.p3_c .fc {
  width: 48.875%;
  overflow: hidden;
  margin: 0 0.65rem;
  position: relative;
}
.p3_c .fc li {
  margin-top: 0.33rem;
  color: #999;
}
.p3_c .fc li b {
  color: #fff;
}
.p3_c .fc::after {
  position: absolute;
  right: 0;
  top: 0;
  height: 0.41rem;
  background: #E50101;
  content: "";
  width: 2px;
  z-index: 3;
}
.p3_c .fc::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: #484848;
  content: "";
  width: 1px;
  z-index: 1;
}

.p3_c .fr {
  width: 10%;
}
.p3_c .fr .blink1 {
  margin-top: 0.23rem;
}
.p3_c .fr a {
  display: block;
  color: #999;
  line-height: 0.45rem;
}

.p3_b {
  width: 100%;
  overflow: hidden;
  height: 0.7rem;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #5c5c5c;
}
.p3_b a {
  color: #5c5c5c;
  margin-left: 0.1rem;
}

.slidebar {
  position: fixed;
  top: 30vh;
  right: 0.2rem;
  z-index: 99999999;
}
.slidebar ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.slidebar ul li {
  margin-top: 0.1rem;
  width: auto;
}
.slidebar ul li a {
  height: 0.57rem;
  width: 0.57rem;
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 0.285rem;
  border-radius: .5rem;
  background: #fff;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.27rem;
  box-sizing: border-box;
}
.slidebar ul li a i img {
  width: 0.3rem;
  width: .35rem;
}
.slidebar ul li a i img:nth-child(2) {
  display: none;
}
.slidebar ul li a span {
  margin-left: 0.1rem;
  display: none;
  font-size: .18rem;
  font-size: .22rem;
}
.slidebar ul li:hover > a {
  background: #E50000;
  width: auto;
}
.slidebar ul li:hover > a i img:nth-child(1) {
  display: none;
}
.slidebar ul li:hover > a i img:nth-child(2) {
  display: block;
}
.slidebar ul li:hover > a span {
  display: block;
}
.slidebar ul li:nth-child(3) a, .slidebar ul li:nth-child(4) a, .slidebar ul li:nth-child(7) a, .slidebar ul li:nth-child(8) a {
  /*width: 0.57rem !important;*/
  width: .7rem;
  position: relative;
}
.slidebar ul li:nth-child(3):hover span {
  display: block;
  position: absolute;
  right: 100%;
  bottom: -0.7rem;
  width: 1.85rem;
}
.slidebar ul li:nth-child(3):hover span img {
  width: 100%;
}

.slidebar ul li:nth-child(4):hover span {
  display: block;
  position: absolute;
  right: 100%;
  bottom: -0.7rem;
  width: 1.85rem;
}
.slidebar ul li:nth-child(4):hover span img {
  width: 100%;
}

.w_wap {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_mu, .slidebar {
    display: none;
  }
  .wrap {
    max-width: 100%;
    margin: 0px auto;
  }
  .top_on {
    background: #fff;
  }
  .top_on .topc {
    background: #fff;
  }
  .wrap_in {
    margin: 0px 20px;
    padding: 0px;
    position: relative;
  }
  .wrap_c {
    width: auto;
    padding: 0px 20px;
    margin: 0px auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .wrap_c1 {
    width: auto;
    padding: 0px 20px;
    margin: 0px auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .wrap_nr {
    width: auto;
    padding: 0px 20px;
    margin: 0px auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .topc {
    display: block;
    background: #fff;
  }
  .w_pc {
    display: none !important;
  }
  .w_wap {
    display: block !important;
  }
  .topc .fr a.a1 {
    display: none;
  }
  .topc .fr a.a2 {
    border-left: 0;
    padding-left: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .topc .fr a.a2 img {
    width: 0.18rem;
  }
  .topc .fr {
    margin-top: 0.3rem;
    padding: 0;
  }
  .topc .fr .topsearch {
    display: none;
  }
  .mtmenu_click {
    float: right;
    margin-left: 20px;
    margin-right: 0rem;
    position: relative;
    z-index: 9991;
    margin-top: 0rem;
    height: 0.5rem;
    margin-top: 0.25rem;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
  }
  .mtmenu_click a {
    width: 0.36rem;
    height: 0.5rem;
    display: block;
    overflow: hidden;
    background: url("../images/aa6.svg") 50% no-repeat;
    background-size: 100%;
  }
  .mtmenu_click a.on {
    background: url("../images/aa8.svg") 50% no-repeat;
    background-size: 0.32rem;
  }
  .topfr {
    top: 0px;
    padding: 0;
    background: #fff;
  }
  .topc {
    border-radius: 0px;
  }
  .topc .fl {
    margin-left: 0px;
  }
  .menufr {
    width: calc(100% + 40px);
    position: absolute;
    left: -20px;
    top: 1rem;
    background-color: #fff;
    margin-left: 0px;
    border-top: 0.01rem solid #f9f9f9;
    display: none;
  }
  .menufr ul li {
    width: 100%;
    margin-right: 0px;
    border-bottom: 0.01rem solid #f9f9f9;
    padding: 0.1rem 0.2rem;
  }
  .menufr ul li .mu_t {
    height: 0.6rem;
    justify-content: flex-start;
    padding: 0px 20px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .menufr ul li .mu_t a {
    color: #000;
  }
  .menufr ul li .mu_t a:hover {
    color: #000;
  }
  .menufr ul li:hover .mu_t a {
    color: #000;
  }
  .menufr ul li .mu_t1 {
    position: relative;
  }
  .menufr ul li .mu_t1::before {
    content: "";
    display: none;
    width: 0.22rem;
    height: 100%;
    background: url("../images/aa4.svg") 50% no-repeat;
    background-size: 100%;
    position: absolute;
    right: 20px;
    top: 0px;
    pointer-events: none;
  }
  .menufr ul li .mu_c {
    display: none;
    position: relative;
    left: 0px;
    top: 0px;
    margin-left: 0px;
    width: 100%;
    overflow: hidden;
  }
  .menufr ul li .mu_c b {
    display: none;
  }
  .menufr ul li .mu_c .muc_c {
    margin-top: 0px;
    padding-top: 0px;
    padding: 0px 20px;
    -moz-box-shadow: 0px 0px 0rem rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 0rem rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 0rem rgba(0, 0, 0, 0.25);
  }
  .menufr ul li .mu_c .muc_c p {
    text-align: left;
    padding-left: 0.2rem;
  }
  .menufr ul li .mu_c .muc_c p a {
    color: #999;
  }
  .menufr ul li.active .mu_t1::before {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .menufr ul li.active .mu_t a {
    color: #0d6fb8;
  }
  .topfr.top_active .menufr {
    display: block;
  }
  .p3_c .fl ul li span {
    width: 0.9rem;
  }
  .p3_c .fl {
    width: 100%;
  }
  .p3_c .fc, .p3_c .fr {
    display: none;
  }
  .p3_c .fl .blink a img {
    height: 0.4rem;
  }
  .p3_b {
    height: 1.5rem;
  }
  .in_01 {
    margin-top: 1rem;
    height: auto;
    min-height: auto;
  }
  .in_01 .idownbox img {
    max-width: 100%;
  }
  .in_01 .pn0 {
    position: absolute;
    bottom: 0.3rem !important;
    right: 0.3rem;
  }
  .in_02 {
    padding: 0.5rem 0;
  }
  .in_02 .in_02_1 {
    flex-wrap: wrap;
  }
  .in_02 .in_02_1 .fl {
    width: 100%;
  }
  .in_02 .in_02_1 .fr {
    width: 100%;
    margin-top: 0.3rem;
  }
  .in_02 .a_swiper2 {
    margin-top: 0.3rem;
    
  }
  .in_02 .asub_swiper {
    height: auto;
  }
  .in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide {
    flex-wrap: wrap;
  }
  .in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fl {
    width: 100%;
    padding: 0;
  }
  .in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr {
    width: 100%;
    margin-top: 0.4rem;
  }
  .in_02 .in_02_1 .fr .a-prev1 img, .in_02 .in_02_1 .fr .a-next1 img {
    width: 0.12rem;
  }
  a.more01 {
    width: 2.4rem;
    margin-top: 0.3rem;
  }
  .in_03 {
    padding: 0.5rem 0 0;
  }
  .in_03 .i_introbox .itxt {
    margin-top: 0.3rem;
    width: 100%;
  }
  .in_03 ul.ul1 {
    margin-top: 0.4rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .in_04 {
    padding: 0.5rem 0;
  }
  .in_04 .inewsbox {
    margin-top: 0.4rem;
  }
  .in_04 .inewsbox .item.on {
    flex-wrap: wrap;
  }
  .in_04 .inewsbox .item.on .fl {
    width: 100%;
  }
  .in_04 .inewsbox .item.on .fr {
    width: 100%;
    margin-top: 0.3rem;
  }
  .in_04 .inewsbox .item.on .fr h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .loading .wrapbox {
    position: relative;
    width: 300px;
    height: 300px;
  }
  .loading .wrapbox .fist {
    width: 300px;
    height: 300px;
  }
  .loading.on .center .y img{width: 100%;}
  .in_01spbt{
    padding-left: .6rem;
  }
  .topc .fr .login i img {
    height: 0.22rem;
  }
  .topc .fr .lang i img {
    height: 0.22rem;
  }
  .title2 h4 {
    margin-top: .1rem;
  }
  .in_04 .title1 h4 {
    margin-top: .1rem;
  }
  .in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-prev img, .in_02 .a_swiper2 > .swiper-wrapper > .swiper-slide .fr .asub-next img {
    width: 0.1rem;
  }
  .menufr ul li .mu_t:hover::after, .menufr ul li .mu_t.active::after{
    display: none;
  }
}