/* 6px --- 0.375rem
8px --- 0.5rem
10px --- 0.625rem
12px --- 0.75rem
14px --- 0.875rem
1rem --- 1rem 
18px --- 1.125rem 
20px --- 1.25rem 
24rem --- 1.5rem 
26rem --- 1.65rem
28rem --- 1.75rem
30rem --- 1.875rem
32rem --- 2rem */

:root {
  --bs-screen-xxl: 85.2%;
}

*,
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  color: #000;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-weight: bold;
  font-size: 3.13rem;
  color: #000000;
  margin-bottom: 6rem;
  /* line-height: 2.38rem; */
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-weight: bold;
  font-size: 1.63rem;
  color: #2a9597;
  line-height: 2.84rem;
  text-align: center;
}

h5 {
  width: 17.88rem;
  font-weight: 400;
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1.6rem;
  /* text-align: left; */
}

p {
  font-size: 1rem;
  color: #1f1f1f;
}

/* 按钮交互 */

.btn-interaction:hover {
  -webkit-animation: headShake 0.8s;
  animation: headShake 0.8s;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

/* header */
.header {
  position: absolute;
  top: 0rem;
  z-index: 10;
  width: 100%;
}

nav {
  width: 100%;
  height: 6.5rem;
}

.nav-logo {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  /* width: 5.81rem; */
  height: 1.69rem;
}

.header-search {
  width: 12.78rem;
  height: 2.56rem;
  border-radius: 0.19rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 0.5rem 0.88rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-search input {
  background: transparent;
  outline: none;
  border: none;
  width: calc(100% - 2rem);
  color: #fff;
}

.header-search img {
  display: block;
  width: 1.75rem;
}

.nav-right {
  width: 73%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-lang {
  height: 100%;
  color: #FFFFFF;
  display: flex;
  cursor: pointer;
  position: relative;

}

#header-lang__content {
  /* border-left: 1px solid #FFF; */
  /* padding: 1rem 0rem; */
  display: flex;
  width: 100%;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.25rem;

}

#header-lang__content p {
  color: #FFFFFF;
  font-size: 0.88rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header-lang__content img {
  width: 1.44rem;
  margin-right: 0.44rem;
}

.header-lang__flag {
  background-image: url('../assets/img/lang.gif');
  position: relative;
  display: block;
  background-repeat: no-repeat;
  width: 1.325rem;
  height: 1rem;
  margin-right: 0.3rem;
}

.header-lang__en .header-lang__flag {
  background-position: 0 -256px !important
}

/* .header .header-lang {
  display: none;
} */

#header-lang__menus {
  /* width: 100%; */
  display: none;
  background-color: #FFF;
  color: #000;
  position: absolute;
  top: 6.5rem;
  left: 0rem;
  box-shadow: 0px 0px 0.875rem #0000006e;
  box-sizing: border-box;
  z-index: 120;
}

#header-lang__menus li {
  box-sizing: border-box;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dfdcdc;
}

#header-lang__menus li p {
  color: #1b1b1b;
}

.header-lang__triangle {
  font-size: 1rem;
  display: inline-block;
  transition: all .2s;

}

.header-lang:hover #header-lang__menus {
  display: block;
}

.header-lang:hover .header-lang__triangle {
  transform: rotate(-90deg);
}

/* menu */
.header-main {
  height: 4.06rem;
  border-bottom: 1px solid #434343;
  border-top: 1px solid #434343;
}

.header-menus {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-menus>li {
  margin: 0 1rem;
  height: 100%;
}

.header-menus>li>.header-menu>a {
  font-weight: bold;
  font-size: 1.13rem;
  color: #FFFFFF;
  line-height: 4.06rem;
}

.header-menus>li:hover>.header-menu>a {
  color: #6FBA2C;
}

.header-menu_childrenMenu {
  position: absolute;
  display: none;
}

.header-menus>li:hover .header-menu_childrenMenu {
  display: block;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;

}

.header-menu i {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.header-menu_childrenMenu {
  position: absolute;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  padding: 1.3rem 0;
}

.header-menu_twoMenu {
  /* width: 73%; */
  width: fit-content;
  /* padding-right: 10rem; */
  padding-left: 16rem;
  /* padding-right: 5rem; */
  margin-left: 15rem;
  /* margin: 0 auto; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #A0A0A0;
  position: relative;
}

.header-menu_twoMenu--item {
  width: 100%;
  text-align: left;
  padding-right: 5rem;
}

.header-menu_twoMenu--item a {
  font-weight: 500;
  font-size: 1.13rem;
  color: #090801;
  line-height: 2.26rem;
}

.header-menu_threeMenu {
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: 3rem;
  display: none;
}

.header-menu_twoMenu--item:hover>.header-menu a,
.header-menu_twoMenu--item:hover i {
  color: #6FBA2C;
}

.header-menu_twoMenu--item:hover .header-menu_threeMenu {
  display: block;
}

.menu-img {
  position: absolute;
  top: 0;
  left: -30rem;
  display: block;
  height: 10rem;
}

.header-menu__control {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  height: 100%;
  margin-left: 2.5rem;
}

#header-menu__expand {
  display: none;
  margin-right: 1rem;
  font-size: 3rem;
  color: #FFFFFF;
}



/* .banner */
.banner {
  width: 100%;
  height: 58.88rem;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner_item {
  position: relative;
  width: 100%;
  height: 100%;
  
  background-size: 100% 100%;
  overflow: hidden;
}

.content_center {
  width: 88.81rem;
  margin: 0 auto;
}

.banner_item_content {
  margin-top: 18.44rem;
}

.banner_item_content h6 {
  width: 47.81rem;
  font-family: Arial;
  font-weight: bold;
  font-size: 3.26rem;
  color: #ffffff;
}

.banner_item_content p {
  width: 39.06rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.19rem;
  color: #ffffff;
  margin-top: 1.06rem;
}

.banner_item_content a {
  display: inline-block;
  width: 14.13rem;
  height: 3.94rem;
  line-height: 3.94rem;
  text-align: center;
  background: #6fba2c;
  border-radius: 0.31rem;
  margin-top: 3rem;
  color: #fff;
}

.banner_item_footer {
  position: absolute;
  bottom: 0;
  display: flex;
  height: 7.75rem;
}

.banner_item_footer_one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.75rem;
  padding-left: 16.06rem;
  width: 38vw;
  height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.banner_item_footer_two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.75rem;
  padding-left: 2.94rem;
  width: 25vw;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner_item_footer_three {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 16.44rem;
  padding-left: 1.88rem;
  width: 37vw;
  height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.banner_item_footer_one:hover {
  border-top-color: #6fba2c;
}

.banner_item_footer_two:hover {
  border-top-color: #6fba2c;
}

.banner_item_footer_three:hover {
  border-top-color: #6fba2c;
}

.footer_one_title {
  height: 2.8rem;
  font-family: Arial;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
  /* margin-right: 15vw; */
}

.footer_one_title_two {
  height: 2.8rem;
  font-family: Arial;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
  /* margin-right: 8.38rem; */
}

.footer_one_title_three {
  height: 2.8rem;
  font-family: Arial;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
  /* margin-right: 14.75rem; */
}

.border_radius {
  width: 3.38rem;
  height: 3.38rem;
  line-height: 3.38rem;
  text-align: center;
  border: 1px solid #a2a4a0;
  border-radius: 50%;
}

.border_radius .ri-arrow-right-line {
  font-size: 1.4rem;
  color: #fff;
}

/* product */
.product {
  width: 100%;
  height: 75.44rem;
  background-image: url(../assets/img/Product.png);
  background-position: 0 -2.8rem;
  background-repeat: no-repeat;
  background-size: 49.94rem 9.19rem;
  position: relative;
}

.product-img {
  position: absolute;
  left: 0;
  top: 0;
}

.dotted {
  margin-top: 6.38rem;
  width: 100%;
}

.product_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -1.4rem;
}

.product_title h6 {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1.22rem;
  color: #292929;
}

.product_search {
  width: 15.19rem;
  height: 4.69rem;
  line-height: 4.69rem;
  text-align: center;
  border-top: 1px solid #1b1b1b;
  border-bottom: 1px solid #1b1b1b;
  font-family: PingFang SC;
  font-weight: 800;
  font-size: 1.8rem;
  color: #292929;
  margin-top: 1.88rem;
}

.product_title p {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #292929;
  margin-top: 1.75rem;
}

.product_menu {
  display: flex;
  justify-content: space-between;
  height: 55.81rem;
  margin-top: 2.44rem;
}

.product_menu_item {
  position: relative;
  width: 20%;
  overflow: hidden;
  /* width: 23.77rem; */
  height: 100%;
  background: #f8f8f9;
  padding-top: 3.75rem;
}

.product_menu_item_title {
  width: 19.44rem;
  margin-left: 1.81rem;
}

.product_menu_item_title h6 {
  font-family: PingFang SC;
  font-weight: bold;
  font-size: 1.25rem;
  color: #363636;
}

.product_menu_item_title p {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #707070;
  margin-top: 0.4rem;
}

.oneImg {
  position: absolute;
  top: 19.13rem;
  left: 48%;
  /* left: 12.31rem; */
  width: 15.5rem;
  height: 24.88rem;
}

.threeImg {
  position: absolute;
  top: 17.69rem;
  left: 48%;
  /* left: 10.88rem; */
  width: 17.06rem;
  height: 25.56rem;
}

.fourImg {
  position: absolute;
  top: 17.25rem;
  left: 48%;
  /* left: 11.06rem; */
  width: 14.56rem;
  height: 26.5rem;
}

.fiveImg {
  position: absolute;
  top: 17rem;
  left: 48%;
  /* left: 12.81rem; */
  width: 10.75rem;
  height: 27rem;
}

.product_menu_item_title a {
  display: none;
  width: 2.13rem;
  height: 2.13rem;
  line-height: 2.13rem;
  text-align: center;
  background-color: #6fba2c;
  border-radius: 50%;
  margin-top: 1.5rem;
}

.product_menu_item_title a .ri-arrow-right-line {
  font-size: 1.4rem;
  color: #fff;
}

.triangle {
  display: none;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 7.6rem solid transparent;
  border-right: 11.88rem solid #6fba2c;
  border-left: 11.88rem solid transparent;
  border-bottom: 7.6rem solid #6fba2c;
}

.product_menu_item:hover .product_menu_item_title {
  text-align: center;
  margin-top: 5.31rem;
  transition-duration: 1s;
}

.product_menu_item:hover .product_menu_item_title h6 {
  color: #6fba2c;
  transition-duration: 1s;
}

.product_menu_item:hover .product_menu_item_title a {
  display: inline-block;
  transition-duration: 1s;
}

.product_menu_item:hover img {
  width: 13.31rem;
  height: 16.19rem;
  top: 22.44rem;
  left: 4.81rem;
  transition-duration: 1s;
}

.product_menu_item:hover .triangle {
  display: block;
  transition-duration: 1s;
}

/* aboutUs */
.aboutUs {
  position: relative;
  width: 100%;
  height: 60.25rem;
  overflow: hidden;
}

.aboutUs_left {
  position: absolute;
  top: 11.19rem;
  left: 13.9%;
  /* left: 16.13rem; */
  z-index: 2;
}

.aboutUs_left h6 {
  font-family: PingFang SC;
  font-weight: 300;
  font-size: 3.75rem;
  color: #1c1c1c;
}

.aboutUs_left p {
  width: 42.38rem;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #1c1c1c;
  margin-top: 1.56rem;
  width: 43%;
}

.aboutUs_left_menu {
  display: flex;
  justify-content: space-between;
  width: 54rem;
  height: 11.25rem;
  padding-top: 3.44rem;
  padding-left: 5rem;
  padding-right: 1.31rem;
  background: #ffffff;
  box-shadow: 0rem 0rem 2rem 0rem rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  border-top: 0.31rem solid #6fba2c;
}

.aboutUs_left_menu_item {}

.aboutUs_left_menu_item span {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #3a3a3a;
}

.aboutUs_left_menu_item h3,
.aboutUs_left_menu_item h3 span {
  font-family: FS Industrie Condensed;
  font-weight: 500;
  font-size: 3.2rem;
  color: #333333;
}

.menu_itemcenter {
  text-align: center;
}

.line {
  width: 0.06rem;
  height: 5.63rem;
  background: #e5e5e5;
}

.aboutUs_left a {
  display: inline-block;
  width: 9.56rem;
  height: 3.31rem;
  line-height: 3.31rem;
  text-align: center;
  border: 1px solid #313131;
  color: #000;
  margin-top: 4.5rem;
  position: relative;
}

.aboutUs_left a::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  left: 7.88rem;
  top: 1.63rem;
  width: 4.63rem;
  height: 0.06rem;
  background: #313131;

}

.aboutUs_right {
  position: absolute;
  top: 0;
  right: 0;
  width: 46.5%;
  height: 60.25rem;
  overflow: hidden;
}

.aboutUs_right img {
  width: 100%;
  height: 100%;
}

.aboutUs_right img:hover {
  transform: scale(1.2);
  transition-duration: 1s;
}

.aboutUs_doenLoad {
  position: absolute;
  top: 45.38rem;
  left: 49.88rem;
  width: 15rem;
  height: 15rem;
}

/* news */
.news {
  position: relative;
  display: flex;
  width: 100%;
  height: 67.5rem;
  background-image: url(../assets/img/摄图网_600407027_熔化铸造技术（非企业商用）.png);
  background-size: 100% 100%;
  overflow: hidden;
}

.news .content_center {
  position: relative;
  height: 100%;
}

.news_left {
  margin-top: 8.31rem;
  /* margin-left: 16.44rem; */
}

.news_left h3 {
  font-family: PingFang SC;
  font-weight: bold;
  font-size: 3.75rem;
  color: #6fba2c;
}

.news_left_line {
  width: 50.19rem;
  height: 0.06rem;
  background: #ffffff;
  opacity: 0.51;
  margin-top: 1.94rem;
}

.news_left_content {
  margin-left: 6rem;
  margin-top: 3.75rem;
}

.shell_img {
  width: 28.75rem;
  height: 14.75rem;
  overflow: hidden;
}

.shell_img img {
  width: 100%;
  height: 100%;
}

.shell_img img:hover {
  transform: scale(1.2);
  transition-duration: 1s;
}

.news_left_content_desc {
  display: flex;
  margin-top: 1.94rem;
}

.content_desc_time {
  width: 5.23rem;
  height: 3.2rem;
  padding-right: 0.56rem;
  border-right: 0.06rem solid #dcdcdc;
}

.content_desc_time h6 {
  width: 4.63rem;
  font-family: PingFang SC;
  font-weight: bold;
  font-size: 1.54rem;
  color: #ffffff;
}

.content_desc_time p {
  width: 4.63rem;
  text-align: end;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  margin-top: 0.06rem;
}

.content_desc_c {
  margin-left: 1.56rem;
}

.content_desc_c p {
  width: 24.44rem;
  height: 2.81rem;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.81rem;
  margin-bottom: 1.19rem;
}

.content_desc_c span {
  height: 2.81rem;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
}

.news_left_greenline {
  width: 11.31rem;
  height: 0.13rem;
  background: #6fba2c;
  margin-top: 1.94rem;
}

.more {
  display: block;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  margin-top: 1.5rem;
}

.more:hover {
  animation: headShake 1s;
  color: #6FBA2C;
}

.news_PImg {
  position: absolute;
  bottom: 16.63rem;
  left: 0.81rem;
  width: 42.44rem;
  height: 12.63rem;
}

.news_right_line {
  position: absolute;
  left: 50.19rem;
  top: 0;
  width: 0.06rem;
  height: 67.5rem;
  background: #ffffff;
  opacity: 0.51;
}

.news_right {
  position: absolute;
  top: 16.24rem;
  right: 1.45rem;
  /* left: 61.25rem; */
}

.news_right_item {
  display: flex;
  margin-top: 1.44rem;
}

.news_right_item_time h6 {
  font-family: PingFang SC;
  font-weight: bold;
  font-size: 1.54rem;
  color: #ffffff;
}

.news_right_item_time p {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  margin-top: 0.06rem;
  text-align: end;
}

.news_right_item_right {
  width: 37.13rem;
  height: 7.65rem;
  margin-left: 0.99rem;
  padding-left: 1.44rem;
  border-bottom: 0.06rem solid rgba(255, 255, 255, 0.51);
}

.news_right_item_right h6 {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
}

.news_right_item_right p {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 0.88rem;
  color: #ffffff;
  margin-top: 1.22rem;
}

.news_right_item:hover p,
.news_right_item:hover h6,
.news_left_content--link:hover p,
.news_left_content--link:hover h6,
.news_left_content--link:hover span {
  color: #6FBA2C;
}

.news_contactUs {
  /* position: absolute;
  bottom: 0; */
  width: 100%;
  height: 12.44rem;
  /* padding-left: 15.94rem;
  padding-right: 16.44rem; */
  background: #6fba2c;
}

.news_contactUs_content {
  /* width: 100%; */
  display: flex;
  padding-top: 2.38rem;
}

.news_contactUs_content h3 {
  font-family: Arial;
  font-weight: bold;
  font-size: 2.5rem;
  color: #ffffff;
}

.news_contactUs_form {
  margin-left: 4.69rem;
}

.news_contactUs_form_H {
  display: flex;
  justify-content: space-between;
  width: 50.9rem;
  margin-bottom: 1.25rem;
}

.news_contactUs_form_H input {
  width: 24.95rem;
  height: 3.31rem;
  background: #ffffff;
  border-radius: 0.19rem;
  border: none;
  outline: none;
  padding-left: 1rem;
}

.news_contactUs_form_btn {
  width: 14.13rem;
  height: 7.88rem;
  line-height: 7.88rem;
  text-align: center;
  background: #fcf33d;
  border-radius: 0.19rem;
  border: none;
  margin-left: 1.62rem;
}

/* footer */
.footer {
  width: 100%;
  height: 34.69rem;
  background-image: url(../assets/img/download.png);
  background-repeat: no-repeat;
}

.footer_one_H {
  display: flex;
  justify-content: space-between;
  padding-top: 5.31rem;
  padding-left: 15.94rem;
  padding-right: 15.25rem;
}

.footer_left {}

#logo {
  width: 11.75rem;
  /* height: 3.13rem; */
}

.footer_left_menu {
  margin-top: 3.06rem;
}

.footer_left_menu_item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer_left_menu_item p,
.footer_left_menu_item a {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 0.88rem;
  color: #575757;
  margin-left: 0.4rem;
}

.one {
  width: 0.75rem;
  height: 0.94rem;
}

.two {
  width: 0.88rem;
  height: 0.81rem;
}

.three {
  width: 0.88rem;
  height: 0.81rem;
}

.four {
  width: 0.88rem;
  height: 0.88rem;
}

.img-menu {
  display: flex;
  margin-top: 1.81rem;
}

.img-menu img {
  width: 1rem;
  height: 1rem;
  margin-right: 1.56rem;
}

.footer_right {
  display: flex;
}

.footer_right_item {
  margin-left: 6.88rem;
}

.footer_right_item h6 {
  font-family: PingFang SC;
  font-weight: bold;
  font-size: 1.25rem;
  color: #2e2e2e;
}

.footer_right_item_line {
  width: 8.5rem;
  height: 0.06rem;
  background: #dcdcdc;
  margin-top: 1.31rem;
  margin-bottom: 2.31rem;
}

.footer_right_item a {
  font-family: PingFang SC;
  font-weight: 500;
  display: block;
  font-size: 1rem;
  color: #484848;
  margin-bottom: 1rem;
}

.footer_right_item a:hover {
  color: #6fba2c;
}

.footer_two_H {
  padding-left: 15.94rem;
  padding-right: 15.25rem;
  display: flex;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #484848;
  margin-top: 1.31rem;
  flex-wrap: wrap;
}

.footer_two_H a {
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 1rem;
  color: #484848;
  margin-right: 1.8rem;
}

.footer_fenLine {
  width: 100%;
  height: 0.06rem;
  margin-top: 1.81rem;
  background: #e5e5e5;
}

.Copyright {
  text-align: center;
  margin-top: 1rem;
}

@media only screen and (max-width:1440px) {
  .aboutUs_right {
    width: 40rem;
    height: 48rem;
  }

  .aboutUs_left {
    left: 6rem;
  }

  .footer_one_H,
  .footer_two_H {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .news_left_content {
    margin-left: 3rem;
  }

  .news_right_item_right {
    width: 32rem;
  }

  .content_center {
    width: 78rem;
  }

  .banner_item_footer {
    width: 100%;
  }

  .banner_item_footer_one {
    padding-left: 6rem;
  }

  .banner_item_footer_one,
  .banner_item_footer_three {
    width: 33%;
  }

  .banner_item_footer_two {
    width: 33%;
  }

  .banner_item_footer_three {
    padding-right: 6rem;
  }

  .news_right_line {
    left: 44.5rem;
  }

  .news_left_line {
    width: 44.5rem;
  }


}

@media only screen and (max-width:1360px) {


  /* .news_right_item_right {
    width: 26rem;
  } */

  .footer_two_H {
    flex-wrap: wrap;
  }

  /* .banner_item_footer_two {
    width: 30rem;
} */

  .news_contactUs_form_H {
    width: 41rem;
  }

  .news_contactUs_form_H input {
    width: 20rem;
  }
}

@media only screen and (max-width:640px) {
  .content_center {
    width: 95%;
  }

  .banner {
    height: 45rem;
  }

  .banner_item_content {
    margin-top: 13rem;
  }

  .nav-logo {
    left: 0;
    transform: translateX(2.5rem);
  }

  .nav-right {
    width: 92%;
  }

  .header-main {
    display: none;
    height: auto;
    background-color: #FFF;
  }

  #header-menu__expand {
    display: block;
  }

  .header-menus {
    flex-direction: column;
  }

  .header-menus>li>.header-menu>a {
    color: #292929;
  }

  .header-menus>li {
    width: 100%;
    padding: 0 2.5rem;
  }

  .header-menu_childrenMenu {
    /* display: block; */
    position: static;
  }

  .header-menu_twoMenu {
    margin-left: 0;
    padding-left: 0;
  }

  /* .header-menu_threeMenu {
  display: block;
} */

  .menu-img {
    left: 100%;
  }



  .news_right_item_right {
    width: 36.13rem;
  }

  .news_right_line {
    left: 46.8rem;
  }

  .banner_item_footer_one,
  .banner_item_footer_two,
  .banner_item_footer_three {
    width: 33.333%;
    padding-left: 2.5rem;
    padding-right: 1rem;
    justify-content: space-between;
  }

  .footer_one_title,
  .footer_one_title_two,
  .footer_one_title_three {
    margin-right: 0;
  }

  .banner_item_footer {
    width: 100%;
  }

  .product_menu {
    flex-wrap: wrap;
  }

  .product_menu_item {
    width: 100%;
  }

  .product_menu_item {
    height: 65rem;
  }

  .product_menu,
  .product {
    height: auto;
  }

  .product_menu_item img {
    left: 50%;
    transform: translateX(-50%);
    top: 24rem;
  }

  .product_menu_item_title {
    margin: 0 auto;
  }

  .product_menu_item_title h6 {
    color: #6fba2c;
  }

  .product_menu_item_title a {
    display: inline-block;
  }

  .product_menu_item .triangle {
    display: block;
    right: 0;
    left: unset;
  }

  .product_menu_item_title {
    text-align: center;
    margin-top: 5.31rem;
    transition-duration: 1s;
  }

  .aboutUs_right {
    width: 100%;
    height: 56rem;
  }

  .aboutUs_left {
    left: 2.5rem;
  }

  .aboutUs_left p,
  .aboutUs_left h6,
  .aboutUs_left a {
    color: #ffffff;
  }

  .aboutUs_left a {
    border-color: #ffffff;
    position: relative;
    display: block;
  }



  .news_contactUs {
    padding-left: 2.5rem;
    height: auto;
    padding-bottom: 2.2rem;
    width: 100%;
    padding-right: 2.5rem;
  }

  .news_contactUs_content {
    flex-direction: column;
  }

  .news_contactUs_form {
    margin-top: 2rem;
    margin-bottom: 1.8rem;
  }

  .news_contactUs_form,
  .news_contactUs_form_btn {
    margin-left: 0;
  }

  .news_contactUs_form_btn {
    width: 100%;
  }

  .news_contactUs_form_H {
    width: 100%;
  }

  .news_contactUs_form_H input {
    width: calc(50% - 1rem);
    height: 4.5rem;
  }

  .news {
    height: 96rem;
    background-size: cover;
  }

  .news_left {
    margin-left: 2.5rem;
  }

  .news_right {
    top: unset;
    bottom: 10rem;
    left: 2.5rem;
  }

  .news_right_line {
    height: 100%;
  }

  .footer_one_H,
  .footer_two_H {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    flex-wrap: wrap;
  }

  .footer_right {
    width: 100%;
    margin-top: 5rem;
    justify-content: space-between;
  }

  .footer_right_item {
    margin-left: 0;
    /* width: 33%; */
  }

  .aboutUs_left a::after {
    background-color: white;
  }
}