:root {
  --mx-green: #17633d;
  --mx-deep: #083822;
  --mx-gold: #caa15d;
  --mx-ink: #22342e;
  --mx-muted: #718078;
  --mx-line: rgba(31, 86, 56, .14);
  --mx-bg: #fbfbf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mx-ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.mx-wrap {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.mx-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 78px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(21, 77, 49, .1);
  backdrop-filter: blur(12px);
}

.mx-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.mx-logo img {
  width: 142px;
  height: auto;
}

.mx-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  font-size: 15px;
}

.mx-nav a {
  position: relative;
  line-height: 78px;
  transition: .22s ease;
}

.mx-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: var(--mx-green);
  transform: translateX(-50%);
  transition: width .22s ease;
}

.mx-nav a:hover,
.mx-nav .is-active {
  color: var(--mx-green);
  font-weight: 600;
}

.mx-nav a:hover::after,
.mx-nav .is-active::after {
  width: 36px;
}

.mx-search {
  width: 210px;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(31, 84, 57, .18);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
}

.mx-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.mx-search button {
  position: relative;
  width: 20px;
  height: 20px;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle at 42% 42%, transparent 0 39%, #1b5540 41% 54%, transparent 56%) center / 18px 18px no-repeat;
}

.mx-search button::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: #1b5540;
  transform: rotate(45deg);
}

.mx-hero {
  position: relative;
  aspect-ratio: 1920 / 650;
  height: auto;
  overflow: hidden;
  background: #eef1ff;
}

.mx-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mx-hero__overlay {
  position: absolute;
  left: calc((100vw - 1200px) / 2 + 116px);
  bottom: 96px;
}

.mx-hero__overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  height: 48px;
  padding: 0 30px;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(135deg, #7f7bd7, #626fc6);
  box-shadow: 0 12px 24px rgba(88, 88, 180, .24);
  font-size: 17px;
  font-weight: 600;
}

.mx-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.mx-title {
  margin-bottom: 36px;
  text-align: center;
}

.mx-title h2 {
  margin: 0;
  font-family: "SimSun", "Songti SC", serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #2c342f;
}

.mx-title h2::before,
.mx-title h2::after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 1px;
  margin: 0 18px 9px;
  background: linear-gradient(90deg, transparent, #c7a36a, transparent);
}

.mx-title p {
  margin: 8px 0 0;
  color: #8b948f;
  font-size: 14px;
  letter-spacing: .6px;
}

.mx-stars {
  background:
    radial-gradient(circle at 12% 16%, rgba(233, 239, 230, .65), transparent 22%),
    radial-gradient(circle at 90% 76%, rgba(238, 243, 236, .7), transparent 20%),
    #fff;
}

.mx-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mx-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 61, 50, .12);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(30, 56, 47, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.mx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(30, 56, 47, .14);
}

.mx-card > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.mx-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.mx-card__body h3,
.mx-card__body ul {
  display: none;
}

.mx-card h3 {
  margin: 0 0 16px;
  font-family: "SimSun", "Songti SC", serif;
  font-size: 26px;
  line-height: 1.22;
  color: #2b3030;
}

.mx-card ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mx-card li {
  height: 22px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(103, 136, 188, .16);
  color: #60769c;
  font-size: 12px;
  line-height: 22px;
}

.mx-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 33px;
  margin-top: auto;
  border: 1px solid rgba(105, 115, 132, .42);
  border-radius: 17px;
  background: rgba(255, 255, 255, .72);
  color: #5c6472;
  font-size: 13px;
  transition: .22s ease;
  pointer-events: auto;
}

.mx-card a::after,
.mx-more::after {
  content: "→";
  margin-left: 10px;
}

.mx-card:hover a {
  color: #fff;
  background: var(--mx-green);
  border-color: var(--mx-green);
}

.tone-gold li,
.tone-cream li,
.tone-beige li {
  background: rgba(196, 159, 91, .16);
  color: #a0783d;
}

.tone-pink li,
.tone-rose li {
  background: rgba(203, 103, 143, .14);
  color: #b15a84;
}

.mx-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 206px;
  height: 44px;
  margin: 28px auto 0;
  border: 1px solid rgba(25, 102, 62, .55);
  border-radius: 23px;
  color: var(--mx-green);
  background: #fff;
  font-size: 16px;
  transition: .22s ease;
}

.mx-more:hover {
  color: #fff;
  background: var(--mx-green);
}

.mx-season {
  padding-top: 50px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(249, 250, 248, .94)),
    radial-gradient(circle at 20% 0, rgba(225, 231, 219, .74), transparent 30%);
}

.mx-season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mx-season-grid article {
  overflow: hidden;
  border: 1px solid rgba(34, 83, 59, .12);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(31, 64, 53, .08);
}

.mx-season-grid img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  object-position: center;
}

.mx-season-grid h3 {
  margin: 0;
  padding: 20px 16px;
  text-align: center;
  color: #38443e;
  font-size: 18px;
  font-weight: 500;
}

.mx-launch {
  position: relative;
  min-height: 470px;
  overflow: visible;
  background: #f6f8f8;
}

.mx-launch > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.mx-launch::before,
.mx-launch::after {
  content: "";
  position: absolute;
  bottom: 82px;
  width: 180px;
  height: 150px;
  opacity: .5;
  background:
    radial-gradient(ellipse at 30% 80%, #5f915a 0 20%, transparent 21%),
    radial-gradient(ellipse at 62% 68%, #78a26a 0 18%, transparent 19%),
    radial-gradient(ellipse at 20% 38%, #82aa73 0 12%, transparent 13%);
}

.mx-launch::before {
  left: 0;
}

.mx-launch::after {
  right: 0;
  transform: scaleX(-1);
}

.mx-launch__panel {
  position: relative;
  z-index: 2;
  width: 640px;
  margin: -72px auto 0;
  padding: 35px 58px 36px;
  border: 1px solid rgba(199, 169, 120, .46);
  border-radius: 4px;
  text-align: center;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 42px rgba(33, 61, 53, .12);
}

.mx-launch__panel span {
  display: block;
  color: #8c8c8c;
  font-size: 15px;
}

.mx-launch__panel h2 {
  margin: 10px 0 4px;
  font-family: "SimSun", "Songti SC", serif;
  font-size: 24px;
  color: #313936;
}

.mx-launch__panel strong {
  display: block;
  margin-bottom: 12px;
  color: #a58c62;
  font-weight: 500;
}

.mx-launch__panel p {
  width: 360px;
  margin: 0 auto 18px;
  color: #68736e;
  font-size: 14px;
  line-height: 1.8;
}

.mx-launch__panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 34px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #cfae6e, #b28b49);
}

.mx-footer {
  margin-top: -42px;
  padding: 86px 0 34px;
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 0 10%, rgba(132, 180, 121, .24), transparent 18%),
    radial-gradient(circle at 100% 70%, rgba(169, 202, 150, .22), transparent 20%),
    linear-gradient(115deg, #0b4a2d, #06351f);
}

.mx-footer__inner {
  display: grid;
  grid-template-columns: 300px 1fr 230px;
  gap: 60px;
  align-items: start;
}

.mx-footer__contact span,
.mx-footer__contact em {
  display: block;
  font-style: normal;
}

.mx-footer__contact strong {
  display: block;
  margin: 8px 0 6px;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
}

.mx-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.mx-social i {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.mx-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.mx-footer dl {
  margin: 0;
}

.mx-footer dt {
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.mx-footer dd {
  margin: 0 0 9px;
  font-size: 14px;
}

.mx-footer a:hover {
  color: #fff;
}

.mx-footer__qr {
  position: relative;
  margin-top: -56px;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  color: #234338;
  background: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .16);
}

.mx-footer__qr h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--mx-green);
}

.mx-footer__qr p {
  margin: 0 0 12px;
  font-size: 13px;
}

.mx-footer__qr img {
  width: 124px;
  margin: 0 auto 10px;
}

.mx-footer__qr a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 17px;
  color: #fff;
  background: var(--mx-green);
  font-size: 13px;
}

@media (max-width: 1200px) {
  .mx-nav {
    gap: 22px;
  }

  .mx-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-season-grid,
  .mx-footer__inner {
    grid-template-columns: 1fr;
  }
}

.mx-card a::after,
.mx-more::after {
  content: "\2192";
  margin-left: 10px;
}

/* 2026-07-01 middle area refresh: keep shared header/footer and original hero banner */
.mx-page main {
  background:
    radial-gradient(circle at 50% 22%, rgba(214, 218, 255, .42), transparent 34%),
    linear-gradient(180deg, #f7f8ff 0%, #fff 46%, #fbfbff 100%);
}

.mx-page .mx-hero {
  background: #eef1ff;
}

.mx-page .mx-stars {
  padding: 44px 0 34px;
  background:
    radial-gradient(circle at 12% 24%, rgba(190, 198, 255, .18), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(255, 240, 211, .42), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}

.mx-page .mx-title {
  margin-bottom: 30px;
}

.mx-page .mx-title h2 {
  color: #20256b;
  font-size: 31px;
  letter-spacing: 5px;
  font-family: "SimSun", "Songti SC", serif;
}

.mx-page .mx-title h2::before,
.mx-page .mx-title h2::after {
  width: 44px;
  margin: 0 16px 10px;
  background: linear-gradient(90deg, transparent, #6f70c8, transparent);
}

.mx-page .mx-title p {
  color: rgba(44, 48, 120, .62);
  font-size: 13px;
  letter-spacing: .8px;
}

.mx-page .mx-product-grid {
  width: min(1120px, calc(100% - 72px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 24px;
}

.mx-page .mx-card {
  overflow: hidden;
  border: 1px solid rgba(137, 145, 213, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(74, 77, 150, .12);
}

.mx-page .mx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(72, 75, 154, .18);
}

.mx-page .mx-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 441 / 658;
  object-fit: contain;
  object-position: center;
}

.mx-page .mx-card__body {
  right: 18px;
  bottom: 18px;
  left: auto;
  display: block;
}

.mx-page .mx-card h3,
.mx-page .mx-card ul {
  display: none;
}

.mx-page .mx-card a {
  min-width: 112px;
  height: 34px;
  margin: 0;
  border-color: rgba(82, 88, 178, .28);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  color: #4d55b6;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(68, 70, 150, .1);
}

.mx-page .mx-card:hover a {
  border-color: #5c60c7;
  background: linear-gradient(135deg, #7777dc, #555fca);
  color: #fff;
}

.mx-page .mx-more {
  width: 214px;
  height: 44px;
  margin-top: 30px;
  border-color: rgba(86, 91, 192, .66);
  color: #4f57bc;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 26px rgba(74, 77, 150, .08);
}

.mx-page .mx-more:hover {
  border-color: #5c60c7;
  background: linear-gradient(135deg, #7777dc, #555fca);
  color: #fff;
}

.mx-page .mx-season {
  padding: 34px 0 68px;
  background:
    radial-gradient(circle at 18% 14%, rgba(187, 206, 255, .18), transparent 26%),
    linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.mx-page .mx-season-grid {
  width: min(1040px, calc(100% - 72px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.mx-page .mx-season-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(116, 129, 205, .2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(74, 77, 150, .12);
  transition: transform .22s ease, box-shadow .22s ease;
}

.mx-page .mx-season-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(74, 77, 150, .18);
}

.mx-page .mx-season-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1556 / 1000;
  object-fit: cover;
  object-position: center;
}

.mx-page .mx-season-grid h3 {
  position: relative;
  margin: 0;
  padding: 16px 52px 17px 22px;
  text-align: left;
  color: #4851ad;
  font-size: 18px;
  font-weight: 500;
}

.mx-page .mx-season-grid h3::after {
  content: "\2192";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7777dc, #555fca);
  text-align: center;
  line-height: 28px;
  transform: translateY(-50%);
}

.mx-page .mx-launch {
  display: none;
}

@media (max-width: 1200px) {
  .mx-page .mx-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
