@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Thin.ttf');
  font-weight: 200;
}
@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Light.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Bold.ttf');
  font-weight: 600;
}
@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Black.ttf');
  font-weight: 700;
}

@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;
  font-size: 62.5%;
  list-style: none;
  color: var(--color);
  font-family: 'HarmonyOSSansSC';
  font-weight: 400;
}
p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  margin: 1rem 0;
  color: var(--color);
  text-align: justify;
}
img {
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
  color: #666;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color);
}

::selection {
  background: var(--color);
  color: #fff;
}
.w_all {
  width: 94%;
  margin: auto;
}
.w_all2 {
  width: 70%;
  margin: auto;
}
.flexBoxs {
  display: flex;
  flex-wrap: wrap;
}
html,
body {
  width: 100%;
  position: relative;
  --color: #231f20;
  --color2: #1a1a1a;
}
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  box-sizing: border-box;
  z-index: 999;
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  clip-path: inset(0 0 0 0 round 5rem);
  opacity: 1;
  will-change: clip-path, opacity;
}
header.active {
  background: #fff;
  width: 94%;
  left: 3%;
  top: 2rem;
  border-radius: 5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 3rem 3rem 0 rgba(23, 33, 30, 0.031);
  clip-path: inset(0 0 0 0 round 5rem);
  opacity: 1;
  pointer-events: auto;
}
header.onDown {
  clip-path: inset(0 50% 0 50% round 5rem);
  opacity: 0;
  pointer-events: none;
}
header.header2 {
  width: 94%;
  left: 3%;
  top: 2rem;
}
.header3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 998;
  border-radius: 50%;
}
.header3.show {
  opacity: 1;
  transform: translateY(10px);
}
.header3 img {
  height: 50px;
}
header .nav_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .nav {
  display: flex;
  align-items: center;
  position: relative;
}
header .logo {
  height: 3.4rem;
  transition: all 0.5s ease;
  z-index: 9999;
  margin: 0 2rem;
}
header .logo img {
  display: block;
  height: 100%;
  display: none;
  transition: all 0.5s ease;
}
header .logo .img1 {
  display: block;
}
header.active .logo .img1,
header.header2 .logo .img1 {
  display: none;
}
header.active .logo .img2,
header.header2 .logo .img2 {
  display: block;
}
header nav {
  display: flex;
  justify-content: flex-end;
}
header ul {
  display: flex;
}
header ul li {
  position: relative;
  padding: 0 2.5rem;
}
header .nav li h2 {
  color: #fff;
  line-height: 80px;
  font-size: 1.3rem;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  cursor: default;
}
header .nav li h2 i {
  font-size: 0.8rem;
  color: #fff;
  transform: translate(0%, -50%);
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  transition: all 0.5s ease;
}
header.active .nav li h2,
header.header2 .nav li h2 {
  line-height: 64px;
  color: var(--color);
}
header .nav li:hover h2 i {
  transform: translate(160%, -50%);
  opacity: 1;
}
header .nav li:hover::before {
  opacity: 1;
  width: 100%;
}
header .language {
  background: var(--color2);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 5rem;
  margin-right: 0rem;
  display: flex;
  align-items: center;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}
header .language img {
  width: 1.4rem;
  margin-right: 0.6rem;
  filter: invert(1) brightness(10000);
}

.navBtn {
  z-index: 99999;
  cursor: pointer;
  display: none;
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
.navBtn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}
header.active .navBtn span,
header.header2 .navBtn span {
  background: var(--color);
}
.nav_btn_active {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav_btn_active span {
  background: #333 !important;
}
.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 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  backdrop-filter: blur(5px);
  width: max-content;
  min-width: 100%;
  display: none;
  z-index: 9999;
  padding: 0.6rem 0rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
}
header.active .s_menu {
  top: 100%;
}
.s_menu .sr p {
  text-align: center;
  font-size: 1.1rem;
  padding: 0.6rem 2rem;
  box-sizing: border-box;
  margin: 0;
  color: var(--color2);
  transition: all 0.4s ease;
}
.s_menu .sr p:hover {
  background: var(--color);
  color: #fff;
}

/*banner*/
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
}
.banner .swiper-container {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner .txt {
  position: absolute;
  left: 0%;
  bottom: 4%;
  z-index: 99;
  color: #fff;
  background: #7d807f;
  padding: 3rem;
  width: max-content;
  border-radius: 1rem;
  box-sizing: border-box;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.banner .swiper-slide-active .txt {
  left: 3% !important;
}
.banner .txt h3 {
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: 1;
  line-height: 1.4;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.banner .txt p {
  margin: 16px 0 0;
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 2rem;
  line-height: 28px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.banner .swiper-pagination {
  display: flex;
  justify-content: center;
  padding: 0 2%;
  bottom: 4% !important;
  box-sizing: border-box;
}
.banner .swiper-pagination span {
  background: #fff;
  opacity: 1 !important;
  transition: all 0.3s linear;
}
.banner .swiper-pagination-bullet-active {
  width: 2.5rem;
  border-radius: 2rem;
}
.btn .ll {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  height: 36px;
  padding: 0px;
  z-index: 9;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.btn .lll {
  left: 3%;
}
.btn .llr {
  right: 3%;
}
.btn .ll i {
  display: block;
  font-size: 1.6rem;
  line-height: 36px;
  font-weight: bold;
}
.btn .llr i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.btn .ll:hover {
  background: var(--color);
}
.btn .ll:hover i {
  color: #fff;
}
.title {
  margin-bottom: 4rem;
}
.title h3 {
  letter-spacing: 1px;
  font-size: 3.6rem;
  font-weight: 500;
}
.title p {
  margin: 1rem auto 0;
  text-align: center;
}
.titleCenter {
  text-align: center;
}
.more {
  width: max-content;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  margin: 5rem auto 0;
  transition: all 0.5s ease;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  background: var(--color);
  color: #fff;
  padding: 1rem 2.5rem;
  letter-spacing: 1px;
  border: 1px solid var(--color);
}
.more img {
  width: 1.5rem;
  margin-right: 0.8rem;
  filter: invert(1) brightness(1000);
}
.more:hover {
  background: #fff;
  color: var(--color);
}
.more:hover img {
  filter: inherit;
}
.moreb {
  background: none;
  color: var(--color);
}
.moreb:hover {
  background: var(--color);
  color: #fff;
}
.more2 {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.more2 img {
  width: 1.5rem;
  transition: all 0.5s ease;
  margin-left: 0.6rem;
}
.more2 img:hover {
  transform: rotate(-45deg);
}
.index_bars {
  padding: 10rem 0;
  position: relative;
}
.index_new {
  width: 100%;
  position: relative;
  background: #0092d8;
  padding-bottom: 0 !important;
}
.index_new .title h3{
    color: #fff;
}
.index_new .swiper-slide a {
  display: flex;
  justify-content: space-between;
}
.index_new .aa {
  width: 60%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.index_new .aa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.index_new .swiper-slide:hover .aa img {
  transform: scale(1.08);
}
.index_new .bb {
  width: 38%;
  border-radius: 2rem;
  background: #fff;
  padding: 6% 5%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.index_new h6 {
  font-size: 2.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}
.index_new p {
  font-size: 1.8rem;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.index_new .btn {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}
.index_new .btn .ll {
  position: static;
  margin: 0 0.5rem;
  transform: none;
}
.index_pro ul {
  display: flex;
  justify-content: space-between;
}
.index_pro ul .aa {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  height: 60vh;
}
.index_pro ul .aa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.index_pro ul li:hover .aa img {
  transform: scale(1.08);
}
.index_pro ul a {
  width: 32%;
  display: block;
}
.index_pro .bb {
  padding: 0 10%;
  box-sizing: border-box;
}
.index_pro h6 {
  font-size: 2rem;
  text-align: center;
  margin: 3rem 0 1rem;
  transition: all 0.6s ease;
}
.index_pro ul li:hover h6 {
  opacity: 0.6;
}
.index_pro .bb p {
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.6;
  text-overflow: ellipsis;
}
.index_about {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.index_about .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  flex-direction: column;
}
.index_about h3 {
  font-size: 5.2rem;
  margin: 0 auto 3rem;
  color: #fff;
  line-height: 1.4;
}
.index_about p {
  text-align: center;
  color: #fff;
}
.index_news {
  background: #ffdbf544;
}
.index_news .aa {
  border-radius: 2rem;
  overflow: hidden;
}
.index_news .aa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.index_news .swiper-slide:hover .aa img {
  transform: scale(1.08);
}
.index_news .bb {
  padding: 5% 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.index_news .t1 {
  transition: all 0.6s ease;
}
.index_news h6 {
  font-size: 1.8rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index_news h5 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 0.5rem;
  opacity: 0.6;
}
.index_news .more2 {
  margin: 0;
  width: max-content;
  transition: all 0.6s ease;
  transform: translateX(-100%);
}
.index_news .swiper-slide:hover .more2 {
  transform: translateX(0);
}
.index_news .swiper-slide:hover .t1 {
  transform: translateX(20px);
}
.index_news .bottom {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
  position: relative;
}
.index_news .bottom .more {
  margin: 0;
}
.index_news .btn {
  margin: 0;
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  justify-content: flex-end;
}
.index_news .btn .ll {
  position: static;
  margin: 0 0.5rem;
  transform: none;
}
.footer {
  background: var(--color) url(../images/fotBg2.jpg) no-repeat center/cover;
  color: #fff;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  opacity: 0.8;
}
.footer .bar {
  position: relative;
}
.footer .bar .top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 5% 0 4%;
}
.footer .bar .top .logo2 {
  height: 4rem;
}
.footer .bar .top .logo2 img {
  height: 100%;
}
.footer .bar .top .rr {
  display: flex;
  align-items: center;
}
.footer .bar .top .t1 {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
}
.footer .bar .top .t1 img {
  width: 1.6rem;
  border-radius: 50%;
  padding: 0.9rem;
  background: #fff;
  margin-right: 8px;
  transition: all 0.5s ease;
}
.footer .bar .top .more {
  margin: 0 0 0 3rem;
  background: #fff;
  color: var(--color);
}
.footer .bar .top .t1:hover img,
.footer .bar .top .more:hover {
  transform: scale(1.06);
}
.footer dl {
  width: 70%;
  display: flex;
  margin-left: 4.6rem;
  justify-content: space-between;
}
.footer dl h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  position: relative;
  color: #fff;
}
.footer dl p:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}
.footer dl p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem 0;
  line-height: 1.6;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}
.footer .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-top: 6%;
}
.footer .copy .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.footer .copy .ll {
  display: flex;
  align-items: center;
}
.footer .copy p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer .copy p a {
  font-size: 1.1rem;
  margin-left: 20px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.6;
}
.footer .copy p a:hover {
  opacity: 1;
}
.copy .rr {
  display: flex;
  align-items: center;
}
.copy .rr img {
  height: 2rem;
  margin-left: 2rem;
}
.copy .rs {
  transition: all 0.3s linear;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.copy .rs:hover {
  opacity: 0.6;
}
.all_back {
  position: fixed;
  right: 0.5%;
  bottom: 3rem;
  z-index: 99999999;
  background: #fff;
  border-radius: 50%;
  height: 3.4rem;
  width: 3.4rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.4s ease;
  box-shadow: 0 3rem 3rem 0 rgba(23, 33, 30, 0.031);
}
.all_back img {
  width: 1.4rem;
  filter: invert(1) brightness(1000);
}
.all_back:hover {
  transform: scale(1.06);
}
.bans {
  margin-top: 80px;
  text-align: center;
  padding-bottom: 1%;
}
.pro {
  padding-top: 0 !important;
}
.pro ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 2.8rem;
}
.pro ul li h6 {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 2rem;
  transition: all 0.6s ease;
}
.pro ul li b {
  background: #ffffbbee;
  display: block;
  border-radius: 2rem;
  overflow: hidden;
  padding: 10vh 0;
}
.pro ul li img {
  width: 100%;
  transition: all 0.6s ease;
}
.pro ul li:hover img {
  transform: scale(1.08);
}
.pro ul li:hover h6 {
  opacity: 0.6;
}
.pro ul li:nth-of-type(2) b {
  background: #ffe3e4;
}
.pro ul li:nth-of-type(3) b {
  background: #e0eff6;
}
.pro ul li:nth-of-type(4) b {
  background: #d2e2f9;
}
.pro ul li:nth-of-type(5) b {
  background: #92ead2;
}
.pro ul li:nth-of-type(6) b {
  background: #e9e0fb;
}
.pro_d .bar1 {
  display: flex;
  margin-top: 100px;
}
.pro_d .bar1 .left {
  width: 48%;
  height: auto;
}
.pro_d .bar1 .swiper-container {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.pro_d .bar1 .gallery-thumbs .swiper-wrapper {
  flex-wrap: wrap;
}
.pro_d .bar1 .gallery-thumbs .swiper-slide {
  padding: 1rem;
  box-sizing: border-box;
}
.pro_d .bar1 .gallery-thumbs .swiper-slide img {
  width: 100%;
  height: auto !important;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.6;
  transition: all 0.5s ease;
}
.pro_d .bar1 .gallery-thumbs .swiper-slide-thumb-active img {
  opacity: 1;
  border-color: var(--color);
}
.pro_d .bar1 .gallery-top {
  position: relative;
  overflow: hidden;
  background: #eee;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.pro_d .bar1 .left img {
  width: 100%;
  border-radius: 5px;
}
.pro_d .bar1 .swiper-button-next {
  right: 8px;
}
.pro_d .bar1 .swiper-button-prev {
  left: 8px;
}
.pro_d .bar1 .swiper-button-next,
.pro_d .bar1 .swiper-button-prev {
  background: #fff;
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 50%;
  padding: 0.2rem;
  box-shadow: 0 3rem 3rem 0 rgba(23, 33, 30, 0.031);
}
.pro_d .bar1 .swiper-button-next::after,
.pro_d .bar1 .swiper-button-prev::after {
  font-weight: 800;
  font-size: 1rem;
}
.pro_d .bar1 .right {
  width: 46rem;
  padding: 5% 0%;
  margin-left: 6rem;
  box-sizing: border-box;
}
.pro_d .bar1 .right h1 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
.pro_d .bar1 .right h1 strong {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.pro_d .bar2 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pro_d .bar2 ul li {
  width: 30%;
  overflow: hidden;
  border-radius: 2rem;
  margin: 1% 0;
}
.pro_d .bar2 ul li:first-of-type {
  width: 100% !important;
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
}
.pro_d .bar2 ul li:nth-of-type(2) {
  width: 68%;
}
.pro_d .bar2 ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  border: 1px solid  rgba(0,0,0,0.06);
}
.pro_d .bar2 ul li:first-of-type img {
  width: 40% !important;
  height: 100% !important;
}
.pro_d .bar2 ul li:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pro_d .bar2 ul li:last-of-type img {
  width: 100%;
  height: 48%;
}
.pro_d .bar2 ul li .txt {
  width: 56%;
  padding: 0 10% 0 0;
  box-sizing: border-box;
}
.pro_d .bar2 ul li h6 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.title4 {
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.title4 h3 {
  padding-bottom: 1.2rem;
  display: inline-block;
  font-size: 1.8rem;
  width: 50%;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}
.pro_d .bar3 table {
  width: 100%;
}
.pro_d .bar3 tbody {
  display: flex;
  flex-wrap: wrap;
}
.pro_d .bar3 table tr {
  width: 33.3%;
  padding: 1.5rem 0;
  box-sizing: border-box;
}
.pro_d .bar3 table td {
  font-size: 1.2rem;
  line-height: 1.4;
  display: block;
  text-align: center;
  font-weight: 300;
}
.pro_d .bar3 table td:first-of-type {
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.pro_d .bar4 h6 {
  font-size: 1.6rem;
  margin-top: 2rem;
  transition: all 0.6s ease;
}
.pro_d .bar4 b {
  background: #ffe2a9;
  display: block;
  border-radius: 2rem;
  overflow: hidden;
  padding: 10vh 0;
}
.pro_d .bar4 img {
  width: 100%;
  transition: all 0.6s ease;
}
.pro_d .bar4 .swiper-slide:hover img {
  transform: scale(1.08);
}
.pro_d .bar4 .swiper-slide:hover h6 {
  opacity: 0.6;
}
.pro_d .bar4 .swiper-slide:nth-of-type(3n + 1) b {
  background: #ffe2a9 !important;
}
.pro_d .bar4 .swiper-slide:nth-of-type(3n + 2) b {
  background: #ffe3e4;
}
.pro_d .bar4 .swiper-slide:nth-of-type(3n + 3) b {
  background: #e0eff6;
}
.pro_d .bar4 .swiper-scrollbar {
  height: 4px;
  background: rgba(211, 211, 211, 0.15);
  border-radius: 30px;
  margin: 5rem auto 0;
}
.pro_d .bar4 .swiper-scrollbar-drag {
  background: rgba(211, 211, 211, 1);
  cursor: grab;
  border-radius: 30px;
}

.service {
  padding-top: 0 !important;
}
.topNav {
  display: flex;
  justify-content: center;
}
.topNav p {
  margin: 0 1rem;
  transition: all 0.5s ease;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}
.topNav p.active,
.topNav p:hover {
  font-weight: 400;
  background: var(--color);
  color: #fff;
}
.service .bar2 {
  display: none;
}
.service .bar2 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
.service .bar2 ul li {
  border-radius: 2rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.02);
  padding: 3rem 3rem 1.5rem;
  background: #fff;
  transition: all 0.5s linear;
  cursor: default;
}
.service .bar2 ul li:hover {
  transform: translateY(-1.5rem);
}
.service .bar2 ul li:hover h6 {
  color: var(--color);
}
.service .bar2 ul li h6 {
  font-size: 1.8rem;
  transition: all 0.5s linear;
  font-weight: 500;
}
.service .bar2 ul li h5 {
  font-size: 1.3rem;
  transition: all 0.5s linear;
  margin: 1.2rem 0 2.3rem;
}
.service .bar2 ul li p {
  font-size: 1.2rem;
  transition: all 0.5s linear;
  position: relative;
  padding-left: 2.2rem;
  text-align: left;
  line-height: 1.3;
  margin: 1.3rem 0;
}
.service .bar2 ul li p a {
  font-size: 1.2rem;
  font-weight: 300;
}
.service .bar2 ul li p img {
  width: 1.6rem;
  position: absolute;
  left: 0;
  top: -1px;
  filter: grayscale(100);
}
.download0 {
  padding-top: 0 !important;
}
.download0 ul {
  margin-top: 2rem;
}
.download0 ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download0 ul li h6 {
  font-size: 1.6rem;
  margin: 1.5rem 0;
  transition: all 0.5s linear;
  display: flex;
  align-items: center;
}
.download0 ul li .rr {
  display: flex;
  align-items: center;
}
.download0 ul li p {
  transition: all 0.5s linear;
  display: flex;
  align-items: center;
}
.download0 ul li img {
  margin-left: 3rem;
  width: 2rem;
  transition: all 0.5s linear;
}
.download0 ul li:hover h6 {
  transform: translateX(15px);
}
.download2 {
  padding-top: 0 !important;
}
.download2 h5 {
  font-size: 1.8rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s linear;
  margin: 5rem 0 4rem;
}
.download2 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.download2 ul li h6 {
  font-size: 1.4rem;
  margin: 2rem 0 3rem;
  transition: all 0.5s linear;
  line-height: 1.6;
}
.download2 ul li b {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.download2 ul li img {
  width: 100%;
  transition: all 0.5s ease;
}
.download2 ul li:hover img.img1 {
  transform: scale(1.08);
}
.download2 ul li:hover h6 {
  opacity: 0.6;
}
.download2 ul li .vbtn {
  opacity: 0.8;
  width: 2.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  border-radius: 50%;
  cursor: pointer;
}
.download2 ul li > video {
  display: none;
}
.all_nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.all_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.all_nav ul a {
  margin: 0 4%;
  display: block;
}
.all_nav ul li {
  font-size: 1.7rem;
  line-height: 76px;
  color: var(--color2);
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  white-space: nowrap;
  position: relative;
  letter-spacing: 1px;
}
.all_nav ul li::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: #d81c6f;
  opacity: 0;
  width: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.all_nav ul li.active,
.all_nav ul li:hover {
  color: #d81c6f;
  font-family: 'title';
}
.all_nav ul li.active::before {
  opacity: 1;
  width: 100%;
}
.title2 {
  text-align: center;
  margin-bottom: 4rem;
}
.title2 h3 {
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: 500;
}
.about {
  padding-top: 0 !important;
}
.about .bar {
  display: flex;
  justify-content: space-between;
}
.about .bar .ll {
  display: flex;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  background: #0092d8;
  width: 49.5%;
}
.about .bar .ll .title {
  padding: 5% 12%;
  margin: 0;
  box-sizing: border-box;
}
.about .bar .ll .title h3 {
  color: #fff;
  margin-bottom: 4rem;
  line-height: 1.4;
}
.about .bar .ll .title p {
  color: #fff;
  margin: 1.5rem 0;
  width: 85%;
  text-align: left;
}
.about .bar .rr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 49%;
}
.about .bar .rr .bb {
  width: 48.5%;
  height: 40vh;
  border-radius: 2rem;
  overflow: hidden;
}
.about .bar .rr .bb img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.about .bar .rr .bb:first-of-type {
  width: 100%;
  margin-bottom: 3%;
}
.history .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.history .swiper-container {
  margin: 1% 0 6%;
}
.history .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  height: 50vh;
  overflow: hidden;
}
.history .swiper-slide b {
  width: 48%;
  height: 100%;
  overflow: hidden;
  border-radius: 2rem;
  display: block;
}
.history .swiper-slide b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history .swiper-slide .txt {
  width: 48%;
  max-height: 100%;
}
.history .swiper-slide h5 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color2);
}
.history .swiper-slide .tt {
  max-height: 80%;
  overflow: auto;
}
.history .swiper-slide p {
  font-size: 1.2rem;
}
.history .swiper-pagination {
  border-bottom: 1px solid #ccc;
  width: 90%;
  position: static;
  display: flex;
  justify-content: space-between;
}
.history .swiper-pagination-bullet {
  font-size: 2rem;
  margin: 0 0 !important;
  position: relative;
  width: auto !important;
  height: auto !important;
  opacity: 1;
  background: none !important;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.history .swiper-pagination-bullet img {
  width: 1.5rem;
  position: absolute;
  left: 0%;
  transform: translateX(-50%);
  top: -2.5rem;
  opacity: 0;
  transition: all 0.5s ease;
}
.history .swiper-pagination-bullet-active img {
  opacity: 1;
  left: 50%;
}
.history .swiper-pagination-bullet:before {
  content: '';
  width: 5px;
  height: 5px;
  background: #999999;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  transition: 0.8s;
}
.history .swiper-pagination-bullet::after {
  content: '';
  width: 11px;
  height: 11px;
  background: #999999;
  opacity: 0.42;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  transition: 0.8s;
}
.history .swiper-pagination-bullet-active {
  color: var(--color);
  transform: scale(2);
}
.history .swiper-pagination-bullet-active::before {
  background: var(--color);
  opacity: 1;
}
.history .swiper-pagination-bullet-active::after {
  background: rgba(0, 0, 0, 0.1);
  animation: scale2 2s infinite;
}
@keyframes scale2 {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }

  100% {
    transform: translateX(-50%) scale(2);
    opacity: 0;
  }
}
.history .bottom .ll {
  width: 3rem;
  height: 3rem;
  padding: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.history .bottom .ll img {
  width: 1.6rem;
  transition: all 0.3s linear;
}
.history .bottom .lll img {
  display: block;
  transform: rotate(180deg);
}
.history .bottom .ll:hover i {
  color: var(--color);
}

.news {
  padding-top: 0 !important;
}
.news ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem;
}

.news ul li b {
  display: block;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}
.news ul li b span {
  position: absolute;
  right: 10px;
  top: 18px;
  border-radius: 5rem;
  background: rgba(255, 255, 255, 1);
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
}
.news ul li b img {
  width: 100%;
  transition: all 0.5s ease;
}
.news ul li:hover b img.img1 {
  transform: scale(1.08);
}
.news ul li h5 {
  font-size: 1.1rem;
  margin: 3rem 0 0.5rem;
  transition: all 0.5s linear;
  line-height: 1.6;
  font-weight: 300;
}
.news ul li h6 {
  font-size: 1.6rem;
  transition: all 0.5s linear;
  line-height: 1.6;
}
.news ul li:hover h6 {
  opacity: 0.6;
}
.newsd {
  padding-top: 0 !important;
}
.newsd .top {
  display: flex;
  font-size: 1.2rem;
  align-items: center;
  transition: all 0.5s ease;
}
.newsd .top img {
  width: 1.2rem;
  transform: rotate(180deg);
  margin-right: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
  padding: 0.8rem;
  opacity: 0.3;
  transition: all 0.5s ease;
}
.newsd .top:hover {
  transform: translateX(-5px);
}
.newsd .top:hover img {
  opacity: 1;
}
.newsd .bar0 h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.newsd .bar0 h6 span {
  font-size: 1rem;
  margin-left: 1rem;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(211, 228, 223, 0.4);
}
.newsd .tt {
  margin-top: 5%;
}
.newsd .tt p {
  margin: 3rem 0;
}
.newsd .tt p img {
  width: 100%;
  border-radius: 2rem;
}
.newsd .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color3);
  padding: 2rem 0;
  margin-top: 4%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.newsd .bottom p {
  display: flex;
  align-items: center;
  font-size: 2rem;
}
.newsd .bottom p a {
  font-size: 1.6rem;
  transition: all 0.5s linear;
  color: #666666;
}
.newsd .bottom p:hover a {
  color: var(--color);
}
.newsd .bottom p i {
  font-size: 1.4rem;
  color: #666666;
  margin: 0.1rem 0.5rem 0;
}
.newsd .bottom p:first-of-type i {
  transform: rotate(180deg);
  margin-top: 0;
}
.con_bgss {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.con_bgss img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.contact {
  padding: 10% 0 !important;
  position: relative;
  z-index: 9;
}
.contact .bar1 {
  display: flex;
  justify-content: space-between;
  background: #0092d8;
  border-radius: 2rem;
  padding: 5%;
  box-sizing: border-box;
}
.contact .bar1 .ll {
  width: 40%;
}
.contact .bar1 .message {
  width: 45%;
  box-sizing: border-box;
}
.contact .bar1 .title h3 {
  color: #fff;
}
.contact .bar1 .ll p {
  text-align: left;
  color: #fff;
}
.contact .bar1 .ll ul li {
  margin: 2.5rem 0;
}
.contact .bar1 .ll ul li h6 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  color: #fff;
}
.contact .bar1 .ll ul li p {
  margin: 0rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
}
.contact .bar1 .ll ul li p a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.contact .bar1 .ll ul li p a:hover {
  text-decoration: underline;
}
.contact .bar1 .ll ul li img {
  margin-bottom: 1rem;
}
.contact .bar1 .title2 {
  text-align: left;
}
.message .online .inps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.message .online .inps p {
  margin: 0 0 2rem;
  width: 100%;
}
.message .online .inps p span {
  font-size: 1.2rem;
  display: block;
  color: #333;
  margin-bottom: 5px;
}
.message .online .inps p img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.message .online .inputs {
  font-size: 1.2rem;
  background: none;
  display: block;
  line-height: 1.4;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  width: 100%;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  border-radius: 0.5rem;
  font-weight: 300;
}
.message ::placeholder {
  font-weight: 300;
}
.message textarea {
  min-height: 15rem;
}
.message .submit {
  margin: 2rem 0 0;
  position: relative;
}
.message .submit button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  box-shadow: none;
}
.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;
}
