@charset "utf-8";

/* CSS Document */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Thin.woff2');
  font-weight: 200;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.woff2');
  font-weight: 300;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2');
  font-weight: 600;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'nums';
  src: url('../fonts/Urbanist-Bold.woff2');
}

@font-face {
  font-family: 'iconfont';
  src: url(../icons/iconfont.eot);
  src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
    url(../icons/iconfont.woff) format('woff'),
    url(../icons/iconfont.ttf) format('truetype'),
    url(../icons/iconfont.svg#iconfont) format('svg');
}

.iconfont {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  color: var(--color2);
  font-family: 'Montserrat';
  font-weight: 400;
}

p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 1rem 0;
  font-weight: 300;
  color: #666;
}

img {
  display: block;
}

.clear {
  clear: both;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color);
}

::selection {
  background: var(--color);
  color: #fff;
}

.w_all {
  width: 82.5%;
  margin: auto;
}

.w_all2 {
  width: 82.5%;
  margin: auto;
}

.w_all3 {
  width: 70vw;
  margin: auto;
}

.flexBoxs {
  display: flex;
  flex-wrap: wrap;
}

.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}

html,
body {
  font-size: 62.5%;
  width: 100%;
  position: relative;
  --color: #75bd42;
  --color2: #070506;
  --color3: #e7e6e6;
  --height: 80px;
  --height2: 68px;
  --bg: #f7f8fb;
  overflow-x: hidden;
}

header {
  width: 100%;
  z-index: 9999;
  transition: all 0.6s cubic-bezier(0.38, 0, 0, 1);
  position: fixed;
  top: 0;
  left: 0;

}

header.active,
header.on {
  background-color: #fff;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.08);
}

header .nav_box {
  transition: all 0.6s cubic-bezier(0.38, 0, 0, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}


header .nav {
  display: flex;
  align-items: center;
}

header .logo {
  transition: all 0.5s ease;
  z-index: 9999;
  position: relative;
  height: 3rem;
}

header .logo img {
  display: block;
  height: 100%;
  filter: invert(1) brightness(1000);
}

header.active .logo {
  height: 2.5rem;
}

header.active .logo img,
header.on .logo img {
  filter: none;
}


header nav {
  display: flex;
}

header ul {
  display: flex;
  align-items: center;
}

header ul li {
  padding: 0 4rem 0 0;
  position: relative;
}

header .nav li h2 {
  color: #fff;
  line-height: var(--height);
  font-size: 1.6rem;
  transition: all 0.5s ease;
  font-weight: 500;

}

header.on .nav li h2,
header.active .nav li h2 {
  color: var(--color2);
}

header.active .nav li h2 {
  line-height: var(--height2);
}

header .nav li:hover h2 {
  color: var(--color) !important;
}

.lastli {
  background: var(--color);
  color: #fff;
  border-radius: 5rem;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

.lastli:hover {
  opacity: 0.8;
}

.navBtn {
  z-index: 99999;
  cursor: pointer;
  display: none;
  margin-left: 2rem;
}

.navBtn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}

.nav_btn_active {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

header.active .navBtn span,
header.on .navBtn span {
  background: var(--color2)
}

.nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}

.nav_btn_active span:nth-of-type(3) {
  margin-top: -59%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.s_menu {
  pointer-events: none;
  opacity: 0;
  padding: 3rem 0;
  transition: all 0.5s cubic-bezier(0.38, 0, 0, 1);
  position: fixed;
  top: var(--height);
  left: 0%;
  width: 100%;
  background: #fff;
  box-shadow: 0 16px 16px rgba(0, 0, 0, .1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, .05);
  
}

header.active .s_menu {
  top: var(--height2);
}

header ul li.on .s_menu {
  pointer-events: auto;
  opacity: 1;
}

.s_menu p {
  font-size: 1.4rem;
  box-sizing: border-box;
  opacity: 0;
  text-align: center;
  transform-origin: 0;
  transition: opacity 0.8s cubic-bezier(0.38, 0, 0, 1),
    transform 0.8s cubic-bezier(0.38, 0, 0, 1),
    color 0.3s cubic-bezier(0.38, 0, 0, 1);
  transform: translateY(-30%);
  display: flex;
  align-items: center;
  margin: 1rem 3.5rem;
  font-weight: 400;
}

.s_menu p img {
  width: 2.6rem;
  margin-right: 1rem;
  filter: grayscale(100%) brightness(60%) contrast(120%);
}

header ul li.on .s_menu p {
  opacity: 1;
  transform: translateY(0);
}

.s_menu p:hover {
  color: var(--color);
}

.s_menu p:hover img {
  filter: none;
}

.sp_menu {
  align-items: initial;
  padding: 0;
  justify-content: space-between; 
}

.sp_menu .sl {
  width: 25%;
  background: var(--bg);
  padding: 2% 5%;
  box-sizing: border-box;
}

.sp_menu .sl p {
  margin: 1.6rem 0;
}

.sp_menu .sl p.active {
  color: var(--color);
  font-weight: 500;
}

.sp_menu .sr {
  width: 70%;
  padding: 1.8% 1.8% 1.8% 0;
  box-sizing: border-box;
  display: none;
  min-height: 0;
}
.sp_menu .sr .sss{
    max-height: 53vh;
    overflow: auto; 
    -webkit-overflow-scrolling: touch; 
    cursor:auto;
    opacity: 0;
  transform: translateY(-40px);
  
}

.sp_menu .sr .sss.active {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.8s cubic-bezier(0.38, 0, 0, 1);
}

.sp_menu .sr .sss::-webkit-scrollbar {
  width: 2px;
}

.sp_menu .sr .sss::-webkit-scrollbar-track {
  width: 2px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.1);
}

.sp_menu .sr .sss::-webkit-scrollbar-thumb {
  background-color: var(--color);
  border-radius: 30px;
}
.sp_menu .sr dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.sp_menu .sr dl b {
  display: block;
  width: 80%;
  margin: auto;
}

.sp_menu .sr dl img {
  width: 100%;
  transition: all 0.5s ease;
}

.sp_menu .sr dl dd:hover img {
  transform: scale(1.08);
}

.sp_menu .sr dl h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0 0.3rem;
  transition: all 0.5s ease;
}

.sp_menu .sr dl dd:hover h3 {
  color: var(--color);
}

.sp_menu .sr dl p {
  text-align: center;
  font-size: 1.3rem;
  display: block;
  margin: 0;
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
}
.bannerPh{
    display: none;
}
.banner a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.banner .swiper-container {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.banner .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner .swiper-slide b {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 4.5s ease;
  transform: scale(1.05);
}

.banner .swiper-slide-active b {
  transform: scale(1);
}

.banner .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  z-index: 1;
}

.banner video {
  width: 130%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .txt {
  position: absolute;
  left: 50%;
  top: 19%;
  transform: translate(-50%, -0%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.banner .txt h3 {
  font-size: 4.6rem;
  color: #fff;
  opacity: 0;
  transform: translate3d(0, -30px, 0);
  letter-spacing: 6px;
  font-weight: 500;
  will-change: opacity, transform;
}

.banner .txt p {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translate3d(0, -20px, 0);
  will-change: opacity, transform;
}

.banner .swiper-slide-active .txt h3 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.6s ease-out 0.2s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.banner .swiper-slide-active .txt p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.6s ease-out 0.55s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}

.banner .bottom {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  justify-content: space-between;
}

.banner .swiper-pagination {
  display: flex;
  position: static;
  box-sizing: border-box;
  align-items: center;
  margin-bottom: -1.5rem;
}

.banner .swiper-pagination span {
  background: none !important;
  width: 3rem !important;
  height: 3rem !important;
  margin: 0 0.3rem !important;
  opacity: 1 !important;
  color: #fff;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.banner .swiper-pagination span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 2.6rem;
  width: 1px;
  height: 0;
  background: var(--color);

}

.banner .swiper-pagination .swiper-pagination-bullet-active {
  color: var(--color);
  font-size: 2rem;
  transform: translateY(-6rem);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner .swiper-pagination .swiper-pagination-bullet-active::after {
  height: 4.6rem;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner .btn .bl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  left: 3rem;
}

.banner .btn .bl.llr {
  left: inherit;
  right: 3rem;
}

.btn .bl {
  cursor: pointer;
  z-index: 9;
  transition: all 0.3s linear;
}

.btn .bl.swiper-button-disabled {
  opacity: 0.4;
}


.btn .bl img {
  width: 3rem;
  filter: invert(1) brightness(1000);
  transition: all 0.5s ease;
}

.btn .lll img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn .bl i {
  color: #fff;
  font-size: 2.4rem;
  display: block;
  font-weight: 600;
  position: relative;
}

.btn .llr i {
  transform: rotate(180deg);
}

.btn .bl:hover i {
  opacity: 1;
  color: var(--color);
}

.btns {
  display: flex;
  margin-top: 5rem;
}

.btns .bl {
  background: rgba(255, 255, 255, 0.2);
  margin-right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.btns .bl i {
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
}

.btns .bl.llr i {
  transform: rotate(180deg);
}

.btns .bl:hover {
  background: var(--color);
}

.title {
  margin-bottom: 4rem;
  position: relative;
}

.title h6 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.title h3 {
  font-size: calc(1.4rem + 1.4vw);
  line-height: 1.3;
  font-weight: 600;
}

.title h3 strong {
  font-size: calc(1.4rem + 1.4vw);
  font-weight: 600;
  color: var(--color);
}

.title p {
  margin: 1rem auto 0;
  text-align: center;
  font-weight: 400;
}

.title2 {
  margin-bottom: 4rem;
  position: relative;
}

.title2 h3 {
  font-size: calc(1rem + 1.2vw);
  line-height: 1.3;
  font-weight: 600;
}

.title2 h3 strong {
  font-size: calc(1rem + 1.2vw);
  font-weight: 500;
  color: var(--color);
}

.titleCenter {
  text-align: center;
}

.more {
  width: max-content;
  cursor: pointer;
  box-sizing: border-box;
  margin: 3rem 0 0;
  position: relative;
  font-size: 1.3rem;
  border-radius: 5rem;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: rgba(0, 0, 0, .4);
  border: 1px solid rgba(0, 0, 0, .4);
  transition: all 0.4s ease-out;
}

.more:hover {
  background: var(--color);
  color: #fff;
  border-color: transparent;
}

.more img {
  width: 0.8rem;
  margin-top: -0.1rem;
  margin-left: 0.5rem;
  filter: invert(1) brightness(1000);
}

.more:hover img {
  filter: invert(1) brightness(1000) !important;
}

.moreb {
  margin: 3rem auto 0;
  background: var(--color);
  color: #fff;
  border-color: transparent;
}

.moreb:hover {
  transform: scale(1.06);
}

.more2 {
  width: max-content;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  margin: 3rem 0 0;
  transition: all 0.5s ease;
  position: relative;
  font-size: 1.4rem;
  display: flex;
  align-items: center;

}

.more2:hover {
  color: var(--color);
}

.more2 span {
  width: 2.1rem;
  margin-left: 1rem;
  display: flex;

}

.more2 span img {
  width: 100%;
}

.index_bars {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

.index_bar1 {
  overflow: hidden;
  background: #f9f9f9;
}

.index_bar1 .imgs {
  justify-content: center;
  align-items: flex-end;
  margin: 5rem 0;
}

.index_bar1 .imgs img {
  width: 15vw;
  margin: 0 6%;
}

.index_bar1 ul {
  justify-content: space-between;
}

.index_bar1 ul li {
  width: 23%;
  text-align: center;
}

.index_bar1 ul li b {
  width: 4rem;
  display: block;
  margin: auto;
  border-radius: 2rem;
  background: var(--color);
  padding: 1rem;
}

.index_bar1 ul li b img {
  width: 100%;
  filter: invert(1) brightness(1000);
}

.index_bar1 ul li p {
  font-size: 1.2rem;
}

.index_bar1 ul li p strong {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 500;
  font-size: 1.4rem;
}

.index_bar2 {
  background: #f9f9f9;
}

.index_bar2 img {
  width: 50%;
  margin: auto;
}

.index_bar3ss {
  background: linear-gradient(to bottom, #d3d3d3, #fff);
}

.index_bar3 {
  position: relative;

}

.index_bar3 .bg img {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
}

.index_bar3 .contain {
  position: relative;
  z-index: 3;
}

.index_bar3 img {
  width: 64%;
  margin: 3vh auto 0;
}

.index_bar4 .contain {
  position: relative;
}

.index_bar4 .title {
  width: 58%;
}

.index_bar4 .title h3 {
  margin-bottom: 1.5rem;
}

.index_bar4 .title p {
  text-align: left;
  margin: 1rem 0;
}

.index_bar4 .imgs {
  width: 22vw;
  position: absolute;
  right: 0;
  bottom: 15%;
  z-index: 3;
}

.index_bar4 .imgs img {
  width: 100%;
}

.index_bar5 {
  background: #f9f9f9;
}

.index_bar5 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.index_bar5 ul li {
  text-align: center;

}

.index_bar5 ul li b {
  width: 4rem;
  display: block;
  margin: auto;
  border-radius: 2rem;
  background: var(--color);
  padding: 1rem;
}

.index_bar5 ul li b img {
  width: 100%;
  filter: invert(1) brightness(1000);
}

.index_bar5 ul li p {
  font-size: 1.2rem;
}

.index_bar5 ul li p strong {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 500;
  font-size: 1.4rem;
}

.index_bar5 .imgs {
  position: relative;
  margin: 4rem auto 0;
  width: 31vw;
}

.index_bar5 .imgs .img1 {
  width: 100%;
  margin: auto; 
}

.index_bar5 .imgs .img2 {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 60%;
  margin: 0;
  width: 75%;
  transform: translate(-50%, -50%); 
}

.index_bar5 .imgs:hover .img2 {
  opacity: 1;
  top: 50%;
}

.index_bar5 .imgs:hover .img1 {
  opacity: 0;
  top: 60%;
}

.index_bar6 {

  background-image: linear-gradient(to left top, #95d567, #a7cf8b, #cbd6c2, #e3eadd, #ffffff);
}

.index_bar6 .imgs img {
  width: 30%;
  margin: 4rem auto 0;
}

.index_bar7 {
  padding-top: 0 !important;
  background: #f9f9f9;
}

.index_bar7 .contain {
  justify-content: space-between;
}

.index_bar7 img {
  width: 100%;
}

.index_bar7 h3 {
  margin-bottom: 2rem;
}

.index_bar7 p {
  text-align: left;
}

.index_bar7 .contain .ll {
  width: 31%;
  padding: 6% 0;
}

.index_bar7 .contain .ll a {
  display: block;
}

.index_bar7 .contain .ll .imgs {
  margin-top: 5rem;
}

.index_bar7 .contain .rr {
  width: 62%;
  border-radius: 1rem;
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
}

.index_bar7 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  transition: all 0.5s ease;
  border-radius: 5rem;
}

.index_bar7 .swiper-pagination-bullet-active {
  width: 4rem;
  background: var(--color);
  opacity: 1 !important;
}

.index_bar7 .imgs {
  margin-top: 6rem;
}

.index_bar7 .imgs img {
  width: 100%;
  background: #fff;
  padding: 4rem 0;
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
  border-radius: 1rem;
  overflow: hidden;
}

.index_bar7 .swiper-pagination3 {
  position: static;
  margin-top: 2rem;
  display: none;
}

.index_bar7 .swiper-pagination3 span {
  background: var(--color);
  opacity: 0.35;
}

.index_news {
  position: relative;
  padding-top: 0 !important;
  background: #f9f9f9;
}

.index_news a {
  display: block;
}

.index_news .bg img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 30%;
  transform: translateY(-50%);
  z-index: -1;
}

.index_news .contain {
  align-items: center;
  justify-content: space-between;
}

.index_news .contain .ll {
  width: 48%;
  border-radius: 2rem;
  overflow: hidden;
  height: 45vh;
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
  position: relative;
}

.index_news .contain .ll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.index_news .contain .ll img:first-of-type {
  display: block;
}

.index_news .contain ul {
  width: 48%;
}

.index_news .contain ul img {
  display: none;
}

.index_news .contain ul li {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color3);
}

.index_news .contain ul li h6 {
  color: var(--color2);
  opacity: 0.4;
  font-size: 1.2rem;
}

.index_news .contain ul li h3 {
  font-size: 1.6rem;
  margin-top: 1rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

.index_news .contain ul li:hover h3 {
  color: var(--color);
}

.index_news .more {
  position: relative;
  z-index: 3;
  margin: 5rem auto 0;
}

.footer {
  position: relative;
  z-index: 9;

  border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.footer .bar {
  position: relative;
  display: flex;
  padding: 7rem 0;
  justify-content: space-between;
}

.footer .bar .ll {
  width: 32%;
}

.footer .bar .ll p {
  color: var(--color);
  font-weight: 400;
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.footer .bar .ll p a {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color2);
  font-weight: 300;
}

.footer .links .bbs {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.footer .links b {
  display: block;
  position: relative;
  overflow: hidden;
  margin-right: 1.2rem;
  background: var(--color2);
  border-radius: 0.8rem;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 0.4rem;
}

.footer .links img:first-of-type {
  height: 2.8rem;
  transition: all 0.5s ease;
  filter: invert(1) brightness(1000);
}

.footer .links b:hover {
  background: var(--color);
  border-color: transparent;
}

.footer .links .rs {
  transition: all 0.5s ease;
  position: absolute;
  height: 9rem;
  border-radius: 0.5rem;
  padding: 0.1rem;
  background: #fff;
  box-sizing: border-box;
  opacity: 0;
  left: 50%;
  border: 1px solid rgba(0, 0, 0, .1);
  transform: translateX(-50%);
  bottom: 100%;
}

.footer .links b:hover {
  overflow: inherit;
}

.footer .links b:hover .rs {
  opacity: 1;
  bottom: 120%;
}

.footer h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer dl p {
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 1rem 0;
  line-height: 1.4;
  font-size: 1.4rem;
  transition: all 0.5s ease;
  font-weight: 400;
}

.footer dl p:hover {
  color: var(--color);
}

.footer .copy {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
}

.footer .copy .box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .copy p {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;

}

.footer .copy p a {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  margin-left: 3rem;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer .copy p a img {
  width: 1.2rem;
  margin-top: -2px;
  margin-right: 5px;
}

.footer .copy p a:hover {
  color: var(--color);
}



.all_back {
  position: fixed;
  right: 1%;
  bottom: 6rem;
  z-index: 99999999;
  display: none;
}

.all_back .aa {
  background: #fff;
  border-radius: 50%;
  margin: 1rem 0;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, .03);
  transition: all 0.4s ease;
  box-shadow: 0 3rem 5rem 0 rgba(23, 33, 30, 0.1);
}

.all_back img {
  width: 50%;
}

.all_back .aa:hover {
  background: var(--color);
  transform: scale(1.06);
}

.all_back .aa:hover img {
  filter: invert(1) brightness(1000);
}

.allBar0 {
  height: 50vh;
}

.bans {
  height: 50vh;
  position: relative;
  top: 0;
  width: 100%;
  overflow: hidden;
  background: var(--color2);
}

.animation-zoom {
  animation: zoomEffect 14s infinite;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.bans .bgs {
  height: 100%;
}

.bans .bgs img {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  object-fit: cover;
}

.bans .txt {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
}

.bans .txt h3 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.bans .txt p {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 1.8rem;
  color: #fff;
  text-align: center;
}

.bans .txt p span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.6rem 0;
}

.bans .txt p span img {
  width: 1.8rem;
  margin-right: 1rem;
}

.bans .txt p span a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}

.bans a:has(.more) {
  display: block;
  width: max-content;
  margin: auto;
}



.topNav ul {
  background: #fff;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

header.header-hide {
  transform: translateY(-100%);
}

.topNav.fixed {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  animation: pnavTop 0.3s;
}

@keyframes pnavTop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.topNav ul {
  display: flex;
  justify-content: center;
}

.topNav li {
  margin: 0;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 2rem 0;
  margin: 0 2.5rem;
  font-size: 1.42rem;
}

.topNav li.active,
.topNav li:hover {
  font-weight: 400;
  color: var(--color);
}

.topNav li.active {
  border-bottom: 2px solid var(--color);
}


.allNavs {
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
}

.allNavs p {
  color: rgba(255, 255, 255, 1);
  margin: 0 1rem;
  font-weight: 400;
  font-size: 1.4rem;
}

.allNavs a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s ease;
  font-weight: 400;
  font-size: 1.4rem;
}

.allNavs a:first-of-type {
  margin-left: 0;
}

.allNavs a:hover {
  color: #fff;
}

.about {
  background: #f7f7f7;
  position: relative;
}

.about .contain {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  min-height: calc(100vh - var(--height2) - 60px);
  position: relative;
  z-index: 3;
}

.about .ll {
  width: 54%;
  height: 100%;
  padding-top: 10%;
  box-sizing: border-box;
  padding-right: 4%;
}

.about .tt p {
  margin: 2rem 0;
  color: var(--color2);
  font-size: 1.5rem;
}

.about .tt p strong {
  font-weight: 400;
}

.about .rr {
  width: 46%;
  overflow: hidden;
  padding-left: 4%;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  height: 100vh;
}

.about .rr::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0%;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, .08);
}

.about .rr::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 48.2%;
  width: 1px;
  height: 15vh;
  background: var(--color);
  transform: translateY(-50%);
}

.about .rrbg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 78%;
  width: calc(100vh - var(--height2) - 46px);
  height: calc(100vh - var(--height2) - 46px);
  border-radius: 50%;
  background: url(../images/diqiu.jpg) repeat-x;
  background-size: cover;
  animation: earthRotate 20s linear infinite;
  box-shadow: inset -20px 0 40px rgba(0, 0, 0, .05),
    inset 10px 0 20px rgba(255, 255, 255, .02);
}

@keyframes earthRotate {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1000px 0;
  }
}


.about .rr ul {
  height: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.about .rr ul {
  position: absolute;
  top: 0%;
  left: 4rem;
  transform: translateY(0);
  width: 100%;
}

.about .rr ul li {
  transform-origin: 0 0;
  margin-bottom: 3.5rem;
  opacity: 0.25;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}

.about .rr ul li h6 {
  font-size: 6rem;
  font-weight: 600;
}

.about .rr ul li h5 {
  font-size: 2rem;
  color: #999;
}

.about .rr ul li.active {
  opacity: 1;
  transform: scale(1);
}

.about .rr ul li.active h6,
.about .rr ul li.active h5 {
  color: var(--color);
}

.about .rr ul li.active h6 {
  font-size: 7rem;
}

.history .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.history .title .tr {
  background: rgba(0, 0, 0, .04);
  padding: 1rem 2rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-out;
  cursor: pointer;
  font-size: 1.3rem;
}

.history .title .tr img {
  width: 1.6rem;
  margin-right: 0.5rem;
}

.history .title .tr:hover {
  background: var(--color);
  color: #fff;
}

.history .title .tr:hover img {
  filter: invert(1) brightness(1000);
}

.history .s_txt {
  margin: 8vh 0;
}

.history .s_txt .swiper-slide {
  position: relative;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1)
}

.history .s_txt .swiper-slide::before {
  content: '';
  position: absolute;
  right: 0;
  top: 3.1rem;
  width: 25%;
  height: 1px;
  background: var(--color3);
}

.history .s_txt .swiper-slide h5 {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  color: #999;
  transition: all 0.5s ease 0.3s;
}

.history .s_txt .swiper-slide h5::before {
  content: '';
  position: absolute;
  right: 25%;
  top: 2.9rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color3);
}

.history .s_txt .swiper-slide h5::after {
  content: '';
  position: absolute;
  right: 0%;
  top: 2.9rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color3);
}

.history .s_txt .swiper-slide-active h5,
.history .s_txt .swiper-slide.force-active h5 {
  color: var(--color);
}

.history .s_txt .swiper-slide .tt::-webkit-scrollbar {
  width: 2px !important;
}

.history .s_txt .swiper-slide .tt::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .4);
}

.history .s_txt .swiper-slide p {
  font-size: 1.5rem;
  color: #666;
}

.history .s_txt .swiper-slide p strong {
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
}

.history .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #f7f7f7;
  border-radius: 5rem;
  padding: 1.2rem;
}


.history .gallery-top {
  width: 90%;
}

.history .gallery-top .swiper-slide {
  position: relative;
  padding-bottom: 1rem;
  cursor: pointer;
  transition: all 0.5s ease;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.history .gallery-top .swiper-slide-thumb-active {
  color: var(--color);
}

.history .gallery-top .swiper-slide::after {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color2);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translate(-50%, -0%);
  transition: all 0.5s ease;
}

.history .gallery-top .swiper-slide-thumb-active::after {
  background: var(--color) !important;
}

.history .lines {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84.5%;
  height: 1.3rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  background: url(../images/linesb.png) repeat-x left bottom / contain;
}

.history .lines span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: url(../images/lines.png) repeat-x left bottom / contain;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease;
}

.btns2 .bl {
  width: 3rem;
  height: 3rem;
  padding: 0.1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: 1px solid var(--color);
  position: relative;
  z-index: 2;
  transition: all 0.5s linear;
}

.btns2 .bl.swiper-button-disabled {
  border: 1px solid rgba(0, 0, 0, .1) !important;
  background: none !important;
}

.btns2 .bl i {
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.5s linear;
  color: var(--color);
}

.btns2 .bl.swiper-button-disabled i {
  color: rgba(0, 0, 0, .1) !important;
}

.btns2 .llr i {
  display: block;
  transform: rotate(180deg);
}

.btns2 .bl:hover {
  background: var(--color);
}

.btns2 .bl:hover i {
  color: #fff;
}

.advantage {
  padding-bottom: 0 !important;
}

.advantage dl {
  width: 100%;
  display: flex;
}

.advantage dl dd {
  width: 20%;
  overflow: hidden;
  transition: all 0.4s;
  padding: 4rem;
  flex: 1 1 20%;
  height: 65vh;
  position: relative;
}

.advantage dl dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all 0.4s;
}

.advantage dl dd .t1 {
  color: #fff;
  line-height: 1.3;
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  z-index: 3;
  font-weight: 500;
  padding-bottom: 1.5rem;

}

.advantage dl dd .t1b {
  width: max-content;
}

.advantage dl dd .t1b::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 2px;
  opacity: 0;
}

.advantage dl dd .t2 {
  z-index: 3;
  opacity: 0;
  position: relative;
  height: 100%;
  width: 24vw;
  pointer-events: none;
  transition: all 0.4s;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  flex-direction: column;
}

.advantage dl dd .t2 p {
  color: #fff;
  margin: 2.5rem 0 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.4rem;
}

.advantage dl dd .t2 p strong {
  color: #fff;
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  font-size: 1.6rem;
}

.advantage dl dd.on {
  width: 55%;
  flex: 1 1 55%;
  align-items: flex-start;
}

.advantage dl dd.on::before {
  background: linear-gradient(291deg, rgba(0, 0, 0, 0) 14.8%, rgba(0, 0, 0, 0.8) 68.89%);

}

.advantage dl dd.on .t1a {
  display: none;
}

.advantage dl dd.on .t1b::before {
  opacity: 1;
}

.advantage dl dd.on .t2 {
  opacity: 1;
  pointer-events: all;

}

.culture ul li:nth-of-type(2n) {
  background: #F7F8FB;
}

.culture ul li:nth-of-type(2n) .contain {
  flex-direction: row-reverse;
}

.culture ul li .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.culture ul li .ll {
  width: 43%;
  padding: 3% 0;
}

.culture ul li .rr {
  width: 49%;
  border-radius: 1rem;
  overflow: hidden;
  height: 42vh;
}

.culture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.culture .title {
  position: relative;
  margin: 0;
}

.culture h3 {
  color: var(--color);
}

.culture h6 {
  font-size: 5.5rem;
  font-weight: 500;
  color: rgba(51, 51, 51, .04);
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.culture ul li .tt {
  margin-top: 2rem;
}

.culture ul li p {
  font-weight: 400;
}

.culture ul li:hover .rr img {
  transform: scale(1.1);
}

.cul2 .title {
  margin: 0 auto 4rem;
}

.cul2 .btns2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 5rem;
}

.cul2 .bl {
  margin-left: 2rem;
}

.culture .cul2 .swiper-slide {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;

}

.culture .cul2 .swiper-container {
  overflow: inherit !important;
}

.culture .cul2 .swiper-slide:hover {
  transform: scale(1.01);
  transition: all .3s cubic-bezier(0, 0, .5, 1);
}

.cul2 .swiper-slide-active::before {
  content: '';
  background: linear-gradient(to top, rgba(0, 0, 0, 0.00) 61.02%, rgba(0, 0, 0, 0.80) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  transition: all .4s ease;
}

.cul2 .swiper-slide .tt {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 3.2rem;
  box-sizing: border-box;
  height: 100%;
  z-index: 3;
  transition: all .4s ease;
}

.cul2 .swiper-slide h4 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
}

.cul2 .swiper-slide p {
  color: #fff;
  line-height: 1.6;
  font-size: 1.5;
  font-weight: 400;
}

.rd {
  padding-bottom: 0 !important;
}

.rd .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rd .title p {
  text-align: left;
  width: 60%;
  margin: 0;
}

.rd .title p strong {
  font-weight: 500;
}

.rd .contain {
  border-radius: 1rem;
  overflow: hidden;
  height: 60vh;
  position: relative;
}

.rd dl {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 15%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rd dl dd {
  padding: 5%;
  box-sizing: border-box;
}

.rd dl dd h6 {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

.rd dl dd h6 strong {
  color: #fff;
  font-size: 6rem;
  font-weight: 600;
  margin-right: 1rem;

}

.rd dl dd p {
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}

.rd dl dd span {
  display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.rd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manufacture .contain {
  display: flex;
  justify-content: space-between;

}

.manufacture .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.manufacture .bottom .btns2 {
  display: flex;
}

.manufacture .bottom .btns2 .bl {
  margin-right: 2rem;
}

.manufacture .swiper-scrollbar {
  width: 80%;
  margin-bottom: 1.5rem;
}

.manufacture .ll {
  width: 26%;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.manufacture .ll p {
  margin-top: 2rem;
  text-align: left;
}

.manufacture .rr {
  width: 65%;
}

.manufacture .swiper-slide img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 1rem;
}

.manufacture .swiper-slide .tt {
  position: static;
  height: auto;
  padding: 0;
}

.manufacture .swiper-slide-active::before {
  display: none;
}

.manufacture .swiper-slide .tt h4 {
  color: var(--color2);
  margin: 3rem 0 0rem;
  font-size: 2rem;
  transition: all 0.5s ease;
}

.manufacture .swiper-slide:hover .tt h4 {
  color: var(--color);
}

.manufacture .swiper-slide .tt p {
  color: var(--color2);
  font-size: 1.4rem;
  margin: 0;
  height: auto;
  opacity: 0.6 !important;
}


.swiper-scrollbar {
  width: 100%;
  height: 2px;
  opacity: 1 !important;
}

.swiper-scrollbar-drag {
  background: var(--color) !important;
}

.honor p {
  margin-bottom: 0;
  font-weight: 300;
}

.honor p strong {
  font-weight: 400;
}

.honor .swiper-container {
  padding: 3rem 0;
}

.honor .swiper-slide img {
  width: 100%;
  border-radius: 0.6rem;
}

.honor .swiper-pagination {
  position: static;
}

.honor .swiper-pagination span {
  background: var(--color);
  margin: 0 0.5rem;
  border-radius: 5rem !important;
  transition: all 0.5s ease;
}

.honor .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 4rem;
}

.news {
  background: var(--bg)
}

.news0 {
  position: relative;
  padding-top: 0 !important;
}

.news0 .swiper-container {
  position: relative;
  z-index: 3;
  border-radius: 2rem;
  overflow: hidden;
}

.news0 a {
  display: flex;
  justify-content: space-between;
  background: #fff;

}

.news0 .aa {
  overflow: hidden;
  width: 55%;
  box-shadow: 0px 10px 21.84px 2.16px rgba(0, 0, 0, 0.06);
  height: 45vh;
}

.news0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.news0 .swiper-slide:hover .aa img {
  transform: scale(1.08);
}

.news0 .bb {
  width: 43%;
  padding: 4vw 4vw 8rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.news h6 {
  font-size: 2.4rem;
  min-height: initial;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.3;
  transition: all 0.5s ease;
}

.news0 .swiper-slide:hover h6 {
  color: var(--color);
}

.news h5 {
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  font-weight: 500;
  opacity: 0.3;
  line-height: 1;
}

.news0 .swiper-pagination {
  display: flex;
  justify-content: flex-start;
  margin: 0rem 0 1rem 3.8vw;
}

.news0 .swiper-pagination span {
  background: none !important;
  border: 1px solid #999;
  transition: all 0.5s ease;
  border-radius: 5rem;
}

.news0 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color) !important;
  border-color: var(--color);
  width: 4rem;
}

.selbox {
  display: flex;
  margin-bottom: 6rem;
  justify-content: center;
}

.selbox .sel {
  background: #fff;
  width: max-content;
  min-width: 22rem;
  margin-right: 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 5rem;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  box-shadow: 0px 19px 28px 0px rgba(226, 208, 207, 0.24);
}

.selbox .sel input {
  width: 34rem;
}

.selbox img {
  width: 1.6rem;
  margin-right: 1rem;
}

.selbox button {
  border-radius: 5rem;
  background: var(--color);
  padding: 1.2rem 4rem;
  color: #fff;
  font-weight: 500;
  box-shadow: 0px 19px 28px 0px rgba(226, 208, 207, 0.24);
  cursor: pointer;
  transition: all 0.5s ease;
}

.selbox button:hover {
  opacity: 0.8;
}

.news .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 3rem;
}

.news .box ul li {
  transition: all 0.5s ease;
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.news .box ul li a {
  display: block;
}

.news .box ul li b {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  height: 25vh;
}

.news .box ul li b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news .box ul li:hover img {
  transform: scale(1.08);
}

.news .box ul li .tt {
  box-sizing: border-box;
}

.news .box ul li:hover {
  background: #fff;
  box-shadow: 0px 6px 5.94px 0.06px rgb(0 0 0 / 5%);
  border-radius: 1rem;
}


.news .box ul li .more2 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.news .box ul li h6 {
  margin: 2rem 0 2.5rem;
  font-size: 1.8rem;
  line-height: 1.4;
}

.news .box ul li:hover h6 {
  color: var(--color);

}

.news .box ul li h5 {
  margin: 0;
  font-weight: 300;
  opacity: 1;
  color: #999;

}

.news .box ul li h5 strong {
  color: var(--color2);
  font-weight: 500;
  font-size: 2rem;
}

.bans2 {
  height: 5rem !important;
  position: static;
}

.bans_pd {
  height: 8.4rem !important;
  position: static;
}

.bar0 {
  box-sizing: border-box;
  position: relative;
}

.newsd .ars {
  position: relative;
  width: max-content;
  margin: 0;
}

.back {
  font-size: 1.4rem;
  align-items: center;
  transition: all 0.5s ease;
  color: #999;
  display: flex;
  font-weight: 500;

}

.back span {
  display: block;
  margin-right: 1rem;
  width: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 1.2rem;
  transition: all 0.5s ease;

}

.back span img {
  width: 100%;
}

.newsd .back:hover {
  color: var(--color);
}

.newsd .back:hover span {
  background: var(--color);
  transform: rotate(-35deg);
  border-color: transparent;
}

.newsd .back:hover span img {
  filter: invert(1) brightness(1000);
}

.newsd .bar0 h3 {
  margin: 0 0 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3rem 0 2rem;
  font-size: 2.8rem;
}

.newsd .bar0 h6 {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.newsd .bar0 h6 span {
  font-size: 1.3rem;
  font-weight: 400;
  color: #999;
  display: flex;
  align-items: center;
  margin-right: 3rem;
}

.newsd .bar0 h6 img {
  width: 2rem;
  margin-right: 0.8rem;
  margin-top: -0.2rem;
}

.newsd .tt {
  margin: 5% auto;
}

.newsd .tt p {
  margin: 3rem 0;
}

.newsd .tt p strong {
  font-weight: 500;
}

.newsd .tt p img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.newsd .bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2rem;
}

.newsd .bottom p {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  display: block;
  width: 100%;
  margin: 1.5rem 0;
  line-height: 1.4;
  font-weight: 400;
  color: #999;
}

.newsd .bottom p a {
  font-size: 1.4rem;
  transition: all 0.5s linear;
}

.newsd .bottom p:hover a {
  color: var(--color);
}

.case {
  background: #f7f8fb
}

.case .box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
}

.case .box ul li {
  width: 31.3%;
  margin-right: 3%;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.case .box ul li:nth-of-type(3n) {
  margin-right: 0;
}

.case .box ul li .imgs {
  height: 35vh;
  overflow: hidden;
  border-radius: 1rem;
}

.case .swiper-container,
.case .swiper-slide {
  height: 100%;
}

.case .box ul li .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case .swiper-pagination {
  display: none;
}

.case .swiper-pagination span {
  background: #fff;
  opacity: 1 !important;
  transform: scale(0.9);
  transition: all 0.5s ease;
  border-radius: 5rem;
}

.case .swiper-pagination-bullet-active {
  background: var(--color) !important;
  width: 3rem;
}

.case .box ul li h6 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 3rem 0 1rem;
  transition: all 0.5s ease;
}

.case .box ul li p {
  font-size: 1.4rem;
  margin: 0.2rem 0;
}

.case .box ul li:hover h6 {
  color: var(--color);
}

.case .swiper-button-white {
  visibility: hidden;
  z-index: 6;
}

.case .swiper-button-white:after {
  font-size: 1.8rem;
}

.case ul li:hover .swiper-button-white {
  visibility: visible;
}

.faq .box ul li {
  cursor: pointer;
}

.faq .box ul li .txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem 0;
}

.faq .box ul li .txt i {
  font-size: 2rem;
  transition: all 0.4s ease;
  font-weight: 600;
}

.faq .box ul li.active .txt i {
  color: var(--color);
  transform: rotate(180deg);
}

.faq .box ul li h3 {
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.faq .box ul li h3::before {
  content: '';
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(../images/qa.png) no-repeat center/contain;
}

.faq .box ul li .txt2 {
  padding: 2% 2% 1% 3%;
  display: none;
}

.faq .box ul li .txt2 p {
  font-size: 1.46rem;
  color: #666;

}

.faq dl {
  display: flex;
  justify-content: space-between;
}

.faq dl a {
  display: block;
  width: 50%;
}

.faq dl dd {
  padding: 7% 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color);
}

.faq dl a:first-of-type {
  background: #f0f4f9;
}

.faq dl dd i {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color);
  margin-left: 2rem;
}

.faq dl dd img {
  width: 5.4rem;
  margin-right: 2rem;
}

.download {
  background: var(--bg)
}

.download .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.download .box ul li {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
}

.download .box ul li .imgs {
  background: #fafafa;
}

.download .box ul li .imgs img {
  width: 100%;
  padding: 20% 30%;
  box-sizing: border-box;
}

.download .box ul li h3::before {
  background: url(../images/pdf.png) no-repeat center/90%;
  margin-right: 6px;
}

.download .box ul li .tbox {
  padding: 1.2rem 0;
}

.download .box ul li .txt {
  border: none;
  padding: 0.5rem 0;
}
.download .box ul li h6 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 1rem 0 1rem 4px;
}
.download .box ul li .txt h3 {
  font-size: 1.5rem;
  transition: all 0.5s ease;
}

.download .box ul li .txt2 {
  padding: 0rem 3.5rem 0.5rem;
}

.download .box ul li .txt2 p {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
}

.download .box ul li .txt2 p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  background: #666;
  border-radius: 50%;
}

.download .box ul li .txt i {
  font-size: 1.4rem;
  color: #999;
}

.download .box ul li .txts:hover h3 {
  color: var(--color);
}

.download .box ul li .txts.active h3,
.download .box ul li .txts.active i {
  color: var(--color);
}

.video {
  background: var(--bg);

}

.vbox iframe {
  width: 100%;
  height: 50vh;
  border-radius: 1rem;
}

.video .swiper-container {
  padding: 0 1rem;
  box-sizing: border-box;
  margin: 6rem auto 0;
}

.video .swiper-slide iframe {
  width: 100%;
  height: 30rem;
  border-radius: 1rem;
}

.video .swiper-button-white {
  transform: scale(0.4);
}

.video a {
  display: block;
  width: max-content;
  margin: auto;
}

.video .more {
  margin: auto;
  background: var(--color);
  margin-top: 5rem;
  border-color: transparent;
  color: #fff;
}

.video .more:hover {
  opacity: 0.8;
}

.pbar1 .swiper-slide {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.pbar1 img {
  width: 100%;
}

.pbar1 .swiper-slide .txt {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 70%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.pbar1 .swiper-slide h6 {
  color: var(--color);
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 600;
}

.pbar1 .swiper-slide h6 strong {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  margin-top: 1rem;
  font-weight: 300;
}

.pbar1 .moreb {
  margin: 3rem 0 0;
}

.pbar1 .swiper-pagination {
  position: static;
  margin-top: 2rem;
  text-align: center;
}

.pbar1 .swiper-pagination span {
  margin: 0 0.5rem;
  background: var(--color);
  border-radius: 5rem;
  transition: all 0.5s ease;
}

.pbar1 .swiper-pagination-bullet-active {
  width: 4rem;
}

.pro_l {
  padding-top: 0 !important;
}

.pro_l .contain {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.pro_l .left {
  width: 23rem;
  position: sticky;
  top: 68px;
  z-index: 99;
  background: #fff;
}

.pro_l .left dl { 
}

.pro_l .left dl.fixed {

  position: fixed;
  top: 100px;
  z-index: 99;
}

.pro_l .left dl.end {
  position: absolute;
  bottom: 0;
  top: auto;
}

.pro_l .left dd {
  margin: 0 0 2.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
}

.pro_l .left dd img {
  width: 2.6rem;
  margin-right: 1rem;
}

.pro_l .right {
  width: calc(100% - 30rem);
}

.pro_l .title h3 {
  line-height: 1;
  font-size: 2.8rem;
}
.pro_l .box:not(:first-of-type){
    padding-top: 8rem;
}
.pro_l .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pro_l .box ul li {
  text-align: center;
  border-radius: 1rem;
  padding: 0 0 2rem;
  overflow: hidden;
  position: relative;
}

.pro_l .box ul li::before {
  content: '';
  width: 100%;
  position: absolute;
  height: 4px;
  background: #E0E2EA;
  bottom: 0px;
  border-radius: 2rem;
  left: 0%;
}

.pro_l .box ul li::after {
  content: '';
  width: 33.333333%;
  position: absolute;
  height: 4px;
  background: var(--color);
  bottom: 0px;
  border-radius: 2rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.pro_l .box ul li:hover:after {
  width: 100%;
}

.pro_l .box ul li .imgs {
  display: block;
  box-sizing: border-box;
  position: relative;
}

.pro_l .box ul li .imgs img {
  width: 80%;
  margin: auto;
  transition: all 0.5s ease;
}

.pro_l .box ul li:hover .imgs img {
  transform: scale(1.1);
}

.pro_l .box ul li h3 {
  margin: 2rem 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

.pro_l .box ul li:hover h3 {
  color: var(--color);
}

.pro_l .box ul li p {
  margin: 0.6rem 0;
  text-align: center;
  font-size: 1.4rem;
}

.pro_l .pages ul {
  margin: -2rem 0 0;
}

.topNav2 {
  background: #fafafa;
}

.topNav2 ul {
  background: none;
  border: none;
  justify-content: flex-end;
}

.topNav2 ul li {
  margin: 0 0 0 2.6rem;
  font-size: 1.2rem;
  border: none !important;
  color: #999999
}

.pro_d .bar1 {
  position: relative;
  z-index: 3;
  background: #fafafa;
  margin-top: var(--height);
}

.pro_d .bar1 .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.28) 100%);
  box-shadow: 0px 10px 20px 0px rgba(186, 207, 219, 0.50);
  backdrop-filter: blur(7.5px);
}

.pro_d .bar1 .left {
  width: 34%;
  height: auto;
  position: relative;
  display: flex;
}

.pro_d .bar1 .gallery-top {
  position: relative;
  padding-bottom: 2rem;
}

.pro_d .bar1 .left img {
  width: 100%;
}

.pro_d .bar1 .swiper-button-next,
.pro_d .bar1 .swiper-button-prev {
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 50%;
  padding: 0.2rem;
  top: inherit;
  right: inherit;
  left: 50%;
  margin-left: -15px;
}

.pro_d .bar1 .swiper-button-next::after,
.pro_d .bar1 .swiper-button-prev::after {
  font-weight: 800;
  font-size: 1.3rem;
  color: #999;
}

.pro_d .bar1 .swiper-button-next:hover:after,
.pro_d .bar1 .swiper-button-prev:hover:after {
  color: var(--color);
}

.pro_d .bar1 .swiper-button-next {
  bottom: 0;
  transform: rotate(90deg);
}

.pro_d .bar1 .swiper-button-prev {
  top: 1rem;
  transform: rotate(90deg);
}

.pro_d .bar1 .swiper-pagination {
  bottom: 2rem;
  display: none;
}

.pro_d .bar1 .swiper-pagination span {
  background: var(--color);
  border-radius: 5rem;
  transition: all 0.5s ease;
}

.pro_d .bar1 .swiper-pagination-bullet-active {
  width: 4rem;
}

.pro_d .bar1 .right {
  width: 66%;
  padding: 3% 5%;
  box-sizing: border-box;
}

.pro_d .bar1 .tables {
  position: relative;
  width: 100%;
  height: 37vh;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-y;
  overflow-x: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  user-select: none;
}

.pro_d .bar1 .tables.dragging {
  cursor: grabbing;
  user-select: none;
}

.pro_d .bar1 ::-webkit-scrollbar {
  width: 3px;
}

.pro_d .bar1 ::-webkit-scrollbar-track {
  width: 3px;
  border-radius: 30px;
  background: rgba(0, 0, 0, .1);
}

.pro_d .bar1 ::-webkit-scrollbar-thumb {
  background-color: var(--color);
  border-radius: 30px;
}

.pro_d .bar1 .bb {
  position: relative;
}

.pro_d .bar1 .bb::after {
  content: '';
  height: 100%;
  width: 1px;
  position: absolute;
  left: 54%;
  top: 0;
  border-right: 1px dashed #C6C6C6;
}

.pro_d .bar1 table {
  width: 100%;
}

.pro_d .bar1 table td {
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 1rem 0;
  width: 40%;
}

.pro_d .bar1 table td:nth-of-type(1) {
  color: #666;
  width: 55%;
}

.pro_d .bar1 table td img {
  width: 2.4rem;
  margin-right: 1.5rem;
}

.pro_d .bar1 .right .tt2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
}

.pro_d .bar1 .right .tt2 a {
  display: block;

}

.pro_d .bar1 .right .tt2 .more {
  margin: 0 1rem;
  width: 90%;
  min-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pro_d .bar1 .right .tt2 .more img {
  width: 1.8rem;
  margin-left: 1rem;
}

.pro_d .bar1 .right .tt2 .more:hover {
  transform: none;
}

.pro_d .bar1 .right .tt2 a:last-of-type .more img {
  filter: none;
}

.pro_d .bar2 {
  background: var(--bg);
}

.pro_d .bar2 .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pro_d .bar2 .swiper-container {
  padding: 2.5rem 0;
  box-sizing: border-box;
}

.pro_d .bar2 .swiper-slide {
  background: #fff;
  border-radius: 1rem;
  padding: 5% 2%;
  box-sizing: border-box;
  width: 80%;
  box-sizing: border-box;
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
  height: initial !important;
}

.pro_d .bar2 img {
  width: 5rem;
  margin: 0 auto 3rem;
}

.pro_d .bar2 p {
  text-align: center;
  font-size: 1.4rem;
}

.pro_d .bar2 p strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.pro_d .bar2 .swiper-button-black {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  margin: 0 2.5vw;
  transition: all 0.5s ease;
}

.pro_d .bar2 .swiper-button-black::after {
  font-size: 1.4rem;
  transition: all 0.5s ease;
  color: var(--color);
}

.pro_d .bar2 .swiper-button-black:hover {
  background: var(--color);
}

.pro_d .bar2 .swiper-button-black:hover:after {
  color: #fff;
}

.pro_d .bar2 .swiper-button-disabled {
  filter: grayscale(1);
}

.pro_d .bar3 ul li:nth-of-type(2n) {
  background: var(--bg);
}

.pro_d .bar3 ul li .contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pro_d .bar3 ul li:nth-of-type(2n+1) .contain {
  flex-direction: row-reverse;
}

.pro_d .bar3 ul li .ll {
  width: 55%;
}

.pro_d .bar3 ul li h3 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.pro_d .bar3 ul li p {
  margin: 0.2rem 0;
}

.pro_d .bar3 ul li .img {
  width: 38%;
  border-radius: 1rem;
  overflow: hidden;
}

.pro_d .bar3 ul li .img img {
  width: 100%;
}

.bans_pro2 {
  height: 66vh;
}


.bans_pro2 .txt {
  padding-right: 48%;
  box-sizing: border-box;
}

.bans_pro2 .txt h3 {
  text-align: left;
  width: max-content;
}


.bans_pro2 .txt h6 {
  color: #fff;
  font-size: 1.6rem;
  margin: 2rem 0 4rem;
  font-weight: 500;
  line-height: 1.6;
}

.bans_pro2 .txt p {
  font-size: 1.3rem;
  opacity: 0.8;
  line-height: 2;
  text-align: left;
}

.pro_d2 .bar11 {
  position: relative;
}

.pro_d2 .bar11 .bg img {
  width: 34.33vw;
  position: absolute;
  top: 50%;
  transform: translate(25%, -50%);
  right: 0%;
  max-width: 659px;
}

.pro_d2 .bar11 .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pro_d2 .bar11 ul {
  width: 44%;
}

.pro_d2 .bar11 .box ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 0;
}

.pro_d2 .bar11 .box ul li h3::before,
.pro_d2 .bar11 .box ul li i {
  display: none;
}

.pro_d2 .bar11 .box ul li .txt2 {
  padding: 1.5rem 0 0rem;
}

.pro_d2 .bar11 .box ul li .txt {
  border: none;
  padding: 0;
}

.pro_d2 .bar11 .box ul li p {
  margin: 0;
}

.pro_d2 .bar11 .box ul li.active {
  border-color: var(--color);
}

.pro_d2 .bar11 .box ul li.active h3 {
  color: var(--color);
}

.pro_d2 .bar11 .rr {
  width: 60%;
}

.pro_d2 .bar11 .rr img {
  max-width: 80%;
  display: none;
  margin: auto;
}

.pro_d2 .bar11 .bar2 img {
  width: 6rem;
}


.pro_d2 .bar13 .contain {
  justify-content: space-between;
}

.pro_d2 .bar13 .contain .img {
  width: 43%;
}

.pro_d2 .bar13 .contain .img img {
  width: 100%;
}

.pro_d2 .bar13 .contain .rr {
  width: 46%;
  padding: 3% 0;
}

.pro_d2 .bar13 .title {
  margin: 0;
}

.pro_d2 .bar13 .contain .rr p {
  font-weight: 400;
  margin: 3rem 0;
}

.pro_d2 .bar13 .contain .rr p strong {
  font-weight: 500;
}

.pro_d2 .bar13 .bot {
  display: flex;
  margin-top: 5rem;
}

.pro_d2 .bar13 .bot a {
  display: block;
  margin-right: 2.5rem;
  transition: all 0.5s ease;
}

.pro_d2 .bar13 .bot a:hover {
  transform: scale(1.02);
}

.contact {
  background: #f9f9f9;
  position: relative;
}

.contact .bg img {
  width: 100%;
}

.contact .btns2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
}


.contact .contain {
  z-index: 3;
  width: 100%;
}

.contact .swiper-container {
  padding: 3% 0%
}

.contact .swiper-slide {
  padding: 3rem 2rem;
  box-sizing: border-box;
  border-radius: 1rem;
  transition: all .4s ease;
  background: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 8px 10px 1px rgba(174, 198, 220, 0.25);
  backdrop-filter: blur(40px);
  position: relative;
  height: auto;
}


.contact .swiper-slide::before {
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  background: #fff;
  opacity: 0;
  transition: all .4s ease;
  z-index: 1;
}

.contact .swiper-slide.swiper-slide-active::before {
  opacity: 1;
}

.contact .swiper-wrapper {}

.contact .txt {
  position: relative;
  z-index: 3;
}

.contact h6 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact h6 img {
  margin-bottom: 1rem;
  height: 3.8rem;
  border-radius: 50%;
}

.contact h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color);
  margin: 0rem 0 2rem;
}


.contact .tt {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.contact p {
  margin: 0.8rem 0;
  font-size: 1.4rem;
}

.contact p strong {
  color: var(--color);
  font-weight: 400;
}

.contact a {
  font-size: 1.4rem;
  color: #666;
}



.contact .swiper-slide:hover h6 {
  color: var(--color);
  transition: all 0.5s ease;
}

.message .title h3 {
  font-size: 2.4rem;
  font-weight: 600;
}

.message .top {
  display: flex;
  flex-wrap: wrap;
  margin-left: 2rem;
}

.message .top h6 {
  margin-left: 1rem;
  background: #edf1f3;
  position: relative;
  padding: 1rem 2.5rem;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  cursor: pointer;
}

.message .top h6 span {
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.message .top h6:before {
  content: '';
  background: var(--color);
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.message .top h6.active::before {
  opacity: 1;
  width: 100%;
}

.message .top h6.active span {
  color: #fff !important;
}

.message .top h6:hover span {
  color: var(--color);
}

.online {
  transition: all .4s ease;
  background: #fff;
  box-shadow: 0px -8px 10px rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  padding: 4rem 3rem;
  box-sizing: border-box;
  display: none;
}

.online li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.online p {
  width: 32%;
  margin: 0.7rem 0;

}

.online p span {
  position: relative;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;

}

.online p span i {
  position: absolute;
  color: red;
}

.online p .inputs {
  background: #f9f9f9;
  border-radius: 0.5rem;
  padding: 0.8rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  display: block;
  line-height: 1.4;
  width: 100%;
}

.online ::placeholder {
  color: #999;
}

.online .pp1 {
  width: 100% !important;
}

.online textarea {
  min-height: 15rem;
  padding: 1rem 0;
}

.online .code {
  display: flex;
  align-items: center;
}

.online .code span {
  margin: 0;
}

.online .code input {
  width: 20rem;
  margin: 0 1rem 0 2rem;
}

.online .code img {
  height: 3.5rem;
}

.agree {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.agree input[type="checkbox"] {
  accent-color: var(--color);
}

.agree a {
  color: var(--color);
  margin: 0 2px;
  font-size: 1.4rem;
}

.submit {
  width: 40%;
  margin: 3rem auto 1rem;
  position: relative;
}

.submit button {
  border: none;
  box-shadow: none;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  background: var(--color);
  width: 100%;
  margin: auto;
  height: 4rem;
  cursor: pointer;
  border-radius: 5rem;
  transition: all 0.5s ease;
}

.submit button:hover {
  transform: scale(1.06);
  opacity: 0.8;
}

.service .top {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #E0E2EA;
}

.service .top .tt {
  margin: 0 2rem;
  padding: 0 0;
  width: 25%;
  text-align: center;
  color: #999;
  position: relative;
  font-weight: 500;
  line-height: 50px;
  font-size: 1.4rem;
  transition: all 0.5s ease;
}

.service .top .tt::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #D9D9D9;
  border-radius: 50%;
  z-index: 6;
  transition: all 0.5s ease;
}

.service .top .tt span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  font-weight: 500;
}

.service .top .line {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 13%;
  height: 2px;
  background: var(--color);
  transition: all 0.5s ease;
}

.service .top .tt.active {
  color: var(--color);
}

.service .top .tt.active span {
  color: var(--color);
}

.service .top .tt.active::before {
  background: var(--color);
}

.service .title h3 {
  font-size: calc(1.5rem + 1vw);
  margin: 8rem auto 4rem;
}

.service .title h3 strong {
  font-size: calc(1.5rem + 1vw);
}

.service .contain2 {
  display: none;
}

.service .box {
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
  background: #fff;
  padding: 3%;
  box-sizing: border-box;
  border-radius: 1rem;
}

.service .bb {
  padding: 3%;
  box-sizing: border-box;
}

.service h6 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.service .bb2 {
  margin-top: 3rem;
}

.service .bb1 {
  background: var(--bg);
  border-radius: 1rem;

}

.service .bb1 p {
  font-weight: 400;
  font-size: 1.4rem;
}

.service .h6s {
  color: var(--color);
}

.service .bottom {
  display: flex;
  justify-content: center;
  width: 60%;
  margin: 4rem auto 0;
}

.service .submit {
  margin: 0 1rem;
}

.service .submit button:disabled {
  cursor: not-allowed;
}

.selRios {
  display: flex;
}

.selRios label {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  font-size: 1.3rem;
  color: #666;
  margin-top: 0.5rem;
  cursor: pointer;
}

.selRios label input {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1px solid #E0E2EA;
  margin-right: 8px;
  position: relative;
  font-style: normal;
}
.selRios label input[type="radio"] {
  accent-color: var(--color);
}
.service .bb3 {
  justify-content: space-between;
}

.service .bb3 h6 {
  width: 100%;
  margin: 3rem 0 1.5rem;
}

.service .bb3 .bbl {
  width: 49%;
}

.service .online {
  box-shadow: none;
  padding: 0;
  border-radius: 0%;
}

.service .online .bb4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 2rem;
}

.service .online p {
  width: 49%;
}

.service .upload {
  position: relative;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 3;
  background: var(--color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 2rem 0;
}

.service .upload input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: none;
  top: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}


.service .pps {
  font-size: 1.2rem;
  color: #999;
  font-weight: 500;
}

.service .pps2 {
  font-size: 1.6rem;
  font-weight: 500;
}

.service .pps2 a {
  color: var(--color);
  font-weight: 500;
}

.service h5 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.big_box {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999999999;
  display: none;
}

.big_imgss {
  position: absolute;
  width: 85%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.big_imgss.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.big_box .big_imgss img {
  display: block;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.big_box .big_imgss video {
  display: block;
  object-fit: cover;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.big_box .righttop {
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 9;
  padding: 15px;
}

.big_box .righttop div {
  float: right;
}

.big_box .righttop img {
  margin: 0;
  height: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.big_box .righttop img:hover {
  opacity: 0.6 !important;
}

.pages ul {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  justify-content: center;
}

.pages ul li span,
.pages ul li a {
  font-size: 1.3rem;
  margin: 0 0.6rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
  transition: all 0.5s ease;
  cursor: pointer;
  background: #f1f1f1;
}

.pages ul li.active span {
  background: var(--color);
  font-weight: 400;
  color: #fff !important;
}

.pages ul li:hover a {
  color: var(--color);
  text-decoration: underline;
}
#swiperNums{
    display: none;
}