:root {
      --primary-yellow: #F59E0B;
      --yellow-bright: #FACC15;
      --yellow-dark: #D97706;
      --yellow-light: #FEF9C3;
      --yellow-bg: #FFFDF0;
      --dark-text: #0F172A;
      --body-text: #334155;
      --muted-text: #64748B;
      --border-color: #E2E8F0;
      --card-bg: #FFFFFF;
      --section-bg: #F8FAFC;
      --container-max: 1200px;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --shadow-sm: 0 2px 8px rgba(245, 158, 11, 0.08);
      --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.06);
      --shadow-yellow: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--yellow-bg);
      color: var(--body-text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--primary-yellow);
      box-shadow: var(--shadow-sm);
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo-wrap {
      max-height: 46px;
      display: flex;
      align-items: center;
    }

    .brand-logo-wrap img {
      max-height: 42px;
      width: auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--dark-text);
      letter-spacing: -0.5px;
    }

    .brand-tagline {
      font-size: 0.75rem;
      color: var(--yellow-dark);
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }

    .nav-links li a {
      display: inline-block;
      padding: 8px 14px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--dark-text);
      border-radius: var(--radius-sm);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--yellow-dark);
      background: var(--yellow-light);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 0.95rem;
      font-weight: 700;
      border-radius: var(--radius-sm);
      cursor: pointer;
      border: 1px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-yellow {
      background: linear-gradient(135deg, var(--yellow-bright), var(--primary-yellow));
      color: #000;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
      border-bottom: 2px solid var(--yellow-dark);
    }

    .btn-yellow:hover {
      background: linear-gradient(135deg, #FFE043, #F59E0B);
      transform: translateY(-2px);
      box-shadow: var(--shadow-yellow);
    }

    .btn-dark {
      background: var(--dark-text);
      color: #FFF;
    }

    .btn-dark:hover {
      background: #334155;
      transform: translateY(-2px);
    }

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

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

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 3px;
      background: var(--dark-text);
      margin: 4px 0;
      border-radius: 2px;
      transition: var(--transition);
    }

    /* 英雄区 (首屏禁止图片) */
    .hero-section {
      position: relative;
      padding: 70px 0 80px;
      background: radial-gradient(circle at 80% 20%, #FEF08A 0%, rgba(254, 240, 138, 0) 50%),
                  radial-gradient(circle at 10% 80%, #FEF9C3 0%, rgba(254, 249, 195, 0) 40%),
                  linear-gradient(180deg, #FFFDF0 0%, #FFFFFF 100%);
      border-bottom: 1px solid #FDE68A;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #FEF3C7;
      border: 1px solid #FDE68A;
      border-radius: 30px;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--yellow-dark);
      margin-bottom: 20px;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--primary-yellow);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--primary-yellow);
    }

    .hero-title {
      font-size: 2.75rem;
      font-weight: 900;
      color: var(--dark-text);
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .hero-title .highlight {
      position: relative;
      display: inline-block;
      color: #000;
      z-index: 1;
    }

    .hero-title .highlight::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 14px;
      background: var(--yellow-bright);
      z-index: -1;
      opacity: 0.8;
      border-radius: 4px;
    }

    .hero-desc {
      font-size: 1.15rem;
      color: var(--body-text);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 36px;
    }

    .hero-stats {
      display: flex;
      gap: 30px;
      padding-top: 24px;
      border-top: 1px solid #F1F5F9;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--dark-text);
    }

    .stat-number span {
      color: var(--primary-yellow);
      font-size: 1.2rem;
    }

    .stat-label {
      font-size: 0.85rem;
      color: var(--muted-text);
      font-weight: 500;
    }

    /* 首屏纯CSS科技看板 (无图片) */
    .hero-dashboard-card {
      background: #FFFFFF;
      border: 2px solid #FDE68A;
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: 0 20px 40px -15px rgba(217, 119, 6, 0.15);
      position: relative;
    }

    .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid #F8FAFC;
    }

    .dashboard-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark-text);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pulse-indicator {
      width: 10px;
      height: 10px;
      background: #10B981;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }

    .model-tags-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }

    .model-tag {
      font-size: 0.8rem;
      padding: 4px 10px;
      background: #FFFBEB;
      border: 1px solid #FCD34D;
      border-radius: 6px;
      color: #92400E;
      font-weight: 600;
    }

    .dashboard-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .metric-box {
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      padding: 14px;
      border-radius: var(--radius-sm);
    }

    .metric-box-title {
      font-size: 0.75rem;
      color: var(--muted-text);
      margin-bottom: 4px;
    }

    .metric-box-value {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--dark-text);
    }

    .metric-box-trend {
      font-size: 0.75rem;
      color: #16A34A;
      font-weight: 600;
    }

    /* 通用章节样式 */
    .section-wrap {
      padding: 70px 0;
      position: relative;
    }

    .section-bg-alt {
      background-color: #FFFFFF;
    }

    .section-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 50px;
    }

    .section-subtitle {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--yellow-dark);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
      padding: 3px 12px;
      background: var(--yellow-light);
      border-radius: 4px;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--dark-text);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .section-description {
      font-size: 1rem;
      color: var(--muted-text);
    }

    /* 网格卡片 */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

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

    .feature-card {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: var(--radius-md);
      padding: 28px 24px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .feature-card:hover {
      border-color: var(--primary-yellow);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .card-icon-badge {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: var(--yellow-light);
      color: var(--yellow-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 20px;
      border: 1px solid #FDE68A;
    }

    .card-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 10px;
    }

    .card-desc {
      font-size: 0.92rem;
      color: var(--body-text);
      line-height: 1.6;
      flex-grow: 1;
    }

    .card-footer-tags {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tag-sm {
      font-size: 0.75rem;
      padding: 2px 8px;
      background: #F1F5F9;
      border-radius: 4px;
      color: #475569;
    }

    /* 媒体与展示图片 */
    .image-container {
      width: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      background: #FFF;
      border: 1px solid #E2E8F0;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: var(--transition);
    }

    .image-container:hover img {
      transform: scale(1.02);
    }

    .banner-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .banner-gallery-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid #E2E8F0;
      background: #FFF;
    }

    .banner-gallery-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 流程步骤 */
    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    .step-box {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      padding: 24px;
      border-radius: var(--radius-md);
      position: relative;
      transition: var(--transition);
    }

    .step-box:hover {
      border-color: var(--primary-yellow);
      box-shadow: var(--shadow-sm);
    }

    .step-number {
      font-size: 2rem;
      font-weight: 900;
      color: #FEF08A;
      line-height: 1;
      margin-bottom: 12px;
    }

    .step-box h4 {
      font-size: 1.1rem;
      color: var(--dark-text);
      margin-bottom: 8px;
    }

    .step-box p {
      font-size: 0.88rem;
      color: var(--muted-text);
    }

    /* 对比评测卡片与表格 */
    .comparison-card-main {
      background: #FFFFFF;
      border: 2px solid var(--primary-yellow);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-yellow);
      margin-bottom: 40px;
    }

    .score-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
      padding: 20px 28px;
      border-radius: var(--radius-md);
      border: 1px solid #FDE68A;
      margin-bottom: 30px;
    }

    .score-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .score-badge {
      background: var(--dark-text);
      color: var(--yellow-bright);
      padding: 12px 20px;
      border-radius: var(--radius-md);
      text-align: center;
    }

    .score-value {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
    }

    .score-total {
      font-size: 0.85rem;
      opacity: 0.8;
    }

    .score-text h3 {
      font-size: 1.3rem;
      color: var(--dark-text);
      margin-bottom: 4px;
    }

    .stars-rating {
      color: #F59E0B;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #E2E8F0;
    }

    .comparison-table th {
      background: #F8FAFC;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark-text);
    }

    .comparison-table td {
      font-size: 0.9rem;
    }

    .comparison-table tr.highlight-row {
      background: #FFFDF0;
      font-weight: 600;
    }

    .badge-check {
      color: #16A34A;
      font-weight: 800;
    }

    .badge-cross {
      color: #DC2626;
      font-weight: 700;
    }

    /* 用户评论 */
    .testimonial-card {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .testimonial-quote {
      font-size: 0.95rem;
      color: var(--body-text);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #F1F5F9;
      padding-top: 16px;
    }

    .user-avatar-initial {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--yellow-bright), var(--primary-yellow));
      color: #000;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .user-info h5 {
      font-size: 0.95rem;
      color: var(--dark-text);
    }

    .user-info span {
      font-size: 0.8rem;
      color: var(--muted-text);
    }

    /* FAQ 折叠面板 */
    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-item.active {
      border-color: var(--primary-yellow);
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      padding: 18px 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--dark-text);
      background: #FFFFFF;
      user-select: none;
    }

    .faq-question:hover {
      background: #FFFDF0;
    }

    .faq-toggle-icon {
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--yellow-dark);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-toggle-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
      padding: 0 24px;
      color: var(--body-text);
      font-size: 0.92rem;
      line-height: 1.6;
      background: #FFFDF7;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 16px 24px 20px;
      border-top: 1px solid #FEF3C7;
    }

    /* 表单区域 */
    .form-wrapper {
      background: #FFFFFF;
      border: 2px solid #FDE68A;
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-md);
      max-width: 760px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 8px;
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #CBD5E1;
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-family: inherit;
      color: var(--dark-text);
      background: #F8FAFC;
      transition: var(--transition);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-yellow);
      background: #FFF;
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 110px;
    }

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    /* 资讯与百科文章 */
    .article-links-box {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: 24px;
    }

    .article-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .article-item a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      background: #F8FAFC;
      font-size: 0.92rem;
      color: var(--dark-text);
      font-weight: 600;
    }

    .article-item a:hover {
      background: #FEF9C3;
      color: var(--yellow-dark);
      transform: translateX(4px);
    }

    /* 友情链接与页脚 */
    .site-footer {
      background: #0F172A;
      color: #E2E8F0;
      padding: 60px 0 24px;
      border-top: 4px solid var(--primary-yellow);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand h4 {
      font-size: 1.4rem;
      color: #FFFFFF;
      margin-bottom: 12px;
      font-weight: 800;
    }

    .footer-brand p {
      font-size: 0.88rem;
      color: #94A3B8;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .footer-col h5 {
      font-size: 1.05rem;
      color: #FFFFFF;
      margin-bottom: 16px;
      font-weight: 700;
      position: relative;
      padding-bottom: 8px;
    }

    .footer-col h5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 2px;
      background: var(--primary-yellow);
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links li a {
      font-size: 0.88rem;
      color: #94A3B8;
    }

    .footer-links li a:hover {
      color: var(--yellow-bright);
      padding-left: 4px;
    }

    .contact-info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 0.88rem;
      color: #94A3B8;
    }

    .contact-info-list strong {
      color: #F8FAFC;
    }

    .footer-qrcode-wrap {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }

    .footer-qrcode-wrap img {
      width: 110px;
      height: 110px;
      border-radius: var(--radius-sm);
      background: #FFF;
      padding: 4px;
    }

    .footer-bottom-area {
      padding-top: 24px;
      border-top: 1px solid #1E293B;
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: 0.85rem;
      color: #64748B;
      align-items: center;
      text-align: center;
    }

    .friend-links-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      padding-bottom: 12px;
    }

    .friend-links-row a {
      color: #94A3B8;
      font-size: 0.85rem;
    }

    .friend-links-row a:hover {
      color: var(--yellow-bright);
    }

    /* 浮动客服挂件 */
    .float-contact {
      position: fixed;
      right: 20px;
      bottom: 40px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--yellow-bright), var(--primary-yellow));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      font-weight: 800;
      font-size: 0.8rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      border: 2px solid #FFF;
      transition: var(--transition);
      text-align: center;
    }

    .float-btn:hover {
      transform: scale(1.1);
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }
      .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2rem;
      }
      .grid-3, .grid-2 {
        grid-template-columns: 1fr;
      }
      .grid-4 {
        grid-template-columns: 1fr;
      }
      .workflow-steps {
        grid-template-columns: 1fr;
      }
      .banner-gallery {
        grid-template-columns: 1fr;
      }
      .form-grid-2 {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-bottom: 2px solid var(--primary-yellow);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links li a {
        display: block;
        padding: 10px 0;
      }
      .mobile-menu-btn {
        display: block;
      }
      .header-actions {
        display: none;
      }
    }