/* 良品坐标官网首页样式 — 源文件，编译为 style.css */
/* ============================================================
   0. 全站基准说明
   PC 1920 稿：稿上 px ÷ 19.2 = vw（@vw-base = 19.2）
   移动 750 稿：稿上 px ÷ 7.5 = vw（@vw-mobile = 7.5）
   header 高度用 vw（稿 112px）；其余 nav 细项（边框、下拉等）仍可用 px
   ============================================================ */
html {
  scroll-behavior: smooth;
}
/* ============================================================
   1. 全局基础
   ============================================================ */
:root {
  --color-primary: #9D7871;
  --color-bg: #ffffff;
  --color-bg-gray: #f7f7f7;
  --color-text: #000000;
  --color-text-muted: #111111;
  --color-white: #fff;
  --color-black: #000000;
  --color-border: #f1f1f1;
  --nav-height: 5.83333333vw;
  --font-base: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --section-padding: 5.20833333vw 0;
  --content-max: 1200px;
  --transition: 0.4s ease;
}
@media (max-width: 768px) {
  :root {
    --nav-height: 13.6vw;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: var(--font-base);
  font-size: 0.83333333vw;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}
/* ============================================================
   2. 布局工具类
   ============================================================ */
.container {
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  padding: 0vw 2.08333333vw 0vw 2.08333333vw;
}
.page-container {
  padding: 0vw 13.54166667vw 0vw 13.54166667vw;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-center-y {
  display: flex;
  align-items: center;
}
/* ============================================================
   3. 导航栏（顶栏高度 vw；菜单边框/字号等仍为 px）
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  overflow: visible;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}
.header.scrolled,
body.menu-open .header {
  background: var(--color-white);
}
.header .header-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.09375vw;
  pointer-events: none;
  transform: scaleY(-1);
  transform-origin: center bottom;
  background: url('../img/坐标线-白.png') repeat-x left bottom;
  background-size: 24.21875vw 100%;
}
.header.scrolled .header-line,
body.menu-open .header .header-line {
  background-image: url('../img/坐标线-灰.png');
}
.header .header-container {
  height: var(--nav-height);
  padding: 0vw 13.54166667vw 0vw 13.54166667vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo a {
  display: flex;
  align-items: center;
}
.header .logo img {
  height: 2.76041667vw;
  width: 16.45833333vw;
}
.header .menu {
  height: 100%;
  align-self: stretch;
}
.header .menu ul {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
}
.header .menu ul li {
  position: relative;
  height: 100%;
  margin: 0 10px;
  padding: 0 20px;
}
.header .menu ul li.nav-active > a {
  color: #9D7871;
}
.header .menu ul li > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  transition: color var(--transition);
  white-space: nowrap;
  box-sizing: border-box;
}
.header.scrolled .menu ul li > a,
body.menu-open .header .menu ul li > a {
  color: #000000;
}
.header.scrolled .menu ul li.nav-active > a,
body.menu-open .header .menu ul li.nav-active > a {
  color: #9D7871;
}
/* 导航 hover 下划线（已关闭，保留样式备恢复）
@keyframes nav-line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.header .menu ul li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: @color-primary;
  transform: scaleX(0);
  transform-origin: center bottom;
  pointer-events: none;
}

.header.scrolled .menu ul li > a::after,
body.menu-open .header .menu ul li > a::after {
  background: @color-primary;
}

.header .menu ul li > a:hover::after,
.header .menu ul li:has(.sumbit:hover) > a::after {
  animation: nav-line-grow @nav-line-duration ease forwards;
}
*/
.header .menu ul li > a:hover {
  color: #9D7871;
}
.header.scrolled .menu ul li > a:hover,
body.menu-open .header .menu ul li > a:hover {
  color: #9D7871;
}
/* 外层 sumbit：仅透明 hover 桥接区（无边框/阴影），保证移到子菜单不闪关 */
.header .menu ul li .sumbit {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -0.88541667vw;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  z-index: 1001;
}
.header .menu ul li:hover .sumbit {
  display: block;
}
/* 内层：实际下拉菜单，显示在黑线下方 */
.header .menu ul li .sumbit-inner {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0.52083333vw 0vw 0.52083333vw 0vw;
  width: max-content;
  box-sizing: border-box;
  border-radius: 8px;
}
.header .menu ul li .sumbit-inner a {
  display: block;
  padding: 0.52083333vw 2.60416667vw 0.52083333vw 2.60416667vw;
  font-size: 1.04166667vw;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-align: center;
  color: var(--color-text);
}
.header .menu ul li .sumbit-inner a:hover {
  color: var(--color-primary);
}
.header .menu ul li .sumbit-inner a.is-active {
  color: var(--color-primary);
  font-weight: 600;
}
.header .right {
  display: none;
}
.header .menubtn {
  cursor: pointer;
  padding: 8px;
}
.header .navbar-icons {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.header .navbar-icons span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background-color var(--transition);
}
.header .menubtn .navbar-icons span:nth-child(2) {
  width: 70%;
}
.header.scrolled .navbar-icons span,
body.menu-open .header .navbar-icons span {
  background: var(--color-text);
}
.header .menubtn.open .navbar-icons span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header .menubtn.open .navbar-icons span:nth-child(2) {
  opacity: 0;
}
.header .menubtn.open .navbar-icons span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ============================================================
   4. 移动端侧滑菜单（固定 px）
   ============================================================ */
.menu-mc {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  background: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.menu-mc.active {
  transform: translateX(0);
}
.menu-mc .list {
  padding: 24px 0;
}
.menu-mc .list ul li a {
  border-bottom: 1px solid var(--color-border);
}
.menu-mc .list ul li .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}
.menu-mc .list ul li .title .iconfont {
  font-size: 12px;
  transition: transform 0.3s;
}
.menu-mc .list ul li .title.active .iconfont {
  transform: rotate(180deg);
}
.menu-mc .list ul li .submenu {
  display: none;
  background: var(--color-white);
}
.menu-mc .list ul li .submenu a {
  display: block;
  padding: 16px 36px;
  font-size: 14px;
  color: var(--color-text);
}
.menu-mc .list ul li .submenu a:hover {
  color: var(--color-text);
}
.menu-mc .list ul li .submenu a.is-active {
  color: var(--color-primary);
}
/* ============================================================
   5. Hero 首屏
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide {
  overflow: hidden;
}
.hero-swiper .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide picture img,
.hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-swiper-pagination {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 2.08333333vw;
  z-index: 2;
  text-align: center;
  --swiper-pagination-color: #000000;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.7);
  --swiper-pagination-bullet-inactive-opacity: 1;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 1.14583333vw;
  height: 0.20833333vw;
  border-radius: 0.10416667vw;
  background: rgba(150, 150, 150, 0.75);
  opacity: 1;
  vertical-align: middle;
  transition: background-color 0.3s ease;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.75);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-inner {
  position: absolute;
  z-index: 2;
  text-align: left;
  top: 289px;
  right: 260px;
  opacity: 0;
  animation: heroFadeIn 1.2s ease forwards 0.3s;
  font-weight: 500;
}
.hero-slogan {
  font-size: 2.70833333vw;
  line-height: 3.64583333vw;
  color: var(--color-text);
}
.hero-sub {
  display: inline-flex;
  align-items: center;
  font-size: 2.70833333vw;
  line-height: 3.64583333vw;
  color: var(--color-text);
}
.hero-sub img {
  display: block;
  flex-shrink: 0;
  width: 5.3125vw;
  height: 2.03125vw;
  margin: 0vw 1.04166667vw 0vw 1.04166667vw;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(1.04166667vw);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero--single .hero-swiper .swiper-slide picture img,
.hero--single .hero-swiper .swiper-slide img {
  transform-origin: center center;
  will-change: transform;
  animation: heroImageEnter 1.2s ease forwards, heroKenBurns 6s ease-out 1.2s forwards;
}
.hero--single .hero-inner {
  opacity: 1;
  animation: none;
}
.hero--single .hero-slogan {
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.4s;
}
.hero--single .hero-sub {
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.65s;
}
@keyframes heroImageEnter {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero--single .hero-swiper .swiper-slide picture img,
  .hero--single .hero-swiper .swiper-slide img {
    animation: none !important;
    transform: none !important;
  }
  .hero--single .hero-slogan,
  .hero--single .hero-sub {
    opacity: 1;
    animation: none !important;
    transform: none !important;
  }
}
/* ============================================================
   6. 品牌历史区（brand-story）
   ============================================================ */
.home-panel {
  padding: 0vw 13.54166667vw 0vw 13.54166667vw;
  background: var(--color-white);
}
#brand-history {
  padding-top: 0;
  scroll-margin-top: var(--nav-height);
}
.brand-story .text {
  box-sizing: border-box;
  padding: 19.27083333vw 0vw 0vw 0vw;
  text-align: left;
  height: 36.09375vw;
}
.brand-story .text .title {
  font-size: 2.08333333vw;
  font-weight: 700;
  color: #000;
  line-height: 1.35;
}
.brand-story .text .content {
  height: 15vw;
  font-size: 0.83333333vw;
  font-weight: 400;
  color: #000;
  line-height: 1.875vw;
  letter-spacing: 1px;
  word-break: break-all;
  text-align: left;
  margin-top: 2.08333333vw;
}
.brand-story-img {
  position: relative;
  /* PC：横向裁剪，避免位移中的图盖住左侧正文；不透明只移出画布外 */
  overflow-x: hidden;
}
@supports (overflow: clip) {
  .brand-story-img {
    overflow-x: clip;
  }
}
.brand-story-img img {
  max-width: none;
  max-inline-size: none;
  max-block-size: none;
  vertical-align: middle;
}
.brand-story .pic {
  width: 38.48958333vw;
  height: 36.09375vw;
  object-fit: cover;
}
.brand-story .float-pic {
  position: absolute;
  z-index: 2;
  width: 40.36458333vw;
  height: 60.10416667vw;
  right: 0;
  bottom: 13.22916667vw;
  object-fit: cover;
}
/* 品牌历史：滚动后由 JS 添加行内 animation 触发动画 */
.brand-history .brand-story-img .pic,
.brand-history .brand-story-img .float-pic {
  opacity: 1;
}
/* 淡入动画 */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 从右侧进入 */
@keyframes inRight {
  from {
    transform: translateX(120%);
  }
  to {
    transform: translateX(0);
  }
}
/* 从左侧进入 */
@keyframes inLeft {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-history .brand-story-img .pic,
  .brand-history .brand-story-img .float-pic {
    transform: none !important;
    transition: none !important;
  }
}
/* ============================================================
   7. 内容区公共
   ============================================================ */
.section-content {
  padding: var(--section-padding);
}
.anim-block {
  opacity: 0;
  transform: translateY(2.08333333vw);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-from-left {
  opacity: 0;
  transform: translateX(-2.5vw);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-from-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.anim-from-right {
  opacity: 0;
  transform: translateX(2.5vw);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.section-label {
  display: block;
  font-size: 0.625vw;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.83333333vw;
}
.text-icon {
  width: 5.3125vw;
  height: 2.03125vw;
  display: inline-block;
  margin: 0vw 0.52083333vw 0vw 0.52083333vw;
  vertical-align: middle;
}
.section-title {
  font-size: 2.1875vw;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 4.16666667vw;
  vertical-align: middle;
}
.section-body {
  font-size: 1.35416667vw;
  color: var(--color-text-muted);
  line-height: 1.4;
  font-weight: normal;
}
.section-body .text-block {
  width: 100%;
  height: 2.08333333vw;
}
.section-body p {
  margin-bottom: 0.3125vw;
}
/* ============================================================
   产品页
   ============================================================ */
.product-page {
  background: var(--color-white);
}
#space {
  scroll-margin-top: var(--nav-height);
}
.product-category__hero {
  background: var(--color-bg-gray);
  padding: 10.3125vw 0vw 4.16666667vw 0vw;
}
.product-category__head {
  min-height: 10.9375vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-category__title {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 2.70833333vw;
  line-height: 3.54166667vw;
  font-weight: 600;
  color: var(--color-text);
}
.product-category__index {
  flex-shrink: 0;
  width: 3.02083333vw;
  height: 3.02083333vw;
  margin: 0vw 1.5625vw 0vw 0vw;
}
.product-category__line {
  flex-shrink: 0;
  width: 5.98958333vw;
  height: 1.14583333vw;
  margin: 0vw 1.25vw 0vw 1.25vw;
}
.product-category__subtitle {
  margin-top: 0.72916667vw;
  margin-left: 4.58333333vw;
  font-size: 1.45833333vw;
  line-height: 1.77083333vw;
  font-weight: 500;
  color: var(--color-text);
}
.product-category__body {
  background: var(--color-white);
}
.product-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 6.25vw 0vw 7.8125vw 0vw;
}
.product-item > * {
  position: relative;
  z-index: 1;
}
.product-item--media-right {
  position: relative;
}
.product-item--media-right::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f7f7f7;
  z-index: 0;
}
.product-item--media-right .product-item__content {
  width: 26.04166667vw;
  padding-left: 5.20833333vw;
}
.product-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-item__media {
  overflow: hidden;
}
.product-item__media:hover img {
  transform: scale(1.05);
}
.product-item__media--large {
  width: 39.0625vw;
  height: 52.08333333vw;
}
.product-item__media--small {
  width: 15.625vw;
  height: 20.83333333vw;
}
.product-item__content {
  box-sizing: border-box;
  width: 20.83333333vw;
  flex: 0 0 auto;
  padding-top: 4.47916667vw;
}
.product-item__text {
  width: 100%;
}
.product-item__badges {
  display: flex;
  align-items: center;
  gap: 0.41666667vw;
}
.product-item__badges img {
  width: 1.92708333vw;
  height: 1.92708333vw;
  object-fit: contain;
}
.product-item__title {
  margin-top: 0.83333333vw;
  font-size: 2.1875vw;
  line-height: 2.1875vw;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}
.product-item__copy {
  margin-top: 3.125vw;
  font-size: 1.35416667vw;
  line-height: 2.08333333vw;
  font-weight: 400;
  color: var(--color-text);
}
.product-item__copy p {
  margin: 0;
}
.product-item__content .product-item__media--small {
  margin-top: 6.25vw;
}
/* ============================================================
   品牌简介
   ============================================================ */
#brand-intro {
  background: var(--color-bg);
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 4.16666667vw;
}
.brand-row.row-text-left .brand-text,
.brand-row.row-text-left .brand-media,
.brand-row.row-img-left .brand-text,
.brand-row.row-img-left .brand-media {
  flex: 1;
}
.brand-media {
  position: relative;
}
.brand-media .main-img {
  width: 35.9375vw;
  height: 47.91666667vw;
  object-fit: cover;
  display: block;
}
.brand-media .float-img {
  position: absolute;
  bottom: -1.66666667vw;
  left: -1.66666667vw;
  width: 55%;
  border-radius: 0.20833333vw;
  box-shadow: 0 0.625vw 2.08333333vw rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
/* ============================================================
   8. 品牌故事
   ============================================================ */
.section-story {
  position: relative;
  padding: 6.25vw 0vw 7.8125vw 0vw;
  background: var(--color-bg-gray);
  overflow: hidden;
}
.section-story::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.09375vw;
  pointer-events: none;
  background: url('../img/坐标线-灰.png') repeat-x left bottom;
  background-size: 24.21875vw 100%;
}
.story-head {
  display: grid;
  grid-template-columns: 32.29166667vw 1fr;
  gap: 4.16666667vw;
  align-items: flex-start;
}
.story-title {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 2.1875vw;
  line-height: 3.02083333vw;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}
.story-title img {
  flex-shrink: 0;
  width: 7.08333333vw;
  height: 1.04166667vw;
  margin: 0vw 0.83333333vw 0vw 0.83333333vw;
}
.story-copy {
  padding-top: 0.3125vw;
  font-size: 1.35416667vw;
  line-height: 1.875vw;
  font-weight: 400;
  color: var(--color-text);
}
.story-copy p {
  margin: 0;
}
.story-copy p:first-child {
  margin-bottom: 2.70833333vw;
}
.story-copy span {
  color: #9D7871;
}
.story-card-list {
  display: grid;
  grid-template-columns: repeat(3, 22.91666667vw);
  gap: 2.08333333vw;
  margin-top: 5.10416667vw;
}
.story-card-list img {
  width: 22.91666667vw;
  height: 10.9375vw;
  object-fit: cover;
}
.story-card-divider {
  height: 0.15625vw;
  margin-top: 2.91666667vw;
  background: #DEDEDE;
}
.story-axis-list {
  display: grid;
  grid-template-columns: repeat(3, 22.91666667vw);
  gap: 2.08333333vw;
  align-items: end;
  margin-top: 3.07291667vw;
}
.story-axis-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 13.69791667vw;
}
.story-axis-item img {
  height: 13.69791667vw;
  width: auto;
  max-width: none;
}
.story-axis-divider {
  height: 0.15625vw;
  margin-top: 3.125vw;
  background: #DEDEDE;
}
.story-method-list {
  display: grid;
  grid-template-columns: repeat(4, 6.97916667vw);
  justify-content: space-between;
  margin-top: 3.125vw;
}
.story-method-list img {
  width: 6.97916667vw;
  height: 11.71875vw;
  object-fit: contain;
}
/* ============================================================
   9. 品牌主张
   ============================================================ */
#brand-value {
  background: var(--color-white);
}
.section-value {
  padding: 7.8125vw 0vw 7.8125vw 0vw;
}
.value-row {
  display: grid;
  grid-template-columns: 1fr 35.9375vw;
  gap: 4.6875vw;
  align-items: center;
}
.value-media img {
  display: block;
  width: 35.9375vw;
  height: 47.91666667vw;
  object-fit: cover;
}
.value-title {
  margin: 0;
  font-size: 2.1875vw;
  line-height: 3.02083333vw;
  font-weight: 600;
  color: var(--color-text);
}
.value-title-line {
  display: flex;
  align-items: center;
}
.value-title-line img {
  flex-shrink: 0;
  width: 6.97916667vw;
  height: 1.04166667vw;
  margin: 0vw 0.52083333vw 0vw 0vw;
}
.value-copy {
  margin-top: 2.5vw;
  font-size: 0.9375vw;
  line-height: 1.77083333vw;
  font-weight: 400;
  color: var(--color-text);
}
.value-copy p {
  margin: 0;
}
/* ============================================================
   10. Footer（固定 px）
   ============================================================ */
.site-footer {
  padding: 0vw 13.54166667vw 0vw 13.54166667vw;
  background: url('../img/Bottom BG.jpg') no-repeat center center;
  background-size: cover;
}
.footer-shell {
  padding: 3.38541667vw 0vw 3.02083333vw 0vw;
}
.footer-top,
.footer-middle,
.footer-copy {
  padding: 0vw 6.25vw 0vw 6.25vw;
}
.footer-divider {
  height: 1.09375vw;
  margin: 2.60416667vw -13.54166667vw 0vw -13.54166667vw;
  background: url('../img/坐标线-灰.png') repeat-x left center;
  background-size: 24.21875vw 100%;
}
.footer-middle + .footer-divider {
  transform: scaleY(-1);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  width: 18.95833333vw;
  height: 3.17708333vw;
}
.footer-contact {
  font-size: 1.45833333vw;
  line-height: 1.77083333vw;
  font-weight: 500;
  color: var(--color-text);
}
.footer-contact--mobile {
  display: none;
}
.footer-middle {
  display: grid;
  grid-template-columns: 12.5vw 1fr;
  align-items: center;
  margin-top: 4.58333333vw;
}
.footer-follow {
  font-size: 2.1875vw;
  line-height: 3.02083333vw;
  font-weight: 600;
  color: var(--color-text);
}
.footer-channels {
  display: grid;
  grid-template-columns: repeat(4, 7.60416667vw);
  justify-content: space-between;
  align-items: start;
  overflow: visible;
}
.footer-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text);
  overflow: visible;
}
.footer-channel .footer-channel__icon + span {
  margin-top: 0.9375vw;
  font-size: 1.14583333vw;
  line-height: 1.14583333vw;
  font-weight: 500;
  white-space: nowrap;
}
.footer-channel__icon {
  position: relative;
  display: block;
  width: 3.59375vw;
  height: 3.59375vw;
  overflow: visible;
}
.footer-channel__icon .footer-channel__icon--grey,
.footer-channel__icon .footer-channel__icon--color {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}
.footer-channel__icon .footer-channel__icon--color {
  opacity: 0;
}
.footer-channel__qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.78125vw);
  width: 6.25vw;
  height: 6.25vw;
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 2;
}
.footer-qr-popup {
  display: none;
}
.footer-channel:hover .footer-channel__icon--grey,
.footer-channel:focus-visible .footer-channel__icon--grey {
  opacity: 0;
}
.footer-channel:hover .footer-channel__icon--color,
.footer-channel:focus-visible .footer-channel__icon--color {
  opacity: 1;
}
.footer-channel:hover .footer-channel__qr,
.footer-channel:focus-visible .footer-channel__qr {
  opacity: 1;
  visibility: visible;
}
.footer-copy {
  margin-top: 3.02083333vw;
  font-size: 0.625vw;
  line-height: 0.9375vw;
  text-align: center;
  color: rgba(0, 0, 0, 0.42);
}
/* ============================================================
   11. 移动端 ≤ 768px（750 稿，px ÷ 7.5 = vw）
   ============================================================ */
@media (max-width: 768px) {
  .container {
    padding: 0vw 2.66666667vw 0vw 2.66666667vw;
  }
  .page-container {
    padding: 0vw 8vw 0vw 8vw;
  }
  .header .header-container {
    padding: 0vw 4vw 0vw 4vw;
  }
  .header .logo img {
    width: 42.13333333vw;
    height: 7.06666667vw;
  }
  .header .header-line {
    height: 2.66666667vw;
    background-size: 62vw 100%;
  }
  .header .menu {
    display: none;
  }
  .header .right {
    display: flex;
  }
  .menu-mc {
    display: block;
  }
  .hero {
    height: 133.33333333vw;
  }
  .hero-swiper .swiper-slide picture img,
  .hero-swiper .swiper-slide img {
    object-fit: cover;
    object-position: center;
  }
  .hero-swiper-pagination .swiper-pagination-bullet {
    width: 2.93333333vw;
    height: 0.53333333vw;
  }
  .hero-inner {
    top: 33.46666667vw;
    left: 8vw;
    right: auto;
  }
  .hero-slogan {
    font-size: 8vw;
    line-height: normal;
    letter-spacing: 0.03em;
  }
  .hero-sub {
    font-size: 8vw;
    line-height: normal;
  }
  .hero-sub img {
    width: 14vw;
    height: 6.66666667vw;
  }
  .brand-story {
    margin-top: var(--nav-height);
  }
  .brand-story .text {
    width: 100%;
    height: auto;
    padding: 0 0 5.33333333vw 0;
  }
  .brand-story .text .title {
    font-size: 5.33333333vw;
    font-weight: 700;
    margin-bottom: 4.26666667vw;
    color: #000;
  }
  .brand-story .text .content {
    height: auto;
    font-size: 3.2vw;
    font-weight: 300;
    color: #000;
    line-height: 5.33333333vw;
    letter-spacing: 0.13333333vw;
    margin-bottom: 4.26666667vw;
  }
  .brand-story-inner {
    flex-direction: column;
    padding: 0vw 4.26666667vw 0vw 4.26666667vw;
  }
  .brand-story-img {
    min-height: 0;
    width: 100%;
    overflow-x: visible;
  }
  /* 移动端不参与左右入场，主图常驻显示 */
  .brand-history .brand-story-img .pic {
    transform: none !important;
    transition: none !important;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .brand-story .float-pic {
    display: none !important;
  }
  /* 遗留类名占位 */
  .brand-story-media {
    min-height: 0;
    width: 100%;
  }
  .brand-row {
    flex-direction: column;
    gap: 13.33333333vw;
  }
  .product-page {
    background: var(--color-white);
  }
  .product-page .page-container {
    padding: 0vw 4vw 0vw 4vw;
  }
  .product-category__hero {
    padding: 24.26666667vw 0vw 11.46666667vw 0vw;
  }
  .product-category__head {
    min-height: 0;
  }
  .product-category__title {
    font-size: 6.93333333vw;
    line-height: 8.53333333vw;
    white-space: nowrap;
  }
  .product-category__index {
    width: 7.73333333vw;
    height: 7.73333333vw;
    margin: 0vw 3.2vw 0vw 0vw;
  }
  .product-category__line {
    width: 24vw;
    height: 2.66666667vw;
    margin: 0vw 2.93333333vw 0vw 2.93333333vw;
  }
  .product-category__subtitle {
    margin-top: 3.73333333vw;
    margin-left: 10.93333333vw;
    font-size: 3.73333333vw;
    line-height: 5.33333333vw;
  }
  .product-item {
    margin-top: 16vw;
    margin-bottom: 16vw;
  }
  .product-item--media-left,
  .product-item--media-right {
    display: flex;
    flex-direction: column;
  }
  .product-item--media-left::before,
  .product-item--media-right::before {
    display: none;
  }
  .product-item--media-left {
    gap: 10.66666667vw;
  }
  .product-item__content {
    order: 1;
  }
  .product-item__media--large {
    order: 2;
  }
  .product-item__content {
    padding-top: 0vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4vw;
  }
  .product-item--media-right .product-item__content {
    margin: 0;
    width: 100%;
  }
  .product-item__text {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding-left: 0;
  }
  .product-item__content .product-item__media--small {
    margin-top: 0;
    flex: 0 0 auto;
  }
  .product-item__badges {
    gap: 1.33333333vw;
  }
  .product-item__badges img {
    width: 4.93333333vw;
    height: 4.93333333vw;
  }
  .product-item__title {
    margin-top: 3.2vw;
    font-size: 5.6vw;
    line-height: 7.46666667vw;
  }
  .product-item__copy {
    margin-top: 8vw;
    font-size: 3.46666667vw;
    line-height: 5.6vw;
  }
  .product-item__media--small {
    width: 40vw;
    height: 53.33333333vw;
  }
  .product-item__media--large {
    width: 92vw;
    height: 122.66666667vw;
    margin-top: 8vw;
  }
  .brand-media .float-img {
    display: none;
  }
  .brand-media .main-img {
    width: 92vw;
    height: 122.66666667vw;
  }
  #brand-intro,
  #brand-value {
    padding: 12vw 0vw 12vw 0vw;
  }
  .section-story {
    padding: 13.33333333vw 0vw 12.8vw 0vw;
  }
  .section-story::after {
    height: 2.66666667vw;
    background-size: 62vw 100%;
  }
  .story-head {
    display: block;
  }
  .story-title {
    font-size: 5.33333333vw;
    line-height: 7.46666667vw;
  }
  .story-title img {
    width: 18.13333333vw;
    height: 2.66666667vw;
    margin: 0vw 2.66666667vw 0vw 2.66666667vw;
  }
  .story-copy {
    margin-top: 8.53333333vw;
    padding-top: 0;
    font-size: 3.73333333vw;
    line-height: 5.86666667vw;
  }
  .story-copy p:first-child {
    margin-bottom: 6.93333333vw;
  }
  .story-card-list {
    width: 92vw;
    max-width: none;
    margin: 11.2vw -4vw 0vw -4vw;
    grid-template-columns: repeat(3, 29.33333333vw);
    gap: 2vw;
  }
  .story-card-list picture,
  .story-card-list img {
    display: block;
    width: 29.33333333vw;
    height: 38.66666667vw;
  }
  .story-card-list img {
    object-fit: cover;
  }
  .story-card-divider {
    width: 92vw;
    max-width: none;
    height: 0.4vw;
    margin-top: 6.66666667vw;
    margin: 6.66666667vw -4vw 0vw -4vw;
  }
  .story-axis-list {
    width: 92vw;
    max-width: none;
    margin: 6.66666667vw -4vw 0vw -4vw;
    grid-template-columns: repeat(3, 21.33333333vw);
    justify-content: space-between;
    gap: 0;
  }
  .story-axis-item {
    width: 21.33333333vw;
    height: 28vw;
  }
  .story-axis-item img {
    width: 21.33333333vw;
    height: 28vw;
    object-fit: contain;
    max-width: none;
  }
  .story-axis-divider {
    width: 92vw;
    max-width: none;
    height: 0.4vw;
    margin-top: 6.66666667vw;
    margin: 6.66666667vw -4vw 0vw -4vw;
  }
  .story-method-list {
    width: 92vw;
    max-width: none;
    margin: 6.66666667vw -4vw 0vw -4vw;
    grid-template-columns: repeat(4, 14.4vw);
  }
  .story-method-list img {
    width: 14.4vw;
    height: 24vw;
    object-fit: contain;
  }
  #brand-value {
    margin-top: 0;
  }
  .section-value {
    padding: 13.33333333vw 0vw 12vw 0vw;
  }
  .value-row {
    display: block;
  }
  .value-text {
    width: 100%;
  }
  .value-title {
    font-size: 5.6vw;
    line-height: 9.06666667vw;
  }
  .value-title-line img {
    width: 18.13333333vw;
    height: 2.66666667vw;
    margin: 0vw 1.86666667vw 0vw 0vw;
  }
  .value-copy {
    margin-top: 6.93333333vw;
    font-size: 3.2vw;
    line-height: 5.86666667vw;
  }
  .value-media {
    margin-top: 13.33333333vw;
    width: 92vw;
    max-width: none;
    margin: 11.46666667vw -4vw 0vw -4vw;
  }
  .value-media img {
    width: 92vw;
    height: 122.66666667vw;
  }
  .section-title {
    font-size: 4.26666667vw;
  }
  .text-icon {
    width: 13.6vw;
    height: 5.2vw;
    margin: 0vw 1.33333333vw 0vw 1.33333333vw;
  }
  .section-title {
    font-size: 5.6vw;
    margin-bottom: 10.66666667vw;
  }
  .section-body {
    font-size: 3.46666667vw;
  }
  .section-body .text-block {
    height: 5.33333333vw;
  }
  .brand-text {
    width: 100%;
  }
  .site-footer {
    padding: 10.66666667vw 4vw 8vw 4vw;
    background-image: url('../img/M_BottomBG.jpg');
  }
  .footer-shell {
    padding: 0;
  }
  .footer-top,
  .footer-middle,
  .footer-copy {
    padding: 0;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-contact--desktop {
    display: none;
  }
  .footer-contact--mobile {
    display: block;
    text-align: center;
    margin-top: 6.4vw;
    font-size: 3.46666667vw;
    line-height: 4.8vw;
  }
  .footer-logo {
    width: 42.13333333vw;
    height: 7.06666667vw;
  }
  .footer-divider {
    height: 2.66666667vw;
    margin: 6.4vw -4vw 0vw -4vw;
    background-size: 62vw 100%;
  }
  .footer-middle {
    display: block;
    text-align: center;
    margin-top: 6.4vw;
    overflow: visible;
  }
  .footer-middle + .footer-divider {
    margin-top: 6.4vw;
  }
  .footer-follow {
    font-size: 5.33333333vw;
    line-height: 7.46666667vw;
  }
  .footer-channels {
    margin-top: 4.8vw;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.13333333vw;
    overflow: visible;
  }
  .footer-channel {
    position: relative;
  }
  .footer-channel.is-active .footer-channel__icon--grey {
    opacity: 0;
  }
  .footer-channel.is-active .footer-channel__icon--color {
    opacity: 1;
  }
  .footer-qr-popup {
    display: none;
    position: absolute;
    left: 50%;
    bottom: calc(100% + 2vw);
    transform: translateX(-50%);
    z-index: 20;
    background: var(--color-white);
    width: 37.33333333vw;
    padding: 3.2vw 2.66666667vw 3.73333333vw 2.66666667vw;
    border-radius: 1.06666667vw;
    box-shadow: 0 1.06666667vw 3.2vw rgba(0, 0, 0, 0.12);
    text-align: center;
  }
  .footer-qr-popup.is-open {
    display: block;
  }
  .footer-channel:first-child .footer-qr-popup {
    left: 0;
    right: auto;
    transform: none;
  }
  .footer-channel:last-child .footer-qr-popup {
    left: auto;
    right: 0;
    transform: none;
  }
  .footer-qr-popup__close {
    position: absolute;
    top: 2.13333333vw;
    right: 2.13333333vw;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    line-height: 0;
  }
  .footer-qr-popup__close img {
    width: 4.26666667vw;
    max-width: none;
    height: 4.26666667vw;
  }
  .footer-qr-popup__code {
    display: block;
    width: 24vw;
    height: 24vw;
    max-width: none;
    margin: 0 auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .footer-qr-popup__tip {
    margin-top: 2.66666667vw;
    font-size: 2.93333333vw;
    line-height: 4.26666667vw;
    color: var(--color-text);
  }
  .footer-channel__icon {
    width: 14.4vw;
    height: 14.4vw;
  }
  .footer-channel .footer-channel__icon + span {
    margin-top: 1.6vw;
    font-size: 2.93333333vw;
    line-height: 3.73333333vw;
    white-space: normal;
  }
  .footer-channel__qr {
    display: none;
  }
  .footer-channel:hover .footer-channel__icon--grey,
  .footer-channel:focus-visible .footer-channel__icon--grey {
    opacity: 1;
  }
  .footer-channel:hover .footer-channel__icon--color,
  .footer-channel:focus-visible .footer-channel__icon--color {
    opacity: 0;
  }
  .footer-copy {
    margin-top: 4.26666667vw;
    font-size: 2.66666667vw;
    line-height: 3.73333333vw;
  }
}
.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #E8DEDD;
  color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  z-index: 1200;
}
.back-to-top:hover {
  background: #9D7871;
}
.back-to-top:hover .back-to-top__icon--default {
  opacity: 0;
}
.back-to-top:hover .back-to-top__icon--hover {
  opacity: 1;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top__icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}
.back-to-top__icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.back-to-top__icon .back-to-top__icon--hover {
  opacity: 0;
}
@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
  .back-to-top__icon {
    width: 20px;
    height: 20px;
  }
}
.site-messages {
  padding: 1.25vw 0vw 0vw 0vw;
}
.site-message {
  padding: 0.9375vw 1.25vw 0.9375vw 1.25vw;
  border-radius: 0.41666667vw;
  background: rgba(157, 120, 113, 0.12);
  color: var(--color-text);
  font-size: 1.25vw;
  line-height: 1.77083333vw;
}
.contact-page {
  background: #f8f1ec;
}
.contact-hero {
  padding: 6.25vw 0vw 3.33333333vw 0vw;
  text-align: center;
}
.contact-hero__eyebrow {
  margin: 1.04166667vw 0vw 0vw 0vw;
}
.contact-hero__eyebrow,
.contact-card__label {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9375vw;
  line-height: 1.25vw;
}
.contact-hero__title,
.contact-card__title {
  font-size: 2.5vw;
  line-height: 3.125vw;
  font-weight: 600;
  color: var(--color-text);
}
.contact-card__title {
  font-size: 1.66666667vw;
}
.contact-hero__desc {
  margin-top: 1.04166667vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 47.91666667vw;
  font-size: 1.25vw;
  line-height: 1.97916667vw;
  color: rgba(57, 47, 42, 0.78);
}
.contact-section {
  padding: 0vw 0vw 6.25vw 0vw;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.66666667vw;
}
.contact-card {
  padding: 2.91666667vw 2.91666667vw 2.91666667vw 2.91666667vw;
  background: var(--color-white);
  border-radius: 1.04166667vw;
  box-shadow: 0 1.04166667vw 3.125vw rgba(59, 40, 29, 0.08);
}
.contact-feedback-list {
  margin: 0vw 0vw 1.04166667vw 0vw;
  display: grid;
  gap: 0.625vw;
}
.contact-feedback {
  margin: 0vw 0vw 1.04166667vw 0vw;
  padding: 0.83333333vw 1.04166667vw 0.83333333vw 1.04166667vw;
  border: 1px solid rgba(157, 120, 113, 0.24);
  border-radius: 0.625vw;
  background: rgba(157, 120, 113, 0.12);
  color: var(--color-text);
  font-size: 1.04166667vw;
  line-height: 1.5625vw;
}
.contact-feedback--success {
  background: rgba(157, 120, 113, 0.12);
}
.contact-feedback--error {
  border-color: rgba(184, 79, 79, 0.28);
  background: rgba(184, 79, 79, 0.1);
}
.contact-info-list,
.contact-form-grid {
  margin: 1.45833333vw 0vw 0vw 0vw;
  display: grid;
  gap: 1.04166667vw;
}
.contact-info-item {
  padding: 1.04166667vw 1.25vw 1.04166667vw 1.25vw;
  background: #faf6f3;
  border-radius: 0.625vw;
}
.contact-info-item p {
  margin: 0.3125vw 0vw 0vw 0vw;
  font-size: 1.25vw;
  line-height: 1.77083333vw;
  color: var(--color-text);
}
.contact-info-item__name,
.contact-field span {
  display: block;
  color: rgba(57, 47, 42, 0.7);
  font-size: 0.9375vw;
  line-height: 1.25vw;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  margin: 0.625vw 0vw 0vw 0vw;
  padding: 0.9375vw 1.04166667vw 0.9375vw 1.04166667vw;
  border: 1px solid rgba(157, 120, 113, 0.2);
  border-radius: 0.52083333vw;
  background: #fff;
  color: var(--color-text);
  font-size: 1.04166667vw;
  line-height: 1.5625vw;
}
.contact-field textarea {
  min-height: 11.45833333vw;
  resize: vertical;
}
.contact-field .errorlist {
  margin: 0.52083333vw 0vw 0vw 0vw;
  color: #b84f4f;
  font-size: 0.83333333vw;
  line-height: 1.25vw;
}
.contact-field--full {
  grid-column: 1 / -1;
}
.contact-submit {
  margin: 1.45833333vw 0vw 0vw 0vw;
  padding: 0.9375vw 1.66666667vw 0.9375vw 1.66666667vw;
  border: 0;
  border-radius: 52.03125vw;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.04166667vw;
  line-height: 1.45833333vw;
  cursor: pointer;
}
.contact-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .site-messages {
    padding: 2.66666667vw 0vw 0vw 0vw;
  }
  .site-message {
    padding: 2.13333333vw 2.66666667vw 2.13333333vw 2.66666667vw;
    border-radius: 1.06666667vw;
    font-size: 3.2vw;
    line-height: 4.53333333vw;
  }
  .contact-hero {
    padding: 13.6vw 0vw 6.4vw 0vw;
  }
  .contact-hero__eyebrow {
    margin-top: 2.66666667vw;
  }
  .contact-hero__title,
  .contact-card__title {
    font-size: 6.4vw;
    line-height: 7.73333333vw;
  }
  .contact-card__title {
    font-size: 4.26666667vw;
  }
  .contact-hero__desc {
    max-width: 100%;
    font-size: 3.2vw;
    line-height: 4.8vw;
  }
  .contact-section {
    padding: 0vw 0vw 10.66666667vw 0vw;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.2vw;
  }
  .contact-card {
    padding: 3.73333333vw 3.2vw 3.73333333vw 3.2vw;
    border-radius: 2.13333333vw;
  }
  .contact-feedback-list {
    margin: 0vw 0vw 2.13333333vw 0vw;
    gap: 1.33333333vw;
  }
  .contact-feedback {
    margin: 0vw 0vw 2.13333333vw 0vw;
    padding: 1.86666667vw 2.13333333vw 1.86666667vw 2.13333333vw;
    border-radius: 1.6vw;
    font-size: 2.66666667vw;
    line-height: 4vw;
  }
  .contact-info-item {
    padding: 2.4vw 2.4vw 2.4vw 2.4vw;
  }
  .contact-info-item p {
    font-size: 3.2vw;
    line-height: 4.53333333vw;
  }
  .contact-info-item__name,
  .contact-field span {
    font-size: 2.66666667vw;
    line-height: 3.73333333vw;
  }
  .contact-field input,
  .contact-field textarea {
    margin: 1.33333333vw 0vw 0vw 0vw;
    padding: 2.13333333vw 2.4vw 2.13333333vw 2.4vw;
    border-radius: 1.33333333vw;
    font-size: 2.66666667vw;
    line-height: 4vw;
  }
  .contact-field textarea {
    min-height: 24vw;
  }
  .contact-field .errorlist {
    margin: 1.06666667vw 0vw 0vw 0vw;
    font-size: 2.4vw;
    line-height: 3.46666667vw;
  }
  .contact-submit {
    margin: 3.2vw 0vw 0vw 0vw;
    padding: 2.13333333vw 3.73333333vw 2.13333333vw 3.73333333vw;
    border-radius: 133.2vw;
    font-size: 2.66666667vw;
    line-height: 3.73333333vw;
  }
}
