        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #444;
            transition: all 0.3s;
        }
        a:hover {
            color: #3498db;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        input:focus {
            outline: none;
        }

        /* 导航栏样式 */
        .header {
            background-color:rgb(240, 245, 249);
            padding: 10px 0;
        }
        .nav {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 800px; /* 限制最大宽度，让内容集中在中间 */
            margin: 0 auto; /* 水平居中 */
            position: relative;
            padding: 0 15px; /* 调整内边距 */

        }

/* Logo容器样式（保持flex垂直排列，无额外间距） */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* 水平居中 */
  line-height: 1; /* 消除容器默认行高带来的额外留白 */
}

/* Logo链接样式（优化行高，减少自身垂直占比） */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: #3498db; /* 蓝色 */
  white-space: nowrap;
  margin-right: 0px;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.2; /* 控制logo文字自身的行高，避免过高 */
}

.logo:hover {
  color: #e74c3c; /*  hover变色，可自定义 */
}

/* 网址样式（核心：减小margin-top，压缩上下间距） */
.logo-url {
  font-size: 12px;
  color: #666;
  margin-top:0px; /* 间距直接 若仍大可改为0px */
  white-space: nowrap;
}
        
        /* 百度搜索框样式 */
        .search-wrapper {
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }
        .search-form {
            display: flex;
            align-items: center;
            width: 100%;
        }
        .search-input {
            padding: 8px 15px;
            border-radius: 20px;
            border: none;
            width: 80%;
            max-width: 300px;
            font-size: 14px;
        }
        .search-btn {
            background-color: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin-left: 8px;
            transition: background-color 0.3s;
            white-space: nowrap;
        }
        .search-btn:hover {
            background-color: #2980b9;
        }
        
        /* 搜索图标按钮 - 移动端使用 */
.search-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 10;
    width: 22px; /* 微调尺寸，更显舒展 */
    height: 22px;
    transition: all 0.2s ease; /* 增加整体过渡，hover更丝滑 */
}

/* 搜索图标 - 圆形主体（优化线条粗细和圆角） */
.search-icon::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1.8px solid #3b63b9c7; /* 线条更细腻，避免粗笨感 */
    border-radius: 50%;
    top: 1px;
    left: 1px;
    transition: border-color 0.2s ease;
}

/* 搜索图标 - 手柄（优化角度、长度和圆角） */
.search-icon::after {
    content: '';
    position: absolute;
    width: 8px; /* 调整手柄长度，比例更协调 */
    height: 1.8px; /* 与圆形边框粗细一致，视觉统一 */
    background-color: #3b63b9c7;
    border-radius: 1px; /* 手柄末端圆角，避免生硬直角 */
    transform: rotate(42deg); /* 微调角度，更自然 */
    bottom: 2px;
    right: 2px;
    /* 让手柄与圆形"衔接"更自然，模拟穿透感 */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
    transition: background-color 0.2s ease;
}
        
        /* 导航链接样式 */
        .nav-links {
            display: flex;
            align-items: center;
        }
        .nav-links li {
            margin: 0 10px;
        }
        .nav-links a {
            font-size: 15px;
            white-space: nowrap;
        }

        /* 横幅区域 */
        .banner {
            background-color: #3498db;
            padding: 40px 0;
            text-align: center;
            color: #fff;
        }
        .banner h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        .banner p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* 主要内容区 */
        .main-content {
            display: flex;
            margin-bottom: 50px;
            padding-top: 10px;
        }
        .content-left {
            flex: 1;
            width: 100%;
            max-width: 300px;
        }
        .content-right {
            flex: 3;
            margin-right: 0; /* 删除原右侧间距（不再需要） */
            /* 新增：内容区与左侧边栏的间距（与原间距一致，保持视觉统一） */
            margin-left: 20px; 
        }
        .sidebar-sticky {
            max-height: calc(100vh - 110px);
            width: inherit;
            max-width: inherit;
            overflow-y: auto; /* 若边栏内容过长，添加垂直滚动（原代码若没有可补充） */
        }

        /* 资料板块通用样式 */
        .section {
            background-color: #fff;
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .section-title {
    padding: 5px 20px;
    color: #fff;
	border-radius: 8px;
    background: rgb(25, 181, 251);
    font-size: 16px;
        }
        .pdf-list {
            display: flex;
            flex-wrap: wrap;
            padding: 10px 10px 0 10px;
        }
        /* 桌面端每行显示4条 */
        .doc-card {
            width: 25%;
            padding: 0 5px 20px;
        }
        .pdf-card-inner {
            border-bottom: 1px solid #eee;
            border-radius: 6px;
            padding: 5px;
            transition: transform 0.3s;
            height: 100%;
        }
        .pdf-card-inner:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .pdf-card img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 4px;
            background-color: #f1f1f1;
        }
        .pdf-title {
            margin-bottom: 8px;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 15px;
            transition: color 0.3s;
        }
        .pdf-title:hover {
            color: #3498db;
        }
        /* 价格样式 */
        .click-container {
            display: flex;
            align-items: center;
        }
        .pdf-click {
            color: #e74c3c;
            font-weight: bold;
            font-size: 16px;
        }
        .click-beautify {
            color: #3498db;
            margin-left: 5px;
            font-size: 14px;
            opacity: 0.8;
        }

        /* 热门资料 2列布局样式 */
        .two-columns {
            padding-bottom: 10px;
        }
        .two-columns .pdf-card {
            width: 50%;
            padding: 0px;
        }
        .two-columns .pdf-card-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .two-columns .pdf-card-inner:hover {
            transform: translateY(0);
            box-shadow: 0 3px 10px rgba(52, 152, 219, 0.15);
            border-color: #bde0fe;
        }
        .two-columns .pdf-title {
            margin-bottom: 0;
            font-size: 14px; /* 减小热门资料文字大小 */
            flex: 1;
            line-height: 1.4;
        }
        .two-columns .click-container {
            min-width: 38px;
            justify-content: flex-end;
        }
        .two-columns .pdf-click {
            font-size: 15px; /* 同步减小价格文字大小 */
        }

/* 序列号基础样式：圆形、居中、与标题间距 */
.two-columns .pdf-card-inner .rank-num {
  display: inline-block; /* 与标题同行 */
  width: 22px; /* 序号宽度（控制圆形大小） */
  height: 22px; /* 序号高度（与宽度一致呈圆形） */
  line-height: 22px; /* 文字垂直居中 */
  text-align: center; /* 文字水平居中 */
  color: #fff; /* 序号文字色（白色更醒目） */
  font-size: 12px; /* 序号字体大小 */
  font-weight: bold; /* 序号加粗 */
  border-radius: 50%; /* 圆形外观 */
  margin-right: 8px; /* 与标题的间距 */
}

/* 10条内容：分别设置不同背景色（可根据需求替换色值） */
.two-columns .pdf-card:nth-child(1) .rank-num { background-color: #FF6B6B; } /* 红色1 */
.two-columns .pdf-card:nth-child(2) .rank-num { background-color: #4ECDC4; } /* 青色1 */
.two-columns .pdf-card:nth-child(3) .rank-num { background-color: #45B7D1; } /* 蓝色1 */
.two-columns .pdf-card:nth-child(4) .rank-num { background-color: #96CEB4; } /* 浅绿1 */
.two-columns .pdf-card:nth-child(5) .rank-num { background-color: #FFEAA7; } /* 黄色1 */
.two-columns .pdf-card:nth-child(6) .rank-num { background-color: #DDA0DD; } /* 紫色1 */
.two-columns .pdf-card:nth-child(7) .rank-num { background-color: #FFA07A; } /* 浅橙1 */
.two-columns .pdf-card:nth-child(8) .rank-num { background-color: #87CEEB; } /* 天蓝1 */
.two-columns .pdf-card:nth-child(9) .rank-num { background-color: #F08080; } /* 浅红1 */
.two-columns .pdf-card:nth-child(10) .rank-num { background-color: #98D8C8; } /* 浅青1 */

        /* 右侧边栏 */
        .sidebar-box {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px 15px 5px 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .sidebar-title {
            font-size: 15px;
            color: #2c3e50;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .contact-info {
            display: flex;
            align-items: center;
			padding:5px;
            margin-bottom: 12px;
			border-bottom: 1px solid #ededed
        }
/* 图标容器（替代原img标签） */
.contact-info .contact-icon {display: inline-block;vertical-align: middle;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: #f1f1f1;
    border-radius: 50%;
    /* 图片路径移到CSS中 */
    background-image: url("/skin/wlogo.png");
    background-size: cover; /* 确保图片填满容器 */
    background-position: center; /* 图片居中 */
}
        .help-content {
            font-size: 14px;
            line-height: 1.6;
        }
        .help-item {
            margin-bottom: 12px;
        }
        .help-question {
            font-weight: bold;
            margin-bottom: 4px;
        }

        /* 页脚 */
        .footer {
            background-color:rgb(240, 245, 249);
            color: #333;
            padding: 20px 0 30px;
            text-align: center;
        }
        .footer-info {
            margin-bottom: 15px;
            font-size: 14px;
        }
        .footer-copyright {
            font-size: 13px;
        }
.footer a {
   color: #007bff;
	}
        /* 响应式设计 */
        @media (max-width: 992px) {
            .pdf-card {
                width: 33.333%;
            }
        }

        @media (max-width: 768px) {
            .nav {
                align-items: center;
                padding-right: 40px;
            }
            .two-columns .pdf-card-inner {
                padding: 8px 5px;
            } 
            .search-wrapper {
                display: none;
                position: absolute;
                right: 15px;
                top: calc(100% + 9px); /* 原先是top:100%，增加9px间距（可自定义） */
                background-color:rgb(240, 245, 249);
                padding: 10px;
                border-radius: 4px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.2);
                z-index: 10;
                width: 280px;
                margin: 0;
            }
            .search-wrapper.active {
                display: flex;
            }
            .search-input {
                max-width: none;
            }
            
            .search-icon {
                display: block;
            }
            
            .nav-links {
                position: absolute;
                left: 50%;
                transform: translateX(-25%);
                margin: 0;
                padding: 0;
            }
            .nav-links li:nth-child(n+4) {
                display: none;
            }
            
            .main-content {
                flex-direction: column;
                padding-top: 10px;
                margin-bottom: 20px;
            }
            .content-left {
                position: static;
                max-width: 100%;
                margin-top: 0; /* 删除边栏的顶部间距（现在边栏在上方，无需顶部间距） */
            }
            .content-right {
                margin-left: 0; /* 移动端纵向排列，删除内容区的左侧间距 */
                margin-top: 15px; /* 新增：内容区与上方边栏的间距（替代原.content-right的margin-top） */
            }
            .sidebar-sticky {
                position: static !important;
                max-height: none;
                overflow-y: visible;
            }
            

            .banner h2 {
                font-size: 26px;
            }
            .banner p {
                font-size: 16px;
            }
            
            /* 移动端最新上架与最新推荐显示2列 */
            .pdf-card {
                width: 50%;
            }
            
            /* 移动端热门资料调整为1列 */
            .two-columns .pdf-card {
                width: 100%;
            }
            .two-columns .pdf-title {
                font-size: 13px;
            }
			.breadcrumb {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .logo {
            font-size: 16px;
            }
            .logo-url {
            font-size: 10px;
            }
            .search-input {
                padding: 6px 10px;
                font-size: 13px;
            }
            
            .nav-links a {
                font-size: 13px;
            }
            
            .banner {
                padding: 25px 0;
            }
            .banner h2 {
                font-size: 22px;
            }

            
            .search-wrapper {
                width: calc(100% - 30px);
            }
            
            .main-content {
                margin-bottom: 15px;
            }
            .content-right {
                margin-top: 10px;
            }
            .sidebar-box {
                margin-bottom: 10px;
            }
        }
        
        @media (min-width: 769px) {
            .search-wrapper {
                display: flex;
                margin-left: 20px; /* 改为固定间距，不再推到最右侧 */
            }
            .search-icon {
                display: none;
            }
            
            .nav-links {
                margin: 0 auto;
            }
            
            .header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
            }
            body {
                padding-top: 53px;
            }
			/* 响应式布局：大屏时左右分列 */
    .product-image-column,.product-info-column{float:left;}
    .product-image-column{width:44%;height:305px;padding-right:2.3em;}/* 原col-md-7 */
    .product-info-column{width:56%;height:305px;}/* 原col-md-5 */
        }

  /* 新增：面包屑导航基础样式 */
.breadcrumb {
  background-color: rgb(240, 245, 249); /* 与主内容区卡片背景一致，避免突兀 */
  padding: 8px 20px; /* 上下内边距，控制高度 */
  border-top: 10px solid #eee; /* 底部浅边框，与页脚区分，增强层级 */
}

/* 基础图标容器样式（i标签使用了.fa类） */
.fa{display:inline-block;font-size:inherit;text-rendering:auto;}
i{font-style:normal;}
i.fa{padding-right:5px;}

/* 角度图标（up/down）绘制样式（核心图标形状） */
.fa-angle-up:before{
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(45deg);
    display: block;
}
.fa-angle-down:before{
    content: '';
    width: 12px;
    height: 12px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    display: block;
}
/* 回到顶部/底部按钮容器核心样式 */
.backtop{z-index:999;bottom:65px;position:fixed;right:15px;cursor:pointer;}
.backtop i{color:#fff;}
/* 按钮盒子样式 */
.backtop .bt-box{
    padding:11px 12px;margin-bottom:5px;width:41px;line-height:18px;
    vertical-align:middle;background:#58a5c3;border-radius:2px;
    box-shadow:0 1px 1px rgba(0,0,0,0.04);text-align:center;
}
/* 按钮 hover 交互样式 */
.backtop .bt-box:hover{background:#3690cf;}
.backtop .bt-box:hover i{color:#fff;}
/* 顶部按钮默认隐藏 */
.backtop .top{display:none;}
/* 按钮内图标特殊样式（覆盖通用.fa的padding） */
#backtop i.fa{font-size:1.2em;font-weight:bold;padding-right:0;}


/* ================================== 1. 核心布局样式（语义化类名） ================================== */
/* 主内容容器 */
.main-content{margin:0 auto 10px;    width: 100%;
    max-width: 1100px;}

/* 产品图片列与信息列基础样式 */
.product-image-column,.product-info-column{
    padding-bottom:0.5em;position:relative;
    background:#fff;border-bottom:5px solid #ededed;
}

/* 响应式布局：小屏时自适应全屏 */
@media screen and (max-width:1100px){
    .main-content{width:100%;}
}

/* 产品图居中 */
.image-center{text-align:center;}
/* 图片自适应 */
.responsive-img{max-width:100%;max-height:300px;}

/* ================================== 4. 产品标题区域样式 ================================== */
.product-title-area{padding:1em;font-size:65%;}

@media (max-width: 576px) {
.product-title-area  {
        font-size:55%; /* 进一步缩小，适配小屏幕 */
    }
}

/* ================================== 5. 价格区域样式 ================================== */
.product-click-area{
    width:100%;padding:0 20px;
    background-color:#fff2e8;/* 橙色背景区分价格区域 */
}


/* 元数据列表容器（包含价格、卖家信息等） */
.meta-info-list{
    z-index:1;position:relative;
    min-height:35px;_height:35px;zoom:1;
}

/* 元数据左侧标签（如“价格”文字） */
.meta-label{display:inline;float:left;width:5em;color:#6c6c6c;}

/* 元数据右侧内容（如价格数字、“电子版”文字） */
.meta-content{overflow:hidden;*zoom:1;}

/* 价格项样式 */
.click-item{width:100%;line-height:30px;}

/* 价格数字样式（突出显示） */
.click-item strong{
    position:relative;top:-2px;vertical-align:middle;padding-right:5px;
    font-size:21px;font-weight:700;font-family:Tahoma,Arial,Helvetica,sans-serif;
    color:#f40;overflow:hidden;*zoom:1;
}

/* “电子版”文字样式 */
.digital-version .meta-content{
    font-size:12px;font-weight:400;color:rgb(153, 0, 255);
    padding-left:10%;
}

/* 小屏时价格区域宽度自适应 */
@media (max-width:1179px){
    .click-item{width:auto;}
}


/* ================================== 7. 卖家信息区域样式 ================================== */
.seller-info-area{padding:9px 1em;}

/* 卖家logo */
.seller-logo {border-radius: 8px;
  display: inline-block; /* 保持 inline 特性，与文字同行显示 */
  width: 70px;          /* 原图片宽度 */
  height: 70px;         /* 原图片高度 */
  background-image: url("/skin/dlogo.png"); /* 图片路径 */
  background-repeat: no-repeat;
  background-size: contain; /* 自适应容器，保持图片比例 */
  background-position: center; /* 居中显示 */
  vertical-align: middle; /* 与文字垂直居中对齐 */
    float: left;
    color: #6c6c6c;
}

/* 卖家名称与联系方式区域 */
.seller-name{padding-left:6em;}

/* 联系方式图标 */
.contact-icon2{
    max-width:39%;max-height:3em;
    padding-left:1em;
}

/* 等级图标区域 */
.level-icon{
    padding-left:6.5em;
  background-image: url("/skin/blue3.png"); /* 图片路径 */
  background-repeat: no-repeat; /* 禁止重复 */
  background-size: contain; /* 自适应容器，保持图片比例 */
  background-position: center; /* 图片居中显示 */
}


/* ================================== 8. 区域分割线样式 ================================== */
.section-divider{
    margin-top:1em;
    border-bottom:1px solid #ededed;
}


/* ================================== 9. 评分区域样式 ================================== */
.rating-section .rating-list{
    display:-webkit-box;display:flex;text-align:center;
    color:#999;font-size:12px;margin:0.5em 0 0.5em;
}

.rating-list:empty{margin:0;}

.rating-list li{display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;}

.rating-list li b{
    padding-right:6%;background-position:100% 50%;
    background-repeat:no-repeat;background-size:12px;font-weight:400;
}

/* 评分颜色区分 */
.rating-score-blue{color:#3300FF;}
.rating-score-red{color:#FF0000;}
.rating-score-pink{color:#FF0066;}

 
body{
    font:15px "Microsoft YaHei",Helvetica,Arial,Lucida Grande,Tahoma,sans-serif;
    line-height:180%;margin:0;
}
img{border:0;vertical-align:middle;}

/* 内容详情板块样式 */
.section.content-detail {
    border: 1px solid #e0e0e0;
}

/* 标题样式 */
.section.content-detail .section-title {
    text-align: center;
    background-color: #d5d5d5;
    padding: 3px;
    color: #666;
}

/* 内容容器样式 */
.content-detail .content-wrapper {
    padding: 20px;
    line-height: 1.8;
}
.content-detail div {    margin: 0 0 5px 0;}
.content-detail p {    text-indent: 2em;
    margin: 0 0 5px 0;
    text-align: justify;
    word-wrap: break-word;
    line-height: 30px;
    word-break: break-all;
}
/* 图片样式 */
.content-detail img {    text-align: center;
    margin: 10px 0;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article_info{padding:5px;border:solid 1px #ececec;background:#fafafa;  font-size: 13px;}
.article-url {color: #FF5E52;}

/* 底部固定容器 */
.pdf_bottom{
  max-width: 810px;
  margin: 0px auto;
  position: fixed; /* 固定在底部 */
  bottom: 0px; /* 距离底部0 */
  height: 3rem;
  width: 100%;
  border-top: 1px solid rgba(229, 229, 229, 0.93);
  background-color: rgb(255, 255, 255);
  z-index: 2; /* 确保在其他元素上方 */
}

/* 内部链接基础样式 */
.pdf_bottom a{
  text-decoration: none;
  color: inherit;
}

/* 收藏/选项卡（左侧） */
.pdf_bottom .btn_fav_cart{
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  color: rgb(77, 82, 93);
  width: 28%;
  height: 100%;
  float: left;
}

/* 收藏按钮容器 */
.pdf_bottom .fav{
  width: 50%;
  height: 100%;
  float: left;
  background-color: #F2F2F2;
}

/* 收藏按钮背景图样式 */
.pdf_bottom .fav a{
  display: block;
  width: 100%;
  height: 3.5rem;
  margin-top: 0rem;
  background-position: center 0.05rem;
  background-repeat: no-repeat;
  background-size: 2.1rem 3.9rem;
  background-image: url("/skin/fav.png"); /* 收藏图标 */
}

/* 底部选项卡容器 */
.pdf_bottom .cart,.pdf_bottom .shop_tab{
  width: 50%;
  float: left;
}

/* 底部图标样式 */
.pdf_bottom .cart span,.pdf_bottom .shop_tab span{
  display: block;
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0.01rem  auto 0;
  text-indent: -99rem;
  background: url("/skin/kf.png") center center / 1rem 1rem no-repeat; /* 客服图标 */
  background-size: 1.5rem 1.5rem;
}

.lxdz2 {
    background-image: url(/skin/wlogo.png);
    border-radius: 6px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
    width: 32px;
    height: 32px;
}

.pdf_bottom  .cart_name {
    line-height: 1.3rem;
}

/* 按钮容器（右侧） */
.pdf_bottom .btn_con{
  width: 72%;
  height: 100%;
  float: left;
}

/* 按钮基础样式 */
.pdf_bottom .btn_con button{
  display: block;
  float: left;
  height: 100%;
  line-height: 3rem; /* 与容器height一致，确保文字垂直居中 */
  font-size: 1rem;
  text-align: center;
  color: white;
  border: 0px none; /* 清除默认边框 */
}

/*  按钮（渐变橙） */
.pdf_bottom .btn_con .buy{
  width: 50%;
  height: 100%;
  border-radius: 0.2rem 0px 0px 0.2rem;
  background-image: linear-gradient(to right, rgb(255, 197, 0), rgb(255, 148, 2));
}

/* 加入按钮（渐变深橙） */
.pdf_bottom .btn_con .add{
  width: 50%;
  border-radius: 0px 0.2rem 0.2rem 0px;
  background-image: linear-gradient(to right, rgb(255, 122, 0), rgb(254, 86, 10));
}

/* 底部占位空间（防止内容被遮挡） */
.space{
  height:2.5rem;
}

/* 响应式适配（移动端） */
@media (max-width:768px){
  .space{
    height:2.5rem; /* 移动端减小占位高度 */
  }
}

/* 弹窗遮罩层：全屏半透明背景 */
#popup-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
  display: none; /* 默认隐藏，需JS控制显示 */
}

/* 弹窗基础样式：固定定位、阴影、圆角 */
.popup-wrapper, .popup-shade {
  position: fixed;
  _position: absolute;
  pointer-events: auto;
}
.popup-wrapper {
  -webkit-overflow-scrolling: touch;
  top: 150px;
  left: 0;
  margin: 0;
  padding: 0;
  -webkit-background-clip: content;
  border-radius: 2px;
  box-shadow: 1px 1px 50px rgba(0,0,0,.3);
}

/* 自定义弹窗容器：宽度、居中定位 */
.popup-content {
  max-width: 280px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
}
/* 弹窗内容容器：补充定位和宽高样式（整合内联样式） */
.popup-wrapper.popup-content {
  width: 90%; /* 原内联的宽度 */
  position: absolute; /* 原内联的定位方式，覆盖popup-wrapper的fixed */
  top: 50%; /* 垂直居中起点 */
  left: 50%; /* 水平居中起点 */
  transform: translate(-50%, -50%); /* 基于自身尺寸居中 */
}

/* 弹窗标题栏：高度、边框、Flex布局 */
.popup-header {
  height: auto;
  line-height: 24px;
  padding: 10px 15px;
  background: 0 0;
  border-bottom: 1px solid #ddd;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-flow: nowrap;
  font-size: 15px;
  color: #666;
}

/* 标题栏内logo：背景图、尺寸、间距 */
.popup-logo {
  border-radius: 10px;
  display: inline-block; /* 与文字同行显示 */
  width: 60px;          /* 原图片宽度 */
  height: 60px;         /* 原图片高度 */
  background-image: url("/skin/dlogo.png"); /* 图片路径 */
  background-repeat: no-repeat;
  background-size: contain; /* 自适应容器，保持比例 */
  background-position: center; /* 居中显示 */
  margin-right: 15px;   /* 与文字间距 */
  vertical-align: middle; /* 与文字垂直居中 */
}

/* 标题栏内文字：颜色、边距 */
.popup-header .title-text b {
  display: block;
  color: #333;
  margin-top: 7px;
}

/* 弹窗内容区：定位、滚动控制 */
.popup-body {
  position: relative;
  overflow: auto;
}

/* 内容区“步骤”容器：内边距 */
.popup-steps {
  padding: 5px 10px;
}

/* 步骤序号：圆形边框、尺寸、对齐 */
.popup-steps .step-item i {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #ddd;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
}

/* 步骤描述：左边框、内边距 */
.popup-steps .step-desc {
  margin-left: 10px;
  border-left: 1px solid #ddd;
  padding-left: 10px;
}

/* 二维码图片：边距 */
.popup-steps .step-desc img {
  margin: 8px 0 5px;
}

/* 底部按钮：背景、圆角、文字样式 */
.popup-footer-btn {
  margin: 0px 15px 15px;
  background: #65bb0a;
  border-radius: 5px;
  line-height: 39px;
  font-size: 1pc;
  color: #fff;
  text-align: center;
}

/* 按钮内链接：继承按钮样式 */
.popup-footer-btn a {
  display: block;
  color: #fff;
}

/* 关闭按钮容器：绝对定位 */
.popup-close-container {
  position: absolute;
  right: 15px;
  *right: 0;
  top: 15px;
  font-size: 0;
  line-height: initial;
}

/* 自定义关闭按钮：尺寸、背景图、圆角 */
.popup-content .popup-close-btn {
  width: 25px;
  height: 25px;
  top: -7px;
  right: -7px;
  background: url(/skin/close.png) no-repeat center center #eee;
  background-size: 80% auto;
  border-radius: 50%;
  position: absolute;
}

/* 关闭按钮 hover 效果 */
.popup-close-btn:hover {
  opacity: .7;
}