/* 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;
}

.content_center {
  width: 71rem;
  margin: 0 auto;
  text-align: center;
}

/* 按钮交互 */

.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);
  }
}


/* nav */
nav {
  width: 100%;
  height: 2.81rem;
  background: #931255;
}

.nav-container {
  width: 60%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-left img {
  width: 1rem;
  height: 1rem;
  margin-right: 1.56rem;
}
.nav-left img:hover {
  animation: headShake 2s;
}
.nav-center {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.nav-center img {
  margin-right: 0.56rem;
}

nav p {
  /* font-weight: bold; */
  font-size: 0.88rem;
  color: #FFFFFF;
}

.nav-share {
  margin-left: 0.8rem;
}

.nav-share img {
  margin: 0 0.6rem;
  height: 0.88rem;
}

.nav-share img:hover {
  animation: tada 1s;
}

/* 头部 */
.header {
  position: relative;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.44rem;
  font-size: 1.125rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.53);
}

.header-content {
  height: 100%;
  display: flex;
  justify-content: center;
}

.header-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 60%; */
  height: 100%;
  /* width: calc(100% - 10rem); */
  margin: 0 auto;
}

.header-logo {
  width: 6.75rem;
  /* width: 12.5rem; */
}

.header-menus {
  display: flex;
  align-items: center;
  margin: 0 2.5rem;
  height: 100%;
}

.header-menus li {
  margin: 0 1rem;
}

.header-menus a {
  color: #2B2B2B;
  font-size: 1.13rem;
}

.header-menus i {
  color: #2B2B2B;
}


.header-search__con {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  /* display: none; */
}

#header .header-search__con {
  display: none;
}

.header-search {
  width: 15.25rem;
  height: 2rem;
  background: #FFFFFF;
  border-radius: 0.31rem;
  display: none;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  /* height: 1.35rem; */
  position: absolute;
  right: -6rem;
  top: 100%;
  /* top: 5.44rem; */
  padding: 0 0.8rem;
  border-radius: 0.25rem;
  z-index: 100;
  box-shadow: 0px 2px 10px #0000006e;
  align-items: center;
}

.header-search i {
  color: #931255;
}

.header-search input {
  border: none;

  outline: none;
  background: transparent;
  color: #4E4E4E;
  width: calc(100% - 1rem);
  padding-bottom: 0.125rem;
  height: 1.35rem;
  font-size: 0.88rem;
  padding: 0 0.5rem;
  height: 100%;
}

.search-icon {
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}

.header-search__con:hover .header-search {
  display: flex;
}

.header-search input::placeholder {
  font-size: 1rem;
  color: #929292;
}


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

#header-right {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-tool__detail>img {
  width: 50%;
}

.header-lang {
  height: 100%;
  color: #2B2B2B;
  display: flex;
  /* width: 5rem; */
  margin-left: 1.13rem;
  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: 2rem;

}

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

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

.header-lang__flag {
  background-image: url('../assets/imgs/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: 2.81rem;
  right: 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-menus li:hover .header-menus__second {
  display: block;
}

.header-menus li:hover a,
.header-menus li:hover i {
  color: #931255;
}

.header-menu {
  display: flex;
  align-items: center;
}

.header-menu i {
  transition: all .2s;
  display: inline-block;
}

.header-menus li:hover>.header-menu i {
  transform: rotate(90deg);
}

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


.header-menus__second {
  display: none;
  width: fit-content;
  position: absolute;
  top: 5.44rem;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0rem 2rem 10rem 0rem rgba(12, 0, 5, 0.35);

  padding: 0.6rem 0;
  z-index: 10;
  border-top: 3px solid #931255;
}

.header-menus__second i {
  color: #5B5B5B;
  margin-right: 0.25rem;
  font-size: 1.5rem;
}

.header-menus__second>li {
  margin: 0;
  padding: 0.6rem 1.5rem;
  width: 100%;
  position: relative;
}


.header-menus__second>li a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.13rem;
  color: #1E1E1E;
  text-wrap: nowrap;
}

/* .header-menus__second>li:hover,
.header-menus__third--content>li:hover {
  background: #EA5918;
} */

.header-menus__second>li:hover .header-menu i,
.header-menus__second>li:hover .header-menu a,
.header-menus__second>li:hover>a {
  color: #931255;

}

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

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

.header-menus__third {
  display: none;
  flex-direction: column;
  padding-left: 0.1rem;
  position: absolute;
  left: 100%;
  top: 0rem;
  width: 100%;
}

.header-menus__third--content {
  background-color: #FFF;
  padding: 0.6rem 0rem;

  /* border-radius: 0.31rem; */
}

.header-menus__third--content>li {
  padding: 0.6rem 1.5rem;
  margin: 0;
  display: flex;
  justify-content: center;
}

.header-menus__third--content>li a {
  font-size: 1.13rem;
  color: #1E1E1E;
  /* margin-top: 0.5rem; */
}

.header-menus__third--content>li:hover a {
  color: #931255;
}

.header-menus__second>li:hover .header-menus__third {
  display: flex;

}

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

.header-btn {
  width: 9.75rem;
  height: 3.13rem;
  background: #931255;
  border-radius: 1.56rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.13rem;
  color: #FFFFFF;
}
.header-btn:hover {
  animation:  headShake 2s;
}
.header-btn i {
  margin-left: 0.5rem;
}

.header-right__show {
  display: flex;
  align-items: center;
}

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

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

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

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

.banner_item_content {
  /* margin-left: 24.44rem; */
  margin-top: 13.5rem;
  text-align: left;
}

.banner_item_content h3 {
  width: 26.5rem;
  font-family: Arial;
  font-weight: bold;
  font-size: 3.66rem;
  color: #ffffff;
  line-height: 3.69rem;
}

.banner_item_content p {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.52rem;
  color: #ffffff;
  line-height: 1.53rem;
  margin-top: 1.88rem;
}

.bannerItem_btn {
  display: inline-block;
  width: 9.75rem;
  height: 3.13rem;
  line-height: 3.13rem;
  text-align: center;
  background: #ffffff;
  border-radius: 1.56rem;
  margin-top: 2rem;
}

.bannerItem_btn span {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.13rem;
  color: #931255;
  line-height: 1.13rem;
}

.bannerItem_btn .ri-arrow-right-line {
  font-size: 1.13rem;
  color: #931255;
  margin-left: 0.19rem;
}


/* detail */
.detail {
  width: 100%;
}

.detail_title {
  margin-top: 7.75rem;
}

.detail_title h6 {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  color: #343434;
  line-height: 1.13rem;
}

.detail_title h3 {
  font-family: Arial;
  font-weight: bold;
  font-size: 2.62rem;
  color: #343434;
  line-height: 1.98rem;
  margin-top: 0.69rem;
}

.detail_imgList {
  display: flex;
  justify-content: space-between;
  margin-top: 6.44rem;
}

.imgList_item {
  position: relative;
  width: 22.75rem;
  height: 17.94rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.imgList_item img {
  width: 22.75rem;
  height: 17.94rem;
}

.imgList_item:hover img {
  transform: scale(1.2);
  transition-duration: 1s;
  z-index: 2;
}

.imgList_item:hover .mask {
  display: block;
}

.imgList_item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14.94rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.25rem;
  color: #f9f7f2;
  line-height: 1.13rem;
}

.mask {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.discover {
  display: block;
  width: 16.69rem;
  height: 3.19rem;
  background: #931255;
  border-radius: 1.59rem;
  margin: 0 auto;
  margin-top: 4.75rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.25rem;
  color: #f9f7f2;
  line-height: 3.19rem;
  text-align: center;
  cursor: pointer;
}

.detail_menu {
  display: flex;
  margin-top: 9.38rem;
  /* margin-left: 24.69rem; */
}

.detail_menu_item {
  display: flex;
  margin-right: 9.44rem;
}

.oneImg {
  width: 3.25rem;
  height: 2.88rem;
}

.twoImg {
  width: 3.38rem;
  height: 3rem;
}

.threeImg {
  width: 3rem;
  height: 2.63rem;
}

.menu_item_desc {
  margin-top: 0.88rem;
  margin-left: 1.63rem;
}

.menu_item_desc h3 {
  font-family: Arial;
  font-weight: bold;
  font-size: 2.75rem;
  color: #313131;
  line-height: 3.12rem;
}

.menu_item_desc p {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.2rem;
  color: #4c4c4c;
  line-height: 1.36rem;
}

.detail_footer {
  margin-top: 9.19rem;
  margin-bottom: 9.56rem;
}

.detail_footer h6 {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  color: #343434;
  line-height: 1.13rem;
}

.detail_footer p {
  font-family: Arial;
  font-weight: bold;
  font-size: 1.97rem;
  color: #931255;
  line-height: 1.49rem;
  margin-top: 0.44rem;
}

/* supply */
.supply {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 40.19rem;
  background-color: #931255;
}

.supply h6 {
  width: 58rem;
  height: 5.75rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 2.13rem;
  margin-top: 8.13rem;
  text-align: center;
}

.supply_menu {
  display: flex;
  justify-content: space-between;
  margin-top: 4.38rem;
}

.supply_menu_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.one {
  width: 3.56rem;
  height: 3.5rem;
}

.two {
  width: 2.06rem;
  height: 3.38rem;
}

.three {
  width: 2.69rem;
  height: 3.5rem;
}

.four {
  width: 1.56rem;
  height: 3.5rem;
}

.five {
  width: 3.56rem;
  height: 2.88rem;
}

.supply_menu_item h3 {
  width: 9.63rem;
  height: 3.06rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 2.13rem;
  margin-top: 2.08rem;
  text-align: center;
}

.supply_menu_item p {
  width: 9.69rem;
  height: 2.13rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.32rem;
  margin-top: 2.56rem;
  text-align: center;
}

/* advice */
.advice {
  width: 100%;
  /* height: 44.63rem; */
  overflow: hidden;
}

.advice-title {
  margin-top: 7.75rem;
}

.advice-title h6 {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  color: #343434;
  line-height: 1.13rem;
}

.advice-title h3 {
  font-family: Arial;
  font-weight: bold;
  font-size: 2.62rem;
  color: #343434;
  line-height: 1.98rem;
  margin-top: 0.68rem;
}

.advice-content {
  display: flex;
  justify-content: space-between;
  margin-top: 5.81rem;
  margin-bottom: 7rem;
}

.advice-content_item {
  position: relative;
  width: 34.63rem;
  height: 20.25rem;
  overflow: hidden;
  border-radius: 1.25rem;
}

.advice-content_item img {
  width: 34.63rem;
  height: 20.25rem;
}

.advice-content_item_left {
  position: absolute;
  top: 4.69rem;
  left: 2.19rem;
}

.advice-content_item_left h3 {
  font-family: Arial;
  font-weight: bold;
  font-size: 2.13rem;
  color: #1d1d1d;
  line-height: 2.57rem;
  text-align: start;
}

.advice-content_item_left h6 {
  font-family: Arial;
  font-weight: bold;
  font-size: 2.13rem;
  color: #1d1d1d;
  line-height: 2.57rem;
  color: #931255;
  text-align: start;
}

.advice-content_item_left p {
  width: 6.69rem;
  height: 3.25rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.25rem;
  color: #404040;
  line-height: 2.26rem;
  text-align: start;
  margin-top: 1.19rem;
}

.advice-content_item_left .item_left_Tp {
  width: 13.31rem;
  height: 5.75rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.25rem;
  color: #404040;
  line-height: 2.26rem;
}

.advice-content_item:hover img {
  transform: scale(1.2);
  transition-duration: 1s;
  z-index: 2;
}

/* world */
.world {
  position: relative;
  width: 100%;
  height: 38.75rem;
  background-image: url(../assets/imgs/home/1.png);
  background-size: 100% 100%;
}

.world_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.world_menu {
  width: 71rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.world_menu_line {
  width: 0.06rem;
  height: 38.56rem;
  background: #ffffff;
  opacity: 0.45;
}

.world_menu_item {
  width: 23rem;
  height: 23rem;
  margin-bottom: 3.75rem;
}

.world_menu_item:hover {
  height: 21.81rem;
  background: #931255;
  border-radius: 1.25rem;
  padding-top: 2.44rem;
  padding-left: 1.81rem;
  transition-duration: 0.5s;
}

.world_menu_item:hover .world_menu_item_desc {
  display: block;
}

.world_menu_item:hover h6 {
  margin: 0;
}

.world_menu_item:hover h3 {
  margin-left: 0;
  margin-right: 0;
}

.world_menu_item h6 {
  margin: 0 1.81rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.63rem;
  text-align: start;
}

.world_menu_item h3 {
  margin: 0 1.81rem;
  width: 20.88rem;
  height: 4.44rem;
  font-family: Arial;
  font-weight: bold;
  font-size: 2.4rem;
  color: #ffffff;
  line-height: 2.61rem;
  text-align: start;
  margin-top: 1.31rem;
  margin-bottom: 1.75rem;
}

.world_menu_item_desc {
  display: none;
  margin-top: 1.75rem;
}

.world_menu_item_desc p {
  width: 18.88rem;
  height: 4.06rem;
  font-family: Arial;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.63rem;
  text-align: start;
}

.world_menu_item_desc_a {
  display: inline-block;
  width: 9.69rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  border-radius: 1.69rem;
  border: 1px solid #ffffff;
  margin-top: 1.44rem;
}

.world_menu_item_desc_a span {
  font-family: Arial;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.63rem;
}

.world_menu_item_desc_a .ri-arrow-right-line {
  font-size: 1.2rem;
  color: #ffffff;
}

/* callUs */
.callUs {
  width: 100%;
  height: 39.94rem;
  background-color: #faf6f8;
  overflow: hidden;
}

.callUs_shell {
  display: flex;
  justify-content: space-between;
  margin-top: 7.75rem;
}

.callUs_left {}

.callUs_left h6 {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  color: #343434;
  line-height: 1.13rem;
  text-align: start;
}

.callUs_left h3 {
  font-family: Arial;
  font-weight: bold;
  font-size: 2.62rem;
  color: #343434;
  line-height: 1.98rem;
  margin-top: 0.69rem;
  text-align: start;
}

.callUs_left_way {
  margin-top: 6.31rem;
}

.callUs_left_way_one {
  margin-bottom: 2rem;
}

.callUs_left_way_one h4,
.callUs_left_way_one a {
  font-size: 1.38rem;
  color: #343434;
  text-align: start;
  line-height: 1.6rem;
}

.callUs_left_way_one p {
  font-size: 1rem;
  color: #343434;
  text-align: start;
}

.callUs_form_item {
  width: 39.88rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.56rem;
}

.callUs_form_item input {
  width: 19.13rem;
  height: 3.25rem;
  background: #ffffff;
  border-radius: 0.31rem;
  outline: none;
  border: none;
  padding: 1rem;
  box-sizing: border-box;
}

.callUs_form_item textarea {
  width: 39.88rem;
  height: 9.31rem;
  background: #ffffff;
  border-radius: 0.31rem;
  outline: none;
  border: none;
  padding: 1rem;
  box-sizing: border-box;
}

.submit {
  width: 39.88rem;
  height: 4.2rem;
  line-height: 4.2rem;
  text-align: center;
  background: #931255;
  border-radius: 0.31rem;
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* subscribe */
.subscribe {
  display: flex;
  align-items: center;
  width: 100%;
  height: 10.25rem;
  background: #931255;
  border-radius: 0.31rem;
}

.subscribe_shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscribe_shell_left h3 {
  font-size: 1.88rem;
  color: #fff;
  text-align: start;
}

.subscribe_shell_left h6 {
  font-size: 1.5rem;
  color: #fff;
  text-align: start;
}

.subscribe_shell_left p {
  font-size: 1rem;
  color: #fff;
  text-align: start;
  margin-top: 0.5rem;
}

.sub_inp {
  display: flex;
}

.sub_inp input {
  width: 19.69rem;
  height: 3.83rem;
  background: #ffffff;
  border-radius: 0.31rem;
  outline: none;
  border: none;
  padding-left: 1.44rem;
  /* margin-left: 14.31rem; */
}

.sub_inp button {
  width: 7.81rem;
  height: 3.95rem;
  border-radius: 0.31rem;
  border: 1px solid #ffffff;
  margin-left: 0.44rem;
  color: #fff;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.25rem;
  background: #931255;
}

/* footer */
.footer {
  width: 100%;
  min-height: 26.63rem;
  background-color: #f8f8f8;
  overflow: hidden;
}

.footer_shell {
  display: flex;
  justify-content: space-between;
  margin-top: 5.88rem;
}

.footer_shell_every h6 {
  font-family: Arial;
  font-weight: bold;
  font-size: 1.13rem;
  color: #343434;
  line-height: 1.13rem;
  margin-bottom: 1.83rem;
  text-align: start;
}

.footer_shell_every a {
  display: block;
  font-family: Arial;
  font-weight: 400;
  font-size: 1rem;
  color: #343434;
  line-height: 2.26rem;
  text-align: start;
}

.footer_shell_every a:hover {
  color: #931255;
}
.footer_shell_every p {
  text-align: left;
}
.footer_shell_search {
  position: relative;
  width: 15.25rem;
  height: 2rem;
}

.footer_shell_search input {
  width: 15.25rem;
  height: 2rem;
  background: #ffffff;
  border-radius: 0.31rem;
  border: 1px solid #931255;
  outline: none;
  padding-left: 1rem;
}

.footer_shell_search .ri-search-line {
  position: absolute;
  bottom: 0.28rem;
  right: 0.56rem;
  font-size: 1.2rem;
  color: #931255;
}

/* Copyright */
.Copyright {
  width: 100%;
  height: 4rem;
  line-height: 4rem;
  background: #959595;
  border-radius: 0.31rem;
}

.Copyright_desc {
  text-align: start;
  font-family: Arial;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
}

@media only screen and (max-width:1440px) {
  .detail_menu {
    margin-left: 10rem;
  }
}

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

  .nav-container,
  .header-con {
    width: 95%;
  }

  /* nav .header-menu__control {
    display: none;
  } */

  .header-con {
    justify-content: space-between;
  }

  .header {
    z-index: 10000;
  }

  #header-menu__expand {
    display: block;
  }

  #header-lang__menus {
    z-index: 20000;
  }

  nav .header-search__con {
    display: none;
  }

  .header-menus__second,
  .header-menus__third,
  .header-menus__third--content {
    position: static;
    background: transparent;
    box-shadow: none;
    width: 100%;
  }

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

  .header-menus__second:before {
    display: none;
  }

  .header-menus__third--content>li {
    justify-content: flex-start;
  }

  #header .header-search__con {
    display: block;
  }

  #header-right {
    display: none;
    background-color: #ffffff;
    position: absolute;
    top: 5.425rem;
    right: 0;
    width: 100%;
    padding: 2rem 3rem;
    flex-direction: column-reverse;
    height: auto;
    align-items: flex-start
  }

  .header-menus {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    width: 100%;
  }

  .header-menu {

    justify-content: space-between;
  }

  .header-menu i:hover .header-menus__second {
    display: block;
  }

  .header-menus>li {
    margin: 0.75rem 0;
    width: 100%;
  }

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

    width: 100%;
    box-shadow: none;

    border-bottom: 1px solid #53525283;
  }

  .header-search input {
    width: calc(100% - 2rem);

  }

  .header-search__con {
    width: 100%;
    margin-bottom: 1.5rem;
    height: 2.8rem;
  }

  #header-lang__content p {
    /* width: 3.88rem;
    height: 2.5rem; */
    border-radius: 1.25rem;
  }

  .search-icon {
    display: none;
  }

  .header-search {
    width: 100%;
    position: static;
    display: flex;
  }

  .banner_item_content {
    margin-left: 2.5rem;
    margin-top: 5rem
  }

  .banner {
    height: 28rem;
  }

  .detail_imgList {
    flex-wrap: wrap;
  }

  .content_center {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .imgList_item {
    width: 100%;
    height: 35rem;
    margin-bottom: 2rem;
  }

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

  .mask {
    display: block;
  }

  .detail_menu {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    justify-content: space-between;
  }

  .detail_menu .detail_menu_item {
    margin-right: 0;
  }

  .supply,
  .callUs {
    width: 100%;
  }

  .advice-content {
    flex-wrap: wrap;
  }

  .advice-content_item {
    width: 100%;
    height: 35rem;
    margin-bottom: 2rem;
  }

  .advice-content_item img {
    width: 100%;
    height: 100%;
  }

  .world {
    background-size: cover;
    height: 85rem;
  }

  .world_menu_item {
    width: 100%;
    height: 21.81rem;
    background: #931255;
    border-radius: 1.25rem;
    padding-top: 2.44rem;
    padding-left: 1.81rem;
    transition-duration: 0.5s;
  }

  .world_menu_item h3,
  .world_menu_item h6 {
    margin-left: 0;
    margin-right: 0;
  }

  .world_menu_item .world_menu_item_desc {
    display: block;
  }

  .world_menu {
    flex-wrap: wrap;
    width: 65%;
    height: 100%;
    padding: 5rem 0;
  }

  .world_menu_line {
    display: none;
  }

  .callUs {
    height: auto;
    padding-bottom: 8.25rem;
  }

  .callUs_shell {
    flex-wrap: wrap;
  }

  .callUsform {
    width: 100%;
    margin-top: 4rem;
  }

  .callUs_form_item {
    width: 100%;
  }

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

  .callUs_form_item textarea {
    width: 100%;
    height: 14rem;
  }

  .submit {
    width: 100%;
    height: 6rem;
  }

  .callUs_left_way {
    margin-top: 3.5rem;
  }

  .subscribe {
    height: 18rem;
  }

  .subscribe_shell {
    flex-wrap: wrap;
  }

  .sub_inp {
    margin-top: 1.6rem;
    width: 100%;
  }

  .sub_inp input {
    width: calc(100% - 8.2rem);
  }

  .footer_shell {
    flex-wrap: wrap;
  }

  .footer_shell_search {
    width: 100%;
    margin-top: 2rem;
  }

  .footer_shell_search input {
    width: 100%;
    height: 3rem;
  }

  .footer_shell_search .ri-search-line {
    font-size: 2rem;
    bottom: -0.5rem
  }
}