
/* =========================
   全局：下落动画
========================= */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header,
.site-header__top,
.site-header__nav-wrap,
.hero-banner,
.pb-thumb-center-sm,
.pb-thumb-center-lg,
.pb-circle-thumb,
.pb-slant-layout,
.pb-mosaic-layout,
.pb-feature-layout,
.pb-skincare-layout,
[class*="pb-block-"],
.site-footer__main,
.site-footer__bottom {
  animation: fadeDown 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  opacity: 0;
}

.site-header { animation-delay: 0s; opacity: 1; }
.site-header__nav-wrap { animation-delay: 0.1s; }
.hero-banner { animation-delay: 0.2s; }
.pb-thumb-center-sm, .pb-thumb-center-lg, .pb-circle-thumb { animation-delay: 0.3s; }
.pb-slant-layout, .pb-mosaic-layout, .pb-feature-layout, .pb-skincare-layout { animation-delay: 0.4s; }
[class*="pb-block-"] { animation-delay: 0.5s; }
.site-footer__main { animation-delay: 0.6s; }
.site-footer__bottom { animation-delay: 0.7s; }
/* =========================
   Header
========================= */
.site-header {
  position: relative;
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}

.site-header__top {
  padding: 26px 0 20px;
  background: #f7f7f7;
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-brand {
  min-width: 260px;
}

.site-brand__link {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #222;
}

.site-brand__logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-brand__name {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #222;
}

.site-brand__slogan {
  font-size: 13px;
  color: #777;
  letter-spacing: 0.5px;
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-search {
  position: relative;
  width: 560px;
  max-width: 100%;
}

.site-search__input {
  width: 100%;
  height: 50px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  padding: 0 54px 0 20px;
  background: #fff;
  font-size: 16px;
  color: #333;
  outline: none;
  transition: all 0.2s ease;
}

.site-search__input:focus {
  border-color: #222;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.site-search__btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.site-search__btn:hover {
  background: #333;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d7d7d7;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.site-action i {
  font-size: 18px;
}

.site-action:hover {
  text-decoration: none;
  color: #111;
  border-color: #111;
  transform: translateY(-1px);
}

.site-action--cart {
  padding-right: 20px;
}

.site-action__badge {
  position: absolute;
  top: -6px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e60023;
  color: #fff;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}

.site-header__nav-wrap {
  background: #ffffff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 30px;
  flex-wrap: wrap;
}

.site-nav__item {
  position: relative;
}

.site-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 68px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0 4px;
  transition: color 0.2s ease;
}

.site-nav__item > a:hover {
  color: #000;
  text-decoration: none;
}

.site-nav__item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.25s ease;
}

.site-nav__item > a:hover::after {
  width: 100%;
}

/* =========================
   Footer
========================= */
.site-footer {
  margin-top: 0px;
  background: #2f3136;
  color: #fff;
}

.site-footer__main {
  padding: 55px 0 35px;
}

.site-footer__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}

.site-footer__desc {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  font-size: 15px;
}

.site-footer__heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: rgba(255,255,255,0.35);
}

.site-footer__info,
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__info li,
.site-footer__links li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.8;
}

.site-footer__info li i {
  width: 18px;
  margin-right: 8px;
}

.site-footer__links li a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__links li a:hover {
  color: #fff;
  text-decoration: none;
  padding-left: 4px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  background: #26282c;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__copyright,
.site-footer__counter {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

/* =========================
   圖文搭配：基礎樣式
========================= */
.pb-thumb-center-sm {
  width: 100% !important;
  height: 140px !important;
  overflow: hidden !important;
}

.pb-thumb-center-lg {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
}

.pb-thumb-center-sm img,
.pb-thumb-center-lg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.pb-circle-thumb {
  width: 100px !important;
  height: 100px !important;
  margin: 0 auto 10px !important;
  overflow: hidden !important;
  border-radius: 50% !important;
}

.pb-circle-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* =========================
   圖文搭配：斜切雙圖
========================= */
.pb-slant-layout {
  position: relative;
  min-height: 460px;
}

.pb-slant-image {
  position: absolute;
  top: 0;
  overflow: hidden;
  background: #eee;
}

.pb-slant-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.pb-slant-image-left {
  left: 0;
  width: 42%;
  height: 300px;
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.pb-slant-image-right {
  right: 0;
  width: 62%;
  height: 440px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
  z-index: 2;
}

.pb-slant-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 440px;
  background: #fff;
  padding: 24px 28px;
  z-index: 3;
}

.pb-slant-content .pb-title {
  margin-top: 0;
  margin-bottom: 12px;
}

/* =========================
   圖文搭配：欄位間距
========================= */
.pb-grid-gap-sm > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.pb-grid-gap-md > [class*="col-"] {
  padding-left: 18px;
  padding-right: 18px;
}

/* =========================
   圖文搭配：固定高度圖片
========================= */
.pb-block-160,
.pb-block-180,
.pb-block-210,
.pb-block-220,
.pb-block-250,
.pb-block-260,
.pb-block-314,
.pb-block-320,
.pb-block-340,
.pb-block-380,
.pb-block-420,
.pb-block-450,
.pb-block-500,
.pb-block-560 {
  width: 100% !important;
  overflow: hidden !important;
  background: #eee !important;
}

.pb-block-160 { height: 160px !important; }
.pb-block-180 { height: 180px !important; }
.pb-block-210 { height: 210px !important; }
.pb-block-220 { height: 220px !important; }
.pb-block-250 { height: 250px !important; }
.pb-block-260 { height: 260px !important; }
.pb-block-314 { height: 314px !important; }
.pb-block-320 { height: 320px !important; }
.pb-block-340 { height: 340px !important; }
.pb-block-380 { height: 380px !important; }
.pb-block-420 { height: 420px !important; }
.pb-block-450 { height: 450px !important; }
.pb-block-500 { height: 500px !important; }
.pb-block-560 { height: 560px !important; }

.pb-block-160 img,
.pb-block-180 img,
.pb-block-210 img,
.pb-block-220 img,
.pb-block-250 img,
.pb-block-260 img,
.pb-block-314 img,
.pb-block-320 img,
.pb-block-340 img,
.pb-block-380 img,
.pb-block-420 img,
.pb-block-450 img,
.pb-block-500 img,
.pb-block-560 img,
.pb-block-fill img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.pb-rounded-xl {
  border-radius: 42px !important;
  overflow: hidden !important;
}

.pb-rotate-left {
  transform: rotate(-8deg);
  margin-top: 15px;
}

.pb-rotate-right {
  transform: rotate(8deg);
  margin-top: 15px;
}

/* =========================
   圖文搭配：標題 & 文案
========================= */
.pb-title-about {
  font-size: 56px !important;
  font-weight: 700 !important;
  color: #f28c00 !important;
  letter-spacing: 2px;
}

.pb-about-text {
  max-width: 760px;
  margin: 0 auto 10px;
  font-size: 16px;
  line-height: 1.9;
}

.pb-white-box {
  background: #fff;
  padding: 22px 24px;
}

.pb-white-box-center {
  text-align: center;
}

.pb-text-top-box,
.pb-text-bottom-box,
.pb-text-left-box {
  background: #fff;
}

/* =========================
   圖文搭配：拼貼 Mosaic
========================= */
.pb-mosaic-layout {
  display: grid;
  grid-template-columns: 360px 220px 360px;
  grid-template-rows: 360px 220px 360px;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.pb-mosaic-a { grid-column: 1; grid-row: 1 / span 2; }
.pb-mosaic-b { grid-column: 2 / span 2; grid-row: 1; }
.pb-mosaic-c { grid-column: 3; grid-row: 2 / span 2; }
.pb-mosaic-d { grid-column: 2; grid-row: 2; display: flex; align-items: stretch; justify-content: stretch; }
.pb-mosaic-e { grid-column: 1 / span 2; grid-row: 3; }
.pb-mosaic-f { display: none; }

.pb-block-fill {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee;
}

.pb-mosaic-d.pb-white-box,
.pb-mosaic-d .pb-white-box {
  width: 100%;
  height: 100%;
  padding: 16px 14px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.pb-mosaic-d .pb-title,
.pb-mosaic-d.pb-white-box .pb-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 1px;
}

.pb-mosaic-d p,
.pb-mosaic-d.pb-white-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   圖文搭配：左右交錯
========================= */
.pb-feature-layout {
  display: flex;
  align-items: flex-start;
}

.pb-feature-text-top {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 26px;
}

.pb-feature-text-top .pb-title {
  margin-top: 80px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pb-feature-text-bottom .pb-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pb-feature-middle-img {
  margin-top: 18px;
}

.pb-feature-right-img {
  margin-top: 80px;
  margin-bottom: 26px;
}

.pb-feature-text-bottom {
  background: transparent !important;
  padding: 0 !important;
}

.pb-feature-text-top p,
.pb-feature-text-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* =========================
   常用間距
========================= */
.pb-mb-10 { margin-bottom: 10px !important; }
.pb-mb-20 { margin-bottom: 20px !important; }
.pb-mb-30 { margin-bottom: 30px !important; }
.pb-mb-40 { margin-bottom: 40px !important; }

/* =========================
   SKIN CARE 三欄版型
========================= */
.pb-skincare-layout {
  display: flex;
  align-items: flex-end;
}

.pb-skincare-left {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 80px !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 80px !important;
  overflow: hidden !important;
  margin-top: 0;
}

.pb-skincare-center {
  overflow: hidden !important;
}

.pb-skincare-text {
  padding: 0 0 30px;
  background: transparent !important;
}

.pb-skincare-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px !important;
  font-weight: 300 !important;
  letter-spacing: 2px;
  color: #b59b7a !important;
}

.pb-skincare-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.pb-skincare-right {
  border-top-left-radius: 80px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 80px !important;
  border-bottom-left-radius: 0 !important;
  overflow: hidden !important;
  width: 700px;
}

/* =========================
   hero-banner
========================= */
.hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  display: block;
  color: #fff;
  overflow: hidden;
  max-height: 45vh;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-body {
  max-width: 600px;
  width: 50%;
  height: 100%;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.hero-title__sub {
  font-size: 14px;
  letter-spacing: 2px;
  color: #bfa060;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title__main {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-group a {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-group a:first-child {
  background-color: #4a2311;
  color: white;
}

.btn-group a:last-child {
  background-color: rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-group a:hover {
  opacity: 0.8;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991px) {
  .site-header__top-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-brand__link {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .site-header__tools {
    justify-content: center;
  }

  .site-search {
    width: 100%;
    max-width: 520px;
  }

  .site-footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .pb-slant-layout {
    min-height: auto;
  }

  .pb-slant-image-left,
  .pb-slant-image-right,
  .pb-slant-content {
    position: static;
    width: 100%;
    clip-path: none;
  }

  .pb-slant-image-left,
  .pb-slant-image-right {
    height: 260px;
    margin-bottom: 20px;
  }

  .pb-slant-content {
    padding: 20px;
  }

  .pb-mosaic-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .pb-mosaic-a,
  .pb-mosaic-b,
  .pb-mosaic-c,
  .pb-mosaic-d,
  .pb-mosaic-e {
    grid-column: auto;
    grid-row: auto;
  }

  .pb-feature-layout {
    display: block;
  }

  .pb-feature-middle-img,
  .pb-feature-right-img {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .pb-title-about {
    font-size: 40px !important;
  }
}

@media (max-width: 767px) {
  .site-header__top {
    padding: 20px 0 16px;
  }

  .site-brand__logo {
    width: 140px;
  }

  .site-brand__name {
    font-size: 24px;
  }

  .site-search__input {
    height: 46px;
    font-size: 15px;
  }

  .site-action {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .site-nav__list {
    justify-content: center;
    min-height: auto;
    padding: 10px 0;
    gap: 4px 18px;
  }

  .site-nav__item > a {
    min-height: 46px;
    font-size: 15px;
  }

  .site-footer__main {
    padding: 42px 0 24px;
  }

  .site-footer__title {
    font-size: 22px;
  }

  .pb-grid-gap-sm > [class*="col-"],
  .pb-grid-gap-md > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pb-block-560,.pb-block-500,.pb-block-450,.pb-block-420,
  .pb-block-380,.pb-block-340,.pb-block-320,.pb-block-314,
  .pb-block-260,.pb-block-250,.pb-block-220,.pb-block-210,
  .pb-block-180,.pb-block-160 {
    height: 240px !important;
    margin-bottom: 20px;
  }

  .pb-mosaic-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pb-mosaic-d.pb-white-box,
  .pb-mosaic-d .pb-white-box {
    min-height: 180px;
  }

  .pb-title-about {
    font-size: 30px !important;
    line-height: 1.2;
  }

  .pb-about-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .pb-rotate-left,
  .pb-rotate-right {
    transform: none;
    margin-top: 0;
  }

  .pb-rounded-xl {
    border-radius: 24px !important;
  }

  .pb-slant-content {
    width: 100%;
  }
}
.comm-wrapper {
    position: relative;
    padding: 0px 15px;
}
.comm-hero {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}
.comm-main-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    background: linear-gradient(135deg, #f36f31, #f39c31);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(243, 111, 49, 0.1);
    margin-bottom: 16px;
    position: relative;
    line-height: 45px;
    margin-top: 35px;
    font-family: auto;
}
.comm-title-underline {
    width: 80px;
    height: 4px;
    background: #f36f31;
    margin: 12px auto 0;
    border-radius: 4px;
    animation: comm-glowPulse 2s infinite ease-in-out;
}
.comm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}
.comm-card:nth-child(1) {
    animation-delay: 0.05s;
}
.comm-card {
    animation: commFadeUp 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
.comm-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 28px 24px 32px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(243, 111, 49, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f36f31;
}
.comm-icon {
    text-align: center;
    font-size: 48px;
    color: #f36f31;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(243, 111, 49, 0.1);
    padding: 12px;
    border-radius: 24px;
    line-height: 1;
    width: 75px;
}
.comm-feature-title {
    font-size: 26px;
    font-weight: 800;
    color: #2c241f;
    margin: 8px 0 12px 0;
    letter-spacing: -0.3px;
    border-left: 4px solid #f36f31;
    padding-left: 16px;
    line-height: 1.3;
}
.comm-feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(243, 111, 49, 0.15);
    line-height: 1;
    font-family: Arial, sans-serif;
}
.ser_p1 {
    border: 1px solid #f39c31;
    padding: 30px;
    border-radius: 100px;
    position: relative;
    margin: 70px 0;
    text-align: center;
}
.ser_p1 strong {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f39c31;
    font-size: 30px;
    letter-spacing: 7px;
    background: #ffffff;
    padding: 0 25px;
    text-align: center;
    white-space: nowrap;
}
.ser_p1 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}
.commondetail ul {
    margin-left: 20px;
}
.ser_p1 ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
.onf_e {
    padding: calc(5vw + 70px) 5%;
    background: url(https://webtest948.com/zyd/andykelly/uploads/use/20260323160219d227.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.onf_e > i {
    display: block;
    max-width: fit-content;
    margin: 0 auto 50px;
}
.onf_e dl {
    max-width: 930px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.onf_e dl dd p {
    font-size: var(--f18);
    color: #fff;
    line-height: 200%;
    margin: 0 0 15px;
}