/**隐藏商品页中detail-html 代码中图片宽度**/
.goods-detail .detail-wrapper[data-v-b7132c0e]
 {
    margin-top: 70px;
    max-width: 70%;
}

/**商品页PC端 商品详述中的文本字段样式**/

/* ========== .detail-html 完整样式表 ========== */
.detail-html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    padding: 16px;
    word-wrap: break-word;
    word-break: break-word;
}

/* ===== 标题系列 ===== */
.detail-html h1,
.detail-html h2,
.detail-html h3,
.detail-html h4,
.detail-html h5,
.detail-html h6 {
    font-weight: 600;
    color: #202214;
    margin: 20px 0 12px 0;
    line-height: 1.4;
}
.detail-html h1 { font-size: 22px; }
.detail-html h2 { font-size: 20px; }
.detail-html h3 { font-size: 18px; }
.detail-html h4 { font-size: 16px; }
.detail-html h5 { font-size: 15px; }
.detail-html h6 { font-size: 14px; }

/* ===== 段落与文本 ===== */
.detail-html p {
    margin: 12px 0;
    line-height: 1.8;
}
.detail-html span { color: inherit; }
.detail-html strong,
.detail-html b { font-weight: 600; color: #202214; }
.detail-html em,
.detail-html i { font-style: italic; }
.detail-html u { text-decoration: underline; }
.detail-html s,
.detail-html strike { text-decoration: line-through; }
.detail-html del { text-decoration: line-through; color: #999; }
.detail-html ins { text-decoration: underline; }
.detail-html mark {
    background: #fff3cd;
    padding: 0 4px;
    border-radius: 2px;
}
.detail-html small { font-size: 12px; color: #999; }
.detail-html sub { vertical-align: sub; font-size: smaller; }
.detail-html sup { vertical-align: super; font-size: smaller; }

/* ===== 链接 ===== */
.detail-html a {
    color: #c20c0c;
    text-decoration: none;
}
.detail-html a:hover {
    text-decoration: underline;
    color: #a00a0a;
}

/* ===== 列表 ===== */
.detail-html ul,
.detail-html ol,
.detail-html li {
    list-style: none !important;
    -webkit-list-style: none !important;
    padding: 0;
    margin: 12px 0;
}
.detail-html ul li,
.detail-html ol li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
    line-height: 1.8;
}
.detail-html ul li::marker { content: none !important; }
.detail-html ol li::marker { content: none !important; }
.detail-html ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    color: #c20c0c;
    font-size: 14px;
}
.detail-html ol {
    counter-reset: ol-counter;
}
.detail-html ol li {
    counter-increment: ol-counter;
}
.detail-html ol li::before {
    content: counter(ol-counter) ".";
    position: absolute;
    left: 0;
    color: #c20c0c;
    font-weight: 600;
}

/* ===== 列表中的嵌套列表 ===== */
.detail-html ul ul,
.detail-html ol ol,
.detail-html ul ol,
.detail-html ol ul {
    margin: 4px 0 4px 16px;
}
.detail-html ul ul li::before { content: "○"; }
.detail-html ul ul ul li::before { content: "▪"; }
.detail-html ol ol li::before,
.detail-html ol ul li::before { content: none; }

/* ===== 定义列表 ===== */
.detail-html dl { margin: 12px 0; }
.detail-html dt {
    font-weight: 600;
    color: #202214;
    margin-top: 12px;
}
.detail-html dd {
    margin-left: 20px;
    padding-left: 12px;
    border-left: 2px solid #eee;
}

/* ===== 图片 ===== */
.detail-html img {
    width: 820px;
    max-width: 820px;
    height: auto;
    display: block;
    margin: 0px 0;
    border-radius: 4px;
}
.detail-html figure {
    margin: 16px 0;
}
.detail-html figcaption {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* ===== 表格 ===== */
.detail-html table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13px;
}
.detail-html thead { background: #f8f8f8; }
.detail-html tbody tr { border-bottom: 1px solid #eee; }
.detail-html tbody tr:hover { background: #fafafa; }
.detail-html th,
.detail-html td {
    border: 1px solid #eee;
    padding: 10px 12px;
    text-align: left;
}
.detail-html th {
    font-weight: 600;
    color: #202214;
    background: #f5f5f5;
}

/* ===== 区块容器 ===== */
.detail-html div,
.detail-html section,
.detail-html article,
.detail-html header,
.detail-html footer,
.detail-html nav,
.detail-html aside,
.detail-html main {
    margin: 12px 0;
}

/* ===== 引用 ===== */
.detail-html blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    background: #f8f8f8;
    border-left: 4px solid #c20c0c;
    border-radius: 0 4px 4px 0;
}
.detail-html blockquote p { margin: 0; color: #666; }
.detail-html blockquote blockquote {
    margin: 8px 0;
    background: #f0f0f0;
    border-left-color: #999;
}
.detail-html q {
    quotes: """ """;
    font-style: italic;
    color: #666;
}
.detail-html cite {
    font-style: italic;
    color: #999;
}

/* ===== 代码 ===== */
.detail-html code {
    font-family: "SF Mono", Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    color: #c20c0c;
}
.detail-html pre {
    font-family: "SF Mono", Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    background: #f5f5f5;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 16px 0;
    border: 1px solid #eee;
}
.detail-html pre code {
    background: none;
    padding: 0;
    color: #333;
}
.detail-html samp {
    font-family: monospace;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
}
.detail-html kbd {
    font-family: monospace;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 12px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

/* ===== 水平线 ===== */
.detail-html hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* ===== 换行 ===== */
.detail-html br { line-height: 1.8; }

/* ===== 按钮（如果有） ===== */
.detail-html button,
.detail-html input[type="button"],
.detail-html input[type="submit"] {
    background: #c20c0c;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.detail-html button:hover,
.detail-html input[type="button"]:hover,
.detail-html input[type="submit"]:hover {
    background: #a00a0a;
}

/* ===== 多媒体 ===== */
.detail-html video {
    max-width: 100%;
    height: auto;
    margin: 12px 0;
    border-radius: 4px;
}
.detail-html audio {
    width: 100%;
    margin: 12px 0;
}
.detail-html iframe {
    max-width: 100%;
    border: none;
    border-radius: 4px;
}

/* ===== 进度/度量 ===== */
.detail-html progress {
    width: 100%;
    height: 20px;
    margin: 12px 0;
}
.detail-html meter {
    width: 100%;
    height: 20px;
    margin: 12px 0;
}

/* ===== 折叠details ===== */
.detail-html details {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px;
    margin: 12px 0;
}
.detail-html summary {
    font-weight: 600;
    cursor: pointer;
    outline: none;
}
.detail-html details[open] summary {
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}


/* content-text 文章内容样式 */
.content-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.content-text p {
  margin-bottom: 16px;
  text-align: justify;
}

.content-text ol {
  margin: 20px 0;
  padding-left: 28px;
  counter-reset: list-counter;
}

.content-text ol li {
  margin-bottom: 16px;
  padding-left: 8px;
  position: relative;
  list-style-type: none;
  counter-increment: list-counter;
}

.content-text ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: -24px;
  color: #e67e22;
  font-weight: bold;
}

.content-text strong {
  color: #2c3e50;
  font-weight: 600;
}
