/* 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: #aaaaaa;
}

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

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

root {
  --hover_color:#254194;
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}


@font-face {
  font-family: "SourceHanSansSC-Bold";
  src: url("../fonts/SourceHanSansSC-Bold.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SourceHanSansSC-Medi";
  src: url("../fonts/SourceHanSansSC-Medium.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SourceHanSansSC-Regu";
  src: url("../fonts/SourceHanSansSC-Regular.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SourceHanSansCN-Medium";
  src: url("../fonts/SourceHanSerifCN-Medium.otf");
  font-weight: normal;
  font-style: normal;
}

/* 电话字体 */
@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular-2.ttf");
  font-weight: normal;
  font-style: normal;
}
/* 滚动数字字体 */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.otf");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

#canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

#image {
  position: absolute;
  top: 50%;
  left: 3.6rem;
  transform: translateY(-50%);
  width: 6rem;
  visibility: hidden;
}

body {
  font-family: "SourceHanSansSC-Regu", 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;
}

/*loading*/
.loading {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9998;
  display: block;
}

.loading b.b1 {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  background-color: #004c98;
  position: absolute;
  left: 0px;
  top: 0%;
}

.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;
}

.w_wap {
  display: none !important;
}

.topfr {
  overflow: visible;
  position: fixed;
  left: 0px;
  top: 0;
  z-index: 9999999;
  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%;
}

.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.05rem;
}

.topc .fl img:nth-child(2) {
  display: none;
}

.topc .fr {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  height: 1rem;
  width: 3.73rem;
  position: absolute;
  right: 0;
  top: 0;
  background: #0E883B;
  border-radius: 0.5rem 0 0 0.5rem;
  padding-left: 0.38rem;
}

.topc .fr a.a1 {
  display: inline-flex;
  margin-right: 0.3rem;
  align-items: center;
  color: #fff;
  /* font-weight: bold; */
  font-family: Anton;
}
.topc .fr a.a1 i {
  margin-right: 0.06rem;
  width: 0.22rem;
}
.topc .fr a.a1 i img {
  width: 100%;
}

.topc .fr a.a2 {
  display: inline-block;
  width: 0.18rem;
  border-left: solid #fff 1px;
  padding-left: 0.3rem;
}

.topfr.on {
  background: rgb(255, 255, 255);
  height: 3.6rem;
}

.menufr {
  float: left;
  /* margin-left: 1rem; */
  margin-right: .6rem;
}

.menufr ul li {
  float: left;
  /* margin-right: 0.7rem; */
  margin-left: .92rem;
  /* 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;
}

.menufr ul li .mu_t a {
  color: #fff;
  font-weight: bold;
  font-family: SourceHanSansSC-Regu;
  font-size: .18rem;
}

.menufr ul li:hover .mu_t>a{
  color: #0E883B!important;
}

.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: #F7F7F7;
  padding: 0.49rem 0 0.51rem;
}
.menufr ul li .pc_mu::before{
  content: '';
  width: 100%;
  height: 0px;
  box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.1);
  position: absolute;
  left: 0;
  top: 0;
}
.menufr ul li .pc_mu .wrap_c1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box {
  width: calc(100% - 4.49rem);
}
.menufr ul li .pc_mu .wrap_c1 .menu_box h4 {
  font-weight: bold;
  margin-top: 0.2rem;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu a {
  display: flex;
  margin-right: 1.5rem;
  justify-content: space-between;
  width: calc(33.33% - 1.5rem);
  align-items: center;
  margin-top: 0.57rem;
  padding-bottom: 0.1rem;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu a i {
  width: 0.15rem;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu a i img {
  display: block;
  width: 100%;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu a i img:nth-child(2) {
  display: none;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu a:hover {
  color: #0E883B;
  font-weight: bold;
  border-bottom: solid #0E883B 1px;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu a:hover i img:nth-child(1) {
  display: none;
}
.menufr ul li .pc_mu .wrap_c1 .menu_box .menu a:hover i img:nth-child(2) {
  display: block;
}
.menufr ul li .pc_mu .wrap_c1 .img {
  width: 4.49rem;
  height: 3rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.menufr ul li .pc_mu .wrap_c1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 100%;
  background: #fff;
  box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.1);
}
.top_on .menufr ul li .mu_t a {
  color: #333;
}
.top_on .topc .fl img:nth-child(2) {
  display: block;
}
.top_on .topc .fl img:nth-child(1) {
  display: none;
}

.top_on .topc .fl {
  margin-left: 0px;
}

.top_on .topc .fr {
  margin-right: 0px;
}

.topfr:hover {
  background: #fff;
}
.topfr:hover .menufr ul li .mu_t a {
  color: #333;
}
.topfr:hover .topc .fl img:nth-child(2) {
  display: block;
}
.topfr:hover .topc .fl img:nth-child(1) {
  display: none;
}

.in_01 {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

.in_01_slide {
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.in_01_slide .swiper-slide {
  width: 100%;
  overflow: hidden;
  position: relative;
  opacity: 0!important;
}

.in_01_slide .swiper-slide-active{
  opacity: 1!important;
}

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

.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%;
  transition: 3s linear;
  -webkit-transition: 3s linear;
  -o-transition: 3s linear;
  -moz-transition: 3s linear;
}
.in_01_slide .swiper-slide:nth-child(2) .in_01_bg img {
  opacity: .5;
}
.in_01_slide .swiper-slide .in_01_bg video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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;
  /* background: linear-gradient(to right,rgba(1, 46, 1,.5) 100%,rgba(24, 79, 46,.1) 19%); */
}

.nomouse{
  pointer-events: none;
}

.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, 0.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: 0.2rem;
}

.in_01_slide .swiper-slide .in_01_txt .p3 a {
  display: inline-flex;
  line-height: 0.5rem;
  width: 1.8rem;
  border-radius: 0.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;
  pointer-events: all;
}

.in_01_slide .swiper-slide .in_01_txt .p3 span {
  display: inline-block;
  position: relative;
  padding-right: 0.2rem;
}

.in_01_slide .swiper-slide .in_01_txt .p3 b {
  width: 0.15rem;
  height: 0.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%;
}
.in_01_slide .swiper-slide .in_01_txt .c1 .wrap_c {
  width: 6.25rem;
  margin-left: auto;
}
.in_01_slide .swiper-slide .in_01_txt .c1 .p img {
  width: 2.77rem;
  padding-bottom: 0.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.11rem;
  height: 0.11rem;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  margin: 0 0.06rem !important;
}
.in_01spbt span.swiper-pagination-bullet-active {
  width: 0.34rem;
  height: 0.11rem;
  background: rgb(255, 255, 255);
  opacity: 1;
  border-radius: 55rem;
}

.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.4rem;
  height: 0.4rem;
  border-radius: 50%;
  border: solid #fff 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 0.16rem;
  opacity: 0.7;
  transition: all 0.6s;
  /* img:nth-child(2){display: none;} */
}

.pn0 a.prev:hover, .pn0 a.next:hover{
  opacity: 1;
}
.pn0 a.prev img, .pn0 a.next img {
  width: 0.1rem;
}

.in_02 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.24rem 0 1.66rem;
  background: url(../images/i_bg1.jpg) center no-repeat;
  background-size: cover;
}
.in_02 ul.ul1 {
  display: flex;
  margin-top: 1.1rem;
  justify-content: space-between;
}
.in_02 ul.ul1 li {
  position: relative;
  width: 24%;
  transition: all 0.3s linear;
  cursor: pointer;
}
.in_02 ul.ul1 li .bgimg1 {
  width: 100%;
  height: 6.3rem;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  display: block;
}
.in_02 ul.ul1 li .bgimg1::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 180deg, rgba(0,106,65,0) 0%, #003B11 100%);
  border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
  opacity: 0.9;
}
.in_02 ul.ul1 li .bgimg1 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_02 ul.ul1 li .con {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 2.8rem;
  display: flex;
  flex-direction: column;
  z-index: 3;
  justify-content: flex-start;
  padding: 0 0.28rem 0.43rem 0.48rem;
}
.in_02 ul.ul1 li .con i {
  display: flex;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  border: solid #fff 1px;
  align-items: center;
  justify-content: center;
}
.in_02 ul.ul1 li .con i img {
  width: 0.39rem;
}
.in_02 ul.ul1 li .con h4 {
  color: #fff;
  font-family: SourceHanSansSC-Medi;
  margin-top: 0.34rem;
}
.in_02 ul.ul1 li .con .tips {
  margin-top: 0.1rem;
}
.in_02 ul.ul1 li .con .tips a {
  display: inline-block;
  padding: 0.11rem 0.07rem;
  border-radius: 0.02rem;
  border: solid #fff 1px;
  margin-right: 0.05rem;
  color: #fff;
  font-size: .14rem;
}
.in_02 ul.ul1 li .con p {
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 0.1rem;
}
.in_02 ul.ul1 li.on {
  width: 48%;
}
.in_02 ul.ul1 li.on .bgimg1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #009B2F 100%);
  border-radius: 0rem 0rem 0.1rem 0.1rem;
  z-index: 2;
}
.in_02 ul.ul1 li.on .bgimg1::after{
  display: none;
}

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

/* .e_slide0{width: calc(200%);overflow: hidden;
  position: relative;
  margin-top: .6rem;
   .swiper-slide {
    .e_box0{display: flex;
      justify-content: space-between;
       align-items: center;
       justify-content: space-between;
       overflow: hidden;
       .img1{
        width: 60%;
        img{width: 100%}
        background: #fff;
        border-radius: .25rem;
        overflow: hidden;
        box-shadow: 0 .1rem .5rem rgba(0,0,0,.02);
      }
       .txt1{
        width: 40%;
        padding: 0 1rem 1.5rem;
        a.tit1{font-weight: bold;}
        p{margin-top: .3rem;}
        ul{margin-top: .7rem;
          li{margin-top: .5rem;
          a{display: inline-block;
            position: relative;
            padding-bottom: .03rem;
            &::before{
              width: 105%;
              height: .02rem;
              background: #e81432;
              position: absolute;
              bottom: 0;
              left: 0;
              content: '';
              opacity: 0;
            }
          }
          a:hover{
            color:#e81432 ;
            &::before{
             opacity: 1;
            }
          }
          }
        }
       }
    }
  }
  .pn1{
    position: absolute;
    z-index: 999;
    left: calc(30% + 1rem);
    display: flex;
    bottom:.5rem;
    .e_prev0{margin-right: .2rem;}
    .e_next0{ }
  }
} */
.in_03 {
  width: 100%;
  position: relative;
  height: 100vh;
}
.in_03 .i_introbox {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}
.in_03 .i_introbox .h2tit1 {
  text-align: center;
  color: #fff;
}
.in_03 .i_introbox .itxt {
  margin-top: 0.68rem;
  text-align: center;
}
.in_03 .i_introbox .itxt p {
  line-height: 2.1;
  color: #fff;
}
.in_03 .i_introbox ul.ul1 {
  display: flex;
  margin-top: 1rem;
  justify-content: space-around;
  color: #fff;
}
.in_03 .i_introbox ul.ul1 b{
  font-family: Poppins;
  font-weight: 400;
}
.in_03 .i_introbox ul.ul1 li {
  position: relative;
  padding-left: 0.18rem;
}
.in_03 .i_introbox ul.ul1 li::before {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  content: "";
  left: 0;
  top: 0;
}
.in_03 .i_introbox ul.ul1 li::after {
  position: absolute;
  width: 3px;
  height: 0.26rem;
  background: rgba(255, 255, 255, 0.9);
  content: "";
  left: -1px;
  top: 0;
}
.in_03 .i_introbox .more {
  margin-top: 1.3rem;
  text-align: center;
}
.in_03 .i_introbox .more a {
  width: 1.8rem;
  height: 0.5rem;
  margin: 0 auto;
  border-radius: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0E883B;
}
.in_03 .i_introbox .more a:hover{
  color: #fff;
  background: #0E883B;
}
.in_03 .i_introbox .more a i {
  width: 0.3rem;
  margin-left: 0.2rem;
}
.in_03 .i_introbox .more a i img {
  width: .15rem;
}
.in_03 .i_introbox .more a:hover i img{
  filter: brightness(0) invert(1);
}
.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;
  border: solid #0E883B 1px;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  color: #0E883B;
}
.title1 .fr a.on {
  background: #0E883B;
  color: #fff;
  border-color: #0E883B;
}

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

h4 {
  font-family: SourceHanSansSC-Bold;
}

.in_04 {
  padding: 1.77rem 0 1.74rem;
  background: #f2f4f6;
  background: url(../images/newback.png) center no-repeat;
  background-size: cover;
}
.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: 9rem;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
.in_04 .inewsbox .item .fl a {
  display: block;
}
.in_04 .inewsbox .item .fl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s linear;
}
.in_04 .inewsbox .item .fl h4 {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.8rem;
  background: rgba(1, 46, 1, 0.79);
  line-height: 0.8rem;
  text-align: center;
  padding: 0 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 100%;
  color: #fff;
  font-weight: bold;
}
.in_04 .inewsbox .item .fl:hover img {
  transform: scale(1.2);
}
.in_04 .inewsbox .item .fr {
  width: calc(100% - 9.2rem);
}
.in_04 .inewsbox .item .fr a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.15rem;
  margin-bottom: 0.22rem;
}
.in_04 .inewsbox .item .fr a .img1 {
  width: 1.98rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.in_04 .inewsbox .item .fr a .img1 img {
  width: 100%;
}
.in_04 .inewsbox .item .fr a .txt1 {
  width: calc(100% - 2.2rem);
  font-family: SourceHanSansSC-Medi;
  color: #000;
}
.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;
}
.in_04 .inewsbox .item .fr a .txt1 span {
  display: flex;
  justify-content: space-between;
  color: #434343;
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: solid #ccc 1px;
  align-items: center;
}
.in_04 .inewsbox .item .fr a .txt1 span i {
  width: 0.15rem;
}
.in_04 .inewsbox .item .fr a .txt1 span i img {
  display: block;
  width: 100%;
}
.in_04 .inewsbox .item .fr a .txt1 span i img:nth-child(2) {
  display: none;
}
.in_04 .inewsbox .item .fr a:last-child {
  margin-bottom: 0;
}
.in_04 .inewsbox .item .fr a:hover .txt1 p {
  color: #0E883B;
}
.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;
}

.in_05 {
  padding: 1.97rem 0;
  background: url(../images/i_bg5.jpg) center no-repeat;
  background-size: cover;
}

.in_05 .title1 .fr{
  display: none;
}
.in_05 .icase_box .item:nth-child(1){
  display: block;
}
.in_05 .title1 {
  color: #fff;
}
.in_05 .title1 .fr a {
  background: #fff;
  border-color: #fff;
}
.in_05 .title1 .fr a.on {
  background: #0E883B;
  border-color: #0E883B;
}
.in_05 a.prev, .in_05 a.next {
  width: 0.7rem;
  height: 0.5rem;
  position: absolute;
  top: calc(50% - 0.25rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.in_05 a.prev img, .in_05 a.next img {
  width: 0.09rem;
}
.in_05 a.prev img:nth-child(2), .in_05 a.next img:nth-child(2) {
  display: none;
}
.in_05 a.prev:hover img:nth-child(1), .in_05 a.next:hover img:nth-child(1) {
  display: none;
}
.in_05 a.prev:hover img:nth-child(2), .in_05 a.next:hover img:nth-child(2) {
  display: block;
}
.in_05 a.prev {
  left: -0.7rem;
}
.in_05 a.next {
  right: -0.7rem;
}
.in_05 .icase_box {
  width: 100%;
  margin-top: 1.9rem;
}
.in_05 .icase_box .item {
  width: 100%;
  position: relative;
  display: none;
}
.in_05 .icase_box .item .c_slide0, .in_05 .icase_box .item .c_slide1, .in_05 .icase_box .item .c_slide2 {
  width: 100%;
  overflow: hidden;
}
.in_05 .icase_box .item .c_slide0 a, .in_05 .icase_box .item .c_slide1 a, .in_05 .icase_box .item .c_slide2 a {
  display: block;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.in_05 .icase_box .item .c_slide0 a i, .in_05 .icase_box .item .c_slide1 a i, .in_05 .icase_box .item .c_slide2 a i {
  width: 100%;
  height: 2.9rem;
  overflow: hidden;
  display: block;
}
.in_05 .icase_box .item .c_slide0 a img, .in_05 .icase_box .item .c_slide1 a img, .in_05 .icase_box .item .c_slide2 a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
  transform: scale(1);
}
.in_05 .icase_box .item .c_slide0 a p, .in_05 .icase_box .item .c_slide1 a p, .in_05 .icase_box .item .c_slide2 a p {
  line-height: 0.75rem;
  text-align: center;
  padding: 0 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 100%;
}
.in_05 .icase_box .item .c_slide0 a:hover p, .in_05 .icase_box .item .c_slide1 a:hover p, .in_05 .icase_box .item .c_slide2 a:hover p {
  color: #0E883B;
}
.in_05 .icase_box .item .c_slide0 a:hover img, .in_05 .icase_box .item .c_slide1 a:hover img, .in_05 .icase_box .item .c_slide2 a:hover img {
  transform: scale(1.2);
}
.in_05 .icase_box .item.on {
  display: block;
}

.in_06 {
  padding: 1.37rem 0;
  background: url(../images/brandbg.png) center no-repeat;
  background-size: cover;
}
.in_06 .brandbox {
  width: 100%;
  position: relative;
  height: 6rem;
  margin-top: 1.3rem;
}
.in_06 .brandbox .brand1 {
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
}
.in_06 .brandbox .brand1 a {
  display: block;
  width: 1.96rem;
  height: 0.78rem;
  position: absolute;
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  /*  border: solid #000 1px; */
}
.in_06 .brandbox .brand1 a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in_06 .brandbox .brand1 a:hover {
  box-shadow: 0 0 0.2rem rgba(14, 136, 59, 0.5);
}
.in_06 .brandbox .brand1 a:nth-child(1) {
  left: 5.82rem;
  top: 0;
}
.in_06 .brandbox .brand1 a:nth-child(2) {
  left: 8.22rem;
  top: 0;
}
.in_06 .brandbox .brand1 a:nth-child(3) {
  right: 1.78rem;
  top: 1.02rem;
}
.in_06 .brandbox .brand1 a:nth-child(4) {
  right: 0;
  top: 2.77rem;
}
.in_06 .brandbox .brand1 a:nth-child(5) {
  right: 1.14rem;
  top: 4.6rem;
}
.in_06 .brandbox .brand1 a:nth-child(6) {
  right: 4.27rem;
  top: 5.68rem;
}
.in_06 .brandbox .brand1 a:nth-child(7) {
  left: 4.27rem;
  top: 5.68rem;
}
.in_06 .brandbox .brand1 a:nth-child(8) {
  left: 1.14rem;
  top: 4.6rem;
}
.in_06 .brandbox .brand1 a:nth-child(9) {
  left: 0;
  top: 2.77rem;
}
.in_06 .brandbox .brand1 a:nth-child(10) {
  left: 1.78rem;
  top: 1.02rem;
}
.in_06 .brandbox .brand1 a:nth-child(11) {
  left: 4.31rem;
  top: 1.8rem;
}
.in_06 .brandbox .brand1 a:nth-child(12) {
  right: 4.31rem;
  top: 1.8rem;
}
.in_06 .brandbox .brand1 a:nth-child(13) {
  right: 3.03rem;
  top: 3.37rem;
}
.in_06 .brandbox .brand1 a:nth-child(14) {
  left: 3.03rem;
  top: 3.37rem;
}
.in_06 .brandbox .brand2 {
  position: absolute;
  /* width: 3.22rem; */
  /* left: calc(50% - 1.61rem); */
  left: 50%;
  transform: translateX(-50%);
  top: 2.73rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
/* .in_06 .brandbox .brand2 img {
  width: 100%;
} */
.in_06 .brandbox .brand2 .lastNum1{
  font-family: Poppins;
  font-weight: 800;
  font-size: .96rem;
  color: #0E883B;
  white-space: nowrap;
  display: flex;
  justify-content: center;
}
.in_06 .brandbox .brand2 .lastNum2{
  font-family: Poppins;
  font-weight: bold;
  font-size: 39px;
  color: #319D47;
  white-space: nowrap;
}
.in_06 .brandbox .brand2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0E883B;
  width: 1.8rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  margin: 0.74rem auto 0;
  color: #fff;
}
.in_06 .brandbox .brand2 a img {
  width: 0.15rem;
  margin-left: 0.15rem;
}

.btnfr {
  overflow: hidden;
  position: relative;
  background: #012E01;
}

.p3_c {
  width: 100%;
  overflow: hidden;
  padding: 0.99rem 0 0;
}

.p3_c .fl {
  width: 40%;
  overflow: hidden;
  padding-right: 0.7rem;
}
.p3_c .fl ul {
  margin-top: 0.16rem;
  color: #fff;
}
.p3_c .fl ul li {
  line-height: 2.1;
}
.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;
}

.p3_c .fr {
  width: 54%;
  margin-top: 0.16rem;
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}

.p3_c .fr dl {
  margin: 0px;
  padding: 0px;
}

.p3_c .fr dl dt {
  width: 100%;
  overflow: hidden;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.p3_c .fr dl dt a {
  color: #fff;
  font-weight: bold;
}

.p3_c .fr dl dd {
  widtH: 100%;
  overflow: hidden;
  line-height: 1.3;
  margin-bottom: 0.16rem;
}

.p3_c .fr dl dd a {
  color: rgb(255, 255, 255);
}

.p3_c .fr dl dd a:hover {
  text-decoration: underline;
}

.p3_c .fr dl dd:last-child {
  margin-bottom: 0px;
}

.p3_c1 {
  width: 100%;
  overflow: hidden;
  margin-top: 0.6rem;
}
.p3_c1 .link {
  display: flex;
  color: #fff;
}
.p3_c1 .link span {
  white-space: nowrap;
}
.p3_c1 .link .links a {
  margin-right: 0.23rem;
  color: rgba(255, 255, 255, 0.3);
}
.p3_c1 .link .links a:hover {
  color: rgb(255, 255, 255);
}

.p3_c2 {
  width: 100%;
  margin-top: 0.2rem;
}
.p3_c2 .share {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.p3_c2 .share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.41rem;
  height: 0.41rem;
  border-radius: 50%;
  background: #fff;
  margin-left: 0.1rem;
  position: relative;
}
.p3_c2 .share a img {
  width: 0.2rem;
}
.p3_c2 .share a .imgbox {
  position: absolute;
  width: 1.06rem;
  height: 1.1rem;
  left: -0.32rem;
  top: calc(100%);
  display: none;
}
.p3_c2 .share a .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p3_c2 .share a:hover {
  background: #fff;
}
.p3_c2 .share a:hover .imgbox {
  display: block;
}

.p3_b {
  width: 100%;
  overflow: hidden;
  border-top: solid #024002 1px;
  margin-top: 0.35rem;
  padding: 0.35rem 0;
  text-align: center;
  color: #fff;
}
.p3_b a {
  color: #fff;
  margin-left: 0.1rem;
}

.slidebar {
  position: fixed;
  top: 50vh;
  right: 0;
  z-index: 99999999;
}
.slidebar ul{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.slidebar ul li {
  margin-top: 0.1rem;
  overflow: hidden;
  position: relative;
}
.slidebar ul li:hover::before{
  animation: ani_ripple 1s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%) scale(0);
  pointer-events: none;
}


.slidebar ul li a {
  height: 0.65rem;
  border-radius: 0.12rem 0 0 0.12rem;
  background: #319D47;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 0.73rem;
  transition: all .2s;

}

.slidebar ul li a.active{
  flex-direction: row;
  white-space: nowrap;
  width: 1.8rem;
  font-family: Anton;
  font-weight: 400;
  font-size: 0.2rem;
}

.slidebar ul li a.active img{
  margin-right: .11rem;
}

.slidebar ul li a img {
  width: 0.2rem;
  margin-bottom: 0.05rem;
}

.w_wap {
  display: none;
}

.player{
  display: none;
}
/* @media screen and (max-width:1440px) {

  .wrap_c{margin:0px 1rem;}
  .wrap_nr{margin:0px 1rem;}




} */
@media screen and (max-width: 1366px) {
  .in_01spbt .wrap_c .fl {
    width: 10%;
  }
  .in_01spbt .wrap_c .fc {
    width: 80%;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    height: 100%;
    position: relative;
  }
  .menufr ul li .mu_c {
    width: 2.4rem;
    margin-left: -1.2rem;
  }
}
@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 .fl img:nth-child(2) {
    display: block;
  }
  .topc .fl img:nth-child(1) {
    display: none;
  }
  .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-right: 0px;
    width: 0.4rem;
    right: 0.5rem;
    padding: 0;
    height: 0.4rem;
    border-radius: 50%;
    top: 0.3rem;
  }
  .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;
    z-index: 999;
  }
  .menufr ul li {
    width: 100%;
    margin-right: 0px;
    border-bottom: 0.01rem solid #f9f9f9;
    padding: 0.1rem 0px;
  }
  .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: block;
    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;
  }
  .in_01 {
    height: 60vh;
    margin-top: 1rem;
  }
  .in_01spfr {
    right: 20px;
    bottom: 20px;
  }
  .in_01_slide {
    height: 60vh;
  }
  .in_01spbt .wrap_c .fl {
    width: 15%;
  }
  .in_01spbt .wrap_c .fr {
    width: 10%;
  }
  .p3_c .fl ul li span {
    width: 0.9rem;
  }
  .p3_c .fl {
    width: 35%;
  }
  .p3_c .fl ul li {
    line-height: 1.4;
  }
  .in_02 ul.ul1 li {
    width: 10%;
  }
  .in_02 ul.ul1 li .bgimg1 {
    height: 5rem;
  }
  .in_02 ul.ul1 li .con {
    display: none;
  }
  .in_02 ul.ul1 li.on {
    width: 76%;
  }
  .in_02 ul.ul1 li.on .con {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .in_01_slide .swiper-slide .in_01_txt .p2 br {
    display: none;
  }
  .in_02 {
    padding: 0.6rem 0;
  }
  .in_02 ul.ul1 {
    margin-top: 0.5rem;
  }
  .in_03 {
    height: auto;
    padding: 0.6rem 0;
  }
  .in_03 .i_introbox {
    height: auto;
  }
  .in_04 {
    padding: 0.6rem 0;
  }
  .in_04 .inewsbox {
    margin-top: 0.5rem;
  }
  .in_04 .inewsbox .item {
    flex-wrap: wrap;
  }
  .in_04 .inewsbox .item .fl {
    width: 100%;
  }
  .in_04 .inewsbox .item .fr {
    width: 100%;
    margin-top: 0.4rem;
  }
  .title1 {
    flex-wrap: wrap;
  }
  .title1 .fl {
    width: 100%;
  }
  .title1 .fr {
    width: 100%;
    margin-top: 0.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .title1 .fr a {
    margin: 0.15rem;
  }
  .in_05 {
    padding: 0.6rem 0;
    overflow: hidden;
  }
  .in_05 .icase_box {
    margin-top: 0.5rem;
  }
  .in_05 a.prev {
    left: -0.5rem;
  }
  .in_05 a.next {
    right: -0.5rem;
  }
  .in_06 {
    padding: 0.6rem 0;
  }
  .in_06 .brandbox {
    height: auto;
    padding-bottom: 3.4rem;
    margin-top: 0.5rem;
  }
  .in_06 .brandbox .brand1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  .in_06 .brandbox .brand1 a {
    position: static;
    width: auto;
  }
  .in_06 .brandbox .brand2 {
    top: auto;
    bottom: 0;
  }
  .p3_c {
    padding-top: 0.5rem;
  }
  .p3_c .fl {
    width: 100%;
    padding: 0 0 0.5rem;
    border-right: none;
  }
  .p3_c .fl .share {
    margin: 0.3rem 0 0.2rem;
  }
  .p3_c .fr {
    display: none;
  }
  /*  .p3_b .fr{width: 100%;} */
  .p3_c1 {
    margin-top: 0;
  }
  .p3_c1 .item { /* flex-direction: row; align-items: center; */ }
  .p3_c1 .fl {
    width: 100%;
    padding: 0;
  }
  .p3_c1 .fr {
    width: 100%;
  }
  .p3_b {
    padding: 0.3rem 0;
  }
  .p3_b .fl {
    margin-top: 0.2rem;
    width: 100%;
    display: block;
  }
  .p3_b .fl .sf {
    margin-left: -0.2rem;
  }
  .p3_b .wrap_c {
    padding: 0.2rem 20px 0;
  }
  .p3_b .fr {
    width: 100%;
    text-align: right;
  }
  .p3_b .fr a {
    display: inline-flex;
  }
  #btntop {
    display: none;
  }
  .w_wap {
    display: block;
  }
  .w_pc {
    display: none;
  }
  .in_04 .i_user .fr .i_map .con {
    display: none;
  }

  #canvas,#image{
    display: none;
  }
  .in_01_slide .swiper-slide .in_01_bg img{
    object-position: 20%;
  }
  .player{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
  }
  .player>img{
    position: absolute;
    width: 14%;
    left: 20px;
    top: 65%;
    display: block;
    filter: brightness(100);
  }
  .pn0{
    width: 45%;
  }
}