@charset "utf-8";

@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: 'Arial';
  font-size: clamp(12px, 1.1vw, 18px);
  font-weight: 300;
  line-height: 1.4;
}

p {
  margin: 1rem 0;
  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: 90%;
  margin: auto;
}

.w_all2 {
  width: 50%;
  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: #12274c;
  --color2: #1a1a1a;
  --color3: #2597de;
  --height: 90px;
  --height2: 60px;
}

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

header.active {
  background: #fff;
  box-shadow: 0 0 40px rgb(0 0 0 / 15%);
  height: var(--height2);
}

.header2 {
  background: #fff;
  box-shadow: 0 0 40px rgb(0 0 0 / 15%);
}

header .nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;

}

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

header .logo a {
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  font-size: clamp(12px, 1.4vw, 17px);
  text-transform: uppercase;
}

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

header.active .logo {
  height: 75%;
}

header.active .logo a,
.header2 .logo a {
  color: var(--color2);
}

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

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

header ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 clamp(30px, 3vw, 40px);
}

header ul li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
}

header .nav li h2 {
  color: #fff;
  font-size: clamp(14px, 0.9vw, 18px);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  opacity: 0.7;
  text-transform: uppercase;
}

header .nav li:hover h2 {
  opacity: 1;
}

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

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

.lss {
  margin: 0 !important;
  padding: 1.1rem 3rem !important;
}

.navBtn {
  z-index: 99999;
  cursor: pointer;
  display: none;
}

.navBtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 5px;
}

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: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: -66%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.s_menu {
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.38, 0, 0, 1);
  padding: 1rem 0;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: 145px;
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
}

header ul li.on .s_menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0%);
}

.s_menu p {
  font-size: clamp(13px, 0.9vw, 14px);
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  margin: 0;
  line-height: 1.2;
  transition:
    color 0.3s cubic-bezier(0.38, 0, 0, 1);
}

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

.banner {
  width: 100%;
  height: 84vh
}

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

.banner .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.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: 100%;
  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: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  color: #fff;
}

.banner .txt h3 {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.banner .txt p {
  width: 50%;
  line-height: 1.3;
  color: #fff;
  font-size: clamp(16px, 1.4vw, 20px);
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

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

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

.banner .bottom {
  margin-top: 4rem;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: opacity, transform;
}

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

.banner .swiper-pagination span {
  background: #fff;
  margin: 0 7px !important;
  width: 8px;
  height: 8px;
  border-radius: 2rem;
  opacity: 1 !important;
  transition: all 0.5s ease;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
}

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

.title h3 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.title h3::after {
  content: '';
  width: 4rem;
  height: 2px;
  background: var(--color);
  margin: 0.8rem auto;
}

.title .tt {
  padding: 0 12%;
  box-sizing: border-box;
}

.title p {
  margin: 1rem auto 0;
  text-align: center;
  opacity: 0.8;
}

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

.title2 h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  font-weight: 600;
}

.titleCenter {
  text-align: center;
}

.more {
  width: max-content;
  cursor: pointer;
  box-sizing: border-box;
  margin: 4rem 0 0;
  position: relative;
  font-size: clamp(14px, 0.9vw, 16px);
  padding: 1.5rem 3.5rem;
  display: flex;
  align-items: center;
  color: var(--color);
  font-weight: bold;
  background: #e6c565;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.more:hover {
  border-radius: 20px;
  color: #fff !important;
  background: var(--color3);
}

.more2 {
  display: flex;
  align-items: center;
  color: var(--color3);
  font-weight: 300;
  margin: 2rem 0 0;
  font-size: clamp(12px, 1vw, 16px);
}

.more2 i {
  font-size: clamp(10px, 0.9vw, 14px);
  margin-left: 3px;
  color: var(--color3);
  transition: all 0.5s ease;
}

.more2:hover i {
  transform: translateX(5px);
}

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

.index_pro {
  background: #f5f5f5;
  position: relative;
  z-index: 3;
}

.index_pro ul {
  display: flex;
  justify-content: space-between;
}

.index_pro ul li {
  position: relative;
  width: 24%;
  overflow: hidden;
  background: var(--color);
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 20px;
}

.index_pro ul li b {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  height: 28rem;
  justify-content: center;
  align-items: center;
  padding: 15%;
  box-sizing: border-box;
}

.index_pro ul li b img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.index_pro ul li:hover b img {
  transform: scale(1.08);
}

.index_pro ul li .tt h6 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  text-align: center;
  transition: all 0.3s;
  padding: 1.5rem 0 0;
}

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

.index_pro2 ul li {
  position: relative;
  border-radius: 20px;
}

.index_pro2 ul li .bbs {
  display: block;
  transition: all 0.6s ease;
  border-radius: 20px;
  overflow: hidden;
}

.index_pro2 ul li:hover .bbs {
  box-shadow: 0px 10px 26px 24px #343b453a;
}

.index_pro2 ul li b {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28rem;
  overflow: hidden;
  padding: 15% 20%;
  box-sizing: border-box;
}

.index_pro2 ul li b img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.index_pro2 ul li:hover b img {
  transform: scale(1.08);
}

.index_pro2 ul li .tt {
  position: relative;
  padding: 0 2rem 2rem;
  box-sizing: border-box;
  background: #eee;
}

.index_pro2 ul li .tt:before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  right: 0;
  height: 40px;
  background: #eee;
  z-index: 1;
  transform: skewY(4deg);
}

.index_pro2 ul li .icon {
  position: absolute;
  width: 4rem;
  border-radius: 50%;
  background: #174a9d;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 25px;
  top: -5.5rem;
  cursor: pointer;
  z-index: 3;
  padding: 0.8rem;
  box-sizing: border-box;
}

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

.index_pro2 ul li h6 {
  position: relative;
  z-index: 3;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 20px);
}

.index_pro2 ul li p {
  position: relative;
  z-index: 3;
  height: 32px;
  line-height: 1.2;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: normal;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index_about {
  position: relative;
  z-index: 6;
  height: 100vh;
}

.index_about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 15, 37, 0.84);
  z-index: 2;
}

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

.index_about h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
}

.index_about h6 img {
  height: 2rem;
  margin-right: 0.5rem;
  filter: invert(1) brightness(1000);
}

.index_about .txt .title h3 {
  color: #fff;
  margin: 3rem 0 3rem;
}

.index_about .txt .title h3::after {
  background: #fff;
}

.index_about .txt p {
  color: #fff;
  text-align: center;
}

.index_about .txt p:first-of-type {
  color: var(--color3);
  font-size: clamp(16px, 2vw, 30px);
}

.index_about a {
  display: block;
}

.index_about .txt .more {
  margin: 8vh auto 0;
}


.index_news {
  position: relative;
  z-index: 3;
  background: #f1f3f8;
}

.index_news ul {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.index_news ul a {
  display: block;
}

.index_news ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.index_news b {
  width: 100%;
  display: block;
  height: 20rem;
  overflow: hidden;
}

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

.index_news ul li:hover b img {
  transform: scale(1.06);
}

.index_news ul li .tt {
  position: relative;
  z-index: 6;
  width: 60%;
  padding: 5%;
  box-sizing: border-box;
}

.index_news h4 {
  font-size: clamp(14px, 1.2vw, 26px);
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
}

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

.index_news ul li p {
  line-height: 1.3;
  font-size: clamp(12px, 0.9vw, 14px);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer {
  background: linear-gradient(180deg, #09284E 0%, #001127 100%);
  position: relative;
  z-index: 9;
}

.footer .bar {
  position: relative;
  display: flex;
  justify-content: space-between;

}

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

.footer .logo2 {
  display: flex;
  align-items: center;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  font-size: clamp(12px, 1.5vw, 18px);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.footer .logo2 img {
  width: 6rem;
  margin-right: 1rem;
}

.footer .bar .ll .tt {
  margin: 2.2rem 0;
}

.footer .bar .ll p {
  margin: 0 0 1.2rem 0;
  line-height: 1.2;
  display: flex;
  color: #fff;
  font-size: clamp(14px, 0.9vw, 18px);
}

.footer .bar .ll p a {
  font-size: clamp(14px, 0.9vw, 18px);
  color: #fff;
}

.footer .bar .ll p img {
  width: clamp(16px, 1.2vw, 26px);
  height: clamp(16px, 1.2vw, 26px);
  margin-right: 8px;
}

.follow {
  display: flex;
  align-items: center;
}

.follow b {
  display: block;
  position: relative;
  overflow: hidden;
  margin-right: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease;
  cursor: pointer;
}

.follow b img:first-of-type {
  height: clamp(24px, 2.2vw, 36px);
  transition: all 0.5s ease;
}

.follow b:hover img:first-of-type {
  opacity: 0.7;
}

.follow b .rs {
  transition: all 0.5s ease;
  position: absolute;
  height: 10rem;
  border-radius: 0.5rem;
  padding: 0.1rem;
  background: #fff;
  box-sizing: border-box;
  margin-top: 2rem;
  opacity: 0;
}

.follow b:hover {
  overflow: inherit;
}

.follow b:hover .rs {
  margin-top: 0.8rem;
  opacity: 1;
}

.footer .bar .rr {
  width: 50%;
  padding-left: 5%;
  border-left: 1px solid rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding-bottom: 6rem;
}

.footer .bar dl {
  margin-top: 7.8rem;
}

.footer .bar dt {
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 20px);
}

.footer .bar dd {
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(14px, 1vw, 16px);
  transition: all 0.5s ease;
  color: rgba(255, 255, 255, .6);
}

.footer .bar dd:hover {
  color: #fff;
}

.footer .copy {
  width: 100%;
  padding: 1.5rem 0;
  background: #474f58;
}

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

.footer .copy p {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.9vw, 16px);
  margin: 0;
  color: rgba(255, 255, 255, .6);
}

.footer .copy p a {
  font-size: clamp(12px, 0.9vw, 16px);
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  margin-left: 20px;
  transition: all 0.5s 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: 3rem;
  z-index: 99999999999;
  display: none;
}

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

.all_back img {
  width: 50%;
  filter: invert(1) brightness(1000);
}

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

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

.bans {
  margin-top: var(--height);
}


.sNav {
  background: #fff;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.sNav .bb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(32px, 3.5vw, 50px);
}

.sNav .ll {
  width: max-content;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
  max-width: 100%;
}

.sNav .ll img {
  width: clamp(12px, 0.9vw, 20px);
  margin: -2px 0.4rem 0 0;
}

.sNav .ll p {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: clamp(10px, 0.9vw, 14px);
  color: #999;
  transition: all 0.5s ease;
}

.sNav .ll i {
  color: #999;
  margin: 0 0.5rem 0;
  font-size: clamp(10px, 0.8vw, 14px);
  transition: all 0.5s ease;
}

.sNav .ll a:hover p {
  color: var(--color);
}

.sNav .ll p.on {
  color: var(--color);
  opacity: 1;
  max-width: 80%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sNav .rr {
  height: 100%;
  display: flex;
  gap: 0 clamp(20px, 3vw, 50px);
}

.sNav .rr a {
  height: 100%;
}

.sNav .rr li {
  font-size: clamp(10px, 0.95vw, 18px);
  position: relative;
  z-index: 3;
  line-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s;
  color: #333;
  font-weight: 600;
}

.sNav .rr li::before {
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  width: 1px;
  height: 30%;
  transform: translateY(-50%);
  background: var(--color);
  opacity: 0.1;
}

.sNav .rr a:last-of-type li::before {
  display: none;
}

.sNav .rr li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color);
  opacity: 0;
}

.sNav .rr li.active,
.sNav .rr li:hover {
  color: var(--color);
}

.sNav .rr li.active::after {
  opacity: 1;
}

.pro {
  position: relative;
  z-index: 2;
  background: #f2f2f2;
}

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

.pro_l .left {
  width: 23rem;
  height: 100%;
  position: sticky;
  top: calc(var(--height) + 3rem);
}

.pro_l .lph {
  display: none;
}

.pro_l .left dl {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

.pro_l .left dl:last-of-type {
  margin: 0;
}

.pro_l .contain .left h6 {
  font-weight: 600;
  font-size: clamp(16px, 3vw, 28px);
  color: var(--color);
  padding-bottom: 2rem;
}

.pro_l .contain .left dl dd {
  font-size: clamp(12px, 0.9vw, 16px);
  margin-bottom: 1rem;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  position: relative;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 1rem 1rem;
  line-height: 1.2;
  font-weight: 600;
  transition: all 0.5s ease;
}

.pro_l .contain .left dl dd i {
  font-size: clamp(10px, 0.7vw, 16px);
  margin: 0px 1rem 0 0;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.pro_l .contain .left dl dd.active,
.pro_l .contain .left dl dd:hover {
  background: var(--color);
  color: #fff;
}

.pro_l .contain .left dl dd.active i,
.pro_l .contain .left dl dd:hover i {
  color: #fff;
  opacity: 1;
}

.pro_l .contain .left p {
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  display: flex;
  font-size: clamp(12px, 0.8vw, 18px);
}

.pro_l .contain .left p a {
  font-size: clamp(12px, 0.9vw, 18px);
  color: #666;
  word-break: break-all;
}

.pro_l .contain .left p img {
  width: clamp(12px, 1vw, 22px);
  height: clamp(12px, 1vw, 22px);
  margin: -0px 8px 0 0;
}

.pro_l .right {
  flex: 1;
  margin-left: 4rem;
}

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

}

.pro_l .box ul a {
  display: block;
}

.pro_l .box li {
  height: 100%;
  background: #fff;
  padding: 6%;
  box-sizing: border-box;
  border-radius: 10px;
  border-color: rgba(221, 221, 221, 0.5);
  transition: all .5s ease;
}

.pro_l .box li:hover {
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 20%);
}

.pro_l .box li b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 28rem;
  padding: 10% 0%;
  overflow: hidden;
  box-sizing: border-box;
}

.pro_l .box li b img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

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

.pro_l .box li h5 {
  font-size: clamp(14px, 1.2vw, 20px);
  margin: 2rem 0 0;
  line-height: 1.2;
  font-weight: 600;
  transition: all 0.5s ease;
  -webkit-line-clamp: 2;
  height: 4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.pro_l .box li p {
  font-size: clamp(12px, 0.9vw, 18px);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.more3 {
  margin: 2rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.9vw, 18px);
  border: 1px solid var(--color);
  border-radius: 5rem;
  padding: 0.8rem 0;
  color: var(--color);
  transition: all 0.5s ease;
}

.more3 i {
  transition: all 0.5s ease;
  font-size: clamp(12px, 0.8vw, 18px);
  color: var(--color);
  margin-left: 0.5rem;
}

.pro_l .box ul li:hover .more3 {
  background: var(--color);
  color: #fff;
}

.pro_l .box ul li:hover .more3 i {
  color: #fff;
}

.pro_d .pro_l {
  background: #f2f2f2;
}

.pro_d .pro_l .right {
  background: #fff;
  padding: 3rem;
  box-sizing: border-box;
  border-radius: 10px;
}

.pd_bar1 {
  padding: 2rem 0;
  justify-content: space-between;
}

.pd_bar1 .ll {
  width: 40%;
}

.pd_bar1 .ll .top {
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 10px;
  overflow: hidden;
}

.pd_bar1 .ll .top img {
  max-width: 60%;
  max-height: 90%;
  object-fit: cover;
  border-radius: 1rem;
}

.pd_bar1 .ll .bot {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  justify-content: space-between;
}

.pd_bar1 .ll .btns {
  position: static;
  margin: 0;
  border: none;
  padding: 0;
}

.pd_bar1 .ll .swiper-container {
  width: 90%;
  overflow: hidden;
  padding-right: 1.5rem;
}

.pd_bar1 .ll .swiper-slide {
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, .1);
  height: 66px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pd_bar1 .ll .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: cover;

}

.pd_bar1 .ll .swiper-slide.active {
  border-color: var(--color);
}

.pd_bar1 .rr {
  width: 55%;
}

.pd_bar1 .rr .title2 {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.pd_bar1 .rr .tt p {
  line-height: 1.6;
}

.pd_bar1 .rr .tt2 {
  margin: 2rem 0;
}

.pd_bar1 .rr .tt2 p {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 1.1vw, 14px);

}

.pd_bar1 .rr .tt2 p img {
  width: 1.8rem;
  margin: -2px 5px 0 0;
}

.pd_bar1 .rr .tt2 p a {
  color: var(--color);
  font-weight: 600;
  margin-left: 5px;
}

.pd_bar1 .rr .tt3 {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.pd_bar1 .rr .tt3 p a {
  margin-top: 10px;
  width: max-content;
  display: block;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 300;
  color: #666;
  font-size: clamp(12px, 1vw, 14px);
}

.pd_bar1 .rr .tt4 {
  display: flex;
  align-items: center;
  margin: 3rem 0 0;
  justify-content: space-between;
}

.pd_bar1 .rr .tt4 a {
  width: 48.5%;
}

.pd_bar1 .rr .tt4 p {
  background: var(--color);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(12px, 1vw, 14px);
  justify-content: center;
  transition: all 0.5s ease;
}

.pd_bar1 .rr .tt4 p img {
  width: clamp(16px, 1.2vw, 24px);
  filter: invert(1) brightness(1000);
  margin-right: 0.8rem;
}

.pd_bar1 .rr .tt4 a:last-of-type p {
  background: none;
  border: 1px solid rgba(0, 0, 0, .1);
  color: var(--color2);
}

.pd_bar1 .rr .tt4 a:last-of-type p img {
  filter: none;
}

.pd_bar1 .rr .tt4 p:hover {
  background: var(--color3) !important;
  border-radius: 2rem;
  border-color: transparent !important;
}

.pd_bar1 .rr .tt4 p:hover {
  color: #fff !important;
}

.pd_bar1 .rr .tt4 p:hover img {
  filter: invert(1) brightness(1000) !important;
}

.pd_bar2 {
  padding: 3rem 0;
}

.pd_bar2 h6 {
  display: block;
  background: #efefef;
  padding: 1rem;
  box-sizing: border-box;
  border-left: 12px solid var(--color);
  font-weight: 600;
  color: var(--color);
  position: relative;
  margin-bottom: 2rem;
}

.pd_bar2 h6::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 100%;
  left: -7px;
  bottom: 0px;
  z-index: 1;
  background: #ffffff;
}

.pd_bar2 p {
  background: #f9f9f9;
  padding: 1rem 2.2rem;
  box-sizing: border-box;
  font-weight: 300;
  line-height: 1.6;
}

.pd_bar2:nth-of-type(2n+1) {
  padding: 0;
}

.pd_bar2b p {
  padding: 0 2.2rem;
  background: none !important;
}

.pro_d2 {
  background: #f5f5f5;
}

.pro_d2 .swiper-container {
  overflow: hidden;
}

.pro_d2 .swiper-slide {
  border-radius: 10px;
  background: #fff;
}

.pro_d2 .box li h5 {
  margin: 0;
}

.pro_d2 .box li b {
  margin: 5% 0;
}

.pro_d2 .more3 i {
  background: var(--color);
  color: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
}

.pro_d2 .box li:hover {
  box-shadow: none;
}

.pro_d2 .box li:hover .more3 {
  background: var(--color);
  color: #fff;
}

.pro_d2 .box li:hover .more3 i {
  color: var(--color);
  background: #fff;
}

.pro_d2 .bottom {
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: scale(0.8);
}

.pro_d2 .bottom .btns {
  position: static;
  margin: 0 0.6rem;
  transform: none;
}

.pro_d2 .bottom .swiper-pagination {
  position: static;
  margin: 0;
  width: auto !important;
  display: flex;
}

.pro_d2 .bottom .swiper-pagination span {
  background: none;
  background: #fff;
  border-radius: 50%;
  width: clamp(24px, 2vw, 40px) !important;
  height: clamp(24px, 2vw, 40px) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.pro_d2 .bottom .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
  color: #fff;
}

.bans2 {
  margin: 0;
  height: 45vh;
  position: relative;
  background: #000;
}

.bans2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.bans2 .txt {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}

.bans2 .txt h3 {
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 600;
}

.sNav2 {
  background: #f2f2f2;
}

.about {
  position: relative;
  z-index: 2;
}

.about .bar1 .contain {
  justify-content: space-between;
}

.about .bar1 .ll {
  width: 56%;
}

.about .bar1 .ll p {
  line-height: 1.5;
  font-size: clamp(12px, 1.1vw, 20px);
}

.about .bar1 ul {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
  justify-content: space-between;
}

.about .bar1 ul li {
  width: 48%;
  background: var(--color);
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-align: center;
}

.about .bar1 ul li img {
  filter: invert(1) brightness(1000);
  height: 5rem;
  margin: auto;
}

.about .bar1 ul li h5 {
  margin: 2rem 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about .bar1 ul li h5 strong {
  color: #fff;
  font-size: clamp(18px, 4vw, 50px);
  line-height: 1;
  font-weight: 600;
}

.about .bar1 ul li h5 span {
  color: #fff;
  font-size: clamp(12px, 1vw, 16px);
  margin-left: 1rem;
}

.about .bar1 ul li h6 {
  color: #fff;
}

.history {
  position: relative;
  z-index: 2;
}

.history .contains {
  box-sizing: border-box;
  position: relative;

}

.history .contains::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 1px;
  width: 100%;
  background: #ccc;
}

.history .swiper-container {
  margin: auto;
  overflow: hidden;
  padding-bottom: 40px;
}

.history .swiper-slide {
  background: #f2f4f5;
  border-radius: 10px;
  height: initial;
  transition: all 0.5s ease;
  position: relative;
  cursor: default;
}

.history .swiper-slide::after {
  content: '';
  position: absolute;
  transition: all 0.5s ease;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #f2f4f5;
}

.history .swiper-slide::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -34px;
  width: 8px;
  height: 8px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  z-index: 9;
  transition: all 0.5s ease;
}

.history .swiper-slide b {
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.history .swiper-slide b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.history .swiper-slide:hover b img {
  transform: scale(1.08);
}

.history .swiper-slide .txt {
  padding: 2.5rem 2.5rem 8rem;
  box-sizing: border-box;
}

.history .swiper-slide h5 {
  font-size: clamp(20px, 1.4vw, 30px);
  color: var(--color);
  width: 100%;
  font-weight: 600;
  position: absolute;
  left: 0;
  bottom: 2rem;
  z-index: 6;
  text-align: center;
  transition: all 0.5s ease;
}

.history .swiper-slide p {
  margin: 0;
  transition: all 0.5s ease;
}

.history .swiper-slide:hover {
  background: var(--color);
}

.history .swiper-slide:hover .tt p {
  color: #fff;
}

.history .swiper-slide:hover h5 {
  color: var(--color3);
}

.history .swiper-slide:hover::after {
  border-top: 12px solid var(--color);
}

.history .swiper-slide:hover:before {
  border-color: var(--color3);
  transform: scale(1.2) translateX(-50%);
}

.btns::after {
  display: none;
}

.btns {
  border: 1px solid rgba(2, 71, 174, .8);
  border-radius: 50%;
  width: clamp(24px, 2vw, 40px) !important;
  height: clamp(24px, 2vw, 40px) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.btns::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid var(--color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: all 0.5s ease;
}

.btns.swiper-button-prev::before {
  border-left: none;
  border-right: 5px solid var(--color);
}

.honor {
  background: #f6f6f6;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.honor .top .title2 {
  margin: 0;
}

.honor .top {
  margin-bottom: 3rem;
  justify-content: space-between;
}

.honor .btnsBox {
  position: relative;
  display: flex;
  align-items: center;
}

.honor .btns {
  margin: 0 0 0 1rem;
  position: static;
}

.honor .swiper-slide {
  width: 100%;
  overflow: hidden;
}

.honor .swiper-slide img {
  width: 100%;
  transition: all 0.8s ease;
}

.honor .swiper-slide:hover img {
  transform: scale(1.06);
}

.honor .swiper-slide p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: #fff;
  padding: 1rem;
  box-sizing: border-box;
  background: var(--color3);
  text-align: center;
}

.about2 {
  position: relative;
  z-index: 2;
}

.about2 dl {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about2 dl dd {
  padding: 2rem;
  box-sizing: border-box;
  background: #f4f4f4;
  border-radius: 10px;
}

.about2 dl dd .imgs {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.about2 dl dd .imgs img {
  width: 100%;
  height: clamp(200px, 26vw, 400px);
  object-fit: cover;
  transition: all 0.5s ease;
}

.about2 dl dd .btns {
  background: rgba(255, 255, 255, .6);
  border: none;
  transform: scale(0.9);
}

.about2 dl dd h6 {
  padding: 1.5rem 0 0;
  text-align: center;
  box-sizing: border-box;
  font-size: clamp(12px, 1vw, 16px);
  transition: all 0.5s ease;
}

.about2 dl dd:hover h6 {
  color: var(--color);
}

.service {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service .title2 {
  width: 100%;
}

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

.service .contain .ll {
  width: 50%;
}

.service .contain .ll li {
  display: flex;
  margin-top: 2.5rem;
}

.service .contain .ll li img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #eee;
  padding: 1rem;
}

.service .contain .ll li .tt {
  margin: 0 0 0 1.5rem;
  flex: 1;
  color: #888;
}

.service .contain .ll li .tt strong {
  margin-bottom: 0.5rem;
  display: block;
  font-size: clamp(14px, 1.6vw, 20px);
  color: var(--color2);
}

.service .contain .rr {
  width: 46%;
  overflow: hidden;
  border-radius: 10px;
}

.service .contain .rr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.service .contain:hover .rr img {
  transform: scale(1.06);
}

.service2 {
  background: #f2f3f8;
}

.service2 ul {
  display: flex;
  justify-content: space-between;
}

.service2 ul li {
  width: 32.3%;
  background: #fff;
  border-radius: 10px;
  padding: 6% 4rem;
  box-sizing: border-box;
}

.service2 ul li b {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color);
  padding: 1rem;
}

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

.service2 ul li .tt {
  margin: 0;
  line-height: 1.6;
  color: #888;
}

.service2 ul li .tt strong {
  margin: 1.5rem 0 2rem;
  display: block;
  font-size: clamp(14px, 1.6vw, 22px);
  color: var(--color2);
}

.service3 ul {
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.service3 ul li b {
  display: block;
  margin: auto;
  background: var(--color);
  width: 5.6rem;
  border-radius: 50%;
  padding: 1.4rem;
  box-sizing: border-box;
}

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

.service3 .bar2 {
  box-shadow: 0 5px 35px 0px rgb(104 113 123 / 15%);
  padding: 3% 4% 3.5%;
  box-sizing: border-box;
  margin: 3rem auto 0;
  border-radius: 10px;
}

.service3 .bar2 .title2 h3 p {
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color2);
  font-size: clamp(14px, 1.6vw, 20px);
}

.message {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
}

.message p {
  width: 49.3%;
  line-height: 46px;
  padding: 0 20px;
  background: #f2f2f2;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: .5s;
  margin: 0;
  border-radius: 4px;
}

.message .p1 {
  width: 100%;
}

.message .inputs {
  width: 100%;
  background: none;
  box-shadow: none;
  border: none;
}

.message textarea {
  padding: 20px 0;
}

.message .bots {
  width: 100%;
}

.message .submit {
  margin: 1rem auto 0;
  width: 100%;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}

.message .submit button {
  margin: auto;
  background: none;
  text-align: center;
  width: 100%;
  padding: 1.1rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s ease;
}

.message .submit button:hover {
  background: var(--color);
}

.faq ul {
  width: 100%;
}

.faq ul li {
  width: 100%;
  margin: 1rem 0 0;
  border: 1px solid rgba(246, 247, 248, 1);
  transition: all ease .6s;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}

.faq ul li .tt1 {
  box-sizing: border-box;
  padding: 1.5rem 2.5rem;
  background: rgba(246, 247, 248, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all ease .6s;
}

.faq ul li .tt1 .ll {
  display: flex;
  align-items: center;
}

.faq ul li .tt1 h6 {
  flex: 1;
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--color2);
  transition: all ease .6s;
}

.faq ul li .tt1 .ll span {
  width: 2rem;
  height: 2rem;
  background: var(--color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.8rem;
  transition: all ease .6s;
}

.faq ul li i {
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;

}

.faq ul li .tt2 {
  display: none;
  padding: 2rem 5.5rem;
  box-sizing: border-box;
}

.faq ul li:hover .tt1,
.faq ul li.active .tt1 {
  background: var(--color);
}

.faq ul li:hover h6,
.faq ul li.active h6 {
  color: #fff;
}

.faq ul li:hover .ll span,
.faq ul li.active .ll span {
  background: #fff;
  color: var(--color);
}

.faq ul li:hover i {
  background: #fff;
  color: var(--color);
  transition: all ease .6s;
}

.faq ul li.active i {
  transition: all ease .5s;
  background: #fff;
  color: var(--color);
  transform: rotate(-180deg);
}

.news {
  position: relative;
}

.news .contain ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 3rem 0;
}

.news .contain ul a:first-of-type li {
  padding-top: 0;
}

.news .contain ul li b {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 30vh;
  width: 28%;
}

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

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

.news .contain ul li .txt {
  width: 68%;
}

.news .contain ul li h6 {
  color: #666
}

.news .contain ul li h3 {
  margin: 1rem 0 1.5rem;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 600;
}

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

.news .contain ul li p {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sNav_newsd {
  background: #f7f9fa;
}

.newsd .back a {
  display: flex;
  width: max-content;
  color: var(--color);
  margin-bottom: 2rem;
  font-weight: 600;
  transition: all 0.5s ease;
}

.newsd .back img {
  width: 2rem;
  margin-right: 0.5rem;
}

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

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

.newsd .bar0 .data {
  display: flex;
  align-items: center;
  margin-right: 3rem;
  color: #999;
  font-size: clamp(10px, 0.9vw, 14px);
}

.newsd .bar0 .data img {
  width: 2.3rem;
  margin-right: 0.2rem;
  opacity: 0.5;
}

.newsd .bar0 .follow b img:first-of-type {
  height: clamp(18px, 1.8vw, 25px);
}

.newsd .tt {
  margin: 4rem auto;
}

.newsd .tt p:first-of-type {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  box-sizing: border-box;
}

.newsd .tt p img {
  width: 100%;
  border-radius: 8px;
  margin: 2rem auto;
}

.newsd .tt p {
  margin: 1.5rem 0;
  line-height: 1.6;
  color: #888;
}

.newsd .tt p strong {
  display: block;
  margin: 3rem 0 0;
  font-size: clamp(14px, 1.6vw, 16px);
  background-color: #f0f0f0;
  border-top: 5px solid var(--color);
  padding: 1.2rem 1.6rem;
}

.newsd .tt2 p {
  color: var(--color);
  font-weight: 600;
  margin: 0;
  padding: 1.6rem 0;
  border-top: 1px dotted rgba(0, 0, 0, .1);
}

.newsd .tt2 p a {
  margin-left: 1rem;
  color: #666;
  transition: all 0.5s ease;
}

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

.contact {
  border-top: 1px rgba(0, 0, 0, .9);
}

.contact .bar1 {
  box-shadow: 0 5px 35px 0px rgb(104 113 123 / 25%);
  border-radius: 10px;
  padding: 4rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.contact .bar1 .ll {
  width: 48%;
  padding-right: 5%;
  box-sizing: border-box;
  border-right: 1px solid rgba(0, 0, 0, .1);
}

.contact .bar1 ul li {
  display: flex;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  align-items: center;
}

.contact .bar1 ul li img {
  width: 3rem;
  height: 3rem;
}

.contact .bar1 ul li h6 {
  flex: 1;
  margin: 0 0 0 4rem;
  color: var(--color2);
  transition: all 0.5s ease;
  font-weight: 600;
}

.contact .bar1 ul li a {
  margin: 4px 0 0;
  display: block;
  font-weight: 600;
  color: #539de4;
  transition: all 0.5s ease;
}

.contact .bar1 ul li a:hover {
  color: var(--color);
}

.contact .bar1 .rr {
  width: 48%;
}

.message2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
}

.message2 p {
  width: 48.6%;
  border: 1px solid rgba(0, 0, 0, .1);
  box-sizing: border-box;
  transition: .5s;
  margin: 0;
  border-radius: 4px;
}

.message2 .p1 {
  width: 100%;
}

.message2 .inputs {
  padding: 1.5rem;
  box-sizing: border-box;
  width: 100%;
  background: none;
  box-shadow: none;
  border: none;
}

.message2 textarea {
  height: 14rem;
}

.message2 .submit {
  margin: 2rem 0 0;
  padding: 0;
}

.message2 .submit button {
  background: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-weight: bold;
  padding: 1.1rem 3.5rem;
  transition: all 0.5s ease;
}

.message2 .submit:hover button {
  color: #fff;
}


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

.big_box .slide-box {
  width: 80%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
}

.big_box .big_imgss .swiper-slide {
  max-height: 90vh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.big_box .big_imgss .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  padding: 10%;
  box-sizing: border-box;

}

.big_box .btns {
  margin: -1rem 1rem !important;
}

.big_box .btns {
  border-color: #fff;
  opacity: 0.5;
}

.big_box .btns::before {
  border-left-color: #fff;
  border-right-color: #fff;
}

.big_box .btns:hover {
  opacity: 1;
}

.big_box .swiper-pagination {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9;
  padding: 1.5rem;
  color: #fff;
  text-align: left;
  letter-spacing: -1px;
  width: auto;
  height: auto;
}

.big_box .swiper-pagination span {
  color: #fff;
}

.big_box .righttop {
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 9;
  padding: 10px;
  background: var(--color);
}

.big_box .righttop div {
  float: right;
}

.big_box .righttop img {
  margin: 0;
  height: 1.6rem;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  filter: invert(1) brightness(10000);
}

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

.pages {
  width: 100%;
}

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

.pages ul li {
  font-size: clamp(11px, 0.9vw, 16px);
  margin: 0 0.3rem;
  width: 2.8rem;
  height: 2.8rem;
  box-sizing: border-box;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
  background: #fff;
  font-weight: 300;
  font-size: clamp(12px, 0.8vw, 14px);
  position: relative;
}

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

.pages ul li:hover {
  color: var(--color);
  text-decoration: underline;
}
.pages ul li a,.pages ul li span{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    font-size: clamp(11px, 0.9vw, 16px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pages ul li span{
    color: #fff;
}
.pages ul li.disabled span{
    color: var(--color);
}
.word {
  display: block;
  overflow: hidden;
  color: inherit;
  line-height: 1;
}

.wave-text .char {
  display: inline-block;
  text-shadow: rgba(0, 0, 0, 0.6) 0px 3rem 0px;
  transition: 0.5s;
}

.wave-text:hover .char {
  transform: translateY(-3rem);
}

.w2 {
  display: block;
  overflow: hidden;
  color: inherit;
  line-height: 1;
}

.s_wave .ws {
  display: inline-block;
  text-shadow: rgba(0, 0, 0, 0.6) 0px 3rem 0px;
  transition: 0.5s;
}

.s_wave:hover .ws {
  transform: translateY(-3rem);
}