@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/Aileron-Regular.woff2");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/SourceHanSansCN-Regular-Alphabetic.woff2");
  font-family: "myfont2";
}
@font-face {
  src: url("../fonts/SourceHanSansCN-Heavy-Alphabetic.woff2");
  font-family: "title";
}
@font-face {
  src: url("../fonts/SourceHanSansCN-Medium-Alphabetic.woff2");
  font-family: "title2";
}
@font-face {
  src: url("../fonts/Aileron-Black.woff2");
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "myfont", "myfont2", sans-serif;
  box-sizing: border-box;
}
@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;
}
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  list-style: none;
}
img {
  width: 100%;
  display: block;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
dir,
section {
  margin: 0;
  padding: 0;
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
input,
button {
  background: none;
  border: none;
  box-shadow: none;
}
/*index*/
.w_all {
  width: 80%;
  margin: 0 auto;
}
.w_all2 {
  width: 90%;
  margin: 0 auto;
}
.w_all3 {
  width: 100%;
  margin: auto;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.w100p10 {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}
.w100p12 {
  width: 100%;
  padding-left: 12%;
  padding-right: 12%;
}
.pt8 {
  padding-top: 8%;
  padding-bottom: 8%;
}
.font18 p {
  font-size: 1.8rem;
}
.wall {
  width: 72%;
  margin: auto;
}
.wall2 {
  width: 68%;
  margin: auto;
}
html,
body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
  background: #fff;
  --height: 90px;
  --height2: 80px;
  --color: #b61d22;
}

/* 导航 Strat */
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
  background: #fff;
}
header.scroll {
  box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
}
header .navBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--height);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  padding: 0 8%;
}
header.scroll .navBox {
  height: var(--height2);
}
header .ll {
  display: flex;
  align-items: center;
  gap: 0 90px;
}

header .ll .logo img {
  width: auto;
  height: 45px;
}
header .navBtn {
  cursor: pointer;
}
header .navBtn span {
  display: block;
  width: 28px;
  height: 2px;
  background: #828588;
  margin: 7px 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .navBtn span:last-of-type {
  width: 18px;
}
header .hideMenu:hover .navBtn span {
  background: var(--color);
}
header .nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}
header .nav_btn_active span:nth-of-type(3) {
  width: 30px;
  margin-top: -20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .nav ul {
  display: flex;
  align-items: center;
  gap: 0 100px;
}
header .nav ul li > a {
  font-size: 1.8rem;
  color: #828588;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
header .nav ul li > a:hover {
  color: var(--color);
}
header .nav ul li:nth-of-type(3) > a {
  color: rgba(39, 80, 155, 1);
}
header .nav ul li:nth-of-type(3) > a:hover {
  color: #fce500;
}
header .rr {
  display: flex;
  align-items: center;
  gap: 0 72px;
  align-items: center;
}
header .rr i {
  display: block;
  width: 26px;
  cursor: pointer;
}
header .rr i img {
  display: block;
}
header .rr i img:last-of-type {
  display: none;
}
header .language a {
  font-size: 2rem;
  color: #828588;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  font-weight: 100;
}
header .language a:hover {
  color: var(--color);
}
header .phone,
header .hideMenu {
  position: relative;
}
header .hide ul li {
  padding: 10px;
}
header .hideMenu ul li {
  padding: 10px 24px;
}
header .hide ul li:hover {
  background: linear-gradient(to right, #ffab97 0%, #b61d22 100%);
  background: -webkit-linear-gradient(to right, #ffab97 0%, #b61d22 100%);
}
header .hide ul li:hover h2 {
  color: #fff;
}
header .hide h2 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: normal;
  color: #828588;
  white-space: nowrap;
  cursor: pointer;
}
header .hide {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

header .hide .hideBox {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 15px;
}

header .phone:hover .hide,
header .language:hover .hide,
header .hideMenu:hover .hide {
  opacity: 1;
  visibility: visible;
  padding-top: 15px;
}
header .phone:hover i img:first-of-type,
header .language:hover i img:first-of-type {
  display: none;
}
header .phone:hover i img:last-of-type,
header .language:hover i img:last-of-type {
  display: block;
}
.p_menu,
.navBtn2 {
  display: none;
}
/* 导航 End*/

/* 首页banner Strat */
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner .box,
.banner .swiper,
.banner .swiper .swiper-slide,
.banner .swiper .swiper-slide .imgBox {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85%;
}
.banner .swiper .txtBox {
  position: absolute;
  left: 9%;
  top: calc(50% - 10rem);
  transform: translateY(-50%);
  padding-bottom: 72px;
}
.banner .swiper .txtBox h2 {
  font-size: 4.8rem;
  color: var(--color);
  font-weight: bolder;
  line-height: 1.25;
  margin-bottom: 3rem;
  font-family: "title";
}
.banner .swiper .txtBox h3 {
  font-size: 1.6rem;
  color: var(--color);
  font-weight: normal;
  line-height: 1.25;
  width: 60%;
  transition-delay: 0.5s;
}
.search {
  position: absolute;
  left: 8%;
  top: 72%;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 20%;
}
.search form input,
.search form button {
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
  border: 0;
}
@keyframes bigRound {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.45);
  }
  100% {
    transform: scale(1);
  }
}
.search i {
  display: block;
  width: 36px;
  height: 36px;
  animation: bigRound 3.2s infinite;
}
.search form img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
.search form {
  display: flex;
  align-items: center;
  transition: all 0.4s;
  border: 1px solid #444648;
  padding: 0 15px;
  margin-left: 20px;
  border-radius: 30px;
  width: 100%;
}
.search form input {
  font-size: 1.6rem;
  color: #828588;
  /* padding: 10px 0; */
  line-height: 2;
}
.search form input::placeholder {
  font-family: "myfont";
  color: #828588;
  font-size: 1.4rem;
  font-weight: 400;
}
.banner .other {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 72px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  padding-right: 10%;
  border-top: 1px solid #cccccc;
}
.banner .other .ll {
  display: flex;
  align-items: center;
}
.banner .other .swiper-pagination,
.banner .other .swiper-button-next,
.banner .other .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: auto;
}
.banner .other .social {
  display: flex;
  position: relative;
  gap: 0 28px;
}
.banner .other .social .gzh {
  position: relative;
}
.banner .other .social .icon {
  cursor: pointer;
}
.banner .other .social .icon img {
  width: 28px;
  height: 28px;
}
.banner .other .social .icon img:last-of-type {
  display: none;
}
.banner .other .social .qr {
  position: absolute;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.banner .other .social .qr img {
  width: 110px;
}
.banner .other .social .icon:hover img:first-of-type {
  display: none;
}
.banner .other .social .icon:hover img:last-of-type {
  display: block;
}
.banner .other .social .gzh:hover .qr {
  opacity: 1;
  visibility: visible;
  top: -140px;
}
.banner .other .social .gzh:hover img:first-of-type {
  display: none;
}
.banner .other .social .gzh:hover img:last-of-type {
  display: block;
}
.banner .other h3 {
  font-size: 1.8rem;
  color: #b2b2b2;
  font-weight: normal;
  padding-left: 40px;
}
.banner .other .swiper-pagination-bullet {
  background: #e5e5e5;
  opacity: 1 !important;
  margin: 0 9px !important;
}
.banner .other .swiper-pagination-bullet-active {
  background: none;
  border: 1px solid var(--color);
}
.banner .other .line {
  position: relative;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner .other .line::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background-color: #e5e5e5;
}
.banner .other .swiper-button {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid #e5e5e5;
}
.banner .other .button {
  margin: 0;
  padding: 0 15px;
  height: auto;
}
.banner .other .swiper-button-next {
  border-left: 1px solid #e5e5e5;
}
.banner .other .button img {
  width: 24px;
  height: 24px;
}

.banner .other .swiper-button-next:after,
.banner .other .swiper-button-prev:after {
  display: none;
}
.banner .other .button img:last-of-type {
  display: none;
}
.banner .other .button:hover img:first-of-type {
  display: none;
}
.banner .other .button:hover img:last-of-type {
  display: block;
}
.banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.banner .scroll img {
  width: 28px;
  height: 28px;
}
.banner .scroll span {
  font-size: 1rem;
  color: #828588;
  margin-bottom: 3px;
}
/* 首页banner End*/

/* 公共 Strat */
.more {
  display: flex;
  align-items: center;
}
.more i {
  display: block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.more span {
  font-size: 1.4rem;
  color: #cccccc;
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding-left: 15px;
  padding-right: 32px;
  background: #fff;
}
.title {
  position: relative;
}
.title h2 {
  font-size: 4rem;
  font-weight: bolder;
  font-family: "title";
  color: #454649;
  letter-spacing: 2px;
  padding-top: 18px;
  position: relative;
}
.title h2 strong {
  font-size: 4rem;
  font-weight: bolder;
  font-family: "title";
  color: var(--color);
  letter-spacing: 2px;
}
.title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 1px;
  background: var(--color);
}
.i_part .box {
  margin-top: 5%;
}
/* 公共 End*/

/* 首页--产品 Strat */
.home {
  width: 100%;
  position: relative;
}
.i_part {
  overflow: hidden;
}
.i_part,
.i_part .box {
  width: 100%;
  position: relative;
}
.i_part1 .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px 20px;
  background: #f2f2f2;
  margin-top: 0 !important;
}
.i_part1 .item {
  width: 100%;
  position: relative;
  background: #fff;
}
.i_part1 .item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  border: 1px solid #fff;
}

.i_part1 .item .txtBox {
  padding: 6rem 5rem 0;
}
.i_part1 .item h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #999;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part1 .item .more {
  margin-top: 24px;
}
.i_part1 .item:first-of-type {
  grid-row-start: span 2;
}
.i_part1 .item:nth-of-type(2) {
  grid-column-start: span 2;
}
.i_part1 .item .imgBox {
  display: flex;
  justify-content: flex-end;
}
.i_part1 .item .imgBox img {
  width: 280px;
  height: auto;
  object-fit: cover;
}
.i_part1 .item:first-of-type .imgBox {
  padding-bottom: 35%;
}
.i_part1 .item:first-of-type img {
  width: 100%;
}
.i_part1 .item:nth-of-type(2) a {
  flex-direction: row;
}
.i_part1 .item:nth-of-type(2) .txtBox {
  width: 38%;
}
.i_part1 .item:nth-of-type(2) .imgBox {
  width: 62%;
}
.i_part1 .item:nth-of-type(2) .imgBox img {
  width: 100%;
}
.i_part1 .item a:hover {
  border: 1px solid #454649;
}
.i_part1 .item a:hover h2 {
  color: var(--color);
}
/* 首页--产品 End*/

/* 首页--关于我们 Strat */
.i_part2 .itro {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #ffab97 0%, #b61d22 100%);
  background: -webkit-linear-gradient(to right, #ffab97 0%, #b61d22 100%);
}
.i_part2 .itro a {
  display: block;
  width: 100%;
  padding: 3%;
  position: relative;
}
.i_part2 .itro h2 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}
.i_part2 .itro .text {
  margin-top: 42px;
}
.i_part2 .itro .text p {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
}
.i_part2 .itro .img {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 100%;
}
.i_part2 .itro .img img {
  width: auto;
  height: 100%;
}
.i_part2 .data {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 42px;
  margin-top: 12%;
}
.i_part2 .data .item {
  grid-column-start: span 2;
}
.i_part2 .data .item:nth-of-type(4) {
  grid-column-start: span 3;
}
.i_part2 .data .item:nth-of-type(5) {
  grid-column-start: span 3;
}
.i_part2 .data .item {
  width: 100%;
  position: relative;
}
.i_part2 .data .item a {
  display: block;
  width: 100%;
  position: relative;
  padding: 54px 84px;
  border: 1px solid #454649;
  z-index: 1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part2 .data .item:nth-of-type(2) a {
  border: none;
  background: #f2f2f2;
}
.i_part2 .data .item:nth-of-type(5) a {
  border: 1px solid transparent;
  background: #f2f2f2;
}
.i_part2 .data h4 span {
  font-size: 8.5rem;
  font-family: "num";
  font-style: italic;
  font-weight: 800;
  color: var(--color);
}
.i_part2 .data h5 {
  font-size: 3rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 2px;
}
.i_part2 .data .more {
  margin-top: 100px;
}
.i_part2 .data .item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #f2f2f2;
  z-index: -1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.i_part2 .data .item:nth-of-type(2) a::before {
  background: #fff;
}
.i_part2 .data .item:nth-of-type(5) a::before {
  background: #fff;
}
.i_part2 .data .item:hover a {
  border: 1px solid transparent;
}
.i_part2 .data .item:hover a::before {
  height: 100%;
}
.i_part2 .data .item:nth-of-type(2):hover a {
  border: 1px solid #454649;
}
.i_part2 .data .item:nth-of-type(5):hover a {
  border: 1px solid #454649;
}
/* 首页--关于我们 End*/

/* 首页--企业使命 Strat */
.i_part3 .box {
  display: flex;
  justify-content: space-between;
}
.i_part3 .box .aa {
  width: 58%;
}
.i_part3 .box .aa a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.i_part3 .box .aa a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i_part3 .box .aa a .more {
  position: absolute;
  left: 5%;
  bottom: 5%;
  transform: scale(0.75);
}
.i_part3 .box .bb {
  width: 39%;
  background: #f2f2f2;
  padding: 5%;
}
.i_part3 .box .bb .tit h2 {
  font-size: 4rem;
  color: var(--color);
  font-style: italic;
  font-family: "title";
}
.i_part3 .box .bb .txt p {
    font-weight: bold;
  font-size: 2.4rem;
  color: #999;
  line-height: 1.35;
  text-align: right;
  font-family: "title";
}
.i_part3 .box .bb .tit {
  padding-bottom: 24px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--color);
}
/* 首页--企业使命 End*/

/* 首页--核心技术 Strat */
.i_part4 {
  padding-top: 0 !important;
}
.i_part4 .box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.i_part4 .aa {
  width: 42%;
  position: relative;
}
.i_part4 .aa .itro p {
  font-size: 1.8rem;
  color: #828588;
  line-height: 1.6;
}
.i_part4 .aa .table {
  margin-top: 100px;
}
.i_part4 .aa .table .tit {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}
.i_part4 .aa .table .tit i {
  display: block;
  width: 34px;
  height: 34px;
  margin-right: 24px;
}
.i_part4 .aa .table .tit h2 {
  font-size: 2.8rem;
  color: #828588;
  font-weight: normal;
}
.i_part4 .aa .table .items {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #c2c3c5;
  padding: 0 10%;
}
.i_part4 .aa .table .items .item {
  width: 10%;
  position: relative;
}
.i_part4 .aa .table .item h2 {
  font-size: 1rem;
  color: #828588;
  margin-bottom: 10px;
  opacity: 0;
  transition: all 3s ease;
  text-align: center;
}
.i_part4 .aa .table .item .counter {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  color: #454649;
  font-weight: 800;
  font-family: "num";
  font-style: italic;
}
.i_part4 .aa .table .item .line {
  position: relative;
  width: 100%;
}
.i_part4 .aa .table .item .line img {
  transform: scaleY(0);
  transition: transform 1s 0.2s ease;
  transform-origin: bottom center;
}
.i_part4 .aa .table .item.active .line img {
  transform: scaleY(1);
}
.i_part4 .aa .table .item.active h2 {
  opacity: 1;
}
.i_part4 .bb {
  width: 52%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 5%;
}
.i_part4 .bb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32vw;
  height: 32vw;
  background: linear-gradient(to right, #ffab97 0%, #b61d22 100%);
  background: -webkit-linear-gradient(to right, #ffab97 0%, #b61d22 100%);
  border-radius: 50%;
  z-index: 1;
}
.i_part4 .bb::after {
  content: "";
  position: absolute;
  left: 3.5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 25vw;
  height: 25vw;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.i_part4 .bb a {
  position: relative;
  z-index: 2;
  width: 75%;
}
.i_part4 .bb .txt {
  position: absolute;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  bottom: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.i_part4 .bb .imgBox {
  width: 100%;
  position: relative;
}
.i_part4 .bb .imgBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.i_part4 .bb .txt .tt {
  max-width: 60%;
}
.i_part4 .bb .txt .tt p {
  color: #fff;
  line-height: 1.3;
}
/* 首页--核心技术 End*/

/* 底部栏 Strat */
.footer {
  width: 100%;
  position: relative;
  margin-top: 5%;
  overflow: hidden;
}
.footer .box {
  width: 100%;
  position: relative;
}
.footer .top,
.footer .bot {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #cccccc;
}
.footer .top .aa,
.footer .bot .aa {
  padding: 5% 5% 5% 0;
  width: 30%;
  position: relative;
  border-right: 1px solid #cccccc;
}
.footer .top .aa .logo {
  width: 18rem;
  height: auto;
}
.footer .top .aa .slogan {
  position: absolute;
  right: 10%;
  bottom: 10%;
}
.footer .top .bb,
.footer .bot .bb {
  width: 70%;
  padding: 5% 0 4% 5%;
}
.footer .top .bb .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20%;
}
.footer .top .bb .tit h4 {
  font-size: 2.4rem;
  color: var(--color);
  font-style: italic;
  font-weight: bolder;
}
.footer .top .bb .tit h2 {
  font-size: 3.6rem;
  color: #828588;
  letter-spacing: 5px;
}
.footer .top span {
  display: block;
  font-size: 1.8rem;
  color: #828588;
  line-height: 1.45;
}
.footer .top .bb .way {
  display: flex;
  flex-direction: column;
}
.footer .top .bb .way span {
  display: block;
  text-align: right;
  line-height: 1.85;
}
.footer .copyRight {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
}
.footer .copyRight span {
  font-size: 1.8rem;
  color: #828588;
  opacity: 0.35;
}
.footer .copyRight span strong {
  font-weight: 600;
  color: var(--color);
}
.footer .copyRight a span {
  font-weight: 600;
  color: var(--color);
  margin-left: 15px;
}
.footer .bot {
  border-bottom: 10px solid #cccccc;
}
.footer .bot .aa {
  display: flex;
  position: relative;
  gap: 0 28px;
  padding-top: calc(5% + 95px);
}
.footer .bot .aa .gzh {
  position: relative;
}
.footer .bot .aa .icon {
  cursor: pointer;
}
.footer .bot .aa .icon img {
  width: 28px;
  height: 28px;
}
.footer .bot .aa .icon img:last-of-type {
  display: none;
}
.footer .bot .aa .qr {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.footer .bot .aa .qr img {
  width: 110px;
}
.footer .bot .aa .icon:hover img:first-of-type {
  display: none;
}
.footer .bot .aa .icon:hover img:last-of-type {
  display: block;
}
.footer .bot .aa .gzh:hover .qr {
  opacity: 1;
  visibility: visible;
  top: -120px;
}
.footer .bot .aa .gzh:hover img:first-of-type {
  display: none;
}
.footer .bot .aa .gzh:hover img:last-of-type {
  display: block;
}
.footer .bot .bb {
  padding-top: 6%;
  display: flex;
  align-items: center;
}

/* 底部栏 End*/
.o_ban {
  position: relative;
  margin-top: 90px;
}
.o_ban .contain {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.o_ban h3 {
  font-size: 5rem;
  color: var(--color);
  margin-bottom: 1.5rem;
  font-family: "title2";
  letter-spacing: 2px;
}
.o_ban .txt p {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #808184;
  margin-left: -2rem;
  letter-spacing: 0.2rem;
}
.o_ban .txt p a {
  color: #808184;
}
.o_ban .txt img {
  width: 2.2rem;
  margin: 0 1.6rem;
}
.o_ban .rr {
  display: flex;
  justify-content: flex-end;
}
.o_ban .search {
  position: static;
  width: max-content;
}
.o_ban .search form {
  background: #fff;
}
.o_ban .search i {
  margin-top: 0.8rem;
}
.o_ban2 .rr {
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
.o_ban2 .rr h6 {
  font-weight: normal;
  font-size: 2.4rem;
  color: #808386;
  margin-left: 1rem;
}
.allbars {
  padding: 8rem 0;
  overflow-x: hidden;
}
.allbars2 {
  padding: 5rem 0;
}
.allNav h3 {
  font-size: 2.8rem;
  color: #444648;
  line-height: 2;
  margin-bottom: 4rem;
  font-weight: normal;
  font-family: "title2";
  border-bottom: 1px solid #969696;
  display: inline-block;
  letter-spacing: 2px;
}
.allNav ul {
  display: flex;
  flex-wrap: wrap;
}
.allNav ul li {
  color: #fff;
  margin-right: 4rem;
  font-weight: 100;
  position: relative;
  padding-bottom: 1rem;
}
.allNav ul li > a {
  color: #fff;
  font-size: 1.5rem;
  display: block;
  padding: 0.5rem 3rem;
  border-radius: 5px;
  background: #969696;
}
.allNav ul li.active > a {
  background: linear-gradient(to right, #ffab97 0%, #b61d22 100%);
  background: -webkit-linear-gradient(to right, #ffab97 0%, #b61d22 100%);
}
.a_smenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 38px;
  background: #fff;
  z-index: 9;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0 1rem;
  box-sizing: border-box;
  display: none;
  min-width: 100%;
}
.a_smenu p {
  min-width: max-content;
  width: 100%;
  text-align: center;
  padding: 0.6rem 2rem;
  font-size: 1.4rem;
  margin: 1rem 0;
  color: #969696;
}
.a_smenu p:hover {
  color: #fff;
  background: linear-gradient(to right, #ffab97 0%, #b61d22 100%);
  background: -webkit-linear-gradient(to right, #ffab97 0%, #b61d22 100%);
}
.title2 {
  display: flex;
  align-items: center;
}
.title2 h2 {
  font-size: 4.2rem;
  color: #444648;
}
.title2 img {
  width: 14rem;
  margin-right: 3rem;
}
.about1 .contain {
  position: relative;
}
.about1 .contain .tt {
  margin: 10rem 0 -15rem;
}
.about1s .contain .tt{
   margin: 10rem 0 -6rem;
}
.about1s2 .contain .tt{
   margin: 10rem 0 -21rem;
}
.about1s3 .contain .tt{
   margin: 10rem 0 -18rem;
}
.about1s4 .contain .tt{
   margin: 10rem 0 -24rem;
}
.about1 .contain .tt p {
  font-size: 2.4rem;
  color: #808184;
  margin: 1.6rem 0;
  font-family: "title2";
}
.about1 .contain .imgs {
  position: absolute;
  right: 5%;
  bottom: -10rem;
  z-index: 3;
  max-width: 26%;
}
.about1 .tt2 {
  color: #808184;
  font-size: 2.8rem;
  padding: 5rem 0 2.5rem 2.5rem;
  border-bottom: 1px solid #444648;
  position: relative;
  font-family: "title2";
}
.about1 .tt2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 42%;
  height: 1px;
  background: var(--color);
}
.about2 .contain {
  display: flex;
}
.about2 .tt {
  margin-top: 4rem;
}
.about2 .tt p {
  font-size: 2.2rem;
  color: #808080;
  line-height: 1.8;
  margin: 1rem 0;
}
.about2 .ll {
  width: 65%;
}
.about2 .rr {
  margin-top: 1rem;
}
.about2 .rr span::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--color);
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 0;
}
.about2 .rr span {
  width: 1px;
  display: block;
  height: 100%;
  background: var(--color);
  position: relative;
}
.about2 .tt1 {
  display: flex;
  align-items: center;
  margin: 4rem 0 0;
}
.about2 .tt1 h6 {
  width: 65%;
  font-size: 12rem;
  color: var(--color);
  font-style: italic;
}
.about2 .tt1 h5 {
  width: 65%;
  font-size: 18rem;
  color: var(--color);
  font-style: italic;
}
.about2 .contain2 .ll {
  padding-bottom: 10%;
}
.about2 .contain2 .tt p {
  padding: 0 16rem;
  font-size: 1.8rem;
}
.about2 .contain2 .rr span::before {
  display: none;
}
.about2 .contain3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15rem;
}
.about2 .contain3 .ll .bg img {
  width: 100%;
}
.about2 .contain3 .rr {
  width: 26.5%;
}
.about2 .contain3 .rr dl {
  display: flex;
  justify-content: space-between;
  letter-spacing: 1px;
}
.about2 .contain3 .rr dl dd img {
  width: auto;
  margin: auto;
}
.about2 .contain3 .rr dl dd h4 {
  color: #808285;
  font-weight: normal;
  padding: 2.5rem 0;
  font-size: 1.7rem;
  border-bottom: 1px solid var(--color);
}
.about2 .contain3 .rr .tt3 {
  margin-top: 4rem;
}
.about2 .contain3 .rr .tt3 p {
  font-size: 1.7rem;
  color: #808285;
  line-height: 2;
}
.about3 .contain2 {
  display: flex;
  justify-content: space-between;
}
.about3 .contain2 .ll {
  width: 49%;
  padding: 0 1.5%;
  box-sizing: border-box;
  margin-top: -5px;
}
.about3 .contain2 .ll p {
  color: #808080;
  font-size: 2rem;
  line-height: 1.7;
  text-align: justify;
}
.about3 .contain2 .rr {
  width: 50%;
  position: relative;
}
.about3 .contain2 .rr .tt {
  position: absolute;
  right: 3rem;
  bottom: 3.6rem;
  z-index: 6;
  color: #fff;
  display: flex;
  align-items: center;
}
.about3 .contain2 .rr .tt p {
  font-size: 2.2rem;
  color: #fff;
  font-style: italic;
}
.about3 .contain2 .rr .tt span {
  background: var(--color);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  display: block;
  font-style: italic;
  margin-left: 1.5rem;
  font-size: 1rem;
}
.title3 h3 {
  font-size: 3.5rem;
  font-style: italic;
  color: var(--color);
}
.title3 h4 {
  font-size: 2.8rem;
  font-weight: normal;
  margin-top: 1rem;
  color: #808080;
}
.about3 {
  padding-bottom: 0;
}
.about3 .contain3 ul {
  display: flex;
  justify-content: space-between;
}
.about3 .contain3 ul li {
  width: 28%;
}
.about3 .contain3 ul li img {
  width: auto;
  margin: auto;
  max-width: 100%;
}
.about3 .contain3 ul li img:nth-of-type(2) {
  margin: 8rem auto;
}
.about3 .contain3 .tt p {
  font-size: 2rem;
  color: #808080;
  margin: 5rem 0 0;
  line-height: 1.8;
  text-align: justify;
}
.about3 .contain3 dl {
  display: flex;
  justify-content: space-between;
}
.about3 .contain3 dl dd {
  width: 30%;
  border: 1px solid #f0f0f0;
  padding: 3% 5% 1% 3%;
  box-sizing: border-box;
  display: flex;
}
.about3 .contain3 dl dd .limg {
  height: 100%;
  margin-right: 3rem;
}
.about3 .contain3 dl dd img {
  width: auto;
}
.about3 .contain3 dl .tts {
  text-align: center;
}
.about3 .contain3 dl h6 {
  font-size: 5rem;
  color: var(--color);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about3 .contain3 dl h6 span {
  font-style: italic;
  margin-right: 2rem;
  min-width: 8rem;
  display: block;
}
.about3 .contain3 dl h5 {
  font-size: 2rem;
  color: #444648;
  font-weight: normal;
  margin-bottom: 6rem;
}
.about3 .contain3 dl p {
  font-size: 1.8rem;
  color: #444648;
  margin: 1rem 0;
}
.history .bars {
  padding-bottom: 0;
}
.history2 {
  overflow: hidden;
}
.history2 .bars2 {
  position: relative;
}
.history2 .bg img {
  width: 40%;
  margin: auto;
}
.history2 .bars2 ul li {
  position: absolute;
  width: 48%;
}
.history2 .bars2 ul li h6 {
  font-size: 3.6rem;
  font-style: italic;
  color: var(--color);
}
.history2 .bars2 ul li p {
  font-size: 2rem;
  color: #989898;
}
.history2 .bars2 ul .li1 {
  left: 0;
  top: 4.5%;
  text-align: right;
}
.history2 .bars2 ul .li2 {
  right: -8%;
  top: 13%;
}
.history2 .bars2 ul .li3 {
  left: -2%;
  width: 30%;
  top: 19%;
  text-align: right;
}
.history2 .bars2 ul .li4 {
  right: 0%;
  top: 28%;
}
.history2 .bars2 ul .li5 {
  right: 0%;
  top: 37%;
  width: 32%;
}
.history2 .bars2 ul .li6 {
  right: -5%;
  top: 46%;
  width: 30%;
}
.history2 .bars2 ul .li7 {
  left: 0%;
  top: 56%;
  text-align: right;
}
.history2 .bars2 ul .li8 {
  left: 0%;
  top: 66%;
  text-align: right;
  width: 45%;
}
.history2 .bars2 ul .li9 {
  right: -8%;
  top: 78%;
  width: 30%;
}
.history2 .bars2 ul .li10 {
  right: -3%;
  top: 90%;
  width: 30%;
}
.history3 {
  padding-top: 8%;
}
.history3 .barss2 {
  position: relative;
  padding-top: 0;
}
.history3 .barss2 dl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--color);
}
.history3 .barss2 dl::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color);
  border-radius: 50%;
  background: #fff;
}
.history3 .barss2 dl dd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin: 5rem 0;
}
.history3 .barss2 dl dd:last-of-type {
  margin-bottom: 1rem;
}
.history3 .barss2 dl dd::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color);
  border-radius: 50%;
  background: #fff;
}
.history3 .barss2 dl dd::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #444648;
  border-radius: 50%;
  background: #fff;
}

.history3 .barss2 dl p strong {
  font-size: 3.4rem;
  color: var(--color);
  display: block;
  margin-bottom: 0.6rem;
}
.history3 .barss2 dl p {
  font-size: 2rem;
  color: #444648;
  width: 34%;
  min-height: 13rem;
  line-height: 1.3;
  padding-right: 14%;
  box-sizing: border-box;
}
.history3 .barss2 dl p:first-of-type {
  padding-right: 0;
  padding-left: 14%;
}
/* 米其林页面 */
.pross .contain {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pross .contain .ll {
  width: 25rem;
  background: #f1f1f1;
  position: relative;
}

.mql1 .contain .ll b {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
}
.mql1 .contain .ll b img {
  width: auto;
  margin: auto;
}
.pross .contain .ll ul {
  margin: 5rem 0;
}
.pross .contain .ll ul li {
  background: #fff;
  padding: 1.3rem 4rem;
  box-sizing: border-box;
  width: 85%;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  color: #828588;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.mql1 .contain .ll ul li i {
  font-size: 1.3rem;
  margin-right: 0.5rem;
  color: #004da0;
}
.mql1 .contain .ll ul li:hover {
  color: #004da0;
}
.pross .contain .rr {
  width: calc(100% - 28rem);
}
.mql1 .contain .rr .top {
  background: #004da0;
  display: flex;
  justify-content: flex-end;
  padding: 10rem 4rem 2rem;
  color: #fff;
  font-size: 3.4rem;
}
.mql1 .contain .rr .top h6 span {
  font-weight: normal;
  font-size: 1.4rem;
}
.pross .contain dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pross .contain dl dd {
  width: 31.6%;
  margin-top: 3rem;
  position: relative;
  margin-bottom: 3rem;
}
.pross .contain dl dd h5 {
  text-align: right;
  font-size: 2.2rem;
  color: #828588;
  margin: 2.5rem 0 0;
  position: relative;
  z-index: 3;
  width: 90%;
  font-weight: normal;
}
.mql1 .contain dl dd:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 90%;
  height: 8px;
  background: linear-gradient(to right, #fff, #fce500);
  transform: skew(-30deg);
}
.mql2 .contain {
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.mql2 .contain::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(0, 77, 160, 1) 64%,
    rgba(0, 77, 160, 0)
  );
}
.mql2 .contain .ll {
  width: 55%;
}
.mql2 .contain .ll img {
  width: auto;
}
.mql2 .contain .rr {
  position: relative;
  z-index: 6;
  color: #fff;
  width: 70%;
  padding: 8rem 0 6rem;
}
.mql2 .contain .rr h6 {
  font-size: 3rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.mql2 .contain .rr .tt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mql2 .contain .rr .tt p {
  width: 48%;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0.9rem 0;
}
.mql2 .contain2 {
  display: flex;
  justify-content: space-between;
}
.mql2 .contain2 .bb {
  width: 49%;
  position: relative;
}
.mql2 .contain2 .bb1 {
  display: flex;
  justify-content: space-between;
  align-self: center;
  background: #004da0;
  padding: 3% 5%;
  box-sizing: border-box;
}
.mql2 .contain2 .bb1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 92%;
  border: 1px solid #fff;
}
.mql2 .contain2 .bl {
  width: 30%;
  color: #fff;
  position: relative;
  z-index: 2;
}
.mql2 .contain2 .br {
  width: 56%;
  position: relative;
  z-index: 2;
}
.mql2 .contain2 .bl > img {
  width: auto;
  margin: 5rem auto 2rem;
}
.mql2 .contain2 .bl p {
  text-align: center;
  font-size: 1.2rem;
}
.mql2 .contain2 .bl h6 {
  font-size: 3rem;
  font-style: italic;
  margin: 4rem 0 4rem;
  line-height: 1.4;
}
.more2 {
  display: flex;
  align-items: center;
  position: relative;
}
.more2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
}
.more2 img {
  width: auto;
}
.more2b img {
  width: auto;
}
.more2 span {
  font-size: 1.2rem;
  background: #fce500;
  color: #004da0;
  padding: 1.5rem 2rem;
}
.more2 i {
  border: 1px solid #fce500;
  padding: 1.8rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.more2 i img {
  height: 6px;
}
.mql2 .bb2 .btxt {
  position: absolute;
  right: 3rem;
  bottom: 3.6rem;
  z-index: 6;
  color: #fff;
  display: flex;
  align-items: center;
}
.mql2 .bb2 .btxt p {
  font-size: 2.2rem;
  color: #fff;
  font-style: italic;
}
.mql2 .bb2 .btxt span {
  background: var(--color);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  display: block;
  font-style: italic;
  margin-left: 1.5rem;
  font-size: 1rem;
}
.mql3 h3 {
  font-size: 2.8rem;
  border: 1px solid #004da0;
  padding: 0.3rem 5rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  color: #004da0;
  position: relative;
  margin-bottom: 5rem;
}
.mql3 h3 span {
  position: relative;
  z-index: 3;
}
.mql3 h3:before {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0.9rem;
  width: 66%;
  height: 8px;
  background: linear-gradient(to left, #fff, #fce500);
  transform: skew(-30deg);
}
.o_bans1 {
  padding-bottom: 0;
}
.o_bans1 .contain2 {
  height: 40rem;
  position: relative;
}
.o_bans1 .tt {
  padding: 1rem 5rem;
  background: #004d9f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.o_bans1 .tt h6 {
  font-size: 3rem;
  color: #ffe900;
}
.o_bans1 .tt h5 {
  font-size: 2rem;
  color: #fff;
}
.mqlList.pross .ll {
  background: none;
}
.mqlList.pross .ll h1 {
  font-size: 2.2rem;
  color: #444648;
  margin: 3rem 0 2rem;
}
.mqlList.pross .contain .ll ul {
  margin: 0;
  border-bottom: 1px solid #989898;
}
.mqlList.pross .contain .ll ul li {
  display: block;
  background: none;
  padding: 0;
  width: 100%;
  margin: 0;
}
.mqlList.pross ul li p {
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  border-top: 1px solid #989898;
  font-size: 1.8rem;
  color: #444648;
  box-sizing: border-box;
}
.mqlList.pross ul li p i {
  font-size: 1.2rem;
  color: var(--color);
  margin-right: 1rem;
}
.mqlList.pross ul li .lls p {
  font-size: 1.6rem;
  color: #989898;
  padding-left: 4rem;
  transition: all 0.4s ease;
}
.pross ul li .lls p:hover {
  color: var(--color);
}
.mqlList.pross ul li .lls p.active {
  color: #004d9f;
}
.mqlList.pross ul li .lls p:hover {
  color: #004d9f;
}
.mqlList.pross .contain .ll {
  width: 28rem;
}
.mqlList.pross .contain .rr {
  width: calc(100% - 34rem);
  padding-right: 3rem;
}
.mqlList.pross .contain dl dd {
  margin-top: 0;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}
.mqlList .rr dl dd .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2.5rem 1rem;
  box-sizing: border-box;
}
.mqlList .rr dl dd .txt img {
  width: auto;
  margin-top: 3px;
  max-width: 3.2rem;
}
.mqlList .rr dl dd .txt p {
  background: #fff;
  width: 11rem;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding: 3px 1.5rem;
  font-size: 1.2rem;
  color: #cbcbcb;
  box-sizing: border-box;
}
.mqlList .rr dl dd .txt2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  padding: 3.5rem 3rem;
  box-sizing: border-box;
  text-align: right;
  color: #fff;
  font-size: 1.4rem;
}
.mqlList .rr dl dd .txt2 .img {
  display: flex;
  justify-content: flex-end;
}
.mqlList .rr dl dd .txt2 img {
  width: auto;
  max-width: 60%;
  margin: 0 0 4rem;
}
.mqlList .rr dl dd .txt2 p {
  margin: 0;
}
.mqlList .rr dl dd .txt2 p:last-of-type {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.pages ul {
  display: flex;
  justify-content: center;
  justify-content: center;
  margin-top: 4%;
}
.pages ul a {
  display: flex;
  justify-content: center;
  margin: 0.3rem;
  border: 1px solid #989898;
  width: 4.6rem;
  height: 4.6rem;
  align-items: center;
  font-size: 1.6rem;
  color: #989898;
  cursor: pointer;
  transition: all 0.4s ease;
}
.pages ul a img {
  width: auto;
  height: auto;
}
.pages ul a.next img {
  transform: rotate(180deg);
}
.pages ul a:hover,
.pages ul a.active {
  background: var(--color);
  color: #fff;
  border-color: transparent;
}

.mqlList .pages ul a:hover,
.mqlList .pages ul a.active {
  background: #004d9f;
}
.proList ul a:hover,
.proList .pages ul a.active {
  background: var(--color);
  color: #fff;
  border-color: transparent;
}
.mqld .bar1 h1 {
  color: #4d4d4d;
  font-size: 4rem;
}
.mqld .bar1 p {
  display: flex;
  align-items: center;
  color: #4d4d4d;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.mqld .bar1 p img {
  margin-right: 2.2rem;
  width: 3.8rem;
}
.mqld .bar2 {
  background: #f2f2f2;
}
.mqld .bar2 .contain .swiper img {
  display: block;
}
.mqld .bar3 .bbs {
  margin-top: 3rem;
}
.mqld .bar3 h6 {
  display: flex;
  align-items: center;
  color: #004d9f;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 3rem 6rem;
  border-bottom: 1px solid #4d4d4d;
  box-sizing: border-box;
}
.mqld .bar3 h6 img {
  margin-right: 2.2rem;
  width: 4rem;
}
.mqld .bar3 .tt {
  padding: 2rem 12rem;
  box-sizing: border-box;
}
.mqld .bar3 p {
  margin: 0.6rem 0;
  color: #4d4d4d;
  font-size: 2rem;
}
/* 产品 */
.pro .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pro .contain .ll {
  width: 30%;
  display: flex;
}
.pro .contain .ll img {
  width: auto;
}
.pro .contain .ll .tt {
  padding-left: 8rem;
  position: relative;
}
.pro .contain .ll h2 {
  font-size: 3.6rem;
  color: var(--color);
  line-height: 1.1;
  position: relative;
}
.pro .contain .ll h2::before {
  content: "";
  position: absolute;
  left: -12rem;
  top: 40%;
  background: var(--color);
  width: 10rem;
  height: 1px;
}
.pro .contain .ll p {
  font-size: 1.9rem;
  color: #999999;
  border-left: 1px solid var(--color);
  padding-left: 1rem;
  letter-spacing: 2px;
  line-height: 2;
  margin: 5rem 0;
}
.pro .contain .more2 {
  position: absolute;
  left: 8rem;
  bottom: 0;
}
.more2 span {
  background: none;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  padding-left: 1.2rem;
}
.pro .contain .rr {
  width: 68%;
  position: relative;
}
.pro .contain .rr .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  width: 98%;
  margin: 1rem auto 0.5rem;
}
.pro .contain .rr .swiper-pagination span {
  opacity: 0.7 !important;
  background: #fff;
  margin: 7px;
}
.pro .contain2 dl {
  display: flex;
  justify-content: space-between;
}
.pro .contain2 dl dd {
  position: relative;
  width: 23%;
}
.pro .contain2 dl dd .img {
  position: relative;
  border: 1px solid #4d4d4d;
  padding: 10rem 0 0rem;
  overflow: hidden;
}
.pro .contain2 dl dd .img img {
  transition: all 0.4s ease;
}
.pro .contain2 dl dd:hover .img img {
  transform: scale(1.06);
}
.pro .contain2 dl dd .txt {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6rem 4rem;
  box-sizing: border-box;
}
.pro .contain2 dl dd .txt img {
  width: 2.6rem;
  margin-right: 1rem;
}
.pro .contain2 dl dd .txt p {
  background: #fff;
  width: 11rem;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding: 3px 1.5rem;
  font-size: 1.2rem;
  color: #cbcbcb;
  box-sizing: border-box;
}
.pro .contain2 dl dd .txt2 {
  padding: 5rem 1rem 0;
  box-sizing: border-box;
  text-align: center;
}
.pro .contain2 dl dd .txt2 h4 {
  font-size: 2.2rem;
  font-weight: 200;
  font-family: "title2";
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  position: relative;
  color: var(--color);
}
.pro .contain2 dl dd .txt2 h4::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9rem;
  height: 1px;
  transform: translateX(-50%);
  background: var(--color);
}
.pro .contain2 dl dd .txt2 p {
  font-size: 1.7rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin: 8px 0;
}
.proList.pross ul li .lls p:hover {
  color: var(--color);
}
.proList.pross .contain .ll {
  width: 35rem;
}
.proList.pross .contain .rr {
  width: calc(100% - 40rem);
}
.proList.pross ul li .lls p.active {
  color: var(--color);
}
.proList .contain dl dd {
  padding: 10rem 0 2rem 4rem;
  overflow: hidden;
}
.proList .contain dl dd a > img {
  transition: all 0.4s ease;
}
.proList .contain dl dd:hover a > img {
  transform: scale(1.06);
}
.proList .contain dl dd .txt {
  position: static;
  margin-top: 1rem;
}
.proList .contain dl dd .txt img {
  width: 2.6rem;
  margin-right: 1rem;
}
.proList .contain dl dd .txt2 {
  color: #454649;
  right: inherit;
  left: 0;
  text-align: left;
}
.proList .contain dl dd .txt2 p {
  font-size: 2.2rem;
  transition: all 0.4s linear;
}
.proList .contain dl dd:hover .txt2 p:first-of-type {
  color: var(--color);
}
.prod .bar3 h6 {
  color: var(--color);
}
.solution dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.5rem;
}
.solution dl dd {
  border: 1px solid #444648;
}
.solution dl dd .img img {
  padding: 5%;
  box-sizing: border-box;
}
.solution dl dd .tt {
  display: flex;
  padding: 2% 5%;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  background: url(../images/bg3.png) no-repeat left top/cover;
  color: #fff;
  font-size: 2rem;
}
.solution dl dd .tt img {
  width: auto;
}
.solutiond .bar3 .tt {
  display: flex;
  justify-content: space-between;
}
.solutiond .bar3 .tt .ll {
  width: 51%;
}
.solutiond .bar3 .tt p {
  margin: 1.2rem 0;
  font-size: 1.8rem;
}
.solutiond .bar3 .tt .rr {
  width: 32%;
  border: 1px solid #444648;
  padding: 0 1rem;
  box-sizing: border-box;
  margin-top: 2rem;
  height: 100%;
}
.solutiond .bar3 .tt .rr img {
  margin: 1rem 0;
}
.relation {
  margin-bottom: 15%;
}
.relation .contain {
  background: #f2f2f2;
}
.relation .box {
  display: flex;
  justify-content: space-between;
}
.relation .box .ll {
  width: 30%;
}
.relation .box .ll h6 {
  font-size: 3.6rem;
  color: #4d4d4d;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #444648;
  display: inline-block;
}
.relation .box:hover .ll h6 {
  color: var(--color);
}
.relation .box .ll p {
  font-size: 2rem;
  color: #4d4d4d;
}
.relation .box .rr {
  width: 60%;
}
.relation .title2 h2 span {
  font-size: 3.5rem;
  font-weight: normal;
  color: #4d4d4d;
}
.relation .search {
  position: static;
  justify-content: space-between;
  width: 86%;
  padding-left: 3rem;
  box-sizing: border-box;
  align-items: flex-start;
}
.relation .search i {
  width: 4.5rem;
  margin-top: 0.3rem;
}
.relation .search .bbs {
  width: 90%;
  font-size: 2.2rem;
  color: #808386;
}
.relation .search form {
  background: #fff;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.relation .search input {
  width: 100%;
  font-size: 2rem;
  letter-spacing: 1px;
  line-height: 1.3;
  padding: 1.2rem 0.5rem 1rem;
}
.relation .search input::placeholder {
  font-size: 2rem;
}
.relation .search form img {
  width: 3rem;
  height: 3rem;
}
.team0 .contain .imgs {
  bottom: -5.6rem;
}
.team {
  padding-top: 0;
}
.team .contain {
  display: flex;
  justify-content: space-between;
}
.team .contain .ll {
  width: 49%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team .contain .ll .tt1 {
  padding: 3rem 0 5rem;
}
.team .contain .ll p {
  font-size: 2rem;
  color: #808080;
  text-align: justify;
  margin-bottom: 10rem;
  line-height: 1.6;
}
.team .contain .ll .more2 {
  margin: 0 8.5rem;
}
.team .contain .ll .tt2 {
  background: #f1f1f1;
  padding: 6% 12%;
  width: 100%;
  box-sizing: border-box;
}
.team .contain .ll .tt2 p {
  margin: 1rem 0;
  display: flex;
}
.team .contain .ll .tt2 p::before {
  content: "";
  width: 12px;
  margin: 5px 2rem 0 0;
  height: 12px;
  transform: rotate(45deg);
  background: linear-gradient(to right, #fff7f6 0%, #b61d22 100%);
}
.team .contain .rr {
  width: 45%;
  position: relative;
}
.team .contain .rr .tt {
  position: absolute;
  right: 3rem;
  bottom: 3.6rem;
  z-index: 6;
  color: #fff;
  display: flex;
  align-items: center;
}
.team .contain .rr .tt p {
  font-size: 2.2rem;
  color: #fff;
  font-style: italic;
}
.team .contain .rr .tt span {
  background: var(--color);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  display: block;
  font-style: italic;
  margin-left: 1.5rem;
  font-size: 1rem;
}
.team .contain2 .swiper-slide {
  text-align: center;
}
.team .contain2 .swiper-slide b {
  display: block;
  background: linear-gradient(to bottom, #ffffff 0%, #b61d22 100%);
}
.team .contain2 .swiper-slide h4 {
  color: #fff;
  background: linear-gradient(to right, #ffa995 0%, #b61d22 100%);
  font-size: 1.3rem;
  padding: 1rem 0;
  letter-spacing: 1px;
}

.team .contain2 .swiper-slide h5 {
  background: #f1f1f1;
  padding: 5rem 0;
  font-size: 2rem;
  color: #808386;
  transition: all 0.4s ease;
}
.team .contain2 .swiper-slide:hover h5 {
  color: var(--color);
}
.team .contain3 {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.team .contain3 .ll {
  width: 49%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.team .contain3 .ll h3 {
  font-size: 3.6rem;
  color: #808386;
  line-height: 1.4;
}
.team .contain3 .ll h3 p {
  font-size: 2rem;
  color: #808080;
  text-align: right;
  border-top: 1px solid var(--color);
  padding-top: 3rem;
  margin-top: 3rem;
  font-weight: normal;
}
.team .contain3 .ll .img {
  margin-top: 10rem;
  position: relative;
}
.team .contain3 .ll .img h6 {
  color: #fff;
  background: linear-gradient(to right, #ffa995 0%, #b61d22 100%);
  font-size: 1.2rem;
  text-align: right;
  padding: 2rem 3rem;
}
.team .contain3 .ll .img h6 strong {
  font-weight: normal;
  font-size: 6.2rem;
  margin-top: -5.2rem;
  position: relative;
  z-index: 3;
  display: block;
}
.team .contain3 .rr {
  width: 45%;
  position: relative;
}
.team6 {
  padding-top: 0;
}
.team6 .contain {
  display: flex;
  justify-content: space-between;
}
.team6 .contain .ll {
  width: 45%;
  position: relative;
}
.team6 .contain .ll .tt1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.team6 .contain .ll p {
  font-size: 2rem;
  color: #808080;
  text-align: justify;
  line-height: 1.8;
}
.team6 .contain .rr {
  width: 47%;
  position: relative;
}
.team6 .contain .rr .swiper {
  background: #fff;
  height: auto;
}
.team6 .contain .rr h4 {
  z-index: 6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: linear-gradient(to right, #ffa995 0%, #b61d22 100%);
  padding: 1rem 0;
  letter-spacing: 2px;
  font-weight: normal;
}
.team6 .contain .rr h4 img {
  width: auto;
  margin-right: 1rem;
  margin-top: -3px;
}
.team6 .contain .rr .ts p {
  font-size: 2rem;
  color: #808386;
  padding: 5rem;
  background: #f1f1f1;
  text-align: center;
  box-sizing: border-box;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team6 .contain2 ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.team6 .contain2 ul li {
  width: 34rem;
  max-width: 31%;
}
.team6 .contain2 ul li img {
  width: auto;
  margin: auto;
  height: 7.3rem;
}
.team6 .contain2 ul li h3 {
  font-weight: normal;
  font-size: 2.4rem;
  color: #4d4d4d;
  margin: 5rem 0;
}
.team6 .contain2 ul li p {
  font-size: 1.7rem;
  color: #b3b3b3;
  text-align: left;
  box-sizing: border-box;
  line-height: 1.8;
}
.honor .box {
  display: flex;
  justify-content: space-between;
}
.honor .contain h3 {
  font-size: 5.1rem;
  color: var(--color);
}
.honor .box .ll {
  width: 40%;
  margin-top: 3rem;
}
.honor .box .rr {
  width: 62%;
  position: relative;
  z-index: 3;
}
.honor .contain p {
  font-size: 2.8rem;
  color: #444648;
  margin: 5rem 0;
}
.honor .contain p strong {
  font-size: 2rem;
  color: #808386;
  display: block;
  margin-top: 1rem;
  font-weight: normal;
}
.honor .contain .img {
  margin-top: -10rem;
}
.honor .contain2 .top {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 10rem auto 3rem;
}
.honor .contain2 .top img {
  width: 41%;
}
.honor .contain2 .top::after {
  content: "";
  width: 54%;
  height: 1px;
  background: var(--color);
  position: absolute;
  right: 0;
  top: 35%;
}
.honor .contain2 .top p {
  width: 40%;
  position: absolute;
  left: 0;
  top: 12%;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
}
.honor .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.honor .contain2 h3 {
  font-size: 5.1rem;
  color: var(--color);
}
.honor .contain2 .ll {
  width: 58%;
}
.honor .contain2 .rr {
  width: 37%;
}
.honor .contain2 .table {
  padding-left: 8rem;
  position: relative;
}
.honor .contain2 ul {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  width: 4rem;
}
.honor .contain2 ul li {
  font-size: 2.5rem;
  color: #4d4d4d;
}
.honor .contain2 .table .items {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border: 1px solid var(--color);
  border-right: none;
  padding: 4% 6% 0;
}
.honor .contain2 .tt {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.9rem;
  color: #808386;
  padding: 1rem 0;
}
.honor .contain2 .table .items .item {
  width: 10%;
  position: relative;
  text-align: center;
}
.honor .contain2 .table .item h2 {
  opacity: 0;
  transition: all 0.4s linear 1s;
}
.honor .contain2 .table .item .counter {
  font-size: 2.7rem;
  color: #4d4d4d;
  font-weight: 800;
  font-weight: normal;
}
.honor .contain2 .table .item .line {
  position: relative;
  width: 100%;
}
.honor .contain2 .table .item .line img {
  transform: scaleY(0);
  transition: transform 1s 0.2s ease;
  transform-origin: bottom center;
}
.honor .contain2 .table .item.active .line img {
  transform: scaleY(1);
}
.honor .contain2 .table .item.active h2 {
  opacity: 1;
}
.honor .contain2 dl {
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 2.2rem;
  color: #4d4d4d;
  padding-bottom: 0;
}
.honor .contain2 dl dd img {
  width: auto;
  margin: 0 auto 5rem;
}
.honor2 .rr dl dd {
  padding: 2% 3%;
}
.honor2 .rr dl dd img {
  padding: 0;
  margin: 0;
}
.area .contain {
  padding: 7% 5% 2%;
  box-sizing: border-box;
  position: relative;
}
.area .contain::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(182, 29, 34, 0) 0%,
    #b61d22 90%,
    #b61d22 100%
  );
}
.area .contain .t1 {
  display: flex;
  width: 78%;
  border-bottom: 1px solid #fff;
  padding-bottom: 2rem;
}
.area .contain .t1 h3 {
  font-size: 3.6rem;
  width: 40%;
  line-height: 1.4;
}
.area .contain .t1 p {
  font-size: 2rem;
  width: 58%;
  margin: 4.2rem 0 0;
}
.area .contain .search {
  position: relative;
  margin: 4rem 0;
  display: flex;
  align-items: center;
  left: inherit;
  top: inherit;
  width: inherit;
}
.area .contain .search i {
  width: 3rem;
  margin-top: 1rem;
}
.area .contain .search form {
  background: #fff;
  border: none;
  width: 150px;
}
.area .contain .search form input {
  line-height: 1.3;
  padding: 0.5rem 0 0.3rem;
}
.area .contain .t1 {
  color: #fff;
  position: relative;
  z-index: 3;
}
.area .contain .t2 {
  color: #fff;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}
.area .contain .tt {
  color: #fff;
  display: flex;
  align-items: center;
}
.area .contain .tt p {
  font-size: 2.2rem;
  color: #fff;
  font-style: italic;
}
.area .contain .tt span {
  background: var(--color);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  display: block;
  font-style: italic;
  margin-left: 1.5rem;
  font-size: 1rem;
}
.area .contain2 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 0;
}
.area .contain2 ul li {
  width: 33.3%;
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  position: relative;
}
.area .contain2 ul li:nth-of-type(3n + 1) {
  border-left: 1px solid #f1f1f1;
}
.area .contain2 ul li a > img {
  opacity: 0;
}
.area .contain2 ul li .mores img {
  width: auto;
  position: absolute;
  left: 4rem;
  bottom: 3rem;
  z-index: 8;
  width: 3rem;
  transform: rotate(-90deg);
}
.area .contain3 .imgs {
  position: relative;
}
.area .contain3 .txt {
  position: absolute;
  top: 40%;
  left: 37%;
  transform: translate(-50%, -50%);
}
.area .contain3 .txt h3 {
  font-size: 2.9rem;
  color: var(--color);
  padding-bottom: 0rem;
  margin-bottom: 3rem;
  position: relative;
}
.area .contain3 .txt h3::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(128, 130, 133, 0) 0%,
    #808285 100%
  );
}
.area .contain3 .txt h3 strong {
  font-size: 5.5rem;
  font-style: italic;
  margin: 0 1rem;
}
.area .contain3 .tt {
  text-align: right;
}
.area .contain3 .tt p {
  color: #808285;
  font-size: 1.8rem;
  margin: 6px 0;
}
.area .contain4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.area .contain4 .ll {
  width: 40%;
  padding: 3%;
  box-sizing: border-box;
}
.area .contain4 h3 {
  font-size: 3.6rem;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  display: inline-block;
  color: #808285;
}
.area .contain4 h3 strong {
  color: var(--color);
}
.area .contain4 p {
  font-size: 1.4rem;
  color: #808285;
  line-height: 1.8;
}
.area .contain4 .imgs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5rem;
  margin-left: -7%;
}
.area .contain4 .imgs img {
  width: 25%;
  padding: 5% 7%;
}
.area .contain4 .rr {
  width: 50%;
}
.area .contain5 {
  display: flex;
  justify-content: space-between;
}
.area .contain5 .ll {
  width: 34%;
  padding: 3%;
  box-sizing: border-box;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.area .contain5 h3 {
  font-size: 3.5rem;
  border-bottom: 1px solid #808285;
  padding-bottom: 4rem;
  margin-bottom: 5rem;
  color: var(--color);
  font-weight: normal;
}
.area .contain5 p {
  text-align: center;
  font-size: 2rem;
  color: #808285;
  line-height: 1.6;
  letter-spacing: 1px;
}
.area .contain5 .rr {
  width: 65%;
}
.area2 .contain {
  border: 1px solid #f1f1f1;
  padding: 2% 5%;
  box-sizing: border-box;
  margin-bottom: 16rem;
}
.area2 .contain h3 {
  color: var(--color);
  font-size: 3.6rem;
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 8rem;
  border-bottom: 1px solid #444648;
  font-family: "title2";
  font-weight: 100;
}
.area2 .contain ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6rem;
  align-items: center;
}
.area2 .contain ul li img {
  width: auto;
  margin: auto;
  max-width: 100%;
  transition: all 0.6s linear;
}
.area2 .contain ul li:hover img {
  transform: rotateY(360deg);
}
.area2 #contain27 ul li b {
  height: 10rem;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.area2 #contain35 ul {
  grid-template-columns: repeat(6, 1fr);
}
.area2 #contain35 ul li b {
  height: 6.2rem;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.area2 .contain ul li p {
  color: #808285;
  font-size: 1.3rem;
  border: 1px solid #808285;
  text-align: center;
  min-width: max-content;
  width: 100%;
  margin-top: 0.5rem;
}
.area2_bar3 .contain .imgs {
  bottom: -16rem;
}
.area2_bar3 {
  padding-top: 0;
}
.area2_bar4 .contain {
  padding-top: 0;
}
.area2_bar4 .contain p {
  font-size: 2rem;
  color: #808285;
  line-height: 1.8;
}
.area2_bar4 .contain p img {
  margin: 15rem 0;
  max-width: 100%;
}
.area3 .contain .box {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.area3 .contain {
  background: #f1f1f1;
}
.area3 .contain .ll {
  width: 48.2%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.area3 .contain .rr {
  width: 70%;
  position: relative;
}
.area3 .contain .rr .txt {
  position: absolute;
  left: 26%;
  top: 50%;
  width: 66%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 7;
}
.area3 .contain .rr h3 {
  font-size: 4rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #fff;
  font-family: "title2";
  font-weight: 100;
  line-height: 1.3;
}
.area3 .contain .rr p {
  font-size: 1.4rem;
  line-height: 1.8;
}
.area3 .contain .rr .bg img {
  width: auto;
  position: absolute;
  right: 4rem;
  top: 3rem;
}
.area3 .contain2 .box {
  position: relative;
  margin: 8rem 0;
}
.area3 .contain2 .ll {
  width: 80%;
  position: relative;
}
.area3 .contain2 .ll p {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  text-align: center;
}
.area3 .contain2 .rr {
  width: 78%;
  position: absolute;
  z-index: 9;
  right: 0;
  top: 20%;
}
.area3 .contain2 .rr .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
}
.area3 .contain2 .rr .txt .tt {
  width: 75%;
}
.area3 .contain2 .rr .txt b {
  max-width: 30%;
}
.area3 .contain2 .rr .txt p {
  color: #808285;
  font-size: 2rem;
}
.area3 .contain3 {
  display: flex;
  justify-content: space-between;
}
.area3 .contain3 .ll {
  width: 47%;
  position: relative;
}
.area3 .contain3 p {
  font-size: 2rem;
  color: #808080;
  text-align: justify;
  margin: 6rem 0;
  line-height: 1.8;
}
.area3 .contain3 .rr {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.area3 .contain3 .rr .swiper {
  width: 82%;
  margin: 0% auto 0;
}
.news0 .contain .imgs {
  max-width: 32%;
}
.news .contain ul {
  display: flex;
  gap: 4rem 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news .contain ul li {
  width: 48.5%;
}
.news .contain ul li a {
  color: #444648;
}
.news .contain ul li .imgs {
  overflow: hidden;
}
.news .contain ul li .imgs img {
  transition: all 0.4s linear;
}
.news .contain ul li:hover .imgs img {
  transform: scale(1.06);
}
.news .contain ul li .txt {
  background: #f1f1f1;
  padding: 5% 7%;
  box-sizing: border-box;
}
.news .contain ul li .top {
  display: flex;
  align-items: center;
}
.news .contain ul li .top h6 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-right: 4rem;
}
.news .contain ul li .top img {
  width: auto;
  margin-right: 0.8rem;
}
.news .contain ul li h4 {
  margin: 1.5rem 0 2rem;
  font-size: 2.2rem;
  font-weight: 100;
  line-height: 1.3;
  transition: all 0.4s linear;
  letter-spacing: 1px;
}
.news .contain ul li:hover h4 {
  color: var(--color);
}
.news .contain ul li p {
  font-size: 1.3rem;
  color: #808386;
  line-height: 1.8;
}
.more3 {
  font-size: 1.2rem;
  border: 1px solid var(--color);
  display: inline-block;
  padding: 0.8rem 2.5rem;
  margin-top: 2rem;
  transition: all 0.4s linear;
}
.more3:hover {
  background: var(--color);
  color: #fff;
}
.newsd .bar1 img {
  width: auto;
  max-width: 100%;
}
.newsd .bar1 p {
  margin: 10rem 0;
}
.sustainably0 .contain .imgs {
  bottom: -11rem;
}
.sustainably .contain {
  background: #f1f1f1;
}
.sustainably .contain .box {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 4% 4% 0 0%;
  box-sizing: border-box;
  align-items: flex-end;
}
.sustainably .contain .bg img {
  position: absolute;
  right: 5%;
  top: 0;
  width: auto;
  max-width: 100%;
}
.sustainably .contain .ll {
  width: 58%;
  position: relative;
  margin: 0rem 0 6rem;
}
.sustainably .contain .ll::after {
  content: "";
  width: 100%;
  height: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #ffa995, #b41f22);
}
.sustainably .contain .ll ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sustainably .contain .ll ul li {
  width: 46%;
  margin-bottom: 1rem;
}
.sustainably .contain .ll ul li:nth-of-type(2) {
  margin-top: 14rem;
}
.sustainably .contain .ll ul li > img {
  margin-bottom: 5rem;
}
.sustainably .contain .ll dl {
  display: flex;
  flex-wrap: wrap;
  width: 17rem;
  gap: 2rem;
}
.sustainably .contain .ll dl dd {
  width: 40%;
}
.sustainably .contain .ll dl dd img {
  width: auto;
}
.sustainably .contain .ll p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #c9caca;
  line-height: 1.8;
  margin: 5rem 0 10rem;
}
.sustainably .contain .ll h6 {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  color: #808386;
  font-weight: 100;
  font-family: "title2";
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color);
  margin-bottom: 10rem;
}
.sustainably .contain .ll h6 img {
  width: auto;
  margin-right: 2rem;
  max-width: 30%;
}
.sustainably .contain .rr {
  width: 32%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.sustainably .contain .rr .swiper-slide {
  position: relative;
}
.sustainably .contain .rr p {
  position: absolute;
  left: 3rem;
  bottom: 5rem;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
}
.sustainably .contain .swiper-pagination {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 92%;
  margin: 2.5rem auto;
  justify-content: space-between;
  bottom: inherit;
}
.sustainably .contain .swiper-pagination span {
  width: 30%;
  height: 1px;
  opacity: 1;
  background: #808386;
}
.sustainably .contain .swiper-pagination-bullet-active {
  background: var(--color) !important;
}
.sustainably .contain2 .tto p {
  font-size: 2rem;
  color: #b3b3b3;
  text-align: center;
  margin: 1rem 0;
}
.sustainably .contain2 ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.sustainably .contain2 ul li {
  width: 34rem;
  max-width: 31%;
}
.sustainably .contain2 ul li img {
  width: auto;
  margin: auto;
  max-width: 100%;
}
.sustainably .contain2 ul li h3 {
  font-weight: normal;
  font-size: 2.2rem;
  color: #4d4d4d;
  margin: 5rem 0;
}
.sustainably .contain2 ul li p {
  font-size: 1.6rem;
  color: #b3b3b3;
  text-align: left;
  box-sizing: border-box;
  line-height: 1.8;
  text-align: center;
}
.job0 .contain .imgs {
  bottom: -8rem;
}
.job .contain {
  background: #f1f1f1;
}
.job .contain .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job .contain .ll {
  width: 36%;
}
.job .contain .ll h3 {
  color: var(--color);
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 5rem;
}
.job .contain .ll p {
  font-size: 1.9rem;
  line-height: 1.8;
  color: #808386;
}
.job .contain .search {
  position: relative;
  left: inherit;
  top: inherit;
  margin-top: 10rem;
  padding: 0;
  width: max-content;
}
.job .contain .search i {
  margin-top: 0.5rem;
}
.job .contain .search form {
  background: #fff;
  border: none;
}
.job .contain .search form input {
  letter-spacing: 2px;
  line-height: 1.9;
}
.job .contain .rr {
  width: 45%;
}
.job .contain2 {
  padding-bottom: 0;
}
.job .contain2 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f1f1;
  margin: 10rem 0 0;
}
.job .contain2 ul li:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.job .contain2 .ll {
  width: 50%;
}
.job .contain2 .rr {
  width: 50%;
  padding: 3% 7.5%;
  box-sizing: border-box;
}
.job .contain2 h4 {
  font-size: 3.6rem;
  color: #444648;
}
.job .contain2 h5 {
  font-size: 2rem;
  color: #808386;
  margin-bottom: 3rem;
}
.job .contain2 p {
  font-size: 1.6rem;
  color: #808386;
  line-height: 1.8;
  text-align: justify;
}
.job2 .contain .imgs {
  bottom: -10rem;
}
.job3 .contain h4 {
  text-align: center;
  font-size: 3.6rem;
  color: #808386;
  font-family: "title2";
  font-weight: normal;
  margin-bottom: 3rem;
}
.job3 .contain {
  background: #f1f1f1;
  padding: 3% 6%;
  box-sizing: border-box;
}
.job3 .contain ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.job3 .contain ul li {
  background: #fff;
  padding: 8% 10%;
  box-sizing: border-box;
  border-radius: 10px;
}
.job3 .contain ul li .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.1rem;
  color: #808386;
  transition: all 0.4s ease;
}
.job3 .contain ul li:hover .top {
  color: var(--color);
}
.job3 .contain ul li .top img {
  width: auto;
}
.job3 .contain .search {
  position: relative;
  left: inherit;
  top: inherit;
  margin-top: 3rem;
  padding: 0;
  width: max-content;
}
.job3 .contain .search i {
  margin-top: 0.8rem;
  margin-right: 0;
}
.job3 .contain .search form {
  border-color: #e6e6e6;
  margin: 0 0 0 1.5rem;
}
.job3 .contain .search form input {
  letter-spacing: 2px;
  line-height: 1.7;
  width: 10rem;
}

.joba_1 .contain .bb1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.joba_1 .contain .bb1 h3 {
  font-size: 3.4rem;
  color: #808285;
  border-bottom: 1px solid var(--color);
  font-weight: 100;
  font-family: "title2";
  padding: 0 1rem 2rem;
  margin-bottom: 10rem;
}
.joba_1 .contain ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
.joba_1 .contain ul li {
  border: 1px solid #808285;
  padding: 8% 11%;
  box-sizing: border-box;
}
.joba_1 .contain ul li h4 {
  font-size: 2.4rem;
  color: #808285;
  font-family: "title2";
  font-weight: 100;
  line-height: 1.3;
  transition: all 0.4s linear;
  letter-spacing: 1px;
}
.joba_1 .contain ul li:hover h4 {
  color: var(--color);
}
.joba_1 .contain ul li .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
}
.joba_1 .contain ul li .top h6 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--color);
  font-weight: normal;
}
.joba_1 .contain ul li .top img {
  width: auto;
  margin-right: 0.8rem;
}

.joba_1 .contain ul li p {
  font-size: 1.3rem;
  color: #808285;
  line-height: 1.6;
  margin: 1rem 0;
}
.joba_1 .contain ul li h5 {
  font-size: 2rem;
  color: #808285;
  font-family: "title2";
  font-weight: 100;
  margin: 2rem 0;
}
.joba_1 .contain ul li .bot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  margin-top: 2rem;
  color: #808285;
  font-size: 1.6rem;
  position: relative;
}
.joba_1 .contain ul li .bot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 12px;
  background: url(../images/line.png) no-repeat center right/cover;
}
.joba_1 .contain ul li .bot a {
  color: var(--color);
  font-size: 1.8rem;
}
.jobb_0 .contain .imgs {
  bottom: -11rem;
}
.jobb_1 {
  background: #f1f1f1;
  margin-bottom: 12%;
}
.jobb_1 .title2 h2 span {
  font-size: 3.5rem;
  font-weight: normal;
  color: #4d4d4d;
}
.jobb_1 .search {
  position: static;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
  margin: 5rem 0;
}
.jobb_1 .search i {
  width: 4.5rem;
  margin-top: 0.9rem;
}
.jobb_1 .search .bbs {
  width: 90%;
  font-size: 2rem;
  color: #808386;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jobb_1 .search .bbs span {
  width: 18%;
  color: #4d4d4d;
  font-family: "title2";
}
.jobb_1 .search form {
  background: #fff;
  width: 80%;
  margin: 0;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.jobb_1 .search input {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 63px;
  padding: 0.3rem 0.5rem 0rem;
}
.jobb_1 .search input::placeholder {
  font-size: 1.7rem;
}
.jobb_1 .search form img {
  width: 3.4rem;
  height: 3.4rem;
}
.jobb_1 .contain2 {
  display: flex;
  justify-content: space-between;
}
.jobb_1 .contain2 .ll {
  width: 32%;
}
.jobb_1 .contain2 h4 {
  font-size: 3.6rem;
  color: #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 3rem;
  margin: 1rem 0 4rem;
  display: inline-block;
}
.jobb_1 .contain2 h5 {
  font-size: 2.5rem;
  color: #4d4d4d;
  font-weight: normal;
  line-height: 1.4;
}
.jobb_1 .contain2 .tt {
  margin: 8rem 0;
}
.jobb_1 .contain2 p {
  color: #808285;
  font-size: 2rem;
  margin: 1rem 0;
  padding-left: 2rem;
  position: relative;
}
.jobb_1 .contain2 p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 4px;
  height: 4px;
  background: #808285;
  border-radius: 50%;
}
.jobb_1 .contain2 ul {
  display: flex;
  align-items: center;
}
.jobb_1 .contain2 ul li {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  font-size: 1.6rem;
  border-radius: 50px;
  color: #fff;
  border: 1px solid #f1f1f1;
  padding: 1rem 3rem;
  background: linear-gradient(to right, #ffa995, #b41f22);
}
.jobb_1 .contain2 ul li img {
  width: auto;
  margin-right: 1rem;
  max-width: 2.5rem;
}
.jobb_1 .contain2 ul li:nth-of-type(2) {
  background: none;
  border-color: var(--color);
  color: #4d4d4d;
}
.jobb_1 .contain2 .rr {
  width: 65%;
}
.factory .contain {
  padding: 5% 5%;
}
.factory .contain::before {
  width: 70%;
  background: linear-gradient(to left, rgba(182, 29, 34, 0) 0%, #b61d22 100%);
}

.factory .contain .t1 {
  display: block;
  border: none;
  width: 50%;
  padding: 0;
}
.factory .contain .t1 h3 {
  width: 100%;
  font-size: 3.6rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 3rem;
}
.factory .contain .t1 p {
  font-size: 2rem;
  width: 100%;
  margin-top: 3rem;
}
.factory .contain .t2 {
  position: absolute;
  right: 4.5%;
  top: 19%;
}
.factory2 .contain {
  position: relative;
}
.factory2 .contain .bg img {
  width: auto;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: -30%;
  transform: translateX(-50%);
  z-index: 2;
}
.factory2 .contain ul {
  display: flex;
  background: linear-gradient(to right, #ffa894 0%, #b31f22 100%);
}
.factory2 .contain ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  font-size: 2.2rem;
  color: #fff;
  height: 130px;
  position: relative;
}
.factory2 .contain ul li::after {
  content: "";
  width: 1px;
  height: 48px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.factory2 .contain ul li:last-of-type:after {
  display: none;
}
.factory2 .contain ul li img {
  width: auto;
  margin-right: 1rem;
}
.factory2 .contain dl {
  justify-content: space-between;
  display: flex;
  position: relative;
  z-index: 6;
  margin: 15rem auto;
}
.factory2 .contain dl dd {
  width: 33.3%;
  background: #f1f1f1;
}
.factory2 .contain dl dd .imgs {
  position: relative;
}
.factory2 .contain dl dd .imgs span {
  position: absolute;
  left: 3rem;
  bottom: 2.5rem;
  padding: 0.8rem 10rem 0.8rem 2rem;
  border-radius: 50px;
  background: linear-gradient(to left, rgba(179, 31, 34, 0) 0%, #b31f22 100%);
}
.factory2 .contain dl dd .imgs span img {
  width: auto;
}
.factory2 .contain dl dd .tt {
  padding: 6% 8%;
  box-sizing: border-box;
  position: relative;
}
.factory2 .contain dl dd .tt img {
  position: absolute;
  left: 5rem;
  bottom: 0;
  width: auto;
  height: 84%;
  max-height: 100%;
}
.factory2 .contain dl dd h4 {
  color: #afafaf;
  font-size: 2.2rem;
  font-weight: 100;
  font-style: italic;
  padding-bottom: 12.4rem;
}
.factory2 .contain dl dd h6 {
  font-size: 2.2rem;
  font-weight: 100;
  position: absolute;
  right: 5rem;
  bottom: 3rem;
  color: #4d4d4d;
  font-family: "title2";
}
.factory2 .contain2 .tops {
  display: flex;
  justify-content: flex-end;
  padding-top: 0;
  overflow: initial;
  z-index: 999;
  position: relative;
}
.factory2 .contain2 .tops .fbb {
  position: relative;
  padding-bottom: 1rem;
}
.factory2 .contain2 .tops h6 {
  color: var(--color);
  font-size: 2.2rem;
  font-weight: 100;
  font-family: "title2";
  display: flex;
  align-items: center;
  border: 1px solid #969696;
  border-radius: 50px;
  padding: 0.8rem 3rem;
  letter-spacing: 1px;
}
.factory2 .contain2 .tops h6::after {
  content: "";
  width: 0px;
  display: block;
  height: 0px;
  border-top: 10px solid var(--color);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  margin-left: 1rem;
  margin-top: 0.5rem;
}
.factory2 .contain2 .tops .a_smenu {
  top: 50px;
  min-width: 65%;
  left: inherit;
  right: 0;
  transform: none;
  cursor: pointer;
}
.factory2 .contain2 .swiper {
  border: 1px solid #454649;
}
.factory2 .contain2 .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.factory2 .contain2 .swiper-slide .ll {
  width: 32%;
  text-align: center;
  padding-bottom: 5%;
}
.factory2 .contain2 .swiper-slide h3 {
  font-size: 3.6rem;
  color: #4d4d4d;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  display: inline-block;
  border-bottom: 1px solid var(--color);
}
.factory2 .contain2 .swiper-slide .ll p {
  font-size: 2rem;
  color: #4d4d4d;
  line-height: 1.8;
}
.factory2 .contain2 .swiper-slide .rr {
  width: 66%;
}
.factory2 .btn {
  display: flex;
  align-items: center;
  position: absolute;
  left: 3%;
  bottom: 4%;
  z-index: 9;
}
.factory2 .btn .bb {
  margin: 0 1rem;
  cursor: pointer;
}
.factory2 .btn .br {
  transform: rotate(180deg);
  border-right: 1px solid #cbcbcb;
  padding-right: 2rem;
}
.factory2 .btn p {
  font-size: 1.2rem;
  color: #cbcbcb;
  margin-left: 1.5rem;
  line-height: 1.3;
}
.factory2 .contain3 {
  padding-bottom: 0;
}
.factory2 .contain3 img {
  max-width: 100%;
  width: auto;
}
.factory2 .contain4 .tops {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.factory2 .contain4 .tops h6 {
  color: #808184;
  font-size: 2.2rem;
  font-weight: 100;
  font-family: "title2";
  display: flex;
  align-items: center;
  border: 1px solid #969696;
  border-radius: 50px;
  padding: 0.8rem 3rem;
  letter-spacing: 1px;
}
.factory2 .contain4 .tops .btn {
  position: static;
}
.factory2 .contain4 .swiper {
  padding: 5% 0 3%;
}
.factory2 .contain4 .swiper-slide {
  text-align: center;
  position: relative;
}
.factory2 .contain4 .swiper-slide b {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.factory2 .contain4 .swiper-slide img {
  position: relative;
  z-index: 2;
  padding: 1.5%;
  box-sizing: border-box;
}
.factory2 .contain4 .swiper-slide b::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: url(../images/factory2_bar4Bg.png) no-repeat top left/cover;
}
.factory2 .contain4 .swiper-slide p {
  font-size: 1.8rem;
  color: #969696;
  margin-top: 3rem;
}
.factory2 .contain4 .txt p {
  color: #808080;
  font-size: 2rem;
  margin: 5rem 0;
  line-height: 1.8;
}
.factory2 .containss{
    display: none;
}
.area0 .contain .imgs,
  .area3_0 .contain .imgs,
  .joba_0 .contain .imgs  {
  bottom: -13.8rem;
}
.culture .contain .imgs{
     bottom: -13.6rem;
}
.area2_0 .contain .imgs {
    bottom: -13.8rem;
    right: -3.7rem;
  }