:root{
  --card-bg:#ffffff;
  --card-border:#e6eaf0;
  --card-muted:#64748b;
  --card-text:#0f172a;
  --card-soft:#f8fafc;
  --accent:#0fa084;     /* 与你站点主色一致 */
  --accent-ink:#0b735f;
  --shadow-sm:0 2px 6px rgba(2,6,23,.06);
  --shadow-lg:0 14px 32px -14px rgba(2,6,23,.22);
  --ui-bg: #ffffff;
  --ui-bg-soft:#f8fafc;
  --ui-text:#0f172a;
  --ui-muted:#64748b;
  --ui-border:#e5e7eb;
  --ui-border-strong:#d1d5db;
  --ui-primary:#111827;
  --ui-shadow: 0 6px 20px rgba(0,0,0,.06);
}



/* ====== 新容器：month-options（外壳） ====== */
#popup-month-options{
    background: var(--ui-bg);
    display: grid;
    gap: 12px;
}

/* 每一排（左：标签，右：按钮组） */
#popup-month-options .sku-row{
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
}

/* 左侧小标签 */
#popup-month-options .row-label{
  color: var(--ui-muted);
  font-size: 12px;
  line-height: 1;
  text-align: right;
  user-select: none;
}

/* 右侧按钮组 */
#popup-month-options .btn-group{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* 通用选项按钮（chip） */
#popup-month-options .chip{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--ui-border-strong);
  background: var(--ui-bg-soft);
  color: var(--ui-text);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
  outline: none;
}

#popup-month-options .chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  border-color: var(--ui-border);
}

#popup-month-options .chip:active{
  transform: translateY(0);
  box-shadow: none;
}

#popup-month-options .chip:focus-visible{
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ui-primary) 20%, transparent);
}

/* 选中态 */
#popup-month-options .chip.active{
  background: var(--ui-primary);
  color: #fff;
  border-color: var(--ui-primary);
}

/* 禁用态（如需） */
#popup-month-options .chip[disabled]{
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.buyers-rail{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  /* 让头像条在标题和价格之间居中 */
}
.buyers-track{
  display:flex; align-items:center;
}
.buyers-track .buyer{
  width:36px; height:36px; border-radius:50%;
  overflow:hidden; background:#eee; position:relative;
  border:2px solid #fff; box-shadow:0 1px 3px rgba(0,0,0,.15);
  margin-left:-10px; display:grid; place-items:center;
}
.buyers-track .buyer:first-child{ margin-left:0; }
.buyers-track .buyer img{ width:100%; height:100%; object-fit:cover; display:block; }
.buyers-track .buyer-add{
  background:#fff; color:#666; font-weight:700;
  border:2px dashed #ffc6c6;
}

.buyer-caption{
  font-size:12px; color:#8a8a8a; line-height:1;
}
.buyer-caption .name{ font-weight:600; margin-right:.4em; color:#7a7a7a; }



/* 只保留最后 4 个头像 + 最后的“+”号，其余早期头像隐藏 */
.buyers-track .buyer:not(.buyer-add):nth-last-child(n+6) {
  display: none;
}

/* 平移动画 */
.buyers-track .buyer {
  transition: transform 420ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .buyers-track .buyer { transition: none; }
}


/* 小屏：标签换到上面，按钮组独占一行 */
@media (max-width: 560px){
  #popup-month-options{
    gap: 10px;
  }
  #popup-month-options .sku-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  #popup-month-options .row-label{
    text-align: left;
    font-size: 11px;
  }
  #popup-month-options .btn-group{
    gap: 6px;
  }
  #popup-month-options .chip{
    padding: 7px 10px;
    font-size: 12px;
  }
}

.product-page {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    /* color: #282828; */
    margin-top: 10px;
}

.product-page a {
    /* text-decoration: none; */
    color: #0fa084;
    font-size: 15px;
}

/* 与价格栏略做间距（按你现有结构，可选） */
.price-details + .purchase-options #popup-month-options{
  margin-top: 8px;
}

body {
    font-family: Arial, sans-serif;
}

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

.Wrapper{
    padding: 10px;
    background-color: #efefef;
}

/* 顶层条 */
#top {
      width: 100%;
      background-color: #efefef;
      /* border-bottom: 1px solid rgba(0,0,0,.22); */
      padding: 0px 20px;
      box-sizing: border-box;
}

/* 限制内部最大宽度并居中 */
#top .content {
  margin: 0 auto;
}

/* 整个导航条：左右两端布局 */
#top .site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: beige; */
}

/* Logo 样式 */
.site-nav .logo {
  font-size: 18px;
  font-weight: bold;
  color: #888;
  text-decoration: none;
}

/* tools 区块：内部水平排列 */
.site-nav .tools {
  display: flex;
  align-items: center;
  gap: 12px;          /* 按需调整间距 */
}

/* 登录/登出 链接样式 */
.site-nav .tools a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* 头像图 */
.site-nav .tools .service {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* 当视口宽度小于等于 600px（手机）时，左右各留 40px */
#Wrapper{ 
    padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
    text-align: center;
    background-color: #e2e2e2;
    background-repeat: repeat-x;
}

.content {
    margin: 0 auto 0 auto;
        
    max-width: 1200px;
}
#Main {
    width: auto;
    margin: 0 0px 0 0px;
}

/* ===== Framework 风格容器（淡粉背景 + 大圆角 + 充足留白） ===== */
.fw-hero{
    position: relative;
    background: #f0f8ff;
    overflow: clip;
    isolation: isolate;
    border-radius: 20px;
}
.hero-wrap{
      max-width: 1100px;
      margin: 0 auto;
      padding: clamp(48px, 2vw, 120px) 16px;
      display: grid;
      place-items: center;
      text-align: center;
      gap: 20px;
}


.hero-title{
        font-size: clamp(30px, 8vw, 48px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: .2px;
    color: #111827;
}
.hero-sep{
  width: 2px;
  height: clamp(28px, 5vw, 54px);
  background: rgba(17,24,39,.25);
  margin: clamp(8px, 2vw, 16px) auto;
  border-radius: 1px;
}

.hero-type{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.25em;
  font: 600 clamp(34px,3vw,28px)/1.2 Arial, sans-serif;
  color: #418fff;
  min-height: 1.4em;
}
.caret{
  display:inline-block; width:2px; height:1.1em; background:#0f172a;
  animation: blink .9s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity:0 } }

.hero-sub{
  font-size: clamp(13px, 2.4vw, 22px);
  color: #263238;
  margin: 0;
}
.hero-cta{
  display: flex;
  gap: 16px;
  margin-top: clamp(18px, 3vw, 28px);
}
/* ===== 按钮 ===== */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    color: black;
    border: none;
    background: linear-gradient(90deg, #e4ddff 35%, #d7dbff 50%);
}
.btn-primary{
      background: #0fa084;
    color: #fff;
    box-shadow: 0 8px 20px rgba(47,124,246,.25);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{
  background: #fff; color:#0f172a; border:1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(15,23,42,.06);
}
.btn-ghost:hover{ transform: translateY(-1px); }

/* ===== 贴纸云层 ===== */
.stickers{
  position:absolute; inset:0;
  pointer-events:none;   /* 不影响按钮点击 */
}
.sticker{
    position: absolute;
    width: clamp(44px, 3vw, 110px);
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(15,23,42,.12))
    drop-shadow(0 2px 4px rgba(15,23,42,.08));
    transform: translateZ(0);
}

/* —— 位置（按需改百分比即可） —— */
.s-aws     {     
    left: 8%;
    top: 68%;}
.s-apple   {    
         top: 69%;
    left: 86%;
    transform: rotate(
13deg);}


.s-meta    {     
    left: 3%;
    top: 44%;}

.s-netflix {    
    top: 14%;
    right: 93%;
    transform: rotate(
2deg);}
.s-chatgpt {    
    right: 4%;
    top: 45%;}
.s-duo     {     
    right: 3%;
    top: 8%;
    transform: rotate(
360deg);}

/* 移动端：减少遮挡，调小贴纸 */
@media (max-width: 640px){
  .sticker{ width: clamp(36px, 11vw, 72px); }
  .s-aws     {left: 6%;top: 30%;display: none;}
  .s-meta    {
    display: none;
    left: 8%;
    top: 64%;
    }
  .s-netflix {
    right: 0%;
    top: 31%;
    transform: rotate(
6deg);
    }
  .s-chatgpt { right: 6%; top: 66%; }
  .s-apple   {left: 22px;top: 68%;transform: rotate(
326deg);}
  .s-duo     {
    right: 83%;
    top: 32%;
    transform: rotate(
346deg);
    }
}



/* 右侧客服卡片：更现代 */
.lxkf-card{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  background:#f9fafb;
  border:1px solid #eef0f3;
  border-radius:14px;
  text-decoration:none; color:#111;
  transition: transform .12s ease, box-shadow .2s ease;
}
.lxkf-card:hover{
  transform: translateY(-1px);
  box-shadow:0 8px 20px rgba(16,24,40,.08);
}
.kf-image{ width:40px; height:40px; object-fit:cover; border-radius:10px; }
.wx-title{ font-weight:700; font-size:14px; }
.weixin{ font-size:12px; color:#0fa084; }

/* 响应式 */
@media (max-width: 820px){
  .hero{ grid-template-columns: 1fr; }
  .lxkf-card{ justify-self:start; }
}

.classify-container {
    gap: 10px;
    margin-bottom: 20px;
    display: flex;
    overflow: auto;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    width: 100%;
}

.classify {
    white-space: nowrap;
    display: inline-block;
    padding: 5px 25px;
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    background-color: #ffffff;
    border: 1 solid 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #bbbbbb;
}

.classify:hover {
    background-color: #b7b7b7;    /* 更深的蓝色 */
}

.classify.active {
  border-color: #0db09a;
}

.btn-classify {
    font-family: Arial, sans-serif; /* 字体 */
    text-transform: uppercase;      /* 全部大写 */
}

.mtpt-text {
    width: 96%;
    font-size: 28px;
}
.tt-text, .pd-text {
    font-size: 21px;
}

.all-ly-card {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 20px;
    margin-bottom: 10px;
    /* max-width: 1700px; */
    overflow-x: auto;
}

.ly-card {
    font-family: Arial, sans-serif;
    margin: 0;
    min-width: 259px;
    margin-bottom: 10px;
    width: 100%;
    background-color: #f5f5f7;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 7px rgb(0 0 0 / 21%);
}

.ly-card img {
    width: 40px;
}

.product-and-faq {
    display: flex;
    width: 100%;
    max-width: 1200px;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-card-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 31px;
    margin-top: 22px;
}

.p-card {
    width: 378px;
    background: transparent;
    border: none;
    margin-bottom: 20px;
    box-shadow: chocolate;
    box-shadow: 7px 13px 24px #00000014;
    border-radius: 10px;
    position: relative; /* 让角标能绝对定位 */
}
/* 右上角角标容器 */
.p-badges{     
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.p-badge{     
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 0px 10px 0px 10px;
    font-size: 11px;
    /* font-weight: 600; */
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 10px rgba(15,23,42,.08);
    backdrop-filter: saturate(140%) blur(2px); 
}
.p-badge-new{ background:#ecfeff; color:#0e7490; border-color:#a5f3fc; }
.p-badge-hot{ background:#fee2e2; color:#b91c1c; border-color:#fecaca; }
.p-badge-sale{ background:#dcfce7; color:#166534; border-color:#bbf7d0; }
.p-badge-low{     
    background: #ffb3b3;
    color: #000000;
    border-color: #fde68a; 
}
.p-badge-custom{ background:#e0f2fe; color:#075985; border-color:#bae6fd; }

.mtpt-text {
    width: 96%;
    height: 78px;
}

.ttpd-text {
    flex-direction: row;
    width: 87%;

}

.mt-text {
font-size:48px;
  font-weight:800;
  color:#333;
  line-height:1.1;
  margin-bottom:.25em;
}

.tt-text {
    margin-bottom: 9px;
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    display: inline;
}

.pd-text {
    margin-bottom: 9px;
    font-size: 24px;
    color: #797979;
    font-weight: bold;
    display: inline;
}

.product-card-container {
    background: var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:16px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
               "Segoe UI Emoji", "Segoe UI Symbol";

}
.product-card-container:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color:#d9dee7;
}
/* 新外层，用来定位也负责吃掉点击事件 */
.fab-box {
        padding: 7px 18px 11px 18px;
        background-color: #ffffff;
        border-radius: 0px 0px 10px 10px;
}
/* 悬浮圆形按钮 */
.buy-fab {

    bottom: 12px;
    right: 12px;
    width: 100%;
    border-radius: 15px;
    background: #efefef;
    border: none;
    /* cursor: pointer; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* box-shadow: -2px 0px 8px rgba(0, 0, 0, .25); */
    font-size: 0;
    padding: 0px 10px 0px 10px;
    /* color: brown; */
}

/* 用伪元素画加号 */
.buy-fab::before {
    content: "+";
    font-size: 44px;
    line-height: 1;
    color: #6d6d6d;
}

/* hover / active 效果可选 */
.buy-fab:hover       { background:#4e4e4e; }
.buy-fab:active      { transform: scale(.95); }

/* 隐藏可访问性文字 */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}
.all-rf-card {
    display: flex;
    width: 96%;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
}
.rf-card {
    width: 100%;
    max-width: 343px;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 4px;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #000000;
}

.rf-card img {
    width: 100%;
    border-radius: 15px;
    padding: 7px;
}

.all-re-card {
    display: flex;
    width: 96%;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 20px;
    margin-bottom: 10px;
    overflow-x: auto;
    margin-top: 20px;
}

.all-re-card img {
    width: 100%;
}

.lt-text {
    font-size: 10px;
    font-weight: bold;
    color: #797979;
}

.cp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: bold;
    color: #888;
    text-align: center;
}

.re-card {
    margin-bottom: 10px;
    width: 100%;
    max-width: 343px;
    background-color: #0071e3;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popup {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 1000;
    width: 600px;
    max-width: 90vw;
    max-height: 80vh;
    height: 800px;
    padding: 9px 20px 11px;
    background-color: #f1f1f1;
    box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    border-radius: 10px 10px 0px 0px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .30s ease-in-out, opacity .30s ease-in-out, visibility 0s linear .30s;
    will-change: transform, opacity;
}

.popup {
top: 50%;
left: 50%;
transform: translate(-50%, -40%);
}
.popup.show {
transform: translate(-50%, -50%); 
opacity: 1;
visibility: visible;
pointer-events: auto;
z-index: 10000;
transition: transform .30s ease-in-out, opacity .30s ease-in-out, visibility 0s;
}

.divider {
    margin: 20px 0;
}

.video {
    border-radius: 14px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

@keyframes expandFromCenter {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.product-card-container.expanded {
    padding-top: 51px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background-color: white;
    margin: 0;
    border-radius: 0;
    z-index: 10000;
    overflow-y: auto;
    padding-bottom: 55px;
    padding-left: 30px;
    padding-right: 30px;
    animation: expandFromCenter 0.3s ease-in-out;
}

/* 头部：更简洁的品牌条 */
.Product-header{
    /* background: linear-gradient(177deg, #e6eaf0, transparent 60%); */
    border-radius: 12px 12px 0px 0px;
    padding: 14px;
    color: var(--card-text);
    /* background: aliceblue; */
    background-color: #f0f8ff;
    /* border-bottom: 1px solid #e6eaf0; */
    height: 175px;
}

.flot-intro {
    overflow: hidden; /* 隐藏超出部分 */
    height: 30px; /* 设置容器高度，单行高度 */
    position: relative;
    background-color: #ffffff;
    margin-top: 10px;
    padding: 0px 20px;
    border-radius: 7px;
}

.flot-intro-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out; /* 平滑滚动效果 */
}

.flot-intro-line {
    font-size: 12px;
    color: #747474;
    height: 30px; /* 单行高度 */
    line-height: 30px; /* 垂直居中 */
}

.product-img {
    display: flex;
    align-items: flex-start;
    padding: 3px;
}

.product-img img {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 14px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 43%);
}

.products-name{ gap:6px; }
.CN_name{
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  color: var(--card-text);
  line-height: 1.15;
}

.en_name {
    font-size: 14px;
}

.Suffix {
    font-size: 12px;
    color: #8f8f8f;
    font-weight: bold;
    margin-top: 5px;
}

.share {
    display: flex;
    flex-direction: column;
    /* margin-left: auto; */
    /* margin-right: 1px; */
    /* align-items: flex-end; */
}

.Money {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.product-price {
    font-size: 30px;
    top: 1px;
}

.Product-body-first {
    display: flex;
    width: 100%;
    height: auto;
    gap: 8px;
    padding-bottom: 0px;
    overflow-x: auto; /* 允许水平滚动 */
    max-height: 100%; /* 确保高度不会被压缩 */
    min-height: 66px; /* 设置最小高度以确保内容正常显示 */
}

.Product-body-first::-webkit-scrollbar {
    display: none;  /* 适用于Chrome, Safari 和 Opera */
}

.little-card {
    position: relative;
    
  flex: 0 0 auto;       /* 不允许伸缩，始终保持下面的宽度 */
  width: 100px;          /* 你想要的固定宽度 */
  height: 70px;         /* 你想要的固定高度 */
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 4px;
}
.Product-body-first > .little-card:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-4px;          /* 位于 gap 正中，gap = 8px 时用 -4px */
  top:15%;             /* 线的上边距，可自行调整 */
  bottom:15%;          /* 线的下边距 */
  width:2px;
  background:#c9c9c9;  /* 分割线颜色 */
}


.First-line {
  font-size: 12px;
  line-height: 1.2;
  color: #666;
  white-space: nowrap;   /* 防止换行 */
}

.Second-line {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  margin: 4px 0;
  color: #666;
  white-space: nowrap;   /* 防止换行 */
}

.Third-line {
  font-size: 12px;
  line-height: 1.2;
  color: #999;
  text-align: center;
  white-space: nowrap;   /* 防止换行 */
}

.Product-body-second {
    display: flex;
}

.Product-body-second img {
    margin-top: 2px;
    width: 100%;
    border-radius: 15px;
    max-width: 320px;
}

.Image-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 5px;
}

.Image-card p {
    margin: 0;
    color: #333;
}

.Product-tail {
    flex-direction: column;
    margin-top: 15px;
}

.products-share {
    display: flex;
    flex-direction: column;
}

.product-name {
    color: #4D4D4D;
    font-size: 20px;
    font-family: Inter;
    font-weight: 600;
    margin-top: 15px;
    position: relative;
}

.name-and-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-user {
    color: #656565;
    font-size: 12px;
    font-family: Inter;
    margin-top: 100px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.currency-symbol {
    color: #4D4D4D;
    font-size: 12px;
    font-family: Inter;
}


.buy-button {

    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 19px;
    font-family: Inter;
    line-height: 18.2px;
    text-decoration: none;
    margin-top: 17px;
    margin-bottom: 5px;
    font-weight: bold;

    /* 新增：重置默认边框和外发光线 */
    border: none;
    outline: none;
}
.view-more {
    color: #4D4D4D;
    font-size: 13px;
    font-family: Inter;
    font-weight: 300;
}

.product-details {
    color: #4D4D4D;
    font-size: 13px;
    font-family: Inter;
    font-weight: 400;
    line-height: 1.9;
    position: absolute;
    top: 40px;  /* Adjusted for better visibility */
    left: 50px;
}

.per-month {
    color: #4D4D4D;
    font-size: 12px;
}


/*扩展卡片*/
.product-card-container .close-button {
    display: none; /* 默认隐藏 */
    top: 10px;
    right: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    /* border-bottom: solid 0.5px #666; */
    padding-bottom: 10px;
}

.back-little-card {
    font-size: 16px;
    color: #0066cc;
}

.product-card-container.expanded .close-button {
    display: block; /* 当卡片展开时显示关闭按钮 */
}

.extra-content {
    display: none; /* 默认隐藏 */
    margin-top: 6px;
    width: 100%;  /* 确保父容器的宽度为100% */
}

.sd {
    display: flex;
    position: relative;
    flex-direction: column;
    background-color: #ffffff;
    /* border-top: solid 1px #eeeeee; */
    /* margin-top: 6px; */
    padding: 4px 10px 2px 10px;
    height: 150px;
}

/* 提示气泡 */
.scroll-hint {
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.55);
    color:#fff;
    padding:2px 10px;
    border-radius:20px;
    font-size:12px;
    pointer-events:none;
    transition:opacity .3s;
}

.hide-hint .scroll-hint,
.hide-hint::after { opacity:0; }


/* 提示气泡 */
/* 提示样式 */
.click-hint {
    position: absolute;
    top: 20%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;

    font-size:12px;
    line-height:1;
    padding:3px 10px;
    background:#eee;
    color:#666;
    border-radius:12px;
    white-space:nowrap;
    pointer-events:none;
    opacity:1;
    transition:opacity .1s;
}

.click-hint.hide { opacity:0; }
.reviews {
    display: flex;
    flex-direction: column;
    background-color:#ffffff;
}

.review-top-line {
    display: flex;
    background-color: #ffffff;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: solid 0.5px #d0d0d0;
    margin-bottom: 10px;
    margin-top: 7px;
    border-top: solid 1px #d0d0d0;
    padding-top: 7px;
    padding-bottom: 11px;
}

.review-top-line-First-Colum {
    display: flex;
    /* font-size: 15px; */
    color: #474747;
    flex-direction: column;
    align-items: center;
    /* font-weight: bold; */
}

.review-top-line-Second-Colum {
    display: flex;
    font-size: 15px;
    color: #474747;
    flex-direction: column;
    align-items: flex-end;
}

.review-container {
    display: flex;
    height: auto;
    /* border-bottom: solid 1px #6e6e6e; */
    overflow-x: auto;
    min-height: 176px;
    padding-bottom: 7px;
}

.pagination{
  display:flex; 
  gap:8px; 
  align-items:center; 
  justify-content:center;
  margin:16px 0 8px;
}
.pagination a, .pagination span{
  padding:6px 10px; 
  color: #000000;
  border:1px solid var(--border,#2a2a2a);
  border-radius:8px; 
  text-decoration:none; 
  font-size:14px;
}
.pagination .current{ 
    font-weight:700; 
    color: #000000;
    background:rgba(93,138,255,.12); }
.pagination .disabled{ opacity:.45; cursor:not-allowed; }


.all-review {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #000000; */
    padding: 10px;
    width: 100%;
    margin-right: 13px;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
    background-color: #ffffff;
}

.review-First-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.review-Second-line {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}


.First-Column {
    display: flex;
    flex-direction: column;
    width: 76px;
}

.Second-Column {
    display: flex;
    flex-direction: column;
    width: 239px;
    align-items: flex-end;
    margin: 0px;
    font-size: 12px;
    color: #888888;
    /* font-weight: bold; */
}


.star-ratings {
    width: 100%;
}

.star-rating {
    display: flex;
    align-items: center;
    margin-bottom: -2px;
}

.stars {
    display: flex;
    align-items: center;

}

.text {
    font-size: 12px;
    color: #888888;
}

span.review-First-line-2 {
    font-size: 29px;
    font-weight: bold;
    color: #8d8d8d;
}

.star {
    font-size: 7px;
    margin-right: 2px;
}

.star-filled {
    color: #797979;
}

.star-empty {
    color: #e0e0e0; /* 灰色 */
}

.progress-bar-container {
    flex-grow: 1;
    width: 141px;
}

span.qb-text {
    /* display: flex; */
    font-size: 15px;
    color: #474747;
    /* flex-direction: column; */
    /* align-items: center; */
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    height: 3px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #797979;
    transition: width 0.3s;
}
.product-card-container.expanded .extra-content {
    display: block; /* 展开时显示 */
}

#review-display {
    margin-top: 20px;
}

.product-tips {
    font-size: 13px;
    color: #747474;
}

.fangan-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color:rgb(255, 255, 255);
    margin-top: 10px;
    /* max-width: 770px; */
    box-sizing: border-box;
    margin-bottom: 25px;
}

.image-container-copy {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    margin-bottom: 7px;
    text-decoration: none;
    color: inherit;
}

.card-content {
    display: none;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

.text-and-icon {
    display: flex;
    align-items: center;
    flex-grow: 1;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
}

.text-and-icon span {
    flex-grow: 1;
    font-size: 17px;
    color: #333;
    display: flex;
    align-items: center;
}

span.review-First-line-1 {
    /* display: flex; */
    font-size: 15px;
    color: #474747;
    /* flex-direction: column; */
    /* align-items: center; */
    font-weight: bold;
    margin-bottom: 5px;
}

span.\32 review-First-line-1 {
    /* display: flex; */
    font-size: 15px;
    color: #474747;
    /* flex-direction: column; */
    /* align-items: center; */
    font-weight: bold;
}

span.\32 review-First-line-3 {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #474747;

}

.specific-span {
    font-size: 12px;
    text-align: center;
}

.flot-intro {
    display: flex;
    height: 30px;
    flex-direction: column;
}

.flot-intro-line {
    font-size: 14px;
    color: #797979;
}
.review-text {
    margin: 0px;
    font-size: 12px;
    color: #000000;
}

span.ratting {
    margin: 0px;
    font-size: 12px;
    color: #646464;
}

.review-back {
    margin-top: 17px;
    font-size: 12px;
    color: #646464;
}

span.review-First-line-3 {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #474747;
}

.Tail-span {
    flex:1;
    font-size: 15px;
    font-weight: bold;
    color: #454545;
    margin-top: 4px;
}

.chevron {
    width: 24px;
    height: 24px;
    fill: #666;
    transition: transform 0.3s ease;
}

.popup {
    display: flex;
}

.popup-content {
    display: flex;
    background-color: #ffffff; /* 默认：白色背景 */
    flex-direction: column;
    border-radius: 5px;
    border: 0px solid;
    padding: 10px;
    height: 76%;
}

.buyname {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 6px;
}


.close {
    font-size: 30px;
    color: #646464;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: none; 
    cursor: pointer; 
}



.product-info {
    display: flex;
    align-items: flex-start; 
    width: 100%;
    padding: 1px;
    margin-bottom: 20px; 
}

.product-info img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 8px;
}

.fullintro {
    display: flex;
    flex-direction: column;
}

span#product-fullname.product-fullname {
    font-size: 25px;
    color: #000000;
}

.fullintro .intro1 {
    font-size: 14px;
    color: #747474;
}

.fullintro .intro2 {
    font-size: 10px;
    color: #747474;
}

.price-details {
    display: flex;
    flex-direction: column;
    margin-left: auto; 
    margin-right: 1px;
    align-items: flex-end;
}

.price-details .current-price {
    font-size: 30px;
    font-weight: 400;
    color: #000000;
    top: 1px
}

.price-details .original-price {
    font-size: 18px;
    text-decoration: line-through;
}

.price-details .monthly-price {
    font-size: 10px;
    color: #747474;
    position: relative; 
    top: -10;
}

.price-details .duration {
    font-size: 10px;
    color: #9b5e5e;
    background-color: bisque;
}

.purchase-options {
    display: flex; 
    flex-direction: column; 
    border: 0px solid;
    border-top: 1px solid #ccc; 
}

.purchase-options h3,
.coupon h3 {
    font-size: 18px;
    margin-bottom: 3px;
    margin-top: 3px;
}

.month-option {
    background-color: rgb(223, 223, 223);
    border: 0px solid rgb(0, 0, 0);
    padding: 10px;
    border-radius: 50%; 
    width: 3px; 
    height: 3px; 
}

.package-row {
    display: flex;
    align-items: center;
    font-size: larger;
    justify-content: space-between;
    padding: 3px;
    padding-left: 2px;
    padding-right: 2px;
    border: 0px solid #ffffff;
    border-radius: 0px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 3px;
    color: #575757;
}

.sku-months {
    margin-left: 10px;
}





.actions {
    display: flex;
    justify-content: space-between; 
    padding-top: 10px;
    gap: 30px; 
    padding-bottom: 10px;
}

.actions .proceed-payment, .actions .weixin {
    flex: 1; 
    max-width: calc(50% - 15px); 
    padding: 7px 1px; 
    margin-bottom: 8px; 
    margin-top: 8px;
    border: none; 
    cursor: pointer;
    border-radius: 10px; 
    color: white; 
    background-color: #383838; 
    text-align: center; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; 
    font-size: 13px; 
}

.actions .weixin {
    background-color: #25D366; 
}

#payment-form {
    display: flex; 
    flex-direction: column;
    padding: 0px;
    border: 0px solid #ccc; 
    border-radius: 5px;
}

.email-input {
    display: flex;
    flex-direction: column;
    margin-top: 5px;   
    margin-bottom: 10px;
    border-bottom: 1px solid #6e6e6e;
}

.email-input input:focus {
    outline: none; 
}

.discount-code-input {
    display: flex;
    flex-direction: column;
    margin-top: 5px;   
    margin-bottom: 10px;
    border-bottom: 1px solid #6e6e6e;
}

.discount-code-input input:focus {
    outline: none;
}

.discount-code-input input[type="text"] {
    width: 100%;
    padding-top: 3px;
    border: 0px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.email-input h3 {
    margin-bottom: 10px; 
}

.email-input input[type="email"] {
    width: 100%;
    padding-top: 3px;
    border: 0px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.ar-frist {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ar-second {
    height: 100px;
    margin-top: 10px;
    font-size: 12px;
    color: #8a8a8a;
    line-height: 1;
}

.ar-third {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.username, 
.rc-date {
    color: #888888;
}
.stars {
    color: #ffbf00;
}

.avatar {
    width: 30px;
    border-radius: 5px;

}
.userlink {
    font-size: 12px;
    color: #f3f9f9;
    background-color: #0fa084;
    padding: 2px 6px;
    border-radius: 12px;
    text-decoration: none;
}

#Bottom {
    border-top: 1px solid rgba(0,0,0,.22);
    background-color: var(--box-background-color);
    text-align: center;
    color: var(--color-gray);
    padding-top: 0;
    padding-right: calc(var(--box-padding) + env(safe-area-inset-right));
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: calc(var(--box-padding) + env(safe-area-inset-left));
}

@media (min-width: 768px) {
    .product-card-container.expanded {
        width: 80%;
        max-width: 800px;
        height: auto;
        border-radius: 15px;
    }
}
@media (max-width: 600px) {
    .all-re-card {
        max-width: 90%;
    }
    .all-rf-card {
        max-width: 91%;
    }
    .rf-card {
        max-width: 100%;
    }
    .fangan-card {
        max-width: 100%;
    }
    .re-card {
        max-width: 100px;
        margin-bottom: 10px;
    }
    .popup {
        width: 100%;
        max-width: none;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        height: auto;
        max-height: 80vh;
        transform: translateY(100%);
        -webkit-overflow-scrolling: touch;
  }
  .popup.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform .30s ease-in-out, opacity .30s ease-in-out, visibility 0s;
  }
}

@media (max-width: 600px) {

    .customer-service{
        flex-direction:column;      /* 垂直排布 */
        align-items:flex-start;     /* 左对齐 */
        gap:12px;                   /* 行间距 */
    }

    .Prompt{
        min-height: 130px;
    }
    .lxkf-card{
        align-self:stretch;         /* 占满整行，可按需改成 auto */
        width:100%;
    }

    .product-card-container {
        max-width: 100%;
    }
    .p-card {
        width: 100%;
    }
    .content {
        padding: 5px;
    }
   
}

@media (min-width: 600px) {

    ttpd-text {
        width: 96%;
        padding-bottom: 15px;
    }
    .all-rf-card {
        width: 96%;
        margin-bottom: 30px;
    }
    .mtpt-text {
        display: inline;
        width: 96%;
        font-size: 48px;
    }
    .tt-text, .pd-text {
        font-size: 28px;
}
}

@media (max-width: 734px) and (max-device-width: 736px) {
    .wx {
        position: relative;
        inset-inline-end: 0px;
    }
}

/* ======= 中文用户价值板块 ======= */
.cn-value{
  --cnv-page-bg: var(--page-bg, #f7f8fb);
  --cnv-card: var(--card-bg, #fff);
  --cnv-text: var(--text, #0f172a);
  --cnv-muted: var(--muted, #64748b);
  --cnv-brand: var(--accent, #6366f1);
  --cnv-radius: var(--radius, 16px);
  --cnv-shadow: var(--shadow, 0 6px 20px rgba(15,23,42,.06));
  --cnv-dark: #0f172a;
  --cnv-dark-ink: #e5e7eb;
  --cnv-accent-bg: #e8fbf6;
  padding: 20px 0 28px;
}

/* 产品名称容器：图片左，名称右 */
.products-name {
    display: flex;
    align-items: center;
    gap: 12px;
}
.products-name .product-image img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
}
.products-name .CN_name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.cnv-grid{
      display: grid;
    gap: 16px;
    grid-template-columns: 3.1fr 3.7fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "hero media stats"
    "clean apps  stats";
    /* max-width: 1120px; */
    margin: 0 auto;
    /* padding: 0 16px; */
}

.cnv-panel{
  background: var(--cnv-card);
  border-radius: var(--cnv-radius);
  box-shadow: var(--cnv-shadow);
  overflow: hidden;
  position: relative;
}

/* 左：主文案 */
.cnv-hero{
    grid-area: hero;
    /* background: linear-gradient(180deg, #101827, #0b1220); */
    color: #000000;
    background-color: #efefef;
 }
.cnv-hero-inner{     padding: 28px;
    background-color: aliceblue; }
.cnv-hero h2{ font-size: 28px; line-height: 1.25; margin: 0 0 12px; letter-spacing: .2px; }
.cnv-sub{     
    color: #5c5c5c;
    margin-bottom: 16px;
}
/* 信任背书面板：横跨整行放在网格里 */
.cnv-trust {
  grid-column: 1 / -1; /* 不改你的 grid-template-areas 也能铺满一行 */
  background: var(--cnv-card);
  border: 1px solid var(--border);
  border-radius: var(--cnv-radius);
  box-shadow: var(--cnv-shadow);
  padding: 20px;
}
.cnv-trust__row {
        display: flex;
    /* flex-direction: row; */
    /* display: grid; */
    /* grid-template-columns: 3.1fr 3.1fr; */
    justify-content: center;
    gap: 36px;
}
.cnv-trust h3 {
  font-size: 18px; margin: 0 0 10px; color: var(--cnv-text);
}
.cnv-proof-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cnv-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--cnv-text);
    text-decoration: none;
    flex-direction: row;
    flex-wrap: wrap;
}
.cnv-link:hover { box-shadow: var(--shadow-sm); }
.cnv-link svg { width: 18px; height: 18px; }
.cnv-link .pill {
  margin-left: 6px; font-size: 12px; color: var(--cnv-muted);
  background: var(--card-soft); padding: 2px 6px; border-radius: 999px;
  border: 1px solid var(--card-border);
}
.pills {
        display: flex;
    flex-wrap: wrap;
}
.pill {
  margin-left: 6px; font-size: 12px; color: var(--cnv-muted);
  background: var(--card-soft); padding: 2px 6px; border-radius: 999px;
  border: 1px solid var(--card-border);
}
.cnv-qr {
      justify-self: end;
    display: grid;
    gap: 8px;
    text-align: center;
    justify-items: center;
}
.cnv-qr img {
  width: 140px; height: 140px; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--card-border);
  background: #fff;
}
.cnv-qr .caption { font-size: 12px; color: var(--cnv-muted); }
.cnv-copy {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  padding: 6px 8px; border: 1px dashed var(--card-border); border-radius: 10px;
  background: var(--card-soft);
}
.cnv-copy code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.copy-btn {
  border: 0; padding: 6px 10px; border-radius: 8px; cursor: pointer;
  background: var(--cnv-accent-bg); color: var(--accent);
}
@media (max-width: 860px){
  .cnv-trust__row { grid-template-columns: 1fr; }
  .cnv-qr { justify-self: start; }
}

.cnv-bullets{ margin: 0 0 18px 18px; padding: 0; }
.cnv-bullets li{ margin: 6px 0; }
.cnv-ctas{ display: flex; gap: 10px; flex-wrap: wrap; }

.cnv-btn{ display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 16px; border-radius: 999px; font-weight: 600; text-decoration: none; }
.cnv-btn--primary{ background: var(--cnv-brand); color: #fff; }
.cnv-btn--primary:hover{ filter: brightness(.95); }
.cnv-btn--ghost{     background: rgb(255 255 255);
    border: 1px solid rgb(255 255 255);
    color: #808080; }
.cnv-btn--ghost:hover{ background: rgba(255,255,255,.12); }

/* 右上：配图 */
.cnv-media{ grid-area: media; display: grid; place-items: center; background: #0b1220; }
.cnv-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

/* 右侧：统计卡片（纵向） */
.cnv-stats{     
    grid-area: stats;
    display: grid;
    gap: 10px;
    padding: 14px;
    background: #ffffff; 
}
.cnv-stat{    
    background: rgb(239 239 239);
    color: #000000;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}
.cnv-stat .num{ font-size: 28px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.cnv-stat .label{     
    font-size: 12px;
    color: #5b5b5b; 
}

/* 左下：干净体验 */
.cnv-clean{ grid-area: clean; padding: 20px; }
.cnv-clean h3{ margin: 0 0 8px; font-size: 14px; }
.cnv-clean p{     color: #8a8a8a;
    margin: 0 0 14px;
    font-size: 12px; }
.cnv-clean-illustration{ height: 120px; border-radius: 12px; background:
  radial-gradient(60px 60px at 20% 40%, #9ae6b4 0, rgba(154,230,180,.0) 60%),
  radial-gradient(60px 60px at 70% 60%, #6ee7b7 0, rgba(110,231,183,.0) 60%),
  #e8fbf6; }

/* 中下：应用图标 */
.cnv-apps{ grid-area: apps; padding: 18px; }
.cnv-apps-list{ list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.cnv-apps .app{ display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 12px; background: #f7f8fb; }
.cnv-apps .app img{ width: 22px; height: 22px; object-fit: contain; }
.cnv-apps .app span{ font-size: 14px; color: var(--cnv-text); }
.cnv-note{ display: block; color: var(--cnv-muted); margin-top: 8px; }

/* 交互色块：每个图标不同底色 */
.cnv-apps .app:nth-child(1){ background:#eef2ff; }
.cnv-apps .app:nth-child(2){ background:#fee2e2; }
.cnv-apps .app:nth-child(3){ background:#dcfce7; }
.cnv-apps .app:nth-child(4){ background:#fef9c3; }
.cnv-apps .app:nth-child(5){ background:#e0f2fe; }
.cnv-apps .app:nth-child(6){ background:#fae8ff; }

/* 响应式 */
@media (max-width: 1024px){
  .cnv-grid{
    grid-template-columns: 1.6fr 1.4fr;
    grid-template-areas:
      "hero  hero"
      "media stats"
      "clean apps";
  }
}
@media (max-width: 680px){
  .cnv-grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "media"
      "stats"
      "clean"
      "apps";
  }
  .cnv-hero h2{ font-size: 22px; }
  .cnv-stat .num{ font-size: 24px; }
}
/* === Popup Quick FAQ (Accordion) === */
.quick-faq { 
     padding-top: 8px; }
.quick-faq__title { font-size: 14px; color: #666; margin: 6px 0 8px; }
.qf-item {border-bottom: 0.5px solid #dddddd;/* background: #fff; */}
.qf-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 10px;
    background: #ffffff;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    }
.qf-header .qf-question { text-align: left; color: #333; }
.qf-header .chevron { transition: transform .2s ease; color: #999; }
.qf-content {padding: 10px 12px;background: #fff;}
.qf-answer { color: #444; font-size: 13px; line-height: 1.6; }

/* ===== Popup Inquiry Bar ===== */
#popup .inquiry-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(90deg, #e4ddff 35%, #d7dbff 50%);
    border: 1px solid #e6ecf5;
    border-radius: 8px 8px 0px 0px;
    /* margin: 8px 12px 0; */
    cursor: pointer;
}
#popup .inquiry-bar .inquiry-icon { width: 22px; height: 22px; line-height: 22px; border-radius: 50%; background: #4a6cf7; color: #fff; text-align: center; font-weight: 700; font-family: ui-sans-serif, system-ui; }
#popup .inquiry-bar .inquiry-cta { margin-left: auto; color: #4a6cf7; font-size: 12px; }
#popup .inquiry-bar .inquiry-text { color: #333; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60%; }

/* 切换到问答模式时隐藏购买元素，显示问答 */
#popup.popup-mode-faq .inquiry-bar { display: none; }
#popup .quick-faq, #popup .quick-faq-actions { display: none; }
#popup.popup-mode-faq .product-info,
#popup.popup-mode-faq .purchase-options,
#popup.popup-mode-faq #payment-form,
#popup.popup-mode-faq .actions .proceed-payment { display: none; }
#popup.popup-mode-faq .quick-faq,
#popup.popup-mode-faq .quick-faq-actions {display: block;/* border-radius: 18px; *//* margin-top: 5px; *//* padding: 10px; *//* background: antiquewhite; */}
#popup.popup-mode-faq .actions { display: none; }

/* Popup content 背景：问答模式透明，购买模式白色 */
#popup .popup-content { background: #fff; }
#popup.popup-mode-faq .popup-content { background: transparent; }


.quick-faq-actions {
    margin-top: 10px;
}

section.quick-faq {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
}

.quick-faq-actions {
    padding: 0px;
}
