@charset "utf-8";
/* CSS Document */
@font-face {
  src: url(../fonts/SourceHanSansCN-Regular.otf);
  font-family: "myfont";
}
@font-face {
  src: url(../fonts/impact.ttf);
  font-family: "num";
}
@font-face {
  src: url(../fonts/Barlow-Regular.ttf);
  font-family: "en";
}
@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%;
  color: #666;
  list-style: none;
  font-family: "myfont";
}
p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 1rem 0;
  color: rgba(95, 105, 115, 1);
}
img {
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
  color: #666;
}
.w_all {
  width: 94%;
  margin: auto;
}
.w_all2 {
  width: 80%;
  margin: auto;
}
/*index*/
html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
}
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0;
  z-index: 9999;
  transition: all 0.5s ease;
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}
header.active {
  background: #fff;
}
.nav_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 50px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  position: relative;
  z-index: 999;
}
.logo img {
  display: block;
  height: 100%;
}
.logo .img2 {
  display: none;
}
header.active .logo .img1 {
  display: none;
}
header.active .logo .img2 {
  display: block;
}
.l_logo{
    display: flex;
    align-items: center;
}
.l_logo p{
    color: rgba(255,0,0,1);
    font-size: 2rem;
    padding: 0 0 0 2rem;
    margin-left:2rem;
    border-left: 1px solid rgba(255,0,0,1);
}
.navbox {
  display: flex;
  align-items: center;
}
.nav_box ul {
  display: flex;
}
.nav_box ul li {
  position: relative;
  padding: 0px 1.8vw;
}
.nav_box ul li h3 {
  font-size: 1.6rem;
  line-height: 90px;
  position: relative;
  color: #fff;
  font-weight: normal;
  cursor: pointer;
  transition: all ease 0.3s;
}
header.active .nav_box ul li h3 {
  color: #333;
}
.nav_box ul li:hover h3 {
  color: rgba(255,0,0,1) !important;
}

.nav_box ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}
header.active .nav_box ul li::before {
  background: rgba(0, 0, 0, 0.4);
}
.n_right {
  margin:0 0 0 1.2vw;
  position: relative;
  z-index: 999;
}
.n_right i {
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
header.active .n_right i {
  color: #333;
}
.n_right .search {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 999999;
  width: 100%;
  height: 100vh;
}
.search .sebox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 5rem;
  text-align: center;
}
.search .bb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search img {
  margin: auto;
  height: 4rem;
}
.search p {
  font-size: 1.5rem;
  margin: 1rem 0 3rem;
  opacity: 0.8;
}
.n_right input {
  background: none;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px 0 0 10px;
  padding: 10px 20px;
  width: 100%;
  background: #eee;
  color: #333;
  font-size: 1.6rem;
}
.n_right ::placeholder {
  color: #666;
}
.search button {
  font-size: 1.6rem;
  background: #ff0000;
  color: #fff;
  height: 44px;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  padding: 0px 4rem;
  width: max-content;
}
.search .close img {
  position: absolute;
  right: -1rem;
  top: -1rem;
  height: 3rem;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}
.language {
  padding-left: 2vw;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.4rem;
  z-index: 99;
  transition: all 0.3s linear;
}
.language:hover{
    color: rgba(255,0,0,1);
}
.language::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background:  rgba(0, 0, 0, 0.4);
  display: none;
}
.language i {
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  margin-right: 8px;
}
header.active .language i {
  color: #333;
}
.s_menu {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 90px;
  text-align: center;
  display: none;
  z-index: 999;
  background: #fff;
  padding: 1rem 3rem;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  width: max-content;
}
.s_menu dl dd {
  padding: 6px 0;
  font-size: 1.5rem;
  background: #fff;
  transition: all 0.3s linear;
  cursor: pointer;
}

.s_menu dl dd:hover {
  color: #ff0000;
}
.sp_menu {
  position: fixed;
  width: 100%;
}
.sp_menu dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sp_menu dl a{
    width: 20%;
    padding:1.5%;
    box-sizing: border-box;
    text-align: center;
}
.sp_menu dl dd img{
    width: 5rem;
    margin: 0 auto 1rem;
}
.navBtn {
  position: relative;
  z-index: 99999;
  cursor: pointer;
  display: none;
  margin-left: 2rem;
}
.navBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  margin: 5px auto;
}
.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: -60%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner .swiper-slide {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner b {
  width: 100%;
  height: 100%;
  display: block;
  transition: all ease 5.5s;
  transform: scale(1);
}

.banner .txt {
  position: absolute;
  left: 50%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.banner .txt h2 {
  font-size: 3.8rem;
  color: rgba(26, 55, 96, 1);
  font-weight: bold;
  transition: all ease 0.8s 0.3s;
  margin-bottom: 2rem;
  transform: translateY(30px);
  opacity: 0;
  width: 50%;
  line-height: 1.3;
}
.banner .txt p {
  width: 40%;
  font-size: 1.4rem;
  line-height: 1.6;
  transition: all ease 0.8s 0.8s;
  transform: translateY(30px);
  opacity: 0;
}
.banner .swiper-slide-active .txt h2 {
  transform: translateY(0px);
  opacity: 1;
}
.banner .swiper-slide-active .txt p {
  transform: translateY(0px);
  opacity: 1;
}
.banner .more{
    margin: 5rem 0 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all ease 0.8s 1.3s;
}
.banner .swiper-slide-active .more {
  transform: translateY(0px);
  opacity: 1;
}
.btn {
  position: absolute;
  right: 3rem;
  bottom: 3%;
  z-index: 99;
}
.btn .ll {
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s linear;
  background: rgba(255,0,0,0.5);
  margin: 1rem 0;
}
.btn .ll:hover {
  background: rgba(255,0,0,1);  
}
.btn i {
  display: block;
  font-size: 2rem;
  color: #fff;
  display: block;
}
.btn .llr i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.btn .ll:hover i {
  color: #fff;
}
.banner .rr {
  position: absolute;
  padding: 0 4.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.banner .swiper-pagination {
  display: block;
  position: static !important;
}
.banner .swiper-pagination span {
  margin: 8px 0 !important;
  background: #fff;
  opacity: 0.6 !important;
  width: 10px !important;
  height: 10px !important;
  transition: all ease 0.3s;
  display: block;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active {
  height: 30px !important;
  border-radius: 15px;
  opacity: 1 !important;
}
.more {
  width: max-content;
  margin: 5rem auto 0;
  padding: 14px 30px;
  background: rgba(255,0,0,0.5);
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #dc000c;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.more:hover::before {
  transform: none;
  transform-origin: 0% 50%;
}
.more span {
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}
.more i {
  color: #fff;
  margin-left: 15px;
  font-size: 2rem;
  display: block;
  position: relative;
  z-index: 2;
  transform: rotate(-180deg);
}
.more:hover i {
  animation: shuffle 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes shuffle {
  50% {
    transform: translateX(100%) rotate(-180deg);
  }

  50.01% {
    transform: translateX(-100%) rotate(-180deg);
  }
}
.index_bars {
  padding: 5% 0;
  position: relative;
}
.title {
  margin-bottom: 4%;
  text-align: center;
}
.title h3 {
  font-size: 4rem;
  color: rgba(26, 55, 96, 1);
  line-height: 1.5;
}
.title h6 {
  color: rgba(179, 179, 179, 1);
  line-height: 1;
  letter-spacing: 0px;
  font-size: 1.8rem;
  font-family: "en";
}
.title .lines {
  display: flex;
  justify-content: center;
  margin: 1rem 0 2rem;
}
.index_pro .btn {
  position: static;
}
.index_pro .contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_pro .box {
  width: 90%;
}
.index_pro .swiper-slide {
  border: 1px solid #eaeaea;
  border-radius: 2rem;
  padding:2rem 2px 0;
  position: relative;
  box-sizing: border-box;
}
.index_pro b {
  display: block;
  width: 100%;
  overflow: hidden;
}
.index_pro b img {
  width: 100%;
}
.imgScale img {
  width: 100%;
  display: block;
  transition: all ease 0.3s;
  overflow: hidden;
}
.imgScale:hover img {
  transform: scale(0.9);
}
.imgScale2 img {
  width: 100%;
  display: block;
  transition: all ease 0.3s;
}
.imgScale2:hover img {
  transform: scale(1.08);
}
.index_pro .tt {
  padding: 1rem 2rem;
  box-sizing: border-box;
}
.index_pro .tt h4 {
  color: #1a3760;
  font-size: 2rem;
  line-height: 1.2;
  margin: 1.5rem 0;
  transition: all ease 0.5s;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: center;
}
.index_pro .swiper-slide:hover h4 {
  color: #ff0000;
}
.index_pro .tt p {
  color: #5f6973;
  line-height: 1.5;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: center;
  font-size: 1.3rem;
}
.index_pro .bot {
  display: flex;
  align-items: center;
  border-top: 1px solid #eaeaea;
  padding: 0.8rem 0;
  width: 90%;
  margin: auto;
}
.index_pro .bot p {
  display: flex;
  align-items: center;
  color: #1a3760;
  margin: 0 2rem 0 0;
  font-size: 1.3rem;
}
.index_pro .bot p img {
  width: 1.6rem;
  margin-right: 5px;
  margin-top: -2px;
}
.index_about .title p {
  width: 60%;
  margin: 3rem auto;
  color: #1a1a1a;
  font-size: 1.6rem;
}
.index_about dl {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.index_about dl dd {
  font-size: 2rem;
  color: #ff0000;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  width: 20%;
}
.index_about dl dd strong {
  font-size: 6rem;
  color: #ff0000;
  font-family: "en";
  margin-right: 6px;
}
.index_about dl dd span {
  display: block;
  font-size: 1.8rem;
  font-style: normal;
  color: #333;
  margin-top: 2rem;
  font-weight: normal;
}
.index_pinzhi ul {
  display: flex;
  justify-content: space-between;
}
.index_pinzhi ul a {
  width: 49.5%;
  display: block;
}
.index_pinzhi ul li b {
  display: block;
  max-height: 45rem;
  overflow: hidden;
  border-radius: 2rem;
}
.index_pinzhi ul li b img {
  width: 100%; 
  border-radius: 2rem;
}
.index_pinzhi ul li h4 {
  color: #1a1a1a;
  font-size: 2.6rem;
  margin: 2.5rem 0 0;
  text-align: center;
  transition: all 0.3s linear;
}
.index_pinzhi ul li:hover h4 {
  color: #ff0000;
}
.index_news .top {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.index_news .top .txt {
  width: 48%;
  padding: 3% 0;
}
.index_news .top .imgs {
  width: 48%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 2rem;
}
.index_news .top .imgs img {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.index_news .top .imgs:hover img {
  transform: scale(1.06) translate(-50%, -50%);
}
.index_news ul {
  display: flex;
  padding-bottom: 0;
}
.index_news ul li {
  width: 31.3%;
  transition: all 0.6s linear;
  margin-right: 3%;
}
.index_news ul li:nth-of-type(3n) {
    margin-right: 0;
}
.index_news .txt {
  transition: all 0.6s linear;
  width: 50%;
}
.index_news ul li .txt {
  width: 100%;
}
.index_news h5 {
  font-family: "num";
  font-size: 1.4rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  color: rgba(189, 189, 189, 1);
  transition: all 0.6s linear;
}
.index_news h5 strong {
  font-family: "num";
  font-size: 2.8rem;
  display: block;
  color: rgba(138, 138, 138, 1);
  margin-bottom: 1rem;
  transition: all 0.6s linear;
}
.index_news h4 {
  color: #333;
  font-size: 2rem;
  font-family: "title";
  transition: all 0.6s linear;
  margin-bottom: 2rem;
}
.index_news .txt p {
  font-size: 1.4rem;
  color: rgba(159, 159, 159, 1);
}
.index_news ul li h4 {
  font-size: 1.7rem;
  font-weight: normal;
}
.index_news .txt:hover {
  transform: translateY(-5px);
}
.index_news .txt:hover h5,
.index_news .txt:hover h5 strong,
.index_news .txt:hover h4 {
  color: #ff0000;
}
.more2 {
  margin: 3rem 0 0;
  border: 1px solid rgba(220, 220, 220, 1);
  color: rgba(153, 153, 153, 1);
  font-size: 1.4rem;
  padding: 10px 4rem;
  border-radius: 2px;
  width: max-content;
  transition: all 0.6s linear;
}
.index_news .txt:hover .more2 {
  border-color: #ff0000;
  color: #ff0000;
}
.footer {
  position: relative;
  z-index: 9;
  background: rgba(53, 63, 76, 1);
  color: #fff;
}
.footer .contain {
  display: flex;
  padding: 4% 0;
  justify-content: space-between;
}
.footer .ll {
  width: 65%;
}
.footer .ll .top {
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .ll .logo2 img {
  height: 4.5rem;
}
.footer dl {
  display: flex;
}
.footer dl dd {
  margin-left: 1rem;
  width: 2.4rem;
}
.footer dl dd img {
  width: 100%;
}
.footer .ll p {
  color: #fff;
  opacity: 1;
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
}
.footer ul li {
  margin-left: 1rem;
  margin-top: 1rem;
  color: #fff;
  display: block;
  padding: 8px 4rem;
  background: none;
  border-radius: 0px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 1.5rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer ul li::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255,0,0,0.5);
  z-index: -1;
  transition: all 0.3s ease;
}
.footer ul li:hover::before {
  height: 100%;
}
.footer ul li:hover {
    color: #fff;
}
.footer .rr {
  width: 24%;
  padding-left: 5%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.footer h3 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 2rem;
}
.footer .rr p {
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  margin: 1rem 0;
  line-height: 1.2;
  opacity: 0.6;
}
.footer .rr p i {
  margin-right: 1rem;
  color: #fff;
  font-size: 2rem;
}
.footer .ewm {
  position: relative;
  margin-top: 3rem;
  display: flex;
}
.footer .ewm .ew {
  height: 10rem;
  margin-right: 2rem;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}
.footer .ew img {
  height: 100%;
  display: block;
  margin-bottom: 8px;
  border-radius: 1rem;
}
.footer .copyright {
  background: rgba(0, 0, 0, 0.2);

  padding: 1rem 0;
}
.footer .copyright .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
}
.footer .copyright a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s linear;
}
.footer .copyright a:hover {
  color: #fff;
}
.o_ban {
  height: 30vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.o_ban img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o_ban .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9;
}
.o_ban .txt h2 {
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 1rem;
}
.o_ban .txt p {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
}
main {
  margin-top: 30vw;
  position: relative;
  z-index: 9;
  background: rgba(244, 244, 244, 1);
}
.all_nav {
  background: rgba(242, 242, 242, 1);
  position: relative;
  z-index: 999;
  width: 100%;
  padding: 1.5rem 0;
}
.all_nav ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all_nav ul .ll {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all_nav ul li {
  color: #333;
  font-size: 1.6rem;
  float: left;
  background: #fff;
  padding: 10px 35px;
  border-radius: 8px;
  margin-right: 3rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.all_nav ul li.active,
.all_nav ul li:hover {
  background: rgba(255,0,0,0.5);
  color: #fff;
}
.all_nav ul .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
  font-size: 1.4rem;
  color: #888;
}
.all_nav ul .right img {
  width: 1.8rem;
  margin-right: 5px;
  margin-top: -2px;
}
.all_nav ul .right span {
  font-size: 1.4rem;
  margin: 0 5px;
  color: #333;
}
.all_nav ul .right a {
  font-size: 1.4rem;
  margin: 0 5px;
  color: #888;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
}
.all_nav ul .right a:hover {
  color: #ff0000;
}
.title2 {
  margin-bottom: 3rem;
}
.title2 h1 {
  font-size: 3.4rem;
  color: #1a3760;
  text-transform: uppercase;
}
.title2 h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: rgb(6, 49, 129);
  margin-top: 0.8rem;
}
.about {
  position: relative;
  background: rgba(249, 249, 249, 1);
}
.about .title2 {
  padding-left: 3%;
  box-sizing: border-box;
}
.about .txt {
  background: #fff;
  padding: 2% 3%;
  box-sizing: border-box;
}
.about p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(102, 102, 102, 1);
}
.about .right p:first-of-type {
  color: #333;
}
.about .index_about {
  padding: 0 0 6%;
  background: #fff url(../images/a_bg.jpg) no-repeat center bottom/cover;
}
.about2 .title2 {
  text-align: center;
}
.about2 .contain {
  position: relative;
}
.about2 .swiper-container {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 3;
}
.about2 .swiper-slide {
  text-align: center;
  font-size: 1.7rem;
  display: block;
  color: #333;
}
.about2 b {
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 0 0 2rem;
   border-radius: 2rem;
}
.about2 b img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
 
}
.about2 .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 6;
}
.about2 .btn {
  width: 100%;
  right: inherit;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about2 .btn .ll {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about2 .btn .lll {
  left: initial;
  right: 0;
}
.about2 .swiper-pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  position: static;
}
.about2 .swiper-pagination span {
  margin: 3rem 6px 0;
}
.about2 .swiper-pagination span.swiper-pagination-bullet-active {
  background: #ff0000;
}
.areas .btn{
    top: 32%;
}
.news {
  background: #fff;
}
.news .contain ul{
    display: flex;
    flex-wrap: wrap;
}
.news .contain ul li {
  width: 31.3%;
  margin-right: 3%;
  margin-bottom: 3%;
  background: rgba(242, 242, 242, 1);
  transition: all 0.5s ease;
  border-radius: 2rem;
  overflow: hidden;
}
.news .contain ul li:nth-of-type(3n){
    margin-right: 0;
}
.news .contain ul li:hover {
  box-shadow: 0 23px 90px -5px rgb(29 56 72 / 17%);
  background: #fff;
}
.news .contain ul li b {
  display: block;
  overflow: hidden;
}
.news .contain ul li b img {
  width: 100%;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.news .contain ul li:hover b img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.news .contain ul li .txt {
    padding: 3rem;
    box-sizing: border-box;
}
.news .contain ul li h3 {
  color: #333;
  font-size: 2rem;
  transition: all 0.5s ease;
}
.news .contain ul li:hover h3 {
  color: #ff0000;
}
.news .contain ul li p {
  color: #333;
  font-size: 1.4rem;
  opacity: 0.7;
  overflow: hidden;
}
.news .contain h6 {
  font-size: 1.4rem;
  text-align: center;
  transition: all 0.5s ease;
  width: max-content;
  padding: 1rem 1.5rem;
  letter-spacing: 1px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255,0,0,0.5);
  border-radius: 2rem 0 2rem 0;
}
.news .contain h6 strong {
  font-size: 3.6rem;
  color: #fff;
  line-height: 1.2;
  transition: all 0.5s ease;
  font-family: "num";
  display: block;
}
.news .contain ul li:hover h6{
  background: #ff0000;
}
.pages {
  text-align: center;
  padding-top: 2rem;
}
.pages ul{
    display: flex;
    justify-content: center;
}
.pages ul li{
    margin: 0 0.3rem;
}
.pages a,.pages span {
  margin: 3px;
  background: #eee;
  font-size: 1.3rem;
  color: #333;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.5s ease;
  border: 1px rgba(0, 0, 0, 0.4) solid;
}
.pages li.active span,
.pages a:hover {
  background: #ff0000;
  color: #fff;
  border-color: transparent;
}
.news_d {
  background: #fff;
  overflow: hidden;
}
.news_d .contain {
  display: flex;
  justify-content: space-between;
}
.news_d .box {
  width: 70%;
}
.news_d .top {
  text-align: center;
  margin-bottom: 3rem;
}
.news_d .top h6 {
  color: rgba(153, 153, 153, 1);
  font-weight: normal;
  font-size: 1.4rem;
}
.news_d .top h3 {
  font-size: 3rem;
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid rgba(221, 221, 221, 1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.news_d .cc p {
  font-size: 1.6rem;
  color: rgba(102, 102, 102, 0.8);
  margin: 2rem 0;
}
.news_d .cc p:first-of-type {
  background: rgba(242, 242, 242, 1);
  padding: 1rem 2rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.6;
}
.news_d .cc img {
  margin: 2rem 0;
  width: 100%;
}
.news_d .cr {
  width: 26%;
  border: 1px solid rgba(229, 229, 229, 1);
  padding: 3rem;
  box-sizing: border-box;
}
.news_d .cr h6 {
  font-size: 1.8rem;
  color: rgba(68, 68, 68, 1);
}
.news_d ul li {
  width: 100%;
  margin: 1rem 0 2rem;
}
.news_d ul li b {
  width: 100%;
  overflow: hidden;
  display: block;
}
.news_d ul li b img {
  width: 100%;
  display: block;
}
.news_d ul li h3 {
  font-size: 1.6rem;
  overflow: inherit;
  white-space: inherit;
  color: #333;
  text-overflow: inherit;
  margin: 1.2rem 0 0.2rem;
  transition: all 0.5s ease;
}
.news_d ul li:hover h3 {
  color: #ff0000;
}
.news_d ul li h5 {
  font-weight: normal;
  font-size: 1.4rem;
}
.areas {
  background: #fff;
}
.areas2 .title2 {
  text-align: center;
}
.all_nav2 {
  background: #fff;
}
.title3 h3 {
  font-family: "num";
  color: rgba(32, 32, 32, 1);
  font-size: 4.8rem;
}
.title3 h2 {
  font-size: 1.6rem;
  color: #333;
  margin-top: 0.5rem;
}
.contact h4 {
  color: #333;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: rgba(32, 32, 32, 1);
}
.contact ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact ul li {
  width: 31.3%;
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  color: rgba(3, 3, 3, 0.7);
  font-weight: bold;
}
.contact h6 {
  font-size: 2.4rem;
  color: rgba(124, 124, 124, 0.7);
  font-family: "num";
  font-weight: normal;
  margin-bottom: 1rem;
}
.contact ul li p {
  font-size: 1.6rem;
  color: #333;
  margin: 3px 0;
  transition: all 0.5s ease;
  line-height: 1.4;
}
.contact ul li p:hover {
  color: #ff0000;
  text-decoration: underline;
}
.message {
  background: #fff;
}
.message .title2 {
  text-align: center;
}
.message .online .inps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.message .online .inps p.pp1 {
  width: 32%;
}
.message .online .inps p.pp2 {
  width: 49%;
}
.message .online .inps p.pp3 {
  width: 100%;
}
.message .online .inps p {
  border: 1px solid #e2e2e2;
  padding: 1.4rem 1.5rem 0.7rem;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.message .online .inps p span {
  font-size: 1.6rem;
  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.6rem;
  background: none;
  display: block;
  line-height: 1.4;
  padding: 0;
  color: #333;
  width: 100%;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
}
.message .online .pps {
  width: 49%;
  float: left;
}
.message .online .pps2 {
  float: right;
}
.message ::placeholder {
  color: #bbb;
}
.message .submit {
  display: flex;
  justify-content: center;
}
.message .submit button {
  display: block;
  background: none;
  display: inline-block;
  line-height: 40px;
  width: 160px;
  padding: 8px 0;
  margin: 4rem auto 1.5rem;
  background:rgba(255,0,0,0.5);
  color: #fff;
  font-size: 1.6rem;
  border: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  border-radius: 30px;
  letter-spacing: 1px;
}
.message .submit button:hover {
  background: #ff0000;
}
.pro {
  background: #f9f9f9;
}
.pro .contain ul li{
    background: #fff;
    padding: 3rem;
    box-sizing: border-box;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.pro .contain ul li:nth-of-type(3n){
    margin-right: 2%;
}
.pro .contain ul li:nth-of-type(4n){
    margin-right: 0;
}
.pro .contain ul li .txt{
    text-align: center;
    padding: 0;
}
.pro .contain ul li p{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.pro .more {
  background: #ff0000;
  margin: 0;
  padding: 0.6rem 2rem;
  display: none;
}
.pro .more span {
  font-size: 1.3rem;
}
.pro .pbottom {
  display: flex;
  justify-content: flex-end;
}
.pro .pages {
  width: calc(100% - 300px);
}
.prod {
  background: rgba(249, 249, 249, 1);
}
.pross .contain {
  display: flex;
  justify-content: space-between;
}
.pross .ll {
  position: relative;
  width: 260px;
  padding: 2rem 1rem;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  height: 100%;
}
.pross .ss {
    transition: all 0.5s ease;
  border-radius: 16px;
}
.pross .ss.active {
  background: #f8f8f8;
}
.pross .ss h4 a {
  font-size: 1.6rem;
  color: #333;
  display: flex;
  align-items: center;
}
.pross .ss h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  color: #333;
  padding:  1rem;
  font-weight: normal;
}
.pross .ss h4 img{
    width: 3rem;
    background: #f8f8f8;
    padding: 0.6rem;
    box-sizing: border-box;
    margin-right: 1rem;
    border-radius: 50%;
}
.pross .ss h4 i{
    font-size: 1.2rem;
    transform: rotate(90deg);
    transition: all 0.5s ease;
    cursor: pointer;
}
.pross .ss.active i{
    transform: rotate(-90deg);
}
.pross .ss2 {
  padding: 0rem 4rem;
  width: 100%;
  box-sizing: border-box;
  display: none;
}
.pross .ss.active .ss2{
    display: block;
}
.pross .ss2 h5{
  font-size: 1.4rem;
  font-weight: normal;
  color: #888;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
}
.pross .ss2 h5:before{
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-right: 6px;
    background: #888;
}
.pross .rr {
  width: calc(100% - 300px);
  height: 100%;
}
.prod .pbar1 {
  display: flex;
  justify-content: space-between;
}
.prod .rr .imgs {
  width: 49.5%;
}
.prod .rr .imgs .top{
    overflow: hidden;
     border-radius: 16px;
}
.prod .rr .imgs img {
  width: 100%;
 
}
.prod .rr .imgs .swiper-container {
  width: 85%;
  margin: 2% auto 0;
  position: relative;
  z-index: 100;
}
.prod .rr .imgs .bot {
  position: relative;
}
.prod .rr .imgs .swiper-slide {
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
}
.prod .rr .imgs .swiper-slide-active {
  border-color: #ff0000;
}
.prod .rr .imgs .btn {
  right: inherit;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.prod .rr .imgs .ll {
  width: 4rem;
  height: 4rem;
  padding: 0;
  background: none;
}
.prod .rr .imgs .ll i {
  color: #333;
}
.prod .rr .pbar1 .txt {
  width: 49.5%;
  background: #fff;
  border-radius: 16px;
  padding: 3% 3%;
  box-sizing: border-box;
}
.prod .rr .pbar1 h3 {
  font-size: 2.8rem;
  color: #333;
}
.prod .rr .pbar1 h4 {
  font-size: 1.8rem;
  color: #333;
  font-weight: normal;
  margin-bottom: 1rem;
}
.prod .rr .pbar1 p {
  line-height: 1.6;
  font-size: 1.4rem;
}
.prod .rr .pbar1 .tt0 p {
  margin: 3px 0;
}
.prod .rr .pbar1 p span{
  font-size: 1.4rem;
}
.prod .rr .pbar1 .tt {
  display: flex;
  margin-top: 3rem;
}
.prod .rr .pbar1 strong {
  display: block;
  width: 56px;
  font-size: 1.4rem;
  color: #333;
}
.prod .rr .pbar1 .spans {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 56px);
}
.prod .rr .pbar1 .spans a {
  font-size: 1.4rem;
  color: #333;
  padding: 0.3rem 1rem;
  border: 1px solid #ccc;
  margin: 4px;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-width:  1.5rem;
  min-height: 1.5rem;
  border-radius: 5px;
}
.prod .rr .pbar1 .spans a::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: -6px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #ff0000;
  opacity: 0;
}
.prod .rr .pbar1 .spans a.active {
  border-color: #ff0000;
}
.prod .rr .pbar1 .spans a.active::before {
  opacity: 1;
}
.prod .pbar2 {
  margin: 2rem 0 0rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
}
.prod .pbar2 dl {
  display: flex;
  margin-left: 1rem;
}
.prod .pbar2 dl dd {
  font-size: 1.5rem;
  padding: 0.9rem 4rem;
  background: #5c5d60;
  color: #fff;
  margin-right: 1px;
  cursor: pointer;
  border-top: 3px solid transparent;
  transition: all 0.5s ease;
  border-radius: 0 0 1rem 1rem;
}
.prod .pbar2 dl dd.active {
  background: none;
  color: #333438;
  border-top-color: #ff0000;
}
.prod .pbar2 .boxs {
  width: 100%;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
}
.prod .pbar2 .dbox {
  display: none;
}
.prod .pbar2 .dbox:first-of-type {
  display: block;
}
.prod .pbar2 p strong {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 2rem;
  display: block;
}
.prod .pbar2 p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.prod .pbar2 p img{
    max-width: 100%;
}
.prod .pbar2 table {
  width: 100%;
}
.prod .pbar2 table tr td {
  font-size: 1.4rem;
  padding: 1rem;
  background: #eee;
  text-align: center;
  color: #333;
}
.prod .pbar2 table tr:first-of-type td {
  background: #ccc;
}
.prod .pbar2 ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eee;
  padding: 0.6rem 2rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
  border-radius: 1rem;
}
.prod .pbar2 ul li p {
  font-size: 1.6rem;
  color: #333;
  transition: all 0.5s ease;
}
.prod .pbar2 ul li:hover p {
  color: #ff0000;
}
.prod .pbar2 ul li img {
  width: 2.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;
  height: 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%);
}
.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: 4rem;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.big_box .righttop img:hover {
  opacity: 0.6 !important;
}
html[lang="en"] * {
    letter-spacing: 0px !important;
}
