/* BARRY JEWELRY 公用样式（全局+导航）— 由 tools/extract_common.py 生成，勿手改 */
/* ========== Global Reset ========== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--color-text);
      background-color: #fff;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-heading);
      font-weight: 400;
      line-height: 1.2;
      color: var(--color-dark);
    }

    h1 {
      font-size: 48px;
    }

    h2 {
      font-size: 36px;
    }

    h3 {
      font-size: 28px;
    }

    h4 {
      font-size: 22px;
    }

    h5 {
      font-size: 18px;
    }

    h6 {
      font-size: 16px;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 26px;
      }

      h3 {
        font-size: 22px;
      }

      h4 {
        font-size: 20px;
      }
    }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    ul,
    ol {
      list-style: none;
    }

    button {
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
    }

    /* ========== CSS Variables ========== */
    :root {
      --color-primary: #16c5d4;
      --color-primary-dark: #0d8a96;
      --color-primary-light: #e6f9fb;
      --color-dark: #111111;
      --color-dark-light: #1a1a1a;
      --color-text: #333333;
      --color-text-secondary: #666666;
      --color-gray: #666666;
      --color-gray-light: #999999;
      --color-border: #e5e5e5;
      --color-bg-light: #f8f8f8;
      --color-bg-cream: #f6f5f1;
      --font-heading: Georgia, 'Times New Roman', serif;
      --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      --container-max: 1200px;
      --section-padding: 80px;
      --section-padding-sm: 60px;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 25px;
      --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    /* ========== Utility Classes ========== */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 20px;
    }

    .text-center {
      text-align: center;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: 36px;
      font-weight: 400;
      color: var(--color-dark);
      margin-bottom: 16px;
      letter-spacing: 1px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--color-text-secondary);
      margin: 0 auto 48px;
      max-width: 700px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .btn {
      display: inline-block;
      padding: 14px 36px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-radius: var(--radius-lg);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--color-primary);
      color: #fff;
      border: 2px solid var(--color-primary);
    }

    .btn-primary:hover {
      background-color: var(--color-primary-dark);
      border-color: var(--color-primary-dark);
    }

    .btn-outline {
      background-color: transparent;
      color: var(--color-primary);
      border: 2px solid var(--color-primary);
    }

    .btn-outline:hover {
      background-color: var(--color-primary);
      color: #fff;
    }

    .btn-outline-light {
      background-color: transparent;
      color: #fff;
      border: 1px solid #fff;
    }

    .btn-outline-light:hover {
      background-color: #fff;
      color: var(--color-dark);
    }

    .btn-white {
      background-color: #fff;
      color: var(--color-primary);
      border: 1px solid #fff;
    }

    .btn-white:hover {
      background-color: var(--color-primary-light);
      border-color: var(--color-primary-light);
    }

    /* Asymmetric pill button: top-right & bottom-left rounded 100% */
    .btn-asym {
      display: inline-block;
      padding: 12px 28px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-radius: 8px 100px 8px 100px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-asym-outline {
      background-color: transparent;
      color: var(--color-primary);
      border: 2px solid var(--color-primary);
    }

    .btn-asym-outline:hover {
      background-color: var(--color-primary);
      color: #fff;
    }

    .btn-asym-primary {
      background-color: var(--color-primary);
      color: #fff;
      border: 2px solid var(--color-primary);
    }

    .btn-asym-primary:hover {
      background-color: var(--color-primary-dark);
      border-color: var(--color-primary-dark);
    }

    .btn-asym-white {
      background-color: #fff;
      color: var(--color-primary);
      border: 2px solid #fff;
    }

    .btn-asym-white:hover {
      background-color: var(--color-primary-light);
      border-color: var(--color-primary-light);
    }

    .btn-asym-outline-light {
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .btn-asym-outline-light:hover {
      background-color: #fff;
      color: var(--color-primary);
    }

    .card {
      background: #fff;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    /* ========== Lazy Loading ========== */
    img[data-src] {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    img.loaded,
    img[src]:not([data-src]) {
      opacity: 1;
    }

    /* ========== Sub-page Common Styles ========== */
    .page-banner {
      position: relative;
      width: 100%;
      min-height: 420px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-banner .banner-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .page-banner .banner-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-banner .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .page-banner .banner-content {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 100px 20px;
      color: #fff;
    }

    .page-banner .banner-content>* {
      max-width: 800px;
    }

    .page-banner .banner-content h1 {
      font-size: 48px;
      margin-bottom: 16px;
      color: #fff;
    }

    .page-banner .banner-content h1 span {
      color: var(--color-primary);
    }

    .page-banner .banner-content p {
      font-size: 18px;
      margin-bottom: 32px;
      opacity: 0.9;
      line-height: 1.7;
    }

    .page-banner.align-left {
      justify-content: flex-start;
      text-align: left;
    }

    .page-banner.align-left .banner-content>* {
      max-width: 700px;
    }

    .page-section {
      padding: var(--section-padding) 0;
    }

    .page-section.bg-light {
      background: var(--color-bg-light);
    }

    .page-section.bg-cream {
      background: var(--color-bg-cream);
    }

    .page-section.bg-white {
      background: #fff;
    }

    .page-section.bg-dark {
      background: var(--color-dark);
      color: #fff;
    }

    .two-col {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .two-col.reverse {
      flex-direction: row-reverse;
    }

    .two-col>div {
      flex: 1;
    }

    .three-col-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .process-step {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 60px;
    }

    .process-step:nth-child(even) {
      flex-direction: row-reverse;
    }

    .process-step .step-image {
      flex: 1;
    }

    .process-step .step-image img {
      width: 100%;
      border-radius: 8px;
    }

    .process-step .step-text {
      flex: 1;
    }

    .process-step .step-text h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      margin-bottom: 12px;
      color: var(--color-dark);
    }

    .process-step .step-text p {
      color: var(--color-gray);
      line-height: 1.8;
    }

    .feature-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .feature-card {
      text-align: center;
      padding: 30px 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .feature-card img {
      width: 50px;
      height: 50px;
      margin: 0 auto 16px;
    }

    .feature-card h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--color-dark);
    }

    .feature-card p {
      font-size: 13px;
      color: var(--color-gray);
      line-height: 1.6;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .showcase-item {
      text-align: center;
    }

    .showcase-item img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 16px;
      transition: transform 0.3s ease;
    }

    .showcase-item:hover img {
      transform: scale(1.03);
    }

    .showcase-item h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--color-dark);
    }

    .showcase-item p {
      font-size: 14px;
      color: var(--color-gray);
      margin-bottom: 16px;
    }

    .product-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .product-card {
      text-align: center;
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .product-card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 16px;
    }

    .product-card h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--color-dark);
    }

    .check-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
      font-size: 14px;
      color: var(--color-gray);
    }

    .check-list li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: bold;
    }

    /* FAQ (shared across pages) */
    .faq-section {
      padding: var(--section-padding) 0;
      background: #fff;
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--color-border);
    }

    .faq-question {
      width: 100%;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 16px;
      font-weight: 500;
      color: var(--color-dark);
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
    }

    .faq-question::after {
      content: '+';
      font-size: 24px;
      color: var(--color-primary);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      content: '-';
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding-bottom: 24px;
    }

    .faq-answer p {
      color: var(--color-gray);
      line-height: 1.8;
      font-size: 15px;
    }

    /* ========== Back to Top ========== */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--color-primary);
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
      z-index: 999;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: var(--color-primary-dark);
    }

    .back-to-top::before {
      content: '';
      width: 10px;
      height: 10px;
      border-left: 2px solid #fff;
      border-top: 2px solid #fff;
      transform: rotate(45deg);
      margin-top: 4px;
    }

    /* ========== Focus Styles ========== */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 2px;
    }

    .nav-menu>li>a:focus-visible {
      outline-offset: -2px;
    }

    .footer-social a:focus-visible {
      outline-offset: 2px;
      border-radius: 50%;
    }

    /* ========== Responsive Base ========== */
    @media (max-width: 1024px) {
      .container {
        padding: 0 24px;
      }

      .page-banner .banner-content h1 {
        font-size: 40px;
      }

      .three-col-grid,
      .feature-cards,
      .product-grid-3,
      .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 26px;
      }

      .section-subtitle {
        font-size: 14px;
      }

      .btn {
        padding: 12px 28px;
        font-size: 14px;
      }

      .page-banner {
        min-height: 360px;
      }

      .page-banner .banner-content {
        padding: 80px 20px;
      }

      .page-banner .banner-content h1 {
        font-size: 32px;
      }

      .page-banner .banner-content p {
        font-size: 16px;
      }

      .page-section {
        padding: var(--section-padding-sm) 0;
      }

      .two-col,
      .two-col.reverse,
      .process-step,
      .process-step:nth-child(even) {
        flex-direction: column;
        gap: 30px;
      }

      .three-col-grid,
      .feature-cards,
      .product-grid-3,
      .showcase-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }

      .section-title {
        font-size: 24px;
      }

      .page-banner {
        min-height: 320px;
      }

      .page-banner .banner-content h1 {
        font-size: 28px;
      }

      .btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
      }

      .btn-asym {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
      }

      .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
      }
    }

/* ========== Navigation ========== */
/* ========== Navigation ========== */
    .nav-top {
      border-bottom: 1px solid var(--color-border);
      padding: 20px 0;
      background: #fff;
    }

    .nav-top .nav-container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-bottom {
      background-color: #fff;
      border-bottom: 1px solid var(--color-border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-bottom .nav-container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      position: relative;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 46px;
      width: auto;
    }

    .nav-bottom .nav-logo.mobile-only {
      display: none;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 40px;
      justify-content: space-between;
      width: 100%;
    }

    .nav-menu>li {
      position: relative;
    }

    .nav-menu>li>a {
      font-size: 15px;
      font-weight: 500;
      color: var(--color-dark);
      letter-spacing: 0.5px;
      position: relative;
      padding: 18px 0;
      display: block;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .nav-menu>li>a::after {
      content: '';
      position: absolute;
      bottom: 12px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--color-primary);
      transition: width 0.3s ease;
    }

    .nav-menu>li>a:hover,
    .nav-menu>li>a.active {
      color: var(--color-primary);
    }

    .nav-menu>li>a:hover::after,
    .nav-menu>li>a.active::after {
      width: 100%;
    }

    /* Dropdown */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown>a {
      padding-right: 28px;
    }

    .nav-dropdown>a::before {
      content: '';
      position: absolute;
      right: -12px;
      top: 50%;
      margin-top: -1px;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      transition: transform 0.3s ease;
    }

    .dropdown-panel {
      display: block;
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(calc(-50% + var(--dropdown-offset, 0px))) translateY(8px);
      background-color: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
      padding: 20px 24px;
      z-index: 1001;
      width: max-content;
      min-width: 220px;
      max-width: 720px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .dropdown-panel::before {
      content: '';
      position: absolute;
      bottom: 100%;
      left: calc(50% - var(--dropdown-offset, 0px));
      transform: translateX(-50%);
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid #fff;
    }

    .dropdown-panel .dropdown-grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(180px, auto);
      gap: 32px;
    }

    .dropdown-panel .dropdown-col h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--color-primary);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--color-border);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .dropdown-panel .dropdown-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .dropdown-panel .dropdown-col li {
      margin-bottom: 2px;
    }

    .dropdown-panel .dropdown-col a {
      font-size: 14px;
      color: var(--color-text);
      padding: 8px 0;
      display: block;
      border-left: 2px solid transparent;
      padding-left: 0;
      transition: color 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease;
    }

    .dropdown-panel .dropdown-col a.active {
      color: var(--color-primary);
      padding-left: 8px;
      border-left-color: var(--color-primary);
    }

    .dropdown-panel .dropdown-col a:hover {
      color: var(--color-primary);
      padding-left: 8px;
      border-left-color: var(--color-primary);
    }

    .nav-dropdown:hover .dropdown-panel {
      opacity: 1;
      visibility: visible;
      transform: translateX(calc(-50% + var(--dropdown-offset, 0px))) translateY(0);
    }

    .nav-dropdown:hover>a::before {
      transform: rotate(180deg);
      margin-top: -3px;
    }

    .nav-toggle {
      display: none;
      width: 30px;
      height: 30px;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      padding: 0;
      position: relative;
      z-index: 1002;
      background: transparent;
      border: none;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--color-dark);
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .nav-backdrop {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 998;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .nav-backdrop.show {
      display: block;
      opacity: 1;
    }

    /* Tablet */
    @media (max-width: 1024px) {
      .nav-menu {
        gap: 24px;
      }

      .nav-menu>li>a {
        font-size: 14px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-top {
        display: none;
      }

      .nav-bottom .nav-container {
        justify-content: space-between;
        height: 60px;
      }

      .nav-bottom .nav-logo.mobile-only {
        display: flex;
      }

      .nav-bottom .nav-logo.mobile-only img {
        height: 36px;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 24px 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        gap: 0;
        justify-content: start;
      }

      .nav-menu.open {
        transform: translateX(0);
      }

      .nav-menu>li {
        width: 100%;
      }

      .nav-menu>li>a {
        padding: 16px 0;
        font-size: 17px;
        font-weight: 500;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
      }

      .nav-menu>li>a::after {
        display: none;
      }

      .nav-dropdown>a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .nav-dropdown>a::before {
        display: none;
      }

      .nav-dropdown>a::after {
        content: '+';
        font-size: 22px;
        font-weight: 300;
        color: var(--color-primary);
        transition: transform 0.3s ease;
      }

      .nav-dropdown.open>a::after {
        content: '−';
      }

      .dropdown-panel,
      .nav-dropdown:hover .dropdown-panel,
      .nav-dropdown.open .dropdown-panel {
        position: static;
        transform: none;
        width: auto;
        display: grid;
        grid-template-rows: 0fr;
        min-width: auto;
        max-width: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--color-primary);
        border-radius: 0;
        padding: 0 16px;
        margin: 0 0 4px;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        transition: grid-template-rows 0.3s ease, padding 0.3s ease;
      }

      .dropdown-panel::before {
        display: none;
      }

      .dropdown-panel .dropdown-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        gap: 0;
        min-height: 0;
      }

      .dropdown-panel .dropdown-col {
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
      }

      .dropdown-panel .dropdown-col:last-child {
        border-bottom: none;
      }

      .dropdown-panel .dropdown-col h4 {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--color-primary);
        margin-bottom: 12px;
      }

      .dropdown-panel .dropdown-col a {
        font-size: 15px;
        color: var(--color-text-secondary);
        border-bottom: none;
        padding: 10px 0;
        display: block;
        transition: color 0.2s ease, padding-left 0.2s ease;
      }

      .dropdown-panel .dropdown-col a:hover,
      .dropdown-panel .dropdown-col a:active {
        color: var(--color-primary);
        padding-left: 4px;
      }

      .nav-dropdown.open .dropdown-panel {
        grid-template-rows: 1fr;
        padding: 0 16px 8px;
      }
    }

    @media (max-width: 480px) {
      .nav-menu {
        padding: 12px 20px 24px;
      }

      .nav-menu>li>a {
        font-size: 16px;
        padding: 14px 0;
      }
    }
