header:not(.background) .header {
  width: 100%;
  margin: 0 auto;
  height: 100px;
  padding: 0 100px;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 99;
  top: 0;
  justify-content: space-between;
  transition: all 0.6s;
}

header:not(.background) .header.on {
  height: 70px;
  background-color: #fff;
}

header:not(.background) .header.on .logo {
  transform: scale(0.9);
}

header:not(.background) .header .logo {
  transition: all 0.6s;
  width: 182px;
  height: fit-content;
}

header:not(.background) .header .right {
  display: flex;
  align-items: center;
}

header:not(.background) .header .right .list {
  display: flex;
  gap: 50px;
  margin-right: 70px;
}

header:not(.background) .header .right .list .item {
  display: flex;
  align-items: center;
}

header:not(.background) .header .right .list .item.active .icon,
header:not(.background) .header .right .list .item:hover .icon {
  scale: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

header:not(.background) .header .right .list .item.active a,
header:not(.background) .header .right .list .item:hover a {
  color: #F36039;
}

header:not(.background) .header .right .list .item .icon {
  width: 22px;
  margin-right: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1, 0.64, 1);
  will-change: scale, visibility;
  scale: 0;
}

header:not(.background) .header .right .list .item a {
  color: #2F140B;
  font-size: 16px;
}

header:not(.background) .header .right .r {
  display: flex;
  align-items: center;
}

header:not(.background) .header .right .r .l {
  display: flex;
  gap: 20px;
}

header:not(.background) .header .right .r .l a {
  display: flex;
  color: #2F140B;
  transition: all .6s;
  position: relative;
}

header:not(.background) .header .right .r .l a p {
  margin-left: 5px;
}

header:not(.background) .header .right .r .l a:hover {
  color: #F36039;
}

header:not(.background) .header .right .r .l a span {
  font-size: 20px;
}

header:not(.background) .header .right .r .line {
  width: 1px;
  height: 12px;
  background-color: #2F140B;
  opacity: 0.2;
  margin: 0 20px;
}

header:not(.background) .header .right .r .lang {
  display: flex;
  align-items: center;
  font-size: 16px;
}

header:not(.background) .header .right .r .lang a {
  color: #2F140B;
  transition: all 0.6s;
}

header:not(.background) .header .right .r .lang a:hover {
  color: #F36039;
}

header:not(.background) .header .right .r .lang a:hover span {
  color: #F36039;
}

header:not(.background) .header .right .r .lang a span {
  transition: all 0.6s;
  color: #2F140B;
  font-size: 18px;
  margin-right: 5px;
}

header:not(.background) .header .right .r .lang .jt {
  font-size: 14px;
  margin-left: 5px;
}

header.background .header {
  position: fixed;
  display: flex;
  width: 100%;
  align-items: center;
  height: 100px;
  padding: 0 calc(50vw - 600px);
  justify-content: space-between;
  transition: all 0.6s;
}

header.background .header.on {
  height: 70px;
  background-color: #fff;
}

header.background .header.on .logo {
  transform: scale(0.8);
}

header.background .header .logo {
  transform-origin: left;
  transition: all 0.6s;
}

header.background .header .right {
  display: flex;
  gap: 40px;
}

header.background .header .right .search {
  width: 400px;
  padding-bottom: 7px;
  border-bottom: 1px solid #DBDFE1;
  display: flex;
}

header.background .header .right .search input {
  flex: 1;
  background-color: transparent;
  border: none;
}

header.background .header .right .search button {
  background-color: transparent;
}

header.background .header .right .search button:hover span {
  color: #F36039;
}

header.background .header .right .search span {
  font-size: 24px;
  transition: all 0.6s;
}

header.background .header .right .l {
  display: flex;
  gap: 20px;
}

header.background .header .right .l a {
  color: #111111;
  transition: all 0.6s;
  position: relative;
  display: flex;
  align-items: center;
}

header.background .header .right .l a p {
  margin-left: 5px;
}

header.background .header .right .l a:hover {
  color: #F36039;
}

header.background .header .right .l a span {
  transition: all 0.6s;
  font-size: 20px;
}
header .header .right .l a .num {
    position: absolute;
    font-size: 12px;
    background-color: #EF4444;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -6px;
    right: -6px;
}
header.background .header .right .l a .num {
  position: absolute;
  font-size: 12px;
  background-color: #EF4444;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  right: -8px;
}

footer:not(.background) {
  background-color: #F8F0E7;
  position: relative;
}

footer:not(.background) .up {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  left: 50%;
  z-index: 3;
  transition: all 0.6s;
  transform: translate(-50%, -50%) rotate(-90deg);
  cursor: pointer;
}

footer:not(.background) .up:hover {
  background-color: #F36039;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.9);
}

footer:not(.background) .up:hover span {
  color: #fff;
}

footer:not(.background) .up span {
  font-size: 30px;
  color: #F36039;
  transition: all 0.6s;
}

footer:not(.background) .footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

footer:not(.background) .footer .after {
  width: 200vw;
  height: 200vw;
  background-color: #F3E5F8;
  content: "";
  bottom: 120px;
  position: absolute;
  /* border-radius: 50%; */
  border-radius: 0%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  transition: all 1s;
}

footer:not(.background) .footer.active .after {
  border-radius: 50%;
}


footer:not(.background) .footer .top {
  padding-top: 35px;
  padding-bottom: 130px;
}

footer:not(.background) .footer .top .text {
  font-size: 220px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
}

footer:not(.background) .footer .top .content h4 {
  color: #F36039;
  font-size: 30px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 45px;
  text-transform: uppercase;
}

footer:not(.background) .footer .top .content .list {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 50px;
}

footer:not(.background) .footer .top .content .list .item {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
  cursor: pointer;
  position: relative;
}

footer:not(.background) .footer .top .content .list .item::after {
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s;
}

footer:not(.background) .footer .top .content .list .item:hover::after {
  transform: scale(1.1);
  background-color: #F36039;
}

footer:not(.background) .footer .top .content .list .item:hover span {
  color: #fff;
}

footer:not(.background) .footer .top .content .list .item span {
  transition: all 0.6s;
  font-size: 28px;
  position: relative;
  z-index: 2;
}

footer:not(.background) .footer .top .content .nav {
  width: 500px;
  display: flex;
  gap: 0 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

footer:not(.background) .footer .top .content .nav a {
  display: block;
  width: fit-content;
  white-space: nowrap;
  color: #2F140B;
  line-height: 24px;
  transition: all 0.6s;
}

footer:not(.background) .footer .top .content .nav a:hover {
  color: #F36039;
}

footer:not(.background) .footer .top .expression {
  position: absolute;
  bottom: 70px;
  display: flex;
  gap: 150px;
  left: 50%;
  transform: translateX(-50%);
}

footer:not(.background) .footer .top .expression .eye {
  width: 112px;
  height: 112px;
  background-color: #2F140B;
  border-radius: 50%;
  animation: menuEye-941a0f7a 4s linear 0s infinite normal;
}

footer:not(.background) .footer .top .expression::after {
  width: 112px;
  height: 112px;
  background-color: #2F140B;
  clip-path: inset(50% 0 0 0);
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -45px;
  border-radius: 50%;
}

footer:not(.background) .footer .bottom {
  color: #7E665F;
  padding: 34px 0;
}

footer:not(.background) .footer .bottom p {
  color: #7E665F;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

footer:not(.background) .footer .bottom p a {
  color: #7E665F;
  transition: all 0.6s;
}

footer:not(.background) .footer .bottom p a:hover {
  color: #F36039;
}

footer:not(.background) .footer .bg {
  position: absolute;
  opacity: 0;
  transition: all 1s;
}

footer:not(.background) .footer.active .bg {
  opacity: 1;
  transition-delay: .5s;
}

footer:not(.background) .footer .bg1 {
  left: 88px;
  bottom: 47px;
}

footer:not(.background) .footer .bg2 {
  right: 88px;
  bottom: 47px;
  transform: scaleX(-1);
}

footer.background .footer {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-top: 1px solid #DEDEDE;
}

footer.background .footer p {
  color: #999;
  font-size: 14px;
}

footer.background .footer p a {
  color: #999;
  transition: all 0.6s;
}

footer.background .footer p a:hover {
  color: #F36039;
}

.banner {
  min-height: 100vh;
}

.banner .wrap .decoration {
  position: absolute;
  z-index: 2;
  animation-name: floating;
  animation-iteration-count: infinite;
  animation-timing-function:
    ease-in-out;
  animation-duration: 8s;
}

.banner .wrap .bg {
  width: 100%;
}

.banner .wrap .bg img {
  width: 100%;
}

.banner .wrap .img {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 90vw;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner .wrap .img img {
  width: 100%;
}

.banner .wrap .text {
  width: fit-content;
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  top: 170px;
  width: 90vw;
  text-align: center;
}

.banner .wrap .text h3 {
  font-size: 100px;
  color: #2F140B;
  line-height: 1;
}

.banner .wrap .text h3 span {
  transition: all 1s;
}

.each_animate.on span {
  opacity: 1 !important;
  transform: translateX(0) !important;
  font-family: CR;
  text-transform: uppercase;
  font-weight: 400;
}

.banner .wrap .text p {
  color: #B2A8A4;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.banner .wrap .text p span {
  transition: all 1s;
}

.banner .wrap .text p.on span {
  font-family: CR;
  text-transform: uppercase;
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.common_page {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  margin-top: 70px;
}

.common_page .prev {
  transform: rotate(180deg);
}

.common_page .prev,
.common_page .next {
  width: 40px;
  height: 40px;
  background-color: #F36039;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.common_page .prev span,
.common_page .next span {
  color: #fff;
}

.common_page .page_list {
  gap: 40px;
  display: flex;
}

.common_page .page_list a {
  color: #37180E;
  font-size: 24px;
  transition: all 0.6s;
}

.common_page .page_list a.active,
.common_page .page_list a:hover {
  color: #F36039;
}

.common_page1 {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 70px;
}

.common_page1 .prev {
  transform: rotate(180deg);
}

.common_page1 .prev,
.common_page1 .next {
  width: fit-content;
  padding: 0 17px;
  height: 30px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid #E6E6E6;
  color: #555;
  transition: all 0.6s;
}

.common_page1 .prev:hover,
.common_page1 .next:hover {
  background-color: #F36039;
  color: #fff;
}

.common_page1 .prev:hover span,
.common_page1 .next:hover span {
  color: #fff;
}

.common_page1 .prev span,
.common_page1 .next span {
  transition: all 0.6s;
  color: #555555;
}

.common_page1 .next {
  padding: 0 8px;
}

.common_page1 .next span {
  margin-left: 5px;
}

.common_page1 .page_list {
  gap: 4px;
  display: flex;
}

.common_page1 .page_list a {
  color: #37180E;
  font-size: 14px;
  transition: all 0.6s;
  width: 30px;
  height: 30px;
  border: 1px solid #E6E6E6;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAFAFA;
}

.common_page1 .page_list a.omit {
  background-color: transparent;
  border: none;
}

.common_page1 .page_list a.active {
  color: #F36039;
  background-color: transparent;
  border: none;
}

.common_page1 .page_list a:not(.omit, .active):hover {
  background-color: #F36039;
  border-color: #F36039;
  color: #fff;
}

.common_tab {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.common_tab .top {
  padding: 30px 20px;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
}

.common_tab .top h3 {
  color: #111;
  font-size: 16px;
}

.common_tab .top .Exit {
  color: #111111;
  font-size: 14px;
  border-bottom: 1px solid #111;
  margin-top: 10px;
  display: block;
  width: fit-content;
  transition: all 0.6s;
}

.common_tab .top .Exit:hover {
  color: #F36039;
  border-color: #F36039;
}

.common_tab .top .list {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #DEDEDE;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.common_tab .top .list .item a {
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.6s;
}

.common_tab .top .list .item a.active,
.common_tab .top .list .item a:hover {
  color: #F36039;
}

.common_tab .bottom {
  background-color: #fff;
  padding: 30px 20px;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
}

.common_tab .bottom a {
  color: #111;
  transition: all 0.6s;
}

.common_tab .bottom a:hover {
  color: #F36039;
}

.common_tab .bottom .text {
  margin-top: 15px;
}

.common_tab .bottom .text h4 {
  color: #111;
  margin-bottom: 6px;
}

.common_tab .bottom .text p {
  color: #111;
  font-size: 14px;
  line-height: 26px;
}

.common_table {
  margin-top: 15px;
}

.common_table .tr {
  display: flex;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 15px;
}

.common_table .tr .td {
  font-size: 14px;
}

.common_table .tr .td:not(:nth-child(1)) {
  text-align: center;
}

.common_table .tr .td:nth-child(1) {
  width: 400px;
}

.common_table .tr .td:nth-child(2) {
  width: 200px;
}

.common_table .tr .td:nth-child(3) {
  width: 160px;
}

.common_table .tr .td:nth-child(4) {
  width: 160px;
}

.common_table .list .trem .top {
  display: flex;
  align-items: center;
  background-color: #FAFAFA;
  height: 36px;
  padding-left: 10px;
}

.common_table .list .trem .top a {
  color: #F36039;
  border-bottom: 1px solid #F36039;
  margin-left: 35px;
}

.common_table .list .trem .bottom .tr {
  padding: 20px 0;
}

.common_table .list .trem .bottom .tr .td:nth-child(1) {
  display: flex;
  align-items: center;
}

.common_table .list .trem .bottom .tr .td:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  align-items: center;
}

.common_table .list .trem .bottom .tr .td:nth-child(2) .price p:nth-child(1) {
  color: #111111;
}

.common_table .list .trem .bottom .tr .td:nth-child(2) .price p:nth-child(2) {
  color: #999999;
  text-decoration: line-through;
}

.common_table .list .trem .bottom .tr .td:nth-child(2) .num {
  color: #999999;
}

.common_table .list .trem .bottom .tr .td:nth-child(4) .text {
  text-align: center;
}

.common_table .list .trem .bottom .tr .td:nth-child(4) .text p {
  color: #111;
  font-size: 14px;
  line-height: 20px;
}

.common_table .list .trem .bottom .tr .td .img {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.common_table .list .trem .bottom .tr .td .text h4 {
  color: #111;
  font-size: 14px;
}

.common_table .list .trem .bottom .tr .td .text p {
  color: #999999;
  font-size: 14px;
}

.crumb {
  color: #666;
}

.crumb a {
  color: #666;
}

.crumb a:last-child {
  color: #F36039;
}

@keyframes menuEye-941a0f7a {
  0% {
    scale: 1 1;
  }

  90% {
    scale: 1 1;
  }

  92% {
    scale: 1 0;
  }

  94% {
    scale: 1 1;
  }

  96% {
    scale: 1 1;
  }

  98% {
    scale: 1 0;
  }

  to {
    scale: 1 1;
  }
}

@keyframes floating {

  0%,
  to {
    transform: translate(0%, 0) rotate(-5deg);
  }

  25% {
    transform: translate(5px, 15px) rotate(5deg);
  }

  50% {
    transform: translate(10px, 5px) rotate(-5deg);
  }

  75% {
    transform: translate(0%, 15px) rotate(5deg);
  }
}
