.nav {
  position: fixed;
  height: 100vh;
  width: 1px;
  top: 0;
  right: 1rem;
  z-index: 11;
  background: rgba(255, 255, 255, 0.08);
}
.nav.active {
  background: rgba(200, 200, 200, 0.2);
}
.nav.active ul .li {
  background: #e5e5e5;
}
.nav.active ul .li:hover::before {
  background: var(--themeColor1);
}
.nav.active ul .li::before {
  background: #e5e5e5;
}
.nav.active ul .li.active {
  background: #E5E5E5;
}
.nav.active ul .li.active::before {
  background: var(--themeColor1);
}
.nav ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 0.3rem;
}
.nav ul .li {
  width: 9px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.nav ul .li:hover::before {
  background: #fff;
}
.nav ul .li::before {
  content: "";
  width: 9px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 12;
  transition: 0.3s;
}
.nav ul .li.active {
  width: 18px;
  background: rgba(255, 255, 255, 0.5);
}
.nav ul .li.active::before {
  background: #fff;
}
.ccvideo .ovh{
    position: relative;
     display: flex;
  justify-content: center;
  align-items: center;
}
.ccvideo .ovh .i1{
    animation: addicons1 0.5s linear forwards;
  position: relative;
  z-index: 1;
  opacity: 1;
}
.ccvideo .ovh .i2 {
  position: absolute;
  animation: addicons2 0.5s linear forwards;
  z-index: -1;
  opacity: 0;
  background: transparent;
}
.ccvideo:hover .ovh .i1 {
  animation: addicon1 0.5s linear forwards;
  z-index: -1;
  opacity: 0;
}
.ccvideo:hover .ovh .i2 {
  animation: addicon2 0.5s linear forwards;
  z-index: 2;
  opacity: 1;
}
.icon-btn {
  min-width: 0.6rem;
  height: 0.6rem;
  width: min-content;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--themeColor);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.icon-btn .text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 0;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
  white-space: nowrap;
}
.icon-btn .icons {
  height: 100%;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-btn .icons .icon-box {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width:1550px){
    .icon-btn .icons .icon-box{
        width: 12px;
    }
}
.icon-btn .icons .icon {
  display: block;
  aspect-ratio: 1;
  transition: 0.3s;
  width: 100%;
}
.icon-btn .icons .i1 {
  animation: addicons1 0.5s linear forwards;
  position: relative;
  z-index: 1;
  opacity: 1;
}
@keyframes addicons1 {
  0% {
    transform: translate(-100%, 100%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes addicons2 {
  0% {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  50% {
    top: 0%;
    right: 0%;
    transform: translate(100%, -100%);
    opacity: 0;
  }
  100% {
    right: 100%;
    top: 100%;
    transform: none;
  }
}
.icon-btn .icons .i2 {
  position: absolute;
  animation: addicons2 0.5s linear forwards;
  z-index: -1;
  opacity: 0;
  background: transparent;
}
.icon-btn:hover {
  min-width: 1.7rem;
}
.icon-btn:hover .text {
  width: 0.8rem;
}
.icon-btn:hover .icons .i1 {
  animation: addicon1 0.5s linear forwards;
  z-index: -1;
  opacity: 0;
}
@keyframes addicon1 {
  50% {
    transform: translate(100%, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(-100%, 100%);
  }
}
@keyframes addicon2 {
  0% {
    top: 100%;
    right: 100%;
    transform: translate(0%, 0%);
  }
  100% {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
}
.icon-btn:hover .icons .i2 {
  animation: addicon2 0.5s linear forwards;
  z-index: 2;
  opacity: 1;
}
.icon-btn .iconfont {
  display: block;
  transition: 0.3s;
}
.icon-heng {
  width: 0.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--themeColor);
  cursor: pointer;
}
.icon-heng .button {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-heng .iconfont {
  background: #fff;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.icon-heng.prve {
  left: 0;
}
.icon-heng.prve .i1 {
  z-index: 2;
  animation: addhengs12 0.3s linear forwards;
}
.icon-heng.prve .i2 {
  z-index: -1;
  right: 50%;
  position: absolute;
  animation: addhengs11 0.5s linear forwards;
}
.icon-heng.prve:hover .i1 {
  z-index: -1;
  animation: addhengs2 0.5s linear forwards;
}
.icon-heng.prve:hover .i2 {
  z-index: 2;
  animation: addhengs1 0.3s linear forwards;
}
@keyframes addhengs1 {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(50%);
  }
}
@keyframes addhengs2 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes addhengs11 {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes addhengs12 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.icon-heng.next {
  right: 0;
}
.icon-heng.next .i1 {
  z-index: 2;
  animation: addheng12 0.3s linear forwards;
}
.icon-heng.next .i2 {
  z-index: -1;
  left: 50%;
  position: absolute;
  animation: addheng11 0.5s linear forwards;
}
.icon-heng.next:hover .i1 {
  z-index: -1;
  animation: addheng2 0.5s linear forwards;
}
.icon-heng.next:hover .i2 {
  z-index: 2;
  animation: addheng1 0.3s linear forwards;
}
@keyframes addheng1 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes addheng2 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes addheng11 {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes addheng12 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.foot-icon .icons {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot-icon .icons .icon-box {
  position: relative;
  overflow: hidden;
}
.foot-icon .icons .icon {
  display: block;
  aspect-ratio: 1;
  transition: 0.3s;
  width: 100%;
}
.foot-icon .icons .i1 {
  animation: addicons1 0.5s linear forwards;
  position: relative;
  z-index: 1;
}
@keyframes addicons1 {
  0% {
    transform: translate(-100%, 100%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes addicons2 {
  0% {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  50% {
    top: 0%;
    right: 0%;
    transform: translate(100%, -100%);
  }
  100% {
    right: 100%;
    top: 100%;
    transform: none;
  }
}
.foot-icon .icons .i2 {
  position: absolute;
  animation: addicons2 0.5s linear forwards;
  z-index: -1;
  background: transparent;
}
.foot-icon:hover .icons .i1 {
  animation: addicon1 0.5s linear forwards;
  z-index: -1;
}
@keyframes addicon1 {
  50% {
    transform: translate(100%, -100%);
  }
  100% {
    transform: translate(-100%, 100%);
  }
}
@keyframes addicon2 {
  0% {
    top: 100%;
    right: 100%;
    transform: translate(0%, 0%);
  }
  100% {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
}
.foot-icon:hover .icons .i2 {
  animation: addicon2 0.5s linear forwards;
  z-index: 2;
}
.video-delog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.video-delog .video-video {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-delog .video-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.video-delog .video-video video {
  display: block;
  min-height: 50vh;
  object-fit: contain;
  max-height: 80vh;
}
.video-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.close-btn:hover {
  background: #ff4444;
  color: white;
  transform: scale(1.1);
}

.downs {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
.downs.banner-down .down span {
  color: #fff;
}
.downs.banner-down .down .down-box {
  border-color: #D9D9D9;
}
.downs.banner-down .down .down-box > div {
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background: rgba(217, 217, 217, 0.26);
  position: relative;
}
.downs.banner-down .down .down-box > div::before {
  content: "";
  background: #fff;
}
.downs .down {
  position: static;
}
.down {
  position: absolute;
  left: 0;
  bottom: 0;
  gap: 0.14rem;
  width: 100%;
}
.down .down-box {
  width: 0.2rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  border: 1px solid var(--themeColor1);
  padding: 0.08rem 0.06rem;
}
.down .down-box > div {
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background: rgba(217, 217, 217, 0.5);
  position: relative;
}
.down .down-box > div::before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #bcbdc0;
  position: absolute;
  top: 0;
  left: 0;
  animation: Tmouse 3s cubic-bezier(0.56, 0.01, 0.46, 1) infinite;
}
@keyframes Tmouse {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
    opacity: 0;
  }
}
.down span {
  font-family: Medium;
  color: #bcbdc0;
}
.slide-page {
  overflow: hidden;
  width: 100%;
}
.slide-page .page-seciton {
  width: 100%;
  height: 100%;
}
.slide-page:last-of-type {
  height: auto !important;
}
.page-seciton {
  height: 100%;
  width: 100%;
}
.com-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 99;
  height: 85px;
}
.com-head .logo {
  height: 0.5rem;
  object-fit: contain;
  margin-left: -100px;
}
.com-head .logo img {
  display: block;
  height: 100%;
  object-fit: contain;
}
.com-head .logo .logo2 {
  display: none;
}
.com-head .container {
  gap: 0.6rem;
}
.com-head.h1rem.comheads {
  height: 85px;
}
.com-head.h1rem .head-nav a {
  color: #fff;
}
.com-head.h1rem .aside .lang a {
  color: #fff;
}


.com-head.h1rem .head-nav a::before {
  background: var(--themeColor) !important;
}
.com-head.h1rem .head-nav li.active .a {
  color: var(--themeColor);
}
.com-head.comheads {
  transition: 0.3s;
}
.com-head.comheads.combg {
  background: rgba(255, 255, 255);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.com-head.comheads .logo .logo1 {
  display: block;
}
.com-head.comheads .logo .logo2 {
  display: none;
}
.com-head .head-nav a {
  color: #fff;
}
.com-head.combg .head-nav .a{
  color:#333;
}
.com-head.comheads .head-nav a::before {
  background: #333;
}

.com-head.comheads  .aside .lang a {
  color: #fff;
}
.com-head.comheads .aside .side span {
  background: #fff;
}

.com-head.comheads.combg .aside .lang a {
  color: #333;
}

.com-head.comheads.combg .aside .side span {
  background: #333;
}
.com-head .head-nav {
    flex: 1;
    width: 80%;
    max-width: 800px;
}
.com-head .head-nav .a {
  color: #fff;
  position: relative;
  height: 100%;
  display: block;
}
.com-head .head-nav .a::before {
  content: "";
  width: 0 !important;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.com-head .head-nav ul{
margin:0
}
.com-head .head-nav li {
  position: relative;
  line-height: 1rem;
}
.com-head .head-nav li:hover .a {
  color: var(--themeColor);
}
.com-head .head-nav li:hover .a::before {
  width: 100%;
  left: 0;
  right: auto;
}
.com-head .head-nav li:hover .nav-all {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.com-head .head-nav .nav-all {
  opacity: 0;
  position: absolute;
  top: 85%;
  background: #fff;
  left: -20px;
  border-radius: 10px;
  min-width: 1.7rem;
  padding: 0.1rem 0.2rem;
  pointer-events: none;
  transition: 0.5s;
  transform: translateY(0.3rem);
  white-space: nowrap;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
.com-head .head-nav .nav-all::before {
  content: "";
  position: absolute;
  left: 44px;
  top: -4px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 4px solid #fff;
}
.com-head .head-nav .nav-all a {
  display: block;
  color: var(--themeColor1);
  line-height: 0.5rem;
  position: relative;
  transition: 0.3s;
  padding-right: 0.3rem;
}
.com-head .head-nav .nav-all a:hover {
  color: var(--themeColor);
}
.com-head .head-nav .nav-all a:hover .iconfont {
  opacity: 1;
  transform: translate(0px, -50%);
}
.com-head .head-nav .nav-all a .iconfont {
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 0;
  color: var(--themeColor1);
  transform: translate(-8px, -50%);
  transition: 0.5s;
}
.com-head .aside {
  gap: 0.6rem;
}
.com-head .aside .lang {
  gap: 0.2rem;
  position: absolute;
    right: 30px;
}
.com-head .aside .lang a {
  color: #fff;
  transition: color 0.2s;
  font-family: Medium;
}
.com-head .aside .lang a:hover {
  color: var(--themeColor);
}
.com-head .aside .lang a.active {
  color: var(--themeColor);
}
.com-head .aside .side {
  cursor: pointer;
  position: relative;
  height: 25px;
  width: 30px;
  z-index: 111;
}
.com-head .aside .side span {
  height: 2px;
  position: absolute;
  width: 100%;
  background: #fff;
  transition: 0.3s;
  right: 0;
}
@media screen and (max-width:1550px){
    .com-head .aside .side{
        height: 21px;
        width: 25px;
    }
    .com-head .aside .side span{
        height: 1.5px;
    }
}
.com-head .aside .side span.span1 {
  top: 0;
}
.com-head .aside .side span.span2 {
  width: 60%;
  top: 50%;
  transform: translateY(-50%);
}
.com-head .aside .side span.span3 {
  bottom: 0;
}
.com-head .aside.asides .side span {
  background: #333333;
}
.com-head .aside.asides .side span.span1 {
  top: 50%;
  transform: rotate(45deg) translate(0%, 0%);
}
.com-head .aside.asides .side span.span2 {
  opacity: 0;
}
.com-head .aside.asides .side span.span3 {
  top: 50%;
  bottom: auto;
  transform: rotate(-45deg) translate(0%, 0%);
}
.com-head .header_side.header_sides::before {
  width: 100%;
}
.com-head .header_side::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.com-head .head_side {
  position: fixed;
  background: #fff;
  top: 0;
  right: 0;
  height: 100vh;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(100%);
  padding: 0.5rem;
  line-height: 1;
  z-index: 2;
  width: 350px;
}
.com-head .head_side.head_sides {
  transform: translateX(0);
}
.com-head .head_side .div_item {
  min-width: 2.6rem;
  position: relative;
  transition: 0.3s;
}
.com-head .head_side .div_item:hover .div_head::before {
  height: 100%;
  bottom: auto;
  top: 0;
}
.com-head .head_side .div_item::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #dddddd;
}
.com-head .head_side .div_item .div_head {
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.com-head .head_side .div_item .div_head::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  background: #f5f5f6;
  transition: 0.5s;
}
.com-head .head_side .div_item .div_head.heads {
  font-family: Bold;
}
.com-head .head_side .div_item .div_head.heads::before {
  height: 100%;
}
.com-head .head_side .div_item .div_head.heads a {
  color: #333333;
  pointer-events: all;
}
.com-head .head_side .div_item .div_head.heads a::after {
  height: 0;
}
.com-head .head_side .div_item .div_head.heads .iconfont {
  transform: translateY(-50%) rotate(0deg);
}
.com-head .head_side .div_item .div_head a {
  color: var(--themeColor1);
  padding: 0.3rem;
  font-family: Medium;
  display: block;
  width: 100%;
  position: relative;
  pointer-events: none;
}
.com-head .head_side .div_item .div_head .iconfont {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  font-size: inherit;
  transition: 0.3s;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 3;
}
.com-head .head_side .div_item .div_list {
  transition: 0.3s;
  overflow: hidden;
}
.com-head .head_side .div_item .div_list .list {
  padding: 0.1rem 0;
}
.com-head .head_side .div_item .div_list a {
  transition: 0.3s;
  padding: 0.15rem 0;
  padding-left: 0.4rem;
  position: relative;
  width: 100%;
}
.com-head .head_side .div_item .div_list a:hover::before {
  right:0;
  opacity: 1;
}
.com-head .head_side .div_item .div_list a::before {
  content: "\2794";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
  opacity: 0;
}
.com-head .head_side .div_item .div_list a.active {
  padding-left: 0.55rem;
  color: #333;
  font-family: Medium;
}
.com-head .head_side .div_item .div_list a.active::before {
  width: 0.1rem;
}
.com-head .head_side .div_item a {
  display: block;
  color: #666666;
}
.model_side {
  transition: 0.3s;
  background: #fff;
  position: fixed;
  top: 1.5rem;
  left: 0;
  transform-origin: top;
  height: 100vh;
  width: 100vw;
  display: none;
}
.model_side .phone-box {
  height: 100%;
  width: 100%;
  padding: 0.5em 1rem 1rem;
  overflow-y: auto;
}
.model_side .phone-box .div_item {
  position: relative;
  padding: 0.2rem 0;
}
.model_side .phone-box .div_item::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #dedede;
}
.model_side .phone-box .div_item a {
  color: var(--themeColor1);
}
.model_side .phone-box .div_item .div_head {
  line-height: 2;
}
.model_side .phone-box .div_item .div_head.active .iconfont {
  transform: rotate(0);
}
.model_side .phone-box .div_item .div_head a {
  font-size: 0.5rem;
}
.model_side .phone-box .div_item .div_head .iconfont {
  font-size: 0.45rem;
  transform: rotate(-90deg);
  transition: 0.3s;
}
.model_side .phone-box .div_item .div_list {
  transition: height 0.3s;
  overflow: hidden;
  padding-left: 0.2rem;
}
.model_side .phone-box .div_item .div_list .list .list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.model_side .phone-box .div_item .div_list .list .list-head.actives .iconfont {
  transform: rotate(0);
}
.model_side .phone-box .div_item .div_list .list .list-head .iconfont {
  font-size: 0.45rem;
  transform: rotate(-90deg);
  transition: 0.3s;
}
.model_side .phone-box .div_item .div_list .item {
  padding-left: 0.3rem;
  transition: height 0.3s;
  overflow: hidden;
}
.model_side .phone-box .div_item .div_list .item a {
  font-size: 0.4rem;
  display: block;
}
.cbaside {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 21;
}
.cbaside .cba {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  justify-content: space-evenly;
}
@media screen and (max-width:1550px){
    .cbaside .cba{
        height: 2rem;
    }
}
.cbaside.sides {
  background: #fff;
}
.cbaside.sides .item {
  color: #bcbdc0;
}
.cbaside .item {
  display: block;
  color: #fff;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.cbaside .item a {
  color: inherit;
}
.cbaside .item:hover {
  color: var(--themeColor1);
}
.cbaside .item:hover .item-boxs {
  z-index: 2;
  opacity: 1;
  scale: 1;
  pointer-events: all;
}
.cbaside .item:hover .item-boxs1 {
  z-index: 2;
  opacity: 1;
  scale: 1;
  pointer-events: all;
}
.cbaside .item .item-boxs {
  position: absolute;
  z-index: 1;
  right: 200%;
  top: 50%;
  opacity: 0;
  scale: 0.8;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(-50%);
  width: min-content;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}
.cbaside .item .item-box {
  gap: 50px;
  padding: 30px;
  background: #f5f5f6;
  color: var(--themeColor1);
}
.cbaside .item .item-box .qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cbaside .item .item-box span {
  display: block;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
.cbaside .item .item-box .img {
  width: 0.9rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.1rem;
}
.cbaside .item .item-box .img img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.cbaside .item .item-boxs1 {
  position: absolute;
  right: 200%;
  z-index: 1;
  top: 50%;
  opacity: 0;
  scale: 0.8;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(-50%);
  width: min-content;
  transition: 0.3s;
  border-radius: 10px;
  background: #F5F5F6;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}
.cbaside .item .item-box1 {
  padding: 0.28rem 0.35rem;
}
.cbaside .item .item-box1 a {
  line-height: 1;
  color: var(--themeColor1);
  white-space: nowrap;
  font-family: Bold;
}
.cbaside .item .iconfont {
  font-size: 28px;
}
.footer {
  position: relative;
  background: #f5f5f6;
}
.footer .foot-top {
  padding: 0.2rem 0 0.4rem;
  border-bottom: 1px solid #e6e6e6;
}
.footer .foot-top .top-left {
  gap: 0.1rem;
}
.footer .foot-top .top-left h6 {
  font-family: Bold;
  color: var(--themeColor1);
}
.footer .foot-top .top-left h4 {
  font-family: Bold;
  line-height: 1;
}
.footer .foot-top .top-left .h1 {
  gap: 0.1rem;
}
.footer .foot-top .top-left .h1 span {
  margin-left: 0.05rem;
  display: block;
  line-height: 1;
  font-family: Bold;
}
.footer .foot-top .top-left p {
  color: #999;
  line-height: 1;
}
.footer .foot-top .top-right {
  gap: 0.4rem;
}
.footer .foot-top .top-right ul li {
  font-family: Medium;
  padding: 0 0.6rem;
  border-right: 1px solid #e5e5e5;
}
.footer .foot-top .top-right ul li:last-of-type {
  border-right: 0;
}
.footer .foot-top .top-right ul li span {
  color: #666;
  display: block;
  margin-bottom: 0.1rem;
}
.footer .foot-top .top-right ul li h6 {
  color: #333;
  line-height: 1;
}
.footer .foot-top .top-right .right-a {
  gap: 0.3rem;
}
.footer .foot-top .top-right .right-a a {
  background: #fff;
  border-radius: 10px;
  height: 0.6rem;
  width: 1.6rem;
  color: var(--themeColor1);
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Medium;
  gap: 0.1rem;
  line-height: 1;
}
.waarp {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.waarp .sxl_warp {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: all 1.2s;
}
.waarp .sxl_warp .section {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 20%;
  left: 0;
  transition: all 1.2s;
}
.waarp .sxl_warp .section .cont {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.waarp .sxl_warp .section .cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.waarp .sxl_warp .section.old {
  top: 0;
  height: 0;
}
.waarp .sxl_warp .section.cur {
  top: 0;
}
.waarp .sxl_warp .section:nth-child(1) {
  z-index: 9;
}
.waarp .sxl_warp .section:nth-child(2) {
  z-index: 8;
}
.waarp .sxl_warp .section:nth-child(3) {
  z-index: 7;
}
.waarp .sxl_warp .section:nth-child(4) {
  z-index: 6;
}
.waarp .sxl_warp .section:nth-child(5) {
  z-index: 5;
}
.waarp .sxl_warp .section:nth-child(6) {
  z-index: 4;
}
.waarp .sxl_warp .section:nth-child(7) {
  z-index: 3;
}
.waarp .sxl_warp .section:nth-child(8) {
  z-index: 2;
}
.waarp .sxl_warp .section:nth-child(9) {
  z-index: 1;
}
.waarp .footer {
  width: 100vw;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: all 1.2s;
}
.waarp.showFooter .sxl_warp {
  transform: translateY(-15%);
}
.waarp.showFooter .footer {
  transform: none;
}
.foot-box {
  padding: 0.5rem 0 0.3rem;
  border-bottom: 1px solid #e6e6e6;
}
.foot-box .logo {
  height: 0.44rem;
}
.foot-box .logo img {
  height: 100%;
  object-fit: contain;
}
.foot-box .box-left {
  gap: 0.3rem;
}
.foot-box .box-left .box-a {
  line-height: 1;
  color: var(--themeColor1);
}
.foot-box .box-left .box-a .a-a {
  display: inline;
}
.foot-box .box-left .box-a .a-a a::after {
  content: "";
}
.foot-box .box-left .box-a .a-a a:last-of-type::after {
  content: "";
}
.foot-box .box-left .box-a a {
  color: var(--themeColor1);
}
.foot-box .box-left .qrcode {
  padding-top: 0.2rem;
  gap: 0.5rem;
  color: var(--themeColor1);
}
.foot-box .box-left .qrcode .qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foot-box .box-left .qrcode .img {
  width: 0.9rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.1rem;
}
.foot-box .box-left .qrcode .img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.foot-box .box-left .qrcode .txt span {
  display: block;
  text-align: center;
  line-height: 1.3;
}
.foot-box .box-right {
  gap: 1.5rem;
}
.foot-box .box-right a {
  color: #999999;
}
.foot-box .box-right dl dt {
  font-family: Bold;
  margin-bottom: 0.3rem;
}
.foot-box .box-right dl dt a {
  color: #333;
}
.foot-box .box-right dl dd {
  margin-bottom: 0.15rem;
  position: relative;
  width: min-content;
}
.foot-box .box-right dl dd:hover::before {
  width: 100%;
}
.foot-box .box-right dl dd:hover a {
  color: var(--themeColor);
}
.foot-box .box-right dl dd a {
  transition: 0.3s;
  white-space: nowrap;
}
.foot-box .box-right dl dd::before {
  content: "";
  width: 0%;
  left: 0;
  bottom: 0;
  height: 1px;
  background: var(--themeColor);
  position: absolute;
  transition: 0.3s;
}
.foot-bto {
  padding: 0.25rem 0;
}
.foot-bto a {
  transition: 0.3s;
}
.foot-bto a:hover {
  color: var(--themeColor) !important;
}
.foot-bto .bto-left {
  gap: 0.1rem;
}
.foot-bto .bto-left a {
  color: #999999;
}
.foot-bto .bto-right {
  color: #666;
  gap: 0.1rem;
}
.foot-bto .bto-right a {
  color: #666;
}
.swiper {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.swiper .swiper-bto {
  position: absolute;
  left: var(--container_margin);
  bottom: 0.8rem;
  z-index: 11;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swiper .circle-box {
  width: 0.7rem;
  height: 0.7rem;
  position: relative;
}
.swiper .circle-box .va {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.swiper .circle-box .va span {
  color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 120%;
  font-family: Medium;
  transform: translateY(-50%);
}
.swiper .circle-box .f1 {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-right-color: transparent;
}
.swiper .circle-box .f2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  animation: identifier 5s linear infinite;
}
.swiper .circle-box .f2::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
@keyframes identifier {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .socll {
  color: #fff;
  font-family: Medium;
  display: flex;
  gap: 14px;
  align-items: center;
  position: static;
  width: auto;
}
.swiper .socll .down {
  flex-direction: row-reverse;
}
.ovh {
  overflow: hidden;
}
.swiper-slide {
  position: relative;
  max-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
}
.swiper-slide .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.swiper-slide .img {
  height: 100%;
  width: 100%;
}
.swiper-slide .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  transform-origin: right;
}
.swiper-slide .title {
  position: absolute;
  left: var(--container_margin);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.swiper-slide .title h1 {
  font-family: Bold;
}
.swiper-btns {
  position: absolute;
  bottom: 30%;
  left: var(--container_margin);
  z-index: 11;
}
.swiper-btn {
  gap: 20px;
  color: #fff;
}
.swiper-btn .bof {
  cursor: pointer;
  transition: 0.3s;
}
.swiper-btn .bof:hover {
  color: var(--themeColor);
}
.swiper-btn .sbutton {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.swiper-btn .sbutton:hover {
  color: var(--themeColor);
}
.swiper-btn .spagination {
  width: 1.8rem;
  height: 2px;
  position: relative;
  background: rgba(255, 255, 255, 0.32);
}
.swiper-btn .spagination span {
  background: #fff;
  transform-origin: left;
  display: block;
  height: 100%;
}
.page-ingo.cur .page_info .info-content .info-img::before {
  transform: skew(-50deg) translateY(100%);
  opacity: 0;
}
.page_info {
  height: 100%;
  width: 100%;
  background: url("../image/index_page2bg.png") no-repeat;
  background-size: cover;
}
.page_info .info-content {
  position: relative;
  z-index: 2;
  gap: 1.1rem;
}
.page_info .info-content .info-img {
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.page_info .info-content .info-img::before {
  transition-delay: 0.3s;
  position: absolute;
  top: -100%;
  left: -200%;
  right: -200%;
  bottom: -100%;
  z-index: 11;
  background-color: #fff;
  transform: skew(-50deg);
  transition: all 2s ease-in-out 0.1s;
  content: "";
}
.page_info .info-content .info-list {
  padding: 1.5rem 0.15rem 0;
  padding-right: 1rem;
  flex: 1;
  width: 100%;
}
.page_info .info-content .info-list .info-title {
  padding-top: 0.6rem;
  padding-bottom: 0.3rem;
  flex: 1;
}
.page_info .info-content .info-list .info-title .info-head {
  font-weight: Bold;
  flex: 1;
}
.page_info .info-content .info-list .info-title .info-head span {
  color: #f04d22;
}
.page_info .info-content .info-list .info-title .info-head h4 {
  font-weight: Bold;
}
.page_info .info-content .info-list .info-title .a {
  background: #eff0f2;
  border: 1px solid var(--themeColor1);
  color: var(--themeColor1);
}
.page_info .info-content .info-list .info-item {
  padding: 0.5rem 0;
  position: relative;
  cursor: pointer;
  display: block;
}
.page_info .info-content .info-list .info-item:hover::after {
  width: 100%;
}
.page_info .info-content .info-list .info-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #e5e5e5;
  width: 100%;
  height: 1px;
}
.page_info .info-content .info-list .info-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--themeColor);
  width: 0%;
  height: 1px;
  transition: 0.5s;
}
.page_info .info-content .info-list .info-item h4 {
  color: var(--themeColor1);
  font-family: Bold;
  margin-bottom: 0.2rem;
  /*line-height: 1;*/
}
.page_info .info-content .info-list .info-item .info-text p {
  color: #666;
  width: 80%;
  max-width: 8rem;
}
.page_info .info-content .info-list .info-item .info-text span {
  color: var(--themeColor);
  font-family: Medium;
  line-height: 1;
}
.cur .page_about .about .about_top::before {
  transform: skew(-50deg) translateX(100%);
}
.cur .page_pro .product .pro_view::before {
  transform: skew(-50deg) translateX(120%);
}
.page_about {
  padding: 0 ;
  height: 100%;
}
.page_about .about {
  padding-top: 0.5rem;
  gap: 0.8rem;
  height: min-content;
  align-items: stretch;
}
@media srceen and (max-width:1550px){
    .page_about{
        padding-top: 0.5rem;
    }
}
.page_about .about .about_top {
  background: url("") no-repeat;
  background-size: contain;
  /*padding: 0.38rem 0;*/
  position: relative;
}
.page_about .about .about_top::before {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skew(-50deg);
  transition: all 1.2s ease-in-out 0.1s;
}
.page_about .about .left {
  position: relative;
  z-index: 2;
  font-family: Bold;
  color: var(--themeColor1);
}
.page_about .about .left span {
  color: var(--themeColor);
}
.page_about .about .left h4 {
  margin-bottom: 0.2rem;
}
.page_about .about .left p {
  line-height: 1;
}
.page_about .about .right {
  position: relative;
  z-index: 2;
  gap: 1.45rem;
}
.page_about .about .right .item {
  gap: 0.05rem;
  line-height: 1;
  font-family: Bold;
  position: relative;
}
.page_about .about .right .item:last-of-type::before {
  width: 0;
}
.page_about .about .right .item::before {
     /* content: ""; */
  height: 1rem;
  width: 1px;
  position: absolute;
  background: #d9d9d9;
  top: 30%;
  transform: translateY(-50%);
  right: 0;
}
.page_about .about .right .item h6 {
  color: var(--themeColor);
}
.page_about .about .right .item span {
  font-family: Regular;
}
.page_about .about .right .item .nian {
  gap: 10px;
  font-family: Bold;
}
.page_about .about .right .item .nian h4 {
  line-height: 1;
}
.page_about .about .right .item .nian i {
  color: #bcbdc0;
}
.page_about .about_bto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.page_about .about_bto .item-center{
  padding: 0.2rem 0;
}
.page_about .about_bto .item-center img{
  width:100%;
}
.page_about .about_bto .item-a {
  position: relative;
  overflow: hidden;
}
.page_about .about_bto .item-a:hover .image {
  transform: scale(1.1);
}
.page_about .about_bto .item-a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.page_about .about_bto .item-a .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
}
.page_about .about_bto .item {
  padding: 0.5rem;
  align-items: stretch;
}
.page_about .about_bto .item.item1 {
  background: #e6e6e6;
}
.page_about .about_bto .item.item1 .item-left h2 {
  color: #333;
}
.page_about .about_bto .item.item1 .item-left span {
  color: #999;
}
.page_about .about_bto .item.item1 .p {
  color: #666;
}
.page_about .about_bto .item.item2 {
  background: var(--themeColor1);
}
.page_about .about_bto .item.item2 .item-left h2 {
  color: #FFFFFF;
}
.page_about .about_bto .item.item2 .item-left span {
  color: #FFFFFF;
}
.page_about .about_bto .item.item2 .p {
  color: #FFFFFF;
}
.page_about .about_bto .item .item-left {
  color: var(--themeColor1);
}
.page_about .about_bto .item .item-left h2 {
  font-family: Bold;
  line-height: 1.5;
}
.page_about .about_bto .item .item-left span {
  font-family: Medium;
  opacity: 0.4;
}
.page_anli {
  background: url("../image/index_page4bg.png") no-repeat;
  background-size: cover;
  padding: 1.5rem 0 0 var(--container_margin);
}
.page_anli .anli {
  padding: 0.8rem 0;
  gap: 0.9rem;
  width: 100%;
}
@media screen and (max-width:1550px){
    .page_anli .anli{
        padding-top: 0;
    }
}
.page_anli .anli .anli-left {
  padding-bottom: 0.5rem;
  max-width: 5rem;
  gap: 1.5rem;
}
.page_anli .anli .anli-left .swiper-btns {
  position: static;
}
.page_anli .anli .anli-left .text {
  gap: 0.8rem;
}
.page_anli .anli .anli-left .text .fb {
  font-family: Bold;
}
.page_anli .anli .anli-left .text h6 {
  color: var(--themeColor);
  line-height: 1.5;
  margin-bottom: 0.1rem;
}
.page_anli .anli .anli-left .text h1 {
  color: var(--themeColor1);
  line-height: 1.5;
}
.page_anli .anli .anli-left .icon-btn {
  border: 2px solid var(--themeColor1);
  color: var(--themeColor1);
}
.page_anli .anli .anli-right {
  flex: 1;
  width: 0;
}
.page_anli .anliswiper {
  overflow: hidden;
  height: 6rem;
}
.page_anli .anliswiper .anli-slide {
  position: relative;
  flex-shrink: 0;
  transition: 0.3s;
  transform-origin: top;
  height: 5rem;
}
.page_anli .anliswiper .anli-slide.anli-slides {
  height: 6rem;
}
.page_anli .anliswiper .anli-slide.anli-slides::before {
  background: rgba(0, 0, 0, 0.4);
}
.page_anli .anliswiper .anli-slide.anli-slides .anli-text .anli-title p {
  height: min-content;
}
.page_anli .anliswiper .anli-slide.anli-slides .icon2 {
  display: none;
}
.page_anli .anliswiper .anli-slide.anli-slides .icon1 {
  display: block;
}
.page_anli .anliswiper .anli-slide.anli-slides .icon {
  background: #fff;
}
.page_anli .anliswiper .anli-slide.anli-slides .icon-btn {
  background: #fff;
  border: 2px solid #ffffff;
  color: var(--themeColor);
  backdrop-filter: blur(0px);
}
.page_anli .anliswiper .anli-slide .icon1 {
  display: none;
}
.page_anli .anliswiper .anli-slide img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.page_anli .anliswiper .anli-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.page_anli .anliswiper .anli-slide .anli-text {
  padding: 0.9rem 0.4rem 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}
.page_anli .anliswiper .anli-slide .anli-text .anli-title {
  width: 100%;
  gap: 0.2rem;
  color: #fff;
}
.page_anli .anliswiper .anli-slide .anli-text .anli-title h6 {
  font-family: Bold;
  line-height: 1;
}
.page_anli .anliswiper .anli-slide .anli-text .anli-title p {
  height: 0;
  overflow: hidden;
  opacity: 0.7;
}
.page_anli .anliswiper .anli-slide .icon-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.page_anli .swiper-btns {
  gap: 20px;
  color: var(--themeColor1);
}
.page_anli .swiper-btns .bof {
  cursor: pointer;
  transition: 0.3s;
}
.page_anli .swiper-btns .bof:hover {
  color: var(--themeColor);
}
.page_anli .swiper-btns .sbutton {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.page_anli .swiper-btns .sbutton:hover {
  color: var(--themeColor);
}
.page_anli .swiper-btns .apagination {
  overflow: hidden;
  width: 1.8rem;
  height: 2px;
  position: relative;
  background: rgba(0, 0, 0, 0.25);
}
.page_anli .swiper-btns .apagination .swiper-pagination-progressbar-fill {
  background: var(--themeColor1);
  transform-origin: left;
  display: block;
  height: 100%;
}
.page_pro {
  padding: 0.5rem;
}
.page_pro .product {
  padding: 0.8rem 0 1rem;
  height: 100%;
}
@media screen and (max-width:1550px){
    .page_pro .product{
        padding-top: 0;
    }
}
.page_pro .product .pro_view {
  height: 100%;
  width: 100%;
  background: url(" ") no-repeat;
  background-position: left bottom;
  background-size: contain;
  gap: 0.8rem;
  position: relative;
}
.page_pro .product .pro_view::before {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skew(-50deg);
  transition: all 1.2s ease-in-out 1s;
}
.page_pro .product .pro_view .a {
  border: 2px solid var(--themeColor1);
  color: var(--themeColor1);
}
.page_pro .product .pro_left {
  position: relative;
  z-index: 2;
  max-width: 3.3rem;
  gap: 0.7rem;
}
.page_pro .product .pro_left h1,
.page_pro .product .pro_left h6 {
  font-family: Bold;
  line-height: 1.5;
}
.page_pro .product .pro_left h6 {
  color: var(--themeColor);
  margin-bottom: 0.1rem;
}
.page_pro .product .pro_right {
  position: relative;
  z-index: 2;
  height: auto;
  width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.page_pro .product .pro_right .item {
  height: 88%;
  overflow: hidden;
  align-items: stretch;
  position: relative;
  border: 1px solid #e5e5e5;
}
@media screen and (max-width:1550px){
    .page_pro .product .pro_right .item{
        height: 77%;
    }
}
.page_pro .product .pro_right .item .a-link {
  position: relative;
  line-height: 1;
}
.page_pro .product .pro_right .item .a-link a {
  display: inline-block;
  position: relative;
  color: var(--themeColor1);
  line-height: 1.5;
  transition: color 0.3s;
}
.page_pro .product .pro_right .item .a-link p {
  display: inline-block;
  position: relative;
  color: var(--themeColor1);
  line-height: 1.5;
  transition: color 0.3s;
  padding-top: 10px;
  width:100%;
  text-align: left;
}
.page_pro .product .pro_right .item .a-link a::before {
  content: "";
  width: 0;
  height: 0px;
  background: var(--themeColor);
  position: absolute;
  left: -100px;
  bottom: 0;
  transition: width 0.3s;
}
.page_pro .product .pro_right .item .a-link a:hover {
  color: var(--themeColor);
}
.page_pro .product .pro_right .item .a-link a:hover::before {
  width: 100%;
}
.page_pro .product .pro_right .item .a-links {
  margin-top: 0.1rem;
  pointer-events: none;
}
.page_pro .product .pro_right .item .a-links a {
  color: #999999;
  padding-left: 0.2rem;
}
.page_pro .product .pro_right .item .a-links a:hover::after {
  background: var(--themeColor);
}
.page_pro .product .pro_right .item .a-links a::after {
  content: "";
  width: 0.1rem;
  height: 1px;
  background: #999;
  position: absolute;
  left: 0.08rem;
  top: 50%;
  transform: translateY(-50%);
}
.page_pro .product .pro_right .item:hover img:not(.iconimg) {
  scale: 1.1;
}
.page_pro .product .pro_right .item:hover .lists {
  background: #fff;
}
.page_pro .product .pro_right .item:hover .lists .iconimg {
  opacity: 1;
}
.page_pro .product .pro_right .img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.page_pro .product .pro_right .img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.page_pro .product .pro_right .lists {
  padding:10px;
  flex: 1;
  transition: 0.3s;
  overflow: hidden;
}
.page_pro .product .pro_right .lists h1 {
  position: absolute;
  z-index: 2;
  right: 0.3rem;
  bottom: 0.3rem;
  font-family: Bold;
  line-height: 1;
  text-align: end;
  text-align: right;
}
.page_pro .product .pro_right .lists .iconimg {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(0%, 0%);
  opacity: 0;
  transition: 0.3s;
}
.page_pro .product .pro_right .list {
  gap: 0.1rem;
  max-height: 90%;
  position: relative;
  z-index: 11;
  height:120px;
}
.banner {
  height: 100vh;
  width: 100vw;
  position: relative;
  transition: height 1.2s;
  transform-origin: top;
  overflow: hidden;
  z-index: 11;
}
.banner .banner_img {
  height: 100%;
  width: 100%;
}
.banner .banner_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner .banner_h {
  position: absolute;
  left: var(--container_margin);
  bottom: 2.6rem;
}
.banner .title {
  position: absolute;
  left: var(--container_margin);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.banner .title h1 {
  font-family: Medium;
  line-height: 0.7rem;
}
.banner .title p {
  margin-top: 0.2rem;
  line-height: 0.33rem;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width:1550px){
    .banner .banner_h{
        bottom:2rem;
    }
}
.banner .socll {
  position: absolute;
  left: var(--container_margin);
  bottom: 1.2rem;
  color: #fff;
  font-family: Medium;
  display: flex;
  gap: 14px;
  align-items: center;
}
.about-page1 {
  padding: 1rem 0;
  background: url('../image/about_page1bg.png') no-repeat;
  background-size: contain;
  background-position: right bottom;
}
.about-page1 .page-title {
  margin-bottom: 0.5rem;
}
.about-page1 p {
  color: #666;
  line-height: 0.36rem;
  min-height: 0.36rem;
}
.about-page1 .page1-bto {
  margin-top: 0.37rem;
  align-items: stretch;
  gap: 1.3rem;
}
.about-page1 .page1-bto .about-a {
  color: var(--themeColor);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0 20px 0 #d9d9d9;
}
.about-page1 .page1-bto .about-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.about-page1 .page1-bto .about-a:hover .image{
    transform: scale(1.1);
}
.about-page1 .page1-bto .about-a .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.84rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-page1 .page1-bto ul {
  width: 100%;
  flex: 1;
}
.about-page1 .page1-bto ul li {
  gap: 0.35rem;
}
.about-page1 .page1-bto ul li h6 {
  font-family: Bold;
  color: var(--themeColor);
}
.about-page1 .page1-bto ul li .num {
  line-height: 1;
  gap: 0.1rem;
}
.about-page1 .page1-bto ul li .num h4 {
  line-height: 1;
  font-family: Bold;
  font-weight: bold;
}
.about-page1 .page1-bto ul li .num span {
  line-height: 1;
  color: #BCBDC0;
}
.about-page1 .page1-bto ul li p {
  color: var(--themeColor1);
  text-align: center;
}
.about-page2 {
  padding-bottom: 1.6rem;
  background: url('../image/about_page2bg.jpg') no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.about-page2 .page-title {
  padding: 1.6rem 0;
}
.about-page2 .page-title h2 {
  color: #fff;
}
.about-page2 .aboutswiper-box {
  position: relative;
}
.about-page2 .aboutswiper-box .swiper-wrapper {
  transition: transform 0.5s;
}
.about-page2 .aboutswiper-box::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #F0F0F0;
  position: absolute;
  top: 0.74rem;
  left: 0;
}
.about-page2 .about-swiper {
  overflow: hidden;
}
.about-page2 .about-swiper .about-slide {
  gap: 0.3rem;
  width: 20%;
  flex-shrink: 0;
}
.about-page2 .about-swiper .about-slide.about-slides i {
  background: var(--themeColor);
}
.about-page2 .about-swiper .about-slide.about-slides .i.is::before {
  animation-play-state: paused;
}
.about-page2 .about-swiper .about-slide.about-slides .i::before {
  animation: allwidth 9s linear forwards;
}
@keyframes allwidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.about-page2 .about-swiper .about-slide.about-slides h6 {
  opacity: 1;
 font-family: Bold;
}
.about-page2 .about-swiper .about-slide.about-slides .p {
  opacity: 1;
}
.about-page2 .about-swiper .about-slide:hover .p,.about-page2 .about-swiper .about-slide:hover h6{
    opacity: 1;
}
.about-page2 .about-swiper .about-slide h5 {
  color: var(--themeColor);
  font-family: Bold;
  line-height: 0.41rem;
}
.about-page2 .about-swiper .about-slide .i {
  width: 100%;
  position: relative;
}
.about-page2 .about-swiper .about-slide .i::before {
  height: 2px;
  content: "";
  width: 0%;
  background: var(--themeColor);
  position: absolute;
  top: 70%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width:600px){

    .about-page2 .about-swiper .about-slide .i::before{
        top: 60%;
    }
}
.about-page2 .about-swiper .about-slide i {
  display: block;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}
.about-page2 .about-swiper .about-slide h6 {
  /*font-family: Bold;*/
  color: #fff;
  transition: 0.3s;
  opacity: 0.5;
}
.about-page2 .about-swiper .about-slide .p {
  opacity: 0.5;
  font-family: Medium;
  color: #fff;
  transition: 0.3s;
}
.about-page2 .about-swiper .about-slide .p p {
  position: relative;
  padding-left: 10px;
}
.about-page2 .about-swiper .about-slide .p p::before {
  content: "";
  width: 5px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-page3 {
  background: url('../image/about_page3bg.png') no-repeat;
  background-size: cover;
  height: 100vh;
  padding: 1rem 0 1rem;
  overflow: hidden;
}
.about-page3 .page3-left {
  max-width: 50%;
  width: 100%;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-right: var(--container_margin);
}
.about-page3 .page-title {
  padding-left: 10%;
}
.about-page3 .page3-swi {
  height: 3rem;
  overflow: hidden;
  padding-left: 10%;
}
.about-page3 .page3-swi .swi-slide {
  font-size: 0.18rem;
  color: #bcbdc0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.about-page3 .page3-swi .swi-slide .slide-img {
  display: none;
}
.about-page3 .page3-swi .swi-slide.swi-slides {
  font-family: Bold;
  font-size: 0.32rem;
  color: var(--themeColor1);
}
.about-page3 .page3-swi .swi-slide.swi-slides::before {
  width: 0.8rem;
}
.about-page3 .page3-swi .swi-slide::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--themeColor1);
  top: 50%;
  right: 100%;
  transform: translate(-50%, 100%);
  transition: 0.3s;
}
.about-page3 .page3-pation {
  padding-left: 10%;
  width: 100%;
}
.about-page3 .page3-pation .num {
  gap: 0.05rem;
}
.about-page3 .page3-pation .num h1 {
  font-family: Bold;
}
.about-page3 .page3-pation .num h1,
.about-page3 .page3-pation .num h3 {
  line-height: 1;
}
.about-page3 .page3-pation .pation-left {
  gap: 0.3rem;
}
.about-page3 .page3-pation .pation-left .swipation {
  margin-top: 0.2rem;
  height: 2px;
  width: 2.2rem;
  background: rgba(0, 0, 0, 0.25);
}
.about-page3 .page3-pation .pation-left .swipation .swiper-pagination-progressbar-fill {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: left;
  background: var(--themeColor1);
}
.about-page3 .page3-pation .pation-right {
  gap: 0.3rem;
}
.about-page3 .page3-right {
  position: absolute;
  left: 0;
  top: 50%;
  flex: 1;
  position: relative;
  height: 100%;
  transform: translate(-25%, -50%);
}
.about-page3 .page3-right .bg {
  transform: translateY(-50%);
  padding: 0.8rem;
  border-radius: 50%;
  border: 1rem solid #f1f1f1;
  text-align: end;
  text-align: right;
  position: relative;
  top: 50%;
}
.about-page3 .page3-right .bg .bgimg {
  height: 100%;
}
.about-page3 .page3-right .bg .bgimg {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.about-page3 .page3-right .imgitem {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  transform-origin: right bottom;
  width: 3rem;
  border: 0.1rem solid transparent;
}
.about-page3 .page3-right .imgitem::before {
  background: url('https://www.holyview.com/image/hboderw.png') no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.about-page3 .page3-right .imgitem .img {
  transition: 0.3s ease-in-out;
   padding: 0.15rem;
}
.about-page3 .page3-right .imgitem .img.imgh {
  background: url('../image/hboderh.png') no-repeat;
  background-size: cover;
}
.about-page3 .page3-right .imgitem .img.imgw {
  background: url('../image/hboderw.png') no-repeat;
  background-size: cover;
}
.about-page3 .page3-right .imgitem .img img {
  width: 100%;
}
.about-page4 {
  padding: 1rem 0;
}
.about-page4 .page4-list {
  position: relative;
}
.about-page4 .page4-slide {
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.5rem;
}
.about-page4 .page4-slide .img {
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0.15rem;
}
.about-page4 .page4-slide .img.imgh {
  background: url('../image/wboderh.png') no-repeat;
  background-size: cover;
}
.about-page4 .page4-slide .img.imgw {
  background: url('../image/wboderw.png') no-repeat;
  background-size: cover;
}
.about-page4 .page4-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-page4 .page4-slide span {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  position: absolute;
  background: #D9D9D9;
  transform: translateX(-50%) scaleY(6%);
  transform-origin: bottom;
  bottom: 20%;
  left: 50%;
  z-index: 1;
  filter: blur(20px);
}
.about-page4 .page4-top {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  background: url('../image/shuj2.png') no-repeat;
  background-size: contain;
  background-position: bottom;
}
.about-page4 .page4-top .page4-swiper1 {
  overflow: hidden;
  max-width: 80%;
  margin: 0 auto;
  display: none;
}
.about-page4 .page4-bto {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  background: url('../image/shuj1.png') no-repeat;
  background-size: contain;
  background-position: bottom;
  transform: translateY(-8px);
}
.about-page4 .page4-bto .page4-swiper2 {
  overflow: hidden;
  max-width: 78%;
  margin: 0 auto;
  display: none;
}
.about-page4 .page4btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.about-page4 .page4btn.page4prve {
  left: 0;
}
.about-page4 .page4btn.page4next {
  right: 0;
}
.about-page4 .page4-titles {
  min-height: 1.2rem;
}
.about-page4 .page4-title {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 80%;
  margin: 0 auto;
  height: 1.2rem;
}
.about-page4 .page4-title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #D7D7D7;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-page4 .page4-title a {
  flex-shrink: 0;
  display: block;
  padding: 0.2rem 0.4rem;
  color: #999999;
  font-size: 0.2rem;
  transition: 0.3s;
  position: relative;
  white-space: nowrap;
}
.about-page4 .page4-title a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0px;
  background: var(--themeColor);
  bottom: -1px;
}
.about-page4 .page4-title a strong {
  color: var(--themeColor);
}
.about-page4 .page4-title a.active {
  font-size: 0.36rem;
  font-family: Bold;
  color: #333333;
  text-align: center;
}
.about-page4 .page4-title a.active::before {
  height: 3px;
  bottom: -1px;
}
.about-page4 .page4-title a.swiper-slide-prev {
  text-align: end;
  text-align: right;
}
.about-page4 .page4-title a.swiper-slide-next {
  text-align: start;
  text-align: left;
}
.about-page5 {
  position: relative;
  background: url('../image/about_page5bg.jpg') no-repeat;
  background-size: cover;
  padding: 1rem 0 0.6rem;
}
.about-page5 > img {
  display: block;
  /*width: 100%;*/
  position: absolute;
  z-index: 1;
  top: 50%;
  /*opacity: 0.6;*/
  left: 50%;
  transform: translate(-50%,-50%);
  height: calc(100% - 1.2rem);
  pointer-events: none;
}
.about-page5 .page5_view {
  padding:0.2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.about-page5 .page5_view::before{
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: linear-gradient(180deg,rgba(217, 217, 217, 0.2),transparent 5px,  rgba(217, 217, 217, 1) 5px, transparent);
    background-size: 100% 10px;
}
.about-page5 .page5_view::after{
    content: "";
    height: 15px;
    width: 3px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background:var(--themeColor1);
}
.about-page5 .page5_view .view-item {
  /*background: rgba(255, 255, 255, 0.05);*/
  /*border-radius: 0.4rem;*/
  min-height: 2.8rem;
  /*backdrop-filter: blur(10px);*/
  position: relative;
  padding: 0.5rem;
  /*padding-bottom: 0.2rem;*/
  gap: 0.3rem;
}
.about-page5 .page5_view .view-item:first-of-type::before{
    content:'';
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg,rgba(217, 217, 217, 0.2),transparent 5px,  rgba(217, 217, 217, 1) 5px, transparent);
    background-size: 10px 100%;
}
.about-page5 .page5_view .view-item:first-of-type::after{
    content:'';
    height: 3px;
    width: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--themeColor1);
}
.about-page5 .page5_view .view-item:nth-child(2)::before{
     content:'';
    height: 1px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,rgba(217, 217, 217, 1),transparent 5px,  rgba(217, 217, 217, 0.2) 5px, transparent);
    background-size: 10px 100%;
}
.about-page5 .page5_view .view-item:nth-child(2)::after{
    content:'';
    height: 3px;
    width: 15px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--themeColor1);
}
.about-page5 .page5_view .view-item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding-right: 0;
}
.about-page5 .page5_view .view-item:nth-child(odd) {
  padding-left: 0;
}
.about-page5 .page5_view .view-item:nth-child(even) .text {
  text-align: end;
  text-align: right;
}
.about-page5 .page5_view .view-item .icon {
  width: 0.8rem;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.about-page5 .page5_view .view-item .icon img {
  max-width: 0.45rem;
    max-height: 0.45rem;
  object-fit: contain;
}
.about-page5 .page5_view .view-item .text {
  max-width: 95%;
}
.about-page5 .page5_view .view-item .text h6 {
  color: var(--themeColor);
  font-family: Bold;
  line-height: 2;
  margin-bottom: 0.1rem;
}
.about-page5 .page5_view .view-item .text .p p {
  /*font-family: Bold;*/
  /*color: #fff;*/
  line-height: 2;
}
.about-page5 .page5_view .view-item .text .p span {
  font-family: Regular;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}
.about-page5 .page5_view .view-item .text .p strong {
  color: var(--themeColor);
  font-family: Bold;
}
.about-page5 .view-round {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(40px);
}
.about-page5 .view-round .round {
  padding: 0.75rem;
  border-radius: 50%;
  background: url('../image/round_bg.png') no-repeat;
  background-size: contain;
}
.about-page5 .view-round .round .view-nli {
  width: 2.26rem;
  height: 2.26rem;
  gap: 0.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.about-page5 .view-round .round .view-nli h5 {
  color: var(--themeColor);
  font-family: Bold;
  line-height: 1.5;
  text-align: center;
}
.about-page6-box {
  padding: 1.2rem 0;
}
.about-page6 {
  align-items: stretch !important;
  position: relative;
}
.about-page6::before {
  content: "";
  height: 100%;
  width: 1px;
  background: rgba(200, 200, 200, 0.2);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.about-page6 .page6-left {
  width: 50%;
  padding-right: 1.2rem;
  gap: 0.72rem;
}
.about-page6 .page6-left .page6-title {
  font-family: Bold;
  color: var(--themeColor1);
  margin-bottom: 0.29rem;
}
.about-page6 .page6-left p {
  line-height: 2;
  color: #666666;
}
.about-page6 .page6-left .page6-img {
  border-radius: 5px;
  display: block;
  width: 100%;
}
.about-page6 .page6-right {
  width: 50%;
  padding-left: 1.2rem;
}
.about-page6 .page6-right ul {
  gap: 0.38rem;
  height: 100%;
}
.about-page6 .page6-right ul li {
  gap: 0.3rem;
}
.about-page6 .page6-right ul li .icon {
  width: 0.4rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.about-page6 .page6-right ul li .icon img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.about-page6 .page6-right ul li .text h6 {
  line-height: 0.4rem;
  margin-bottom: 0.18rem;
  font-family: Bold;
  color: var(--themeColor1);
}
.about-page6 .page6-right ul li .text p {
  color: #999999;
}
.about-page7 {
  padding: 1rem 0;
  background: url('../image/about_page6bg.png') no-repeat;
  background-size: cover;
}
.about-page7 .about-ditu {
  gap: 1.23rem;
  align-items: stretch;
}
.about-page7 .about-ditu .yoush {
  width: 50%;
}
.about-page7 .about-ditu .yoush ul {
  margin-top: 0.6rem;
  gap: 0.14rem;
  align-items: stretch;
}
.about-page7 .about-ditu .yoush ul li a {
  min-height: 1.6rem;
  color: var(--themeColor1);
  border: 1px solid #D9D9D9;
  border-radius: 0.1rem;
  overflow: hidden;
  align-items: stretch;
}
.about-page7 .about-ditu .yoush ul li a:hover img {
  scale: 1.1;
}
.about-page7 .about-ditu .yoush ul li a:hover .text-list {
  color: var(--themeColor);
}
.about-page7 .about-ditu .yoush ul li a:hover .text-list .text-item::before {
  background: var(--themeColor);
}
.about-page7 .about-ditu .yoush ul li a .img {
  position: relative;
  max-width: 3rem;
  width: 100%;
  border-radius: 0.1rem;
  /*height: 100%;*/
  overflow: hidden;
}
.about-page7 .about-ditu .yoush ul li a .img::before {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.about-page7 .about-ditu .yoush ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.about-page7 .about-ditu .yoush ul li a .img .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: Bold;
  color: #fff;
  z-index: 11;
  transform: translate(-50%, -50%);
}
.about-page7 .about-ditu .yoush ul li a .text-list {
  padding: 0.26rem 0.5rem;
  color: var(--themeColor1);
  transition: 0.3s;
}
.about-page7 .about-ditu .yoush ul li a .text-list .text-item {
  position: relative;
  padding-left: 0.2rem;
}
.about-page7 .about-ditu .yoush ul li a .text-list .text-item::before {
  content: '';
  width: 0.1rem;
  height: 1px;
  background: var(--themeColor1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about-page7 .about-ditu .ditu {
  flex: 1;
}
.about-page7 .about-ditu .ditu #map {
  height: 6rem;
  width: 100%;
}
@media screen and (max-width:1550px){
    .about-page7 .about-ditu .ditu #map {
        height: 5rem;
    }
}
@media screen and (max-width:1280px){
    .about-page7 .about-ditu .ditu #map {
        height: 4rem;
    }
}
.page-title {
  font-family: Bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.page-title h6 {
  color: var(--themeColor);
  line-height: 1;
  font-family: Bold;
  font-weight: 900;
}
.page-title h2 {
  color: #333;
  /*line-height: 1;*/
  font-family: Bold;
  font-weight: 900;
}
.product.products {
  padding-top: 0rem;
}
.product .page-sections {
  min-height: 100vh;
  background: #fff;
  z-index: 2;
}
.product .page-sections .page-title {
  top: 1rem;
  z-index: 10;
}
.product .page-view-a {
  position: relative;
}
.product .page-view-a .menu {
  position: sticky;
  top: 1.5rem;
}
.product .page-section {
  padding-top: 0.5rem;
}
.product .page-section .page-title {
  padding-bottom: 0.1rem;
  background: #fff;
}
.product .page-section .page-view {
  gap: 1rem;
  padding-bottom: 1rem;
}
.product .page-section .page-view .menu {
  width: 3rem;
}
.product .page-section .page-view .menu .item {
  width: 100%;
  position: relative;
}
.product .page-section .page-view .menu .item.active::after {
  width: 100%;
}
.product .page-section .page-view .menu .item.active .item-head .iconfont {
  transform: translateY(-50%) rotate(180deg);
}
.product .page-section .page-view .menu .item::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #DDDDDD;
}
.product .page-section .page-view .menu .item::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #333333;
  transition: 0.3s;
}
.product .page-section .page-view .menu .item .item-head {
  position: relative;
}
.product .page-section .page-view .menu .item .item-head a {
  padding: 0.3rem 0;
}
.product .page-section .page-view .menu .item .item-head .iconfont {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
  font-size: 0.2rem;
}
.product .page-section .page-view .menu .item .item-box {
  overflow: hidden;
  transition: 0.3s;
  display: none;
}
.product .page-section .page-view .menu .item .item-box .item-a {
  padding-bottom: 0.3rem;
}
.product .page-section .page-view .menu .item .item-box a {
  position: relative;
  padding-left: 0.2rem;
  line-height: 2;
}
.product .page-section .page-view .menu .item .item-box a.active{
    color: var(--themeColor);
}
.product .page-section .page-view .menu .item .item-box a::before {
  content: "";
  width: 0.1rem;
  height: 1px;
  background: var(--themeColor1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.product .page-section .page-view .menu .item a {
  display: block;
  color: var(--themeColor1);
  transition: 0.3s;
}
.product .page-section .page-view .menu .item a:hover {
  color: var(--themeColor);
}
.product .page-section .page-view .list {
  flex: 1;
  padding-top: 0rem;
  align-items: stretch;
}
.product .page-section .page-view .list .box {
  gap: 0.8rem;
  padding-bottom: 0.8rem;
  position: relative;
  align-items: stretch;
}
.product .page-section .page-view .list .box:hover .box-txt .box-btn .btn .icons .i1 {
  transform: translate(100%, -100%);
}
.product .page-section .page-view .list .box:hover .box-txt .box-btn .btn .icons .i2 {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.product .page-section .page-view .list .box:hover::after {
  width: 100%;
}
.product .page-section .page-view .list .box:hover .img img {
  scale: 1.1;
}
.product .page-section .page-view .list .box::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DFDFDF;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product .page-section .page-view .list .box::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--themeColor);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}
.product .page-section .page-view .list .box .img {
  width: 4rem;
  overflow: hidden;
  border-radius: 0.1rem;
  flex-shrink: 0;
}
.product .page-section .page-view .list .box .img img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
  transition: 0.3s;
}
.product .page-section .page-view .list .box .box-txt {
  position: relative;
}
.product .page-section .page-view .list .box .box-txt h3 {
  font-family: Bold;
  margin-bottom: 0.27rem;
  color: #333;
  line-height: 1;
}
.product .page-section .page-view .list .box .box-txt p {
  color: #666;
  font-size: 0.18rem;
  line-height: 2;
}
.product .page-section .page-view .list .box .box-txt .box-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  border: 2px solid var(--themeColor1);
  color: var(--themeColor1);
}
.product .page-section .page-view .list .boxs {
  gap: 0.8rem;
  padding-bottom: 0.8rem;
  position: relative;
  /*align-items: stretch;*/
  margin-bottom: 0.7rem;
}
.product .page-section .page-view .list .boxs::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #DFDFDF;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product .page-section .page-view .list .boxs::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--themeColor);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}
.product .page-section .page-view .list .boxs .img {
  width: 4rem;
  overflow: hidden;
  border-radius: 0.1rem;
  flex-shrink: 0;
}
.product .page-section .page-view .list .boxs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.product .page-section .page-view .list .boxs .box-txt {
  position: relative;
  padding-bottom: 0.5rem;
  max-height: 13em;
  overflow-y: auto;
}
.product .page-section .page-view .list .boxs .box-txt h3 {
  font-family: Bold;
  margin-bottom: 0.27rem;
  color: #333;
  line-height: 1;
}
.product .page-section .page-view .list .boxs .box-txt p {
  color: #666;
  font-size: 0.18rem;
  line-height: 2;
}
.product .page-section .page-view .list .boxs .box-txt .ccvideo {
  width: min-content;
  white-space: nowrap;
  border: 1px solid transparent;
  gap: 5px;
  font-family: Medium;
  border-top-color: var(--themeColor);
  border-bottom-color: var(--themeColor);
  color: var(--themeColor);
  padding: 5px 0;
}
.product .page-section .lists {
  transition: 0.3s;
}
.product .page-section .lists .bq-top {
  margin-bottom: 0.5rem;
}
.product .page-section .itema-box {
  margin-bottom: 0.5rem;
}
.product .page-section .itema-box:last-of-type {
  margin-bottom: 0;
}
.product .page-section .itema-box .img-box {
  width: 100%;
  padding: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  gap: 0.6rem;
  height: 3.3rem;
  background-color: #F6F6F6;
}
.product .page-section .itema-box .img-box .img{
    background: #fff;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product .page-section .itema-box .img-box img {
  /*max-height: 80%;*/
  /*max-width: 80%;*/
  height: 100%;
  width: 100%;
  transition: 0.2s;
  object-fit: contain;
}
.product .page-section .itema-box .img-box .text {
  transition: 0.2s;
  font-family: Medium;
  flex: 1;
  display: flex;
    flex-direction: column;
    justify-content: center;
}
.product .page-section .itema-box .img-box .text h6,
.product .page-section .itema-box .img-box .text p {
  white-space: nowrap;
}
.product .page-section .itema-box .img-box .text h6 {
  color: var(--themeColor);
  margin-bottom: 0.2rem;
  line-height: 1;
}
.product .page-section .itema-box .img-box .text p {
  color: #333;
  line-height: 1.6;
  position: relative;
  padding-left: 0.15rem;
}
.product .page-section .itema-box .img-box .text p::before {
  content: "";
  width: 0.1rem;
  height: 1px;
  background: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.product .page-section .itema-box .numbox {
  font-size: 3rem;
  line-height: 3rem;
  color: #F5F5F6;
  /*-webkit-text-stroke: 1px rgba(188, 189, 192, 0.3);*/
  /*text-stroke: 1px rgba(188, 189, 192, 0.3);*/
}
.product .page-section .itema-boxs {
  margin-top: 0.5rem;
  padding: 0.4rem 0;
  border-top: 1px solid #DFDFDF;
}
.product .page-section .itema-boxs .itema-heads {
  gap: 0.7rem;
  width: 100%;
  margin-bottom: 0.3rem;
}
/*.product .page-section .itema-boxs .itema-right{*/
/*    width: 100%;*/
/*}*/
.product .page-section .itema-boxs .itema-heads .numboxs {
  font-size: 2.4rem;
  color: #F5F5F6;
  line-height: 1;
}
.product .page-section .itema-boxs .itema-heads .page-title {
  position: static;
}
.product .page-section .itema-boxs .itema-heads .page-title h2 {
  color: #666;
  font-family: Medium;
}
.product .page-section .itema-boxs .itema-heads ul {
  gap: 0.3rem;
}
.product .page-section .itema-boxs .itema-heads ul li {
  height: 0.6rem;
  font-family: Bold;
  color: #666;
  gap: 0.15rem;
  border: 1px solid #BCBDC0;
  border-radius: 0.1rem;
  padding: 0.2rem;
}
.product .page-section .itema-boxs .itema-heads ul li img {
  max-height: 0.3rem;
}
.product .page-section .itema-boxs .box-a {
  background: #F6F6F6;
  padding: 0.2rem;
  border-radius: 0.1rem;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.product .page-section .itema-boxs .box-a:last-of-type {
  margin-bottom: 0;
}
.product .page-section .itema-boxs .box-a:hover img {
  scale: 1.1;
}
.product .page-section .itema-boxs .box-a .img {
  overflow: hidden;
  width: 30%;
}
.product .page-section .itema-boxs .box-a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}
.product .page-section .itema-boxs .box-a .atext {
  flex: 1;
}
.product .page-section .itema-boxs .box-a .atext h4 {
  margin-bottom: 0.4rem;
  font-family: Bold;
  color: var(--themeColor1);
}
.product .page-section .itema-boxs .box-a .atext .p {
  display: flex;
  margin-bottom: 0.1rem;
}
.product .page-section .itema-boxs .box-a .atext .p:last-of-type {
  margin-bottom: 0;
}
.product .page-section .itema-boxs .box-a .atext .p span {
  color: var(--themeColor1);
  font-family: Medium;
  flex-shrink: 0;
}
.product .page-section .itema-boxs .box-a .atext .p p {
  color: #999;
}
.product .page-section .bq-top .boxs {
  margin-bottom: 0 !important;
}
.product .page-section .bq-top ul {
  padding: 0.37rem 0;
  border-bottom: 1px solid #DFDFDF;
  flex-wrap: wrap;
  align-items: stretch;
}
.product .page-section .bq-top ul li {
  padding: 0 0.28rem;
  width: calc((100% - 0.56rem) / 3);
  margin-bottom: 0.28rem;
}
.product .page-section .bq-top ul li:nth-child(3n-2) {
  padding-left: 0;
  border-right: 1px solid #DFDFDF;
}
.product .page-section .bq-top ul li:nth-child(3n-1) {
  flex: 1;
}
.product .page-section .bq-top ul li:nth-child(3n) {
  padding-right: 0;
  border-left: 1px solid #DFDFDF;
}
.product .page-section .bq-top ul li .ul-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.12rem;
  font-family: Bold;
  margin-bottom: 0.22rem;
}
.product .page-section .bq-top ul li p {
  color: #666;
}
.product .video {
  flex: 1;
}
.product .video .down{
    width: auto;
}
.product .video .seach {
  gap: 0.2rem;
  align-items: stretch;
  margin-bottom: 0.6rem;
}
.product .video .seach .input {
  border: 1px solid #BCBDC0;
  border-radius: 0.1rem;
  overflow: hidden;
  flex: 1;
}
.product .video .seach .input span {
  padding: 0 0.2rem;
  font-family: Medium;
  line-height: 1;
  border-right: 1px solid #D9E3EF;
}
.product .video .seach .input input {
  margin: 0 0.2rem;
  flex: 1;
}
.product .video .seach .input input::placeholder {
  color: #CDCDCD;
}
.product .video .seach .gobtn {
  height: 0.6rem;
  width: 1.4rem;
  background: var(--themeColor1);
  border-radius: 0.1rem;
  color: #fff;
  gap: 0.1rem;
}
.product .video .seach .gobtn span {
  font-family: Medium;
}
.product .video .videolist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.6rem;
  column-gap: 0.3rem;
}
.product .video .videolist .videoitem {
  gap: 0.2rem;
}
.product .video .videolist .videoitem:hover .img::before {
  background: rgba(0, 0, 0, 0.2);
}
.product .video .videolist .videoitem:hover .image {
  scale: 1.1;
}
.product .video .videolist .videoitem:hover h2 {
  color: var(--themeColor);
}
.product .video .videolist .videoitem .img {
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  aspect-ratio: 2/1.2;
}
.product .video .videolist .videoitem .img::before {
  content: "";
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  transition: 0.3s;
  pointer-events: none;
}
.product .video .videolist .videoitem .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.product .video .videolist .videoitem .img .btn {
  position: absolute;
  z-index: 12;
  width: 0.6rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--themeColor);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product .video .videolist .videoitem h2,
.product .video .videolist .videoitem p {
  line-height: 1;
  color: #727171;
}
.product .video .videolist .videoitem h2 {
  color: #333;
  font-family: Medium;
  transition: 0.3s;
}
.product .video .textlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.product .video .textlist .textitem {
  height: 1rem;
  padding: 0 0.25rem;
  padding-right: 0;
  color: var(--themeColor1);
  background: #FBFBFB;
  border: 1px solid #BCBDC0;
  border-radius: 0.1rem;
  transition: 0.3s;
}
.product .video .textlist .textitem:hover {
  color: var(--themeColor);
}
.product .video .textlist .textitem .pdf {
  gap: 0.2rem;
}
.product .video .textlist .textitem .pdf span {
  color: var(--themeColor1);
  font-family: Medium;
}
.product .video .textlist .textitem .down {
  padding: 0 0.35rem;
  position: relative;
}
.product .video .textlist .textitem .down::before {
  content: "";
  height: 0.25rem;
  width: 1px;
  background: #bcbdc0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.product .detail {
  padding: 1rem 0;
  gap: 1.2rem;
  position: relative;
}
.product .detail::before{
    content:'';
    height: 100%;
    position: absolute;
    width: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(200,200,200,0.2);
}
.product .detail .detail-left {
  width: 50%;
  position: sticky;
  top: 2rem;
  padding-right: 1.2rem;
}
.product .detail .detail-left .allswiper {
  gap: 0.55rem;
  align-items: stretch;
  height: 100%;
  max-height: calc(1.36rem * 3 + 80px);
  margin-bottom: 1rem;
}
.product .detail .detail-left .bqswiper-thumb,
.product .detail .detail-left .bqswiper {
  overflow: hidden;
}
/*.product .detail .detail-left .bq-slide img{*/
/*    max-height: 100%;*/
/*    max-width: 100%;*/
/*}*/
.product .detail .detail-left .bq-thumb,
.product .detail .detail-left .bq-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .detail .detail-left .bq-thumb img,
.product .detail .detail-left .bq-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /*max-width: 80%;*/
  /*max-height: 80%;*/
}
.product .detail .detail-left .bqswiper-thumb {
  flex-shrink: 0;
  width: 1.36rem;
}
.product .detail .detail-left .bqswiper-thumb .bq-thumb {
  aspect-ratio: 1;
  border: 1px solid #D9D9D9;
}
.product .detail .detail-left .bqswiper-thumb .bq-thumb.swiper-slide-thumb-active {
  border-color: var(--themeColor1);
}
.product .detail .detail-left .bqswiper {
  position: relative;
}
.product .detail .detail-left .bqswiper span {
    display: none;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  /*display: block;*/
  position: absolute;
  background: #D9D9D9;
  transform: translateX(-50%) scaleY(2%);
  transform-origin: bottom;
  bottom: 5%;
  opacity: 0.5;
  left: 50%;
  z-index: 1;
  filter: blur(80px);
}
.product .detail .DetailSwiper {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/0.8;
}
.product .detail .DetailSwiper .detail-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product .detail .DetailSwiper .detail-slide img {
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
  width: 100%;
  height: 100%;
}
.product .detail .DetailSwiper .detail-slide span {
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  position: absolute;
  background: #D9D9D9;
  transform: translateX(-50%) scaleY(6%);
  transform-origin: bottom;
  bottom: 15%;
  opacity: 0.5;
  left: 50%;
  z-index: 1;
  filter: blur(80px);
}
.product .detail .detail-right {
  align-items: stretch;
  gap: 0.7rem;
  flex: 1;
}
.product .table .table-title {
  background: #E5E5E5;
  padding: 0.25rem 0.45rem;
  padding-right: 0;
  position: relative;
  font-family: Bold;
  line-height: 1;
}
.product .table .table-title::before {
  content: "";
  width: 0.1rem;
  height: 2px;
  background: var(--themeColor1);
  position: absolute;
  top: 50%;
  left: 0.3rem;
}
.product .table .table-list {
  gap: 1px;
  align-items: stretch;
}
.product .table .table-list .table-item {
  min-height: 0.6rem;
  display: flex;
  align-items: stretch;
  gap: 2px;
}
.product .table .table-list .table-item:nth-child(2n) span {
  background: #FCFCFC;
}
.product .table .table-list .table-item span {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F6F6F6;
  text-align: center;
}
.product .table .table-list .table-item .td1 {
  width: 30%;
  color: #999999;
}
.product .table .table-list .table-item .td2 {
  flex: 1;
  color: var(--themeColor1);
}
.product .table .table-list .table-item .btn {
  cursor: pointer;
  position: relative;
}
.product .table .table-list .table-item .btn input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product .table .table-list .table-item .btn label {
  cursor: pointer;
}
.product .table .table-list .table-item .btn label .i1 {
  display: none;
}
.product .table .table-list .table-item .btn label input:checked {
  color: var(--themeColor);
}
.product .table .table-list .table-item .btn label input:checked ~ .i2 {
  display: none;
}
.product .table .table-list .table-item .btn label input:checked ~ .i1 {
  display: block;
}
.product .table .text {
  color: #666666;
}
.product .table .text .beiz {
  flex-shrink: 0;
}
.product .table a {
  width: min-content;
}
.product .table a span {
  justify-content: flex-end;
}
.product .table a .icon{
    width: 0.58rem;
    height: 0.58rem;
}
.product .attr {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #DFDFDF;
}
.product .attr .title {
  position: relative;
  padding-left: 0.15rem;
  font-family: Bold;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.product .attr .title::before {
  content: "";
  width: 0.1rem;
  height: 2px;
  background: var(--themeColor1);
  position: absolute;
  top: 50%;
  left: 0;
}
.product .attr p {
  color: #666;
}
.product .bqdetail {
  padding: 1rem 0;
  gap: 1.2rem;
  position: relative;
}
.product .bqdetail::before {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  background: rgba(200, 200, 200, 0.2);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.product .bqdetail .detail-left {
  width: 50%;
  position: sticky;
  top: 2rem;
}
.product .bqdetail .detail-left .allswiper {
  gap: 1.3rem;
  align-items: stretch;
  height: 100%;
  max-height: calc(1.36rem * 3 + 80px);
  margin-bottom: 1rem;
}
.product .bqdetail .detail-right {
  flex: 1;
  align-items: stretch;
  gap: 0.6rem;
  padding-bottom: 1.2rem;
  position: relative;
}
.product .bqdetail .detail-right .table a {
  position: absolute;
  left: 0;
  bottom: 0;
}
.service {
  position: relative;
  scroll-snap-align: start;
  /* 琛ㄧず婊氬姩鐨勬椂鍊欙紝瑕佷竴涓竴涓潵 */
  scroll-snap-stop: always;
}
.service .serHeight {
  padding: 1rem 0;
  /*position: absolute;*/
  position: static;
  /*height: 100vh;*/
  width: 100vw;
  top: 0;
  left: 0;
}
.service .service_head {
  padding-bottom: 0.7rem;
}
.service .service_head .pathen {
  gap: 0.3rem;
}
.service .service_head .pathen h2 {
  color: var(--themeColor);
  line-height: 1;
  font-family: Bold;
}
.service .service_head .pathen h6 {
  line-height: 1;
}
.service .service_head .pathen .tiao {
  position: relative;
  width: 2.4rem;
  height: 2px;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.service .service_head .pathen .tiao span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--themeColor1);
  transform-origin: left;
  transform: scaleX(0);
}
.service .serswiper {
  margin-left: var(--container_margin);
  overflow: hidden;
  width: 100%;
}
.service .serswiper .k{
    position: absolute;
    top: 50%;left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    color: transparent;
    font-size: 2.5rem;
-webkit-text-stroke: 1px rgba(255,255,255,0.8);
text-stroke: 1px rgba(255,255,255,0.8);
}
.service .serswiper .swiper-wrapper {
  /*gap: 30px;*/
  animation-name: slideX;
  animation-timing-function: linear;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 100vw;
}
@keyframes slideX {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
  }
  6% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
  }
  94% {
    transform: translateX(calc(-100% + 47vw));
    -webkit-transform: translateX(calc(-100% + 47vw));
    -moz-transform: translateX(calc(-100% + 47vw));
    -o-transform: translateX(calc(-100% + 47vw));
    -ms-transform: translateX(calc(-100% + 47vw));
  }
  100% {
    transform: translateX(calc(-100% + 47vw));
    -webkit-transform: translateX(calc(-100% + 47vw));
    -moz-transform: translateX(calc(-100% + 47vw));
    -o-transform: translateX(calc(-100% + 47vw));
    -ms-transform: translateX(calc(-100% + 47vw));
  }
}
.service .serswiper .ser-slide {
  flex-shrink: 0;
  position: relative;
  width: 55vw;
}
.service .serswiper .ser-slide span{
    animation:none;
    opacity: 0;
}
.service .serswiper .ser-slide.active span{
    animation-delay: 0.5s;
    animation-duration:1s;
    animation-name: fadeInUp;
    animation-fill-mode:both;
}
.service .serswiper .ser-slide .img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width:1550px){
    .service .serswiper .ser-slide .img{
        height: 5rem;
    }
}
.service .serswiper .ser-slide .img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 2;
}
.service .serswiper .ser-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service .serswiper .ser-slide .ser-txt {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  /*animation-name: adFn;*/
  /*animation-play-state: paused;*/
  /*animation-duration: 1s;*/
  /*animation-iteration-count: infinite;*/
  /*animation-direction: alternate;*/
  /*animation-delay: calc(var(--rt) * -1s);*/
  /*animation-timing-function: linear;*/
}
.service .serswiper .ser-slide .ser-txt h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: Bold;
}
.service .serswiper .ser-slide .ser-txt p {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  max-width: 5rem;
  transform: translateX(-50%);
  color: #fff;
}
.service .serswiper .ser-slide .ser-txt span{
    display: block;
}
@keyframes adFn {
  0% {
    opacity: 0;
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -o-transform: translateX(100px);
    -ms-transform: translateX(100px);
  }
  10% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
  }
}
.news {
  padding: 1rem 0;
  /*padding-left: 1.3rem;*/
  position: relative;
  overflow: hidden;
}
.news.detail {
  padding-top: 0;
}
.news.xieyi {
  padding-left: 0;
  padding: 2rem calc(1.3rem / 2) 1rem;
}
.news.xieyi .detail {
  padding: 0 calc(2.4rem / 2);
}
.news.xieyi .detail .rich {
  border-bottom: none;
}
.news.xieyi .detail .title h6 {
  text-align: center;
  margin-bottom: 0;
}
.news .bg {
  position: fixed;
  top: 0;
  left: var(--container_margin);
  width: 2.5rem;
  pointer-events: none;
}
.news .bg img {
  width: 100%;
}
.news .new-top {
  padding-bottom: 1rem;
  gap: 0.8rem;
  align-items: stretch;
}
.news .new-top .top-right {
  width: 50%;
  border-radius: 5px;
  overflow: hidden;
  height: 4.5rem;
  flex-shrink: 0;
}
.news .new-top .top-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.news .new-top .top-left {
  position: relative;
  flex: 1;
  align-items: stretch;
  gap: 0.45rem;
}
.news .new-top .top-left span {
  line-height: 1;
  font-family: Medium;
  color: var(--themeColor);
}
.news .new-top .top-left .title {
  color: #333333;
  font-family: Bold;
}
.news .new-top .top-left p {
  line-height: 2.2;
  color: #666666;
}
.news .new-top .top-left .new-btn {
  border: 2px solid var(--themeColor1);
  color: var(--themeColor1);
  position: absolute;
  left: 0;
  bottom: 0;
}
.news .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.8rem;
  column-gap: 0.6rem;
}
.news .list .item {
  padding-top: 0.4rem;
  position: relative;
  align-items: stretch;
}
.news .list .item::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  position: absolute;
  top: 0;
  left: 0;
}
.news .list .item::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--themeColor);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.news .list .item span {
  color: #bcbdc0;
  margin-bottom: 0.2rem;
}
.news .list .item .title {
  font-family: Bold;
  color: #333;
  margin-bottom: 0.3rem;
  transition: 0.3s;
  height: 0.75rem;
}
.news .list .item .img {
  border-radius: 5px;
  aspect-ratio: 446/273;
  overflow: hidden;
}
.news .list .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.news .list .item:hover::after {
  width: 100%;
}
.news .list .item:hover .title {
  color: var(--themeColor);
}
.news .list .item:hover img {
  scale: 1.1;
}
.news .yepage {
  padding-top: 1rem;
}
.news .detail {
  padding-left: 2.4rem;
  padding-top: 2rem;
}
.news .detail .title {
  padding: 0 0 0.45rem;
}
.news .detail .title h6 {
  font-family: Bold;
  /*line-height: 1;*/
  margin-bottom: 0.45rem;
}
.news .detail .title span {
  color: var(--themeColor);
  font-family: Medium;
}
.news .detail .rich {
  padding: 0.45rem 0;
  border-bottom: 1px solid #D9D9D9;
  border-top: 1px solid #D9D9D9;
}
.news .detail .getnew {
  padding-top: 0.5rem;
}
.news .detail .getnew .get-left a {
  line-height: 2;
  position: relative;
}
.news .detail .getnew .get-left a:hover::before {
  width: 100%;
}
.news .detail .getnew .get-left a:hover p {
  color: var(--themeColor);
}
.news .detail .getnew .get-left a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--themeColor);
  transition: 0.3s;
}
.news .detail .getnew .get-left a span {
  color: #BCBDC0;
  flex-shrink: 0;
}
.news .detail .getnew .get-left a p {
  color: var(--themeColor1);
  transition: 0.3s;
}
.gofan {
  display: flex;
  border: 2px solid var(--themeColor1);
  border-radius: 0.3rem;
  transition: 0.3s;
  color: var(--themeColor1);
}
.gofan:hover span {
  width: 1.2rem;
}
.gofan .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.6rem;
  height: 0.6rem;
}
.gofan span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s;
}
.invest {
  padding: 1rem 0;
  gap: 1rem;
}
.invest .page-title {
  margin-bottom: 0.8rem;
}
.invest .page1 ul {
  gap: 0.3rem;
  align-items: stretch;
}
.invest .page1 ul li {
  flex: 1;
  background: #F5F5F6;
  padding: 0.6rem;
  border-radius: 0.2rem;
}
.invest .page1 ul li .span {
  color: var(--themeColor1);
  margin-bottom: 0.2rem;
}
.invest .page1 ul li .baifen {
  gap: 0.15rem;
  font-family: Medium;
  margin-bottom: 0.5rem;
}
.invest .page1 ul li .baifen h1 {
  font-family: Bold;
  line-height: 1.4;
}
.invest .page1 ul li .baifen .iconfont {
  color: var(--themeColor);
}
.invest .page1 ul li .baifen .zeng {
  line-height: 1.5;
}
.invest .page1 ul li .list {
  margin-bottom: 0.5rem;
}
.invest .page1 ul li .list .item {
  padding: 0 0.6rem;
  position: relative;
  font-family: Medium;
}
.invest .page1 ul li .list .item::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #E5E5E5;
}
.invest .page1 ul li .list .item:first-of-type {
  padding-left: 0;
}
.invest .page1 ul li .list .item:last-of-type {
  padding-right: 0;
}
.invest .page1 ul li .list .item:last-of-type::before {
  width: 0;
}
.invest .page1 ul li .list .item h6 {
  color: #333;
  margin-top: 0.1rem;
  line-height: 1;
}
.invest .page1 ul li .list .item span {
  color: #666666;
}
.invest .page1 ul li .timer {
  color: #666666;
}
.invest .page2 .page2-gg {
  align-items: stretch;
  border: 1px solid #D9D9D9;
  border-radius: 0.2rem;
  overflow: hidden;
}
.invest .page2 .gg-left {
  flex: 1;
  border-radius: 0.2rem;
  overflow: hidden;
  height: 5.5rem;
}
.invest .page2 .gg-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.invest .page2 .gg-right {
  height: 5.5rem;
  flex: 1;
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  overflow: hidden;
  position: relative;
}
.invest .page2 .gg-right::before {
  content: "";
  height: 0.3rem;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.invest .page2 .gg-right::after {
  content: "";
  height: 0.3rem;
  width: 100%;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.invest .page2 .gg-right .gg-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0.35rem 0;
  position: relative;
}
.invest .page2 .gg-right .gg-slide:hover::after {
  width: 100%;
}
.invest .page2 .gg-right .gg-slide::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  position: absolute;
  left: 0;
  bottom: 0;
}
.invest .page2 .gg-right .gg-slide::after {
  content: "";
  width: 0%;
  height: 1px;
  background: var(--themeColor);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.invest .page2 .gg-right .gg-slide img {
  width: 0.5rem;
  margin-right: 0.35rem;
}
.invest .page2 .gg-right .gg-slide .h6 {
  color: #333;
  font-family: Medium;
  max-width: 5rem;
}
.invest .page2 .gg-right .gg-slide span {
  color: #727171;
}
.invest .page2 .gg-right .gg-slide .goa {
  gap: 0.3rem;
}
.invest .page2 .gg-right .gg-slide .goa a {
  width: 0.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid #BCBDC0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #BCBDC0;
  transition: 0.3s;
}
.invest .page2 .gg-right .gg-slide .goa a:hover {
  color: var(--themeColor);
  border-color: var(--themeColor);
}
.invest .page3 .ul {
  gap: 0.3rem;
}
.invest .page3 .ul .li {
  flex: 1;
  background: #F5F5F6;
  border-radius: 0.2rem;
  padding: 0.5rem;
  position: relative;
}
.invest .page3 .ul .li h6 {
  margin-bottom: 0.2rem;
  color: #333;
  font-family: Bold;
}
.invest .page3 .ul .li p {
  color: #666;
  max-width: 4rem;
}
.invest .page3 .ul .li .page3-btn {
  margin-top: 0.5rem;
  background: inherit;
  color: var(--themeColor1);
  border: 2px solid var(--themeColor1);
}
.invest .page3 .ul .li .texts {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  text-align: end;
  text-align: right;
  font-family: Bold;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #999;
}
.invest .page3 .ul .li .iconimg {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.invest .page3 .ul .li:nth-child(2) {
  background: var(--themeColor1);
}
.invest .page3 .ul .li:nth-child(2) h6 {
  color: #fff;
}
.invest .page3 .ul .li:nth-child(2) p {
  color: rgba(255, 255, 255, 0.7);
}
.invest .page3 .ul .li:nth-child(2) .page3-btn {
  color: #fff;
  border-color: #fff;
}
.invest .page3 .ul .li:nth-child(2) .texts {
  bottom: auto;
  top: 0.5rem;
  -webkit-text-fill-color: rgba(238, 238, 238, 0.8);
}
.invest .page3 .ul .li:nth-child(2) .iconimg {
  position: absolute;
  top: auto;
  bottom: 0.5rem;
  right: 0.5rem;
}
.invest .page4 {
  position: relative;
  width: 100%;
}
.invest .page4 .bg {
  width: 100%;
}
.invest .page4 .page4-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.invest .page4 .page4-view .page-title h2 {
  color: #fff;
}
.invest .page4 .page4-view .a {
  line-height: 2;
  margin-bottom: 0.4rem;
}
.invest .page4 .page4-view .a span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  line-height: 1;
  margin-bottom: 0.05rem;
}
.invest .page4 .page4-view .a a {
  color: #fff;
}
.invest .page5 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.invest .page5 .list .item {
  border: 1px solid #D9D9D9;
  border-radius: 0.1rem;
  padding: 0.4rem 0.4rem 0.3rem;
  color: #717171;
  transition: 0.3s;
}
.invest .page5 .list .item:hover {
  box-shadow: 10px 10px 12px 0 rgba(#000000, 0.05);
}
.invest .page5 .list .item:hover .a-bto .button span {
  color: var(--themeColor);
}
.invest .page5 .list .item:hover .a-bto .button .ovh .i1 {
  animation: addicon1 0.5s linear forwards;
  z-index: -1;
}
@keyframes addicon1 {
  50% {
    transform: translate(100%, -100%);
  }
  100% {
    transform: translate(-100%, 100%);
  }
}
@keyframes addicon2 {
  0% {
    top: 100%;
    right: 100%;
    transform: translate(0%, 0%);
  }
  100% {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
}
.invest .page5 .list .item:hover .a-bto .button .ovh .i2 {
  animation: addicon2 0.5s linear forwards;
  z-index: 2;
}
.invest .page5 .list .item .h6 {
  font-family: Medium;
  color: #333;
}
.invest .page5 .list .item .a-bto {
  margin-top: 0.3rem;
}
.invest .page5 .list .item .a-bto .button {
  gap: 0.1rem;
}
.invest .page5 .list .item .a-bto .button span {
  transition: 0.3s;
}
.invest .page5 .list .item .a-bto .button .ovh {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.invest .page5 .list .item .a-bto .button .ovh .iconi {
  width: 13px;
  display: block;
  aspect-ratio: 1;
  transition: 0.3s;
  background: #fff;
}
.invest .page5 .list .item .a-bto .button .ovh .i1 {
  animation: addicons1 0.5s linear forwards;
  position: relative;
  z-index: 1;
}
.invest .page5 .list .item .a-bto .button .ovh .i2 {
  position: absolute;
  animation: addicons2 0.5s linear forwards;
  z-index: -1;
  background: transparent;
}
@keyframes addicons1 {
  0% {
    transform: translate(-100%, 100%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes addicons2 {
  0% {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  50% {
    top: 0%;
    right: 0%;
    transform: translate(100%, -100%);
  }
  100% {
    right: 100%;
    top: 100%;
    transform: none;
  }
}
.contact .page1 {
  align-items: stretch;
  background: url('../image/about_page5bg.png') no-repeat;
  background-size: cover;
  padding: 1rem 0;
}
.contact .iconlink-box{
    gap: 0.3rem;
}
.contact .iconlink-box a{
    color: var(--themeColor1);
    transition: 0.3s;
}
.contact .iconlink{
    position: relative;
}
.contact .iconlink .qrcode{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,50%);
    opacity: 0;
    width: 100px;
    height: 100px;
    transition: 0.3s;
    object-fit: contain;
}
.contact .iconlink:hover{
    color: #bcbdc0;
}
.contact .iconlink:hover .qrcode{
    opacity: 1;
    transform: translate(-50%,-50%);
}
.contact .page1 .page-title{
    margin-bottom: 0.6rem;
}
.contact .page1 .page1-left {
  gap: 0.6rem;
  padding-right:20px;
}
.contact .page1 .page1-left .ercode {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  gap: 0.58rem;
}
.contact .page1 .page1-left .ercode .eritem {
  color: var(--themeColor1);
}
.contact .page1 .page1-left .ercode .eritem .img {
  width: 1.2rem;
  aspect-ratio: 1;
  box-shadow: 0 0 5px 0 #dedede;
  margin: 0 auto;
  margin-bottom: 0.2rem;
}
.contact .page1 .page1-left .ercode .eritem .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact .page1 .page1-left .ercode .eritem .text span {
  display: block;
  text-align: center;
  line-height: 1.2;
}
.contact .page1 .page1-left .a-box {
  gap: 0.3rem;
}
.contact .page1 .page1-left .a-box .a {
  line-height: 1.5;
  display:flex;
}
.contact .page1 .page1-left .a-box .a span {
  color: #999;
  display: block;
}
.contact .page1 .page1-left .a-box .a a {
  color: var(--themeColor1);
  line-height: 1.5;
}
.contact .page1 #contactditu {
  flex: 1;
  position: relative;
}
.contact .page1 #contactditu::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.5) 30%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.contact .page2 {
  position: relative;
}
.contact .page2 .bg {
  width: 100%;
}
.contact .page2 .view {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  gap: 1.4rem;
}
.contact .page2 .view .h1 {
  font-family: Bold;
  gap: 0.4rem;
}
.contact .page2 .view .h1 h1 {
  line-height: 1;
  font-family: Bold;
  font-weight: 900;
  text-shadow: 0px 0px 23px rgba(0, 0, 0, 0.05);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
}
.contact .from {
  flex: 1;
  max-width:60%;
  color: #fff;
  margin-left: -200px;
}
.contact .from h5 {
  line-height: 1.5;
  font-family: Bold;
}
.contact .from .from-head {
  margin-bottom: 0.5rem;
}
.contact .from .btn-a{
    width: 70%;
    flex-shrink: 0;
    background: var(--themeColor1);
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
	padding:10px;
}
.contact .from .btn-a:hover{
    background: #bcbdc0;
}
.contact .from .from-head .icon-btn {
  color: var(--themeColor1);
  border: 2px solid #fff;
}
.contact .from .from-list {
  gap: 0.1rem;
  align-items: stretch;
}
.contact .from .from-list .from-item {
  gap: 0.1rem;
  align-items: stretch;
  width:70%;
}
.contact .from .from-list .from-items {
  gap: 0.1rem;
  align-items: stretch;
  width: 70%;
}
.contact .from .from-list .input {
  /*flex: 1;*/

  height: 0.6rem;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
.contact .from .from-list .input span {
  pointer-events: none;
  position: absolute;
  top: 0.3rem;
  transform: translateY(-50%);
  left: 0.2rem;
  color: var(--themeColor1);
}
.contact .from .from-list .input span::after {
  content: "*";
  color: var(--themeColor);
}
.contact .from .from-list .input:has(input:valid) span {
  display: none;
}
.contact .from .from-list .input:has(textarea:valid) span {
  display: none;
}
.contact .from .from-list .input input:focus,.contact .from .from-list .input textarea:focus{
    border-color: var(--themeColor1);
}
.contact .from .from-list .input.inputs {
  height: 100%;
}
.contact .from .from-list .input.inputs textarea{
   padding-top: 0.15rem;
   height:1rem
}
.contact .from .from-list .input input,
.contact .from .from-list .input textarea {
  height: 100%;
  width: 100%;
  padding: 0 0.2rem;
  font-size: 0.18rem;
  color: var(--themeColor1);
  border-radius: 5px;
  border: 1px solid  #D9D9D9;
}
.contact .from .from-list .input input::placeholder,
.contact .from .from-list .input textarea::placeholder {
  color: var(--themeColor1);
}
.contact .page3 {
  padding: 1rem 0;
}
.contact .page3 .page-title {
  margin-bottom: 0.5rem;
}
.contact .page3 ul {
  align-items: stretch;
  gap: 0.5rem;
}
.contact .page3 ul li {
  background: linear-gradient(180deg, #F3F5F8 0%, #FFFFFF 100%);
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  padding: 0.6rem;
}
.contact .page3 ul li h6 {
  font-family: Bold;
  margin-bottom: 0.3rem;
}
.contact .page3 ul li a {
  color: #666;
}
.contact .page3 ul li .icon-btn {
  border: 2px solid var(--themeColor1);
}
.contact .page3 ul li .right-a:hover .texts{
    width: 1.4rem;
}
.jc-bs3-container {
  width: min-content;
  min-width: 3rem;
  height: min-content;
  min-height: 2rem;
}
.dizhi {
  padding: 0.2rem;
  box-shadow: 9px 9px 10px 1px rgba(0, 0, 0, 0.2);
  background: var(--themeColor1);
  width: 4rem;
  display: block;
}
.dizhi h6 {
  font-size: 0.2rem;
  font-family: Medium;
  color: #fff;
}
.dizhi p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.found img {
  margin: 0 auto;
  max-width: 50%;
  max-height: 90%;
}
.found_txt {
  transform: translateY(-50%);
  text-align: center;
}
.found_txt h3 {
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.found_txt p {
  color: #666;
  margin-bottom: 0.1rem;
}
.found_txt > div {
  margin-bottom: 0.5rem;
  gap: 0.2rem;
}
.found_txt > div button {
  padding: 5px 0;
  width: 1.5rem;
  height: 0.5rem;
  background: var(--themeColor1);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
}
@media screen and (max-width: 1600px) {
  .cbaside {
    height: 2rem;
  }
  .nav {
    right: 1.2rem;
  }
}
@media screen and (max-width: 1280px) {
  .cbaside {
    height: 2.4rem;
    width: 0.8rem;
    right: 0;
  }
  .page_info .info-content .info-list {
    padding-right: var(--container_margin);
  }
  .product .page-section .itema-box .img-box img {
    height: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .page_pro .product .pro_right .list {
    height:auto;
  }
    .product .detail::before{
        opacity:0;
        width:0;
    }
    .banner .title p{
        line-height: normal;
        max-width: 95vw;
    }
  .cbaside {
    display: none;
  }
  .indexnav {
    display: none;
  }
  .com-head.h1rem {
    height: 1.5rem;
  }
  .com-head.h1rem.comheads{
      height: 1.5rem !important;
  }
  .com-head .head-nav {
    display: none;
  }
  .com-head.combg .head-nav .a{
    color:#333;
  }
  .com-head.comheads .head-nav a::before {
    background: #333;
  }
  .com-head .logo {
    height: 0.8rem;
	margin-left: -100px;
  }
  .com-head .header_side {
    display: none;
  }
  .com-head .model_side {
    display: block;
    height: 0;
    overflow: hidden;
  }
  .com-head .head_side {
    min-width: 50vw;
  }
  .com-head .head_side .div_item .div_head {
    padding: 0.5rem 0.3rem;
  }
  .com-head .head_side .div_item .div_list a {
    padding-left: 0.6rem;
    line-height: 1.5;
  }
  .com-head .aside .side {
    width: 25px;
    height: 20px;
  }
  .icon-btn {
    height: 1rem;
    min-width: 1rem;
  }
  .icon-btn:hover {
    min-width: 1rem;
  }
  .icon-btn:hover .text {
    width: 0;
  }
  .footer .foot-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .footer .foot-top .top-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .footer .foot-top .top-right ul {
    width: 100%;
  }
  .footer .foot-top .top-right ul li {
    padding: 0 0.4rem;
  }
  .footer .foot-top .top-right ul li:first-of-type {
    padding-left: 0;
  }
  .footer .foot-top .top-right ul li:last-of-type {
    padding-right: 0;
  }
  .footer .foot-top .top-right .right-a {
    width: 100%;
  }
  .footer .foot-top .top-right .right-a a {
    width: 50%;
    height: auto;
    padding: 0.4rem 0;
    font-size: 0.4rem;
  }
  .footer .foot-box .logo {
    height: 0.8rem;
  }
  .footer .foot-box .box-right {
    display: none;
  }
  .footer .foot-box .box-left {
    font-size: 0.35rem;
    gap: 0.3rem;
    width: 100%;
    max-width: none;
  }
  .footer .foot-box .box-left .box-a {
    display: flex;
    align-items: flex-start;
  }
  .footer .foot-box .box-left .box-a span {
    flex-shrink: 0;
  }
  .footer .foot-box .box-left .box-a .a-a {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .footer .foot-box .box-left .box-a .a-a a::after {
    content: "";
  }
  .footer .foot-box .box-left .qrcode {
    width: 100%;
  }
  .footer .foot-box .box-left .qrcode .qr-code {
    width: 50%;
    text-align: center;
  }
  .footer .foot-box .box-left .qrcode .qr-code .img {
    width: 80%;
  }
  .footer .foot-bto {
    flex-direction: column-reverse;
  }
  .footer .foot-bto .bto-left {
    flex-direction: column;
    gap: 0;
  }
  .waarp {
    position: static;
  }
  .waarp.showFooter .sxl_warp {
    transform: none;
  }
  .waarp .sxl_warp {
    height: auto;
  }
  .waarp .sxl_warp .section {
    position: static;
    height: auto !important;
  }
  .waarp .sxl_warp .section.page1 {
    height: 100vh !important;
  }
  .waarp .footer {
    position: static;
    overflow: hidden;
    transform: none;
  }
  .swiper-slide .title {
    font-size: 28px;
  }
  .down .down-box {
    width: 0.3rem;
    height: 0.5rem;
  }
  .va img {
    max-width: 100%;
    object-fit: contain;
  }
  .swiper-btn {
    display: none;
  }
  .page-seciton .swiper{
      height: 100vh;
  }
  .page_info .info-content .info-img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
  }
  .page_info .info-content .info-list {
    padding: 1rem 0;
  }
  .page_info .info-content .info-list .info-title .info-head span {
    font-size: 0.4rem;
  }
  .page_info .info-content .info-list .info-title .info-head h4 {
    font-size: 0.5rem;
  }
  .page_info .info-content .info-list .info-item .info-text p {
    display: -webkit-box;
    display: -moz-box;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .page_about {
    padding: 1rem 0;
  }
  .page_about .about .about_top {
    flex-direction: column;
    gap: 1rem;
	overflow:hidden;
  }
  .page_about .about .about_top::before{
      opacity: 0;
      pointer-events: none;
  }
  .page_about .about .left {
    width: 100%;
  }
  .page_about .about .left span {
    font-size: 0.4rem;
  }
  .page_about .about .left h4 {
    font-size: 0.5rem;
  }
  .page_about .about .right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    row-gap: 0.8rem;
  }
  .page_about .about .right .item::before{
      opacity: 0;
  }
  .page_about .about_bto {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .page_about .about_bto .item-a .btn {
    width: 1rem;
  }
  .page_anli {
    padding: 1rem var(--container_margin);
  }
  .page_anli .anli {
    flex-direction: column;
    align-items: stretch;
  }
  .page_anli .anli .anli-left {
    max-width: 100%;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  .page_anli .anli .anli-left .text h6 {
    font-size: 0.4rem;
  }
  .page_anli .anli .anli-left .text h1 {
    font-size: 0.5rem;
  }
  .page_anli .anli .anli-right {
    width: 100%;
  }
  .page_anli .anliswiper .anli-slide {
    height: auto;
  }
  .page_anli .anliswiper .anli-slide.anli-slides {
    height: auto;
  }
  .page_anli .swiper-btns {
    display: none;
  }
  .page_pro {
    padding: 1rem 0;
  }
  .page_pro .product {
    padding: 0;
  }
  .page_pro .product .pro_view {
    flex-direction: column;
  }
  .page_pro .product .pro_left {
    max-width: 100%;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  .page_pro .product .pro_left h6 {
    font-size: 0.4rem;
  }
  .page_anli .anliswiper .anli-slide .anli-text .anli-title h6{
      line-height: normal;
  }
  .page_anli .anliswiper .anli-slide.anli-slides .anli-text .anli-title p{
      display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  }
  .page_pro .product .pro_left h1 {
    font-size: 0.5rem;
  }
  .page_pro .product .pro_right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .page_pro .product .pro_right .lists h1 {
    position: static;
  }
  .banner .title h1 {
    font-size: 1rem;
    line-height: 1.5;
  }
  .page-title h6 {
    font-size: 0.4rem;
  }
  .page-title h2 {
    font-size: 0.5rem;
    line-height: 1.5;
  }
  .about-page1 .page1-bto {
    flex-direction: column;
    gap: 0.8rem;
  }
  .about-page1 .page1-bto .about-a img {
    width: 100%;
  }
  .about-page1 .page1-bto .about-a .btn {
    width: 1rem;
  }
  .about-page1 .page1-bto ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.8rem;
  }
  .about-page1 p {
    line-height: 1.7;
  }
  .about-page2 .page-title {
    padding: 1rem 0;
  }
  .about-page2 .aboutswiper-box::before {
    top: 1.17rem;
  }
  .about-page2 .about-swiper .about-slide {
    width: calc(100% / 3 * 2);
  }
  .about-page2 .about-swiper .about-slide h5 {
    line-height: 0.8rem;
  }
  .about-page3 {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .about-page3 .page-title {
    padding-left: 0;
  }
  .about-page3 .page3-pation {
    display: none;
  }
  .about-page3 .page3-right {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    display: none;
  }
  .about-page3 .page3-right .bg {
    position: static;
    transform: none;
    height: 100%;
    border: none;
  }
  .about-page3 .page3-right .bg .bgimg {
    display: none;
  }
  .about-page3 .page3-left {
    max-width: 100%;
    padding: 0 var(--container_margin);
  }
  .about-page3 .page3-swi {
    padding-left: 0;
    width: 100%;
    height: auto;
  }
  .about-page3 .page3-swi .swi-slide {
    flex-direction: column;
    font-size: 0.35rem;
  }
  .about-page3 .page3-swi .swi-slide.swi-slides {
    font-size: 0.35rem;
  }
  .about-page3 .page3-swi .swi-slide .slide-img {
    display: block;
    width: 100%;
  }
  .about-page4 .page4btn {
    display: none;
  }
  .about-page4 .page4-title a {
    font-size: 0.3rem;
  }
  .about-page4 .page4-title a.active{
      font-size: 0.3rem;
  }
  .about-page4 .page4-top .page4-swiper1,.about-page4 .page4-top .page4-swiper2{
      animation-name:none !important;
      visibility: initial !important;
  }
  .about-page5 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }
  .about-page5 > img {
    max-width: 100%;
  }
  .about-page5 .view-round {
    position: static;
    top: 0;
    left: 0;
    transform: none;
    background: transparent;
    backdrop-filter: blur(0);
    padding: 0;
    border-radius: 0;
  }
  .about-page5 .view-round .round {
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .about-page5 .view-round .round .view-nli {
    background: none;
    border-radius: 0;
    width: auto;
    aspect-ratio: unset;
    padding-left: var(--container_margin);
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1rem;
  }
  .about-page5 .view-round .round .view-nli > img {
    display: none;
  }
  .about-page5 .page5_view {
    margin-bottom: 1rem;
    position: static;
    transform: none;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
  .about-page5 .page5_view .view-item {
    height: auto;
  }
  .about-page5 .page5_view .view-item:nth-child(even) {
    flex-direction: row;
    justify-content: flex-end;
  }
  .about-page5 .page5_view .view-item .icon {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
  }
  .about-page5 .page5_view .view-item .icon > img {
    max-width: 80%;
  }
  .about-page5 .page5_view .view-item .text {
    max-width: none;
  }
  .about-page6-box {
    padding: 1rem 0;
  }
  .about-page6 {
    flex-direction: column;
    gap: 1rem;
  }
  .about-page6::before {
    width: 0;
  }
  .about-page6 .page6-left {
    width: 100%;
    padding-right: 0;
  }
  .about-page6 .page6-right {
    width: 100%;
    padding-left: 0;
  }
  .about-page6 .page6-right ul {
    gap: 0.5rem;
  }
  .about-page6 .page6-right ul li .icon {
    width: auto;
  }
  .about-page7 .about-ditu {
    flex-direction: column-reverse;
  }
  .about-page7 .about-ditu .ditu {
    width: 100%;
  }
  .about-page7 .about-ditu .ditu #map{
      height: 300px;
  }
  .about-page7 .about-ditu .yoush {
    width: 100%;
  }
  .about-page7 .about-ditu .yoush ul {
    gap: 0.5rem;
  }
  .about-page7 .about-ditu .yoush ul li a {
    height: auto;
    flex-direction: column;
  }
  .about-page7 .about-ditu .yoush ul li a .img {
    max-width: 100%;
  }
  .product .page-section .page-view .menu {
    display: none;
  }
  .product .page-section .page-view .down {
    display: none;
  }
  .product .page-section .page-view .downs {
    position: static;
  }
  .product .page-section .page-view .list .box {
    flex-direction: column;
  }
  .product .page-section .page-view .list .box .img {
    max-width: 100%;
  }
  .product .page-section .page-view .list .box .box-txt .box-btn {
    display: none;
  }
  .product .page-section .page-view .list .boxs {
    flex-direction: column;
  }
  .product .page-section .page-view .list .boxs .img {
    max-width: 100%;
    width: auto;
  }
  .product .page-section .page-view .list .boxs .box-txt p{
      font-size: initial;
  }
  .product .page-section .bq-top ul {
    flex-direction: column;
  }
  .product .page-section .bq-top ul li {
    width: 100%;
    padding: 0.3rem !important;
  }
  .product .page-section .bq-top ul li:first-of-type {
    border-bottom: 1px solid #dedede;
    border-right: 0;
  }
  .product .page-section .bq-top ul li:last-of-type {
    border-left: 0;
    border-top: 1px solid #dedede;
  }
  .product .page-section .itema-box {
    flex-direction: column;
  }
  .product .page-section .itema-box .img-box {
    max-width: 100%;
    min-height: auto;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    height: auto;
  }
  .product .page-section .itema-box .img-box img {
    height: auto;
    width: 100%;
  }
  .product .page-section .itema-box .img-box .text {
    position: static;
    transform: none;
    max-width: none;
  }
  .product .page-section .itema-box .numbox {
    display: none;
  }
  .product .page-section .itema-boxs .itema-heads .numboxs {
    display: none;
  }
  .product .page-section .itema-boxs .itema-heads ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.5rem;
  }
  .product .page-section .itema-boxs .itema-heads ul li {
    height: auto;
  }
  .product .page-section .itema-boxs .box-a {
    flex-direction: column;
  }
  .product .page-section .itema-boxs .box-a .img {
    width: 100%;
  }
  .product .video .seach .gobtn {
    height: 1rem;
    width: 1rem;
  }
  .product .video .seach .gobtn span {
    display: none;
  }
  .product .video .videolist {
    grid-template-columns: 1fr;
  }
  .product .video .videolist .videoitem .img .btn {
    width: 1rem;
  }
  .product .video .textlist {
    grid-template-columns: 1fr;
  }
  .product .video .textlist .textitem {
    height: auto;
  }
  .product .video .textlist .textitem .down {
    display: block;
    flex-shrink: 0;
  }
  .product .video .textlist .textitem .pdf {
    flex: 1;
  }
  .product .video .textlist .textitem .pdf .iconfont {
    flex-shrink: 0;
  }
  .product .video .textlist .textitem .pdf span {
    max-width: 50vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .product .detail {
    flex-direction: column;
  }
  .product .detail .detail-left {
    width: 100%;
    position: static;
  }
  .product .table a {
    height: auto;
    padding: 0.2rem 0.3rem;
  }
  .product .table .table-list .table-item {
    min-height: 1rem;
  }
  .product .bqdetail {
    flex-direction: column;
  }
  .product .bqdetail .detail-left {
    width: 100%;
    position: static;
  }
  .product .bqdetail .detail-left .bqswiper-thumb {
    display: none;
  }
  .service .serHeight {
    position: static;
    height: auto;
  }
  .service .service_head .pathen {
    display: none;
  }
  .service .serswiper {
    margin: 0 var(--container_margin);
    width: auto;
  }
  .service .serswiper .swiper-wrapper {
    gap: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
  .service .serswiper .k{
      top: 35%;
  }
  .service .serswiper .ser-slide{
      width: 90vw;
  }
  .service .serswiper .ser-slide span{
      opacity: 1;
  }
  .service .serswiper .ser-slide .img{
      border-radius: 0;
  }
  .service .serswiper .ser-slide .ser-txt {
    position: static;
  }
  .service .serswiper .ser-slide .ser-txt h3,
  .service .serswiper .ser-slide .ser-txt p {
    position: static;
    transform: none;
    color: var(--themeColor1);
    max-width: 100%;
    line-height: normal;
  }
  .service .serswiper .ser-slide .ser-txt h3 {
    font-size: 0.5rem;
    margin: 0.3rem 0;
  }
  .news {
    padding-left: 0;
  }
  .news.xieyi {
    padding: 1rem 0;
  }
  .news.xieyi .detail {
    padding: 0;
  }
  .news .new-top {
    flex-direction: column;
  }
  .news .new-top .top-right {
    width: 100%;
    height: auto;
  }
  .news .new-top .top-left .new-btn {
    display: none;
  }
  .news .list {
    grid-template-columns: 1fr;
  }
  .news .detail {
    padding-left: 0;
  }
  .news .detail .title {
    text-align: center;
  }
  .news .detail .getnew .get-right {
    display: none;
  }
  .invest #zoushi {
    height: 400px;
  }
  .invest .page1 ul {
    flex-direction: column;
  }
  .invest .page1 ul li {
    flex: auto;
  }
  .invest .page1 ul li .baifen .zeng {
    font-size: 0.3rem;
    line-height: 2;
  }
  .invest .page1 ul li .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.5rem;
    position: relative;
  }
  .invest .page1 ul li .list::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #E5E5E5;
  }
  .invest .page1 ul li .list::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #E5E5E5;
  }
  .invest .page1 ul li .list .item {
    text-align: center;
    padding: 0 !important;
  }
  .invest .page1 ul li .list .item::before {
    width: 0;
  }
  .invest .page2 .page2-gg {
    flex-direction: column;
  }
  .invest .page2 .page2-gg .gg-left {
    width: 100%;
    height: auto;
  }
  .invest .page2 .page2-gg .gg-right {
    flex: 0;
    height: 10rem;
  }
  .invest .page2 .page2-gg .gg-right .swiper-wrapper {
    flex-direction: column;
  }
  .invest .page2 .page2-gg .gg-right .gg-slide {
    flex-direction: column;
  }
  .invest .page2 .page2-gg .gg-right .gg-slide img {
    width: 1rem;
  }
  .invest .page2 .page2-gg .gg-right .gg-slide > div:first-of-type {
    align-items: flex-start;
  }
  .invest .page2 .page2-gg .gg-right .gg-slide .goa {
    width: 100%;
    justify-content: flex-end;
  }
  .invest .page2 .page2-gg .gg-right .gg-slide .goa a {
    width: 1rem;
  }
  .invest .page3 .ul {
    flex-direction: column;
  }
  .invest .page3 .ul .li {
    width: 100%;
  }
  .invest .page4 {
    width: 100vw;
  }
  .invest .page4 .bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .invest .page4 .page4-view {
    position: static;
    transform: none;
    padding: 1rem 0;
  }
  .invest .page5 .list {
    grid-template-columns: 1fr;
  }
  .contact .page1 {
    flex-direction: column;
    height: auto;
  }
  .contact .page1 .page-content{
      flex-direction: column;
  }
  .contact .from{
      max-width: none;
      width: 100%;
	  margin-left: 0;
  }
  .contact .from .from-list{
      flex-direction: column;
  }
  .contact .from .from-list .from-item{
      width: 100%;
  }
  .contact .from .from-list .from-items{
      width: 100%;
  }
  .contact .from .from-list .input.inputs textarea{
      min-height: 200px;
  }
  .contact .from .btn-a{
      width: 100%;
  }
  .contact .from .from-list .input{
      height: 1rem;
  }
  .contact .from .from-list .input span{
      top: 0.5rem;
  }
  .contact .page1 .page1-left {
    width: 100%;
    padding: 1rem var(--container_margin);
  }
  .contact .page1 .page1-left .ercode .eritem .img {
    width: 2rem;
    margin: 0 auto 0.2rem;
  }
  .contact .page1 #contactditu {
    height: 300px;
    flex: auto;
  }
  .contact .page1 #contactditu::after {
    display: none;
  }
  .contact .page2 .bg {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .contact .page2 .view {
    padding: 1rem 0;
    flex-direction: column;
    position: static;
    transform: none;
  }
  .contact .page2 .view .h1 {
    display: none;
    font-size: 1rem;
  }
  .contact .page2 .view .from {
    width: 100%;
  }
  .contact .page2 .view .from .from-list .from-item {
    flex-direction: column;
  }
  .contact .page2 .view .from .from-list .input {
    flex: auto;
    height: 1rem;
  }
  .contact .page2 .view .from .from-list .input.inputs {
    min-height: 2rem;
  }
  .contact .page2 .view .from .from-list .input input,
  .contact .page2 .view .from .from-list .input textarea {
    font-size: 0.3rem;
  }
}



.index_category {
	background-color: #f3f3f3;
  padding-bottom:30px;
}

.index_category .container {
	width: 100%;
	padding: 0 30px;
}

@media (max-width: 1469px) {
	.index_category .container {
		padding: 0 15px;
	}
}

@media (max-width: 767px) {
	.index_category .container {
		padding: 0 10px;
	}
}

.index_category .list {
	margin-top: 20px;
}

@media (max-width: 1199px) {
	.index_category .list {
		margin-top: 10px;
	}
}

@media (max-width: 767px) {
	.index_category .list {
		margin-top: 5px;
	}
}

.index_category .list .row {
	margin: 0 -10px;
}

@media (max-width: 767px) {
	.index_category .list .row {
		margin: 0 -5px;
	}
}

.index_category .list .left {
	padding: 0 10px;
}

@media (max-width: 767px) {
	.index_category .list .left {
		padding: 0 5px;
	}
}

.index_category .list .left ul li {
	padding: 0 10px;
}

@media (max-width: 767px) {
	.index_category .list .left ul li {
		padding: 0 5px;
	}
}

.index_category .list .left ul li:first-child .item .img-box {
	padding-bottom: 60%;
}

.index_category .list .left .item {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 20px;
	padding: 10px;
	-webkit-transition: all .4s;
	transition: all .4s;
	background-color: #fff;
}

@media (max-width: 767px) {
	.index_category .list .left .item {
		margin-top: 15px;
		padding: 5px;
	}
}

.index_category .list .left .item:hover {
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
}

.index_category .list .left .item:hover .name {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	background-color: #166198;
}

.index_category .list .left .item:hover .name p {
	text-align: center;
	color: #fff;
}

.index_category .list .left .item .img-box {
	padding-bottom: 58.13953488%;
}

.index_category .list .left .item .name {
	position: absolute;
	right: 10px;
	bottom: 0;
	left: 10px;
	padding: 0 40px;
	-webkit-transition: all .4s;
	transition: all .4s;
	background-color: #fff;
}

@media (max-width: 1199px) {
	.index_category .list .left .item .name {
		padding: 0 20px;
	}
}

@media (max-width: 767px) {
	.index_category .list .left .item .name {
		right: 5px;
		left: 5px;
		padding: 0;
	}
}

.index_category .list .left .item .name p {
	font-size: 18px;
	line-height: 2.22222222;
	overflow: hidden;
	-webkit-transition: all .4s;
	transition: all .4s;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #222;
}

@media (max-width: 767px) {
	.index_category .list .left .item .name p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.index_category .list .left .item .name p {
		font-size: 15px;
	}
}

.index_category .list .right {
	padding: 0 10px;
}

@media (max-width: 767px) {
	.index_category .list .right {
		padding: 0 5px;
	}
}

.index_category .list .right ul li {
	padding: 0 10px;
}

@media (max-width: 767px) {
	.index_category .list .right ul li {
		padding: 0 5px;
	}
}

.index_category .list .right .item {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 20px;
	padding: 10px;
	-webkit-transition: all .4s;
	transition: all .4s;
	background-color: #fff;
}

@media (max-width: 767px) {
	.index_category .list .right .item {
		margin-top: 15px;
		padding: 5px;
	}
}

.index_category .list .right .item:hover {
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
}

.index_category .list .right .item:hover .name {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	background-color: #166198;
}

.index_category .list .right .item:hover .name p {
	text-align: center;
	color: #fff;
}

.index_category .list .right .item .img-box {
	padding-bottom: 58.13953488%;
}

.index_category .list .right .item .name {
	position: absolute;
	right: 10px;
	bottom: 0;
	left: 10px;
	padding: 0 20px;
	-webkit-transition: all .4s;
	transition: all .4s;
	background-color: #fff;
}

@media (max-width: 1199px) {
	.index_category .list .right .item .name {
		padding: 0 20px;
	}
}

@media (max-width: 767px) {
	.index_category .list .right .item .name {
		right: 5px;
		left: 5px;
		padding: 0;
	}
}

.index_category .list .right .item .name p {
	font-size: 18px;
	line-height: 2.22222222;
	overflow: hidden;
	-webkit-transition: all .4s;
	transition: all .4s;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #222;
}

@media (max-width: 767px) {
	.index_category .list .right .item .name p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.index_category .list .right .item .name p {
		font-size: 15px;
	}
}

.img-box {
	position: relative;
	display: block;
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
}

.img-box img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.img-box img[src=''],
.img-box img:not([src]) {
	opacity: 0;
	border: 0;
}


.index_category .title {
  padding-top: 50px;
	text-align: center;
}

.index_category .title b {
	font-family: 'Roboto-Bold';
	font-size: 44px;
	font-weight: normal;
	line-height: 1;
	display: block;
	color: #000;
}



.about_top .item span {
	font-size: 15px;
	line-height: 1.6;
	margin-top: 15px;
	color: #666;
}

@media (max-width: 991px) {
	.about_top .item span {
		margin-top: 10px;
	}
}




.pagebanner {
	position: relative;
	overflow: hidden;
	width: 100%;
}

@media (max-width: 1199px) {
	.pagebanner {
		padding-top: 70px;
	}
}

.pagebanner .item {
	position: relative;
}

.pagebanner .item img {
	max-width: 100%;
	height: auto !important;
}


.send3{
	background:var(--themeColor1);
	color: #fff;
    border-radius: 0px;
    transition: 0.3s;
	padding:10px;
}

.main{
	width:100%;
	overflow: hidden
}