/* 针对该页面特定样式的无序列表 */
.news-txts ul {
  list-style-type: square; /* 使用方块样式 */
  padding-left: 20px !important; /* 增加左侧间距 */
}

.news-txts ul li {
  margin-bottom: 10px; /* 每个列表项之间的间距 */
  list-style-type: square; /* 使用方块样式 */
}

/* 针对该页面特定样式的有序列表 */
.news-txts ol {
  list-style-type: decimal; /* 可选值：decimal, lower-alpha, upper-roman 等 */
  padding-left: 20px!important;/* 与内容左对齐 */
}

.news-txts ol li {
  margin-bottom: 10px;
  list-style-type: decimal; /* 可选值：decimal, lower-alpha, upper-roman 等 */
}

/* 嵌套 */
.news-txts ul ul li,
.news-txts ol ol li{
    margin-left: 1.2em;                     /* 嵌套缩进 */
    list-style-type: circle;                /* 二级列表空心圆 */
}

/* 针对产品的无序列表 */
.item1-txt ul {
  list-style-type: square; /* 使用方块样式 */
  padding-left: 20px; /* 增加左侧间距 */
}

.item1-txt ul li {
  margin-bottom: 10px; /* 每个列表项之间的间距 */
  list-style-type: square; /* 使用方块样式 */
}

/* 针对该页面特定样式的有序列表 */
.item1-txt ol {
  list-style-type: decimal; /* 可选值：decimal, lower-alpha, upper-roman 等 */
  padding-left: 20px!important;/* 与内容左对齐 */
}

.item1-txt ol li {
  margin-bottom: 10px;
  list-style-type: decimal; /* 可选值：decimal, lower-alpha, upper-roman 等 */
}

/* 嵌套 */
.item1-txt ul ul li,
.item1-txt ol ol li{
    margin-left: 1.2em;                     /* 嵌套缩进 */
    list-style-type: circle;                /* 二级列表空心圆 */
    color: rgb(74, 74, 74);                 /* 字体颜色 */
    font-size: 14px;
}

/* 文章页面的youtube视频适配问题，添加到custom-styles.css */
.news-txts iframe[src*="youtube.com"] {
  width: 100% !important;
  height: calc(100vw * 422/750) !important; /* 保持原始比例 */
  max-width: 750px; /* PC端最大宽度 */
  display: block;
  margin: 20px auto;
}

@media (min-width: 769px) {
  /* PC端精确高度控制 */
  .news-txts iframe[src*="youtube.com"] {
    height: 422px !important;
  }
}

@media (max-width: 768px) {
  /* 移动端全宽适配 */
  .news-txts iframe[src*="youtube.com"] {
    max-width: 100% !important;
    height: calc(100vw * 9/16) !important; /* 强制16:9比例 */
  }
}

/* 防止内容溢出 */
.news-txts {
  overflow-x: hidden;
  contain: layout;
}

/* 产品页面的youtube视频适配问题，添加到custom-styles.css */
.item1-txt iframe[src*="youtube.com"] {
  width: 100% !important;
  height: calc(100vw * 422/750) !important; /* 保持原始比例 */
  max-width: 750px; /* PC端最大宽度 */
  display: block;
  margin: 20px auto;
}

@media (min-width: 769px) {
  /* PC端精确高度控制 */
  .item1-txt iframe[src*="youtube.com"] {
    height: 422px !important;
  }
}

@media (max-width: 768px) {
  /* 移动端全宽适配 */
  .item1-txt iframe[src*="youtube.com"] {
    max-width: 100% !important;
    height: calc(100vw * 9/16) !important; /* 强制16:9比例 */
  }
}

/* 防止内容溢出 */
.item1-txt {
  overflow-x: hidden;
  contain: layout;
}



.copy-l p {
    font-size: 0 !important;
}
.copy-l p::after {
    font-size: 14px !important;
}

html[lang="zh"] .copy-l p::after {
    content: "Copyright © 2002-2026 中瑞重工股份有限公司";
}

html[lang="en"] .copy-l p::after {
    content: "Copyright © 2002-2026 Zoomry Group Company Limited";
}

html[lang="ru"] .copy-l p::after {
    content: "Copyright © 2002-2026 Zoomry Group Company Limited";
}

html[lang="es"] .copy-l p::after {
    content: "Copyright © 2002-2026 Zoomry Group Company Limited";
}
