        /* 基础样式重置 */
        * {
            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: 10px;
            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条 */
        .pdf-card {
            width: 25%;
            padding: 0 5px 20px;
        }
        .pdf-card-inner {
            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: 16px;
            color: #2c3e50;
            margin-bottom: 15px;
            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;
        }
		.contact-info .contact-icon {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            background-color: #f1f1f1;
            border-radius: 50%;
            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: 30px 0;
            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;
            }
        }

        @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: 20px 15px;
            }
            .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: 50px;
            }
        }

  /* 新增：面包屑导航基础样式 */
.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;}