	* {
    box-sizing: border-box;
}
.section_box {
    padding: 30px;
    background: #fff;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section_box {
        padding: 15px;  /* 比 PC 小，靠近屏幕边缘 */
        margin-bottom: 15px; /* 间距可适当缩小 */
    }
}

/* 整体布局 */
.layout {
    display: flex;
    max-width: 1200px;   /* PC最大宽度 */
    margin: 0 auto;      /* 居中 */
    gap: 20px;
    padding: 0 15px;     /* PC左右内边距 */
}

/* 左侧自适应宽 */
.left-box {
    flex: 1;
    min-width: 0;
    background: #f5f5f5;
    padding: 20px;
}

/* 右侧固定宽 300px */
.right-box {
    width: 300px;
    flex-shrink: 0;
    background: #fafafa;
    padding: 20px;
}

/* ========= 响应式：移动端 ========= */
@media (max-width: 768px) {
    .layout {
        flex-direction: column;   /* 上下排列 */
        max-width: 100%;          /* 占满屏幕宽度 */
        margin: 0;                /* 去掉居中空白 */
        padding: 0;               /* 去掉 layout 自身内边距 */
    }

   .left-box,
    .right-box {
        width: 100%;
        padding: 10px; /* 减小移动端padding */
    }
}
/*---*/

/* 全站推荐：避免 padding 撑爆宽度 */
* {
    box-sizing: border-box;
}


/* ============================================================
   模块外层（更现代、更像卡片）
============================================================ */
.detailedinfo-top .etailedinfotable {
    border: 1px solid #ddd;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}


/* ============================================================
   图标 + 标题
============================================================ */
.detailedinfo-top .etailedinfotable .mc {
    width: 28px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.detailedinfo-top .etailedinfotable h1 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    color: #333;
}


/* ============================================================
   时间显示
============================================================ */
.detailedinfo-top .etailedinfotable .posttime {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}


/* ============================================================
   UL 列表（分类 / 下载按钮所在块）
============================================================ */
.detailedinfo-top .etailedinfotable ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
}

.detailedinfo-top .etailedinfotable ul li {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}



/* ============================================================
   按钮美化（更现代）
============================================================ */
.button {
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    transition: 0.2s;
    color: #fff;
    background: #2e8cd0;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: #1d6fa8;
}


/* ============================================================
   ========= 响应式：移动端优化（≤768px） =========
============================================================ */
@media (max-width: 768px) {

    .detailedinfo-top .etailedinfotable {
        padding: 15px 12px;
        border-radius: 8px;
    }

    .detailedinfo-top .etailedinfotable h1 {
        font-size: 18px;
        line-height: 26px;
        padding-bottom: 10px;
        margin-bottom: 16px;
    }

    .detailedinfo-top .etailedinfotable .mc {
        width: 32px;
        margin-bottom: 10px;
    }

    .detailedinfo-top .etailedinfotable .posttime {
        font-size: 12px;
        margin-bottom: 15px;
    }

    /* UL → 单列居中 */
    .detailedinfo-top .etailedinfotable ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .detailedinfo-top .etailedinfotable ul li {
        margin: 0;
        text-align: center;
        font-size: 14px;
    }

    /* 按钮更适配手机 */
    .button {
        width: 90%;
        margin: 10px auto 0 auto;
        display: block;
        font-size: 15px;
        padding: 12px 10px;
    }
}


/*------*/
		/* ============================================================
   基本全局
============================================================ */
* {
    box-sizing: border-box;
}

.detailedinfo-main {
    width: 100%;
    margin: 15px auto;
    font-size: 14px;
}

.detailedinfo-content {
    margin-top: 15px;
}


/* ============================================================
   标题条（上方灰色条 → 改成白卡片风格）
============================================================ */
.detailedinfo-content-title {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detailedinfo-content-title h3 {
    font-size: 16px;
    font-weight: bold;
    padding-left: 20px;
    background: url("../images/CricleIcon.png") no-repeat left center;
    margin: 0;
}

.detailedinfo-content-title a {
    width: 28px;
    height: 19px;
    background: url("../images/go_up.png") no-repeat center;
    flex-shrink: 0;
    cursor: pointer;
}

.detailedinfo-content-title a.collapsed {
    background: url("../images/go_down.png") no-repeat center;
}


/* ============================================================
   内容盒子（白色背景、圆角、阴影）
============================================================ */
.detailedinfo-content-collapse {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    margin: 0;
}


/* ============================================================
   每一行（左列 P + 右列 span）
============================================================ */
.detailedinfo-content-collapse li {
    display: flex;
    padding: 8px 15px;
    align-items: flex-start;
}

.detailedinfo-content-collapse li p {
    width: 25%;
    text-align: right;
    font-weight: bold;
    margin: 0;
    padding: 0 10px 0 0;
    color: #333;
}

.detailedinfo-content-collapse li span {
    width: 75%;
    padding-left: 5px;
    color: #444;
    line-height: 22px;
    word-break: break-word;
}


/* ============================================================
   ↘↘↘ 移动端优化（≤768px） ↙↙↙
============================================================ */
@media (max-width: 768px) {

    .detailedinfo-content-title {
        padding: 10px 12px;
    }

    .detailedinfo-content-title h3 {
        font-size: 15px;
        padding-left: 22px;
    }

    .detailedinfo-content-title a {
        width: 24px;
    }

    /* ✅ 每一条保持一行，不换行，不上下结构 */
    .detailedinfo-content-collapse li {
        flex-direction: row;       /* 保持同行排列 */
        padding: 10px 12px;
        align-items: center;
    }

    .detailedinfo-content-collapse li p {
        width: auto;               /* 不再固定 25% */
        margin: 0;
        padding: 0;
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap;       /* ✅ 不允许换行 */
        text-align: left;          /* 居左 */
    }

    .detailedinfo-content-collapse li span {
        width: auto;               /* 弹性自适应 */
        padding-left: 6px;
        font-size: 14px;
        line-height: 22px;
        white-space: nowrap;       /* ✅ 也不允许换行 */
        overflow: hidden;
        text-overflow: ellipsis;   /* ✅ 超长内容自动 ... */
    }

    /* ✅ li 整行不超出屏幕，自动省略 */
    .detailedinfo-content-collapse li {
        overflow: hidden;
    }
}

/*=====*/


/* 文章题纲 - 标题条 */

/* 文章题纲卡片体 */
.tigang {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
}


.tigang-title {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
    padding: 12px 15px;
}

.tigang-title h3 {
    font-size: 16px;
    font-weight: bold;
    padding-left: 20px;
    background: url("../images/CricleIcon.png") no-repeat left center;
    margin: 0;
}

.tigang li {
    padding: 14px 16px 14px 16px;
    line-height: 1.7;
    font-size: 15px;
    color: #333;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}

.tigang li:last-child {
    border-bottom: none;
}


@media (max-width: 768px) {
    
    .tigang-title {
        padding: 10px 12px;
    }

    .tigang-title h3 {
        font-size: 15px;
        padding-left: 22px;
    }

    .tigang li {
        padding: 12px 12px 12px 12px;
        font-size: 14px;
        line-height: 1.65;
    }


}





/*=====*/
.doc-table {
  width: 100%;
  max-width: 900px;
  margin-bottom:20px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background: #fff;
}

.row1 {
  display: grid;
  grid-template-columns: 60px 1fr 100px;
  align-items: center;
  padding: 6px 12px;
  border-bottom: 1px solid #e5e7eb;
}


.row1.header1 {
  background: #f9fafb;
  font-weight: bold;
  color: #111;
}

.row1:nth-child(odd):not(.header) {
  background: #fcfcfc;
}

.row1:hover {
  background: #f2f6ff;
}

.cell {
  padding: 2px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.col-1 {
  text-align: center;
  color: #555;
}

.col-2 a {
  color: #0b4dbb;
  text-decoration: none;
}

.col-2 a:hover {
  text-decoration: underline;
}

.col-3 {
  text-align: right;
  color: #444;
}

.row1:last-child {
  border-bottom: none;
}


/*=====*/

/* ======= 弹窗遮罩层 ======= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

/* 显示状态 */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ======= 弹窗主体 ======= */
.modalt {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 750px;
  padding: 22px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  transform: translateY(40px);
  transition: transform 0.3s ease;
}

/* 激活时上移进入动画 */
.modal-overlay.active .modalt {
  transform: translateY(0);
}

/* ======= 头部 ======= */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.close-btn {
  font-size: 26px;
  line-height: 26px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #999;
  padding: 2px 6px;
}

.close-btn:hover {
  color: #333;
}

/* ======= 内容区域 ======= */
.modal-content {
  font-size: 16px;
  line-height: 1.7;
  min-height: 150px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 4px;
}

.typing-text {
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: #6e8efb;
  margin-left: 2px;
  animation: blink 1s infinite;
}

/* 光标闪烁 */
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ======= 底部 ======= */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.modal-btn {
  background: #6e8efb;
  color: #fff;
  padding: 8px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.modal-btn:hover {
  background: #5a7dfa;
}

/* ======================= */
/* ======= M 端优化 ======= */
/* ======================= */
@media (max-width: 768px) {
  .modalt {
    width: 94%;
    padding: 18px;
    border-radius: 10px;
  }

  .modal-title {
    font-size: 18px;
  }

  .modal-content {
    font-size: 15px;
    max-height: 55vh;
  }

  .modal-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}

/* 特小屏（<=480px）更友好 */
@media (max-width: 480px) {
  .modalt {
    width: 96%;
    padding: 15px;
  }

  .modal-title {
    font-size: 17px;
  }

  .modal-content {
    font-size: 14px;
  }

  .close-btn {
    font-size: 24px;
  }
}


		/*=====*/
		
/*===============================
=        头部区域样式（去掉#content）  
===============================*/

.detailedinfo-main {
    width: 100%;
    margin: 10px auto;
    font-size: 14px;
}

.detailedinfo-main .detailedinfo-content div.detailedinfo-content-title {
    width: 100%;
    padding: 0;
}

.detailedinfo-main .detailedinfo-content .detailedinfo-content-title h3 {
    margin-left: 20px;
}

.detailedinfo-main .detailedinfo-content .detailedinfo-content-title a {
    margin-right: 20px;
}

.standard-detail-info-navbar-container {
    color: #d10101;
    font-size: 18px;
    padding: 10px 0;
}

.standard-detail-info-navbar {
    color: #d10101;
    font-size: 18px;
    background: url("../images/icon_detail_nav.png") no-repeat;
    height: 32px;
}

.standard-detail-info-navbar b {
    font-size: 18px;
    padding-left: 45px;
}

.detailedinfo-top table tr td img {
    vertical-align: bottom;
    margin-right: 15px;
}

.detailedinfo-top table tr td.price-td {
    padding-top: 0;
}

/*===============================
=     Stand Detail Description 外层框
===============================*/

.stand-detail-description {
    border: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
    background: #fff;
}

.stand-detail-description .stand-detail-description-title {
    border-bottom: 1px solid #ddd;
    padding: 8px 20px;
    display: flex;
    align-items: center;
}

.stand-detail-description .stand-detail-description-title img {
    margin-right: 10px;
    vertical-align: middle;
}

.stand-detail-description .stand-detail-description-title b {
    font-weight: bold;
    vertical-align: middle;
}

.stand-detail-description h3 {
    padding: 15px 45px 5px;
}

.stand-detail-description h3 b {
    font-weight: normal;
    font-size: 16px;
}

.stand-detail-description .detailedinfo-text {
    font-size: 15px;
    margin: 0 2em;
}


/*===============================
=           新版文章内容样式  
===============================*/

.stand-detail-description-title img {
    margin: 0 6px 0 0 !important; /* 上右下左，右边留点间距 */
    vertical-align: middle !important; /* 保证文字垂直居中对齐 */
}
.article-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    background-color: #fff;
    word-break: break-word;
}

.article-content p {
    margin: 15px 0;
    text-indent: 2em;
}

.article-content div {
    margin-bottom: 25px;
}

.article-content a {
    color: #007aff;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

/* 底部提示绿色区 */
.article-tip {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #009966;
}

/*===============================
=             按钮样式  
===============================*/

.read-more {
    text-align: center;
    margin-top: 20px;
}

.read-more a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007aff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.read-more a:hover {
    background-color: #005fc1;
}

/*===============================
=       移动端优化(重要)  
===============================*/

@media (max-width: 600px) {

    .stand-detail-description h3 {
        padding: 15px 15px 5px;
    }

    .stand-detail-description .detailedinfo-text {
        margin: 0 15px;
        font-size: 15px;
    }

    .article-content {
        padding: 0 10px;
        font-size: 15px;
        line-height: 1.7;
    }
}

.scrollable-div1 {
    max-height: 800px;       /* 最大高度，可以根据需求调整 */
    overflow-y: auto;        /* 只在垂直方向出现滚动条 */
    padding: 10px 20px;      /* 内边距，避免图片贴边 */
    border: 1px solid #ddd;  /* 可选，和其他模块统一风格 */
    background-color: #fff;  /* 背景色 */
}

/* 图片自适应容器宽度 */
.scrollable-div1 img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;    /* 图片间距 */
}


/* 手机端优化 */
@media screen and (max-width: 768px) {
    .scrollable-div1 {
        max-height: 500px;   /* 手机端高度更小 */
        padding: 8px 10px;
    }
    .scrollable-div1 img {
        max-width: 100%;     /* 保持自适应，不超出屏幕 */
        height: auto;
        display: block;
        margin: 0 auto 8px;
    }
}
/*=====*/

/* ======= 右侧容器（放在 right-box 内） ======= */
.right-latest-box {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

/* 标题栏 */
.right-title {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    background: #fafafa;
}

.right-title img {
    width: 20px;
    height: 20px;
    margin-right: 10px !important;
    display: inline-block;
	 margin: 0 !important;         /* 超强覆盖全局 img 样式 */
}


.right-title b {
    font-size: 16px;
    color: #d10101;
}

/* 列表 */
.right-list {
    padding: 10px 16px;
}

.right-list li {
    list-style: none;
    margin-bottom: 12px;
}

.right-list li:last-child {
    margin-bottom: 0;
}

.right-list li a {
    color: #444;
    font-size: 14px;
    text-decoration: none;
}

.right-list li a:hover {
    color: #e53937;
}

/* 文章标题（加粗） */
.right-list li b {
    display: block;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 文章分类 */
.right-list li span {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ======= M 端样式（自动下移 + 全宽） ======= */
@media screen and (max-width: 768px) {
    .right-box {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .right-latest-box {
        border-radius: 4px;
    }

    .right-list li a {
        font-size: 15px; /* 移动端更易读 */
    }

    .right-list li b {
        font-size: 15px;
    }

    .right-list li span {
        font-size: 12px;
    }
	.right-title img {
    display: inline-block;
	 margin: 0 !important;         /* 超强覆盖全局 img 样式 */
}
}
/*=====*/

